diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f76b82111..58d696013 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,9 +25,6 @@ on: - '**/packages.lock.json' env: - DOTNET_INSTALL_DIR: '.\.dotnet' - DOTNET_VERSION: '9.0.3xx' - DOTNET_QUALITY: 'ga' NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages jobs: @@ -49,6 +46,14 @@ jobs: with: submodules: recursive + - name: 'Preparing Environment Variables' + if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }} + run: | + $env = Get-Content env.json | ConvertFrom-Json + foreach ($prop in $env.PSObject.Properties) { + echo "$($prop.Name)=$($prop.Value)" >> $env:GITHUB_ENV + } + - name: Install .NET uses: actions/setup-dotnet@v4 with: @@ -62,7 +67,7 @@ jobs: - name: Build run: | - dotnet publish CollapseLauncher -c ${{matrix.Configuration}} -p:PublishProfile=Publish-DebugCIRelease -p:PublishDir=".\debug-build\" + dotnet publish CollapseLauncher -c ${{matrix.Configuration}} -p:PublishProfile=Publish-DebugCIRelease -p:PublishDir=".\debug-build\" -p:PublishAot=false - name: Upload Artifact uses: actions/upload-artifact@v4 @@ -70,6 +75,14 @@ jobs: name: collapse_${{ matrix.platform }}-${{ matrix.configuration }}_${{ matrix.framework }}_${{ github.sha }} path: ./CollapseLauncher/debug-build/ compression-level: 9 + + - name: Validate build for Preview + run: | + dotnet build CollapseLauncher -c Release --verbosity quiet --no-restore + + - name: Validate build for Stable + run: | + dotnet build CollapseLauncher -c Publish --verbosity quiet --no-restore build-nativeaot: runs-on: windows-latest @@ -89,6 +102,14 @@ jobs: with: submodules: recursive + - name: 'Preparing Environment Variables' + if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }} + run: | + $env = Get-Content env.json | ConvertFrom-Json + foreach ($prop in $env.PSObject.Properties) { + echo "$($prop.Name)=$($prop.Value)" >> $env:GITHUB_ENV + } + - name: Install .NET uses: actions/setup-dotnet@v4 with: diff --git a/.github/workflows/dd-sca.yml b/.github/workflows/dd-sca.yml new file mode 100644 index 000000000..947bb9c7d --- /dev/null +++ b/.github/workflows/dd-sca.yml @@ -0,0 +1,21 @@ +on: [push] + +name: Datadog Software Composition Analysis + +jobs: + software-composition-analysis: + runs-on: ubuntu-latest + name: Datadog SBOM Generation and Upload + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Check imported libraries are secure and compliant + id: datadog-software-composition-analysis + uses: DataDog/datadog-sca-github-action@main + with: + dd_api_key: ${{ secrets.DD_API_KEY }} + dd_app_key: ${{ secrets.DD_APP_KEY }} + dd_site: ap1.datadoghq.com \ No newline at end of file diff --git a/.github/workflows/dd-static-analysis.yml b/.github/workflows/dd-static-analysis.yml new file mode 100644 index 000000000..91458315e --- /dev/null +++ b/.github/workflows/dd-static-analysis.yml @@ -0,0 +1,24 @@ +on: [push] + +name: Datadog Static Code Analysis + +jobs: + static-analysis: + runs-on: ubuntu-latest + name: Datadog Static Analyzer + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Check code meets quality and security standards + id: datadog-static-analysis + uses: DataDog/datadog-static-analyzer-github-action@v1 + with: + dd_api_key: ${{ secrets.DD_API_KEY }} + dd_app_key: ${{ secrets.DD_APP_KEY }} + dd_site: ap1.datadoghq.com + secrets_enabled: false + static_analysis_enabled: true + cpu_count: 2 \ No newline at end of file diff --git a/.github/workflows/qodana-scan-pr.yml b/.github/workflows/qodana-scan-pr.yml index 38582be92..11b7f3aef 100644 --- a/.github/workflows/qodana-scan-pr.yml +++ b/.github/workflows/qodana-scan-pr.yml @@ -28,9 +28,6 @@ jobs: env: Configuration: ${{ matrix.configuration }} Platform: ${{ matrix.platform }} - DOTNET_INSTALL_DIR: '.\.dotnet' - DOTNET_VERSION: '9.0.3xx' - DOTNET_QUALITY: 'ga' NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages steps: @@ -42,6 +39,15 @@ jobs: ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit fetch-depth: 0 # a full history is required for pull request analysis submodules: recursive # many many submodules + + - name: 'Preparing Environment Variables' + if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }} + run: | + $env = Get-Content env.json | ConvertFrom-Json + foreach ($prop in $env.PSObject.Properties) { + echo "$($prop.Name)=$($prop.Value)" >> $env:GITHUB_ENV + } + - name: Install .NET uses: actions/setup-dotnet@v4 with: diff --git a/.github/workflows/qodana-scan.yml b/.github/workflows/qodana-scan.yml index 1f32b3f62..e29dfcd8f 100644 --- a/.github/workflows/qodana-scan.yml +++ b/.github/workflows/qodana-scan.yml @@ -19,10 +19,8 @@ jobs: env: Configuration: ${{ matrix.configuration }} Platform: ${{ matrix.platform }} - DOTNET_INSTALL_DIR: '.\.dotnet' - DOTNET_VERSION: '9.0.3xx' - DOTNET_QUALITY: 'ga' NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages + permissions: actions: read contents: write @@ -34,18 +32,15 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit submodules: recursive # many many submodules - # - name: Install winget - # uses: Cyberboss/install-winget@v1 - # - name: Install Qodana CLI - # uses: crazy-max/ghaction-chocolatey@v3 - # with: - # args: install qodana --pre --confirm - - # - name: Verify Qodana - # run: | - # Import-Module "$env:ChocolateyInstall/helpers/chocolateyInstaller.psm1" - # refreshenv - # qodana --version + + - name: 'Preparing Environment Variables' + if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }} + run: | + $env = Get-Content env.json | ConvertFrom-Json + foreach ($prop in $env.PSObject.Properties) { + echo "$($prop.Name)=$($prop.Value)" >> $env:GITHUB_ENV + } + - name: Install .NET uses: actions/setup-dotnet@v4 with: diff --git a/.github/workflows/release-signed.yml b/.github/workflows/release-signed.yml index fcba1ad83..a28ebf05a 100644 --- a/.github/workflows/release-signed.yml +++ b/.github/workflows/release-signed.yml @@ -8,14 +8,11 @@ on: env: BRANCH_NAME: ${{ github.head_ref || github.ref_name }} SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} - DOTNET_INSTALL_DIR: '.\.dotnet' - DOTNET_VERSION: '9.0.3xx' - DOTNET_QUALITY: 'ga' NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages - SIGNPATH_ARTIFACT_SLUG: 'initial' # change this to 'aot-release' when releasing with AOT or 'initial' for normal release - BUILD_PROFILE_PREVIEW: 'Publish-PreviewRelease' - BUILD_PROFILE_STABLE: 'Publish-StableRelease' - BUILD_PROFILE_DEBUG: 'Publish-DebugCIRelease' + SIGNPATH_ARTIFACT_SLUG: 'aot-release' # change this to 'aot-release' when releasing with AOT or 'initial' for normal release + BUILD_PROFILE_PREVIEW: 'Publish-PreviewReleaseAOT' + BUILD_PROFILE_STABLE: 'Publish-StableReleaseAOT' + BUILD_PROFILE_DEBUG: 'Publish-DebugCIReleaseAOT' # schedule: # - cron: '0 0 * * 0' # At 00:00 on Sunday @@ -33,6 +30,7 @@ jobs: PUBLISH_PROFILE: "" SIGNING_POLICY_SLUG: "" VERSION: "" + PRODUCT_VERSION: "" Platform: ${{ matrix.platform }} SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} @@ -51,8 +49,8 @@ jobs: echo "PUBLISH_PROFILE=${{ env.BUILD_PROFILE_STABLE }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append echo "SIGNING_POLICY_SLUG=release-signing" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append } elseif ($branch -eq "github-signpath-test") { - echo "CONFIGURATION_STRATEGY=Debug" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - echo "PUBLISH_PROFILE=${{ env.BUILD_PROFILE_DEBUG }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append + echo "CONFIGURATION_STRATEGY=Release" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append + echo "PUBLISH_PROFILE=${{ env.BUILD_PROFILE_PREVIEW }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append echo "SIGNING_POLICY_SLUG=test-signing-ci" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append } else { Write-Error "Unknown branch or input: $branch" @@ -69,6 +67,14 @@ jobs: uses: actions/checkout@v4 with: submodules: recursive + + - name: 'Preparing Environment Variables' + if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }} + run: | + $env = Get-Content env.json | ConvertFrom-Json + foreach ($prop in $env.PSObject.Properties) { + echo "$($prop.Name)=$($prop.Value)" >> $env:GITHUB_ENV + } - name: Install .NET uses: actions/setup-dotnet@v4 @@ -156,7 +162,9 @@ jobs: if ($signature.Status -ne "Valid") { echo "::error::Invalid signature on $($file.Name): $($signature.Status)" } - echo "✓ $($file.Name): $($signature.SignerCertificate.Subject)" + else { + echo "::notice::✓ $($file.Name): $($signature.SignerCertificate.Subject)" + } } - name: Re-upload Signed Artifact to GitHub @@ -187,6 +195,27 @@ jobs: apps: sentry-cli - name: Upload Debug artifact to Sentry + continue-on-error: true + shell: pwsh run: | - sentry-cli debug-files upload --org collapse --project collapse-launcher --include-sources '.\SignedArtifact\BuildArtifact-${{ env.VERSION }}' - + sentry-cli debug-files upload --org collapse --project collapse-launcher --include-sources '${{ runner.temp }}\SignedArtifact\BuildArtifact-${{ env.VERSION }}' + + - name: Set release version in Sentry + shell: pwsh + continue-on-error: true + run: | + $exePath = "${{ runner.temp }}\SignedArtifact\BuildArtifact-${{ env.VERSION }}\CollapseLauncher.exe" + if (Test-Path $exePath) { + $version = "CollapseLauncher@" + ([System.Diagnostics.FileVersionInfo]::GetVersionInfo("./CollapseLauncher.exe").ProductVersion) + if ($version) { + sentry-cli releases new --org collapse --project collapse-launcher $version + sentry-cli releases set-commits --auto $version + sentry-cli releases finalize $version + } + else { + Write-Warning "No product version found in $exePath" + } + } + else { + Write-Error "File not found: $exePath" + } diff --git a/.gitignore b/.gitignore index cef97bf38..9801964fd 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,8 @@ packages/* CollapseLauncher/Deps/* CollapseLauncher/StaticLib/*.lib CollapseLauncher/StaticLib/**/*.lib +CollapseLauncher/StaticLib/*.pdb +CollapseLauncher/StaticLib/**/*.pdb CollapseLauncher/Invoker/* **/Generated Files/** *.psd diff --git a/.gitmodules b/.gitmodules index 11e3339e2..b86e92806 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,9 @@ [submodule "Hi3Helper.Http"] path = Hi3Helper.Http - url = https://github.com/neon-nyan/Hi3Helper.Http + url = https://github.com/CollapseLauncher/Hi3Helper.Http [submodule "ColorThief"] path = ColorThief - url = https://github.com/neon-nyan/ColorThief + url = https://github.com/CollapseLauncher/ColorThief [submodule "Hi3Helper.EncTool"] path = Hi3Helper.EncTool url = https://github.com/CollapseLauncher/Hi3Helper.EncTool @@ -28,3 +28,6 @@ [submodule "Hi3Helper.Win32"] path = Hi3Helper.Win32 url = https://github.com/CollapseLauncher/Hi3Helper.Win32 +[submodule "Hi3Helper.Plugin.Core"] + path = Hi3Helper.Plugin.Core + url = https://github.com/CollapseLauncher/Hi3Helper.Plugin.Core diff --git a/.idea/.idea.CollapseLauncher/.idea/encodings.xml b/.idea/.idea.CollapseLauncher/.idea/encodings.xml index d5d08fe80..753791775 100644 --- a/.idea/.idea.CollapseLauncher/.idea/encodings.xml +++ b/.idea/.idea.CollapseLauncher/.idea/encodings.xml @@ -2,5 +2,6 @@ + \ No newline at end of file diff --git a/.idea/.idea.CollapseLauncher/.idea/vcs.xml b/.idea/.idea.CollapseLauncher/.idea/vcs.xml index ca3b0a334..17764a39a 100644 --- a/.idea/.idea.CollapseLauncher/.idea/vcs.xml +++ b/.idea/.idea.CollapseLauncher/.idea/vcs.xml @@ -8,6 +8,7 @@ + diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 532763704..a268839a5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,10 +2,10 @@ ## Before you Start - Unless otherwise stated in this project's README, please make sure to clone the source code from the `main` branch using `--recurse` parameter to pull all the submodules Collapse needs to compile. - ```git clone https://github.com/neon-nyan/Collapse --recurse``` + ```git clone https://github.com/CollapseLauncher/Collapse --recurse``` - Make sure you use the supported IDE & SDKs listed below. -- Make sure to read the "Restriction for New Feature(s)" section below. +- Make sure to read the "Restriction for New Feature(s)", "Plugin System" & "Plugin Restrictions" sections below. - When submitting a Pull Request (PR), make sure that it is done to the same branch from which you first pulled, unless otherwise stated in the project's README, or if specifically instructed by maintainers of this project. - We don't require a fully descriptive PR, but please be clear on what is added/removed and what the code does. @@ -15,13 +15,23 @@ If you wish to add new language that isn't yet listed in the Transifex project, ## Tools Needed Below is a list of tools needed to contribute to this project: -1. **Visual Studio 2022 (Any Edition - latest version)** +1. **Visual Studio 2022 (Any Edition - latest version)** or **JetBrains Rider (Any Edition - latest version)** - Select .NET desktop development component 2. **Windows SDK (10.0.26100.0 ONLY)** via Visual Studio Installer 3. .NET 9 SDK: [**(9.0.4 or later)**](https://dotnet.microsoft.com/en-us/download/dotnet/9.0) > **Note**: -> Make sure to always use the latest version of Visual Studio in order to be able to open the project. +> Make sure to always use the latest version of Visual Studio or Rider in order to be able to open the project. + +## Plugin System +> The plugin system was introduced in a recent version of Collapse, allowing for external games, not officially supported by the launcher, to be managed through the it. Any user can create & load their own plugins into Collapse, provided they follow a set of guidelines and standards. + +The plugin system requires its own set of dependencies and packages, though the tools required to develop it are identical. For more information about developing your own plugin, take a look at the core plugin module's [documentation](https://github.com/CollapseLauncher/Hi3Helper.Plugin.Core). + +## Plugin Restrictions +Plugins are designed to interface with Collapse through COM Interops and marshalling. As such, you must follow the API contracts defined in the core library. That being said, there's nothing stopping you from writing your own interfaces and ways to interact with Collapse, provided that the current launcher code supports that functionality. Ultimately, **we, the Collapse core developer team, cannot stop users from distributing their own plugin libraries and implementing features that we never will** (see below), but it is our hope that our users and community will adhere to the rules we set. + +All official plugins (plugins that are accessible through Collapse's download interface) must be validated by a member of the development team before being approved for publishing, to ensure the safety of our users and preserve launcher stability and integrity. The Collapse project and its members are not responsible for damage caused to the user should they install unofficial and unsupported plugins. Furthermore, no support will be provided for any unofficial plugin. ## Restrictions for New Feature(s) While this software is fully open source and not affiliated with HoYoverse, Cognosphere, or any of its related entities in any way, we are nonetheless bound to their Terms of Service and Code of Conduct when developing Collapse. This means that there are some features that we will **not** implement. We will close any issue or PRs that are made to add such functionality to Collapse. Such features include, but are not limited to: @@ -32,6 +42,7 @@ While this software is fully open source and not affiliated with HoYoverse, Cogn ### Examples for features that we encourage others to submit PRs for: - Community resources - Officially-endorsed HoYoverse Tools +- Code that enhances plugin-related functionality - Etc. ### Examples of features that we will probably never implement: @@ -40,14 +51,15 @@ While this software is fully open source and not affiliated with HoYoverse, Cogn - Any type of cheats or exploits. - Etc. - ## Further reads: - [Genshin Impact Terms of Service](https://genshin.hoyoverse.com/en/company/terms) - [Honkai Impact 3rd Terms of Service](https://honkaiimpact3.hoyoverse.com/global/en-us/terms) - [Honkai: Star Rail Terms of Service](https://hsr.hoyoverse.com/en-us/company/terms) - [Zenless Zone Zero Terms of Service](https://zenless.hoyoverse.com/en-us/company/terms) - [HoYoLAB Forum Terms of Service](https://www.hoyolab.com/agreement) +- Any other Terms of Service & Privacy Policy links for games implemented through the plugin system # A Humble Thank You As contributors, we always feel grateful for all your contributions to the project, whether it be through helping with localizing the app, coming up with new features, reporting bugs, and even using this launcher. Through everyone's effort, we can keep this project alive by bringing even more features and quality-of-life (QoL) upgrades over the existing launchers (including official) that are out there. Thank you ❤️ + diff --git a/CollapseLauncher.sln b/CollapseLauncher.sln index 8750244af..95df9cb35 100644 --- a/CollapseLauncher.sln +++ b/CollapseLauncher.sln @@ -28,17 +28,19 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.TaskScheduler", " EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.CommunityToolkit.WinUI.Controls.ImageCropper", "Hi3Helper.CommunityToolkit\ImageCropper\Hi3Helper.CommunityToolkit.WinUI.Controls.ImageCropper.csproj", "{558A1D17-BEB4-49DF-A200-15ABE283BDED}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.CommunityToolkit.WinUI.Controls.SettingsControls", "Hi3Helper.CommunityToolkit\SettingsControls\Hi3Helper.CommunityToolkit.WinUI.Controls.SettingsControls.csproj", "{5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.Win32", "Hi3Helper.Win32\Hi3Helper.Win32.csproj", "{F65C6DAC-CC04-214B-9430-2C4AE31448E2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "H.NotifyIcon.WinUI", "H.NotifyIcon\src\libs\H.NotifyIcon.WinUI\H.NotifyIcon.WinUI.csproj", "{141083CC-A924-4E19-904C-AF91361405A5}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.Win32.WinRT", "Hi3Helper.Win32\WinRT\Hi3Helper.Win32.WinRT.csproj", "{5CA5A261-1D5B-8A4D-EA87-B031CFFD4DDD}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "H.NotifyIcon", "H.NotifyIcon\src\libs\H.NotifyIcon\H.NotifyIcon.csproj", "{6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.Plugin.Core", "Hi3Helper.Plugin.Core\Hi3Helper.Plugin.Core.csproj", "{6D56B964-1509-482F-4589-C780CDE5C703}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "H.GeneratedIcons.System.Drawing", "H.NotifyIcon\src\libs\H.GeneratedIcons.System.Drawing\H.GeneratedIcons.System.Drawing.csproj", "{911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.CommunityToolkit.WinUI.Controls.SettingsControls", "Hi3Helper.CommunityToolkit\SettingsControls\Hi3Helper.CommunityToolkit.WinUI.Controls.SettingsControls.csproj", "{EDB972FD-0B83-1092-166C-05DC18846ABE}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.Win32", "Hi3Helper.Win32\Hi3Helper.Win32.csproj", "{F65C6DAC-CC04-214B-9430-2C4AE31448E2}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "H.GeneratedIcons.System.Drawing", "H.NotifyIcon\src\libs\H.GeneratedIcons.System.Drawing\H.GeneratedIcons.System.Drawing.csproj", "{6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.Win32.WinRT", "Hi3Helper.Win32\WinRT\Hi3Helper.Win32.WinRT.csproj", "{5CA5A261-1D5B-8A4D-EA87-B031CFFD4DDD}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "H.NotifyIcon", "H.NotifyIcon\src\libs\H.NotifyIcon\H.NotifyIcon.csproj", "{A7B5455E-BC50-3668-B225-D1954E254FBC}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "H.NotifyIcon.WinUI", "H.NotifyIcon\src\libs\H.NotifyIcon.WinUI\H.NotifyIcon.WinUI.csproj", "{0128963B-3044-224A-7E5D-3FC91B8B054C}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -124,30 +126,6 @@ Global {558A1D17-BEB4-49DF-A200-15ABE283BDED}.Publish|x64.Build.0 = Release|x64 {558A1D17-BEB4-49DF-A200-15ABE283BDED}.Release|x64.ActiveCfg = Release|x64 {558A1D17-BEB4-49DF-A200-15ABE283BDED}.Release|x64.Build.0 = Release|x64 - {5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}.Debug|x64.ActiveCfg = Debug|x64 - {5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}.Debug|x64.Build.0 = Debug|x64 - {5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}.Publish|x64.ActiveCfg = Release|x64 - {5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}.Publish|x64.Build.0 = Release|x64 - {5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}.Release|x64.ActiveCfg = Release|x64 - {5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}.Release|x64.Build.0 = Release|x64 - {141083CC-A924-4E19-904C-AF91361405A5}.Debug|x64.ActiveCfg = Debug|x64 - {141083CC-A924-4E19-904C-AF91361405A5}.Debug|x64.Build.0 = Debug|x64 - {141083CC-A924-4E19-904C-AF91361405A5}.Publish|x64.ActiveCfg = Release|x64 - {141083CC-A924-4E19-904C-AF91361405A5}.Publish|x64.Build.0 = Release|x64 - {141083CC-A924-4E19-904C-AF91361405A5}.Release|x64.ActiveCfg = Release|x64 - {141083CC-A924-4E19-904C-AF91361405A5}.Release|x64.Build.0 = Release|x64 - {6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}.Debug|x64.ActiveCfg = Debug|x64 - {6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}.Debug|x64.Build.0 = Debug|x64 - {6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}.Publish|x64.ActiveCfg = Release|x64 - {6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}.Publish|x64.Build.0 = Release|x64 - {6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}.Release|x64.ActiveCfg = Release|x64 - {6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}.Release|x64.Build.0 = Release|x64 - {911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}.Debug|x64.ActiveCfg = Debug|x64 - {911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}.Debug|x64.Build.0 = Debug|x64 - {911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}.Publish|x64.ActiveCfg = Release|x64 - {911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}.Publish|x64.Build.0 = Release|x64 - {911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}.Release|x64.ActiveCfg = Release|x64 - {911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}.Release|x64.Build.0 = Release|x64 {F65C6DAC-CC04-214B-9430-2C4AE31448E2}.Debug|x64.ActiveCfg = Debug|x64 {F65C6DAC-CC04-214B-9430-2C4AE31448E2}.Debug|x64.Build.0 = Debug|x64 {F65C6DAC-CC04-214B-9430-2C4AE31448E2}.Publish|x64.ActiveCfg = Release|x64 @@ -160,6 +138,36 @@ Global {5CA5A261-1D5B-8A4D-EA87-B031CFFD4DDD}.Publish|x64.Build.0 = Release|x64 {5CA5A261-1D5B-8A4D-EA87-B031CFFD4DDD}.Release|x64.ActiveCfg = Release|x64 {5CA5A261-1D5B-8A4D-EA87-B031CFFD4DDD}.Release|x64.Build.0 = Release|x64 + {6D56B964-1509-482F-4589-C780CDE5C703}.Debug|x64.ActiveCfg = Debug|x64 + {6D56B964-1509-482F-4589-C780CDE5C703}.Debug|x64.Build.0 = Debug|x64 + {6D56B964-1509-482F-4589-C780CDE5C703}.Publish|x64.ActiveCfg = Release|x64 + {6D56B964-1509-482F-4589-C780CDE5C703}.Publish|x64.Build.0 = Release|x64 + {6D56B964-1509-482F-4589-C780CDE5C703}.Release|x64.ActiveCfg = Release|x64 + {6D56B964-1509-482F-4589-C780CDE5C703}.Release|x64.Build.0 = Release|x64 + {EDB972FD-0B83-1092-166C-05DC18846ABE}.Debug|x64.ActiveCfg = Debug|x64 + {EDB972FD-0B83-1092-166C-05DC18846ABE}.Debug|x64.Build.0 = Debug|x64 + {EDB972FD-0B83-1092-166C-05DC18846ABE}.Publish|x64.ActiveCfg = Release|x64 + {EDB972FD-0B83-1092-166C-05DC18846ABE}.Publish|x64.Build.0 = Release|x64 + {EDB972FD-0B83-1092-166C-05DC18846ABE}.Release|x64.ActiveCfg = Release|x64 + {EDB972FD-0B83-1092-166C-05DC18846ABE}.Release|x64.Build.0 = Release|x64 + {6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}.Debug|x64.ActiveCfg = Debug|x64 + {6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}.Debug|x64.Build.0 = Debug|x64 + {6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}.Publish|x64.ActiveCfg = Release|x64 + {6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}.Publish|x64.Build.0 = Release|x64 + {6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}.Release|x64.ActiveCfg = Release|x64 + {6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}.Release|x64.Build.0 = Release|x64 + {A7B5455E-BC50-3668-B225-D1954E254FBC}.Debug|x64.ActiveCfg = Debug|x64 + {A7B5455E-BC50-3668-B225-D1954E254FBC}.Debug|x64.Build.0 = Debug|x64 + {A7B5455E-BC50-3668-B225-D1954E254FBC}.Publish|x64.ActiveCfg = Release|x64 + {A7B5455E-BC50-3668-B225-D1954E254FBC}.Publish|x64.Build.0 = Release|x64 + {A7B5455E-BC50-3668-B225-D1954E254FBC}.Release|x64.ActiveCfg = Release|x64 + {A7B5455E-BC50-3668-B225-D1954E254FBC}.Release|x64.Build.0 = Release|x64 + {0128963B-3044-224A-7E5D-3FC91B8B054C}.Debug|x64.ActiveCfg = Debug|x64 + {0128963B-3044-224A-7E5D-3FC91B8B054C}.Debug|x64.Build.0 = Debug|x64 + {0128963B-3044-224A-7E5D-3FC91B8B054C}.Publish|x64.ActiveCfg = Release|x64 + {0128963B-3044-224A-7E5D-3FC91B8B054C}.Publish|x64.Build.0 = Release|x64 + {0128963B-3044-224A-7E5D-3FC91B8B054C}.Release|x64.ActiveCfg = Release|x64 + {0128963B-3044-224A-7E5D-3FC91B8B054C}.Release|x64.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/CollapseLauncher.slnx b/CollapseLauncher.slnx index ee8320b35..7853ad580 100644 --- a/CollapseLauncher.slnx +++ b/CollapseLauncher.slnx @@ -5,95 +5,60 @@ - - - - + - - - - - - - - - - - - - - + - - - - - - + + + - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/CollapseLauncher/App.xaml b/CollapseLauncher/App.xaml index 8ad61579c..ee2631aef 100644 --- a/CollapseLauncher/App.xaml +++ b/CollapseLauncher/App.xaml @@ -29,6 +29,7 @@ + @@ -41,6 +42,8 @@ #ffd52a #ffd52a #ffd52a + #ffd52a + #00ffd52a #693758 #693758 #693758 + #693758 + #00693758 - - @@ -2705,8 +2708,8 @@ - + @@ -2720,8 +2723,8 @@ - + @@ -2735,8 +2738,8 @@ - + @@ -2750,41 +2753,18 @@ - + - - - - - - - - - - - - - - - - + diff --git a/CollapseLauncher/App.xaml.cs b/CollapseLauncher/App.xaml.cs index e5ab27f5b..327484fb9 100644 --- a/CollapseLauncher/App.xaml.cs +++ b/CollapseLauncher/App.xaml.cs @@ -11,6 +11,7 @@ using PhotoSauce.MagicScaler; using PhotoSauce.NativeCodecs.Libwebp; using System; +using System.Diagnostics; using Windows.UI; using static CollapseLauncher.InnerLauncherConfig; using static Hi3Helper.Logger; @@ -42,7 +43,7 @@ public App() #endif DebugSettings.XamlResourceReferenceFailed += static (sender, args) => { - LogWriteLine($"[XAML_RES_REFERENCE] Sender: {sender}\r\n{args!.Message}", LogType.Error, true); + LogWriteLine($"[XAML_RES_REFERENCE] Sender: {sender}\r\n{args!.Message}\r\n{new StackTrace()}", LogType.Error, true); SentryHelper.ExceptionHandler(new Exception($"{args.Message}"), SentryHelper.ExceptionType.UnhandledXaml); #if !DEBUG MainEntryPoint.SpawnFatalErrorConsole(new Exception(args!.Message)); @@ -51,7 +52,7 @@ public App() }; DebugSettings.BindingFailed += static (sender, args) => { - LogWriteLine($"[XAML_BINDING] Sender: {sender}\r\n{args!.Message}", LogType.Error, true); + LogWriteLine($"[XAML_BINDING] Sender: {sender}\r\n{args!.Message}\r\n{new StackTrace()}", LogType.Error, true); SentryHelper.ExceptionHandler(new Exception($"{args.Message}"), SentryHelper.ExceptionType.UnhandledXaml); #if !DEBUG MainEntryPoint.SpawnFatalErrorConsole(new Exception(args!.Message)); @@ -59,7 +60,7 @@ public App() }; UnhandledException += static (sender, e) => { - LogWriteLine($"[XAML_OTHER] Sender: {sender}\r\n{e!.Exception} {e.Exception!.InnerException}", LogType.Error, true); + LogWriteLine($"[XAML_OTHER] Sender: {sender}\r\n{e!.Exception} {e.Exception!.InnerException}\r\nCurrent Stacktrace: {new StackTrace()}", LogType.Error, true); var ex = e.Exception; if (ex != null) { diff --git a/CollapseLauncher/Assets/Images/GameMascot/PaimonThreateningAura.png b/CollapseLauncher/Assets/Images/GameMascot/PaimonThreateningAura.png new file mode 100644 index 000000000..0fb15bb40 Binary files /dev/null and b/CollapseLauncher/Assets/Images/GameMascot/PaimonThreateningAura.png differ diff --git a/CollapseLauncher/Classes/AnimatedVisuals/Lottie/TempResetIndonesiaTaglineCrisis.cs b/CollapseLauncher/Classes/AnimatedVisuals/Lottie/TempResetIndonesiaTaglineCrisis.cs new file mode 100644 index 000000000..7ed93e54d --- /dev/null +++ b/CollapseLauncher/Classes/AnimatedVisuals/Lottie/TempResetIndonesiaTaglineCrisis.cs @@ -0,0 +1,139297 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// LottieGen version: +// 8.2.250604.1+b02a3ee244 +// +// Command: +// LottieGen -GenerateColorBindings -GenerateDependencyObject -Language CSharp -Namespace CollapseLauncher.AnimatedVisuals.Lottie -Public -WinUIVersion 3.0 -InputFile TempResetIndonesiaTaglineCrisis.json +// +// Input file: +// TempResetIndonesiaTaglineCrisis.json (3532461 bytes created 2:29+07:00 Aug 31 2025) +// +// LottieGen source: +// http://aka.ms/Lottie +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ +// ____________________________________ +// | Object stats | Count | +// |__________________________|_______| +// | All CompositionObjects | 8211 | +// |--------------------------+-------| +// | Expression animators | 15 | +// | KeyFrame animators | 58 | +// | Reference parameters | 25 | +// | Expression operations | 56 | +// |--------------------------+-------| +// | Animated brushes | 14 | +// | Animated gradient stops | - | +// | ExpressionAnimations | 15 | +// | PathKeyFrameAnimations | - | +// |--------------------------+-------| +// | ContainerVisuals | 11 | +// | ShapeVisuals | 11 | +// |--------------------------+-------| +// | ContainerShapes | 23 | +// | CompositionSpriteShapes | 2220 | +// |--------------------------+-------| +// | Brushes | 24 | +// | Gradient stops | - | +// | CompositionVisualSurface | 6 | +// ------------------------------------ +using Microsoft.Graphics; +using Microsoft.Graphics.Canvas; +using Microsoft.Graphics.Canvas.Effects; +using Microsoft.Graphics.Canvas.Geometry; +using Microsoft.UI.Composition; +using Microsoft.UI.Xaml; +using System; +using System.Collections.Generic; +using System.Numerics; +using Windows.UI; + +namespace CollapseLauncher.AnimatedVisuals.Lottie +{ + // Name: CrisisIntro + // Frame rate: 60 fps + // Frame count: 4800 + // Duration: 80000.0 mS + public sealed partial class TempResetIndonesiaTaglineCrisis + : DependencyObject + , Microsoft.UI.Xaml.Controls.IAnimatedVisualSource + , Microsoft.UI.Xaml.Controls.IAnimatedVisualSource2 + { + // Animation duration: 80.000 seconds. + internal const long c_durationTicks = 800000000; + + // Theme property: Color_E63B3B. + internal static readonly Color c_themeColor_E63B3B = Color.FromArgb(0xFF, 0xE6, 0x3B, 0x3B); + + // Theme property: Color_FF0000. + internal static readonly Color c_themeColor_FF0000 = Color.FromArgb(0xFF, 0xFF, 0x00, 0x00); + + // Theme property: Color_FFFFFF. + internal static readonly Color c_themeColor_FFFFFF = Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF); + + CompositionPropertySet _themeProperties; + + /// + /// Dependency property for Color_E63B3B. + /// + public static readonly DependencyProperty Color_E63B3BProperty = + DependencyProperty.Register("Color_E63B3B", typeof(Color), typeof(TempResetIndonesiaTaglineCrisis), + new PropertyMetadata(Color.FromArgb(0xFF, 0xE6, 0x3B, 0x3B), OnColor_E63B3BChanged)); + + /// + /// Dependency property for Color_FF0000. + /// + public static readonly DependencyProperty Color_FF0000Property = + DependencyProperty.Register("Color_FF0000", typeof(Color), typeof(TempResetIndonesiaTaglineCrisis), + new PropertyMetadata(Color.FromArgb(0xFF, 0xFF, 0x00, 0x00), OnColor_FF0000Changed)); + + /// + /// Dependency property for Color_FFFFFF. + /// + public static readonly DependencyProperty Color_FFFFFFProperty = + DependencyProperty.Register("Color_FFFFFF", typeof(Color), typeof(TempResetIndonesiaTaglineCrisis), + new PropertyMetadata(Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF), OnColor_FFFFFFChanged)); + + // Theme properties. + public Color Color_E63B3B + { + get => (Color)GetValue(Color_E63B3BProperty); + set => SetValue(Color_E63B3BProperty, value); + } + + public Color Color_FF0000 + { + get => (Color)GetValue(Color_FF0000Property); + set => SetValue(Color_FF0000Property, value); + } + + public Color Color_FFFFFF + { + get => (Color)GetValue(Color_FFFFFFProperty); + set => SetValue(Color_FFFFFFProperty, value); + } + + static Vector4 ColorAsVector4(Color color) => new Vector4(color.R, color.G, color.B, color.A); + + static void OnColor_E63B3BChanged(DependencyObject d, DependencyPropertyChangedEventArgs args) + { + ((TempResetIndonesiaTaglineCrisis)d)._themeProperties?.InsertVector4("Color_E63B3B", ColorAsVector4((Color)(Color)args.NewValue)); + } + + static void OnColor_FF0000Changed(DependencyObject d, DependencyPropertyChangedEventArgs args) + { + ((TempResetIndonesiaTaglineCrisis)d)._themeProperties?.InsertVector4("Color_FF0000", ColorAsVector4((Color)(Color)args.NewValue)); + } + + static void OnColor_FFFFFFChanged(DependencyObject d, DependencyPropertyChangedEventArgs args) + { + ((TempResetIndonesiaTaglineCrisis)d)._themeProperties?.InsertVector4("Color_FFFFFF", ColorAsVector4((Color)(Color)args.NewValue)); + } + + CompositionPropertySet EnsureThemeProperties(Compositor compositor) + { + if (_themeProperties == null) + { + _themeProperties = compositor.CreatePropertySet(); + _themeProperties.InsertVector4("Color_E63B3B", ColorAsVector4((Color)Color_E63B3B)); + _themeProperties.InsertVector4("Color_FF0000", ColorAsVector4((Color)Color_FF0000)); + _themeProperties.InsertVector4("Color_FFFFFF", ColorAsVector4((Color)Color_FFFFFF)); + } + return _themeProperties; + } + + public Microsoft.UI.Xaml.Controls.IAnimatedVisual TryCreateAnimatedVisual(Compositor compositor) + { + object ignored = null; + return TryCreateAnimatedVisual(compositor, out ignored); + } + + public Microsoft.UI.Xaml.Controls.IAnimatedVisual TryCreateAnimatedVisual(Compositor compositor, out object diagnostics) + { + diagnostics = null; + EnsureThemeProperties(compositor); + + var res = + new TempResetIndonesiaTaglineCrisis_AnimatedVisual( + compositor, + _themeProperties + ); + res.CreateAnimations(); + return res; + } + + /// + /// Gets the number of frames in the animation. + /// + public double FrameCount => 4800d; + + /// + /// Gets the frame rate of the animation. + /// + public double Framerate => 60d; + + /// + /// Gets the duration of the animation. + /// + public TimeSpan Duration => TimeSpan.FromTicks(800000000); + + /// + /// Converts a zero-based frame number to the corresponding progress value denoting the + /// start of the frame. + /// + public double FrameToProgress(double frameNumber) + { + return frameNumber / 4800d; + } + + /// + /// Returns a map from marker names to corresponding progress values. + /// + public IReadOnlyDictionary Markers => + new Dictionary + { + }; + + /// + /// Sets the color property with the given name, or does nothing if no such property + /// exists. + /// + public void SetColorProperty(string propertyName, Color value) + { + if (propertyName == "Color_E63B3B") + { + Color_E63B3B = value; + } + else if (propertyName == "Color_FF0000") + { + Color_FF0000 = value; + } + else if (propertyName == "Color_FFFFFF") + { + Color_FFFFFF = value; + } + else + { + return; + } + + if (_themeProperties != null) + { + _themeProperties.InsertVector4(propertyName, ColorAsVector4(value)); + } + } + + /// + /// Sets the scalar property with the given name, or does nothing if no such property + /// exists. + /// + public void SetScalarProperty(string propertyName, double value) + { + } + + sealed partial class TempResetIndonesiaTaglineCrisis_AnimatedVisual + : Microsoft.UI.Xaml.Controls.IAnimatedVisual + , Microsoft.UI.Xaml.Controls.IAnimatedVisual2 + { + const long c_durationTicks = 800000000; + readonly Compositor _c; + readonly ExpressionAnimation _reusableExpressionAnimation; + readonly CompositionPropertySet _themeProperties; + AnimationController _animationController_0; + BooleanKeyFrameAnimation _isVisibleBooleanAnimation; + CompositionColorBrush _colorBrush_Black; + CompositionColorBrush _themeColor_Color_E63B3B_0; + CompositionColorBrush _themeColor_Color_E63B3B_1; + CompositionColorBrush _themeColor_Color_E63B3B_2; + CompositionColorBrush _themeColor_Color_FF0000; + CompositionColorBrush _themeColor_Color_FFFFFF_0; + CompositionColorBrush _themeColor_Color_FFFFFF_1; + CompositionColorBrush _themeColor_Color_FFFFFF_2; + CompositionColorBrush _themeColor_Color_FFFFFF_3; + CompositionColorBrush _themeColor_Color_FFFFFF_4; + CompositionColorBrush _themeColor_Color_FFFFFF_5; + CompositionColorBrush _themeColor_Color_FFFFFF_6; + CompositionColorBrush _themeColor_Color_FFFFFF_7; + CompositionColorBrush _themeColor_Color_FFFFFF_8; + CompositionColorBrush _themeColor_Color_FFFFFF_9; + CompositionContainerShape _containerShape_00; + CompositionContainerShape _containerShape_01; + CompositionContainerShape _containerShape_02; + CompositionContainerShape _containerShape_03; + CompositionContainerShape _containerShape_04; + CompositionContainerShape _containerShape_05; + CompositionContainerShape _containerShape_06; + CompositionContainerShape _containerShape_07; + CompositionContainerShape _containerShape_08; + CompositionContainerShape _containerShape_09; + CompositionContainerShape _containerShape_10; + CompositionContainerShape _containerShape_11; + CompositionContainerShape _containerShape_12; + CompositionContainerShape _containerShape_13; + CompositionContainerShape _containerShape_14; + CompositionContainerShape _containerShape_15; + CompositionContainerShape _containerShape_16; + CompositionContainerShape _containerShape_17; + CompositionContainerShape _containerShape_18; + CompositionContainerShape _containerShape_19; + CompositionContainerShape _containerShape_20; + CompositionContainerShape _containerShape_21; + CompositionContainerShape _containerShape_22; + CompositionEffectFactory _effectFactory; + CompositionPathGeometry _pathGeometry_0029; + CompositionPathGeometry _pathGeometry_0137; + CompositionPathGeometry _pathGeometry_0138; + CompositionPathGeometry _pathGeometry_0139; + CompositionPathGeometry _pathGeometry_0140; + CompositionPathGeometry _pathGeometry_0141; + CompositionPathGeometry _pathGeometry_0142; + CompositionPathGeometry _pathGeometry_0143; + CompositionPathGeometry _pathGeometry_0144; + CompositionPathGeometry _pathGeometry_0145; + CompositionPathGeometry _pathGeometry_0146; + CompositionPathGeometry _pathGeometry_0147; + CompositionPathGeometry _pathGeometry_0148; + CompositionPathGeometry _pathGeometry_0149; + CompositionPathGeometry _pathGeometry_0150; + CompositionPathGeometry _pathGeometry_0151; + CompositionPathGeometry _pathGeometry_0152; + CompositionPathGeometry _pathGeometry_0153; + CompositionPathGeometry _pathGeometry_0154; + CompositionPathGeometry _pathGeometry_0155; + CompositionPathGeometry _pathGeometry_0156; + CompositionPathGeometry _pathGeometry_0157; + CompositionPathGeometry _pathGeometry_0158; + CompositionPathGeometry _pathGeometry_0159; + CompositionPathGeometry _pathGeometry_0160; + CompositionPathGeometry _pathGeometry_0161; + CompositionPathGeometry _pathGeometry_0162; + CompositionPathGeometry _pathGeometry_0163; + CompositionPathGeometry _pathGeometry_0164; + CompositionPathGeometry _pathGeometry_0165; + CompositionPathGeometry _pathGeometry_0166; + CompositionPathGeometry _pathGeometry_0167; + CompositionPathGeometry _pathGeometry_0168; + CompositionPathGeometry _pathGeometry_0169; + CompositionPathGeometry _pathGeometry_0170; + CompositionPathGeometry _pathGeometry_0171; + CompositionPathGeometry _pathGeometry_0172; + CompositionPathGeometry _pathGeometry_0173; + CompositionPathGeometry _pathGeometry_0174; + CompositionPathGeometry _pathGeometry_0175; + CompositionPathGeometry _pathGeometry_0176; + CompositionPathGeometry _pathGeometry_0177; + CompositionPathGeometry _pathGeometry_0178; + CompositionPathGeometry _pathGeometry_0179; + CompositionPathGeometry _pathGeometry_0180; + CompositionPathGeometry _pathGeometry_0181; + CompositionPathGeometry _pathGeometry_0182; + CompositionPathGeometry _pathGeometry_0183; + CompositionPathGeometry _pathGeometry_0184; + CompositionPathGeometry _pathGeometry_0185; + CompositionPathGeometry _pathGeometry_0186; + CompositionPathGeometry _pathGeometry_0187; + CompositionPathGeometry _pathGeometry_0188; + CompositionPathGeometry _pathGeometry_0189; + CompositionPathGeometry _pathGeometry_0190; + CompositionPathGeometry _pathGeometry_0191; + CompositionPathGeometry _pathGeometry_0192; + CompositionPathGeometry _pathGeometry_0193; + CompositionPathGeometry _pathGeometry_0194; + CompositionPathGeometry _pathGeometry_0195; + CompositionPathGeometry _pathGeometry_0196; + CompositionPathGeometry _pathGeometry_0197; + CompositionPathGeometry _pathGeometry_0198; + CompositionPathGeometry _pathGeometry_0199; + CompositionPathGeometry _pathGeometry_0200; + CompositionPathGeometry _pathGeometry_0201; + CompositionPathGeometry _pathGeometry_0202; + CompositionPathGeometry _pathGeometry_0203; + CompositionPathGeometry _pathGeometry_0204; + CompositionPathGeometry _pathGeometry_0205; + CompositionPathGeometry _pathGeometry_0206; + CompositionPathGeometry _pathGeometry_0207; + CompositionPathGeometry _pathGeometry_0208; + CompositionPathGeometry _pathGeometry_0209; + CompositionPathGeometry _pathGeometry_0210; + CompositionPathGeometry _pathGeometry_0211; + CompositionPathGeometry _pathGeometry_0212; + CompositionPathGeometry _pathGeometry_0213; + CompositionPathGeometry _pathGeometry_0214; + CompositionPathGeometry _pathGeometry_0215; + CompositionPathGeometry _pathGeometry_0216; + CompositionPathGeometry _pathGeometry_0217; + CompositionPathGeometry _pathGeometry_0218; + CompositionPathGeometry _pathGeometry_0219; + CompositionPathGeometry _pathGeometry_0220; + CompositionPathGeometry _pathGeometry_0221; + CompositionPathGeometry _pathGeometry_0222; + CompositionPathGeometry _pathGeometry_0223; + CompositionPathGeometry _pathGeometry_0224; + CompositionPathGeometry _pathGeometry_0225; + CompositionPathGeometry _pathGeometry_0226; + CompositionPathGeometry _pathGeometry_0227; + CompositionPathGeometry _pathGeometry_0228; + CompositionPathGeometry _pathGeometry_0229; + CompositionPathGeometry _pathGeometry_0230; + CompositionPathGeometry _pathGeometry_0231; + CompositionPathGeometry _pathGeometry_0232; + CompositionPathGeometry _pathGeometry_0233; + CompositionPathGeometry _pathGeometry_0234; + CompositionPathGeometry _pathGeometry_0235; + CompositionPathGeometry _pathGeometry_0236; + CompositionPathGeometry _pathGeometry_0237; + CompositionPathGeometry _pathGeometry_0238; + CompositionPathGeometry _pathGeometry_0239; + CompositionPathGeometry _pathGeometry_0240; + CompositionPathGeometry _pathGeometry_0241; + CompositionPathGeometry _pathGeometry_0242; + CompositionPathGeometry _pathGeometry_0243; + CompositionPathGeometry _pathGeometry_0244; + CompositionPathGeometry _pathGeometry_0245; + CompositionPathGeometry _pathGeometry_0246; + CompositionPathGeometry _pathGeometry_0247; + CompositionPathGeometry _pathGeometry_0248; + CompositionPathGeometry _pathGeometry_0249; + CompositionPathGeometry _pathGeometry_0250; + CompositionPathGeometry _pathGeometry_0251; + CompositionPathGeometry _pathGeometry_0252; + CompositionPathGeometry _pathGeometry_0253; + CompositionPathGeometry _pathGeometry_0254; + CompositionPathGeometry _pathGeometry_0255; + CompositionPathGeometry _pathGeometry_0256; + CompositionPathGeometry _pathGeometry_0412; + CompositionRectangleGeometry _rectangle_1920x82; + ContainerVisual _containerVisual_0; + ContainerVisual _containerVisual_1; + ContainerVisual _containerVisual_8; + ContainerVisual _containerVisual_9; + ContainerVisual _root; + CubicBezierEasingFunction _cubicBezierEasingFunction_0; + CubicBezierEasingFunction _cubicBezierEasingFunction_1; + CubicBezierEasingFunction _cubicBezierEasingFunction_2; + CubicBezierEasingFunction _cubicBezierEasingFunction_3; + InsetClip _insetClip_0; + ShapeVisual _shapeVisual_00; + ShapeVisual _shapeVisual_01; + ShapeVisual _shapeVisual_02; + ShapeVisual _shapeVisual_03; + ShapeVisual _shapeVisual_04; + ShapeVisual _shapeVisual_05; + ShapeVisual _shapeVisual_06; + ShapeVisual _shapeVisual_08; + StepEasingFunction _holdThenStepEasingFunction; + StepEasingFunction _stepThenHoldEasingFunction; + Vector2KeyFrameAnimation _shapeVisibilityAnimation_00; + + void BindProperty( + CompositionObject target, + string animatedPropertyName, + string expression, + string referenceParameterName, + CompositionObject referencedObject) + { + _reusableExpressionAnimation.ClearAllParameters(); + _reusableExpressionAnimation.Expression = expression; + _reusableExpressionAnimation.SetReferenceParameter(referenceParameterName, referencedObject); + target.StartAnimation(animatedPropertyName, _reusableExpressionAnimation); + } + + void BindProperty2( + CompositionObject target, + string animatedPropertyName, + string expression, + string referenceParameterName0, + CompositionObject referencedObject0, + string referenceParameterName1, + CompositionObject referencedObject1) + { + _reusableExpressionAnimation.ClearAllParameters(); + _reusableExpressionAnimation.Expression = expression; + _reusableExpressionAnimation.SetReferenceParameter(referenceParameterName0, referencedObject0); + _reusableExpressionAnimation.SetReferenceParameter(referenceParameterName1, referencedObject1); + target.StartAnimation(animatedPropertyName, _reusableExpressionAnimation); + } + + BooleanKeyFrameAnimation CreateBooleanKeyFrameAnimation(float initialProgress, bool initialValue) + { + var result = _c.CreateBooleanKeyFrameAnimation(); + result.Duration = TimeSpan.FromTicks(c_durationTicks); + result.InsertKeyFrame(initialProgress, initialValue); + return result; + } + + ScalarKeyFrameAnimation CreateScalarKeyFrameAnimation(float initialProgress, float initialValue, CompositionEasingFunction initialEasingFunction) + { + var result = _c.CreateScalarKeyFrameAnimation(); + result.Duration = TimeSpan.FromTicks(c_durationTicks); + result.InsertKeyFrame(initialProgress, initialValue, initialEasingFunction); + return result; + } + + Vector2KeyFrameAnimation CreateVector2KeyFrameAnimation(float initialProgress, Vector2 initialValue, CompositionEasingFunction initialEasingFunction) + { + var result = _c.CreateVector2KeyFrameAnimation(); + result.Duration = TimeSpan.FromTicks(c_durationTicks); + result.InsertKeyFrame(initialProgress, initialValue, initialEasingFunction); + return result; + } + + CompositionSpriteShape CreateSpriteShape(CompositionGeometry geometry, Matrix3x2 transformMatrix) + { + var result = _c.CreateSpriteShape(geometry); + result.TransformMatrix = transformMatrix; + return result; + } + + CompositionSpriteShape CreateSpriteShape(CompositionGeometry geometry, Matrix3x2 transformMatrix, CompositionBrush fillBrush) + { + var result = _c.CreateSpriteShape(geometry); + result.TransformMatrix = transformMatrix; + result.FillBrush = fillBrush; + return result; + } + + AnimationController AnimationController_0() + { + if (_animationController_0 != null) { return _animationController_0; } + var result = _animationController_0 = _c.CreateAnimationController(); + result.Pause(); + BindProperty(_animationController_0, "Progress", "_.Progress", "_", _root); + return result; + } + + BooleanKeyFrameAnimation IsVisibleBooleanAnimation() + { + // Frame 0. + if (_isVisibleBooleanAnimation != null) { return _isVisibleBooleanAnimation; } + var result = _isVisibleBooleanAnimation = CreateBooleanKeyFrameAnimation(0F, false); + // Frame 4350. + result.InsertKeyFrame(0.90625F, true); + return result; + } + + // - - - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - - - Opacity for layer: Comp 1 + // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - - - Shape tree root for layer: Shape Layer 1 + // - - Offset:<701, 286> + CanvasGeometry Geometry_0000() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.BeginFigure(new Vector2(173.231003F, 18.2870007F)); + builder.AddCubicBezier(new Vector2(173.231003F, 18.2870007F), new Vector2(173.347F, 18.2110004F), new Vector2(172.914993F, 17.6539993F)); + builder.AddCubicBezier(new Vector2(172.483002F, 17.0970001F), new Vector2(171.867996F, 16.4720001F), new Vector2(171.867996F, 16.4720001F)); + builder.AddCubicBezier(new Vector2(171.867996F, 16.4720001F), new Vector2(170.276993F, 14.5869999F), new Vector2(169.459F, 13.665F)); + builder.AddCubicBezier(new Vector2(149.216003F, -9.13899994F), new Vector2(119.681F, -23.5090008F), new Vector2(86.7900009F, -23.5090008F)); + builder.AddCubicBezier(new Vector2(25.7590008F, -23.5090008F), new Vector2(-23.7159996F, 25.9659996F), new Vector2(-23.7159996F, 86.9970016F)); + builder.AddCubicBezier(new Vector2(-23.7159996F, 120.623001F), new Vector2(-8.69699955F, 150.740997F), new Vector2(14.9980001F, 171.009003F)); + builder.AddCubicBezier(new Vector2(15.3710003F, 171.326996F), new Vector2(16.1219997F, 171.957001F), new Vector2(16.1219997F, 171.957001F)); + builder.AddCubicBezier(new Vector2(16.1219997F, 171.957001F), new Vector2(16.8110008F, 172.632004F), new Vector2(17.5119991F, 173.222F)); + builder.AddCubicBezier(new Vector2(17.5119991F, 173.222F), new Vector2(16.3999996F, 173.328003F), new Vector2(15.8430004F, 173.378006F)); + builder.AddCubicBezier(new Vector2(10.6870003F, 173.837006F), new Vector2(5.46600008F, 174.072006F), new Vector2(0.189999998F, 174.072006F)); + builder.AddCubicBezier(new Vector2(-96.0780029F, 174.072006F), new Vector2(-174.117996F, 96.0319977F), new Vector2(-174.117996F, -0.236000001F)); + builder.AddCubicBezier(new Vector2(-174.117996F, -96.5039978F), new Vector2(-96.0780029F, -174.544006F), new Vector2(0.189999998F, -174.544006F)); + builder.AddCubicBezier(new Vector2(96.4580002F, -174.544006F), new Vector2(174.498001F, -96.5039978F), new Vector2(174.498001F, -0.236000001F)); + builder.AddCubicBezier(new Vector2(174.498001F, 5.25299978F), new Vector2(174.244003F, 10.6820002F), new Vector2(173.748001F, 16.0410004F)); + builder.AddCubicBezier(new Vector2(173.701004F, 16.5489998F), new Vector2(173.600006F, 17.5610008F), new Vector2(173.600006F, 17.5610008F)); + builder.AddLine(new Vector2(173.231003F, 18.2870007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - - - Opacity for layer: Comp 1 + // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - - - Masks + // - - Layer: Shape Layer 1 + CanvasGeometry Geometry_0001() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.BeginFigure(new Vector2(173.731003F, 18.7870007F)); + builder.AddCubicBezier(new Vector2(173.731003F, 18.7870007F), new Vector2(173.847F, 18.7110004F), new Vector2(173.414993F, 18.1539993F)); + builder.AddCubicBezier(new Vector2(172.983002F, 17.5970001F), new Vector2(172.367996F, 16.9720001F), new Vector2(172.367996F, 16.9720001F)); + builder.AddCubicBezier(new Vector2(172.367996F, 16.9720001F), new Vector2(170.776993F, 15.0869999F), new Vector2(169.959F, 14.165F)); + builder.AddCubicBezier(new Vector2(149.716003F, -8.63899994F), new Vector2(120.181F, -23.0090008F), new Vector2(87.2900009F, -23.0090008F)); + builder.AddCubicBezier(new Vector2(26.2590008F, -23.0090008F), new Vector2(-23.2159996F, 26.4659996F), new Vector2(-23.2159996F, 87.4970016F)); + builder.AddCubicBezier(new Vector2(-23.2159996F, 121.123001F), new Vector2(-8.19699955F, 151.240997F), new Vector2(15.4980001F, 171.509003F)); + builder.AddCubicBezier(new Vector2(15.8710003F, 171.826996F), new Vector2(16.6219997F, 172.457001F), new Vector2(16.6219997F, 172.457001F)); + builder.AddCubicBezier(new Vector2(16.6219997F, 172.457001F), new Vector2(17.3110008F, 173.132004F), new Vector2(18.0119991F, 173.722F)); + builder.AddCubicBezier(new Vector2(18.0119991F, 173.722F), new Vector2(16.8999996F, 173.828003F), new Vector2(16.3430004F, 173.878006F)); + builder.AddCubicBezier(new Vector2(11.1870003F, 174.337006F), new Vector2(5.96600008F, 174.572006F), new Vector2(0.689999998F, 174.572006F)); + builder.AddCubicBezier(new Vector2(-95.5780029F, 174.572006F), new Vector2(-173.617996F, 96.5319977F), new Vector2(-173.617996F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-173.617996F, -96.0039978F), new Vector2(-95.5780029F, -174.044006F), new Vector2(0.689999998F, -174.044006F)); + builder.AddCubicBezier(new Vector2(96.9580002F, -174.044006F), new Vector2(174.998001F, -96.0039978F), new Vector2(174.998001F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(174.998001F, 5.75299978F), new Vector2(174.744003F, 11.1820002F), new Vector2(174.248001F, 16.5410004F)); + builder.AddCubicBezier(new Vector2(174.201004F, 17.0489998F), new Vector2(174.100006F, 18.0610008F), new Vector2(174.100006F, 18.0610008F)); + builder.AddLine(new Vector2(173.731003F, 18.7870007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - - - Opacity for layer: Comp 1 + // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - - - Shape tree root for layer: Shape Layer 2 + // - - Offset:<523.5, 488.5> + CanvasGeometry Geometry_0002() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.BeginFigure(new Vector2(443.60199F, -36.7270012F)); + builder.AddCubicBezier(new Vector2(443.799988F, -34.3030014F), new Vector2(443.97699F, -31.8740005F), new Vector2(444.135986F, -29.4389992F)); + builder.AddCubicBezier(new Vector2(444.768005F, -19.7369995F), new Vector2(445.088989F, -9.95100021F), new Vector2(445.088989F, -0.0890000015F)); + builder.AddCubicBezier(new Vector2(445.088989F, 245.695007F), new Vector2(245.841003F, 444.941986F), new Vector2(0.057F, 444.941986F)); + builder.AddCubicBezier(new Vector2(-245.727005F, 444.941986F), new Vector2(-444.973999F, 245.695007F), new Vector2(-444.973999F, -0.0890000015F)); + builder.AddCubicBezier(new Vector2(-444.973999F, -232.796997F), new Vector2(-266.364014F, -423.787994F), new Vector2(-38.7540016F, -443.451996F)); + builder.AddCubicBezier(new Vector2(-33.0839996F, -443.941986F), new Vector2(-20.6819992F, -444.803986F), new Vector2(-20.6819992F, -444.803986F)); + builder.AddCubicBezier(new Vector2(-20.6819992F, -444.803986F), new Vector2(-135.621002F, -375.77301F), new Vector2(-135.621002F, -202.735992F)); + builder.AddCubicBezier(new Vector2(-135.621002F, -29.6989994F), new Vector2(4.65299988F, 110.574997F), new Vector2(177.690002F, 110.574997F)); + builder.AddCubicBezier(new Vector2(278.885986F, 110.574997F), new Vector2(368.876007F, 62.5979996F), new Vector2(426.157013F, -11.8500004F)); + builder.AddCubicBezier(new Vector2(429.790009F, -16.5709991F), new Vector2(434.002991F, -21.7889996F), new Vector2(437.173004F, -26.8449993F)); + builder.AddCubicBezier(new Vector2(437.173004F, -26.8449993F), new Vector2(440.427002F, -31.9190006F), new Vector2(443.60199F, -36.7270012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - - - Opacity for layer: Comp 1 + // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - - - Masks + // - - Layer: Shape Layer 2 + CanvasGeometry Geometry_0003() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.BeginFigure(new Vector2(444.10199F, -36.2270012F)); + builder.AddCubicBezier(new Vector2(444.299988F, -33.8030014F), new Vector2(444.47699F, -31.3740005F), new Vector2(444.635986F, -28.9389992F)); + builder.AddCubicBezier(new Vector2(445.268005F, -19.2369995F), new Vector2(445.588989F, -9.45100021F), new Vector2(445.588989F, 0.411000013F)); + builder.AddCubicBezier(new Vector2(445.588989F, 246.195007F), new Vector2(246.341003F, 445.441986F), new Vector2(0.556999981F, 445.441986F)); + builder.AddCubicBezier(new Vector2(-245.227005F, 445.441986F), new Vector2(-444.473999F, 246.195007F), new Vector2(-444.473999F, 0.411000013F)); + builder.AddCubicBezier(new Vector2(-444.473999F, -232.296997F), new Vector2(-265.864014F, -423.287994F), new Vector2(-38.2540016F, -442.951996F)); + builder.AddCubicBezier(new Vector2(-32.5839996F, -443.441986F), new Vector2(-20.1819992F, -444.303986F), new Vector2(-20.1819992F, -444.303986F)); + builder.AddCubicBezier(new Vector2(-20.1819992F, -444.303986F), new Vector2(-135.121002F, -375.27301F), new Vector2(-135.121002F, -202.235992F)); + builder.AddCubicBezier(new Vector2(-135.121002F, -29.1989994F), new Vector2(5.15299988F, 111.074997F), new Vector2(178.190002F, 111.074997F)); + builder.AddCubicBezier(new Vector2(279.385986F, 111.074997F), new Vector2(369.376007F, 63.0979996F), new Vector2(426.657013F, -11.3500004F)); + builder.AddCubicBezier(new Vector2(430.290009F, -16.0709991F), new Vector2(434.502991F, -21.2889996F), new Vector2(437.673004F, -26.3449993F)); + builder.AddCubicBezier(new Vector2(437.673004F, -26.3449993F), new Vector2(440.927002F, -31.4190006F), new Vector2(444.10199F, -36.2270012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - - - Opacity for layer: Comp 1 + // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - - - Shape tree root for layer: Shape Layer 3 + // - - Offset:<416, 509> + CanvasGeometry Geometry_0004() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.BeginFigure(new Vector2(14.625F, -433.006989F)); + builder.AddCubicBezier(new Vector2(14.625F, -433.006989F), new Vector2(6.5079999F, -411.559998F), new Vector2(-15.6359997F, -374.856995F)); + builder.AddCubicBezier(new Vector2(-63.8619995F, -294.923004F), new Vector2(-131.690002F, -178.643005F), new Vector2(-114.246002F, 12.4989996F)); + builder.AddCubicBezier(new Vector2(-96.1620026F, 210.658005F), new Vector2(22.6369991F, 335.742004F), new Vector2(140.007004F, 393.494995F)); + builder.AddCubicBezier(new Vector2(155.653F, 401.192993F), new Vector2(167.559998F, 401.328003F), new Vector2(167.559998F, 401.328003F)); + builder.EndFigure(CanvasFigureLoop.Open); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - - - Opacity for layer: Comp 1 + // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - - - Shape tree root for layer: Shape Layer 3 + // - - Offset:<416, 509> + CanvasGeometry Geometry_0005() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.BeginFigure(new Vector2(0F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - - - Opacity for layer: Comp 1 + // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - - - Masks + // - - Layer: Shape Layer 3 + CanvasGeometry Geometry_0006() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.BeginFigure(new Vector2(-123.046997F, 355.328003F)); + builder.AddLine(new Vector2(167.559998F, 401.328003F)); + builder.AddLine(new Vector2(14.1549997F, -119.635002F)); + builder.AddLine(new Vector2(-44.5229988F, -318.907013F)); + builder.AddLine(new Vector2(21.5599995F, -419F)); + builder.AddLine(new Vector2(-107.386002F, -393.46701F)); + builder.AddLine(new Vector2(-250.382996F, -174.955994F)); + builder.AddLine(new Vector2(-123.046997F, 355.328003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Scale:1.23,1.23, Offset:<1464, 580> + CanvasGeometry Geometry_0007() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(232.832001F, -0.60799998F)); + builder.AddCubicBezier(new Vector2(235.007996F, -1.48199999F), new Vector2(236.863998F, -2.83699989F), new Vector2(238.399994F, -4.67199993F)); + builder.AddLine(new Vector2(232.960007F, -10.0480003F)); + builder.AddCubicBezier(new Vector2(232.020996F, -8.98099995F), new Vector2(230.932999F, -8.18099976F), new Vector2(229.695999F, -7.64799976F)); + builder.AddCubicBezier(new Vector2(228.457993F, -7.11399984F), new Vector2(227.093002F, -6.84800005F), new Vector2(225.600006F, -6.84800005F)); + builder.AddCubicBezier(new Vector2(223.936005F, -6.84800005F), new Vector2(222.496002F, -7.19999981F), new Vector2(221.279999F, -7.90399981F)); + builder.AddCubicBezier(new Vector2(220.063995F, -8.6079998F), new Vector2(219.125F, -9.62100029F), new Vector2(218.464005F, -10.9440002F)); + builder.AddCubicBezier(new Vector2(217.802002F, -12.2659998F), new Vector2(217.472F, -13.8240004F), new Vector2(217.472F, -15.6160002F)); + builder.AddCubicBezier(new Vector2(217.472F, -17.4080009F), new Vector2(217.781006F, -18.9440002F), new Vector2(218.399994F, -20.2240009F)); + builder.AddCubicBezier(new Vector2(219.018005F, -21.5039997F), new Vector2(219.893005F, -22.5060005F), new Vector2(221.024002F, -23.2320004F)); + builder.AddCubicBezier(new Vector2(222.154007F, -23.9570007F), new Vector2(223.488007F, -24.3199997F), new Vector2(225.024002F, -24.3199997F)); + builder.AddCubicBezier(new Vector2(226.432007F, -24.3199997F), new Vector2(227.636993F, -24F), new Vector2(228.639999F, -23.3600006F)); + builder.AddCubicBezier(new Vector2(229.641998F, -22.7199993F), new Vector2(230.399994F, -21.8129997F), new Vector2(230.912003F, -20.6399994F)); + builder.AddCubicBezier(new Vector2(231.423996F, -19.4659996F), new Vector2(231.701004F, -18.0049992F), new Vector2(231.744003F, -16.2560005F)); + builder.AddLine(new Vector2(235.968002F, -19.1359997F)); + builder.AddLine(new Vector2(213.440002F, -19.0079994F)); + builder.AddLine(new Vector2(213.440002F, -12.224F)); + builder.AddLine(new Vector2(240.192001F, -12.3520002F)); + builder.AddCubicBezier(new Vector2(240.404999F, -13.1199999F), new Vector2(240.544006F, -13.8129997F), new Vector2(240.608002F, -14.4320002F)); + builder.AddCubicBezier(new Vector2(240.671997F, -15.0500002F), new Vector2(240.703995F, -15.658F), new Vector2(240.703995F, -16.2560005F)); + builder.AddCubicBezier(new Vector2(240.703995F, -19.2849998F), new Vector2(240.020996F, -21.9729996F), new Vector2(238.656006F, -24.3199997F)); + builder.AddCubicBezier(new Vector2(237.289993F, -26.6660004F), new Vector2(235.434006F, -28.5009995F), new Vector2(233.087997F, -29.8239994F)); + builder.AddCubicBezier(new Vector2(230.740997F, -31.1459999F), new Vector2(228.009995F, -31.8080006F), new Vector2(224.895996F, -31.8080006F)); + builder.AddCubicBezier(new Vector2(221.738007F, -31.8080006F), new Vector2(218.901001F, -31.1040001F), new Vector2(216.384003F, -29.6959991F)); + builder.AddCubicBezier(new Vector2(213.865997F, -28.2880001F), new Vector2(211.882004F, -26.3570004F), new Vector2(210.432007F, -23.9039993F)); + builder.AddCubicBezier(new Vector2(208.981003F, -21.4500008F), new Vector2(208.255997F, -18.6879997F), new Vector2(208.255997F, -15.6160002F)); + builder.AddCubicBezier(new Vector2(208.255997F, -12.4580002F), new Vector2(209.001999F, -9.6420002F), new Vector2(210.496002F, -7.16800022F)); + builder.AddCubicBezier(new Vector2(211.988998F, -4.69299984F), new Vector2(214.037003F, -2.76200008F), new Vector2(216.639999F, -1.37600005F)); + builder.AddCubicBezier(new Vector2(219.242004F, 0.00999999978F), new Vector2(222.229004F, 0.703999996F), new Vector2(225.600006F, 0.703999996F)); + builder.AddCubicBezier(new Vector2(228.244995F, 0.703999996F), new Vector2(230.656006F, 0.266000003F), new Vector2(232.832001F, -0.60799998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Scale:1.23,1.23, Offset:<1464, 580> + CanvasGeometry Geometry_0008() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(201.567993F, -1.88800001F)); + builder.AddCubicBezier(new Vector2(203.850006F, -3.70099998F), new Vector2(204.992004F, -6.12200022F), new Vector2(204.992004F, -9.15200043F)); + builder.AddCubicBezier(new Vector2(204.992004F, -11.1140003F), new Vector2(204.628998F, -12.7040005F), new Vector2(203.904007F, -13.9200001F)); + builder.AddCubicBezier(new Vector2(203.177994F, -15.1359997F), new Vector2(202.240005F, -16.1170006F), new Vector2(201.087997F, -16.8640003F)); + builder.AddCubicBezier(new Vector2(199.936005F, -17.6100006F), new Vector2(198.720001F, -18.1860008F), new Vector2(197.440002F, -18.5919991F)); + builder.AddCubicBezier(new Vector2(196.160004F, -18.9969997F), new Vector2(194.953995F, -19.3490009F), new Vector2(193.824005F, -19.6480007F)); + builder.AddCubicBezier(new Vector2(192.692993F, -19.9459991F), new Vector2(191.753998F, -20.2880001F), new Vector2(191.007996F, -20.6720009F)); + builder.AddCubicBezier(new Vector2(190.261002F, -21.0559998F), new Vector2(189.888F, -21.5680008F), new Vector2(189.888F, -22.2080002F)); + builder.AddCubicBezier(new Vector2(189.888F, -22.7619991F), new Vector2(190.164993F, -23.2099991F), new Vector2(190.720001F, -23.552F)); + builder.AddCubicBezier(new Vector2(191.274002F, -23.8929996F), new Vector2(192.106003F, -24.0639992F), new Vector2(193.216003F, -24.0639992F)); + builder.AddCubicBezier(new Vector2(194.367996F, -24.0639992F), new Vector2(195.552002F, -23.8180008F), new Vector2(196.768005F, -23.3279991F)); + builder.AddCubicBezier(new Vector2(197.983994F, -22.8369999F), new Vector2(199.082001F, -22.0160007F), new Vector2(200.063995F, -20.8640003F)); + builder.AddLine(new Vector2(205.632004F, -26.5599995F)); + builder.AddCubicBezier(new Vector2(204.266006F, -28.3519993F), new Vector2(202.453003F, -29.7059994F), new Vector2(200.192001F, -30.6240005F)); + builder.AddCubicBezier(new Vector2(197.929993F, -31.5410004F), new Vector2(195.498001F, -32F), new Vector2(192.895996F, -32F)); + builder.AddCubicBezier(new Vector2(190.292999F, -32F), new Vector2(188.052994F, -31.573F), new Vector2(186.175995F, -30.7199993F)); + builder.AddCubicBezier(new Vector2(184.298004F, -29.8659992F), new Vector2(182.848007F, -28.7040005F), new Vector2(181.824005F, -27.2320004F)); + builder.AddCubicBezier(new Vector2(180.800003F, -25.7600002F), new Vector2(180.287994F, -24.0209999F), new Vector2(180.287994F, -22.0160007F)); + builder.AddCubicBezier(new Vector2(180.287994F, -20.0960007F), new Vector2(180.649994F, -18.5380001F), new Vector2(181.376007F, -17.3439999F)); + builder.AddCubicBezier(new Vector2(182.100998F, -16.1490002F), new Vector2(183.039993F, -15.21F), new Vector2(184.192001F, -14.5279999F)); + builder.AddCubicBezier(new Vector2(185.343994F, -13.8450003F), new Vector2(186.559998F, -13.3009996F), new Vector2(187.839996F, -12.8959999F)); + builder.AddCubicBezier(new Vector2(189.119995F, -12.4899998F), new Vector2(190.345993F, -12.1280003F), new Vector2(191.520004F, -11.8079996F)); + builder.AddCubicBezier(new Vector2(192.692993F, -11.4879999F), new Vector2(193.641998F, -11.1459999F), new Vector2(194.367996F, -10.7840004F)); + builder.AddCubicBezier(new Vector2(195.093002F, -10.4209995F), new Vector2(195.455994F, -9.85599995F), new Vector2(195.455994F, -9.0880003F)); + builder.AddCubicBezier(new Vector2(195.455994F, -8.44799995F), new Vector2(195.145996F, -7.95699978F), new Vector2(194.528F, -7.61600018F)); + builder.AddCubicBezier(new Vector2(193.908997F, -7.27400017F), new Vector2(193.065994F, -7.10400009F), new Vector2(192F, -7.10400009F)); + builder.AddCubicBezier(new Vector2(190.292999F, -7.10400009F), new Vector2(188.746002F, -7.41300011F), new Vector2(187.360001F, -8.03199959F)); + builder.AddCubicBezier(new Vector2(185.973007F, -8.64999962F), new Vector2(184.746002F, -9.51399994F), new Vector2(183.679993F, -10.6239996F)); + builder.AddLine(new Vector2(178.048004F, -4.9920001F)); + builder.AddCubicBezier(new Vector2(179.156998F, -3.83999991F), new Vector2(180.457993F, -2.82599998F), new Vector2(181.951996F, -1.95200002F)); + builder.AddCubicBezier(new Vector2(183.445007F, -1.07700002F), new Vector2(185.087997F, -0.393999994F), new Vector2(186.880005F, 0.0960000008F)); + builder.AddCubicBezier(new Vector2(188.671997F, 0.586000025F), new Vector2(190.485001F, 0.832000017F), new Vector2(192.320007F, 0.832000017F)); + builder.AddCubicBezier(new Vector2(196.201996F, 0.832000017F), new Vector2(199.285004F, -0.074000001F), new Vector2(201.567993F, -1.88800001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Scale:1.23,1.23, Offset:<1464, 580> + CanvasGeometry Geometry_0009() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(155.488007F, -9.18400002F)); + builder.AddCubicBezier(new Vector2(154.442001F, -9.80200005F), new Vector2(153.621002F, -10.6660004F), new Vector2(153.024002F, -11.776F)); + builder.AddCubicBezier(new Vector2(152.425995F, -12.8850002F), new Vector2(152.128006F, -14.1440001F), new Vector2(152.128006F, -15.552F)); + builder.AddCubicBezier(new Vector2(152.128006F, -16.9599991F), new Vector2(152.425995F, -18.2180004F), new Vector2(153.024002F, -19.3279991F)); + builder.AddCubicBezier(new Vector2(153.621002F, -20.4370003F), new Vector2(154.442001F, -21.3010006F), new Vector2(155.488007F, -21.9200001F)); + builder.AddCubicBezier(new Vector2(156.533005F, -22.5380001F), new Vector2(157.738007F, -22.8479996F), new Vector2(159.104004F, -22.8479996F)); + builder.AddCubicBezier(new Vector2(160.468994F, -22.8479996F), new Vector2(161.664001F, -22.5380001F), new Vector2(162.688004F, -21.9200001F)); + builder.AddCubicBezier(new Vector2(163.712006F, -21.3010006F), new Vector2(164.533005F, -20.4370003F), new Vector2(165.151993F, -19.3279991F)); + builder.AddCubicBezier(new Vector2(165.770004F, -18.2180004F), new Vector2(166.080002F, -16.9599991F), new Vector2(166.080002F, -15.552F)); + builder.AddCubicBezier(new Vector2(166.080002F, -14.1440001F), new Vector2(165.770004F, -12.8850002F), new Vector2(165.151993F, -11.776F)); + builder.AddCubicBezier(new Vector2(164.533005F, -10.6660004F), new Vector2(163.701004F, -9.80200005F), new Vector2(162.656006F, -9.18400002F)); + builder.AddCubicBezier(new Vector2(161.610001F, -8.56499958F), new Vector2(160.404999F, -8.25599957F), new Vector2(159.039993F, -8.25599957F)); + builder.AddCubicBezier(new Vector2(157.716995F, -8.25599957F), new Vector2(156.533005F, -8.56499958F), new Vector2(155.488007F, -9.18400002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(152.576004F, 13.1199999F)); + builder.AddLine(new Vector2(152.576004F, -8F)); + builder.AddLine(new Vector2(151.104004F, -15.552F)); + builder.AddLine(new Vector2(152.703995F, -23.1679993F)); + builder.AddLine(new Vector2(152.703995F, -31.1040001F)); + builder.AddLine(new Vector2(142.848007F, -31.1040001F)); + builder.AddLine(new Vector2(142.848007F, 13.1199999F)); + builder.AddLine(new Vector2(152.576004F, 13.1199999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(168.703995F, -1.50399995F)); + builder.AddCubicBezier(new Vector2(171.007996F, -2.93300009F), new Vector2(172.809998F, -4.85300016F), new Vector2(174.112F, -7.26399994F)); + builder.AddCubicBezier(new Vector2(175.412994F, -9.67399979F), new Vector2(176.063995F, -12.4370003F), new Vector2(176.063995F, -15.552F)); + builder.AddCubicBezier(new Vector2(176.063995F, -18.6660004F), new Vector2(175.401993F, -21.4400005F), new Vector2(174.080002F, -23.8719997F)); + builder.AddCubicBezier(new Vector2(172.757004F, -26.3040009F), new Vector2(170.953995F, -28.2240009F), new Vector2(168.671997F, -29.632F)); + builder.AddCubicBezier(new Vector2(166.389008F, -31.0400009F), new Vector2(163.796997F, -31.7439995F), new Vector2(160.895996F, -31.7439995F)); + builder.AddCubicBezier(new Vector2(158.804993F, -31.7439995F), new Vector2(156.884995F, -31.3169994F), new Vector2(155.136002F, -30.4640007F)); + builder.AddCubicBezier(new Vector2(153.386002F, -29.6100006F), new Vector2(151.957001F, -28.448F), new Vector2(150.848007F, -26.9759998F)); + builder.AddCubicBezier(new Vector2(149.738007F, -25.5039997F), new Vector2(149.098007F, -23.8290005F), new Vector2(148.927994F, -21.9519997F)); + builder.AddLine(new Vector2(148.927994F, -8.83199978F)); + builder.AddCubicBezier(new Vector2(149.098007F, -6.99700022F), new Vector2(149.727997F, -5.36499977F), new Vector2(150.815994F, -3.93600011F)); + builder.AddCubicBezier(new Vector2(151.904007F, -2.50600004F), new Vector2(153.322006F, -1.38600004F), new Vector2(155.072006F, -0.575999975F)); + builder.AddCubicBezier(new Vector2(156.820999F, 0.233999997F), new Vector2(158.761993F, 0.639999986F), new Vector2(160.895996F, 0.639999986F)); + builder.AddCubicBezier(new Vector2(163.796997F, 0.639999986F), new Vector2(166.399994F, -0.074000001F), new Vector2(168.703995F, -1.50399995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Scale:1.23,1.23, Offset:<1464, 580> + CanvasGeometry Geometry_0010() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(136F, 0F)); + builder.AddLine(new Vector2(136F, -31.1040001F)); + builder.AddLine(new Vector2(126.335999F, -31.1040001F)); + builder.AddLine(new Vector2(126.335999F, -23.4880009F)); + builder.AddLine(new Vector2(127.807999F, -16F)); + builder.AddLine(new Vector2(126.335999F, -8.38399982F)); + builder.AddLine(new Vector2(126.335999F, 0F)); + builder.AddLine(new Vector2(136F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(116.255997F, -9.18400002F)); + builder.AddCubicBezier(new Vector2(115.209999F, -9.80200005F), new Vector2(114.377998F, -10.6660004F), new Vector2(113.760002F, -11.776F)); + builder.AddCubicBezier(new Vector2(113.140999F, -12.8850002F), new Vector2(112.832001F, -14.1440001F), new Vector2(112.832001F, -15.552F)); + builder.AddCubicBezier(new Vector2(112.832001F, -16.9599991F), new Vector2(113.140999F, -18.2180004F), new Vector2(113.760002F, -19.3279991F)); + builder.AddCubicBezier(new Vector2(114.377998F, -20.4370003F), new Vector2(115.209999F, -21.3010006F), new Vector2(116.255997F, -21.9200001F)); + builder.AddCubicBezier(new Vector2(117.301003F, -22.5380001F), new Vector2(118.485001F, -22.8479996F), new Vector2(119.807999F, -22.8479996F)); + builder.AddCubicBezier(new Vector2(121.172997F, -22.8479996F), new Vector2(122.389F, -22.5380001F), new Vector2(123.456001F, -21.9200001F)); + builder.AddCubicBezier(new Vector2(124.522003F, -21.3010006F), new Vector2(125.333F, -20.448F), new Vector2(125.888F, -19.3600006F)); + builder.AddCubicBezier(new Vector2(126.442001F, -18.2719994F), new Vector2(126.720001F, -17.0240002F), new Vector2(126.720001F, -15.6160002F)); + builder.AddCubicBezier(new Vector2(126.720001F, -13.4399996F), new Vector2(126.089996F, -11.6689997F), new Vector2(124.832001F, -10.3039999F)); + builder.AddCubicBezier(new Vector2(123.572998F, -8.93799973F), new Vector2(121.898003F, -8.25599957F), new Vector2(119.807999F, -8.25599957F)); + builder.AddCubicBezier(new Vector2(118.485001F, -8.25599957F), new Vector2(117.301003F, -8.56499958F), new Vector2(116.255997F, -9.18400002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(123.487999F, -0.575999975F)); + builder.AddCubicBezier(new Vector2(125.172997F, -1.38600004F), new Vector2(126.538002F, -2.50600004F), new Vector2(127.584F, -3.93600011F)); + builder.AddCubicBezier(new Vector2(128.628998F, -5.36499977F), new Vector2(129.216003F, -6.99700022F), new Vector2(129.343994F, -8.83199978F)); + builder.AddLine(new Vector2(129.343994F, -22.2719994F)); + builder.AddCubicBezier(new Vector2(129.216003F, -24.1060009F), new Vector2(128.617996F, -25.7380009F), new Vector2(127.552002F, -27.1679993F)); + builder.AddCubicBezier(new Vector2(126.485001F, -28.5970001F), new Vector2(125.109001F, -29.7169991F), new Vector2(123.424004F, -30.5279999F)); + builder.AddCubicBezier(new Vector2(121.737999F, -31.3379993F), new Vector2(119.849998F, -31.7439995F), new Vector2(117.760002F, -31.7439995F)); + builder.AddCubicBezier(new Vector2(114.901001F, -31.7439995F), new Vector2(112.351997F, -31.0499992F), new Vector2(110.112F, -29.6639996F)); + builder.AddCubicBezier(new Vector2(107.872002F, -28.2770004F), new Vector2(106.100998F, -26.3570004F), new Vector2(104.800003F, -23.9039993F)); + builder.AddCubicBezier(new Vector2(103.498001F, -21.4500008F), new Vector2(102.848F, -18.6660004F), new Vector2(102.848F, -15.552F)); + builder.AddCubicBezier(new Vector2(102.848F, -12.4370003F), new Vector2(103.498001F, -9.67399979F), new Vector2(104.800003F, -7.26399994F)); + builder.AddCubicBezier(new Vector2(106.100998F, -4.85300016F), new Vector2(107.882004F, -2.93300009F), new Vector2(110.143997F, -1.50399995F)); + builder.AddCubicBezier(new Vector2(112.404999F, -0.074000001F), new Vector2(114.944F, 0.639999986F), new Vector2(117.760002F, 0.639999986F)); + builder.AddCubicBezier(new Vector2(119.892998F, 0.639999986F), new Vector2(121.802002F, 0.233999997F), new Vector2(123.487999F, -0.575999975F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Scale:1.23,1.23, Offset:<1464, 580> + CanvasGeometry Geometry_0011() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(97.8560028F, 0F)); + builder.AddLine(new Vector2(97.8560028F, -46.4640007F)); + builder.AddLine(new Vector2(88F, -46.4640007F)); + builder.AddLine(new Vector2(88F, 0F)); + builder.AddLine(new Vector2(97.8560028F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Scale:1.23,1.23, Offset:<1464, 580> + CanvasGeometry Geometry_0012() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(81.0879974F, 0F)); + builder.AddLine(new Vector2(81.0879974F, -46.4640007F)); + builder.AddLine(new Vector2(71.2320023F, -46.4640007F)); + builder.AddLine(new Vector2(71.2320023F, 0F)); + builder.AddLine(new Vector2(81.0879974F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Scale:1.23,1.23, Offset:<1464, 580> + CanvasGeometry Geometry_0013() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(45.7599983F, -9.15200043F)); + builder.AddCubicBezier(new Vector2(44.6930008F, -9.7489996F), new Vector2(43.8610001F, -10.6129999F), new Vector2(43.2639999F, -11.7440004F)); + builder.AddCubicBezier(new Vector2(42.6660004F, -12.8739996F), new Vector2(42.368F, -14.165F), new Vector2(42.368F, -15.6160002F)); + builder.AddCubicBezier(new Vector2(42.368F, -16.9810009F), new Vector2(42.6660004F, -18.2180004F), new Vector2(43.2639999F, -19.3279991F)); + builder.AddCubicBezier(new Vector2(43.8610001F, -20.4370003F), new Vector2(44.6930008F, -21.3010006F), new Vector2(45.7599983F, -21.9200001F)); + builder.AddCubicBezier(new Vector2(46.8260002F, -22.5380001F), new Vector2(48.0419998F, -22.8479996F), new Vector2(49.4080009F, -22.8479996F)); + builder.AddCubicBezier(new Vector2(50.7729988F, -22.8479996F), new Vector2(51.9780006F, -22.5380001F), new Vector2(53.0239983F, -21.9200001F)); + builder.AddCubicBezier(new Vector2(54.0690002F, -21.3010006F), new Vector2(54.8899994F, -20.448F), new Vector2(55.487999F, -19.3600006F)); + builder.AddCubicBezier(new Vector2(56.0849991F, -18.2719994F), new Vector2(56.3839989F, -17.0240002F), new Vector2(56.3839989F, -15.6160002F)); + builder.AddCubicBezier(new Vector2(56.3839989F, -14.165F), new Vector2(56.0960007F, -12.8739996F), new Vector2(55.5200005F, -11.7440004F)); + builder.AddCubicBezier(new Vector2(54.9440002F, -10.6129999F), new Vector2(54.1220016F, -9.7489996F), new Vector2(53.0559998F, -9.15200043F)); + builder.AddCubicBezier(new Vector2(51.9889984F, -8.5539999F), new Vector2(50.7729988F, -8.25599957F), new Vector2(49.4080009F, -8.25599957F)); + builder.AddCubicBezier(new Vector2(48.0419998F, -8.25599957F), new Vector2(46.8260002F, -8.5539999F), new Vector2(45.7599983F, -9.15200043F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(58.1119995F, -1.472F)); + builder.AddCubicBezier(new Vector2(60.6720009F, -2.92199993F), new Vector2(62.6980019F, -4.87400007F), new Vector2(64.1920013F, -7.32800007F)); + builder.AddCubicBezier(new Vector2(65.6849976F, -9.78100014F), new Vector2(66.4319992F, -12.5649996F), new Vector2(66.4319992F, -15.6800003F)); + builder.AddCubicBezier(new Vector2(66.4319992F, -18.7089996F), new Vector2(65.6849976F, -21.4500008F), new Vector2(64.1920013F, -23.9039993F)); + builder.AddCubicBezier(new Vector2(62.6980019F, -26.3570004F), new Vector2(60.6609993F, -28.2880001F), new Vector2(58.0800018F, -29.6959991F)); + builder.AddCubicBezier(new Vector2(55.4980011F, -31.1040001F), new Vector2(52.6080017F, -31.8080006F), new Vector2(49.4080009F, -31.8080006F)); + builder.AddCubicBezier(new Vector2(46.1220016F, -31.8080006F), new Vector2(43.2000008F, -31.0930004F), new Vector2(40.6399994F, -29.6639996F)); + builder.AddCubicBezier(new Vector2(38.0800018F, -28.2339993F), new Vector2(36.0639992F, -26.3040009F), new Vector2(34.5919991F, -23.8719997F)); + builder.AddCubicBezier(new Vector2(33.1199989F, -21.4400005F), new Vector2(32.3839989F, -18.7089996F), new Vector2(32.3839989F, -15.6800003F)); + builder.AddCubicBezier(new Vector2(32.3839989F, -12.6079998F), new Vector2(33.1300011F, -9.83399963F), new Vector2(34.6240005F, -7.36000013F)); + builder.AddCubicBezier(new Vector2(36.1170006F, -4.88500023F), new Vector2(38.144001F, -2.92199993F), new Vector2(40.7039986F, -1.472F)); + builder.AddCubicBezier(new Vector2(43.2639999F, -0.0209999997F), new Vector2(46.1650009F, 0.703999996F), new Vector2(49.4080009F, 0.703999996F)); + builder.AddCubicBezier(new Vector2(52.6500015F, 0.703999996F), new Vector2(55.5519981F, -0.0209999997F), new Vector2(58.1119995F, -1.472F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Scale:1.23,1.23, Offset:<1464, 580> + CanvasGeometry Geometry_0014() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(25.3759995F, -0.60799998F)); + builder.AddCubicBezier(new Vector2(27.4020004F, -1.48199999F), new Vector2(29.2479992F, -2.773F), new Vector2(30.9120007F, -4.48000002F)); + builder.AddLine(new Vector2(24.5760002F, -10.7519999F)); + builder.AddCubicBezier(new Vector2(23.8500004F, -9.94099998F), new Vector2(22.9860001F, -9.32199955F), new Vector2(21.9839993F, -8.89599991F)); + builder.AddCubicBezier(new Vector2(20.9810009F, -8.46899986F), new Vector2(19.8400002F, -8.25599957F), new Vector2(18.5599995F, -8.25599957F)); + builder.AddCubicBezier(new Vector2(17.2369995F, -8.25599957F), new Vector2(16.0209999F, -8.56499958F), new Vector2(14.9119997F, -9.18400002F)); + builder.AddCubicBezier(new Vector2(13.802F, -9.80200005F), new Vector2(12.9379997F, -10.6660004F), new Vector2(12.3199997F, -11.776F)); + builder.AddCubicBezier(new Vector2(11.7010002F, -12.8850002F), new Vector2(11.3920002F, -14.165F), new Vector2(11.3920002F, -15.6160002F)); + builder.AddCubicBezier(new Vector2(11.3920002F, -17.0240002F), new Vector2(11.7010002F, -18.2719994F), new Vector2(12.3199997F, -19.3600006F)); + builder.AddCubicBezier(new Vector2(12.9379997F, -20.448F), new Vector2(13.7919998F, -21.3010006F), new Vector2(14.8800001F, -21.9200001F)); + builder.AddCubicBezier(new Vector2(15.9680004F, -22.5380001F), new Vector2(17.1940002F, -22.8479996F), new Vector2(18.5599995F, -22.8479996F)); + builder.AddCubicBezier(new Vector2(19.7970009F, -22.8479996F), new Vector2(20.8959999F, -22.6560001F), new Vector2(21.8560009F, -22.2719994F)); + builder.AddCubicBezier(new Vector2(22.816F, -21.8880005F), new Vector2(23.6580009F, -21.2900009F), new Vector2(24.3840008F, -20.4799995F)); + builder.AddLine(new Vector2(30.7199993F, -26.8799992F)); + builder.AddCubicBezier(new Vector2(29.1410007F, -28.5009995F), new Vector2(27.3379993F, -29.7280006F), new Vector2(25.3120003F, -30.5599995F)); + builder.AddCubicBezier(new Vector2(23.2849998F, -31.3920002F), new Vector2(21.0340004F, -31.8080006F), new Vector2(18.5599995F, -31.8080006F)); + builder.AddCubicBezier(new Vector2(15.3170004F, -31.8080006F), new Vector2(12.3940001F, -31.1040001F), new Vector2(9.79199982F, -29.6959991F)); + builder.AddCubicBezier(new Vector2(7.18900013F, -28.2880001F), new Vector2(5.14099979F, -26.3570004F), new Vector2(3.648F, -23.9039993F)); + builder.AddCubicBezier(new Vector2(2.15400004F, -21.4500008F), new Vector2(1.40799999F, -18.6660004F), new Vector2(1.40799999F, -15.552F)); + builder.AddCubicBezier(new Vector2(1.40799999F, -12.4799995F), new Vector2(2.14400005F, -9.70600033F), new Vector2(3.61599994F, -7.23199987F)); + builder.AddCubicBezier(new Vector2(5.08799982F, -4.75699997F), new Vector2(7.125F, -2.81599998F), new Vector2(9.72799969F, -1.40799999F)); + builder.AddCubicBezier(new Vector2(12.3299999F, 0F), new Vector2(15.2530003F, 0.703999996F), new Vector2(18.4960003F, 0.703999996F)); + builder.AddCubicBezier(new Vector2(21.0559998F, 0.703999996F), new Vector2(23.3490009F, 0.266000003F), new Vector2(25.3759995F, -0.60799998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers Outlines + // - - ShapeGroup: s + CanvasGeometry Geometry_0015() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(510.881012F, -3.62800002F)); + builder.AddCubicBezier(new Vector2(515.267029F, -7.11199999F), new Vector2(517.460999F, -11.7659998F), new Vector2(517.460999F, -17.5890007F)); + builder.AddCubicBezier(new Vector2(517.460999F, -21.3600006F), new Vector2(516.763F, -24.4160004F), new Vector2(515.369995F, -26.7530003F)); + builder.AddCubicBezier(new Vector2(513.974976F, -29.0900002F), new Vector2(512.171997F, -30.9750004F), new Vector2(509.958008F, -32.4109993F)); + builder.AddCubicBezier(new Vector2(507.743988F, -33.8450012F), new Vector2(505.407013F, -34.9519997F), new Vector2(502.946991F, -35.7319984F)); + builder.AddCubicBezier(new Vector2(500.487F, -36.5099983F), new Vector2(498.170013F, -37.1860008F), new Vector2(495.997986F, -37.7610016F)); + builder.AddCubicBezier(new Vector2(493.824005F, -38.3339996F), new Vector2(492.019989F, -38.9910011F), new Vector2(490.585999F, -39.7290001F)); + builder.AddCubicBezier(new Vector2(489.149994F, -40.4669991F), new Vector2(488.433014F, -41.4510002F), new Vector2(488.433014F, -42.6809998F)); + builder.AddCubicBezier(new Vector2(488.433014F, -43.7459984F), new Vector2(488.964996F, -44.6069984F), new Vector2(490.032013F, -45.2639999F)); + builder.AddCubicBezier(new Vector2(491.096985F, -45.9189987F), new Vector2(492.696014F, -46.2480011F), new Vector2(494.82901F, -46.2480011F)); + builder.AddCubicBezier(new Vector2(497.042999F, -46.2480011F), new Vector2(499.319F, -45.776001F), new Vector2(501.656006F, -44.8339996F)); + builder.AddCubicBezier(new Vector2(503.993011F, -43.8899994F), new Vector2(506.102997F, -42.3120003F), new Vector2(507.98999F, -40.0979996F)); + builder.AddLine(new Vector2(518.690979F, -51.0449982F)); + builder.AddCubicBezier(new Vector2(516.065979F, -54.4889984F), new Vector2(512.580994F, -57.0909996F), new Vector2(508.235992F, -58.8549995F)); + builder.AddCubicBezier(new Vector2(503.889008F, -60.6170006F), new Vector2(499.214996F, -61.5F), new Vector2(494.213989F, -61.5F)); + builder.AddCubicBezier(new Vector2(489.210999F, -61.5F), new Vector2(484.906006F, -60.6790009F), new Vector2(481.299011F, -59.0400009F)); + builder.AddCubicBezier(new Vector2(477.690002F, -57.3989983F), new Vector2(474.903015F, -55.1660004F), new Vector2(472.934998F, -52.3370018F)); + builder.AddCubicBezier(new Vector2(470.96701F, -49.5079994F), new Vector2(469.983002F, -46.1650009F), new Vector2(469.983002F, -42.3120003F)); + builder.AddCubicBezier(new Vector2(469.983002F, -38.6220016F), new Vector2(470.678986F, -35.6279984F), new Vector2(472.074005F, -33.3330002F)); + builder.AddCubicBezier(new Vector2(473.46701F, -31.0359993F), new Vector2(475.272003F, -29.2320004F), new Vector2(477.485992F, -27.9209995F)); + builder.AddCubicBezier(new Vector2(479.700012F, -26.6079998F), new Vector2(482.036987F, -25.5629997F), new Vector2(484.497009F, -24.7849998F)); + builder.AddCubicBezier(new Vector2(486.957001F, -24.0049992F), new Vector2(489.313995F, -23.3080006F), new Vector2(491.570007F, -22.6930008F)); + builder.AddCubicBezier(new Vector2(493.824005F, -22.0779991F), new Vector2(495.64801F, -21.4209995F), new Vector2(497.042999F, -20.7250004F)); + builder.AddCubicBezier(new Vector2(498.436005F, -20.0270004F), new Vector2(499.134003F, -18.9419994F), new Vector2(499.134003F, -17.4659996F)); + builder.AddCubicBezier(new Vector2(499.134003F, -16.2360001F), new Vector2(498.539001F, -15.2919998F), new Vector2(497.351013F, -14.6370001F)); + builder.AddCubicBezier(new Vector2(496.161011F, -13.9799995F), new Vector2(494.540985F, -13.6529999F), new Vector2(492.492004F, -13.6529999F)); + builder.AddCubicBezier(new Vector2(489.210999F, -13.6529999F), new Vector2(486.239014F, -14.2469997F), new Vector2(483.575012F, -15.4370003F)); + builder.AddCubicBezier(new Vector2(480.908997F, -16.625F), new Vector2(478.550995F, -18.2849998F), new Vector2(476.502014F, -20.4179993F)); + builder.AddLine(new Vector2(465.678009F, -9.59399986F)); + builder.AddCubicBezier(new Vector2(467.80899F, -7.38000011F), new Vector2(470.309998F, -5.43100023F), new Vector2(473.181F, -3.75099993F)); + builder.AddCubicBezier(new Vector2(476.049988F, -2.06900001F), new Vector2(479.208008F, -0.758000016F), new Vector2(482.652008F, 0.184F)); + builder.AddCubicBezier(new Vector2(486.096008F, 1.12600005F), new Vector2(489.579987F, 1.59899998F), new Vector2(493.106995F, 1.59899998F)); + builder.AddCubicBezier(new Vector2(500.567993F, 1.59899998F), new Vector2(506.493011F, -0.142000005F), new Vector2(510.881012F, -3.62800002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers Outlines + // - - ShapeGroup: s + CanvasGeometry Geometry_0016() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(441.755005F, -41.3899994F)); + builder.AddCubicBezier(new Vector2(443.600006F, -43.3160019F), new Vector2(446.121002F, -44.2799988F), new Vector2(449.319F, -44.2799988F)); + builder.AddCubicBezier(new Vector2(450.876007F, -44.2799988F), new Vector2(452.270996F, -44.0340004F), new Vector2(453.501007F, -43.5419998F)); + builder.AddCubicBezier(new Vector2(454.730988F, -43.0499992F), new Vector2(455.714996F, -42.3930016F), new Vector2(456.453003F, -41.5740013F)); + builder.AddLine(new Vector2(467.645996F, -55.8419991F)); + builder.AddCubicBezier(new Vector2(466.005005F, -57.5639992F), new Vector2(464.098999F, -58.855999F), new Vector2(461.927002F, -59.7169991F)); + builder.AddCubicBezier(new Vector2(459.752991F, -60.5779991F), new Vector2(457.230988F, -61.0079994F), new Vector2(454.362F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(447.882996F, -61.0079994F), new Vector2(442.778015F, -59.0800018F), new Vector2(439.048004F, -55.2270012F)); + builder.AddCubicBezier(new Vector2(435.31601F, -51.3720016F), new Vector2(432.671997F, -45.9189987F), new Vector2(431.11499F, -38.868F)); + builder.AddLine(new Vector2(438.987F, -32.7179985F)); + builder.AddCubicBezier(new Vector2(438.987F, -36.5709991F), new Vector2(439.910004F, -39.4620018F), new Vector2(441.755005F, -41.3899994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(438.987F, 0F)); + builder.AddLine(new Vector2(438.987F, -59.7779999F)); + builder.AddLine(new Vector2(420.045013F, -59.7779999F)); + builder.AddLine(new Vector2(420.045013F, 0F)); + builder.AddLine(new Vector2(438.987F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers Outlines + // - - ShapeGroup: s + CanvasGeometry Geometry_0017() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(396.059998F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(400.242004F, -2.84899998F), new Vector2(403.80899F, -5.45200014F), new Vector2(406.760986F, -8.97900009F)); + builder.AddLine(new Vector2(396.306F, -19.3110008F)); + builder.AddCubicBezier(new Vector2(394.501007F, -17.2600002F), new Vector2(392.410004F, -15.7229996F), new Vector2(390.03299F, -14.6990004F)); + builder.AddCubicBezier(new Vector2(387.653992F, -13.6730003F), new Vector2(385.029999F, -13.1610003F), new Vector2(382.161011F, -13.1610003F)); + builder.AddCubicBezier(new Vector2(378.963013F, -13.1610003F), new Vector2(376.196014F, -13.8380003F), new Vector2(373.859009F, -15.191F)); + builder.AddCubicBezier(new Vector2(371.522003F, -16.5440006F), new Vector2(369.71701F, -18.4899998F), new Vector2(368.446991F, -21.0330009F)); + builder.AddCubicBezier(new Vector2(367.174988F, -23.5739994F), new Vector2(366.540009F, -26.5680008F), new Vector2(366.540009F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(366.540009F, -33.4560013F), new Vector2(367.134003F, -36.4080009F), new Vector2(368.324005F, -38.868F)); + builder.AddCubicBezier(new Vector2(369.511993F, -41.3279991F), new Vector2(371.192993F, -43.2540016F), new Vector2(373.367004F, -44.6489983F)); + builder.AddCubicBezier(new Vector2(375.539001F, -46.0419998F), new Vector2(378.10199F, -46.7400017F), new Vector2(381.053986F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(383.76001F, -46.7400017F), new Vector2(386.075989F, -46.125F), new Vector2(388.003998F, -44.8950005F)); + builder.AddCubicBezier(new Vector2(389.929993F, -43.6650009F), new Vector2(391.385986F, -41.9220009F), new Vector2(392.369995F, -39.6679993F)); + builder.AddCubicBezier(new Vector2(393.354004F, -37.4119987F), new Vector2(393.885986F, -34.6030006F), new Vector2(393.968994F, -31.2420006F)); + builder.AddLine(new Vector2(402.087006F, -36.7770004F)); + builder.AddLine(new Vector2(358.790985F, -36.5309982F)); + builder.AddLine(new Vector2(358.790985F, -23.493F)); + builder.AddLine(new Vector2(410.204987F, -23.7390003F)); + builder.AddCubicBezier(new Vector2(410.614014F, -25.2150002F), new Vector2(410.881989F, -26.5459995F), new Vector2(411.005005F, -27.7360001F)); + builder.AddCubicBezier(new Vector2(411.127991F, -28.9239998F), new Vector2(411.188995F, -30.0930004F), new Vector2(411.188995F, -31.2420006F)); + builder.AddCubicBezier(new Vector2(411.188995F, -37.0629997F), new Vector2(409.876007F, -42.2290001F), new Vector2(407.252991F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(404.627991F, -51.2490005F), new Vector2(401.061005F, -54.7750015F), new Vector2(396.552002F, -57.3180008F)); + builder.AddCubicBezier(new Vector2(392.040985F, -59.8590012F), new Vector2(386.792999F, -61.1310005F), new Vector2(380.808014F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(374.739014F, -61.1310005F), new Vector2(369.286011F, -59.7779999F), new Vector2(364.449005F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(359.609985F, -54.3660011F), new Vector2(355.796997F, -50.6549988F), new Vector2(353.01001F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(350.221008F, -41.2249985F), new Vector2(348.828003F, -35.9160004F), new Vector2(348.828003F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(348.828003F, -23.9430008F), new Vector2(350.261993F, -18.5310001F), new Vector2(353.132996F, -13.776F)); + builder.AddCubicBezier(new Vector2(356.002014F, -9.01900005F), new Vector2(359.937988F, -5.30900002F), new Vector2(364.94101F, -2.64499998F)); + builder.AddCubicBezier(new Vector2(369.941986F, 0.0189999994F), new Vector2(375.682007F, 1.35300004F), new Vector2(382.161011F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(387.243988F, 1.35300004F), new Vector2(391.877991F, 0.510999978F), new Vector2(396.059998F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers Outlines + // - - ShapeGroup: s + CanvasGeometry Geometry_0018() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(345.752991F, -43.6650009F)); + builder.AddLine(new Vector2(345.752991F, -59.7779999F)); + builder.AddLine(new Vector2(299.873993F, -59.7779999F)); + builder.AddLine(new Vector2(299.873993F, -43.6650009F)); + builder.AddLine(new Vector2(345.752991F, -43.6650009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(332.222992F, 0F)); + builder.AddLine(new Vector2(332.222992F, -84.5009995F)); + builder.AddLine(new Vector2(313.281006F, -84.5009995F)); + builder.AddLine(new Vector2(313.281006F, 0F)); + builder.AddLine(new Vector2(332.222992F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers Outlines + // - - ShapeGroup: s + CanvasGeometry Geometry_0019() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(288.127991F, -3.62800002F)); + builder.AddCubicBezier(new Vector2(292.514008F, -7.11199999F), new Vector2(294.708008F, -11.7659998F), new Vector2(294.708008F, -17.5890007F)); + builder.AddCubicBezier(new Vector2(294.708008F, -21.3600006F), new Vector2(294.01001F, -24.4160004F), new Vector2(292.617004F, -26.7530003F)); + builder.AddCubicBezier(new Vector2(291.221985F, -29.0900002F), new Vector2(289.419006F, -30.9750004F), new Vector2(287.204987F, -32.4109993F)); + builder.AddCubicBezier(new Vector2(284.990997F, -33.8450012F), new Vector2(282.653992F, -34.9519997F), new Vector2(280.194F, -35.7319984F)); + builder.AddCubicBezier(new Vector2(277.734009F, -36.5099983F), new Vector2(275.416992F, -37.1860008F), new Vector2(273.244995F, -37.7610016F)); + builder.AddCubicBezier(new Vector2(271.071014F, -38.3339996F), new Vector2(269.266998F, -38.9910011F), new Vector2(267.833008F, -39.7290001F)); + builder.AddCubicBezier(new Vector2(266.397003F, -40.4669991F), new Vector2(265.679993F, -41.4510002F), new Vector2(265.679993F, -42.6809998F)); + builder.AddCubicBezier(new Vector2(265.679993F, -43.7459984F), new Vector2(266.212006F, -44.6069984F), new Vector2(267.278992F, -45.2639999F)); + builder.AddCubicBezier(new Vector2(268.343994F, -45.9189987F), new Vector2(269.942993F, -46.2480011F), new Vector2(272.075989F, -46.2480011F)); + builder.AddCubicBezier(new Vector2(274.290009F, -46.2480011F), new Vector2(276.565002F, -45.776001F), new Vector2(278.902008F, -44.8339996F)); + builder.AddCubicBezier(new Vector2(281.239014F, -43.8899994F), new Vector2(283.350006F, -42.3120003F), new Vector2(285.237F, -40.0979996F)); + builder.AddLine(new Vector2(295.937988F, -51.0449982F)); + builder.AddCubicBezier(new Vector2(293.312988F, -54.4889984F), new Vector2(289.828003F, -57.0909996F), new Vector2(285.483002F, -58.8549995F)); + builder.AddCubicBezier(new Vector2(281.135986F, -60.6170006F), new Vector2(276.462006F, -61.5F), new Vector2(271.460999F, -61.5F)); + builder.AddCubicBezier(new Vector2(266.458008F, -61.5F), new Vector2(262.153015F, -60.6790009F), new Vector2(258.54599F, -59.0400009F)); + builder.AddCubicBezier(new Vector2(254.936996F, -57.3989983F), new Vector2(252.149994F, -55.1660004F), new Vector2(250.182007F, -52.3370018F)); + builder.AddCubicBezier(new Vector2(248.214005F, -49.5079994F), new Vector2(247.229996F, -46.1650009F), new Vector2(247.229996F, -42.3120003F)); + builder.AddCubicBezier(new Vector2(247.229996F, -38.6220016F), new Vector2(247.925995F, -35.6279984F), new Vector2(249.320999F, -33.3330002F)); + builder.AddCubicBezier(new Vector2(250.714005F, -31.0359993F), new Vector2(252.518997F, -29.2320004F), new Vector2(254.733002F, -27.9209995F)); + builder.AddCubicBezier(new Vector2(256.946991F, -26.6079998F), new Vector2(259.283997F, -25.5629997F), new Vector2(261.743988F, -24.7849998F)); + builder.AddCubicBezier(new Vector2(264.20401F, -24.0049992F), new Vector2(266.559998F, -23.3080006F), new Vector2(268.81601F, -22.6930008F)); + builder.AddCubicBezier(new Vector2(271.070007F, -22.0779991F), new Vector2(272.894989F, -21.4209995F), new Vector2(274.290009F, -20.7250004F)); + builder.AddCubicBezier(new Vector2(275.683014F, -20.0270004F), new Vector2(276.381012F, -18.9419994F), new Vector2(276.381012F, -17.4659996F)); + builder.AddCubicBezier(new Vector2(276.381012F, -16.2360001F), new Vector2(275.786011F, -15.2919998F), new Vector2(274.597992F, -14.6370001F)); + builder.AddCubicBezier(new Vector2(273.40799F, -13.9799995F), new Vector2(271.787994F, -13.6529999F), new Vector2(269.739014F, -13.6529999F)); + builder.AddCubicBezier(new Vector2(266.458008F, -13.6529999F), new Vector2(263.485992F, -14.2469997F), new Vector2(260.821991F, -15.4370003F)); + builder.AddCubicBezier(new Vector2(258.156006F, -16.625F), new Vector2(255.798004F, -18.2849998F), new Vector2(253.748993F, -20.4179993F)); + builder.AddLine(new Vector2(242.925003F, -9.59399986F)); + builder.AddCubicBezier(new Vector2(245.056F, -7.38000011F), new Vector2(247.557007F, -5.43100023F), new Vector2(250.427994F, -3.75099993F)); + builder.AddCubicBezier(new Vector2(253.296997F, -2.06900001F), new Vector2(256.454987F, -0.758000016F), new Vector2(259.898987F, 0.184F)); + builder.AddCubicBezier(new Vector2(263.342987F, 1.12600005F), new Vector2(266.826996F, 1.59899998F), new Vector2(270.354004F, 1.59899998F)); + builder.AddCubicBezier(new Vector2(277.815002F, 1.59899998F), new Vector2(283.73999F, -0.142000005F), new Vector2(288.127991F, -3.62800002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers Outlines + // - - ShapeGroup: s + CanvasGeometry Geometry_0020() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(233.270004F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(235.115005F, -73.0199966F), new Vector2(236.037003F, -75.4800034F), new Vector2(236.037003F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(236.037003F, -81.3030014F), new Vector2(235.115005F, -83.7630005F), new Vector2(233.270004F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(231.425003F, -87.6989975F), new Vector2(228.983994F, -88.6829987F), new Vector2(225.951004F, -88.6829987F)); + builder.AddCubicBezier(new Vector2(223.080002F, -88.6829987F), new Vector2(220.662003F, -87.6989975F), new Vector2(218.694F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(216.725998F, -83.7630005F), new Vector2(215.742004F, -81.3030014F), new Vector2(215.742004F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(215.742004F, -75.4800034F), new Vector2(216.725998F, -73.0199966F), new Vector2(218.694F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(220.662003F, -68.9199982F), new Vector2(223.080002F, -67.8960037F), new Vector2(225.951004F, -67.8960037F)); + builder.AddCubicBezier(new Vector2(228.983994F, -67.8960037F), new Vector2(231.425003F, -68.9199982F), new Vector2(233.270004F, -70.9710007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(235.421997F, 0F)); + builder.AddLine(new Vector2(235.421997F, -59.7779999F)); + builder.AddLine(new Vector2(216.479996F, -59.7779999F)); + builder.AddLine(new Vector2(216.479996F, 0F)); + builder.AddLine(new Vector2(235.421997F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers Outlines + // - - ShapeGroup: s + CanvasGeometry Geometry_0021() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(164.942993F, 0F)); + builder.AddLine(new Vector2(164.942993F, -59.7779999F)); + builder.AddLine(new Vector2(146.001007F, -59.7779999F)); + builder.AddLine(new Vector2(146.001007F, 0F)); + builder.AddLine(new Vector2(164.942993F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(204.548996F, 0F)); + builder.AddLine(new Vector2(204.548996F, -38.2529984F)); + builder.AddCubicBezier(new Vector2(204.548996F, -42.3520012F), new Vector2(203.565002F, -46.1450005F), new Vector2(201.597F, -49.6310005F)); + builder.AddCubicBezier(new Vector2(199.628998F, -53.1150017F), new Vector2(196.923004F, -55.882F), new Vector2(193.479004F, -57.9329987F)); + builder.AddCubicBezier(new Vector2(190.035004F, -59.9819984F), new Vector2(186.139008F, -61.0079994F), new Vector2(181.794006F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(177.201004F, -61.0079994F), new Vector2(173.080994F, -60.0439987F), new Vector2(169.432999F, -58.118F)); + builder.AddCubicBezier(new Vector2(165.783005F, -56.1899986F), new Vector2(162.914001F, -53.4630013F), new Vector2(160.822998F, -49.9379997F)); + builder.AddCubicBezier(new Vector2(158.731995F, -46.4109993F), new Vector2(157.686005F, -42.3120003F), new Vector2(157.686005F, -37.6380005F)); + builder.AddLine(new Vector2(164.942993F, -34.0709991F)); + builder.AddCubicBezier(new Vector2(164.942993F, -36.1199989F), new Vector2(165.393005F, -37.9239998F), new Vector2(166.296005F, -39.4830017F)); + builder.AddCubicBezier(new Vector2(167.197006F, -41.0400009F), new Vector2(168.427002F, -42.2509995F), new Vector2(169.985992F, -43.1119995F)); + builder.AddCubicBezier(new Vector2(171.542999F, -43.9729996F), new Vector2(173.307007F, -44.4029999F), new Vector2(175.274994F, -44.4029999F)); + builder.AddCubicBezier(new Vector2(178.227005F, -44.4029999F), new Vector2(180.686996F, -43.4379997F), new Vector2(182.654999F, -41.512001F)); + builder.AddCubicBezier(new Vector2(184.623001F, -39.5839996F), new Vector2(185.606995F, -37.1040001F), new Vector2(185.606995F, -34.0709991F)); + builder.AddLine(new Vector2(185.606995F, 0F)); + builder.AddLine(new Vector2(204.548996F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers Outlines + // - - ShapeGroup: s + CanvasGeometry Geometry_0022() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(130.811005F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(132.656006F, -73.0199966F), new Vector2(133.578003F, -75.4800034F), new Vector2(133.578003F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(133.578003F, -81.3030014F), new Vector2(132.656006F, -83.7630005F), new Vector2(130.811005F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(128.966003F, -87.6989975F), new Vector2(126.525002F, -88.6829987F), new Vector2(123.491997F, -88.6829987F)); + builder.AddCubicBezier(new Vector2(120.621002F, -88.6829987F), new Vector2(118.203003F, -87.6989975F), new Vector2(116.235001F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(114.266998F, -83.7630005F), new Vector2(113.282997F, -81.3030014F), new Vector2(113.282997F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(113.282997F, -75.4800034F), new Vector2(114.266998F, -73.0199966F), new Vector2(116.235001F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(118.203003F, -68.9199982F), new Vector2(120.621002F, -67.8960037F), new Vector2(123.491997F, -67.8960037F)); + builder.AddCubicBezier(new Vector2(126.525002F, -67.8960037F), new Vector2(128.966003F, -68.9199982F), new Vector2(130.811005F, -70.9710007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(132.962997F, 0F)); + builder.AddLine(new Vector2(132.962997F, -59.7779999F)); + builder.AddLine(new Vector2(114.021004F, -59.7779999F)); + builder.AddLine(new Vector2(114.021004F, 0F)); + builder.AddLine(new Vector2(132.962997F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers Outlines + // - - ShapeGroup: s + CanvasGeometry Geometry_0023() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(101.967003F, 0F)); + builder.AddLine(new Vector2(101.967003F, -37.1459999F)); + builder.AddCubicBezier(new Vector2(101.967003F, -42.1469994F), new Vector2(100.941002F, -46.4109993F), new Vector2(98.8919983F, -49.9379997F)); + builder.AddCubicBezier(new Vector2(96.8410034F, -53.4630013F), new Vector2(94.012001F, -56.1899986F), new Vector2(90.4049988F, -58.118F)); + builder.AddCubicBezier(new Vector2(86.7959976F, -60.0439987F), new Vector2(82.7369995F, -61.0079994F), new Vector2(78.2279968F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(73.5540009F, -61.0079994F), new Vector2(69.3300018F, -60.0239983F), new Vector2(65.5589981F, -58.0559998F)); + builder.AddCubicBezier(new Vector2(61.7859993F, -56.0880013F), new Vector2(58.7939987F, -53.2589989F), new Vector2(56.5800018F, -49.5690002F)); + builder.AddCubicBezier(new Vector2(54.3660011F, -45.8790016F), new Vector2(53.1360016F, -41.4910011F), new Vector2(52.8899994F, -36.4080009F)); + builder.AddLine(new Vector2(63.8370018F, -34.9319992F)); + builder.AddCubicBezier(new Vector2(63.8370018F, -36.9000015F), new Vector2(64.2460022F, -38.5800018F), new Vector2(65.0670013F, -39.9749985F)); + builder.AddCubicBezier(new Vector2(65.8860016F, -41.368F), new Vector2(67.0550003F, -42.4539986F), new Vector2(68.572998F, -43.2340012F)); + builder.AddCubicBezier(new Vector2(70.0889969F, -44.012001F), new Vector2(71.7490005F, -44.4029999F), new Vector2(73.5540009F, -44.4029999F)); + builder.AddCubicBezier(new Vector2(76.177002F, -44.4029999F), new Vector2(78.413002F, -43.5620003F), new Vector2(80.2580032F, -41.882F)); + builder.AddCubicBezier(new Vector2(82.1029968F, -40.2000008F), new Vector2(83.0250015F, -37.8839989F), new Vector2(83.0250015F, -34.9319992F)); + builder.AddLine(new Vector2(83.0250015F, 0F)); + builder.AddLine(new Vector2(101.967003F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(63.8370018F, 0F)); + builder.AddLine(new Vector2(63.8370018F, -38.2529984F)); + builder.AddCubicBezier(new Vector2(63.8370018F, -42.9269981F), new Vector2(62.8320007F, -46.9440002F), new Vector2(60.8240013F, -50.3069992F)); + builder.AddCubicBezier(new Vector2(58.8139992F, -53.6679993F), new Vector2(56.1500015F, -56.2919998F), new Vector2(52.8289986F, -58.1790009F)); + builder.AddCubicBezier(new Vector2(49.5079994F, -60.0639992F), new Vector2(45.7960014F, -61.0079994F), new Vector2(41.6969986F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(37.1860008F, -61.0079994F), new Vector2(33.1879997F, -60.0859985F), new Vector2(29.7040005F, -58.2410011F)); + builder.AddCubicBezier(new Vector2(26.2180004F, -56.3959999F), new Vector2(23.4309998F, -53.7700005F), new Vector2(21.3400002F, -50.368F)); + builder.AddCubicBezier(new Vector2(19.2490005F, -46.9640007F), new Vector2(18.2040005F, -42.9269981F), new Vector2(18.2040005F, -38.2529984F)); + builder.AddLine(new Vector2(25.4610004F, -34.9319992F)); + builder.AddCubicBezier(new Vector2(25.4610004F, -36.9000015F), new Vector2(25.8920002F, -38.5800018F), new Vector2(26.7530003F, -39.9749985F)); + builder.AddCubicBezier(new Vector2(27.6140003F, -41.368F), new Vector2(28.7819996F, -42.4539986F), new Vector2(30.2579994F, -43.2340012F)); + builder.AddCubicBezier(new Vector2(31.7339993F, -44.012001F), new Vector2(33.4140015F, -44.4029999F), new Vector2(35.3009987F, -44.4029999F)); + builder.AddCubicBezier(new Vector2(38.007F, -44.4029999F), new Vector2(40.2830009F, -43.5620003F), new Vector2(42.1279984F, -41.882F)); + builder.AddCubicBezier(new Vector2(43.9729996F, -40.2000008F), new Vector2(44.8950005F, -37.8839989F), new Vector2(44.8950005F, -34.9319992F)); + builder.AddLine(new Vector2(44.8950005F, 0F)); + builder.AddLine(new Vector2(63.8370018F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(25.4610004F, 0F)); + builder.AddLine(new Vector2(25.4610004F, -59.7779999F)); + builder.AddLine(new Vector2(6.51900005F, -59.7779999F)); + builder.AddLine(new Vector2(6.51900005F, 0F)); + builder.AddLine(new Vector2(25.4610004F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 2 Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0024() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(317.832001F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(322.014008F, -2.84899998F), new Vector2(325.580994F, -5.45200014F), new Vector2(328.53299F, -8.97900009F)); + builder.AddLine(new Vector2(318.078003F, -19.3110008F)); + builder.AddCubicBezier(new Vector2(316.27301F, -17.2600002F), new Vector2(314.182007F, -15.7229996F), new Vector2(311.804993F, -14.6990004F)); + builder.AddCubicBezier(new Vector2(309.425995F, -13.6730003F), new Vector2(306.802002F, -13.1610003F), new Vector2(303.933014F, -13.1610003F)); + builder.AddCubicBezier(new Vector2(300.734985F, -13.1610003F), new Vector2(297.967987F, -13.8380003F), new Vector2(295.631012F, -15.191F)); + builder.AddCubicBezier(new Vector2(293.294006F, -16.5440006F), new Vector2(291.489014F, -18.4899998F), new Vector2(290.218994F, -21.0330009F)); + builder.AddCubicBezier(new Vector2(288.946991F, -23.5739994F), new Vector2(288.312012F, -26.5680008F), new Vector2(288.312012F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(288.312012F, -33.4560013F), new Vector2(288.906006F, -36.4080009F), new Vector2(290.096008F, -38.868F)); + builder.AddCubicBezier(new Vector2(291.283997F, -41.3279991F), new Vector2(292.964996F, -43.2540016F), new Vector2(295.139008F, -44.6489983F)); + builder.AddCubicBezier(new Vector2(297.311005F, -46.0419998F), new Vector2(299.873993F, -46.7400017F), new Vector2(302.825989F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(305.532013F, -46.7400017F), new Vector2(307.847992F, -46.125F), new Vector2(309.776001F, -44.8950005F)); + builder.AddCubicBezier(new Vector2(311.701996F, -43.6650009F), new Vector2(313.15799F, -41.9220009F), new Vector2(314.141998F, -39.6679993F)); + builder.AddCubicBezier(new Vector2(315.126007F, -37.4119987F), new Vector2(315.65799F, -34.6030006F), new Vector2(315.740997F, -31.2420006F)); + builder.AddLine(new Vector2(323.859009F, -36.7770004F)); + builder.AddLine(new Vector2(280.562988F, -36.5309982F)); + builder.AddLine(new Vector2(280.562988F, -23.493F)); + builder.AddLine(new Vector2(331.97699F, -23.7390003F)); + builder.AddCubicBezier(new Vector2(332.385986F, -25.2150002F), new Vector2(332.653992F, -26.5459995F), new Vector2(332.777008F, -27.7360001F)); + builder.AddCubicBezier(new Vector2(332.899994F, -28.9239998F), new Vector2(332.960999F, -30.0930004F), new Vector2(332.960999F, -31.2420006F)); + builder.AddCubicBezier(new Vector2(332.960999F, -37.0629997F), new Vector2(331.64801F, -42.2290001F), new Vector2(329.024994F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(326.399994F, -51.2490005F), new Vector2(322.833008F, -54.7750015F), new Vector2(318.324005F, -57.3180008F)); + builder.AddCubicBezier(new Vector2(313.812988F, -59.8590012F), new Vector2(308.565002F, -61.1310005F), new Vector2(302.579987F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(296.510986F, -61.1310005F), new Vector2(291.058014F, -59.7779999F), new Vector2(286.221008F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(281.381989F, -54.3660011F), new Vector2(277.569F, -50.6549988F), new Vector2(274.782013F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(271.993011F, -41.2249985F), new Vector2(270.600006F, -35.9160004F), new Vector2(270.600006F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(270.600006F, -23.9430008F), new Vector2(272.033997F, -18.5310001F), new Vector2(274.904999F, -13.776F)); + builder.AddCubicBezier(new Vector2(277.773987F, -9.01900005F), new Vector2(281.709991F, -5.30900002F), new Vector2(286.713013F, -2.64499998F)); + builder.AddCubicBezier(new Vector2(291.713989F, 0.0189999994F), new Vector2(297.45401F, 1.35300004F), new Vector2(303.933014F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(309.015991F, 1.35300004F), new Vector2(313.649994F, 0.510999978F), new Vector2(317.832001F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 2 Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0025() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(257.131989F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(261.026001F, -2.84899998F), new Vector2(264.572998F, -5.329F), new Vector2(267.770996F, -8.60999966F)); + builder.AddLine(new Vector2(255.593994F, -20.6639996F)); + builder.AddCubicBezier(new Vector2(254.199005F, -19.1049995F), new Vector2(252.539001F, -17.9160004F), new Vector2(250.613007F, -17.0970001F)); + builder.AddCubicBezier(new Vector2(248.684998F, -16.2759991F), new Vector2(246.492004F, -15.8669996F), new Vector2(244.031998F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(241.488998F, -15.8669996F), new Vector2(239.151993F, -16.4599991F), new Vector2(237.020996F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(234.888F, -18.8379993F), new Vector2(233.227997F, -20.4990005F), new Vector2(232.039993F, -22.632F)); + builder.AddCubicBezier(new Vector2(230.850006F, -24.7630005F), new Vector2(230.255997F, -27.2229996F), new Vector2(230.255997F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(230.255997F, -32.7179985F), new Vector2(230.850006F, -35.1170006F), new Vector2(232.039993F, -37.2080002F)); + builder.AddCubicBezier(new Vector2(233.227997F, -39.2989998F), new Vector2(234.869003F, -40.9379997F), new Vector2(236.960007F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(239.050995F, -43.3160019F), new Vector2(241.406998F, -43.9109993F), new Vector2(244.031998F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(246.408997F, -43.9109993F), new Vector2(248.522003F, -43.5419998F), new Vector2(250.367004F, -42.8040009F)); + builder.AddCubicBezier(new Vector2(252.212006F, -42.0660019F), new Vector2(253.830002F, -40.9169998F), new Vector2(255.225006F, -39.3600006F)); + builder.AddLine(new Vector2(267.402008F, -51.6599998F)); + builder.AddCubicBezier(new Vector2(264.367004F, -54.7750015F), new Vector2(260.903015F, -57.1329994F), new Vector2(257.009003F, -58.7319984F)); + builder.AddCubicBezier(new Vector2(253.113007F, -60.3310013F), new Vector2(248.787003F, -61.1310005F), new Vector2(244.031998F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(237.798996F, -61.1310005F), new Vector2(232.182007F, -59.7779999F), new Vector2(227.181F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(222.177994F, -54.3660011F), new Vector2(218.242004F, -50.6549988F), new Vector2(215.373001F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(212.501999F, -41.2249985F), new Vector2(211.067993F, -35.8740005F), new Vector2(211.067993F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(211.067993F, -23.9850006F), new Vector2(212.481995F, -18.6539993F), new Vector2(215.311005F, -13.8990002F)); + builder.AddCubicBezier(new Vector2(218.139999F, -9.1420002F), new Vector2(222.054993F, -5.41200018F), new Vector2(227.057999F, -2.70600009F)); + builder.AddCubicBezier(new Vector2(232.059006F, 0F), new Vector2(237.675995F, 1.35300004F), new Vector2(243.908997F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(248.828995F, 1.35300004F), new Vector2(253.235992F, 0.510999978F), new Vector2(257.131989F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 2 Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0026() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(199.690994F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(201.535995F, -73.0199966F), new Vector2(202.457993F, -75.4800034F), new Vector2(202.457993F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(202.457993F, -81.3030014F), new Vector2(201.535995F, -83.7630005F), new Vector2(199.690994F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(197.845993F, -87.6989975F), new Vector2(195.404999F, -88.6829987F), new Vector2(192.371994F, -88.6829987F)); + builder.AddCubicBezier(new Vector2(189.501007F, -88.6829987F), new Vector2(187.082993F, -87.6989975F), new Vector2(185.115005F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(183.147003F, -83.7630005F), new Vector2(182.162994F, -81.3030014F), new Vector2(182.162994F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(182.162994F, -75.4800034F), new Vector2(183.147003F, -73.0199966F), new Vector2(185.115005F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(187.082993F, -68.9199982F), new Vector2(189.501007F, -67.8960037F), new Vector2(192.371994F, -67.8960037F)); + builder.AddCubicBezier(new Vector2(195.404999F, -67.8960037F), new Vector2(197.845993F, -68.9199982F), new Vector2(199.690994F, -70.9710007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(201.843002F, 0F)); + builder.AddLine(new Vector2(201.843002F, -59.7779999F)); + builder.AddLine(new Vector2(182.901001F, -59.7779999F)); + builder.AddLine(new Vector2(182.901001F, 0F)); + builder.AddLine(new Vector2(201.843002F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 2 Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0027() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(169.494003F, 0F)); + builder.AddLine(new Vector2(169.494003F, -89.2979965F)); + builder.AddLine(new Vector2(150.552002F, -89.2979965F)); + builder.AddLine(new Vector2(150.552002F, 0F)); + builder.AddLine(new Vector2(169.494003F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 2 Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0028() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(101.598F, -17.5890007F)); + builder.AddCubicBezier(new Vector2(99.5469971F, -18.7360001F), new Vector2(97.947998F, -20.3959999F), new Vector2(96.8010025F, -22.5699997F)); + builder.AddCubicBezier(new Vector2(95.6520004F, -24.7420006F), new Vector2(95.0790024F, -27.2229996F), new Vector2(95.0790024F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(95.0790024F, -32.6349983F), new Vector2(95.6520004F, -35.0130005F), new Vector2(96.8010025F, -37.1459999F)); + builder.AddCubicBezier(new Vector2(97.947998F, -39.2770004F), new Vector2(99.5469971F, -40.9379997F), new Vector2(101.598F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(103.647003F, -43.3160019F), new Vector2(105.984001F, -43.9109993F), new Vector2(108.609001F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(111.232002F, -43.9109993F), new Vector2(113.549004F, -43.3160019F), new Vector2(115.558998F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(117.567001F, -40.9379997F), new Vector2(119.144997F, -39.2989998F), new Vector2(120.293999F, -37.2080002F)); + builder.AddCubicBezier(new Vector2(121.441002F, -35.1170006F), new Vector2(122.015999F, -32.7179985F), new Vector2(122.015999F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(122.015999F, -27.2229996F), new Vector2(121.462997F, -24.7420006F), new Vector2(120.356003F, -22.5699997F)); + builder.AddCubicBezier(new Vector2(119.249001F, -20.3959999F), new Vector2(117.668999F, -18.7360001F), new Vector2(115.620003F, -17.5890007F)); + builder.AddCubicBezier(new Vector2(113.569F, -16.4400005F), new Vector2(111.232002F, -15.8669996F), new Vector2(108.609001F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(105.984001F, -15.8669996F), new Vector2(103.647003F, -16.4400005F), new Vector2(101.598F, -17.5890007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(125.336998F, -2.829F)); + builder.AddCubicBezier(new Vector2(130.257004F, -5.61600018F), new Vector2(134.151001F, -9.36699963F), new Vector2(137.022003F, -14.0830002F)); + builder.AddCubicBezier(new Vector2(139.891006F, -18.7970009F), new Vector2(141.326996F, -24.1480007F), new Vector2(141.326996F, -30.1350002F)); + builder.AddCubicBezier(new Vector2(141.326996F, -35.9560013F), new Vector2(139.891006F, -41.2249985F), new Vector2(137.022003F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(134.151001F, -50.6549988F), new Vector2(130.235992F, -54.3660011F), new Vector2(125.276001F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(120.314003F, -59.7779999F), new Vector2(114.759003F, -61.1310005F), new Vector2(108.609001F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(102.293999F, -61.1310005F), new Vector2(96.6780014F, -59.7560005F), new Vector2(91.7580032F, -57.0099983F)); + builder.AddCubicBezier(new Vector2(86.8379974F, -54.262001F), new Vector2(82.9639969F, -50.5530014F), new Vector2(80.1350021F, -45.8790016F)); + builder.AddCubicBezier(new Vector2(77.3059998F, -41.2050018F), new Vector2(75.8909988F, -35.9560013F), new Vector2(75.8909988F, -30.1350002F)); + builder.AddCubicBezier(new Vector2(75.8909988F, -24.2310009F), new Vector2(77.3249969F, -18.8999996F), new Vector2(80.1959991F, -14.1450005F)); + builder.AddCubicBezier(new Vector2(83.0650024F, -9.38799953F), new Vector2(86.9609985F, -5.61600018F), new Vector2(91.8809967F, -2.829F)); + builder.AddCubicBezier(new Vector2(96.8010025F, -0.0399999991F), new Vector2(102.375999F, 1.35300004F), new Vector2(108.609001F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(114.839996F, 1.35300004F), new Vector2(120.417F, -0.0399999991F), new Vector2(125.336998F, -2.829F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0029() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(30.8120003F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(28.802F, -18.8379993F), new Vector2(27.2229996F, -20.4990005F), new Vector2(26.0760002F, -22.632F)); + builder.AddCubicBezier(new Vector2(24.927F, -24.7630005F), new Vector2(24.3540001F, -27.1830006F), new Vector2(24.3540001F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(24.3540001F, -32.5950012F), new Vector2(24.927F, -35.0130005F), new Vector2(26.0760002F, -37.1459999F)); + builder.AddCubicBezier(new Vector2(27.2229996F, -39.2770004F), new Vector2(28.802F, -40.9379997F), new Vector2(30.8120003F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(32.8199997F, -43.3160019F), new Vector2(35.1360016F, -43.9109993F), new Vector2(37.7610016F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(40.3839989F, -43.9109993F), new Vector2(42.6809998F, -43.3160019F), new Vector2(44.6489983F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(46.6170006F, -40.9379997F), new Vector2(48.1949997F, -39.2770004F), new Vector2(49.3849983F, -37.1459999F)); + builder.AddCubicBezier(new Vector2(50.5730019F, -35.0130005F), new Vector2(51.1679993F, -32.5950012F), new Vector2(51.1679993F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(51.1679993F, -27.1830006F), new Vector2(50.5730019F, -24.7630005F), new Vector2(49.3849983F, -22.632F)); + builder.AddCubicBezier(new Vector2(48.1949997F, -20.4990005F), new Vector2(46.5960007F, -18.8379993F), new Vector2(44.5880013F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(42.5779991F, -16.4599991F), new Vector2(40.2610016F, -15.8669996F), new Vector2(37.6380005F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(35.0950012F, -15.8669996F), new Vector2(32.8199997F, -16.4599991F), new Vector2(30.8120003F, -17.6499996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(25.2150002F, 25.2150002F)); + builder.AddLine(new Vector2(25.2150002F, -15.375F)); + builder.AddLine(new Vector2(22.3859997F, -29.8889999F)); + builder.AddLine(new Vector2(25.4610004F, -44.526001F)); + builder.AddLine(new Vector2(25.4610004F, -59.7779999F)); + builder.AddLine(new Vector2(6.51900005F, -59.7779999F)); + builder.AddLine(new Vector2(6.51900005F, 25.2150002F)); + builder.AddLine(new Vector2(25.2150002F, 25.2150002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(56.2109985F, -2.89100003F)); + builder.AddCubicBezier(new Vector2(60.6389999F, -5.63700008F), new Vector2(64.1029968F, -9.32600021F), new Vector2(66.6050034F, -13.96F)); + builder.AddCubicBezier(new Vector2(69.1050034F, -18.5919991F), new Vector2(70.3560028F, -23.9020004F), new Vector2(70.3560028F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(70.3560028F, -35.8740005F), new Vector2(69.0839996F, -41.2050018F), new Vector2(66.5429993F, -45.8790016F)); + builder.AddCubicBezier(new Vector2(64F, -50.5530014F), new Vector2(60.5359993F, -54.243F), new Vector2(56.1500015F, -56.9490013F)); + builder.AddCubicBezier(new Vector2(51.762001F, -59.6549988F), new Vector2(46.7799988F, -61.0079994F), new Vector2(41.2050018F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(37.1860008F, -61.0079994F), new Vector2(33.4959984F, -60.1870003F), new Vector2(30.1350002F, -58.5480003F)); + builder.AddCubicBezier(new Vector2(26.7719994F, -56.9070015F), new Vector2(24.0249996F, -54.6730003F), new Vector2(21.8939991F, -51.8440018F)); + builder.AddCubicBezier(new Vector2(19.7609997F, -49.0149994F), new Vector2(18.5310001F, -45.7960014F), new Vector2(18.2040005F, -42.1889992F)); + builder.AddLine(new Vector2(18.2040005F, -16.9740009F)); + builder.AddCubicBezier(new Vector2(18.5310001F, -13.4469995F), new Vector2(19.7420006F, -10.3100004F), new Vector2(21.8330002F, -7.56400013F)); + builder.AddCubicBezier(new Vector2(23.9239998F, -4.81599998F), new Vector2(26.6490002F, -2.66400003F), new Vector2(30.0119991F, -1.10699999F)); + builder.AddCubicBezier(new Vector2(33.3730011F, 0.449999988F), new Vector2(37.1040001F, 1.23000002F), new Vector2(41.2050018F, 1.23000002F)); + builder.AddCubicBezier(new Vector2(46.7799988F, 1.23000002F), new Vector2(51.7830009F, -0.143000007F), new Vector2(56.2109985F, -2.89100003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 3 Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0030() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(628.161011F, -43.6650009F)); + builder.AddLine(new Vector2(628.161011F, -59.7779999F)); + builder.AddLine(new Vector2(582.281982F, -59.7779999F)); + builder.AddLine(new Vector2(582.281982F, -43.6650009F)); + builder.AddLine(new Vector2(628.161011F, -43.6650009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(614.630981F, 0F)); + builder.AddLine(new Vector2(614.630981F, -84.5009995F)); + builder.AddLine(new Vector2(595.689026F, -84.5009995F)); + builder.AddLine(new Vector2(595.689026F, 0F)); + builder.AddLine(new Vector2(614.630981F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 3 Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0031() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(536.526001F, 0F)); + builder.AddLine(new Vector2(536.526001F, -59.7779999F)); + builder.AddLine(new Vector2(517.583984F, -59.7779999F)); + builder.AddLine(new Vector2(517.583984F, 0F)); + builder.AddLine(new Vector2(536.526001F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(576.132019F, 0F)); + builder.AddLine(new Vector2(576.132019F, -38.2529984F)); + builder.AddCubicBezier(new Vector2(576.132019F, -42.3520012F), new Vector2(575.14801F, -46.1450005F), new Vector2(573.179993F, -49.6310005F)); + builder.AddCubicBezier(new Vector2(571.211975F, -53.1150017F), new Vector2(568.505981F, -55.882F), new Vector2(565.062012F, -57.9329987F)); + builder.AddCubicBezier(new Vector2(561.617981F, -59.9819984F), new Vector2(557.721985F, -61.0079994F), new Vector2(553.377014F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(548.783997F, -61.0079994F), new Vector2(544.664001F, -60.0439987F), new Vector2(541.015991F, -58.118F)); + builder.AddCubicBezier(new Vector2(537.366028F, -56.1899986F), new Vector2(534.497009F, -53.4630013F), new Vector2(532.406006F, -49.9379997F)); + builder.AddCubicBezier(new Vector2(530.315002F, -46.4109993F), new Vector2(529.268982F, -42.3120003F), new Vector2(529.268982F, -37.6380005F)); + builder.AddLine(new Vector2(536.526001F, -34.0709991F)); + builder.AddCubicBezier(new Vector2(536.526001F, -36.1199989F), new Vector2(536.976013F, -37.9239998F), new Vector2(537.879028F, -39.4830017F)); + builder.AddCubicBezier(new Vector2(538.780029F, -41.0400009F), new Vector2(540.01001F, -42.2509995F), new Vector2(541.56897F, -43.1119995F)); + builder.AddCubicBezier(new Vector2(543.125977F, -43.9729996F), new Vector2(544.890015F, -44.4029999F), new Vector2(546.857971F, -44.4029999F)); + builder.AddCubicBezier(new Vector2(549.809998F, -44.4029999F), new Vector2(552.27002F, -43.4379997F), new Vector2(554.237976F, -41.512001F)); + builder.AddCubicBezier(new Vector2(556.205994F, -39.5839996F), new Vector2(557.190002F, -37.1040001F), new Vector2(557.190002F, -34.0709991F)); + builder.AddLine(new Vector2(557.190002F, 0F)); + builder.AddLine(new Vector2(576.132019F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 3 Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0032() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(493.598999F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(497.781006F, -2.84899998F), new Vector2(501.347992F, -5.45200014F), new Vector2(504.299988F, -8.97900009F)); + builder.AddLine(new Vector2(493.845001F, -19.3110008F)); + builder.AddCubicBezier(new Vector2(492.040009F, -17.2600002F), new Vector2(489.949005F, -15.7229996F), new Vector2(487.571991F, -14.6990004F)); + builder.AddCubicBezier(new Vector2(485.192993F, -13.6730003F), new Vector2(482.569F, -13.1610003F), new Vector2(479.700012F, -13.1610003F)); + builder.AddCubicBezier(new Vector2(476.502014F, -13.1610003F), new Vector2(473.734985F, -13.8380003F), new Vector2(471.39801F, -15.191F)); + builder.AddCubicBezier(new Vector2(469.061005F, -16.5440006F), new Vector2(467.256012F, -18.4899998F), new Vector2(465.985992F, -21.0330009F)); + builder.AddCubicBezier(new Vector2(464.713989F, -23.5739994F), new Vector2(464.07901F, -26.5680008F), new Vector2(464.07901F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(464.07901F, -33.4560013F), new Vector2(464.673004F, -36.4080009F), new Vector2(465.863007F, -38.868F)); + builder.AddCubicBezier(new Vector2(467.050995F, -41.3279991F), new Vector2(468.731995F, -43.2540016F), new Vector2(470.906006F, -44.6489983F)); + builder.AddCubicBezier(new Vector2(473.078003F, -46.0419998F), new Vector2(475.640991F, -46.7400017F), new Vector2(478.592987F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(481.299011F, -46.7400017F), new Vector2(483.61499F, -46.125F), new Vector2(485.542999F, -44.8950005F)); + builder.AddCubicBezier(new Vector2(487.468994F, -43.6650009F), new Vector2(488.924988F, -41.9220009F), new Vector2(489.908997F, -39.6679993F)); + builder.AddCubicBezier(new Vector2(490.893005F, -37.4119987F), new Vector2(491.424988F, -34.6030006F), new Vector2(491.507996F, -31.2420006F)); + builder.AddLine(new Vector2(499.626007F, -36.7770004F)); + builder.AddLine(new Vector2(456.329987F, -36.5309982F)); + builder.AddLine(new Vector2(456.329987F, -23.493F)); + builder.AddLine(new Vector2(507.743988F, -23.7390003F)); + builder.AddCubicBezier(new Vector2(508.153015F, -25.2150002F), new Vector2(508.42099F, -26.5459995F), new Vector2(508.544006F, -27.7360001F)); + builder.AddCubicBezier(new Vector2(508.666992F, -28.9239998F), new Vector2(508.727997F, -30.0930004F), new Vector2(508.727997F, -31.2420006F)); + builder.AddCubicBezier(new Vector2(508.727997F, -37.0629997F), new Vector2(507.415009F, -42.2290001F), new Vector2(504.791992F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(502.166992F, -51.2490005F), new Vector2(498.600006F, -54.7750015F), new Vector2(494.091003F, -57.3180008F)); + builder.AddCubicBezier(new Vector2(489.579987F, -59.8590012F), new Vector2(484.332001F, -61.1310005F), new Vector2(478.346985F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(472.278015F, -61.1310005F), new Vector2(466.825012F, -59.7779999F), new Vector2(461.988007F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(457.148987F, -54.3660011F), new Vector2(453.335999F, -50.6549988F), new Vector2(450.549011F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(447.76001F, -41.2249985F), new Vector2(446.367004F, -35.9160004F), new Vector2(446.367004F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(446.367004F, -23.9430008F), new Vector2(447.800995F, -18.5310001F), new Vector2(450.671997F, -13.776F)); + builder.AddCubicBezier(new Vector2(453.540985F, -9.01900005F), new Vector2(457.47699F, -5.30900002F), new Vector2(462.480011F, -2.64499998F)); + builder.AddCubicBezier(new Vector2(467.480988F, 0.0189999994F), new Vector2(473.221008F, 1.35300004F), new Vector2(479.700012F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(484.78299F, 1.35300004F), new Vector2(489.416992F, 0.510999978F), new Vector2(493.598999F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 3 Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0033() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(438.248993F, 0F)); + builder.AddLine(new Vector2(438.248993F, -37.1459999F)); + builder.AddCubicBezier(new Vector2(438.248993F, -42.1469994F), new Vector2(437.222992F, -46.4109993F), new Vector2(435.174011F, -49.9379997F)); + builder.AddCubicBezier(new Vector2(433.122986F, -53.4630013F), new Vector2(430.294006F, -56.1899986F), new Vector2(426.687012F, -58.118F)); + builder.AddCubicBezier(new Vector2(423.078003F, -60.0439987F), new Vector2(419.019012F, -61.0079994F), new Vector2(414.51001F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(409.835999F, -61.0079994F), new Vector2(405.612F, -60.0239983F), new Vector2(401.841003F, -58.0559998F)); + builder.AddCubicBezier(new Vector2(398.067993F, -56.0880013F), new Vector2(395.075989F, -53.2589989F), new Vector2(392.862F, -49.5690002F)); + builder.AddCubicBezier(new Vector2(390.64801F, -45.8790016F), new Vector2(389.417999F, -41.4910011F), new Vector2(389.171997F, -36.4080009F)); + builder.AddLine(new Vector2(400.118988F, -34.9319992F)); + builder.AddCubicBezier(new Vector2(400.118988F, -36.9000015F), new Vector2(400.528015F, -38.5800018F), new Vector2(401.348999F, -39.9749985F)); + builder.AddCubicBezier(new Vector2(402.167999F, -41.368F), new Vector2(403.337006F, -42.4539986F), new Vector2(404.855011F, -43.2340012F)); + builder.AddCubicBezier(new Vector2(406.371002F, -44.012001F), new Vector2(408.031006F, -44.4029999F), new Vector2(409.835999F, -44.4029999F)); + builder.AddCubicBezier(new Vector2(412.459015F, -44.4029999F), new Vector2(414.695007F, -43.5620003F), new Vector2(416.540009F, -41.882F)); + builder.AddCubicBezier(new Vector2(418.38501F, -40.2000008F), new Vector2(419.307007F, -37.8839989F), new Vector2(419.307007F, -34.9319992F)); + builder.AddLine(new Vector2(419.307007F, 0F)); + builder.AddLine(new Vector2(438.248993F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(400.118988F, 0F)); + builder.AddLine(new Vector2(400.118988F, -38.2529984F)); + builder.AddCubicBezier(new Vector2(400.118988F, -42.9269981F), new Vector2(399.113007F, -46.9440002F), new Vector2(397.105011F, -50.3069992F)); + builder.AddCubicBezier(new Vector2(395.095001F, -53.6679993F), new Vector2(392.432007F, -56.2919998F), new Vector2(389.110992F, -58.1790009F)); + builder.AddCubicBezier(new Vector2(385.790009F, -60.0639992F), new Vector2(382.078003F, -61.0079994F), new Vector2(377.979004F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(373.467987F, -61.0079994F), new Vector2(369.471008F, -60.0859985F), new Vector2(365.987F, -58.2410011F)); + builder.AddCubicBezier(new Vector2(362.501007F, -56.3959999F), new Vector2(359.713989F, -53.7700005F), new Vector2(357.622986F, -50.368F)); + builder.AddCubicBezier(new Vector2(355.532013F, -46.9640007F), new Vector2(354.485992F, -42.9269981F), new Vector2(354.485992F, -38.2529984F)); + builder.AddLine(new Vector2(361.743011F, -34.9319992F)); + builder.AddCubicBezier(new Vector2(361.743011F, -36.9000015F), new Vector2(362.174011F, -38.5800018F), new Vector2(363.035004F, -39.9749985F)); + builder.AddCubicBezier(new Vector2(363.895996F, -41.368F), new Vector2(365.063995F, -42.4539986F), new Vector2(366.540009F, -43.2340012F)); + builder.AddCubicBezier(new Vector2(368.015991F, -44.012001F), new Vector2(369.696014F, -44.4029999F), new Vector2(371.583008F, -44.4029999F)); + builder.AddCubicBezier(new Vector2(374.289001F, -44.4029999F), new Vector2(376.565002F, -43.5620003F), new Vector2(378.410004F, -41.882F)); + builder.AddCubicBezier(new Vector2(380.255005F, -40.2000008F), new Vector2(381.177002F, -37.8839989F), new Vector2(381.177002F, -34.9319992F)); + builder.AddLine(new Vector2(381.177002F, 0F)); + builder.AddLine(new Vector2(400.118988F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(361.743011F, 0F)); + builder.AddLine(new Vector2(361.743011F, -59.7779999F)); + builder.AddLine(new Vector2(342.800995F, -59.7779999F)); + builder.AddLine(new Vector2(342.800995F, 0F)); + builder.AddLine(new Vector2(361.743011F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 3 Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0034() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(329.640015F, 0F)); + builder.AddLine(new Vector2(329.640015F, -59.7779999F)); + builder.AddLine(new Vector2(311.066986F, -59.7779999F)); + builder.AddLine(new Vector2(311.066986F, -45.1409988F)); + builder.AddLine(new Vector2(313.895996F, -30.75F)); + builder.AddLine(new Vector2(311.066986F, -16.1130009F)); + builder.AddLine(new Vector2(311.066986F, 0F)); + builder.AddLine(new Vector2(329.640015F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(291.695007F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(289.684998F, -18.8379993F), new Vector2(288.085999F, -20.4990005F), new Vector2(286.89801F, -22.632F)); + builder.AddCubicBezier(new Vector2(285.708008F, -24.7630005F), new Vector2(285.114014F, -27.1830006F), new Vector2(285.114014F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(285.114014F, -32.5950012F), new Vector2(285.708008F, -35.0130005F), new Vector2(286.89801F, -37.1459999F)); + builder.AddCubicBezier(new Vector2(288.085999F, -39.2770004F), new Vector2(289.684998F, -40.9379997F), new Vector2(291.695007F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(293.703003F, -43.3160019F), new Vector2(295.977997F, -43.9109993F), new Vector2(298.520996F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(301.144012F, -43.9109993F), new Vector2(303.480988F, -43.3160019F), new Vector2(305.532013F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(307.580994F, -40.9379997F), new Vector2(309.139008F, -39.2989998F), new Vector2(310.205994F, -37.2080002F)); + builder.AddCubicBezier(new Vector2(311.270996F, -35.1170006F), new Vector2(311.804993F, -32.7179985F), new Vector2(311.804993F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(311.804993F, -25.8299999F), new Vector2(310.595001F, -22.4260006F), new Vector2(308.177002F, -19.8029995F)); + builder.AddCubicBezier(new Vector2(305.756989F, -17.1779995F), new Vector2(302.537994F, -15.8669996F), new Vector2(298.520996F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(295.977997F, -15.8669996F), new Vector2(293.703003F, -16.4599991F), new Vector2(291.695007F, -17.6499996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(305.593994F, -1.10699999F)); + builder.AddCubicBezier(new Vector2(308.832001F, -2.66400003F), new Vector2(311.455994F, -4.81599998F), new Vector2(313.466003F, -7.56400013F)); + builder.AddCubicBezier(new Vector2(315.473999F, -10.3100004F), new Vector2(316.60199F, -13.4469995F), new Vector2(316.847992F, -16.9740009F)); + builder.AddLine(new Vector2(316.847992F, -42.8040009F)); + builder.AddCubicBezier(new Vector2(316.60199F, -46.3289986F), new Vector2(315.453003F, -49.4659996F), new Vector2(313.403992F, -52.2140007F)); + builder.AddCubicBezier(new Vector2(311.352997F, -54.9599991F), new Vector2(308.709015F, -57.1119995F), new Vector2(305.471008F, -58.6710014F)); + builder.AddCubicBezier(new Vector2(302.230988F, -60.2280006F), new Vector2(298.60199F, -61.0079994F), new Vector2(294.584991F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(289.089996F, -61.0079994F), new Vector2(284.191986F, -59.6739998F), new Vector2(279.886993F, -57.0099983F)); + builder.AddCubicBezier(new Vector2(275.582001F, -54.3440018F), new Vector2(272.178009F, -50.6549988F), new Vector2(269.678009F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(267.175995F, -41.2249985F), new Vector2(265.925995F, -35.8740005F), new Vector2(265.925995F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(265.925995F, -23.9020004F), new Vector2(267.175995F, -18.5919991F), new Vector2(269.678009F, -13.96F)); + builder.AddCubicBezier(new Vector2(272.178009F, -9.32600021F), new Vector2(275.601013F, -5.63700008F), new Vector2(279.947998F, -2.89100003F)); + builder.AddCubicBezier(new Vector2(284.292999F, -0.143000007F), new Vector2(289.173004F, 1.23000002F), new Vector2(294.584991F, 1.23000002F)); + builder.AddCubicBezier(new Vector2(298.68399F, 1.23000002F), new Vector2(302.354004F, 0.449999988F), new Vector2(305.593994F, -1.10699999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 3 Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0035() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(254.425995F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(256.270996F, -73.0199966F), new Vector2(257.192993F, -75.4800034F), new Vector2(257.192993F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(257.192993F, -81.3030014F), new Vector2(256.270996F, -83.7630005F), new Vector2(254.425995F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(252.580994F, -87.6989975F), new Vector2(250.139999F, -88.6829987F), new Vector2(247.106995F, -88.6829987F)); + builder.AddCubicBezier(new Vector2(244.235992F, -88.6829987F), new Vector2(241.817993F, -87.6989975F), new Vector2(239.850006F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(237.882004F, -83.7630005F), new Vector2(236.897995F, -81.3030014F), new Vector2(236.897995F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(236.897995F, -75.4800034F), new Vector2(237.882004F, -73.0199966F), new Vector2(239.850006F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(241.817993F, -68.9199982F), new Vector2(244.235992F, -67.8960037F), new Vector2(247.106995F, -67.8960037F)); + builder.AddCubicBezier(new Vector2(250.139999F, -67.8960037F), new Vector2(252.580994F, -68.9199982F), new Vector2(254.425995F, -70.9710007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(256.578003F, 0F)); + builder.AddLine(new Vector2(256.578003F, -59.7779999F)); + builder.AddLine(new Vector2(237.636002F, -59.7779999F)); + builder.AddLine(new Vector2(237.636002F, 0F)); + builder.AddLine(new Vector2(256.578003F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 3 Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0036() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(224.229004F, 0F)); + builder.AddLine(new Vector2(224.229004F, -89.2979965F)); + builder.AddLine(new Vector2(205.287003F, -89.2979965F)); + builder.AddLine(new Vector2(205.287003F, 0F)); + builder.AddLine(new Vector2(224.229004F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 3 Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0037() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(174.598999F, -41.3899994F)); + builder.AddCubicBezier(new Vector2(176.444F, -43.3160019F), new Vector2(178.964996F, -44.2799988F), new Vector2(182.162994F, -44.2799988F)); + builder.AddCubicBezier(new Vector2(183.720001F, -44.2799988F), new Vector2(185.115005F, -44.0340004F), new Vector2(186.345001F, -43.5419998F)); + builder.AddCubicBezier(new Vector2(187.574997F, -43.0499992F), new Vector2(188.559006F, -42.3930016F), new Vector2(189.296997F, -41.5740013F)); + builder.AddLine(new Vector2(200.490005F, -55.8419991F)); + builder.AddCubicBezier(new Vector2(198.848999F, -57.5639992F), new Vector2(196.942993F, -58.855999F), new Vector2(194.770996F, -59.7169991F)); + builder.AddCubicBezier(new Vector2(192.597F, -60.5779991F), new Vector2(190.074997F, -61.0079994F), new Vector2(187.205994F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(180.727005F, -61.0079994F), new Vector2(175.623001F, -59.0800018F), new Vector2(171.893005F, -55.2270012F)); + builder.AddCubicBezier(new Vector2(168.160995F, -51.3720016F), new Vector2(165.516006F, -45.9189987F), new Vector2(163.959F, -38.868F)); + builder.AddLine(new Vector2(171.830994F, -32.7179985F)); + builder.AddCubicBezier(new Vector2(171.830994F, -36.5709991F), new Vector2(172.753998F, -39.4620018F), new Vector2(174.598999F, -41.3899994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(171.830994F, 0F)); + builder.AddLine(new Vector2(171.830994F, -59.7779999F)); + builder.AddLine(new Vector2(152.889008F, -59.7779999F)); + builder.AddLine(new Vector2(152.889008F, 0F)); + builder.AddLine(new Vector2(171.830994F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 3 Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0038() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(139.727997F, 0F)); + builder.AddLine(new Vector2(139.727997F, -59.7779999F)); + builder.AddLine(new Vector2(121.154999F, -59.7779999F)); + builder.AddLine(new Vector2(121.154999F, -45.1409988F)); + builder.AddLine(new Vector2(123.984001F, -30.75F)); + builder.AddLine(new Vector2(121.154999F, -16.1130009F)); + builder.AddLine(new Vector2(121.154999F, 0F)); + builder.AddLine(new Vector2(139.727997F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(101.782997F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(99.7730026F, -18.8379993F), new Vector2(98.1740036F, -20.4990005F), new Vector2(96.9860001F, -22.632F)); + builder.AddCubicBezier(new Vector2(95.7959976F, -24.7630005F), new Vector2(95.2020035F, -27.1830006F), new Vector2(95.2020035F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(95.2020035F, -32.5950012F), new Vector2(95.7959976F, -35.0130005F), new Vector2(96.9860001F, -37.1459999F)); + builder.AddCubicBezier(new Vector2(98.1740036F, -39.2770004F), new Vector2(99.7730026F, -40.9379997F), new Vector2(101.782997F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(103.791F, -43.3160019F), new Vector2(106.066002F, -43.9109993F), new Vector2(108.609001F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(111.232002F, -43.9109993F), new Vector2(113.569F, -43.3160019F), new Vector2(115.620003F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(117.668999F, -40.9379997F), new Vector2(119.226997F, -39.2989998F), new Vector2(120.293999F, -37.2080002F)); + builder.AddCubicBezier(new Vector2(121.359001F, -35.1170006F), new Vector2(121.892998F, -32.7179985F), new Vector2(121.892998F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(121.892998F, -25.8299999F), new Vector2(120.682999F, -22.4260006F), new Vector2(118.264999F, -19.8029995F)); + builder.AddCubicBezier(new Vector2(115.845001F, -17.1779995F), new Vector2(112.625999F, -15.8669996F), new Vector2(108.609001F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(106.066002F, -15.8669996F), new Vector2(103.791F, -16.4599991F), new Vector2(101.782997F, -17.6499996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(115.681999F, -1.10699999F)); + builder.AddCubicBezier(new Vector2(118.919998F, -2.66400003F), new Vector2(121.543999F, -4.81599998F), new Vector2(123.554001F, -7.56400013F)); + builder.AddCubicBezier(new Vector2(125.561996F, -10.3100004F), new Vector2(126.690002F, -13.4469995F), new Vector2(126.935997F, -16.9740009F)); + builder.AddLine(new Vector2(126.935997F, -42.8040009F)); + builder.AddCubicBezier(new Vector2(126.690002F, -46.3289986F), new Vector2(125.541F, -49.4659996F), new Vector2(123.491997F, -52.2140007F)); + builder.AddCubicBezier(new Vector2(121.441002F, -54.9599991F), new Vector2(118.796997F, -57.1119995F), new Vector2(115.558998F, -58.6710014F)); + builder.AddCubicBezier(new Vector2(112.319F, -60.2280006F), new Vector2(108.690002F, -61.0079994F), new Vector2(104.672997F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(99.1780014F, -61.0079994F), new Vector2(94.2799988F, -59.6739998F), new Vector2(89.9749985F, -57.0099983F)); + builder.AddCubicBezier(new Vector2(85.6699982F, -54.3440018F), new Vector2(82.2659988F, -50.6549988F), new Vector2(79.7659988F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(77.2639999F, -41.2249985F), new Vector2(76.0139999F, -35.8740005F), new Vector2(76.0139999F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(76.0139999F, -23.9020004F), new Vector2(77.2639999F, -18.5919991F), new Vector2(79.7659988F, -13.96F)); + builder.AddCubicBezier(new Vector2(82.2659988F, -9.32600021F), new Vector2(85.689003F, -5.63700008F), new Vector2(90.0360031F, -2.89100003F)); + builder.AddCubicBezier(new Vector2(94.3809967F, -0.143000007F), new Vector2(99.2610016F, 1.23000002F), new Vector2(104.672997F, 1.23000002F)); + builder.AddCubicBezier(new Vector2(108.772003F, 1.23000002F), new Vector2(112.442001F, 0.449999988F), new Vector2(115.681999F, -1.10699999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 4 Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0039() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(346.983002F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(351.165009F, -2.84899998F), new Vector2(354.731995F, -5.45200014F), new Vector2(357.68399F, -8.97900009F)); + builder.AddLine(new Vector2(347.229004F, -19.3110008F)); + builder.AddCubicBezier(new Vector2(345.424011F, -17.2600002F), new Vector2(343.333008F, -15.7229996F), new Vector2(340.955994F, -14.6990004F)); + builder.AddCubicBezier(new Vector2(338.576996F, -13.6730003F), new Vector2(335.953003F, -13.1610003F), new Vector2(333.084015F, -13.1610003F)); + builder.AddCubicBezier(new Vector2(329.885986F, -13.1610003F), new Vector2(327.118988F, -13.8380003F), new Vector2(324.782013F, -15.191F)); + builder.AddCubicBezier(new Vector2(322.445007F, -16.5440006F), new Vector2(320.640015F, -18.4899998F), new Vector2(319.369995F, -21.0330009F)); + builder.AddCubicBezier(new Vector2(318.097992F, -23.5739994F), new Vector2(317.463013F, -26.5680008F), new Vector2(317.463013F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(317.463013F, -33.4560013F), new Vector2(318.057007F, -36.4080009F), new Vector2(319.247009F, -38.868F)); + builder.AddCubicBezier(new Vector2(320.434998F, -41.3279991F), new Vector2(322.115997F, -43.2540016F), new Vector2(324.290009F, -44.6489983F)); + builder.AddCubicBezier(new Vector2(326.462006F, -46.0419998F), new Vector2(329.024994F, -46.7400017F), new Vector2(331.97699F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(334.683014F, -46.7400017F), new Vector2(336.998993F, -46.125F), new Vector2(338.927002F, -44.8950005F)); + builder.AddCubicBezier(new Vector2(340.852997F, -43.6650009F), new Vector2(342.30899F, -41.9220009F), new Vector2(343.292999F, -39.6679993F)); + builder.AddCubicBezier(new Vector2(344.277008F, -37.4119987F), new Vector2(344.80899F, -34.6030006F), new Vector2(344.891998F, -31.2420006F)); + builder.AddLine(new Vector2(353.01001F, -36.7770004F)); + builder.AddLine(new Vector2(309.713989F, -36.5309982F)); + builder.AddLine(new Vector2(309.713989F, -23.493F)); + builder.AddLine(new Vector2(361.127991F, -23.7390003F)); + builder.AddCubicBezier(new Vector2(361.536987F, -25.2150002F), new Vector2(361.804993F, -26.5459995F), new Vector2(361.928009F, -27.7360001F)); + builder.AddCubicBezier(new Vector2(362.050995F, -28.9239998F), new Vector2(362.112F, -30.0930004F), new Vector2(362.112F, -31.2420006F)); + builder.AddCubicBezier(new Vector2(362.112F, -37.0629997F), new Vector2(360.799011F, -42.2290001F), new Vector2(358.175995F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(355.550995F, -51.2490005F), new Vector2(351.984009F, -54.7750015F), new Vector2(347.475006F, -57.3180008F)); + builder.AddCubicBezier(new Vector2(342.963989F, -59.8590012F), new Vector2(337.716003F, -61.1310005F), new Vector2(331.730988F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(325.661987F, -61.1310005F), new Vector2(320.209015F, -59.7779999F), new Vector2(315.372009F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(310.53299F, -54.3660011F), new Vector2(306.720001F, -50.6549988F), new Vector2(303.933014F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(301.144012F, -41.2249985F), new Vector2(299.751007F, -35.9160004F), new Vector2(299.751007F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(299.751007F, -23.9430008F), new Vector2(301.184998F, -18.5310001F), new Vector2(304.056F, -13.776F)); + builder.AddCubicBezier(new Vector2(306.924988F, -9.01900005F), new Vector2(310.860992F, -5.30900002F), new Vector2(315.864014F, -2.64499998F)); + builder.AddCubicBezier(new Vector2(320.86499F, 0.0189999994F), new Vector2(326.605011F, 1.35300004F), new Vector2(333.084015F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(338.166992F, 1.35300004F), new Vector2(342.800995F, 0.510999978F), new Vector2(346.983002F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 4 Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0040() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(286.28299F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(290.177002F, -2.84899998F), new Vector2(293.723999F, -5.329F), new Vector2(296.921997F, -8.60999966F)); + builder.AddLine(new Vector2(284.744995F, -20.6639996F)); + builder.AddCubicBezier(new Vector2(283.350006F, -19.1049995F), new Vector2(281.688995F, -17.9160004F), new Vector2(279.763F, -17.0970001F)); + builder.AddCubicBezier(new Vector2(277.834991F, -16.2759991F), new Vector2(275.643005F, -15.8669996F), new Vector2(273.183014F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(270.640015F, -15.8669996F), new Vector2(268.303009F, -16.4599991F), new Vector2(266.171997F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(264.039001F, -18.8379993F), new Vector2(262.377991F, -20.4990005F), new Vector2(261.190002F, -22.632F)); + builder.AddCubicBezier(new Vector2(260F, -24.7630005F), new Vector2(259.407013F, -27.2229996F), new Vector2(259.407013F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(259.407013F, -32.7179985F), new Vector2(260F, -35.1170006F), new Vector2(261.190002F, -37.2080002F)); + builder.AddCubicBezier(new Vector2(262.377991F, -39.2989998F), new Vector2(264.019989F, -40.9379997F), new Vector2(266.110992F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(268.201996F, -43.3160019F), new Vector2(270.558014F, -43.9109993F), new Vector2(273.183014F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(275.559998F, -43.9109993F), new Vector2(277.673004F, -43.5419998F), new Vector2(279.518005F, -42.8040009F)); + builder.AddCubicBezier(new Vector2(281.363007F, -42.0660019F), new Vector2(282.980988F, -40.9169998F), new Vector2(284.376007F, -39.3600006F)); + builder.AddLine(new Vector2(296.553009F, -51.6599998F)); + builder.AddCubicBezier(new Vector2(293.518005F, -54.7750015F), new Vector2(290.053986F, -57.1329994F), new Vector2(286.160004F, -58.7319984F)); + builder.AddCubicBezier(new Vector2(282.264008F, -60.3310013F), new Vector2(277.937988F, -61.1310005F), new Vector2(273.183014F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(266.950012F, -61.1310005F), new Vector2(261.333008F, -59.7779999F), new Vector2(256.332001F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(251.328995F, -54.3660011F), new Vector2(247.393005F, -50.6549988F), new Vector2(244.524002F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(241.653F, -41.2249985F), new Vector2(240.218994F, -35.8740005F), new Vector2(240.218994F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(240.218994F, -23.9850006F), new Vector2(241.632996F, -18.6539993F), new Vector2(244.462006F, -13.8990002F)); + builder.AddCubicBezier(new Vector2(247.291F, -9.1420002F), new Vector2(251.205994F, -5.41200018F), new Vector2(256.209015F, -2.70600009F)); + builder.AddCubicBezier(new Vector2(261.209991F, 0F), new Vector2(266.826996F, 1.35300004F), new Vector2(273.059998F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(277.980011F, 1.35300004F), new Vector2(282.386993F, 0.510999978F), new Vector2(286.28299F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 4 Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0041() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(228.841995F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(230.686996F, -73.0199966F), new Vector2(231.608994F, -75.4800034F), new Vector2(231.608994F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(231.608994F, -81.3030014F), new Vector2(230.686996F, -83.7630005F), new Vector2(228.841995F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(226.996994F, -87.6989975F), new Vector2(224.556F, -88.6829987F), new Vector2(221.522995F, -88.6829987F)); + builder.AddCubicBezier(new Vector2(218.651993F, -88.6829987F), new Vector2(216.233994F, -87.6989975F), new Vector2(214.266006F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(212.298004F, -83.7630005F), new Vector2(211.313995F, -81.3030014F), new Vector2(211.313995F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(211.313995F, -75.4800034F), new Vector2(212.298004F, -73.0199966F), new Vector2(214.266006F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(216.233994F, -68.9199982F), new Vector2(218.651993F, -67.8960037F), new Vector2(221.522995F, -67.8960037F)); + builder.AddCubicBezier(new Vector2(224.556F, -67.8960037F), new Vector2(226.996994F, -68.9199982F), new Vector2(228.841995F, -70.9710007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(230.994003F, 0F)); + builder.AddLine(new Vector2(230.994003F, -59.7779999F)); + builder.AddLine(new Vector2(212.052002F, -59.7779999F)); + builder.AddLine(new Vector2(212.052002F, 0F)); + builder.AddLine(new Vector2(230.994003F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 4 Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0042() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(203.811005F, -43.6650009F)); + builder.AddLine(new Vector2(203.811005F, -59.7779999F)); + builder.AddLine(new Vector2(157.932007F, -59.7779999F)); + builder.AddLine(new Vector2(157.932007F, -43.6650009F)); + builder.AddLine(new Vector2(203.811005F, -43.6650009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(190.281006F, 0F)); + builder.AddLine(new Vector2(190.281006F, -84.5009995F)); + builder.AddLine(new Vector2(171.339005F, -84.5009995F)); + builder.AddLine(new Vector2(171.339005F, 0F)); + builder.AddLine(new Vector2(190.281006F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 4 Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0043() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(146.186005F, -3.62800002F)); + builder.AddCubicBezier(new Vector2(150.572006F, -7.11199999F), new Vector2(152.766006F, -11.7659998F), new Vector2(152.766006F, -17.5890007F)); + builder.AddCubicBezier(new Vector2(152.766006F, -21.3600006F), new Vector2(152.067993F, -24.4160004F), new Vector2(150.675003F, -26.7530003F)); + builder.AddCubicBezier(new Vector2(149.279999F, -29.0900002F), new Vector2(147.477005F, -30.9750004F), new Vector2(145.263F, -32.4109993F)); + builder.AddCubicBezier(new Vector2(143.048996F, -33.8450012F), new Vector2(140.712006F, -34.9519997F), new Vector2(138.251999F, -35.7319984F)); + builder.AddCubicBezier(new Vector2(135.792007F, -36.5099983F), new Vector2(133.475006F, -37.1860008F), new Vector2(131.302994F, -37.7610016F)); + builder.AddCubicBezier(new Vector2(129.128998F, -38.3339996F), new Vector2(127.324997F, -38.9910011F), new Vector2(125.890999F, -39.7290001F)); + builder.AddCubicBezier(new Vector2(124.455002F, -40.4669991F), new Vector2(123.737999F, -41.4510002F), new Vector2(123.737999F, -42.6809998F)); + builder.AddCubicBezier(new Vector2(123.737999F, -43.7459984F), new Vector2(124.269997F, -44.6069984F), new Vector2(125.336998F, -45.2639999F)); + builder.AddCubicBezier(new Vector2(126.402F, -45.9189987F), new Vector2(128.001007F, -46.2480011F), new Vector2(130.134003F, -46.2480011F)); + builder.AddCubicBezier(new Vector2(132.348007F, -46.2480011F), new Vector2(134.623001F, -45.776001F), new Vector2(136.960007F, -44.8339996F)); + builder.AddCubicBezier(new Vector2(139.296997F, -43.8899994F), new Vector2(141.408005F, -42.3120003F), new Vector2(143.294998F, -40.0979996F)); + builder.AddLine(new Vector2(153.996002F, -51.0449982F)); + builder.AddCubicBezier(new Vector2(151.371002F, -54.4889984F), new Vector2(147.886002F, -57.0909996F), new Vector2(143.541F, -58.8549995F)); + builder.AddCubicBezier(new Vector2(139.194F, -60.6170006F), new Vector2(134.520004F, -61.5F), new Vector2(129.518997F, -61.5F)); + builder.AddCubicBezier(new Vector2(124.515999F, -61.5F), new Vector2(120.210999F, -60.6790009F), new Vector2(116.603996F, -59.0400009F)); + builder.AddCubicBezier(new Vector2(112.995003F, -57.3989983F), new Vector2(110.208F, -55.1660004F), new Vector2(108.239998F, -52.3370018F)); + builder.AddCubicBezier(new Vector2(106.272003F, -49.5079994F), new Vector2(105.288002F, -46.1650009F), new Vector2(105.288002F, -42.3120003F)); + builder.AddCubicBezier(new Vector2(105.288002F, -38.6220016F), new Vector2(105.984001F, -35.6279984F), new Vector2(107.378998F, -33.3330002F)); + builder.AddCubicBezier(new Vector2(108.772003F, -31.0359993F), new Vector2(110.577003F, -29.2320004F), new Vector2(112.791F, -27.9209995F)); + builder.AddCubicBezier(new Vector2(115.004997F, -26.6079998F), new Vector2(117.342003F, -25.5629997F), new Vector2(119.802002F, -24.7849998F)); + builder.AddCubicBezier(new Vector2(122.262001F, -24.0049992F), new Vector2(124.619003F, -23.3080006F), new Vector2(126.875F, -22.6930008F)); + builder.AddCubicBezier(new Vector2(129.128998F, -22.0779991F), new Vector2(130.953003F, -21.4209995F), new Vector2(132.348007F, -20.7250004F)); + builder.AddCubicBezier(new Vector2(133.740997F, -20.0270004F), new Vector2(134.438995F, -18.9419994F), new Vector2(134.438995F, -17.4659996F)); + builder.AddCubicBezier(new Vector2(134.438995F, -16.2360001F), new Vector2(133.843994F, -15.2919998F), new Vector2(132.656006F, -14.6370001F)); + builder.AddCubicBezier(new Vector2(131.466003F, -13.9799995F), new Vector2(129.845993F, -13.6529999F), new Vector2(127.796997F, -13.6529999F)); + builder.AddCubicBezier(new Vector2(124.515999F, -13.6529999F), new Vector2(121.543999F, -14.2469997F), new Vector2(118.879997F, -15.4370003F)); + builder.AddCubicBezier(new Vector2(116.213997F, -16.625F), new Vector2(113.856003F, -18.2849998F), new Vector2(111.806999F, -20.4179993F)); + builder.AddLine(new Vector2(100.983002F, -9.59399986F)); + builder.AddCubicBezier(new Vector2(103.113998F, -7.38000011F), new Vector2(105.614998F, -5.43100023F), new Vector2(108.486F, -3.75099993F)); + builder.AddCubicBezier(new Vector2(111.355003F, -2.06900001F), new Vector2(114.513F, -0.758000016F), new Vector2(117.957001F, 0.184F)); + builder.AddCubicBezier(new Vector2(121.401001F, 1.12600005F), new Vector2(124.885002F, 1.59899998F), new Vector2(128.412003F, 1.59899998F)); + builder.AddCubicBezier(new Vector2(135.873001F, 1.59899998F), new Vector2(141.798004F, -0.142000005F), new Vector2(146.186005F, -3.62800002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 4 Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0044() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(81.4260025F, -2.02900004F)); + builder.AddCubicBezier(new Vector2(85.6080017F, -4.28299999F), new Vector2(88.8679962F, -7.4000001F), new Vector2(91.2050018F, -11.3780003F)); + builder.AddCubicBezier(new Vector2(93.5419998F, -15.3540001F), new Vector2(94.7099991F, -19.9659996F), new Vector2(94.7099991F, -25.2150002F)); + builder.AddLine(new Vector2(94.7099991F, -59.7779999F)); + builder.AddLine(new Vector2(75.7679977F, -59.7779999F)); + builder.AddLine(new Vector2(75.7679977F, -25.4610004F)); + builder.AddCubicBezier(new Vector2(75.7679977F, -22.3439999F), new Vector2(74.9690018F, -19.8840008F), new Vector2(73.3700027F, -18.0809994F)); + builder.AddCubicBezier(new Vector2(71.7710037F, -16.2759991F), new Vector2(69.5759964F, -15.375F), new Vector2(66.7890015F, -15.375F)); + builder.AddCubicBezier(new Vector2(64.9020004F, -15.375F), new Vector2(63.262001F, -15.7840004F), new Vector2(61.8689995F, -16.6049995F)); + builder.AddCubicBezier(new Vector2(60.473999F, -17.4239998F), new Vector2(59.4090004F, -18.5930004F), new Vector2(58.6710014F, -20.1110001F)); + builder.AddCubicBezier(new Vector2(57.9329987F, -21.6270008F), new Vector2(57.5639992F, -23.4099998F), new Vector2(57.5639992F, -25.4610004F)); + builder.AddLine(new Vector2(57.5639992F, -59.7779999F)); + builder.AddLine(new Vector2(38.6220016F, -59.7779999F)); + builder.AddLine(new Vector2(38.6220016F, -25.2150002F)); + builder.AddCubicBezier(new Vector2(38.6220016F, -20.0489998F), new Vector2(39.8100014F, -15.4770002F), new Vector2(42.1889992F, -11.5010004F)); + builder.AddCubicBezier(new Vector2(44.5660019F, -7.52299976F), new Vector2(47.9090004F, -4.38600016F), new Vector2(52.2140007F, -2.09100008F)); + builder.AddCubicBezier(new Vector2(56.519001F, 0.203999996F), new Vector2(61.3769989F, 1.35300004F), new Vector2(66.7890015F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(72.3639984F, 1.35300004F), new Vector2(77.2440033F, 0.224999994F), new Vector2(81.4260025F, -2.02900004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 4 Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0045() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(25.0310001F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(26.8759995F, -73.0199966F), new Vector2(27.7980003F, -75.4800034F), new Vector2(27.7980003F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(27.7980003F, -81.3030014F), new Vector2(26.8759995F, -83.7630005F), new Vector2(25.0310001F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(23.1860008F, -87.6989975F), new Vector2(20.7450008F, -88.6829987F), new Vector2(17.7119999F, -88.6829987F)); + builder.AddCubicBezier(new Vector2(14.8409996F, -88.6829987F), new Vector2(12.4230003F, -87.6989975F), new Vector2(10.4549999F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(8.48700047F, -83.7630005F), new Vector2(7.50299978F, -81.3030014F), new Vector2(7.50299978F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(7.50299978F, -75.4800034F), new Vector2(8.48700047F, -73.0199966F), new Vector2(10.4549999F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(12.4230003F, -68.9199982F), new Vector2(14.8409996F, -67.8960037F), new Vector2(17.7119999F, -67.8960037F)); + builder.AddCubicBezier(new Vector2(20.7450008F, -67.8960037F), new Vector2(23.1860008F, -68.9199982F), new Vector2(25.0310001F, -70.9710007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(15.4370003F, 23.8619995F)); + builder.AddCubicBezier(new Vector2(19.0039997F, 21.8939991F), new Vector2(21.8110008F, 19.1270008F), new Vector2(23.8619995F, 15.5600004F)); + builder.AddCubicBezier(new Vector2(25.9109993F, 11.993F), new Vector2(26.9370003F, 7.78900003F), new Vector2(26.9370003F, 2.9519999F)); + builder.AddLine(new Vector2(26.9370003F, -59.7779999F)); + builder.AddLine(new Vector2(7.99499989F, -59.7779999F)); + builder.AddLine(new Vector2(7.99499989F, 3.3210001F)); + builder.AddCubicBezier(new Vector2(7.99499989F, 5.53499985F), new Vector2(7.44199991F, 7.17399979F), new Vector2(6.33500004F, 8.24100018F)); + builder.AddCubicBezier(new Vector2(5.22800016F, 9.30599976F), new Vector2(3.77099991F, 9.84000015F), new Vector2(1.96800005F, 9.84000015F)); + builder.AddCubicBezier(new Vector2(0.737999976F, 9.84000015F), new Vector2(-0.368999988F, 9.61299992F), new Vector2(-1.35300004F, 9.16300011F)); + builder.AddCubicBezier(new Vector2(-2.33699989F, 8.71100044F), new Vector2(-3.27900004F, 7.95300007F), new Vector2(-4.18200016F, 6.88800001F)); + builder.AddLine(new Vector2(-15.9899998F, 18.573F)); + builder.AddCubicBezier(new Vector2(-13.6110001F, 21.1959991F), new Vector2(-10.9049997F, 23.2250004F), new Vector2(-7.87200022F, 24.6609993F)); + builder.AddCubicBezier(new Vector2(-4.83699989F, 26.0949993F), new Vector2(-1.14699996F, 26.8139992F), new Vector2(3.19799995F, 26.8139992F)); + builder.AddCubicBezier(new Vector2(7.78900003F, 26.8139992F), new Vector2(11.8699999F, 25.8299999F), new Vector2(15.4370003F, 23.8619995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 5 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0046() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(580.80603F, 25.2150002F)); + builder.AddLine(new Vector2(591.383972F, 0.368999988F)); + builder.AddLine(new Vector2(579.330017F, -13.6529999F)); + builder.AddLine(new Vector2(561.372009F, 25.2150002F)); + builder.AddLine(new Vector2(580.80603F, 25.2150002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(591.383972F, 0.368999988F)); + builder.AddLine(new Vector2(616.968018F, -59.7779999F)); + builder.AddLine(new Vector2(596.549988F, -59.7779999F)); + builder.AddLine(new Vector2(580.682983F, -12.177F)); + builder.AddLine(new Vector2(588.185974F, -12.177F)); + builder.AddLine(new Vector2(572.565002F, -59.7779999F)); + builder.AddLine(new Vector2(552.146973F, -59.7779999F)); + builder.AddLine(new Vector2(576.747009F, 0.368999988F)); + builder.AddLine(new Vector2(591.383972F, 0.368999988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 5 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0047() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(539.539978F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(543.434021F, -2.84899998F), new Vector2(546.981018F, -5.329F), new Vector2(550.179016F, -8.60999966F)); + builder.AddLine(new Vector2(538.002014F, -20.6639996F)); + builder.AddCubicBezier(new Vector2(536.606995F, -19.1049995F), new Vector2(534.947021F, -17.9160004F), new Vector2(533.020996F, -17.0970001F)); + builder.AddCubicBezier(new Vector2(531.093018F, -16.2759991F), new Vector2(528.900024F, -15.8669996F), new Vector2(526.440002F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(523.896973F, -15.8669996F), new Vector2(521.559998F, -16.4599991F), new Vector2(519.429016F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(517.296021F, -18.8379993F), new Vector2(515.635986F, -20.4990005F), new Vector2(514.447998F, -22.632F)); + builder.AddCubicBezier(new Vector2(513.257996F, -24.7630005F), new Vector2(512.664001F, -27.2229996F), new Vector2(512.664001F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(512.664001F, -32.7179985F), new Vector2(513.257996F, -35.1170006F), new Vector2(514.447998F, -37.2080002F)); + builder.AddCubicBezier(new Vector2(515.635986F, -39.2989998F), new Vector2(517.276001F, -40.9379997F), new Vector2(519.367004F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(521.458008F, -43.3160019F), new Vector2(523.815002F, -43.9109993F), new Vector2(526.440002F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(528.817017F, -43.9109993F), new Vector2(530.929993F, -43.5419998F), new Vector2(532.775024F, -42.8040009F)); + builder.AddCubicBezier(new Vector2(534.619995F, -42.0660019F), new Vector2(536.237976F, -40.9169998F), new Vector2(537.632996F, -39.3600006F)); + builder.AddLine(new Vector2(549.809998F, -51.6599998F)); + builder.AddCubicBezier(new Vector2(546.775024F, -54.7750015F), new Vector2(543.310974F, -57.1329994F), new Vector2(539.416992F, -58.7319984F)); + builder.AddCubicBezier(new Vector2(535.520996F, -60.3310013F), new Vector2(531.195007F, -61.1310005F), new Vector2(526.440002F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(520.20697F, -61.1310005F), new Vector2(514.590027F, -59.7779999F), new Vector2(509.588989F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(504.585999F, -54.3660011F), new Vector2(500.649994F, -50.6549988F), new Vector2(497.781006F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(494.910004F, -41.2249985F), new Vector2(493.476013F, -35.8740005F), new Vector2(493.476013F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(493.476013F, -23.9850006F), new Vector2(494.890991F, -18.6539993F), new Vector2(497.720001F, -13.8990002F)); + builder.AddCubicBezier(new Vector2(500.549011F, -9.1420002F), new Vector2(504.463013F, -5.41200018F), new Vector2(509.466003F, -2.70600009F)); + builder.AddCubicBezier(new Vector2(514.46698F, 0F), new Vector2(520.083984F, 1.35300004F), new Vector2(526.317017F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(531.237F, 1.35300004F), new Vector2(535.643982F, 0.510999978F), new Vector2(539.539978F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 5 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0048() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(445.875F, 0F)); + builder.AddLine(new Vector2(445.875F, -59.7779999F)); + builder.AddLine(new Vector2(426.933014F, -59.7779999F)); + builder.AddLine(new Vector2(426.933014F, 0F)); + builder.AddLine(new Vector2(445.875F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(485.480988F, 0F)); + builder.AddLine(new Vector2(485.480988F, -38.2529984F)); + builder.AddCubicBezier(new Vector2(485.480988F, -42.3520012F), new Vector2(484.497009F, -46.1450005F), new Vector2(482.528992F, -49.6310005F)); + builder.AddCubicBezier(new Vector2(480.561005F, -53.1150017F), new Vector2(477.855011F, -55.882F), new Vector2(474.411011F, -57.9329987F)); + builder.AddCubicBezier(new Vector2(470.96701F, -59.9819984F), new Vector2(467.071014F, -61.0079994F), new Vector2(462.726013F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(458.132996F, -61.0079994F), new Vector2(454.013F, -60.0439987F), new Vector2(450.36499F, -58.118F)); + builder.AddCubicBezier(new Vector2(446.714996F, -56.1899986F), new Vector2(443.846008F, -53.4630013F), new Vector2(441.755005F, -49.9379997F)); + builder.AddCubicBezier(new Vector2(439.664001F, -46.4109993F), new Vector2(438.618011F, -42.3120003F), new Vector2(438.618011F, -37.6380005F)); + builder.AddLine(new Vector2(445.875F, -34.0709991F)); + builder.AddCubicBezier(new Vector2(445.875F, -36.1199989F), new Vector2(446.325012F, -37.9239998F), new Vector2(447.227997F, -39.4830017F)); + builder.AddCubicBezier(new Vector2(448.128998F, -41.0400009F), new Vector2(449.359009F, -42.2509995F), new Vector2(450.917999F, -43.1119995F)); + builder.AddCubicBezier(new Vector2(452.475006F, -43.9729996F), new Vector2(454.239014F, -44.4029999F), new Vector2(456.207001F, -44.4029999F)); + builder.AddCubicBezier(new Vector2(459.158997F, -44.4029999F), new Vector2(461.618988F, -43.4379997F), new Vector2(463.587006F, -41.512001F)); + builder.AddCubicBezier(new Vector2(465.554993F, -39.5839996F), new Vector2(466.539001F, -37.1040001F), new Vector2(466.539001F, -34.0709991F)); + builder.AddLine(new Vector2(466.539001F, 0F)); + builder.AddLine(new Vector2(485.480988F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 5 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0049() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(402.947998F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(407.130005F, -2.84899998F), new Vector2(410.696991F, -5.45200014F), new Vector2(413.648987F, -8.97900009F)); + builder.AddLine(new Vector2(403.194F, -19.3110008F)); + builder.AddCubicBezier(new Vector2(401.389008F, -17.2600002F), new Vector2(399.298004F, -15.7229996F), new Vector2(396.92099F, -14.6990004F)); + builder.AddCubicBezier(new Vector2(394.541992F, -13.6730003F), new Vector2(391.917999F, -13.1610003F), new Vector2(389.049011F, -13.1610003F)); + builder.AddCubicBezier(new Vector2(385.851013F, -13.1610003F), new Vector2(383.084015F, -13.8380003F), new Vector2(380.747009F, -15.191F)); + builder.AddCubicBezier(new Vector2(378.410004F, -16.5440006F), new Vector2(376.605011F, -18.4899998F), new Vector2(375.334991F, -21.0330009F)); + builder.AddCubicBezier(new Vector2(374.062988F, -23.5739994F), new Vector2(373.428009F, -26.5680008F), new Vector2(373.428009F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(373.428009F, -33.4560013F), new Vector2(374.022003F, -36.4080009F), new Vector2(375.212006F, -38.868F)); + builder.AddCubicBezier(new Vector2(376.399994F, -41.3279991F), new Vector2(378.080994F, -43.2540016F), new Vector2(380.255005F, -44.6489983F)); + builder.AddCubicBezier(new Vector2(382.427002F, -46.0419998F), new Vector2(384.98999F, -46.7400017F), new Vector2(387.941986F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(390.64801F, -46.7400017F), new Vector2(392.963989F, -46.125F), new Vector2(394.891998F, -44.8950005F)); + builder.AddCubicBezier(new Vector2(396.817993F, -43.6650009F), new Vector2(398.273987F, -41.9220009F), new Vector2(399.257996F, -39.6679993F)); + builder.AddCubicBezier(new Vector2(400.242004F, -37.4119987F), new Vector2(400.773987F, -34.6030006F), new Vector2(400.856995F, -31.2420006F)); + builder.AddLine(new Vector2(408.975006F, -36.7770004F)); + builder.AddLine(new Vector2(365.678986F, -36.5309982F)); + builder.AddLine(new Vector2(365.678986F, -23.493F)); + builder.AddLine(new Vector2(417.092987F, -23.7390003F)); + builder.AddCubicBezier(new Vector2(417.502014F, -25.2150002F), new Vector2(417.769989F, -26.5459995F), new Vector2(417.893005F, -27.7360001F)); + builder.AddCubicBezier(new Vector2(418.015991F, -28.9239998F), new Vector2(418.076996F, -30.0930004F), new Vector2(418.076996F, -31.2420006F)); + builder.AddCubicBezier(new Vector2(418.076996F, -37.0629997F), new Vector2(416.764008F, -42.2290001F), new Vector2(414.140991F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(411.515991F, -51.2490005F), new Vector2(407.949005F, -54.7750015F), new Vector2(403.440002F, -57.3180008F)); + builder.AddCubicBezier(new Vector2(398.928986F, -59.8590012F), new Vector2(393.681F, -61.1310005F), new Vector2(387.696014F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(381.627014F, -61.1310005F), new Vector2(376.174011F, -59.7779999F), new Vector2(371.337006F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(366.497986F, -54.3660011F), new Vector2(362.684998F, -50.6549988F), new Vector2(359.89801F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(357.109009F, -41.2249985F), new Vector2(355.716003F, -35.9160004F), new Vector2(355.716003F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(355.716003F, -23.9430008F), new Vector2(357.149994F, -18.5310001F), new Vector2(360.020996F, -13.776F)); + builder.AddCubicBezier(new Vector2(362.890015F, -9.01900005F), new Vector2(366.825989F, -5.30900002F), new Vector2(371.82901F, -2.64499998F)); + builder.AddCubicBezier(new Vector2(376.829987F, 0.0189999994F), new Vector2(382.570007F, 1.35300004F), new Vector2(389.049011F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(394.131989F, 1.35300004F), new Vector2(398.765991F, 0.510999978F), new Vector2(402.947998F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 5 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0050() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(346.368011F, -89.2979965F)); + builder.AddLine(new Vector2(327.425995F, -89.2979965F)); + builder.AddLine(new Vector2(327.425995F, -45.1409988F)); + builder.AddLine(new Vector2(330.623993F, -30.75F)); + builder.AddLine(new Vector2(327.795013F, -16.1130009F)); + builder.AddLine(new Vector2(327.795013F, 0F)); + builder.AddLine(new Vector2(346.368011F, 0F)); + builder.AddLine(new Vector2(346.368011F, -89.2979965F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(308.360992F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(306.309998F, -18.8379993F), new Vector2(304.733002F, -20.4990005F), new Vector2(303.626007F, -22.632F)); + builder.AddCubicBezier(new Vector2(302.519012F, -24.7630005F), new Vector2(301.964996F, -27.1830006F), new Vector2(301.964996F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(301.964996F, -32.5950012F), new Vector2(302.55899F, -34.9939995F), new Vector2(303.748993F, -37.0849991F)); + builder.AddCubicBezier(new Vector2(304.937012F, -39.1759987F), new Vector2(306.515991F, -40.8359985F), new Vector2(308.484009F, -42.0660019F)); + builder.AddCubicBezier(new Vector2(310.451996F, -43.2960014F), new Vector2(312.747009F, -43.9109993F), new Vector2(315.372009F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(317.994995F, -43.9109993F), new Vector2(320.291992F, -43.3160019F), new Vector2(322.26001F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(324.227997F, -40.9379997F), new Vector2(325.765991F, -39.2989998F), new Vector2(326.872986F, -37.2080002F)); + builder.AddCubicBezier(new Vector2(327.980011F, -35.1170006F), new Vector2(328.53299F, -32.7179985F), new Vector2(328.53299F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(328.53299F, -27.2229996F), new Vector2(327.980011F, -24.7630005F), new Vector2(326.872986F, -22.632F)); + builder.AddCubicBezier(new Vector2(325.765991F, -20.4990005F), new Vector2(324.227997F, -18.8379993F), new Vector2(322.26001F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(320.291992F, -16.4599991F), new Vector2(317.954987F, -15.8669996F), new Vector2(315.248993F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(312.705994F, -15.8669996F), new Vector2(310.410004F, -16.4599991F), new Vector2(308.360992F, -17.6499996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(322.997986F, -1.29200006F)); + builder.AddCubicBezier(new Vector2(326.359009F, -2.97199988F), new Vector2(329.105988F, -5.22800016F), new Vector2(331.239014F, -8.05700016F)); + builder.AddCubicBezier(new Vector2(333.369995F, -10.8859997F), new Vector2(334.600006F, -14.0620003F), new Vector2(334.928986F, -17.5890007F)); + builder.AddLine(new Vector2(334.928986F, -42.8040009F)); + builder.AddCubicBezier(new Vector2(334.600006F, -46.4109993F), new Vector2(333.369995F, -49.5890007F), new Vector2(331.239014F, -52.3370018F)); + builder.AddCubicBezier(new Vector2(329.105988F, -55.0830002F), new Vector2(326.359009F, -57.2140007F), new Vector2(322.997986F, -58.7319984F)); + builder.AddCubicBezier(new Vector2(319.63501F, -60.2480011F), new Vector2(315.945007F, -61.0079994F), new Vector2(311.928009F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(306.269989F, -61.0079994F), new Vector2(301.22699F, -59.6549988F), new Vector2(296.799011F, -56.9490013F)); + builder.AddCubicBezier(new Vector2(292.371002F, -54.243F), new Vector2(288.927002F, -50.5530014F), new Vector2(286.46701F, -45.8790016F)); + builder.AddCubicBezier(new Vector2(284.006989F, -41.2050018F), new Vector2(282.777008F, -35.8740005F), new Vector2(282.777008F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(282.777008F, -23.9020004F), new Vector2(284.006989F, -18.573F), new Vector2(286.46701F, -13.8990002F)); + builder.AddCubicBezier(new Vector2(288.927002F, -9.22500038F), new Vector2(292.350006F, -5.53499985F), new Vector2(296.738007F, -2.829F)); + builder.AddCubicBezier(new Vector2(301.123993F, -0.123000003F), new Vector2(306.187012F, 1.23000002F), new Vector2(311.928009F, 1.23000002F)); + builder.AddCubicBezier(new Vector2(315.945007F, 1.23000002F), new Vector2(319.63501F, 0.388000011F), new Vector2(322.997986F, -1.29200006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 5 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0051() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(271.153992F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(272.998993F, -73.0199966F), new Vector2(273.92099F, -75.4800034F), new Vector2(273.92099F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(273.92099F, -81.3030014F), new Vector2(272.998993F, -83.7630005F), new Vector2(271.153992F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(269.30899F, -87.6989975F), new Vector2(266.868011F, -88.6829987F), new Vector2(263.834991F, -88.6829987F)); + builder.AddCubicBezier(new Vector2(260.963989F, -88.6829987F), new Vector2(258.54599F, -87.6989975F), new Vector2(256.578003F, -85.7310028F)); + builder.AddCubicBezier(new Vector2(254.610001F, -83.7630005F), new Vector2(253.626007F, -81.3030014F), new Vector2(253.626007F, -78.3509979F)); + builder.AddCubicBezier(new Vector2(253.626007F, -75.4800034F), new Vector2(254.610001F, -73.0199966F), new Vector2(256.578003F, -70.9710007F)); + builder.AddCubicBezier(new Vector2(258.54599F, -68.9199982F), new Vector2(260.963989F, -67.8960037F), new Vector2(263.834991F, -67.8960037F)); + builder.AddCubicBezier(new Vector2(266.868011F, -67.8960037F), new Vector2(269.30899F, -68.9199982F), new Vector2(271.153992F, -70.9710007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(273.306F, 0F)); + builder.AddLine(new Vector2(273.306F, -59.7779999F)); + builder.AddLine(new Vector2(254.363998F, -59.7779999F)); + builder.AddLine(new Vector2(254.363998F, 0F)); + builder.AddLine(new Vector2(273.306F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 5 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0052() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(237.574997F, -3.62800002F)); + builder.AddCubicBezier(new Vector2(241.960999F, -7.11199999F), new Vector2(244.154999F, -11.7659998F), new Vector2(244.154999F, -17.5890007F)); + builder.AddCubicBezier(new Vector2(244.154999F, -21.3600006F), new Vector2(243.457001F, -24.4160004F), new Vector2(242.063995F, -26.7530003F)); + builder.AddCubicBezier(new Vector2(240.669006F, -29.0900002F), new Vector2(238.865997F, -30.9750004F), new Vector2(236.651993F, -32.4109993F)); + builder.AddCubicBezier(new Vector2(234.438004F, -33.8450012F), new Vector2(232.100998F, -34.9519997F), new Vector2(229.641006F, -35.7319984F)); + builder.AddCubicBezier(new Vector2(227.181F, -36.5099983F), new Vector2(224.863007F, -37.1860008F), new Vector2(222.690994F, -37.7610016F)); + builder.AddCubicBezier(new Vector2(220.516998F, -38.3339996F), new Vector2(218.712997F, -38.9910011F), new Vector2(217.279007F, -39.7290001F)); + builder.AddCubicBezier(new Vector2(215.843002F, -40.4669991F), new Vector2(215.126999F, -41.4510002F), new Vector2(215.126999F, -42.6809998F)); + builder.AddCubicBezier(new Vector2(215.126999F, -43.7459984F), new Vector2(215.658997F, -44.6069984F), new Vector2(216.725998F, -45.2639999F)); + builder.AddCubicBezier(new Vector2(217.791F, -45.9189987F), new Vector2(219.389999F, -46.2480011F), new Vector2(221.522995F, -46.2480011F)); + builder.AddCubicBezier(new Vector2(223.737F, -46.2480011F), new Vector2(226.013F, -45.776001F), new Vector2(228.350006F, -44.8339996F)); + builder.AddCubicBezier(new Vector2(230.686996F, -43.8899994F), new Vector2(232.796997F, -42.3120003F), new Vector2(234.684006F, -40.0979996F)); + builder.AddLine(new Vector2(245.384995F, -51.0449982F)); + builder.AddCubicBezier(new Vector2(242.759995F, -54.4889984F), new Vector2(239.274994F, -57.0909996F), new Vector2(234.929993F, -58.8549995F)); + builder.AddCubicBezier(new Vector2(230.582993F, -60.6170006F), new Vector2(225.908997F, -61.5F), new Vector2(220.908005F, -61.5F)); + builder.AddCubicBezier(new Vector2(215.904999F, -61.5F), new Vector2(211.600006F, -60.6790009F), new Vector2(207.992996F, -59.0400009F)); + builder.AddCubicBezier(new Vector2(204.384003F, -57.3989983F), new Vector2(201.597F, -55.1660004F), new Vector2(199.628998F, -52.3370018F)); + builder.AddCubicBezier(new Vector2(197.660995F, -49.5079994F), new Vector2(196.677002F, -46.1650009F), new Vector2(196.677002F, -42.3120003F)); + builder.AddCubicBezier(new Vector2(196.677002F, -38.6220016F), new Vector2(197.373001F, -35.6279984F), new Vector2(198.768005F, -33.3330002F)); + builder.AddCubicBezier(new Vector2(200.160995F, -31.0359993F), new Vector2(201.966003F, -29.2320004F), new Vector2(204.179993F, -27.9209995F)); + builder.AddCubicBezier(new Vector2(206.393997F, -26.6079998F), new Vector2(208.731003F, -25.5629997F), new Vector2(211.190994F, -24.7849998F)); + builder.AddCubicBezier(new Vector2(213.651001F, -24.0049992F), new Vector2(216.007996F, -23.3080006F), new Vector2(218.264008F, -22.6930008F)); + builder.AddCubicBezier(new Vector2(220.518005F, -22.0779991F), new Vector2(222.341995F, -21.4209995F), new Vector2(223.737F, -20.7250004F)); + builder.AddCubicBezier(new Vector2(225.130005F, -20.0270004F), new Vector2(225.828003F, -18.9419994F), new Vector2(225.828003F, -17.4659996F)); + builder.AddCubicBezier(new Vector2(225.828003F, -16.2360001F), new Vector2(225.231995F, -15.2919998F), new Vector2(224.044006F, -14.6370001F)); + builder.AddCubicBezier(new Vector2(222.854004F, -13.9799995F), new Vector2(221.235001F, -13.6529999F), new Vector2(219.186005F, -13.6529999F)); + builder.AddCubicBezier(new Vector2(215.904999F, -13.6529999F), new Vector2(212.932007F, -14.2469997F), new Vector2(210.268005F, -15.4370003F)); + builder.AddCubicBezier(new Vector2(207.602005F, -16.625F), new Vector2(205.244995F, -18.2849998F), new Vector2(203.195999F, -20.4179993F)); + builder.AddLine(new Vector2(192.371994F, -9.59399986F)); + builder.AddCubicBezier(new Vector2(194.503006F, -7.38000011F), new Vector2(197.003998F, -5.43100023F), new Vector2(199.875F, -3.75099993F)); + builder.AddCubicBezier(new Vector2(202.744003F, -2.06900001F), new Vector2(205.901993F, -0.758000016F), new Vector2(209.345993F, 0.184F)); + builder.AddCubicBezier(new Vector2(212.789993F, 1.12600005F), new Vector2(216.274002F, 1.59899998F), new Vector2(219.800995F, 1.59899998F)); + builder.AddCubicBezier(new Vector2(227.261993F, 1.59899998F), new Vector2(233.186996F, -0.142000005F), new Vector2(237.574997F, -3.62800002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 5 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0053() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(173.921997F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(178.104004F, -2.84899998F), new Vector2(181.671005F, -5.45200014F), new Vector2(184.623001F, -8.97900009F)); + builder.AddLine(new Vector2(174.167999F, -19.3110008F)); + builder.AddCubicBezier(new Vector2(172.363007F, -17.2600002F), new Vector2(170.272003F, -15.7229996F), new Vector2(167.895004F, -14.6990004F)); + builder.AddCubicBezier(new Vector2(165.516006F, -13.6730003F), new Vector2(162.891998F, -13.1610003F), new Vector2(160.022995F, -13.1610003F)); + builder.AddCubicBezier(new Vector2(156.824997F, -13.1610003F), new Vector2(154.057999F, -13.8380003F), new Vector2(151.720993F, -15.191F)); + builder.AddCubicBezier(new Vector2(149.384003F, -16.5440006F), new Vector2(147.578995F, -18.4899998F), new Vector2(146.309006F, -21.0330009F)); + builder.AddCubicBezier(new Vector2(145.037003F, -23.5739994F), new Vector2(144.401993F, -26.5680008F), new Vector2(144.401993F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(144.401993F, -33.4560013F), new Vector2(144.996002F, -36.4080009F), new Vector2(146.186005F, -38.868F)); + builder.AddCubicBezier(new Vector2(147.373993F, -41.3279991F), new Vector2(149.054993F, -43.2540016F), new Vector2(151.229004F, -44.6489983F)); + builder.AddCubicBezier(new Vector2(153.401001F, -46.0419998F), new Vector2(155.964005F, -46.7400017F), new Vector2(158.916F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(161.621994F, -46.7400017F), new Vector2(163.938004F, -46.125F), new Vector2(165.865997F, -44.8950005F)); + builder.AddCubicBezier(new Vector2(167.792007F, -43.6650009F), new Vector2(169.248001F, -41.9220009F), new Vector2(170.231995F, -39.6679993F)); + builder.AddCubicBezier(new Vector2(171.216003F, -37.4119987F), new Vector2(171.748001F, -34.6030006F), new Vector2(171.830994F, -31.2420006F)); + builder.AddLine(new Vector2(179.949005F, -36.7770004F)); + builder.AddLine(new Vector2(136.653F, -36.5309982F)); + builder.AddLine(new Vector2(136.653F, -23.493F)); + builder.AddLine(new Vector2(188.067001F, -23.7390003F)); + builder.AddCubicBezier(new Vector2(188.475998F, -25.2150002F), new Vector2(188.744003F, -26.5459995F), new Vector2(188.867004F, -27.7360001F)); + builder.AddCubicBezier(new Vector2(188.990005F, -28.9239998F), new Vector2(189.050995F, -30.0930004F), new Vector2(189.050995F, -31.2420006F)); + builder.AddCubicBezier(new Vector2(189.050995F, -37.0629997F), new Vector2(187.738007F, -42.2290001F), new Vector2(185.115005F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(182.490005F, -51.2490005F), new Vector2(178.923004F, -54.7750015F), new Vector2(174.414001F, -57.3180008F)); + builder.AddCubicBezier(new Vector2(169.903F, -59.8590012F), new Vector2(164.654999F, -61.1310005F), new Vector2(158.669998F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(152.600998F, -61.1310005F), new Vector2(147.147995F, -59.7779999F), new Vector2(142.311005F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(137.472F, -54.3660011F), new Vector2(133.658997F, -50.6549988F), new Vector2(130.871994F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(128.082993F, -41.2249985F), new Vector2(126.690002F, -35.9160004F), new Vector2(126.690002F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(126.690002F, -23.9430008F), new Vector2(128.123993F, -18.5310001F), new Vector2(130.994995F, -13.776F)); + builder.AddCubicBezier(new Vector2(133.863998F, -9.01900005F), new Vector2(137.800003F, -5.30900002F), new Vector2(142.802994F, -2.64499998F)); + builder.AddCubicBezier(new Vector2(147.804001F, 0.0189999994F), new Vector2(153.544006F, 1.35300004F), new Vector2(160.022995F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(165.106003F, 1.35300004F), new Vector2(169.740005F, 0.510999978F), new Vector2(173.921997F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 5 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0054() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(101.414001F, -41.3899994F)); + builder.AddCubicBezier(new Vector2(103.259003F, -43.3160019F), new Vector2(105.779999F, -44.2799988F), new Vector2(108.977997F, -44.2799988F)); + builder.AddCubicBezier(new Vector2(110.535004F, -44.2799988F), new Vector2(111.93F, -44.0340004F), new Vector2(113.160004F, -43.5419998F)); + builder.AddCubicBezier(new Vector2(114.389999F, -43.0499992F), new Vector2(115.374001F, -42.3930016F), new Vector2(116.112F, -41.5740013F)); + builder.AddLine(new Vector2(127.305F, -55.8419991F)); + builder.AddCubicBezier(new Vector2(125.664001F, -57.5639992F), new Vector2(123.758003F, -58.855999F), new Vector2(121.585999F, -59.7169991F)); + builder.AddCubicBezier(new Vector2(119.412003F, -60.5779991F), new Vector2(116.889999F, -61.0079994F), new Vector2(114.021004F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(107.542F, -61.0079994F), new Vector2(102.438004F, -59.0800018F), new Vector2(98.7080002F, -55.2270012F)); + builder.AddCubicBezier(new Vector2(94.9759979F, -51.3720016F), new Vector2(92.3310013F, -45.9189987F), new Vector2(90.7740021F, -38.868F)); + builder.AddLine(new Vector2(98.6460037F, -32.7179985F)); + builder.AddCubicBezier(new Vector2(98.6460037F, -36.5709991F), new Vector2(99.5690002F, -39.4620018F), new Vector2(101.414001F, -41.3899994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(98.6460037F, 0F)); + builder.AddLine(new Vector2(98.6460037F, -59.7779999F)); + builder.AddLine(new Vector2(79.7040024F, -59.7779999F)); + builder.AddLine(new Vector2(79.7040024F, 0F)); + builder.AddLine(new Vector2(98.6460037F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 6 Outlines + // - - ShapeGroup: m + CanvasGeometry Geometry_0055() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(393.354004F, 0F)); + builder.AddLine(new Vector2(393.354004F, -37.1459999F)); + builder.AddCubicBezier(new Vector2(393.354004F, -42.1469994F), new Vector2(392.328003F, -46.4109993F), new Vector2(390.278992F, -49.9379997F)); + builder.AddCubicBezier(new Vector2(388.227997F, -53.4630013F), new Vector2(385.398987F, -56.1899986F), new Vector2(381.791992F, -58.118F)); + builder.AddCubicBezier(new Vector2(378.183014F, -60.0439987F), new Vector2(374.123993F, -61.0079994F), new Vector2(369.61499F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(364.94101F, -61.0079994F), new Vector2(360.71701F, -60.0239983F), new Vector2(356.946014F, -58.0559998F)); + builder.AddCubicBezier(new Vector2(353.173004F, -56.0880013F), new Vector2(350.181F, -53.2589989F), new Vector2(347.96701F, -49.5690002F)); + builder.AddCubicBezier(new Vector2(345.752991F, -45.8790016F), new Vector2(344.52301F, -41.4910011F), new Vector2(344.277008F, -36.4080009F)); + builder.AddLine(new Vector2(355.223999F, -34.9319992F)); + builder.AddCubicBezier(new Vector2(355.223999F, -36.9000015F), new Vector2(355.632996F, -38.5800018F), new Vector2(356.45401F, -39.9749985F)); + builder.AddCubicBezier(new Vector2(357.27301F, -41.368F), new Vector2(358.441986F, -42.4539986F), new Vector2(359.959991F, -43.2340012F)); + builder.AddCubicBezier(new Vector2(361.476013F, -44.012001F), new Vector2(363.135986F, -44.4029999F), new Vector2(364.94101F, -44.4029999F)); + builder.AddCubicBezier(new Vector2(367.563995F, -44.4029999F), new Vector2(369.799988F, -43.5620003F), new Vector2(371.644989F, -41.882F)); + builder.AddCubicBezier(new Vector2(373.48999F, -40.2000008F), new Vector2(374.411987F, -37.8839989F), new Vector2(374.411987F, -34.9319992F)); + builder.AddLine(new Vector2(374.411987F, 0F)); + builder.AddLine(new Vector2(393.354004F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(355.223999F, 0F)); + builder.AddLine(new Vector2(355.223999F, -38.2529984F)); + builder.AddCubicBezier(new Vector2(355.223999F, -42.9269981F), new Vector2(354.218994F, -46.9440002F), new Vector2(352.210999F, -50.3069992F)); + builder.AddCubicBezier(new Vector2(350.200989F, -53.6679993F), new Vector2(347.536987F, -56.2919998F), new Vector2(344.216003F, -58.1790009F)); + builder.AddCubicBezier(new Vector2(340.894989F, -60.0639992F), new Vector2(337.183014F, -61.0079994F), new Vector2(333.084015F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(328.572998F, -61.0079994F), new Vector2(324.575989F, -60.0859985F), new Vector2(321.09201F, -58.2410011F)); + builder.AddCubicBezier(new Vector2(317.605988F, -56.3959999F), new Vector2(314.819F, -53.7700005F), new Vector2(312.727997F, -50.368F)); + builder.AddCubicBezier(new Vector2(310.636993F, -46.9640007F), new Vector2(309.591003F, -42.9269981F), new Vector2(309.591003F, -38.2529984F)); + builder.AddLine(new Vector2(316.847992F, -34.9319992F)); + builder.AddCubicBezier(new Vector2(316.847992F, -36.9000015F), new Vector2(317.278992F, -38.5800018F), new Vector2(318.140015F, -39.9749985F)); + builder.AddCubicBezier(new Vector2(319.001007F, -41.368F), new Vector2(320.169006F, -42.4539986F), new Vector2(321.644989F, -43.2340012F)); + builder.AddCubicBezier(new Vector2(323.121002F, -44.012001F), new Vector2(324.800995F, -44.4029999F), new Vector2(326.687988F, -44.4029999F)); + builder.AddCubicBezier(new Vector2(329.394012F, -44.4029999F), new Vector2(331.670013F, -43.5620003F), new Vector2(333.515015F, -41.882F)); + builder.AddCubicBezier(new Vector2(335.359985F, -40.2000008F), new Vector2(336.282013F, -37.8839989F), new Vector2(336.282013F, -34.9319992F)); + builder.AddLine(new Vector2(336.282013F, 0F)); + builder.AddLine(new Vector2(355.223999F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(316.847992F, 0F)); + builder.AddLine(new Vector2(316.847992F, -59.7779999F)); + builder.AddLine(new Vector2(297.906006F, -59.7779999F)); + builder.AddLine(new Vector2(297.906006F, 0F)); + builder.AddLine(new Vector2(316.847992F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 6 Outlines + // - - ShapeGroup: m + CanvasGeometry Geometry_0056() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(273.92099F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(278.102997F, -2.84899998F), new Vector2(281.670013F, -5.45200014F), new Vector2(284.622009F, -8.97900009F)); + builder.AddLine(new Vector2(274.166992F, -19.3110008F)); + builder.AddCubicBezier(new Vector2(272.362F, -17.2600002F), new Vector2(270.270996F, -15.7229996F), new Vector2(267.894012F, -14.6990004F)); + builder.AddCubicBezier(new Vector2(265.515015F, -13.6730003F), new Vector2(262.890991F, -13.1610003F), new Vector2(260.022003F, -13.1610003F)); + builder.AddCubicBezier(new Vector2(256.824005F, -13.1610003F), new Vector2(254.056F, -13.8380003F), new Vector2(251.718994F, -15.191F)); + builder.AddCubicBezier(new Vector2(249.382004F, -16.5440006F), new Vector2(247.576996F, -18.4899998F), new Vector2(246.307007F, -21.0330009F)); + builder.AddCubicBezier(new Vector2(245.035004F, -23.5739994F), new Vector2(244.401001F, -26.5680008F), new Vector2(244.401001F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(244.401001F, -33.4560013F), new Vector2(244.994995F, -36.4080009F), new Vector2(246.184998F, -38.868F)); + builder.AddCubicBezier(new Vector2(247.373001F, -41.3279991F), new Vector2(249.054001F, -43.2540016F), new Vector2(251.227997F, -44.6489983F)); + builder.AddCubicBezier(new Vector2(253.399994F, -46.0419998F), new Vector2(255.962997F, -46.7400017F), new Vector2(258.915009F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(261.621002F, -46.7400017F), new Vector2(263.937012F, -46.125F), new Vector2(265.86499F, -44.8950005F)); + builder.AddCubicBezier(new Vector2(267.790985F, -43.6650009F), new Vector2(269.247009F, -41.9220009F), new Vector2(270.230988F, -39.6679993F)); + builder.AddCubicBezier(new Vector2(271.214996F, -37.4119987F), new Vector2(271.747009F, -34.6030006F), new Vector2(271.829987F, -31.2420006F)); + builder.AddLine(new Vector2(279.947998F, -36.7770004F)); + builder.AddLine(new Vector2(236.651993F, -36.5309982F)); + builder.AddLine(new Vector2(236.651993F, -23.493F)); + builder.AddLine(new Vector2(288.06601F, -23.7390003F)); + builder.AddCubicBezier(new Vector2(288.475006F, -25.2150002F), new Vector2(288.743011F, -26.5459995F), new Vector2(288.865997F, -27.7360001F)); + builder.AddCubicBezier(new Vector2(288.989014F, -28.9239998F), new Vector2(289.049988F, -30.0930004F), new Vector2(289.049988F, -31.2420006F)); + builder.AddCubicBezier(new Vector2(289.049988F, -37.0629997F), new Vector2(287.737F, -42.2290001F), new Vector2(285.114014F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(282.489014F, -51.2490005F), new Vector2(278.921997F, -54.7750015F), new Vector2(274.412994F, -57.3180008F)); + builder.AddCubicBezier(new Vector2(269.902008F, -59.8590012F), new Vector2(264.653992F, -61.1310005F), new Vector2(258.669006F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(252.600006F, -61.1310005F), new Vector2(247.147003F, -59.7779999F), new Vector2(242.309998F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(237.470993F, -54.3660011F), new Vector2(233.658005F, -50.6549988F), new Vector2(230.871002F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(228.082001F, -41.2249985F), new Vector2(226.688995F, -35.9160004F), new Vector2(226.688995F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(226.688995F, -23.9430008F), new Vector2(228.123001F, -18.5310001F), new Vector2(230.994003F, -13.776F)); + builder.AddCubicBezier(new Vector2(233.863007F, -9.01900005F), new Vector2(237.798996F, -5.30900002F), new Vector2(242.802002F, -2.64499998F)); + builder.AddCubicBezier(new Vector2(247.802994F, 0.0189999994F), new Vector2(253.542999F, 1.35300004F), new Vector2(260.022003F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(265.105011F, 1.35300004F), new Vector2(269.739014F, 0.510999978F), new Vector2(273.92099F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 6 Outlines + // - - ShapeGroup: m + CanvasGeometry Geometry_0057() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(223.613998F, -43.6650009F)); + builder.AddLine(new Vector2(223.613998F, -59.7779999F)); + builder.AddLine(new Vector2(177.735001F, -59.7779999F)); + builder.AddLine(new Vector2(177.735001F, -43.6650009F)); + builder.AddLine(new Vector2(223.613998F, -43.6650009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(210.084F, 0F)); + builder.AddLine(new Vector2(210.084F, -84.5009995F)); + builder.AddLine(new Vector2(191.141998F, -84.5009995F)); + builder.AddLine(new Vector2(191.141998F, 0F)); + builder.AddLine(new Vector2(210.084F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 6 Outlines + // - - ShapeGroup: m + CanvasGeometry Geometry_0058() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(165.988998F, -3.62800002F)); + builder.AddCubicBezier(new Vector2(170.375F, -7.11199999F), new Vector2(172.569F, -11.7659998F), new Vector2(172.569F, -17.5890007F)); + builder.AddCubicBezier(new Vector2(172.569F, -21.3600006F), new Vector2(171.871002F, -24.4160004F), new Vector2(170.477997F, -26.7530003F)); + builder.AddCubicBezier(new Vector2(169.082993F, -29.0900002F), new Vector2(167.279999F, -30.9750004F), new Vector2(165.065994F, -32.4109993F)); + builder.AddCubicBezier(new Vector2(162.852005F, -33.8450012F), new Vector2(160.514999F, -34.9519997F), new Vector2(158.054993F, -35.7319984F)); + builder.AddCubicBezier(new Vector2(155.595001F, -36.5099983F), new Vector2(153.276993F, -37.1860008F), new Vector2(151.104996F, -37.7610016F)); + builder.AddCubicBezier(new Vector2(148.931F, -38.3339996F), new Vector2(147.126999F, -38.9910011F), new Vector2(145.692993F, -39.7290001F)); + builder.AddCubicBezier(new Vector2(144.257004F, -40.4669991F), new Vector2(143.541F, -41.4510002F), new Vector2(143.541F, -42.6809998F)); + builder.AddCubicBezier(new Vector2(143.541F, -43.7459984F), new Vector2(144.072998F, -44.6069984F), new Vector2(145.139999F, -45.2639999F)); + builder.AddCubicBezier(new Vector2(146.205002F, -45.9189987F), new Vector2(147.804001F, -46.2480011F), new Vector2(149.936996F, -46.2480011F)); + builder.AddCubicBezier(new Vector2(152.151001F, -46.2480011F), new Vector2(154.427002F, -45.776001F), new Vector2(156.764008F, -44.8339996F)); + builder.AddCubicBezier(new Vector2(159.100998F, -43.8899994F), new Vector2(161.210999F, -42.3120003F), new Vector2(163.098007F, -40.0979996F)); + builder.AddLine(new Vector2(173.798996F, -51.0449982F)); + builder.AddCubicBezier(new Vector2(171.173996F, -54.4889984F), new Vector2(167.688995F, -57.0909996F), new Vector2(163.343994F, -58.8549995F)); + builder.AddCubicBezier(new Vector2(158.996994F, -60.6170006F), new Vector2(154.322998F, -61.5F), new Vector2(149.322006F, -61.5F)); + builder.AddCubicBezier(new Vector2(144.319F, -61.5F), new Vector2(140.014008F, -60.6790009F), new Vector2(136.406998F, -59.0400009F)); + builder.AddCubicBezier(new Vector2(132.798004F, -57.3989983F), new Vector2(130.011002F, -55.1660004F), new Vector2(128.042999F, -52.3370018F)); + builder.AddCubicBezier(new Vector2(126.074997F, -49.5079994F), new Vector2(125.091003F, -46.1650009F), new Vector2(125.091003F, -42.3120003F)); + builder.AddCubicBezier(new Vector2(125.091003F, -38.6220016F), new Vector2(125.787003F, -35.6279984F), new Vector2(127.181999F, -33.3330002F)); + builder.AddCubicBezier(new Vector2(128.574997F, -31.0359993F), new Vector2(130.380005F, -29.2320004F), new Vector2(132.593994F, -27.9209995F)); + builder.AddCubicBezier(new Vector2(134.807999F, -26.6079998F), new Vector2(137.145004F, -25.5629997F), new Vector2(139.604996F, -24.7849998F)); + builder.AddCubicBezier(new Vector2(142.065002F, -24.0049992F), new Vector2(144.421997F, -23.3080006F), new Vector2(146.677994F, -22.6930008F)); + builder.AddCubicBezier(new Vector2(148.932007F, -22.0779991F), new Vector2(150.755997F, -21.4209995F), new Vector2(152.151001F, -20.7250004F)); + builder.AddCubicBezier(new Vector2(153.544006F, -20.0270004F), new Vector2(154.242004F, -18.9419994F), new Vector2(154.242004F, -17.4659996F)); + builder.AddCubicBezier(new Vector2(154.242004F, -16.2360001F), new Vector2(153.645996F, -15.2919998F), new Vector2(152.457993F, -14.6370001F)); + builder.AddCubicBezier(new Vector2(151.268005F, -13.9799995F), new Vector2(149.649002F, -13.6529999F), new Vector2(147.600006F, -13.6529999F)); + builder.AddCubicBezier(new Vector2(144.319F, -13.6529999F), new Vector2(141.345993F, -14.2469997F), new Vector2(138.682007F, -15.4370003F)); + builder.AddCubicBezier(new Vector2(136.016006F, -16.625F), new Vector2(133.658997F, -18.2849998F), new Vector2(131.610001F, -20.4179993F)); + builder.AddLine(new Vector2(120.786003F, -9.59399986F)); + builder.AddCubicBezier(new Vector2(122.917F, -7.38000011F), new Vector2(125.417999F, -5.43100023F), new Vector2(128.289001F, -3.75099993F)); + builder.AddCubicBezier(new Vector2(131.158005F, -2.06900001F), new Vector2(134.315994F, -0.758000016F), new Vector2(137.759995F, 0.184F)); + builder.AddCubicBezier(new Vector2(141.203995F, 1.12600005F), new Vector2(144.688004F, 1.59899998F), new Vector2(148.214996F, 1.59899998F)); + builder.AddCubicBezier(new Vector2(155.675995F, 1.59899998F), new Vector2(161.600998F, -0.142000005F), new Vector2(165.988998F, -3.62800002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 6 Outlines + // - - ShapeGroup: m + CanvasGeometry Geometry_0059() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(85.3619995F, 25.2150002F)); + builder.AddLine(new Vector2(95.9400024F, 0.368999988F)); + builder.AddLine(new Vector2(83.8860016F, -13.6529999F)); + builder.AddLine(new Vector2(65.9280014F, 25.2150002F)); + builder.AddLine(new Vector2(85.3619995F, 25.2150002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(95.9400024F, 0.368999988F)); + builder.AddLine(new Vector2(121.524002F, -59.7779999F)); + builder.AddLine(new Vector2(101.106003F, -59.7779999F)); + builder.AddLine(new Vector2(85.2389984F, -12.177F)); + builder.AddLine(new Vector2(92.7419968F, -12.177F)); + builder.AddLine(new Vector2(77.1210022F, -59.7779999F)); + builder.AddLine(new Vector2(56.7029991F, -59.7779999F)); + builder.AddLine(new Vector2(81.3030014F, 0.368999988F)); + builder.AddLine(new Vector2(95.9400024F, 0.368999988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 6 Outlines + // - - ShapeGroup: m + CanvasGeometry Geometry_0060() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(46.1870003F, -3.62800002F)); + builder.AddCubicBezier(new Vector2(50.5730019F, -7.11199999F), new Vector2(52.7669983F, -11.7659998F), new Vector2(52.7669983F, -17.5890007F)); + builder.AddCubicBezier(new Vector2(52.7669983F, -21.3600006F), new Vector2(52.0690002F, -24.4160004F), new Vector2(50.6759987F, -26.7530003F)); + builder.AddCubicBezier(new Vector2(49.2809982F, -29.0900002F), new Vector2(47.4780006F, -30.9750004F), new Vector2(45.2639999F, -32.4109993F)); + builder.AddCubicBezier(new Vector2(43.0499992F, -33.8450012F), new Vector2(40.7130013F, -34.9519997F), new Vector2(38.2529984F, -35.7319984F)); + builder.AddCubicBezier(new Vector2(35.7929993F, -36.5099983F), new Vector2(33.4749985F, -37.1860008F), new Vector2(31.3029995F, -37.7610016F)); + builder.AddCubicBezier(new Vector2(29.1289997F, -38.3339996F), new Vector2(27.3260002F, -38.9910011F), new Vector2(25.8920002F, -39.7290001F)); + builder.AddCubicBezier(new Vector2(24.4559994F, -40.4669991F), new Vector2(23.7390003F, -41.4510002F), new Vector2(23.7390003F, -42.6809998F)); + builder.AddCubicBezier(new Vector2(23.7390003F, -43.7459984F), new Vector2(24.2709999F, -44.6069984F), new Vector2(25.3379993F, -45.2639999F)); + builder.AddCubicBezier(new Vector2(26.4029999F, -45.9189987F), new Vector2(28.0020008F, -46.2480011F), new Vector2(30.1350002F, -46.2480011F)); + builder.AddCubicBezier(new Vector2(32.348999F, -46.2480011F), new Vector2(34.625F, -45.776001F), new Vector2(36.9620018F, -44.8339996F)); + builder.AddCubicBezier(new Vector2(39.2989998F, -43.8899994F), new Vector2(41.4090004F, -42.3120003F), new Vector2(43.2960014F, -40.0979996F)); + builder.AddLine(new Vector2(53.9970016F, -51.0449982F)); + builder.AddCubicBezier(new Vector2(51.3720016F, -54.4889984F), new Vector2(47.887001F, -57.0909996F), new Vector2(43.5419998F, -58.8549995F)); + builder.AddCubicBezier(new Vector2(39.1949997F, -60.6170006F), new Vector2(34.5209999F, -61.5F), new Vector2(29.5200005F, -61.5F)); + builder.AddCubicBezier(new Vector2(24.5170002F, -61.5F), new Vector2(20.2119999F, -60.6790009F), new Vector2(16.6049995F, -59.0400009F)); + builder.AddCubicBezier(new Vector2(12.9960003F, -57.3989983F), new Vector2(10.2089996F, -55.1660004F), new Vector2(8.24100018F, -52.3370018F)); + builder.AddCubicBezier(new Vector2(6.27299976F, -49.5079994F), new Vector2(5.28900003F, -46.1650009F), new Vector2(5.28900003F, -42.3120003F)); + builder.AddCubicBezier(new Vector2(5.28900003F, -38.6220016F), new Vector2(5.98500013F, -35.6279984F), new Vector2(7.38000011F, -33.3330002F)); + builder.AddCubicBezier(new Vector2(8.77299976F, -31.0359993F), new Vector2(10.5780001F, -29.2320004F), new Vector2(12.7919998F, -27.9209995F)); + builder.AddCubicBezier(new Vector2(15.0059996F, -26.6079998F), new Vector2(17.3430004F, -25.5629997F), new Vector2(19.8029995F, -24.7849998F)); + builder.AddCubicBezier(new Vector2(22.2630005F, -24.0049992F), new Vector2(24.6200008F, -23.3080006F), new Vector2(26.8759995F, -22.6930008F)); + builder.AddCubicBezier(new Vector2(29.1299992F, -22.0779991F), new Vector2(30.9540005F, -21.4209995F), new Vector2(32.348999F, -20.7250004F)); + builder.AddCubicBezier(new Vector2(33.7420006F, -20.0270004F), new Vector2(34.4399986F, -18.9419994F), new Vector2(34.4399986F, -17.4659996F)); + builder.AddCubicBezier(new Vector2(34.4399986F, -16.2360001F), new Vector2(33.8450012F, -15.2919998F), new Vector2(32.6570015F, -14.6370001F)); + builder.AddCubicBezier(new Vector2(31.4669991F, -13.9799995F), new Vector2(29.8470001F, -13.6529999F), new Vector2(27.7980003F, -13.6529999F)); + builder.AddCubicBezier(new Vector2(24.5170002F, -13.6529999F), new Vector2(21.5450001F, -14.2469997F), new Vector2(18.8810005F, -15.4370003F)); + builder.AddCubicBezier(new Vector2(16.2150002F, -16.625F), new Vector2(13.8570004F, -18.2849998F), new Vector2(11.8079996F, -20.4179993F)); + builder.AddLine(new Vector2(0.984000027F, -9.59399986F)); + builder.AddCubicBezier(new Vector2(3.11500001F, -7.38000011F), new Vector2(5.61600018F, -5.43100023F), new Vector2(8.48700047F, -3.75099993F)); + builder.AddCubicBezier(new Vector2(11.3559999F, -2.06900001F), new Vector2(14.5139999F, -0.758000016F), new Vector2(17.9580002F, 0.184F)); + builder.AddCubicBezier(new Vector2(21.4020004F, 1.12600005F), new Vector2(24.8859997F, 1.59899998F), new Vector2(28.4130001F, 1.59899998F)); + builder.AddCubicBezier(new Vector2(35.8740005F, 1.59899998F), new Vector2(41.7989998F, -0.142000005F), new Vector2(46.1870003F, -3.62800002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 7 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0061() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(593.843994F, 25.2150002F)); + builder.AddLine(new Vector2(604.421997F, 0.368999988F)); + builder.AddLine(new Vector2(592.367981F, -13.6529999F)); + builder.AddLine(new Vector2(574.409973F, 25.2150002F)); + builder.AddLine(new Vector2(593.843994F, 25.2150002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(604.421997F, 0.368999988F)); + builder.AddLine(new Vector2(630.005981F, -59.7779999F)); + builder.AddLine(new Vector2(609.588013F, -59.7779999F)); + builder.AddLine(new Vector2(593.721008F, -12.177F)); + builder.AddLine(new Vector2(601.223999F, -12.177F)); + builder.AddLine(new Vector2(585.603027F, -59.7779999F)); + builder.AddLine(new Vector2(565.184998F, -59.7779999F)); + builder.AddLine(new Vector2(589.784973F, 0.368999988F)); + builder.AddLine(new Vector2(604.421997F, 0.368999988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 7 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0062() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(552.578003F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(556.471985F, -2.84899998F), new Vector2(560.018982F, -5.329F), new Vector2(563.21698F, -8.60999966F)); + builder.AddLine(new Vector2(551.039978F, -20.6639996F)); + builder.AddCubicBezier(new Vector2(549.64502F, -19.1049995F), new Vector2(547.984985F, -17.9160004F), new Vector2(546.059021F, -17.0970001F)); + builder.AddCubicBezier(new Vector2(544.130981F, -16.2759991F), new Vector2(541.937988F, -15.8669996F), new Vector2(539.478027F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(536.934998F, -15.8669996F), new Vector2(534.598022F, -16.4599991F), new Vector2(532.46698F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(530.333984F, -18.8379993F), new Vector2(528.674011F, -20.4990005F), new Vector2(527.486023F, -22.632F)); + builder.AddCubicBezier(new Vector2(526.296021F, -24.7630005F), new Vector2(525.702026F, -27.2229996F), new Vector2(525.702026F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(525.702026F, -32.7179985F), new Vector2(526.296021F, -35.1170006F), new Vector2(527.486023F, -37.2080002F)); + builder.AddCubicBezier(new Vector2(528.674011F, -39.2989998F), new Vector2(530.315002F, -40.9379997F), new Vector2(532.406006F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(534.497009F, -43.3160019F), new Vector2(536.853027F, -43.9109993F), new Vector2(539.478027F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(541.85498F, -43.9109993F), new Vector2(543.96698F, -43.5419998F), new Vector2(545.812012F, -42.8040009F)); + builder.AddCubicBezier(new Vector2(547.656982F, -42.0660019F), new Vector2(549.276001F, -40.9169998F), new Vector2(550.671021F, -39.3600006F)); + builder.AddLine(new Vector2(562.848022F, -51.6599998F)); + builder.AddCubicBezier(new Vector2(559.812988F, -54.7750015F), new Vector2(556.348999F, -57.1329994F), new Vector2(552.455017F, -58.7319984F)); + builder.AddCubicBezier(new Vector2(548.559021F, -60.3310013F), new Vector2(544.232971F, -61.1310005F), new Vector2(539.478027F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(533.244995F, -61.1310005F), new Vector2(527.627991F, -59.7779999F), new Vector2(522.627014F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(517.624023F, -54.3660011F), new Vector2(513.687988F, -50.6549988F), new Vector2(510.819F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(507.947998F, -41.2249985F), new Vector2(506.514008F, -35.8740005F), new Vector2(506.514008F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(506.514008F, -23.9850006F), new Vector2(507.928986F, -18.6539993F), new Vector2(510.757996F, -13.8990002F)); + builder.AddCubicBezier(new Vector2(513.586975F, -9.1420002F), new Vector2(517.500977F, -5.41200018F), new Vector2(522.504028F, -2.70600009F)); + builder.AddCubicBezier(new Vector2(527.505005F, 0F), new Vector2(533.122009F, 1.35300004F), new Vector2(539.35498F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(544.275024F, 1.35300004F), new Vector2(548.682007F, 0.510999978F), new Vector2(552.578003F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 7 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0063() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(497.165985F, 0F)); + builder.AddLine(new Vector2(497.165985F, -59.7779999F)); + builder.AddLine(new Vector2(478.592987F, -59.7779999F)); + builder.AddLine(new Vector2(478.592987F, -45.1409988F)); + builder.AddLine(new Vector2(481.421997F, -30.75F)); + builder.AddLine(new Vector2(478.592987F, -16.1130009F)); + builder.AddLine(new Vector2(478.592987F, 0F)); + builder.AddLine(new Vector2(497.165985F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(459.221008F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(457.210999F, -18.8379993F), new Vector2(455.612F, -20.4990005F), new Vector2(454.424011F, -22.632F)); + builder.AddCubicBezier(new Vector2(453.234009F, -24.7630005F), new Vector2(452.640015F, -27.1830006F), new Vector2(452.640015F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(452.640015F, -32.5950012F), new Vector2(453.234009F, -35.0130005F), new Vector2(454.424011F, -37.1459999F)); + builder.AddCubicBezier(new Vector2(455.612F, -39.2770004F), new Vector2(457.210999F, -40.9379997F), new Vector2(459.221008F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(461.229004F, -43.3160019F), new Vector2(463.503998F, -43.9109993F), new Vector2(466.046997F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(468.670013F, -43.9109993F), new Vector2(471.006989F, -43.3160019F), new Vector2(473.058014F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(475.106995F, -40.9379997F), new Vector2(476.665009F, -39.2989998F), new Vector2(477.731995F, -37.2080002F)); + builder.AddCubicBezier(new Vector2(478.796997F, -35.1170006F), new Vector2(479.330994F, -32.7179985F), new Vector2(479.330994F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(479.330994F, -25.8299999F), new Vector2(478.121002F, -22.4260006F), new Vector2(475.703003F, -19.8029995F)); + builder.AddCubicBezier(new Vector2(473.28299F, -17.1779995F), new Vector2(470.063995F, -15.8669996F), new Vector2(466.046997F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(463.503998F, -15.8669996F), new Vector2(461.229004F, -16.4599991F), new Vector2(459.221008F, -17.6499996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(473.119995F, -1.10699999F)); + builder.AddCubicBezier(new Vector2(476.358002F, -2.66400003F), new Vector2(478.981995F, -4.81599998F), new Vector2(480.992004F, -7.56400013F)); + builder.AddCubicBezier(new Vector2(483F, -10.3100004F), new Vector2(484.127991F, -13.4469995F), new Vector2(484.373993F, -16.9740009F)); + builder.AddLine(new Vector2(484.373993F, -42.8040009F)); + builder.AddCubicBezier(new Vector2(484.127991F, -46.3289986F), new Vector2(482.979004F, -49.4659996F), new Vector2(480.929993F, -52.2140007F)); + builder.AddCubicBezier(new Vector2(478.878998F, -54.9599991F), new Vector2(476.234985F, -57.1119995F), new Vector2(472.997009F, -58.6710014F)); + builder.AddCubicBezier(new Vector2(469.756989F, -60.2280006F), new Vector2(466.127991F, -61.0079994F), new Vector2(462.110992F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(456.615997F, -61.0079994F), new Vector2(451.717987F, -59.6739998F), new Vector2(447.412994F, -57.0099983F)); + builder.AddCubicBezier(new Vector2(443.108002F, -54.3440018F), new Vector2(439.70401F, -50.6549988F), new Vector2(437.20401F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(434.701996F, -41.2249985F), new Vector2(433.451996F, -35.8740005F), new Vector2(433.451996F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(433.451996F, -23.9020004F), new Vector2(434.701996F, -18.5919991F), new Vector2(437.20401F, -13.96F)); + builder.AddCubicBezier(new Vector2(439.70401F, -9.32600021F), new Vector2(443.127014F, -5.63700008F), new Vector2(447.473999F, -2.89100003F)); + builder.AddCubicBezier(new Vector2(451.819F, -0.143000007F), new Vector2(456.699005F, 1.23000002F), new Vector2(462.110992F, 1.23000002F)); + builder.AddCubicBezier(new Vector2(466.209991F, 1.23000002F), new Vector2(469.880005F, 0.449999988F), new Vector2(473.119995F, -1.10699999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 7 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0064() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(408.053009F, -41.3899994F)); + builder.AddCubicBezier(new Vector2(409.89801F, -43.3160019F), new Vector2(412.419006F, -44.2799988F), new Vector2(415.617004F, -44.2799988F)); + builder.AddCubicBezier(new Vector2(417.174011F, -44.2799988F), new Vector2(418.569F, -44.0340004F), new Vector2(419.799011F, -43.5419998F)); + builder.AddCubicBezier(new Vector2(421.028992F, -43.0499992F), new Vector2(422.013F, -42.3930016F), new Vector2(422.751007F, -41.5740013F)); + builder.AddLine(new Vector2(433.944F, -55.8419991F)); + builder.AddCubicBezier(new Vector2(432.303009F, -57.5639992F), new Vector2(430.397003F, -58.855999F), new Vector2(428.225006F, -59.7169991F)); + builder.AddCubicBezier(new Vector2(426.050995F, -60.5779991F), new Vector2(423.528992F, -61.0079994F), new Vector2(420.660004F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(414.181F, -61.0079994F), new Vector2(409.075989F, -59.0800018F), new Vector2(405.346008F, -55.2270012F)); + builder.AddCubicBezier(new Vector2(401.614014F, -51.3720016F), new Vector2(398.970001F, -45.9189987F), new Vector2(397.412994F, -38.868F)); + builder.AddLine(new Vector2(405.285004F, -32.7179985F)); + builder.AddCubicBezier(new Vector2(405.285004F, -36.5709991F), new Vector2(406.208008F, -39.4620018F), new Vector2(408.053009F, -41.3899994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(405.285004F, 0F)); + builder.AddLine(new Vector2(405.285004F, -59.7779999F)); + builder.AddLine(new Vector2(386.342987F, -59.7779999F)); + builder.AddLine(new Vector2(386.342987F, 0F)); + builder.AddLine(new Vector2(405.285004F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 7 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0065() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(367.585999F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(371.480011F, -2.84899998F), new Vector2(375.027008F, -5.329F), new Vector2(378.225006F, -8.60999966F)); + builder.AddLine(new Vector2(366.048004F, -20.6639996F)); + builder.AddCubicBezier(new Vector2(364.653015F, -19.1049995F), new Vector2(362.992004F, -17.9160004F), new Vector2(361.06601F, -17.0970001F)); + builder.AddCubicBezier(new Vector2(359.138F, -16.2759991F), new Vector2(356.946014F, -15.8669996F), new Vector2(354.485992F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(351.942993F, -15.8669996F), new Vector2(349.605988F, -16.4599991F), new Vector2(347.475006F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(345.34201F, -18.8379993F), new Vector2(343.681F, -20.4990005F), new Vector2(342.493011F, -22.632F)); + builder.AddCubicBezier(new Vector2(341.303009F, -24.7630005F), new Vector2(340.709991F, -27.2229996F), new Vector2(340.709991F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(340.709991F, -32.7179985F), new Vector2(341.303009F, -35.1170006F), new Vector2(342.493011F, -37.2080002F)); + builder.AddCubicBezier(new Vector2(343.681F, -39.2989998F), new Vector2(345.322998F, -40.9379997F), new Vector2(347.414001F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(349.505005F, -43.3160019F), new Vector2(351.860992F, -43.9109993F), new Vector2(354.485992F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(356.863007F, -43.9109993F), new Vector2(358.976013F, -43.5419998F), new Vector2(360.821014F, -42.8040009F)); + builder.AddCubicBezier(new Vector2(362.665985F, -42.0660019F), new Vector2(364.283997F, -40.9169998F), new Vector2(365.678986F, -39.3600006F)); + builder.AddLine(new Vector2(377.855988F, -51.6599998F)); + builder.AddCubicBezier(new Vector2(374.821014F, -54.7750015F), new Vector2(371.356995F, -57.1329994F), new Vector2(367.463013F, -58.7319984F)); + builder.AddCubicBezier(new Vector2(363.566986F, -60.3310013F), new Vector2(359.240997F, -61.1310005F), new Vector2(354.485992F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(348.252991F, -61.1310005F), new Vector2(342.635986F, -59.7779999F), new Vector2(337.63501F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(332.631989F, -54.3660011F), new Vector2(328.696014F, -50.6549988F), new Vector2(325.826996F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(322.955994F, -41.2249985F), new Vector2(321.522003F, -35.8740005F), new Vector2(321.522003F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(321.522003F, -23.9850006F), new Vector2(322.937012F, -18.6539993F), new Vector2(325.765991F, -13.8990002F)); + builder.AddCubicBezier(new Vector2(328.595001F, -9.1420002F), new Vector2(332.509003F, -5.41200018F), new Vector2(337.511993F, -2.70600009F)); + builder.AddCubicBezier(new Vector2(342.513F, 0F), new Vector2(348.130005F, 1.35300004F), new Vector2(354.363007F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(359.28299F, 1.35300004F), new Vector2(363.690002F, 0.510999978F), new Vector2(367.585999F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 7 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0066() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(276.381012F, -17.5890007F)); + builder.AddCubicBezier(new Vector2(274.329987F, -18.7360001F), new Vector2(272.730988F, -20.3959999F), new Vector2(271.584015F, -22.5699997F)); + builder.AddCubicBezier(new Vector2(270.434998F, -24.7420006F), new Vector2(269.862F, -27.2229996F), new Vector2(269.862F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(269.862F, -32.6349983F), new Vector2(270.434998F, -35.0130005F), new Vector2(271.584015F, -37.1459999F)); + builder.AddCubicBezier(new Vector2(272.730988F, -39.2770004F), new Vector2(274.329987F, -40.9379997F), new Vector2(276.381012F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(278.429993F, -43.3160019F), new Vector2(280.766998F, -43.9109993F), new Vector2(283.391998F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(286.015015F, -43.9109993F), new Vector2(288.332001F, -43.3160019F), new Vector2(290.34201F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(292.350006F, -40.9379997F), new Vector2(293.928009F, -39.2989998F), new Vector2(295.076996F, -37.2080002F)); + builder.AddCubicBezier(new Vector2(296.223999F, -35.1170006F), new Vector2(296.799011F, -32.7179985F), new Vector2(296.799011F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(296.799011F, -27.2229996F), new Vector2(296.246002F, -24.7420006F), new Vector2(295.139008F, -22.5699997F)); + builder.AddCubicBezier(new Vector2(294.032013F, -20.3959999F), new Vector2(292.451996F, -18.7360001F), new Vector2(290.403015F, -17.5890007F)); + builder.AddCubicBezier(new Vector2(288.35199F, -16.4400005F), new Vector2(286.015015F, -15.8669996F), new Vector2(283.391998F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(280.766998F, -15.8669996F), new Vector2(278.429993F, -16.4400005F), new Vector2(276.381012F, -17.5890007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(300.119995F, -2.829F)); + builder.AddCubicBezier(new Vector2(305.040009F, -5.61600018F), new Vector2(308.93399F, -9.36699963F), new Vector2(311.804993F, -14.0830002F)); + builder.AddCubicBezier(new Vector2(314.674011F, -18.7970009F), new Vector2(316.109985F, -24.1480007F), new Vector2(316.109985F, -30.1350002F)); + builder.AddCubicBezier(new Vector2(316.109985F, -35.9560013F), new Vector2(314.674011F, -41.2249985F), new Vector2(311.804993F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(308.93399F, -50.6549988F), new Vector2(305.019012F, -54.3660011F), new Vector2(300.05899F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(295.096985F, -59.7779999F), new Vector2(289.541992F, -61.1310005F), new Vector2(283.391998F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(277.076996F, -61.1310005F), new Vector2(271.460999F, -59.7560005F), new Vector2(266.540985F, -57.0099983F)); + builder.AddCubicBezier(new Vector2(261.621002F, -54.262001F), new Vector2(257.747009F, -50.5530014F), new Vector2(254.917999F, -45.8790016F)); + builder.AddCubicBezier(new Vector2(252.089005F, -41.2050018F), new Vector2(250.673996F, -35.9560013F), new Vector2(250.673996F, -30.1350002F)); + builder.AddCubicBezier(new Vector2(250.673996F, -24.2310009F), new Vector2(252.108002F, -18.8999996F), new Vector2(254.979004F, -14.1450005F)); + builder.AddCubicBezier(new Vector2(257.847992F, -9.38799953F), new Vector2(261.743988F, -5.61600018F), new Vector2(266.664001F, -2.829F)); + builder.AddCubicBezier(new Vector2(271.584015F, -0.0399999991F), new Vector2(277.158997F, 1.35300004F), new Vector2(283.391998F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(289.622986F, 1.35300004F), new Vector2(295.200012F, -0.0399999991F), new Vector2(300.119995F, -2.829F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 7 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0067() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(242.556F, 0F)); + builder.AddLine(new Vector2(242.556F, -37.1459999F)); + builder.AddCubicBezier(new Vector2(242.556F, -42.1469994F), new Vector2(241.529999F, -46.4109993F), new Vector2(239.481003F, -49.9379997F)); + builder.AddCubicBezier(new Vector2(237.429993F, -53.4630013F), new Vector2(234.600998F, -56.1899986F), new Vector2(230.994003F, -58.118F)); + builder.AddCubicBezier(new Vector2(227.384995F, -60.0439987F), new Vector2(223.326004F, -61.0079994F), new Vector2(218.817001F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(214.143005F, -61.0079994F), new Vector2(209.919006F, -60.0239983F), new Vector2(206.147995F, -58.0559998F)); + builder.AddCubicBezier(new Vector2(202.375F, -56.0880013F), new Vector2(199.382996F, -53.2589989F), new Vector2(197.169006F, -49.5690002F)); + builder.AddCubicBezier(new Vector2(194.955002F, -45.8790016F), new Vector2(193.725006F, -41.4910011F), new Vector2(193.479004F, -36.4080009F)); + builder.AddLine(new Vector2(204.425995F, -34.9319992F)); + builder.AddCubicBezier(new Vector2(204.425995F, -36.9000015F), new Vector2(204.835007F, -38.5800018F), new Vector2(205.656006F, -39.9749985F)); + builder.AddCubicBezier(new Vector2(206.475006F, -41.368F), new Vector2(207.643005F, -42.4539986F), new Vector2(209.160995F, -43.2340012F)); + builder.AddCubicBezier(new Vector2(210.677002F, -44.012001F), new Vector2(212.337997F, -44.4029999F), new Vector2(214.143005F, -44.4029999F)); + builder.AddCubicBezier(new Vector2(216.766006F, -44.4029999F), new Vector2(219.001999F, -43.5620003F), new Vector2(220.847F, -41.882F)); + builder.AddCubicBezier(new Vector2(222.692001F, -40.2000008F), new Vector2(223.613998F, -37.8839989F), new Vector2(223.613998F, -34.9319992F)); + builder.AddLine(new Vector2(223.613998F, 0F)); + builder.AddLine(new Vector2(242.556F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(204.425995F, 0F)); + builder.AddLine(new Vector2(204.425995F, -38.2529984F)); + builder.AddCubicBezier(new Vector2(204.425995F, -42.9269981F), new Vector2(203.421005F, -46.9440002F), new Vector2(201.412994F, -50.3069992F)); + builder.AddCubicBezier(new Vector2(199.403F, -53.6679993F), new Vector2(196.738998F, -56.2919998F), new Vector2(193.417999F, -58.1790009F)); + builder.AddCubicBezier(new Vector2(190.097F, -60.0639992F), new Vector2(186.384995F, -61.0079994F), new Vector2(182.285995F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(177.774994F, -61.0079994F), new Vector2(173.778F, -60.0859985F), new Vector2(170.294006F, -58.2410011F)); + builder.AddCubicBezier(new Vector2(166.807999F, -56.3959999F), new Vector2(164.020996F, -53.7700005F), new Vector2(161.929993F, -50.368F)); + builder.AddCubicBezier(new Vector2(159.839005F, -46.9640007F), new Vector2(158.792999F, -42.9269981F), new Vector2(158.792999F, -38.2529984F)); + builder.AddLine(new Vector2(166.050003F, -34.9319992F)); + builder.AddCubicBezier(new Vector2(166.050003F, -36.9000015F), new Vector2(166.481003F, -38.5800018F), new Vector2(167.341995F, -39.9749985F)); + builder.AddCubicBezier(new Vector2(168.203003F, -41.368F), new Vector2(169.371002F, -42.4539986F), new Vector2(170.847F, -43.2340012F)); + builder.AddCubicBezier(new Vector2(172.322998F, -44.012001F), new Vector2(174.003006F, -44.4029999F), new Vector2(175.889999F, -44.4029999F)); + builder.AddCubicBezier(new Vector2(178.595993F, -44.4029999F), new Vector2(180.871994F, -43.5620003F), new Vector2(182.716995F, -41.882F)); + builder.AddCubicBezier(new Vector2(184.561996F, -40.2000008F), new Vector2(185.483994F, -37.8839989F), new Vector2(185.483994F, -34.9319992F)); + builder.AddLine(new Vector2(185.483994F, 0F)); + builder.AddLine(new Vector2(204.425995F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(166.050003F, 0F)); + builder.AddLine(new Vector2(166.050003F, -59.7779999F)); + builder.AddLine(new Vector2(147.108002F, -59.7779999F)); + builder.AddLine(new Vector2(147.108002F, 0F)); + builder.AddLine(new Vector2(166.050003F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 7 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0068() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(123.123001F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(127.305F, -2.84899998F), new Vector2(130.871994F, -5.45200014F), new Vector2(133.824005F, -8.97900009F)); + builder.AddLine(new Vector2(123.369003F, -19.3110008F)); + builder.AddCubicBezier(new Vector2(121.564003F, -17.2600002F), new Vector2(119.473F, -15.7229996F), new Vector2(117.096001F, -14.6990004F)); + builder.AddCubicBezier(new Vector2(114.717003F, -13.6730003F), new Vector2(112.093002F, -13.1610003F), new Vector2(109.223999F, -13.1610003F)); + builder.AddCubicBezier(new Vector2(106.026001F, -13.1610003F), new Vector2(103.259003F, -13.8380003F), new Vector2(100.921997F, -15.191F)); + builder.AddCubicBezier(new Vector2(98.5849991F, -16.5440006F), new Vector2(96.7799988F, -18.4899998F), new Vector2(95.5100021F, -21.0330009F)); + builder.AddCubicBezier(new Vector2(94.237999F, -23.5739994F), new Vector2(93.6029968F, -26.5680008F), new Vector2(93.6029968F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(93.6029968F, -33.4560013F), new Vector2(94.1969986F, -36.4080009F), new Vector2(95.387001F, -38.868F)); + builder.AddCubicBezier(new Vector2(96.5749969F, -41.3279991F), new Vector2(98.2559967F, -43.2540016F), new Vector2(100.43F, -44.6489983F)); + builder.AddCubicBezier(new Vector2(102.601997F, -46.0419998F), new Vector2(105.165001F, -46.7400017F), new Vector2(108.116997F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(110.822998F, -46.7400017F), new Vector2(113.139F, -46.125F), new Vector2(115.067001F, -44.8950005F)); + builder.AddCubicBezier(new Vector2(116.992996F, -43.6650009F), new Vector2(118.448997F, -41.9220009F), new Vector2(119.432999F, -39.6679993F)); + builder.AddCubicBezier(new Vector2(120.417F, -37.4119987F), new Vector2(120.948997F, -34.6030006F), new Vector2(121.031998F, -31.2420006F)); + builder.AddLine(new Vector2(129.149994F, -36.7770004F)); + builder.AddLine(new Vector2(85.8539963F, -36.5309982F)); + builder.AddLine(new Vector2(85.8539963F, -23.493F)); + builder.AddLine(new Vector2(137.268005F, -23.7390003F)); + builder.AddCubicBezier(new Vector2(137.677002F, -25.2150002F), new Vector2(137.945007F, -26.5459995F), new Vector2(138.067993F, -27.7360001F)); + builder.AddCubicBezier(new Vector2(138.190994F, -28.9239998F), new Vector2(138.251999F, -30.0930004F), new Vector2(138.251999F, -31.2420006F)); + builder.AddCubicBezier(new Vector2(138.251999F, -37.0629997F), new Vector2(136.938995F, -42.2290001F), new Vector2(134.315994F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(131.690994F, -51.2490005F), new Vector2(128.123993F, -54.7750015F), new Vector2(123.614998F, -57.3180008F)); + builder.AddCubicBezier(new Vector2(119.103996F, -59.8590012F), new Vector2(113.856003F, -61.1310005F), new Vector2(107.871002F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(101.802002F, -61.1310005F), new Vector2(96.348999F, -59.7779999F), new Vector2(91.512001F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(86.6729965F, -54.3660011F), new Vector2(82.8600006F, -50.6549988F), new Vector2(80.072998F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(77.2839966F, -41.2249985F), new Vector2(75.8909988F, -35.9160004F), new Vector2(75.8909988F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(75.8909988F, -23.9430008F), new Vector2(77.3249969F, -18.5310001F), new Vector2(80.1959991F, -13.776F)); + builder.AddCubicBezier(new Vector2(83.0650024F, -9.01900005F), new Vector2(87.0009995F, -5.30900002F), new Vector2(92.0039978F, -2.64499998F)); + builder.AddCubicBezier(new Vector2(97.0049973F, 0.0189999994F), new Vector2(102.745003F, 1.35300004F), new Vector2(109.223999F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(114.306999F, 1.35300004F), new Vector2(118.941002F, 0.510999978F), new Vector2(123.123001F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 7 Outlines + // - - ShapeGroup: y + CanvasGeometry Geometry_0069() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(66.5429993F, -89.2979965F)); + builder.AddLine(new Vector2(47.6010017F, -89.2979965F)); + builder.AddLine(new Vector2(47.6010017F, -45.1409988F)); + builder.AddLine(new Vector2(50.7989998F, -30.75F)); + builder.AddLine(new Vector2(47.9700012F, -16.1130009F)); + builder.AddLine(new Vector2(47.9700012F, 0F)); + builder.AddLine(new Vector2(66.5429993F, 0F)); + builder.AddLine(new Vector2(66.5429993F, -89.2979965F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(28.5359993F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(26.4850006F, -18.8379993F), new Vector2(24.9080009F, -20.4990005F), new Vector2(23.8010006F, -22.632F)); + builder.AddCubicBezier(new Vector2(22.6940002F, -24.7630005F), new Vector2(22.1399994F, -27.1830006F), new Vector2(22.1399994F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(22.1399994F, -32.5950012F), new Vector2(22.7339993F, -34.9939995F), new Vector2(23.9239998F, -37.0849991F)); + builder.AddCubicBezier(new Vector2(25.1119995F, -39.1759987F), new Vector2(26.691F, -40.8359985F), new Vector2(28.6590004F, -42.0660019F)); + builder.AddCubicBezier(new Vector2(30.6270008F, -43.2960014F), new Vector2(32.9220009F, -43.9109993F), new Vector2(35.5470009F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(38.1699982F, -43.9109993F), new Vector2(40.4669991F, -43.3160019F), new Vector2(42.4350014F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(44.4029999F, -40.9379997F), new Vector2(45.9410019F, -39.2989998F), new Vector2(47.0480003F, -37.2080002F)); + builder.AddCubicBezier(new Vector2(48.1549988F, -35.1170006F), new Vector2(48.7080002F, -32.7179985F), new Vector2(48.7080002F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(48.7080002F, -27.2229996F), new Vector2(48.1549988F, -24.7630005F), new Vector2(47.0480003F, -22.632F)); + builder.AddCubicBezier(new Vector2(45.9410019F, -20.4990005F), new Vector2(44.4029999F, -18.8379993F), new Vector2(42.4350014F, -17.6499996F)); + builder.AddCubicBezier(new Vector2(40.4669991F, -16.4599991F), new Vector2(38.1300011F, -15.8669996F), new Vector2(35.4239998F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(32.8810005F, -15.8669996F), new Vector2(30.5849991F, -16.4599991F), new Vector2(28.5359993F, -17.6499996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(43.1730003F, -1.29200006F)); + builder.AddCubicBezier(new Vector2(46.5340004F, -2.97199988F), new Vector2(49.2809982F, -5.22800016F), new Vector2(51.4140015F, -8.05700016F)); + builder.AddCubicBezier(new Vector2(53.5449982F, -10.8859997F), new Vector2(54.7750015F, -14.0620003F), new Vector2(55.1040001F, -17.5890007F)); + builder.AddLine(new Vector2(55.1040001F, -42.8040009F)); + builder.AddCubicBezier(new Vector2(54.7750015F, -46.4109993F), new Vector2(53.5449982F, -49.5890007F), new Vector2(51.4140015F, -52.3370018F)); + builder.AddCubicBezier(new Vector2(49.2809982F, -55.0830002F), new Vector2(46.5340004F, -57.2140007F), new Vector2(43.1730003F, -58.7319984F)); + builder.AddCubicBezier(new Vector2(39.8100014F, -60.2480011F), new Vector2(36.1199989F, -61.0079994F), new Vector2(32.1030006F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(26.4449997F, -61.0079994F), new Vector2(21.4020004F, -59.6549988F), new Vector2(16.9740009F, -56.9490013F)); + builder.AddCubicBezier(new Vector2(12.5459995F, -54.243F), new Vector2(9.10200024F, -50.5530014F), new Vector2(6.6420002F, -45.8790016F)); + builder.AddCubicBezier(new Vector2(4.18200016F, -41.2050018F), new Vector2(2.9519999F, -35.8740005F), new Vector2(2.9519999F, -29.8889999F)); + builder.AddCubicBezier(new Vector2(2.9519999F, -23.9020004F), new Vector2(4.18200016F, -18.573F), new Vector2(6.6420002F, -13.8990002F)); + builder.AddCubicBezier(new Vector2(9.10200024F, -9.22500038F), new Vector2(12.5249996F, -5.53499985F), new Vector2(16.9130001F, -2.829F)); + builder.AddCubicBezier(new Vector2(21.2989998F, -0.123000003F), new Vector2(26.3619995F, 1.23000002F), new Vector2(32.1030006F, 1.23000002F)); + builder.AddCubicBezier(new Vector2(36.1199989F, 1.23000002F), new Vector2(39.8100014F, 0.388000011F), new Vector2(43.1730003F, -1.29200006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 8 Outlines + // - - ShapeGroup: a + CanvasGeometry Geometry_0070() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(518.814026F, 0F)); + builder.AddLine(new Vector2(518.814026F, -58.4249992F)); + builder.AddLine(new Vector2(507.621002F, -58.4249992F)); + builder.AddLine(new Vector2(507.621002F, -44.1570015F)); + builder.AddLine(new Vector2(509.712006F, -30.0119991F)); + builder.AddLine(new Vector2(507.621002F, -15.7440004F)); + builder.AddLine(new Vector2(507.621002F, 0F)); + builder.AddLine(new Vector2(518.814026F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(480.191986F, -11.8079996F)); + builder.AddCubicBezier(new Vector2(477.321014F, -13.5299997F), new Vector2(475.087006F, -15.8870001F), new Vector2(473.488007F, -18.8810005F)); + builder.AddCubicBezier(new Vector2(471.889008F, -21.8729992F), new Vector2(471.089996F, -25.3379993F), new Vector2(471.089996F, -29.2740002F)); + builder.AddCubicBezier(new Vector2(471.089996F, -33.1269989F), new Vector2(471.889008F, -36.5509987F), new Vector2(473.488007F, -39.5449982F)); + builder.AddCubicBezier(new Vector2(475.087006F, -42.5369987F), new Vector2(477.300995F, -44.8950005F), new Vector2(480.130005F, -46.6170006F)); + builder.AddCubicBezier(new Vector2(482.959015F, -48.3390007F), new Vector2(486.218994F, -49.2000008F), new Vector2(489.908997F, -49.2000008F)); + builder.AddCubicBezier(new Vector2(493.598999F, -49.2000008F), new Vector2(496.81601F, -48.3590012F), new Vector2(499.563995F, -46.6790009F)); + builder.AddCubicBezier(new Vector2(502.309998F, -44.9970016F), new Vector2(504.463013F, -42.6389999F), new Vector2(506.022003F, -39.605999F)); + builder.AddCubicBezier(new Vector2(507.57901F, -36.5709991F), new Vector2(508.359009F, -33.0870018F), new Vector2(508.359009F, -29.1509991F)); + builder.AddCubicBezier(new Vector2(508.359009F, -23.3279991F), new Vector2(506.677002F, -18.552F), new Vector2(503.31601F, -14.8219995F)); + builder.AddCubicBezier(new Vector2(499.953003F, -11.0900002F), new Vector2(495.524994F, -9.22500038F), new Vector2(490.032013F, -9.22500038F)); + builder.AddCubicBezier(new Vector2(486.34201F, -9.22500038F), new Vector2(483.061005F, -10.0860004F), new Vector2(480.191986F, -11.8079996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(500.118011F, -1.53799999F)); + builder.AddCubicBezier(new Vector2(503.643005F, -3.3829999F), new Vector2(506.451996F, -5.94399977F), new Vector2(508.542999F, -9.22500038F)); + builder.AddCubicBezier(new Vector2(510.634003F, -12.5039997F), new Vector2(511.803009F, -16.2360001F), new Vector2(512.049011F, -20.4179993F)); + builder.AddLine(new Vector2(512.049011F, -38.007F)); + builder.AddCubicBezier(new Vector2(511.803009F, -42.2700005F), new Vector2(510.613007F, -46.0219994F), new Vector2(508.481995F, -49.262001F)); + builder.AddCubicBezier(new Vector2(506.348999F, -52.5F), new Vector2(503.540009F, -55.0429993F), new Vector2(500.056F, -56.8880005F)); + builder.AddCubicBezier(new Vector2(496.570007F, -58.7330017F), new Vector2(492.61499F, -59.6549988F), new Vector2(488.187012F, -59.6549988F)); + builder.AddCubicBezier(new Vector2(482.774994F, -59.6549988F), new Vector2(477.915985F, -58.3019981F), new Vector2(473.610992F, -55.5960007F)); + builder.AddCubicBezier(new Vector2(469.306F, -52.8899994F), new Vector2(465.902008F, -49.2400017F), new Vector2(463.402008F, -44.6489983F)); + builder.AddCubicBezier(new Vector2(460.899994F, -40.0559998F), new Vector2(459.651001F, -34.8899994F), new Vector2(459.651001F, -29.1509991F)); + builder.AddCubicBezier(new Vector2(459.651001F, -23.4099998F), new Vector2(460.899994F, -18.2439995F), new Vector2(463.402008F, -13.6529999F)); + builder.AddCubicBezier(new Vector2(465.902008F, -9.06000042F), new Vector2(469.306F, -5.43200016F), new Vector2(473.610992F, -2.76799989F)); + builder.AddCubicBezier(new Vector2(477.915985F, -0.101999998F), new Vector2(482.774994F, 1.23000002F), new Vector2(488.187012F, 1.23000002F)); + builder.AddCubicBezier(new Vector2(492.61499F, 1.23000002F), new Vector2(496.591003F, 0.307000011F), new Vector2(500.118011F, -1.53799999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 8 Outlines + // - - ShapeGroup: a + CanvasGeometry Geometry_0071() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(446.48999F, -72.1399994F)); + builder.AddCubicBezier(new Vector2(447.800995F, -73.4929962F), new Vector2(448.458008F, -75.1930008F), new Vector2(448.458008F, -77.2440033F)); + builder.AddCubicBezier(new Vector2(448.458008F, -79.211998F), new Vector2(447.800995F, -80.8730011F), new Vector2(446.48999F, -82.2259979F)); + builder.AddCubicBezier(new Vector2(445.177002F, -83.5790024F), new Vector2(443.496002F, -84.2549973F), new Vector2(441.446991F, -84.2549973F)); + builder.AddCubicBezier(new Vector2(439.395996F, -84.2549973F), new Vector2(437.714996F, -83.5790024F), new Vector2(436.403992F, -82.2259979F)); + builder.AddCubicBezier(new Vector2(435.091003F, -80.8730011F), new Vector2(434.436005F, -79.211998F), new Vector2(434.436005F, -77.2440033F)); + builder.AddCubicBezier(new Vector2(434.436005F, -75.1930008F), new Vector2(435.091003F, -73.4929962F), new Vector2(436.403992F, -72.1399994F)); + builder.AddCubicBezier(new Vector2(437.714996F, -70.7870026F), new Vector2(439.395996F, -70.1100006F), new Vector2(441.446991F, -70.1100006F)); + builder.AddCubicBezier(new Vector2(443.496002F, -70.1100006F), new Vector2(445.177002F, -70.7870026F), new Vector2(446.48999F, -72.1399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(446.981995F, 0F)); + builder.AddLine(new Vector2(446.981995F, -58.4249992F)); + builder.AddLine(new Vector2(435.789001F, -58.4249992F)); + builder.AddLine(new Vector2(435.789001F, 0F)); + builder.AddLine(new Vector2(446.981995F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 8 Outlines + // - - ShapeGroup: a + CanvasGeometry Geometry_0072() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(417.52301F, -3.56699991F)); + builder.AddCubicBezier(new Vector2(421.416992F, -6.76499987F), new Vector2(423.365997F, -11.1099997F), new Vector2(423.365997F, -16.6049995F)); + builder.AddCubicBezier(new Vector2(423.365997F, -20.2119999F), new Vector2(422.605988F, -23.1240005F), new Vector2(421.089996F, -25.3379993F)); + builder.AddCubicBezier(new Vector2(419.571991F, -27.552F), new Vector2(417.625F, -29.3139992F), new Vector2(415.247986F, -30.6270008F)); + builder.AddCubicBezier(new Vector2(412.868988F, -31.9379997F), new Vector2(410.368011F, -32.9840012F), new Vector2(407.744995F, -33.7639999F)); + builder.AddCubicBezier(new Vector2(405.119995F, -34.5419998F), new Vector2(402.597992F, -35.3009987F), new Vector2(400.179993F, -36.0390015F)); + builder.AddCubicBezier(new Vector2(397.76001F, -36.7770004F), new Vector2(395.813995F, -37.6780014F), new Vector2(394.338013F, -38.7449989F)); + builder.AddCubicBezier(new Vector2(392.862F, -39.8100014F), new Vector2(392.123993F, -41.3279991F), new Vector2(392.123993F, -43.2960014F)); + builder.AddCubicBezier(new Vector2(392.123993F, -45.1809998F), new Vector2(392.963989F, -46.6980019F), new Vector2(394.645996F, -47.8470001F)); + builder.AddCubicBezier(new Vector2(396.325989F, -48.9939995F), new Vector2(398.765991F, -49.5690002F), new Vector2(401.963989F, -49.5690002F)); + builder.AddCubicBezier(new Vector2(404.997009F, -49.5690002F), new Vector2(407.703003F, -48.9939995F), new Vector2(410.082001F, -47.8470001F)); + builder.AddCubicBezier(new Vector2(412.459015F, -46.6980019F), new Vector2(414.51001F, -45.0579987F), new Vector2(416.231995F, -42.9269981F)); + builder.AddLine(new Vector2(423.365997F, -50.0610008F)); + builder.AddCubicBezier(new Vector2(421.069F, -53.2589989F), new Vector2(418.139008F, -55.6580009F), new Vector2(414.571991F, -57.257F)); + builder.AddCubicBezier(new Vector2(411.005005F, -58.855999F), new Vector2(406.924011F, -59.6549988F), new Vector2(402.333008F, -59.6549988F)); + builder.AddCubicBezier(new Vector2(397.985992F, -59.6549988F), new Vector2(394.255005F, -58.9570007F), new Vector2(391.140015F, -57.5639992F)); + builder.AddCubicBezier(new Vector2(388.02301F, -56.1689987F), new Vector2(385.623993F, -54.1819992F), new Vector2(383.944F, -51.598999F)); + builder.AddCubicBezier(new Vector2(382.261993F, -49.0159988F), new Vector2(381.423004F, -45.9599991F), new Vector2(381.423004F, -42.4350014F)); + builder.AddCubicBezier(new Vector2(381.423004F, -38.9080009F), new Vector2(382.179993F, -36.0589981F), new Vector2(383.697998F, -33.887001F)); + builder.AddCubicBezier(new Vector2(385.213989F, -31.7129993F), new Vector2(387.161987F, -30.0119991F), new Vector2(389.540985F, -28.7819996F)); + builder.AddCubicBezier(new Vector2(391.917999F, -27.552F), new Vector2(394.438995F, -26.5680008F), new Vector2(397.105011F, -25.8299999F)); + builder.AddCubicBezier(new Vector2(399.769012F, -25.0919991F), new Vector2(402.290985F, -24.3330002F), new Vector2(404.670013F, -23.5550003F)); + builder.AddCubicBezier(new Vector2(407.046997F, -22.7749996F), new Vector2(408.993988F, -21.7910004F), new Vector2(410.511993F, -20.6030006F)); + builder.AddCubicBezier(new Vector2(412.028015F, -19.4130001F), new Vector2(412.787994F, -17.7520008F), new Vector2(412.787994F, -15.6210003F)); + builder.AddCubicBezier(new Vector2(412.787994F, -13.4879999F), new Vector2(411.843994F, -11.8269997F), new Vector2(409.959015F, -10.6389999F)); + builder.AddCubicBezier(new Vector2(408.071991F, -9.44900036F), new Vector2(405.40799F, -8.85599995F), new Vector2(401.963989F, -8.85599995F)); + builder.AddCubicBezier(new Vector2(398.519989F, -8.85599995F), new Vector2(395.403015F, -9.48999977F), new Vector2(392.615997F, -10.7620001F)); + builder.AddCubicBezier(new Vector2(389.826996F, -12.0319996F), new Vector2(387.367004F, -13.9799995F), new Vector2(385.235992F, -16.6049995F)); + builder.AddLine(new Vector2(378.10199F, -9.47099972F)); + builder.AddCubicBezier(new Vector2(379.904999F, -7.25699997F), new Vector2(382.015991F, -5.3499999F), new Vector2(384.436005F, -3.75099993F)); + builder.AddCubicBezier(new Vector2(386.854004F, -2.15199995F), new Vector2(389.540985F, -0.921999991F), new Vector2(392.493011F, -0.0610000007F)); + builder.AddCubicBezier(new Vector2(395.445007F, 0.800000012F), new Vector2(398.559998F, 1.23000002F), new Vector2(401.841003F, 1.23000002F)); + builder.AddCubicBezier(new Vector2(408.399994F, 1.23000002F), new Vector2(413.627014F, -0.368999988F), new Vector2(417.52301F, -3.56699991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 8 Outlines + // - - ShapeGroup: a + CanvasGeometry Geometry_0073() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(357.68399F, -1.16900003F)); + builder.AddCubicBezier(new Vector2(361.865997F, -2.84899998F), new Vector2(365.433014F, -5.45200014F), new Vector2(368.38501F, -8.97900009F)); + builder.AddLine(new Vector2(357.929993F, -19.3110008F)); + builder.AddCubicBezier(new Vector2(356.125F, -17.2600002F), new Vector2(354.033997F, -15.7229996F), new Vector2(351.657013F, -14.6990004F)); + builder.AddCubicBezier(new Vector2(349.278015F, -13.6730003F), new Vector2(346.653992F, -13.1610003F), new Vector2(343.785004F, -13.1610003F)); + builder.AddCubicBezier(new Vector2(340.587006F, -13.1610003F), new Vector2(337.820007F, -13.8380003F), new Vector2(335.483002F, -15.191F)); + builder.AddCubicBezier(new Vector2(333.145996F, -16.5440006F), new Vector2(331.339996F, -18.4899998F), new Vector2(330.070007F, -21.0330009F)); + builder.AddCubicBezier(new Vector2(328.798004F, -23.5739994F), new Vector2(328.164001F, -26.5680008F), new Vector2(328.164001F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(328.164001F, -33.4560013F), new Vector2(328.757996F, -36.4080009F), new Vector2(329.947998F, -38.868F)); + builder.AddCubicBezier(new Vector2(331.135986F, -41.3279991F), new Vector2(332.816986F, -43.2540016F), new Vector2(334.990997F, -44.6489983F)); + builder.AddCubicBezier(new Vector2(337.162994F, -46.0419998F), new Vector2(339.726013F, -46.7400017F), new Vector2(342.678009F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(345.384003F, -46.7400017F), new Vector2(347.700012F, -46.125F), new Vector2(349.627991F, -44.8950005F)); + builder.AddCubicBezier(new Vector2(351.553986F, -43.6650009F), new Vector2(353.01001F, -41.9220009F), new Vector2(353.993988F, -39.6679993F)); + builder.AddCubicBezier(new Vector2(354.977997F, -37.4119987F), new Vector2(355.51001F, -34.6030006F), new Vector2(355.592987F, -31.2420006F)); + builder.AddLine(new Vector2(363.710999F, -36.7770004F)); + builder.AddLine(new Vector2(320.415009F, -36.5309982F)); + builder.AddLine(new Vector2(320.415009F, -23.493F)); + builder.AddLine(new Vector2(371.82901F, -23.7390003F)); + builder.AddCubicBezier(new Vector2(372.238007F, -25.2150002F), new Vector2(372.506012F, -26.5459995F), new Vector2(372.628998F, -27.7360001F)); + builder.AddCubicBezier(new Vector2(372.752014F, -28.9239998F), new Vector2(372.812988F, -30.0930004F), new Vector2(372.812988F, -31.2420006F)); + builder.AddCubicBezier(new Vector2(372.812988F, -37.0629997F), new Vector2(371.5F, -42.2290001F), new Vector2(368.877014F, -46.7400017F)); + builder.AddCubicBezier(new Vector2(366.252014F, -51.2490005F), new Vector2(362.684998F, -54.7750015F), new Vector2(358.175995F, -57.3180008F)); + builder.AddCubicBezier(new Vector2(353.665009F, -59.8590012F), new Vector2(348.416992F, -61.1310005F), new Vector2(342.432007F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(336.363007F, -61.1310005F), new Vector2(330.910004F, -59.7779999F), new Vector2(326.072998F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(321.234009F, -54.3660011F), new Vector2(317.42099F, -50.6549988F), new Vector2(314.634003F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(311.845001F, -41.2249985F), new Vector2(310.451996F, -35.9160004F), new Vector2(310.451996F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(310.451996F, -23.9430008F), new Vector2(311.885986F, -18.5310001F), new Vector2(314.756989F, -13.776F)); + builder.AddCubicBezier(new Vector2(317.626007F, -9.01900005F), new Vector2(321.562012F, -5.30900002F), new Vector2(326.565002F, -2.64499998F)); + builder.AddCubicBezier(new Vector2(331.56601F, 0.0189999994F), new Vector2(337.306F, 1.35300004F), new Vector2(343.785004F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(348.868011F, 1.35300004F), new Vector2(353.502014F, 0.510999978F), new Vector2(357.68399F, -1.16900003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 8 Outlines + // - - ShapeGroup: a + CanvasGeometry Geometry_0074() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(262.851013F, 0F)); + builder.AddLine(new Vector2(262.851013F, -59.7779999F)); + builder.AddLine(new Vector2(243.908997F, -59.7779999F)); + builder.AddLine(new Vector2(243.908997F, 0F)); + builder.AddLine(new Vector2(262.851013F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(302.457001F, 0F)); + builder.AddLine(new Vector2(302.457001F, -38.2529984F)); + builder.AddCubicBezier(new Vector2(302.457001F, -42.3520012F), new Vector2(301.472992F, -46.1450005F), new Vector2(299.505005F, -49.6310005F)); + builder.AddCubicBezier(new Vector2(297.536987F, -53.1150017F), new Vector2(294.830994F, -55.882F), new Vector2(291.386993F, -57.9329987F)); + builder.AddCubicBezier(new Vector2(287.942993F, -59.9819984F), new Vector2(284.046997F, -61.0079994F), new Vector2(279.701996F, -61.0079994F)); + builder.AddCubicBezier(new Vector2(275.109009F, -61.0079994F), new Vector2(270.989014F, -60.0439987F), new Vector2(267.341003F, -58.118F)); + builder.AddCubicBezier(new Vector2(263.69101F, -56.1899986F), new Vector2(260.821014F, -53.4630013F), new Vector2(258.730011F, -49.9379997F)); + builder.AddCubicBezier(new Vector2(256.639008F, -46.4109993F), new Vector2(255.593994F, -42.3120003F), new Vector2(255.593994F, -37.6380005F)); + builder.AddLine(new Vector2(262.851013F, -34.0709991F)); + builder.AddCubicBezier(new Vector2(262.851013F, -36.1199989F), new Vector2(263.300995F, -37.9239998F), new Vector2(264.20401F, -39.4830017F)); + builder.AddCubicBezier(new Vector2(265.105011F, -41.0400009F), new Vector2(266.334991F, -42.2509995F), new Vector2(267.894012F, -43.1119995F)); + builder.AddCubicBezier(new Vector2(269.450989F, -43.9729996F), new Vector2(271.214996F, -44.4029999F), new Vector2(273.183014F, -44.4029999F)); + builder.AddCubicBezier(new Vector2(276.13501F, -44.4029999F), new Vector2(278.595001F, -43.4379997F), new Vector2(280.562988F, -41.512001F)); + builder.AddCubicBezier(new Vector2(282.531006F, -39.5839996F), new Vector2(283.515015F, -37.1040001F), new Vector2(283.515015F, -34.0709991F)); + builder.AddLine(new Vector2(283.515015F, 0F)); + builder.AddLine(new Vector2(302.457001F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 8 Outlines + // - - ShapeGroup: a + CanvasGeometry Geometry_0075() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(194.955002F, -17.5890007F)); + builder.AddCubicBezier(new Vector2(192.904007F, -18.7360001F), new Vector2(191.304993F, -20.3959999F), new Vector2(190.158005F, -22.5699997F)); + builder.AddCubicBezier(new Vector2(189.009003F, -24.7420006F), new Vector2(188.436005F, -27.2229996F), new Vector2(188.436005F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(188.436005F, -32.6349983F), new Vector2(189.009003F, -35.0130005F), new Vector2(190.158005F, -37.1459999F)); + builder.AddCubicBezier(new Vector2(191.304993F, -39.2770004F), new Vector2(192.904007F, -40.9379997F), new Vector2(194.955002F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(197.003998F, -43.3160019F), new Vector2(199.341003F, -43.9109993F), new Vector2(201.966003F, -43.9109993F)); + builder.AddCubicBezier(new Vector2(204.589005F, -43.9109993F), new Vector2(206.904999F, -43.3160019F), new Vector2(208.914993F, -42.1279984F)); + builder.AddCubicBezier(new Vector2(210.923004F, -40.9379997F), new Vector2(212.501999F, -39.2989998F), new Vector2(213.651001F, -37.2080002F)); + builder.AddCubicBezier(new Vector2(214.798004F, -35.1170006F), new Vector2(215.373001F, -32.7179985F), new Vector2(215.373001F, -30.0119991F)); + builder.AddCubicBezier(new Vector2(215.373001F, -27.2229996F), new Vector2(214.819F, -24.7420006F), new Vector2(213.712006F, -22.5699997F)); + builder.AddCubicBezier(new Vector2(212.604996F, -20.3959999F), new Vector2(211.026001F, -18.7360001F), new Vector2(208.977005F, -17.5890007F)); + builder.AddCubicBezier(new Vector2(206.925995F, -16.4400005F), new Vector2(204.589005F, -15.8669996F), new Vector2(201.966003F, -15.8669996F)); + builder.AddCubicBezier(new Vector2(199.341003F, -15.8669996F), new Vector2(197.003998F, -16.4400005F), new Vector2(194.955002F, -17.5890007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(218.694F, -2.829F)); + builder.AddCubicBezier(new Vector2(223.613998F, -5.61600018F), new Vector2(227.507996F, -9.36699963F), new Vector2(230.378998F, -14.0830002F)); + builder.AddCubicBezier(new Vector2(233.248001F, -18.7970009F), new Vector2(234.684006F, -24.1480007F), new Vector2(234.684006F, -30.1350002F)); + builder.AddCubicBezier(new Vector2(234.684006F, -35.9560013F), new Vector2(233.248001F, -41.2249985F), new Vector2(230.378998F, -45.9410019F)); + builder.AddCubicBezier(new Vector2(227.507996F, -50.6549988F), new Vector2(223.591995F, -54.3660011F), new Vector2(218.632004F, -57.0719986F)); + builder.AddCubicBezier(new Vector2(213.669998F, -59.7779999F), new Vector2(208.115997F, -61.1310005F), new Vector2(201.966003F, -61.1310005F)); + builder.AddCubicBezier(new Vector2(195.651001F, -61.1310005F), new Vector2(190.035004F, -59.7560005F), new Vector2(185.115005F, -57.0099983F)); + builder.AddCubicBezier(new Vector2(180.195007F, -54.262001F), new Vector2(176.320007F, -50.5530014F), new Vector2(173.490997F, -45.8790016F)); + builder.AddCubicBezier(new Vector2(170.662003F, -41.2050018F), new Vector2(169.248001F, -35.9560013F), new Vector2(169.248001F, -30.1350002F)); + builder.AddCubicBezier(new Vector2(169.248001F, -24.2310009F), new Vector2(170.682007F, -18.8999996F), new Vector2(173.552994F, -14.1450005F)); + builder.AddCubicBezier(new Vector2(176.421997F, -9.38799953F), new Vector2(180.317993F, -5.61600018F), new Vector2(185.238007F, -2.829F)); + builder.AddCubicBezier(new Vector2(190.158005F, -0.0399999991F), new Vector2(195.733002F, 1.35300004F), new Vector2(201.966003F, 1.35300004F)); + builder.AddCubicBezier(new Vector2(208.197006F, 1.35300004F), new Vector2(213.774002F, -0.0399999991F), new Vector2(218.694F, -2.829F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 8 Outlines + // - - ShapeGroup: a + CanvasGeometry Geometry_0076() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(158.546997F, -87.8219986F)); + builder.AddLine(new Vector2(147.354004F, -87.8219986F)); + builder.AddLine(new Vector2(147.354004F, -44.1570015F)); + builder.AddLine(new Vector2(149.445007F, -30.0119991F)); + builder.AddLine(new Vector2(147.354004F, -15.7440004F)); + builder.AddLine(new Vector2(147.354004F, 0F)); + builder.AddLine(new Vector2(158.546997F, 0F)); + builder.AddLine(new Vector2(158.546997F, -87.8219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(119.863998F, -11.7469997F)); + builder.AddCubicBezier(new Vector2(117.035004F, -13.427F), new Vector2(114.820999F, -15.7840004F), new Vector2(113.222F, -18.8190002F)); + builder.AddCubicBezier(new Vector2(111.623001F, -21.8519993F), new Vector2(110.822998F, -25.3379993F), new Vector2(110.822998F, -29.2740002F)); + builder.AddCubicBezier(new Vector2(110.822998F, -33.2099991F), new Vector2(111.623001F, -36.6739998F), new Vector2(113.222F, -39.6679993F)); + builder.AddCubicBezier(new Vector2(114.820999F, -42.6599998F), new Vector2(117.013F, -44.9970016F), new Vector2(119.802002F, -46.6790009F)); + builder.AddCubicBezier(new Vector2(122.588997F, -48.3590012F), new Vector2(125.829002F, -49.2000008F), new Vector2(129.518997F, -49.2000008F)); + builder.AddCubicBezier(new Vector2(133.209F, -49.2000008F), new Vector2(136.447006F, -48.3390007F), new Vector2(139.235992F, -46.6170006F)); + builder.AddCubicBezier(new Vector2(142.022995F, -44.8950005F), new Vector2(144.195999F, -42.5369987F), new Vector2(145.755005F, -39.5449982F)); + builder.AddCubicBezier(new Vector2(147.311996F, -36.5509987F), new Vector2(148.091995F, -33.0870018F), new Vector2(148.091995F, -29.1509991F)); + builder.AddCubicBezier(new Vector2(148.091995F, -25.2959995F), new Vector2(147.311996F, -21.8729992F), new Vector2(145.755005F, -18.8810005F)); + builder.AddCubicBezier(new Vector2(144.195999F, -15.8870001F), new Vector2(142.022995F, -13.5299997F), new Vector2(139.235992F, -11.8079996F)); + builder.AddCubicBezier(new Vector2(136.447006F, -10.0860004F), new Vector2(133.209F, -9.22500038F), new Vector2(129.518997F, -9.22500038F)); + builder.AddCubicBezier(new Vector2(125.910004F, -9.22500038F), new Vector2(122.693001F, -10.0649996F), new Vector2(119.863998F, -11.7469997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(139.727997F, -1.53799999F)); + builder.AddCubicBezier(new Vector2(143.253006F, -3.3829999F), new Vector2(146.082001F, -5.94399977F), new Vector2(148.214996F, -9.22500038F)); + builder.AddCubicBezier(new Vector2(150.345993F, -12.5039997F), new Vector2(151.535995F, -16.2360001F), new Vector2(151.781998F, -20.4179993F)); + builder.AddLine(new Vector2(151.781998F, -38.007F)); + builder.AddCubicBezier(new Vector2(151.535995F, -42.2700005F), new Vector2(150.326004F, -46.0219994F), new Vector2(148.154007F, -49.262001F)); + builder.AddCubicBezier(new Vector2(145.979996F, -52.5F), new Vector2(143.130005F, -55.0429993F), new Vector2(139.604996F, -56.8880005F)); + builder.AddCubicBezier(new Vector2(136.078003F, -58.7330017F), new Vector2(132.102005F, -59.6549988F), new Vector2(127.674004F, -59.6549988F)); + builder.AddCubicBezier(new Vector2(122.343002F, -59.6549988F), new Vector2(117.545998F, -58.3019981F), new Vector2(113.282997F, -55.5960007F)); + builder.AddCubicBezier(new Vector2(109.017998F, -52.8899994F), new Vector2(105.635002F, -49.2400017F), new Vector2(103.135002F, -44.6489983F)); + builder.AddCubicBezier(new Vector2(100.633003F, -40.0559998F), new Vector2(99.3840027F, -34.8899994F), new Vector2(99.3840027F, -29.1509991F)); + builder.AddCubicBezier(new Vector2(99.3840027F, -23.4099998F), new Vector2(100.633003F, -18.2439995F), new Vector2(103.135002F, -13.6529999F)); + builder.AddCubicBezier(new Vector2(105.635002F, -9.06000042F), new Vector2(109.017998F, -5.43200016F), new Vector2(113.282997F, -2.76799989F)); + builder.AddCubicBezier(new Vector2(117.545998F, -0.101999998F), new Vector2(122.343002F, 1.23000002F), new Vector2(127.674004F, 1.23000002F)); + builder.AddCubicBezier(new Vector2(132.182999F, 1.23000002F), new Vector2(136.201004F, 0.307000011F), new Vector2(139.727997F, -1.53799999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 8 Outlines + // - - ShapeGroup: a + CanvasGeometry Geometry_0077() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(46.7400017F, 0F)); + builder.AddLine(new Vector2(46.7400017F, -58.4249992F)); + builder.AddLine(new Vector2(35.6699982F, -58.4249992F)); + builder.AddLine(new Vector2(35.6699982F, 0F)); + builder.AddLine(new Vector2(46.7400017F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(88.0680008F, 0F)); + builder.AddLine(new Vector2(88.0680008F, -36.2849998F)); + builder.AddCubicBezier(new Vector2(88.0680008F, -40.3019981F), new Vector2(87.0839996F, -44.0960007F), new Vector2(85.1159973F, -47.6629982F)); + builder.AddCubicBezier(new Vector2(83.1480026F, -51.2299995F), new Vector2(80.461998F, -54.1199989F), new Vector2(77.0599976F, -56.3339996F)); + builder.AddCubicBezier(new Vector2(73.6559982F, -58.5480003F), new Vector2(69.7409973F, -59.6549988F), new Vector2(65.3130035F, -59.6549988F)); + builder.AddCubicBezier(new Vector2(60.8849983F, -59.6549988F), new Vector2(56.9070015F, -58.6500015F), new Vector2(53.382F, -56.6419983F)); + builder.AddCubicBezier(new Vector2(49.8549995F, -54.632F), new Vector2(47.1090012F, -51.9059982F), new Vector2(45.1409988F, -48.4620018F)); + builder.AddCubicBezier(new Vector2(43.1730003F, -45.0180016F), new Vector2(42.1889992F, -41.0820007F), new Vector2(42.1889992F, -36.6539993F)); + builder.AddLine(new Vector2(46.7400017F, -34.0709991F)); + builder.AddCubicBezier(new Vector2(46.7400017F, -37.0229988F), new Vector2(47.3950005F, -39.6459999F), new Vector2(48.7080002F, -41.9430008F)); + builder.AddCubicBezier(new Vector2(50.019001F, -44.237999F), new Vector2(51.8230019F, -46.0419998F), new Vector2(54.1199989F, -47.3549995F)); + builder.AddCubicBezier(new Vector2(56.4150009F, -48.6660004F), new Vector2(59.0400009F, -49.3230019F), new Vector2(61.9920006F, -49.3230019F)); + builder.AddCubicBezier(new Vector2(66.4199982F, -49.3230019F), new Vector2(70.0070038F, -47.887001F), new Vector2(72.7549973F, -45.0180016F)); + builder.AddCubicBezier(new Vector2(75.5009995F, -42.1469994F), new Vector2(76.875F, -38.4990005F), new Vector2(76.875F, -34.0709991F)); + builder.AddLine(new Vector2(76.875F, 0F)); + builder.AddLine(new Vector2(88.0680008F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: Pre-comp 1 + // - - - Layer: text-ministers 8 Outlines + // - - ShapeGroup: a + CanvasGeometry Geometry_0078() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(18.8190002F, -72.1399994F)); + builder.AddCubicBezier(new Vector2(20.1299992F, -73.4929962F), new Vector2(20.7870007F, -75.1930008F), new Vector2(20.7870007F, -77.2440033F)); + builder.AddCubicBezier(new Vector2(20.7870007F, -79.211998F), new Vector2(20.1299992F, -80.8730011F), new Vector2(18.8190002F, -82.2259979F)); + builder.AddCubicBezier(new Vector2(17.5060005F, -83.5790024F), new Vector2(15.8249998F, -84.2549973F), new Vector2(13.776F, -84.2549973F)); + builder.AddCubicBezier(new Vector2(11.7250004F, -84.2549973F), new Vector2(10.0439997F, -83.5790024F), new Vector2(8.7329998F, -82.2259979F)); + builder.AddCubicBezier(new Vector2(7.42000008F, -80.8730011F), new Vector2(6.76499987F, -79.211998F), new Vector2(6.76499987F, -77.2440033F)); + builder.AddCubicBezier(new Vector2(6.76499987F, -75.1930008F), new Vector2(7.42000008F, -73.4929962F), new Vector2(8.7329998F, -72.1399994F)); + builder.AddCubicBezier(new Vector2(10.0439997F, -70.7870026F), new Vector2(11.7250004F, -70.1100006F), new Vector2(13.776F, -70.1100006F)); + builder.AddCubicBezier(new Vector2(15.8249998F, -70.1100006F), new Vector2(17.5060005F, -70.7870026F), new Vector2(18.8190002F, -72.1399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(19.3110008F, 0F)); + builder.AddLine(new Vector2(19.3110008F, -58.4249992F)); + builder.AddLine(new Vector2(8.11800003F, -58.4249992F)); + builder.AddLine(new Vector2(8.11800003F, 0F)); + builder.AddLine(new Vector2(19.3110008F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: Pre-comp 1 + // - - - - Layer: second Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0079() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(160.761002F, -1.35300004F)); + builder.AddCubicBezier(new Vector2(164.778F, -3.07500005F), new Vector2(168.222F, -5.57499981F), new Vector2(171.093002F, -8.85599995F)); + builder.AddLine(new Vector2(163.959F, -16.1130009F)); + builder.AddCubicBezier(new Vector2(161.990997F, -13.816F), new Vector2(159.632996F, -12.0939999F), new Vector2(156.886993F, -10.9469995F)); + builder.AddCubicBezier(new Vector2(154.139008F, -9.79800034F), new Vector2(151.125F, -9.22500038F), new Vector2(147.845993F, -9.22500038F)); + builder.AddCubicBezier(new Vector2(143.910004F, -9.22500038F), new Vector2(140.423996F, -10.0649996F), new Vector2(137.391006F, -11.7469997F)); + builder.AddCubicBezier(new Vector2(134.356003F, -13.427F), new Vector2(132.018997F, -15.8059998F), new Vector2(130.380005F, -18.8810005F)); + builder.AddCubicBezier(new Vector2(128.738998F, -21.9559994F), new Vector2(127.919998F, -25.5419998F), new Vector2(127.919998F, -29.6429996F)); + builder.AddCubicBezier(new Vector2(127.919998F, -33.6599998F), new Vector2(128.697998F, -37.1459999F), new Vector2(130.257004F, -40.0979996F)); + builder.AddCubicBezier(new Vector2(131.813995F, -43.0499992F), new Vector2(134.028F, -45.3450012F), new Vector2(136.899002F, -46.9860001F)); + builder.AddCubicBezier(new Vector2(139.768005F, -48.625F), new Vector2(143.089005F, -49.4459991F), new Vector2(146.862F, -49.4459991F)); + builder.AddCubicBezier(new Vector2(150.468994F, -49.4459991F), new Vector2(153.544006F, -48.6870003F), new Vector2(156.087006F, -47.1710014F)); + builder.AddCubicBezier(new Vector2(158.628006F, -45.6529999F), new Vector2(160.595993F, -43.5209999F), new Vector2(161.990997F, -40.7750015F)); + builder.AddCubicBezier(new Vector2(163.384003F, -38.0270004F), new Vector2(164.082001F, -34.6860008F), new Vector2(164.082001F, -30.75F)); + builder.AddLine(new Vector2(168.141006F, -34.3170013F)); + builder.AddLine(new Vector2(124.722F, -34.3170013F)); + builder.AddLine(new Vector2(124.722F, -25.0919991F)); + builder.AddLine(new Vector2(174.044998F, -25.0919991F)); + builder.AddCubicBezier(new Vector2(174.291F, -26.2390003F), new Vector2(174.453995F, -27.2849998F), new Vector2(174.537003F, -28.2290001F)); + builder.AddCubicBezier(new Vector2(174.617996F, -29.1709995F), new Vector2(174.660004F, -30.052F), new Vector2(174.660004F, -30.8729992F)); + builder.AddCubicBezier(new Vector2(174.660004F, -36.4480019F), new Vector2(173.490997F, -41.4090004F), new Vector2(171.154007F, -45.7560005F)); + builder.AddCubicBezier(new Vector2(168.817001F, -50.1010017F), new Vector2(165.557999F, -53.5050011F), new Vector2(161.376007F, -55.9650002F)); + builder.AddCubicBezier(new Vector2(157.194F, -58.4249992F), new Vector2(152.436996F, -59.6549988F), new Vector2(147.108002F, -59.6549988F)); + builder.AddCubicBezier(new Vector2(141.449997F, -59.6549988F), new Vector2(136.345001F, -58.3219986F), new Vector2(131.794006F, -55.6580009F)); + builder.AddCubicBezier(new Vector2(127.242996F, -52.9920006F), new Vector2(123.635002F, -49.362999F), new Vector2(120.971001F, -44.7719994F)); + builder.AddCubicBezier(new Vector2(118.305F, -40.1790009F), new Vector2(116.973F, -35.0130005F), new Vector2(116.973F, -29.2740002F)); + builder.AddCubicBezier(new Vector2(116.973F, -23.4510002F), new Vector2(118.325996F, -18.2439995F), new Vector2(121.031998F, -13.6529999F)); + builder.AddCubicBezier(new Vector2(123.737999F, -9.06000042F), new Vector2(127.405998F, -5.43200016F), new Vector2(132.039993F, -2.76799989F)); + builder.AddCubicBezier(new Vector2(136.671997F, -0.101999998F), new Vector2(141.942001F, 1.23000002F), new Vector2(147.845993F, 1.23000002F)); + builder.AddCubicBezier(new Vector2(152.436996F, 1.23000002F), new Vector2(156.742004F, 0.368999988F), new Vector2(160.761002F, -1.35300004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: Pre-comp 1 + // - - - - Layer: second Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0080() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(64.4520035F, 0F)); + builder.AddLine(new Vector2(64.4520035F, -87.8219986F)); + builder.AddLine(new Vector2(53.382F, -87.8219986F)); + builder.AddLine(new Vector2(53.382F, 0F)); + builder.AddLine(new Vector2(64.4520035F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(105.779999F, 0F)); + builder.AddLine(new Vector2(105.779999F, -36.2849998F)); + builder.AddCubicBezier(new Vector2(105.779999F, -40.8759995F), new Vector2(104.795998F, -44.9350014F), new Vector2(102.828003F, -48.4620018F)); + builder.AddCubicBezier(new Vector2(100.860001F, -51.9869995F), new Vector2(98.1740036F, -54.7350006F), new Vector2(94.7720032F, -56.7029991F)); + builder.AddCubicBezier(new Vector2(91.3679962F, -58.6710014F), new Vector2(87.4530029F, -59.6549988F), new Vector2(83.0250015F, -59.6549988F)); + builder.AddCubicBezier(new Vector2(78.5970001F, -59.6549988F), new Vector2(74.6190033F, -58.6500015F), new Vector2(71.0940018F, -56.6419983F)); + builder.AddCubicBezier(new Vector2(67.5670013F, -54.632F), new Vector2(64.8209991F, -51.9059982F), new Vector2(62.8530006F, -48.4620018F)); + builder.AddCubicBezier(new Vector2(60.8849983F, -45.0180016F), new Vector2(59.901001F, -41.0820007F), new Vector2(59.901001F, -36.6539993F)); + builder.AddLine(new Vector2(64.4520035F, -34.0709991F)); + builder.AddCubicBezier(new Vector2(64.4520035F, -37.0229988F), new Vector2(65.1070023F, -39.6459999F), new Vector2(66.4199982F, -41.9430008F)); + builder.AddCubicBezier(new Vector2(67.7310028F, -44.237999F), new Vector2(69.5350037F, -46.0419998F), new Vector2(71.8320007F, -47.3549995F)); + builder.AddCubicBezier(new Vector2(74.1269989F, -48.6660004F), new Vector2(76.7519989F, -49.3230019F), new Vector2(79.7040024F, -49.3230019F)); + builder.AddCubicBezier(new Vector2(84.1320038F, -49.3230019F), new Vector2(87.7190018F, -47.887001F), new Vector2(90.4670029F, -45.0180016F)); + builder.AddCubicBezier(new Vector2(93.2129974F, -42.1469994F), new Vector2(94.586998F, -38.4990005F), new Vector2(94.586998F, -34.0709991F)); + builder.AddLine(new Vector2(94.586998F, 0F)); + builder.AddLine(new Vector2(105.779999F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: Pre-comp 1 + // - - - - Layer: second Outlines + // - - ShapeGroup: e + CanvasGeometry Geometry_0081() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(42.5579987F, -48.3390007F)); + builder.AddLine(new Vector2(42.5579987F, -58.4249992F)); + builder.AddLine(new Vector2(2.70600009F, -58.4249992F)); + builder.AddLine(new Vector2(2.70600009F, -48.3390007F)); + builder.AddLine(new Vector2(42.5579987F, -48.3390007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(28.1669998F, 0F)); + builder.AddLine(new Vector2(28.1669998F, -82.9020004F)); + builder.AddLine(new Vector2(17.0970001F, -82.9020004F)); + builder.AddLine(new Vector2(17.0970001F, 0F)); + builder.AddLine(new Vector2(28.1669998F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: Pre-comp 1 + // - - - - Layer: second Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0082() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(351.411011F, -48.3390007F)); + builder.AddLine(new Vector2(351.411011F, -58.4249992F)); + builder.AddLine(new Vector2(311.55899F, -58.4249992F)); + builder.AddLine(new Vector2(311.55899F, -48.3390007F)); + builder.AddLine(new Vector2(351.411011F, -48.3390007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(337.019989F, 0F)); + builder.AddLine(new Vector2(337.019989F, -82.9020004F)); + builder.AddLine(new Vector2(325.950012F, -82.9020004F)); + builder.AddLine(new Vector2(325.950012F, 0F)); + builder.AddLine(new Vector2(337.019989F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: Pre-comp 1 + // - - - - Layer: second Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0083() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(292.73999F, -1.35300004F)); + builder.AddCubicBezier(new Vector2(296.756989F, -3.07500005F), new Vector2(300.200989F, -5.57499981F), new Vector2(303.071991F, -8.85599995F)); + builder.AddLine(new Vector2(295.937988F, -16.1130009F)); + builder.AddCubicBezier(new Vector2(293.970001F, -13.816F), new Vector2(291.612F, -12.0939999F), new Vector2(288.865997F, -10.9469995F)); + builder.AddCubicBezier(new Vector2(286.118011F, -9.79800034F), new Vector2(283.104004F, -9.22500038F), new Vector2(279.825012F, -9.22500038F)); + builder.AddCubicBezier(new Vector2(275.889008F, -9.22500038F), new Vector2(272.403015F, -10.0649996F), new Vector2(269.369995F, -11.7469997F)); + builder.AddCubicBezier(new Vector2(266.334991F, -13.427F), new Vector2(263.997986F, -15.8059998F), new Vector2(262.359009F, -18.8810005F)); + builder.AddCubicBezier(new Vector2(260.717987F, -21.9559994F), new Vector2(259.898987F, -25.5419998F), new Vector2(259.898987F, -29.6429996F)); + builder.AddCubicBezier(new Vector2(259.898987F, -33.6599998F), new Vector2(260.677002F, -37.1459999F), new Vector2(262.235992F, -40.0979996F)); + builder.AddCubicBezier(new Vector2(263.792999F, -43.0499992F), new Vector2(266.006989F, -45.3450012F), new Vector2(268.877991F, -46.9860001F)); + builder.AddCubicBezier(new Vector2(271.747009F, -48.625F), new Vector2(275.067993F, -49.4459991F), new Vector2(278.841003F, -49.4459991F)); + builder.AddCubicBezier(new Vector2(282.447998F, -49.4459991F), new Vector2(285.52301F, -48.6870003F), new Vector2(288.06601F, -47.1710014F)); + builder.AddCubicBezier(new Vector2(290.606995F, -45.6529999F), new Vector2(292.575012F, -43.5209999F), new Vector2(293.970001F, -40.7750015F)); + builder.AddCubicBezier(new Vector2(295.363007F, -38.0270004F), new Vector2(296.061005F, -34.6860008F), new Vector2(296.061005F, -30.75F)); + builder.AddLine(new Vector2(300.119995F, -34.3170013F)); + builder.AddLine(new Vector2(256.700989F, -34.3170013F)); + builder.AddLine(new Vector2(256.700989F, -25.0919991F)); + builder.AddLine(new Vector2(306.023987F, -25.0919991F)); + builder.AddCubicBezier(new Vector2(306.269989F, -26.2390003F), new Vector2(306.433014F, -27.2849998F), new Vector2(306.515991F, -28.2290001F)); + builder.AddCubicBezier(new Vector2(306.596985F, -29.1709995F), new Vector2(306.639008F, -30.052F), new Vector2(306.639008F, -30.8729992F)); + builder.AddCubicBezier(new Vector2(306.639008F, -36.4480019F), new Vector2(305.471008F, -41.4090004F), new Vector2(303.134003F, -45.7560005F)); + builder.AddCubicBezier(new Vector2(300.796997F, -50.1010017F), new Vector2(297.536987F, -53.5050011F), new Vector2(293.355011F, -55.9650002F)); + builder.AddCubicBezier(new Vector2(289.173004F, -58.4249992F), new Vector2(284.415985F, -59.6549988F), new Vector2(279.087006F, -59.6549988F)); + builder.AddCubicBezier(new Vector2(273.428986F, -59.6549988F), new Vector2(268.324005F, -58.3219986F), new Vector2(263.77301F, -55.6580009F)); + builder.AddCubicBezier(new Vector2(259.221985F, -52.9920006F), new Vector2(255.613998F, -49.362999F), new Vector2(252.949997F, -44.7719994F)); + builder.AddCubicBezier(new Vector2(250.283997F, -40.1790009F), new Vector2(248.951996F, -35.0130005F), new Vector2(248.951996F, -29.2740002F)); + builder.AddCubicBezier(new Vector2(248.951996F, -23.4510002F), new Vector2(250.304993F, -18.2439995F), new Vector2(253.011002F, -13.6529999F)); + builder.AddCubicBezier(new Vector2(255.716995F, -9.06000042F), new Vector2(259.385986F, -5.43200016F), new Vector2(264.019989F, -2.76799989F)); + builder.AddCubicBezier(new Vector2(268.652008F, -0.101999998F), new Vector2(273.92099F, 1.23000002F), new Vector2(279.825012F, 1.23000002F)); + builder.AddCubicBezier(new Vector2(284.415985F, 1.23000002F), new Vector2(288.721008F, 0.368999988F), new Vector2(292.73999F, -1.35300004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: Pre-comp 1 + // - - - - Layer: second Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0084() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(234.5F, -3.56699991F)); + builder.AddCubicBezier(new Vector2(238.393997F, -6.76499987F), new Vector2(240.341995F, -11.1099997F), new Vector2(240.341995F, -16.6049995F)); + builder.AddCubicBezier(new Vector2(240.341995F, -20.2119999F), new Vector2(239.582993F, -23.1240005F), new Vector2(238.067001F, -25.3379993F)); + builder.AddCubicBezier(new Vector2(236.548996F, -27.552F), new Vector2(234.600998F, -29.3139992F), new Vector2(232.223999F, -30.6270008F)); + builder.AddCubicBezier(new Vector2(229.845001F, -31.9379997F), new Vector2(227.343994F, -32.9840012F), new Vector2(224.720993F, -33.7639999F)); + builder.AddCubicBezier(new Vector2(222.095993F, -34.5419998F), new Vector2(219.574997F, -35.3009987F), new Vector2(217.156998F, -36.0390015F)); + builder.AddCubicBezier(new Vector2(214.737F, -36.7770004F), new Vector2(212.789993F, -37.6780014F), new Vector2(211.313995F, -38.7449989F)); + builder.AddCubicBezier(new Vector2(209.837997F, -39.8100014F), new Vector2(209.100006F, -41.3279991F), new Vector2(209.100006F, -43.2960014F)); + builder.AddCubicBezier(new Vector2(209.100006F, -45.1809998F), new Vector2(209.940002F, -46.6980019F), new Vector2(211.621994F, -47.8470001F)); + builder.AddCubicBezier(new Vector2(213.302002F, -48.9939995F), new Vector2(215.742004F, -49.5690002F), new Vector2(218.940002F, -49.5690002F)); + builder.AddCubicBezier(new Vector2(221.973007F, -49.5690002F), new Vector2(224.679001F, -48.9939995F), new Vector2(227.057999F, -47.8470001F)); + builder.AddCubicBezier(new Vector2(229.434998F, -46.6980019F), new Vector2(231.485992F, -45.0579987F), new Vector2(233.207993F, -42.9269981F)); + builder.AddLine(new Vector2(240.341995F, -50.0610008F)); + builder.AddCubicBezier(new Vector2(238.044998F, -53.2589989F), new Vector2(235.115005F, -55.6580009F), new Vector2(231.548004F, -57.257F)); + builder.AddCubicBezier(new Vector2(227.981003F, -58.855999F), new Vector2(223.899994F, -59.6549988F), new Vector2(219.309006F, -59.6549988F)); + builder.AddCubicBezier(new Vector2(214.962006F, -59.6549988F), new Vector2(211.231003F, -58.9570007F), new Vector2(208.115997F, -57.5639992F)); + builder.AddCubicBezier(new Vector2(204.998993F, -56.1689987F), new Vector2(202.600998F, -54.1819992F), new Vector2(200.921005F, -51.598999F)); + builder.AddCubicBezier(new Vector2(199.238998F, -49.0159988F), new Vector2(198.399002F, -45.9599991F), new Vector2(198.399002F, -42.4350014F)); + builder.AddCubicBezier(new Vector2(198.399002F, -38.9080009F), new Vector2(199.156998F, -36.0589981F), new Vector2(200.675003F, -33.887001F)); + builder.AddCubicBezier(new Vector2(202.190994F, -31.7129993F), new Vector2(204.138F, -30.0119991F), new Vector2(206.516998F, -28.7819996F)); + builder.AddCubicBezier(new Vector2(208.893997F, -27.552F), new Vector2(211.416F, -26.5680008F), new Vector2(214.082001F, -25.8299999F)); + builder.AddCubicBezier(new Vector2(216.746002F, -25.0919991F), new Vector2(219.266998F, -24.3330002F), new Vector2(221.645996F, -23.5550003F)); + builder.AddCubicBezier(new Vector2(224.022995F, -22.7749996F), new Vector2(225.970993F, -21.7910004F), new Vector2(227.488998F, -20.6030006F)); + builder.AddCubicBezier(new Vector2(229.005005F, -19.4130001F), new Vector2(229.764008F, -17.7520008F), new Vector2(229.764008F, -15.6210003F)); + builder.AddCubicBezier(new Vector2(229.764008F, -13.4879999F), new Vector2(228.820007F, -11.8269997F), new Vector2(226.934998F, -10.6389999F)); + builder.AddCubicBezier(new Vector2(225.048004F, -9.44900036F), new Vector2(222.384003F, -8.85599995F), new Vector2(218.940002F, -8.85599995F)); + builder.AddCubicBezier(new Vector2(215.496002F, -8.85599995F), new Vector2(212.378998F, -9.48999977F), new Vector2(209.591995F, -10.7620001F)); + builder.AddCubicBezier(new Vector2(206.802994F, -12.0319996F), new Vector2(204.343002F, -13.9799995F), new Vector2(202.212006F, -16.6049995F)); + builder.AddLine(new Vector2(195.078003F, -9.47099972F)); + builder.AddCubicBezier(new Vector2(196.880997F, -7.25699997F), new Vector2(198.992996F, -5.3499999F), new Vector2(201.412994F, -3.75099993F)); + builder.AddCubicBezier(new Vector2(203.830994F, -2.15199995F), new Vector2(206.516998F, -0.921999991F), new Vector2(209.468994F, -0.0610000007F)); + builder.AddCubicBezier(new Vector2(212.421005F, 0.800000012F), new Vector2(215.535995F, 1.23000002F), new Vector2(218.817001F, 1.23000002F)); + builder.AddCubicBezier(new Vector2(225.376007F, 1.23000002F), new Vector2(230.604004F, -0.368999988F), new Vector2(234.5F, -3.56699991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: Pre-comp 1 + // - - - - Layer: second Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0085() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(174.291F, -1.35300004F)); + builder.AddCubicBezier(new Vector2(178.307999F, -3.07500005F), new Vector2(181.751999F, -5.57499981F), new Vector2(184.623001F, -8.85599995F)); + builder.AddLine(new Vector2(177.488998F, -16.1130009F)); + builder.AddCubicBezier(new Vector2(175.520996F, -13.816F), new Vector2(173.162994F, -12.0939999F), new Vector2(170.417007F, -10.9469995F)); + builder.AddCubicBezier(new Vector2(167.669006F, -9.79800034F), new Vector2(164.654999F, -9.22500038F), new Vector2(161.376007F, -9.22500038F)); + builder.AddCubicBezier(new Vector2(157.440002F, -9.22500038F), new Vector2(153.953995F, -10.0649996F), new Vector2(150.921005F, -11.7469997F)); + builder.AddCubicBezier(new Vector2(147.886002F, -13.427F), new Vector2(145.548996F, -15.8059998F), new Vector2(143.910004F, -18.8810005F)); + builder.AddCubicBezier(new Vector2(142.268997F, -21.9559994F), new Vector2(141.449997F, -25.5419998F), new Vector2(141.449997F, -29.6429996F)); + builder.AddCubicBezier(new Vector2(141.449997F, -33.6599998F), new Vector2(142.227997F, -37.1459999F), new Vector2(143.787003F, -40.0979996F)); + builder.AddCubicBezier(new Vector2(145.343994F, -43.0499992F), new Vector2(147.557999F, -45.3450012F), new Vector2(150.429001F, -46.9860001F)); + builder.AddCubicBezier(new Vector2(153.298004F, -48.625F), new Vector2(156.619003F, -49.4459991F), new Vector2(160.391998F, -49.4459991F)); + builder.AddCubicBezier(new Vector2(163.998993F, -49.4459991F), new Vector2(167.074005F, -48.6870003F), new Vector2(169.617004F, -47.1710014F)); + builder.AddCubicBezier(new Vector2(172.158005F, -45.6529999F), new Vector2(174.126007F, -43.5209999F), new Vector2(175.520996F, -40.7750015F)); + builder.AddCubicBezier(new Vector2(176.914001F, -38.0270004F), new Vector2(177.612F, -34.6860008F), new Vector2(177.612F, -30.75F)); + builder.AddLine(new Vector2(181.671005F, -34.3170013F)); + builder.AddLine(new Vector2(138.251999F, -34.3170013F)); + builder.AddLine(new Vector2(138.251999F, -25.0919991F)); + builder.AddLine(new Vector2(187.574997F, -25.0919991F)); + builder.AddCubicBezier(new Vector2(187.820999F, -26.2390003F), new Vector2(187.983994F, -27.2849998F), new Vector2(188.067001F, -28.2290001F)); + builder.AddCubicBezier(new Vector2(188.147995F, -29.1709995F), new Vector2(188.190002F, -30.052F), new Vector2(188.190002F, -30.8729992F)); + builder.AddCubicBezier(new Vector2(188.190002F, -36.4480019F), new Vector2(187.020996F, -41.4090004F), new Vector2(184.684006F, -45.7560005F)); + builder.AddCubicBezier(new Vector2(182.347F, -50.1010017F), new Vector2(179.087997F, -53.5050011F), new Vector2(174.906006F, -55.9650002F)); + builder.AddCubicBezier(new Vector2(170.723999F, -58.4249992F), new Vector2(165.966995F, -59.6549988F), new Vector2(160.638F, -59.6549988F)); + builder.AddCubicBezier(new Vector2(154.979996F, -59.6549988F), new Vector2(149.875F, -58.3219986F), new Vector2(145.324005F, -55.6580009F)); + builder.AddCubicBezier(new Vector2(140.772995F, -52.9920006F), new Vector2(137.164993F, -49.362999F), new Vector2(134.501007F, -44.7719994F)); + builder.AddCubicBezier(new Vector2(131.835007F, -40.1790009F), new Vector2(130.503006F, -35.0130005F), new Vector2(130.503006F, -29.2740002F)); + builder.AddCubicBezier(new Vector2(130.503006F, -23.4510002F), new Vector2(131.856003F, -18.2439995F), new Vector2(134.561996F, -13.6529999F)); + builder.AddCubicBezier(new Vector2(137.268005F, -9.06000042F), new Vector2(140.936005F, -5.43200016F), new Vector2(145.570007F, -2.76799989F)); + builder.AddCubicBezier(new Vector2(150.201996F, -0.101999998F), new Vector2(155.472F, 1.23000002F), new Vector2(161.376007F, 1.23000002F)); + builder.AddCubicBezier(new Vector2(165.966995F, 1.23000002F), new Vector2(170.272003F, 0.368999988F), new Vector2(174.291F, -1.35300004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: Pre-comp 1 + // - - - - Layer: second Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0086() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(101.844002F, -45.2639999F)); + builder.AddCubicBezier(new Vector2(104.467003F, -47.887001F), new Vector2(107.829002F, -49.2000008F), new Vector2(111.93F, -49.2000008F)); + builder.AddCubicBezier(new Vector2(113.898003F, -49.2000008F), new Vector2(115.620003F, -48.9119987F), new Vector2(117.096001F, -48.3390007F)); + builder.AddCubicBezier(new Vector2(118.571999F, -47.7639999F), new Vector2(119.925003F, -46.8209991F), new Vector2(121.154999F, -45.5099983F)); + builder.AddLine(new Vector2(128.412003F, -53.0130005F)); + builder.AddCubicBezier(new Vector2(126.361F, -55.3899994F), new Vector2(124.147003F, -57.0919991F), new Vector2(121.769997F, -58.118F)); + builder.AddCubicBezier(new Vector2(119.390999F, -59.1419983F), new Vector2(116.726997F, -59.6549988F), new Vector2(113.775002F, -59.6549988F)); + builder.AddCubicBezier(new Vector2(107.295998F, -59.6549988F), new Vector2(102.335999F, -57.4410019F), new Vector2(98.8919983F, -53.0130005F)); + builder.AddCubicBezier(new Vector2(95.447998F, -48.5849991F), new Vector2(93.7259979F, -42.6389999F), new Vector2(93.7259979F, -35.1780014F)); + builder.AddLine(new Vector2(97.9079971F, -33.2099991F)); + builder.AddCubicBezier(new Vector2(97.9079971F, -38.6220016F), new Vector2(99.2190018F, -42.6389999F), new Vector2(101.844002F, -45.2639999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(97.9079971F, 0F)); + builder.AddLine(new Vector2(97.9079971F, -58.4249992F)); + builder.AddLine(new Vector2(86.8379974F, -58.4249992F)); + builder.AddLine(new Vector2(86.8379974F, 0F)); + builder.AddLine(new Vector2(97.9079971F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: Pre-comp 1 + // - - - - Layer: second Outlines + // - - ShapeGroup: t + CanvasGeometry Geometry_0087() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(72.6930008F, -51.7830009F)); + builder.AddLine(new Vector2(72.6930008F, -60.762001F)); + builder.AddLine(new Vector2(9.59399986F, -60.762001F)); + builder.AddLine(new Vector2(9.59399986F, -51.7830009F)); + builder.AddLine(new Vector2(72.6930008F, -51.7830009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(23.9850006F, 0F)); + builder.AddLine(new Vector2(37.0229988F, -85.3619995F)); + builder.AddLine(new Vector2(27.552F, -85.3619995F)); + builder.AddLine(new Vector2(14.5139999F, 0F)); + builder.AddLine(new Vector2(23.9850006F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(68.8799973F, -26.3220005F)); + builder.AddLine(new Vector2(68.8799973F, -35.3009987F)); + builder.AddLine(new Vector2(5.90399981F, -35.3009987F)); + builder.AddLine(new Vector2(5.90399981F, -26.3220005F)); + builder.AddLine(new Vector2(68.8799973F, -26.3220005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(50.3069992F, 0F)); + builder.AddLine(new Vector2(63.3450012F, -85.3619995F)); + builder.AddLine(new Vector2(53.8740005F, -85.3619995F)); + builder.AddLine(new Vector2(40.8359985F, 0F)); + builder.AddLine(new Vector2(50.3069992F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0088() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(233.324005F, -11.0039997F)); + builder.AddLine(new Vector2(233.324005F, -13.3000002F)); + builder.AddLine(new Vector2(224.251999F, -13.3000002F)); + builder.AddLine(new Vector2(224.251999F, -11.0039997F)); + builder.AddLine(new Vector2(233.324005F, -11.0039997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(230.048004F, 0F)); + builder.AddLine(new Vector2(230.048004F, -18.8719997F)); + builder.AddLine(new Vector2(227.528F, -18.8719997F)); + builder.AddLine(new Vector2(227.528F, 0F)); + builder.AddLine(new Vector2(230.048004F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0089() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(220.906006F, -0.307999998F)); + builder.AddCubicBezier(new Vector2(221.792007F, -0.699999988F), new Vector2(222.544006F, -1.25F), new Vector2(223.160004F, -1.96000004F)); + builder.AddLine(new Vector2(221.507996F, -3.6400001F)); + builder.AddCubicBezier(new Vector2(221.078003F, -3.15400004F), new Vector2(220.570007F, -2.78600001F), new Vector2(219.981995F, -2.53399992F)); + builder.AddCubicBezier(new Vector2(219.393997F, -2.28200006F), new Vector2(218.744995F, -2.1559999F), new Vector2(218.035995F, -2.1559999F)); + builder.AddCubicBezier(new Vector2(217.195999F, -2.1559999F), new Vector2(216.449005F, -2.352F), new Vector2(215.796005F, -2.74399996F)); + builder.AddCubicBezier(new Vector2(215.141998F, -3.13599992F), new Vector2(214.628998F, -3.66799998F), new Vector2(214.255997F, -4.34000015F)); + builder.AddCubicBezier(new Vector2(213.882004F, -5.01200008F), new Vector2(213.695999F, -5.78599977F), new Vector2(213.695999F, -6.66400003F)); + builder.AddCubicBezier(new Vector2(213.695999F, -7.54099989F), new Vector2(213.882004F, -8.31599998F), new Vector2(214.255997F, -8.98799992F)); + builder.AddCubicBezier(new Vector2(214.628998F, -9.65999985F), new Vector2(215.141998F, -10.1870003F), new Vector2(215.796005F, -10.5699997F)); + builder.AddCubicBezier(new Vector2(216.449005F, -10.9519997F), new Vector2(217.195999F, -11.1440001F), new Vector2(218.035995F, -11.1440001F)); + builder.AddCubicBezier(new Vector2(218.725998F, -11.1440001F), new Vector2(219.369995F, -11.0179996F), new Vector2(219.968002F, -10.7659998F)); + builder.AddCubicBezier(new Vector2(220.565002F, -10.5139999F), new Vector2(221.069F, -10.1450005F), new Vector2(221.479996F, -9.65999985F)); + builder.AddLine(new Vector2(223.160004F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(222.524994F, -12.0679998F), new Vector2(221.768997F, -12.6230001F), new Vector2(220.891998F, -13.0059996F)); + builder.AddCubicBezier(new Vector2(220.014008F, -13.3879995F), new Vector2(219.061996F, -13.5799999F), new Vector2(218.035995F, -13.5799999F)); + builder.AddCubicBezier(new Vector2(216.729004F, -13.5799999F), new Vector2(215.548004F, -13.276F), new Vector2(214.494003F, -12.6700001F)); + builder.AddCubicBezier(new Vector2(213.438995F, -12.0629997F), new Vector2(212.608002F, -11.2370005F), new Vector2(212.001999F, -10.1920004F)); + builder.AddCubicBezier(new Vector2(211.395004F, -9.14599991F), new Vector2(211.091995F, -7.96999979F), new Vector2(211.091995F, -6.66400003F)); + builder.AddCubicBezier(new Vector2(211.091995F, -5.37599993F), new Vector2(211.395004F, -4.204F), new Vector2(212.001999F, -3.1500001F)); + builder.AddCubicBezier(new Vector2(212.608002F, -2.09500003F), new Vector2(213.438995F, -1.25999999F), new Vector2(214.494003F, -0.643999994F)); + builder.AddCubicBezier(new Vector2(215.548004F, -0.0280000009F), new Vector2(216.729004F, 0.280000001F), new Vector2(218.035995F, 0.280000001F)); + builder.AddCubicBezier(new Vector2(219.061996F, 0.280000001F), new Vector2(220.018997F, 0.0839999989F), new Vector2(220.906006F, -0.307999998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0090() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(206.052002F, -0.307999998F)); + builder.AddCubicBezier(new Vector2(206.966003F, -0.699999988F), new Vector2(207.75F, -1.26900005F), new Vector2(208.404007F, -2.01600003F)); + builder.AddLine(new Vector2(206.779999F, -3.66799998F)); + builder.AddCubicBezier(new Vector2(206.332001F, -3.14499998F), new Vector2(205.794998F, -2.75300002F), new Vector2(205.169998F, -2.4920001F)); + builder.AddCubicBezier(new Vector2(204.544006F, -2.23000002F), new Vector2(203.858002F, -2.0999999F), new Vector2(203.112F, -2.0999999F)); + builder.AddCubicBezier(new Vector2(202.216003F, -2.0999999F), new Vector2(201.421997F, -2.29099989F), new Vector2(200.731995F, -2.67400002F)); + builder.AddCubicBezier(new Vector2(200.041F, -3.05599999F), new Vector2(199.509003F, -3.59800005F), new Vector2(199.136002F, -4.29799986F)); + builder.AddCubicBezier(new Vector2(198.761993F, -4.99800014F), new Vector2(198.576004F, -5.81400013F), new Vector2(198.576004F, -6.74800014F)); + builder.AddCubicBezier(new Vector2(198.576004F, -7.66200018F), new Vector2(198.753006F, -8.45600033F), new Vector2(199.108002F, -9.12800026F)); + builder.AddCubicBezier(new Vector2(199.462006F, -9.80000019F), new Vector2(199.966003F, -10.3219995F), new Vector2(200.619995F, -10.6960001F)); + builder.AddCubicBezier(new Vector2(201.272995F, -11.0690002F), new Vector2(202.029007F, -11.2559996F), new Vector2(202.888F, -11.2559996F)); + builder.AddCubicBezier(new Vector2(203.709F, -11.2559996F), new Vector2(204.408997F, -11.0830002F), new Vector2(204.988007F, -10.7379999F)); + builder.AddCubicBezier(new Vector2(205.565994F, -10.3920002F), new Vector2(206.014008F, -9.90699959F), new Vector2(206.332001F, -9.28199959F)); + builder.AddCubicBezier(new Vector2(206.649002F, -8.65600014F), new Vector2(206.807999F, -7.89599991F), new Vector2(206.807999F, -7F)); + builder.AddLine(new Vector2(207.731995F, -7.8119998F)); + builder.AddLine(new Vector2(197.848007F, -7.8119998F)); + builder.AddLine(new Vector2(197.848007F, -5.71199989F)); + builder.AddLine(new Vector2(209.076004F, -5.71199989F)); + builder.AddCubicBezier(new Vector2(209.132004F, -5.97300005F), new Vector2(209.169006F, -6.21099997F), new Vector2(209.188004F, -6.42600012F)); + builder.AddCubicBezier(new Vector2(209.205994F, -6.63999987F), new Vector2(209.216003F, -6.84100008F), new Vector2(209.216003F, -7.02799988F)); + builder.AddCubicBezier(new Vector2(209.216003F, -8.29699993F), new Vector2(208.949997F, -9.42599964F), new Vector2(208.417999F, -10.4160004F)); + builder.AddCubicBezier(new Vector2(207.886002F, -11.4049997F), new Vector2(207.143997F, -12.1800003F), new Vector2(206.192001F, -12.7399998F)); + builder.AddCubicBezier(new Vector2(205.240005F, -13.3000002F), new Vector2(204.156998F, -13.5799999F), new Vector2(202.944F, -13.5799999F)); + builder.AddCubicBezier(new Vector2(201.656006F, -13.5799999F), new Vector2(200.494003F, -13.276F), new Vector2(199.457993F, -12.6700001F)); + builder.AddCubicBezier(new Vector2(198.421997F, -12.0629997F), new Vector2(197.600006F, -11.2370005F), new Vector2(196.994003F, -10.1920004F)); + builder.AddCubicBezier(new Vector2(196.386993F, -9.14599991F), new Vector2(196.084F, -7.96999979F), new Vector2(196.084F, -6.66400003F)); + builder.AddCubicBezier(new Vector2(196.084F, -5.33799982F), new Vector2(196.391998F, -4.15299988F), new Vector2(197.007996F, -3.10800004F)); + builder.AddCubicBezier(new Vector2(197.623993F, -2.06200004F), new Vector2(198.459F, -1.23599994F), new Vector2(199.514008F, -0.629999995F)); + builder.AddCubicBezier(new Vector2(200.567993F, -0.023F), new Vector2(201.768005F, 0.280000001F), new Vector2(203.112F, 0.280000001F)); + builder.AddCubicBezier(new Vector2(204.156998F, 0.280000001F), new Vector2(205.136993F, 0.0839999989F), new Vector2(206.052002F, -0.307999998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0091() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(193.171997F, -16.4220009F)); + builder.AddCubicBezier(new Vector2(193.470001F, -16.7299995F), new Vector2(193.619995F, -17.1170006F), new Vector2(193.619995F, -17.5839996F)); + builder.AddCubicBezier(new Vector2(193.619995F, -18.0319996F), new Vector2(193.470001F, -18.4099998F), new Vector2(193.171997F, -18.7180004F)); + builder.AddCubicBezier(new Vector2(192.873001F, -19.0259991F), new Vector2(192.490005F, -19.1800003F), new Vector2(192.024002F, -19.1800003F)); + builder.AddCubicBezier(new Vector2(191.576004F, -19.1800003F), new Vector2(191.197998F, -19.0259991F), new Vector2(190.889999F, -18.7180004F)); + builder.AddCubicBezier(new Vector2(190.582001F, -18.4099998F), new Vector2(190.427994F, -18.0319996F), new Vector2(190.427994F, -17.5839996F)); + builder.AddCubicBezier(new Vector2(190.427994F, -17.1170006F), new Vector2(190.582001F, -16.7299995F), new Vector2(190.889999F, -16.4220009F)); + builder.AddCubicBezier(new Vector2(191.197998F, -16.1140003F), new Vector2(191.576004F, -15.96F), new Vector2(192.024002F, -15.96F)); + builder.AddCubicBezier(new Vector2(192.490005F, -15.96F), new Vector2(192.873001F, -16.1140003F), new Vector2(193.171997F, -16.4220009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(191.016006F, 5.33400011F)); + builder.AddCubicBezier(new Vector2(191.688004F, 4.98799992F), new Vector2(192.229004F, 4.48899984F), new Vector2(192.639999F, 3.83599997F)); + builder.AddCubicBezier(new Vector2(193.050003F, 3.18199992F), new Vector2(193.255997F, 2.36999989F), new Vector2(193.255997F, 1.39999998F)); + builder.AddLine(new Vector2(193.255997F, -13.3000002F)); + builder.AddLine(new Vector2(190.735992F, -13.3000002F)); + builder.AddLine(new Vector2(190.735992F, 1.42799997F)); + builder.AddCubicBezier(new Vector2(190.735992F, 2.11800003F), new Vector2(190.529999F, 2.63599992F), new Vector2(190.119995F, 2.98200011F)); + builder.AddCubicBezier(new Vector2(189.709F, 3.3269999F), new Vector2(189.223999F, 3.5F), new Vector2(188.664001F, 3.5F)); + builder.AddCubicBezier(new Vector2(188.235001F, 3.5F), new Vector2(187.865997F, 3.42499995F), new Vector2(187.557999F, 3.27600002F)); + builder.AddCubicBezier(new Vector2(187.25F, 3.12599993F), new Vector2(186.966003F, 2.89299989F), new Vector2(186.703995F, 2.57599998F)); + builder.AddLine(new Vector2(185.080002F, 4.22800016F)); + builder.AddCubicBezier(new Vector2(185.546997F, 4.75F), new Vector2(186.074005F, 5.15199995F), new Vector2(186.662003F, 5.43200016F)); + builder.AddCubicBezier(new Vector2(187.25F, 5.71199989F), new Vector2(187.973999F, 5.85200024F), new Vector2(188.832001F, 5.85200024F)); + builder.AddCubicBezier(new Vector2(189.615997F, 5.85200024F), new Vector2(190.343994F, 5.6789999F), new Vector2(191.016006F, 5.33400011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0092() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(178.528F, -2.74399996F)); + builder.AddCubicBezier(new Vector2(177.873993F, -3.13599992F), new Vector2(177.360992F, -3.67199993F), new Vector2(176.988007F, -4.35400009F)); + builder.AddCubicBezier(new Vector2(176.613998F, -5.03499985F), new Vector2(176.427994F, -5.81400013F), new Vector2(176.427994F, -6.69199991F)); + builder.AddCubicBezier(new Vector2(176.427994F, -7.55000019F), new Vector2(176.613998F, -8.31599998F), new Vector2(176.988007F, -8.98799992F)); + builder.AddCubicBezier(new Vector2(177.360992F, -9.65999985F), new Vector2(177.873993F, -10.1870003F), new Vector2(178.528F, -10.5699997F)); + builder.AddCubicBezier(new Vector2(179.181F, -10.9519997F), new Vector2(179.917999F, -11.1440001F), new Vector2(180.740005F, -11.1440001F)); + builder.AddCubicBezier(new Vector2(181.598007F, -11.1440001F), new Vector2(182.350006F, -10.9519997F), new Vector2(182.994003F, -10.5699997F)); + builder.AddCubicBezier(new Vector2(183.638F, -10.1870003F), new Vector2(184.151001F, -9.65999985F), new Vector2(184.533997F, -8.98799992F)); + builder.AddCubicBezier(new Vector2(184.916F, -8.31599998F), new Vector2(185.108002F, -7.55000019F), new Vector2(185.108002F, -6.69199991F)); + builder.AddCubicBezier(new Vector2(185.108002F, -5.81400013F), new Vector2(184.921005F, -5.03499985F), new Vector2(184.548004F, -4.35400009F)); + builder.AddCubicBezier(new Vector2(184.173996F, -3.67199993F), new Vector2(183.660995F, -3.13599992F), new Vector2(183.007996F, -2.74399996F)); + builder.AddCubicBezier(new Vector2(182.354004F, -2.352F), new Vector2(181.598007F, -2.1559999F), new Vector2(180.740005F, -2.1559999F)); + builder.AddCubicBezier(new Vector2(179.917999F, -2.1559999F), new Vector2(179.181F, -2.352F), new Vector2(178.528F, -2.74399996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(184.281998F, -0.643999994F)); + builder.AddCubicBezier(new Vector2(185.335999F, -1.25999999F), new Vector2(186.171997F, -2.09500003F), new Vector2(186.787994F, -3.1500001F)); + builder.AddCubicBezier(new Vector2(187.404007F, -4.204F), new Vector2(187.712006F, -5.38500023F), new Vector2(187.712006F, -6.69199991F)); + builder.AddCubicBezier(new Vector2(187.712006F, -7.98000002F), new Vector2(187.404007F, -9.14599991F), new Vector2(186.787994F, -10.1920004F)); + builder.AddCubicBezier(new Vector2(186.171997F, -11.2370005F), new Vector2(185.335999F, -12.0629997F), new Vector2(184.281998F, -12.6700001F)); + builder.AddCubicBezier(new Vector2(183.227005F, -13.276F), new Vector2(182.046005F, -13.5799999F), new Vector2(180.740005F, -13.5799999F)); + builder.AddCubicBezier(new Vector2(179.451996F, -13.5799999F), new Vector2(178.285004F, -13.2720003F), new Vector2(177.240005F, -12.6560001F)); + builder.AddCubicBezier(new Vector2(176.194F, -12.04F), new Vector2(175.363998F, -11.2139997F), new Vector2(174.748001F, -10.1780005F)); + builder.AddCubicBezier(new Vector2(174.132004F, -9.1420002F), new Vector2(173.824005F, -7.98000002F), new Vector2(173.824005F, -6.69199991F)); + builder.AddCubicBezier(new Vector2(173.824005F, -5.38500023F), new Vector2(174.132004F, -4.204F), new Vector2(174.748001F, -3.1500001F)); + builder.AddCubicBezier(new Vector2(175.363998F, -2.09500003F), new Vector2(176.194F, -1.25999999F), new Vector2(177.240005F, -0.643999994F)); + builder.AddCubicBezier(new Vector2(178.285004F, -0.0280000009F), new Vector2(179.451996F, 0.280000001F), new Vector2(180.740005F, 0.280000001F)); + builder.AddCubicBezier(new Vector2(182.046005F, 0.280000001F), new Vector2(183.227005F, -0.0280000009F), new Vector2(184.281998F, -0.643999994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0093() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(167.300003F, -10.3039999F)); + builder.AddCubicBezier(new Vector2(167.897003F, -10.901F), new Vector2(168.662003F, -11.1999998F), new Vector2(169.595993F, -11.1999998F)); + builder.AddCubicBezier(new Vector2(170.044006F, -11.1999998F), new Vector2(170.436005F, -11.1339998F), new Vector2(170.772003F, -11.0039997F)); + builder.AddCubicBezier(new Vector2(171.108002F, -10.8730001F), new Vector2(171.416F, -10.658F), new Vector2(171.695999F, -10.3599997F)); + builder.AddLine(new Vector2(173.348007F, -12.0679998F)); + builder.AddCubicBezier(new Vector2(172.880997F, -12.6090002F), new Vector2(172.376999F, -12.9960003F), new Vector2(171.835999F, -13.2299995F)); + builder.AddCubicBezier(new Vector2(171.294006F, -13.4630003F), new Vector2(170.688004F, -13.5799999F), new Vector2(170.016006F, -13.5799999F)); + builder.AddCubicBezier(new Vector2(168.541F, -13.5799999F), new Vector2(167.412003F, -13.0760002F), new Vector2(166.628006F, -12.0679998F)); + builder.AddCubicBezier(new Vector2(165.843994F, -11.0600004F), new Vector2(165.451996F, -9.70600033F), new Vector2(165.451996F, -8.00800037F)); + builder.AddLine(new Vector2(166.404007F, -7.55999994F)); + builder.AddCubicBezier(new Vector2(166.404007F, -8.79199982F), new Vector2(166.701996F, -9.70600033F), new Vector2(167.300003F, -10.3039999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(166.404007F, 0F)); + builder.AddLine(new Vector2(166.404007F, -13.3000002F)); + builder.AddLine(new Vector2(163.884003F, -13.3000002F)); + builder.AddLine(new Vector2(163.884003F, 0F)); + builder.AddLine(new Vector2(166.404007F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0094() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(149.996002F, 0F)); + builder.AddLine(new Vector2(149.996002F, -19.4319992F)); + builder.AddLine(new Vector2(147.363998F, -19.4319992F)); + builder.AddLine(new Vector2(147.363998F, 0F)); + builder.AddLine(new Vector2(149.996002F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(154.559998F, -7.55999994F)); + builder.AddCubicBezier(new Vector2(155.753998F, -7.55999994F), new Vector2(156.828003F, -7.80200005F), new Vector2(157.779999F, -8.28800011F)); + builder.AddCubicBezier(new Vector2(158.731995F, -8.77299976F), new Vector2(159.483002F, -9.46399975F), new Vector2(160.033997F, -10.3599997F)); + builder.AddCubicBezier(new Vector2(160.584F, -11.2559996F), new Vector2(160.860001F, -12.3009996F), new Vector2(160.860001F, -13.4960003F)); + builder.AddCubicBezier(new Vector2(160.860001F, -14.7089996F), new Vector2(160.584F, -15.7589998F), new Vector2(160.033997F, -16.6459999F)); + builder.AddCubicBezier(new Vector2(159.483002F, -17.5319996F), new Vector2(158.731995F, -18.2180004F), new Vector2(157.779999F, -18.7040005F)); + builder.AddCubicBezier(new Vector2(156.828003F, -19.1889992F), new Vector2(155.753998F, -19.4319992F), new Vector2(154.559998F, -19.4319992F)); + builder.AddLine(new Vector2(149.128006F, -19.4319992F)); + builder.AddLine(new Vector2(149.128006F, -17.1359997F)); + builder.AddLine(new Vector2(154.419998F, -17.1359997F)); + builder.AddCubicBezier(new Vector2(155.147995F, -17.1359997F), new Vector2(155.796005F, -16.9860001F), new Vector2(156.365997F, -16.6879997F)); + builder.AddCubicBezier(new Vector2(156.934998F, -16.3889999F), new Vector2(157.382996F, -15.9689999F), new Vector2(157.710007F, -15.4280005F)); + builder.AddCubicBezier(new Vector2(158.035995F, -14.8859997F), new Vector2(158.199997F, -14.2419996F), new Vector2(158.199997F, -13.4960003F)); + builder.AddCubicBezier(new Vector2(158.199997F, -12.7489996F), new Vector2(158.035995F, -12.1049995F), new Vector2(157.710007F, -11.5640001F)); + builder.AddCubicBezier(new Vector2(157.382996F, -11.0220003F), new Vector2(156.934998F, -10.6020002F), new Vector2(156.365997F, -10.3039999F)); + builder.AddCubicBezier(new Vector2(155.796005F, -10.0050001F), new Vector2(155.147995F, -9.85599995F), new Vector2(154.419998F, -9.85599995F)); + builder.AddLine(new Vector2(149.128006F, -9.85599995F)); + builder.AddLine(new Vector2(149.128006F, -7.55999994F)); + builder.AddLine(new Vector2(154.559998F, -7.55999994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0095() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(135.296005F, -0.266000003F)); + builder.AddCubicBezier(new Vector2(136.248001F, -0.648000002F), new Vector2(137.059998F, -1.24100006F), new Vector2(137.731995F, -2.04399991F)); + builder.AddLine(new Vector2(135.352005F, -4.39599991F)); + builder.AddCubicBezier(new Vector2(134.940994F, -3.9289999F), new Vector2(134.464996F, -3.579F), new Vector2(133.923996F, -3.34599996F)); + builder.AddCubicBezier(new Vector2(133.382004F, -3.11199999F), new Vector2(132.785004F, -2.99600005F), new Vector2(132.132004F, -2.99600005F)); + builder.AddCubicBezier(new Vector2(131.404007F, -2.99600005F), new Vector2(130.774002F, -3.1500001F), new Vector2(130.242004F, -3.45799994F)); + builder.AddCubicBezier(new Vector2(129.710007F, -3.76600003F), new Vector2(129.298996F, -4.20900011F), new Vector2(129.009995F, -4.78800011F)); + builder.AddCubicBezier(new Vector2(128.720001F, -5.36600018F), new Vector2(128.576004F, -6.04799986F), new Vector2(128.576004F, -6.83199978F)); + builder.AddCubicBezier(new Vector2(128.576004F, -7.61600018F), new Vector2(128.710999F, -8.28800011F), new Vector2(128.981995F, -8.84799957F)); + builder.AddCubicBezier(new Vector2(129.251999F, -9.40799999F), new Vector2(129.634995F, -9.84599972F), new Vector2(130.130005F, -10.1639996F)); + builder.AddCubicBezier(new Vector2(130.623993F, -10.4809999F), new Vector2(131.207993F, -10.6400003F), new Vector2(131.880005F, -10.6400003F)); + builder.AddCubicBezier(new Vector2(132.496002F, -10.6400003F), new Vector2(133.022995F, -10.5F), new Vector2(133.462006F, -10.2200003F)); + builder.AddCubicBezier(new Vector2(133.899994F, -9.93999958F), new Vector2(134.231995F, -9.54300022F), new Vector2(134.455994F, -9.02999973F)); + builder.AddCubicBezier(new Vector2(134.679993F, -8.51599979F), new Vector2(134.800995F, -7.87699986F), new Vector2(134.820007F, -7.11199999F)); + builder.AddLine(new Vector2(136.667999F, -8.37199974F)); + builder.AddLine(new Vector2(126.811996F, -8.31599998F)); + builder.AddLine(new Vector2(126.811996F, -5.34800005F)); + builder.AddLine(new Vector2(138.516006F, -5.40399981F)); + builder.AddCubicBezier(new Vector2(138.608994F, -5.73999977F), new Vector2(138.669998F, -6.04300022F), new Vector2(138.697998F, -6.31400013F)); + builder.AddCubicBezier(new Vector2(138.725998F, -6.58400011F), new Vector2(138.740005F, -6.8499999F), new Vector2(138.740005F, -7.11199999F)); + builder.AddCubicBezier(new Vector2(138.740005F, -8.43700027F), new Vector2(138.440994F, -9.61299992F), new Vector2(137.843994F, -10.6400003F)); + builder.AddCubicBezier(new Vector2(137.246002F, -11.6660004F), new Vector2(136.434006F, -12.4689999F), new Vector2(135.408005F, -13.0480003F)); + builder.AddCubicBezier(new Vector2(134.380997F, -13.6260004F), new Vector2(133.186005F, -13.9160004F), new Vector2(131.824005F, -13.9160004F)); + builder.AddCubicBezier(new Vector2(130.442001F, -13.9160004F), new Vector2(129.201004F, -13.6079998F), new Vector2(128.100006F, -12.9919996F)); + builder.AddCubicBezier(new Vector2(126.998001F, -12.3760004F), new Vector2(126.129997F, -11.5310001F), new Vector2(125.496002F, -10.4580002F)); + builder.AddCubicBezier(new Vector2(124.861F, -9.38399982F), new Vector2(124.543999F, -8.17599964F), new Vector2(124.543999F, -6.83199978F)); + builder.AddCubicBezier(new Vector2(124.543999F, -5.44999981F), new Vector2(124.870003F, -4.21799994F), new Vector2(125.524002F, -3.13599992F)); + builder.AddCubicBezier(new Vector2(126.177002F, -2.05299997F), new Vector2(127.072998F, -1.20799994F), new Vector2(128.212006F, -0.601999998F)); + builder.AddCubicBezier(new Vector2(129.350006F, 0.00400000019F), new Vector2(130.656998F, 0.307999998F), new Vector2(132.132004F, 0.307999998F)); + builder.AddCubicBezier(new Vector2(133.289001F, 0.307999998F), new Vector2(134.343994F, 0.115999997F), new Vector2(135.296005F, -0.266000003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0096() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(121.617996F, -0.825999975F)); + builder.AddCubicBezier(new Vector2(122.615997F, -1.61899996F), new Vector2(123.115997F, -2.67799997F), new Vector2(123.115997F, -4.00400019F)); + builder.AddCubicBezier(new Vector2(123.115997F, -4.86199999F), new Vector2(122.957001F, -5.55800009F), new Vector2(122.639999F, -6.09000015F)); + builder.AddCubicBezier(new Vector2(122.321999F, -6.62200022F), new Vector2(121.912003F, -7.05100012F), new Vector2(121.407997F, -7.37799978F)); + builder.AddCubicBezier(new Vector2(120.903999F, -7.704F), new Vector2(120.372002F, -7.95599985F), new Vector2(119.811996F, -8.13399982F)); + builder.AddCubicBezier(new Vector2(119.251999F, -8.31099987F), new Vector2(118.723999F, -8.46500015F), new Vector2(118.230003F, -8.59599972F)); + builder.AddCubicBezier(new Vector2(117.735001F, -8.72599983F), new Vector2(117.323997F, -8.8760004F), new Vector2(116.998001F, -9.04399967F)); + builder.AddCubicBezier(new Vector2(116.670998F, -9.21199989F), new Vector2(116.508003F, -9.43599987F), new Vector2(116.508003F, -9.7159996F)); + builder.AddCubicBezier(new Vector2(116.508003F, -9.95800018F), new Vector2(116.628998F, -10.1540003F), new Vector2(116.872002F, -10.3039999F)); + builder.AddCubicBezier(new Vector2(117.113998F, -10.4530001F), new Vector2(117.477997F, -10.5279999F), new Vector2(117.963997F, -10.5279999F)); + builder.AddCubicBezier(new Vector2(118.468002F, -10.5279999F), new Vector2(118.986F, -10.4200001F), new Vector2(119.517998F, -10.2060003F)); + builder.AddCubicBezier(new Vector2(120.050003F, -9.99100018F), new Vector2(120.529999F, -9.63199997F), new Vector2(120.959999F, -9.12800026F)); + builder.AddLine(new Vector2(123.396004F, -11.6199999F)); + builder.AddCubicBezier(new Vector2(122.797997F, -12.4040003F), new Vector2(122.004997F, -12.9960003F), new Vector2(121.015999F, -13.3979998F)); + builder.AddCubicBezier(new Vector2(120.026001F, -13.7989998F), new Vector2(118.961998F, -14F), new Vector2(117.823997F, -14F)); + builder.AddCubicBezier(new Vector2(116.684998F, -14F), new Vector2(115.705002F, -13.8129997F), new Vector2(114.884003F, -13.4399996F)); + builder.AddCubicBezier(new Vector2(114.061996F, -13.066F), new Vector2(113.428001F, -12.5579996F), new Vector2(112.980003F, -11.9139996F)); + builder.AddCubicBezier(new Vector2(112.531998F, -11.2700005F), new Vector2(112.307999F, -10.5089998F), new Vector2(112.307999F, -9.63199997F)); + builder.AddCubicBezier(new Vector2(112.307999F, -8.79199982F), new Vector2(112.466003F, -8.10999966F), new Vector2(112.783997F, -7.58799982F)); + builder.AddCubicBezier(new Vector2(113.100998F, -7.06500006F), new Vector2(113.512001F, -6.65399981F), new Vector2(114.015999F, -6.35599995F)); + builder.AddCubicBezier(new Vector2(114.519997F, -6.05700016F), new Vector2(115.052002F, -5.81899977F), new Vector2(115.612F, -5.6420002F)); + builder.AddCubicBezier(new Vector2(116.171997F, -5.46400023F), new Vector2(116.708F, -5.30600023F), new Vector2(117.222F, -5.16599989F)); + builder.AddCubicBezier(new Vector2(117.735001F, -5.02600002F), new Vector2(118.150002F, -4.87599993F), new Vector2(118.468002F, -4.71799994F)); + builder.AddCubicBezier(new Vector2(118.785004F, -4.55900002F), new Vector2(118.944F, -4.3119998F), new Vector2(118.944F, -3.97600007F)); + builder.AddCubicBezier(new Vector2(118.944F, -3.6960001F), new Vector2(118.807999F, -3.48099995F), new Vector2(118.538002F, -3.33200002F)); + builder.AddCubicBezier(new Vector2(118.266998F, -3.18199992F), new Vector2(117.898003F, -3.10800004F), new Vector2(117.431999F, -3.10800004F)); + builder.AddCubicBezier(new Vector2(116.684998F, -3.10800004F), new Vector2(116.008003F, -3.24300003F), new Vector2(115.402F, -3.51399994F)); + builder.AddCubicBezier(new Vector2(114.794998F, -3.78399992F), new Vector2(114.258003F, -4.16200018F), new Vector2(113.792F, -4.64799976F)); + builder.AddLine(new Vector2(111.328003F, -2.18400002F)); + builder.AddCubicBezier(new Vector2(111.813004F, -1.67999995F), new Vector2(112.382004F, -1.23599994F), new Vector2(113.036003F, -0.853999972F)); + builder.AddCubicBezier(new Vector2(113.689003F, -0.470999986F), new Vector2(114.407997F, -0.172000006F), new Vector2(115.192001F, 0.0419999994F)); + builder.AddCubicBezier(new Vector2(115.975998F, 0.256000012F), new Vector2(116.768997F, 0.363999993F), new Vector2(117.571999F, 0.363999993F)); + builder.AddCubicBezier(new Vector2(119.269997F, 0.363999993F), new Vector2(120.619003F, -0.0320000015F), new Vector2(121.617996F, -0.825999975F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0097() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(101.458F, -4.01800013F)); + builder.AddCubicBezier(new Vector2(101F, -4.28800011F), new Vector2(100.640999F, -4.66599989F), new Vector2(100.379997F, -5.15199995F)); + builder.AddCubicBezier(new Vector2(100.117996F, -5.63700008F), new Vector2(99.987999F, -6.1880002F), new Vector2(99.987999F, -6.8039999F)); + builder.AddCubicBezier(new Vector2(99.987999F, -7.42000008F), new Vector2(100.117996F, -7.96999979F), new Vector2(100.379997F, -8.45600033F)); + builder.AddCubicBezier(new Vector2(100.640999F, -8.94099998F), new Vector2(101F, -9.31900024F), new Vector2(101.458F, -9.59000015F)); + builder.AddCubicBezier(new Vector2(101.915001F, -9.85999966F), new Vector2(102.442001F, -9.99600029F), new Vector2(103.040001F, -9.99600029F)); + builder.AddCubicBezier(new Vector2(103.637001F, -9.99600029F), new Vector2(104.160004F, -9.85999966F), new Vector2(104.608002F, -9.59000015F)); + builder.AddCubicBezier(new Vector2(105.056F, -9.31900024F), new Vector2(105.415001F, -8.94099998F), new Vector2(105.685997F, -8.45600033F)); + builder.AddCubicBezier(new Vector2(105.956001F, -7.96999979F), new Vector2(106.092003F, -7.42000008F), new Vector2(106.092003F, -6.8039999F)); + builder.AddCubicBezier(new Vector2(106.092003F, -6.1880002F), new Vector2(105.956001F, -5.63700008F), new Vector2(105.685997F, -5.15199995F)); + builder.AddCubicBezier(new Vector2(105.415001F, -4.66599989F), new Vector2(105.051003F, -4.28800011F), new Vector2(104.594002F, -4.01800013F)); + builder.AddCubicBezier(new Vector2(104.136002F, -3.74699998F), new Vector2(103.609001F, -3.61199999F), new Vector2(103.012001F, -3.61199999F)); + builder.AddCubicBezier(new Vector2(102.432999F, -3.61199999F), new Vector2(101.915001F, -3.74699998F), new Vector2(101.458F, -4.01800013F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(100.183998F, 5.73999977F)); + builder.AddLine(new Vector2(100.183998F, -3.5F)); + builder.AddLine(new Vector2(99.5400009F, -6.8039999F)); + builder.AddLine(new Vector2(100.239998F, -10.1359997F)); + builder.AddLine(new Vector2(100.239998F, -13.6079998F)); + builder.AddLine(new Vector2(95.9280014F, -13.6079998F)); + builder.AddLine(new Vector2(95.9280014F, 5.73999977F)); + builder.AddLine(new Vector2(100.183998F, 5.73999977F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(107.239998F, -0.657999992F)); + builder.AddCubicBezier(new Vector2(108.248001F, -1.28299999F), new Vector2(109.036003F, -2.12299991F), new Vector2(109.606003F, -3.17799997F)); + builder.AddCubicBezier(new Vector2(110.175003F, -4.23199987F), new Vector2(110.459999F, -5.44099998F), new Vector2(110.459999F, -6.8039999F)); + builder.AddCubicBezier(new Vector2(110.459999F, -8.16600037F), new Vector2(110.169998F, -9.38000011F), new Vector2(109.592003F, -10.4440002F)); + builder.AddCubicBezier(new Vector2(109.013F, -11.5080004F), new Vector2(108.223999F, -12.3479996F), new Vector2(107.225998F, -12.9639997F)); + builder.AddCubicBezier(new Vector2(106.226997F, -13.5799999F), new Vector2(105.093002F, -13.8879995F), new Vector2(103.823997F, -13.8879995F)); + builder.AddCubicBezier(new Vector2(102.908997F, -13.8879995F), new Vector2(102.069F, -13.7010002F), new Vector2(101.304001F, -13.3280001F)); + builder.AddCubicBezier(new Vector2(100.538002F, -12.9540005F), new Vector2(99.913002F, -12.4460001F), new Vector2(99.4280014F, -11.802F)); + builder.AddCubicBezier(new Vector2(98.9420013F, -11.158F), new Vector2(98.6620026F, -10.4250002F), new Vector2(98.5879974F, -9.60400009F)); + builder.AddLine(new Vector2(98.5879974F, -3.86400008F)); + builder.AddCubicBezier(new Vector2(98.6620026F, -3.06100011F), new Vector2(98.9380035F, -2.34699988F), new Vector2(99.4140015F, -1.722F)); + builder.AddCubicBezier(new Vector2(99.8899994F, -1.09599996F), new Vector2(100.510002F, -0.606000006F), new Vector2(101.276001F, -0.252000004F)); + builder.AddCubicBezier(new Vector2(102.041F, 0.101999998F), new Vector2(102.889999F, 0.280000001F), new Vector2(103.823997F, 0.280000001F)); + builder.AddCubicBezier(new Vector2(105.093002F, 0.280000001F), new Vector2(106.232002F, -0.0320000015F), new Vector2(107.239998F, -0.657999992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0098() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(92.9319992F, 0F)); + builder.AddLine(new Vector2(92.9319992F, -13.6079998F)); + builder.AddLine(new Vector2(88.7040024F, -13.6079998F)); + builder.AddLine(new Vector2(88.7040024F, -10.276F)); + builder.AddLine(new Vector2(89.3479996F, -7F)); + builder.AddLine(new Vector2(88.7040024F, -3.66799998F)); + builder.AddLine(new Vector2(88.7040024F, 0F)); + builder.AddLine(new Vector2(92.9319992F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(84.2939987F, -4.01800013F)); + builder.AddCubicBezier(new Vector2(83.8359985F, -4.28800011F), new Vector2(83.4720001F, -4.66599989F), new Vector2(83.2020035F, -5.15199995F)); + builder.AddCubicBezier(new Vector2(82.9309998F, -5.63700008F), new Vector2(82.7959976F, -6.1880002F), new Vector2(82.7959976F, -6.8039999F)); + builder.AddCubicBezier(new Vector2(82.7959976F, -7.42000008F), new Vector2(82.9309998F, -7.96999979F), new Vector2(83.2020035F, -8.45600033F)); + builder.AddCubicBezier(new Vector2(83.4720001F, -8.94099998F), new Vector2(83.8359985F, -9.31900024F), new Vector2(84.2939987F, -9.59000015F)); + builder.AddCubicBezier(new Vector2(84.7509995F, -9.85999966F), new Vector2(85.2689972F, -9.99600029F), new Vector2(85.8479996F, -9.99600029F)); + builder.AddCubicBezier(new Vector2(86.4449997F, -9.99600029F), new Vector2(86.9769974F, -9.85999966F), new Vector2(87.4440002F, -9.59000015F)); + builder.AddCubicBezier(new Vector2(87.9100037F, -9.31900024F), new Vector2(88.2649994F, -8.9460001F), new Vector2(88.5080032F, -8.47000027F)); + builder.AddCubicBezier(new Vector2(88.75F, -7.99399996F), new Vector2(88.8720016F, -7.44799995F), new Vector2(88.8720016F, -6.83199978F)); + builder.AddCubicBezier(new Vector2(88.8720016F, -5.88000011F), new Vector2(88.5960007F, -5.10500002F), new Vector2(88.0459976F, -4.5079999F)); + builder.AddCubicBezier(new Vector2(87.4950027F, -3.91000009F), new Vector2(86.762001F, -3.61199999F), new Vector2(85.8479996F, -3.61199999F)); + builder.AddCubicBezier(new Vector2(85.2689972F, -3.61199999F), new Vector2(84.7509995F, -3.74699998F), new Vector2(84.2939987F, -4.01800013F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(87.4580002F, -0.252000004F)); + builder.AddCubicBezier(new Vector2(88.1949997F, -0.606000006F), new Vector2(88.7919998F, -1.09599996F), new Vector2(89.25F, -1.722F)); + builder.AddCubicBezier(new Vector2(89.7070007F, -2.34699988F), new Vector2(89.9639969F, -3.06100011F), new Vector2(90.0199966F, -3.86400008F)); + builder.AddLine(new Vector2(90.0199966F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(89.9639969F, -10.5459995F), new Vector2(89.7020035F, -11.2600002F), new Vector2(89.2360001F, -11.8859997F)); + builder.AddCubicBezier(new Vector2(88.7689972F, -12.5109997F), new Vector2(88.1669998F, -13.0010004F), new Vector2(87.4300003F, -13.3559999F)); + builder.AddCubicBezier(new Vector2(86.6920013F, -13.71F), new Vector2(85.8659973F, -13.8879995F), new Vector2(84.9520035F, -13.8879995F)); + builder.AddCubicBezier(new Vector2(83.7009964F, -13.8879995F), new Vector2(82.5859985F, -13.5839996F), new Vector2(81.6060028F, -12.9779997F)); + builder.AddCubicBezier(new Vector2(80.6259995F, -12.3710003F), new Vector2(79.8509979F, -11.5310001F), new Vector2(79.2819977F, -10.4580002F)); + builder.AddCubicBezier(new Vector2(78.711998F, -9.38399982F), new Vector2(78.4280014F, -8.16600037F), new Vector2(78.4280014F, -6.8039999F)); + builder.AddCubicBezier(new Vector2(78.4280014F, -5.44099998F), new Vector2(78.711998F, -4.23199987F), new Vector2(79.2819977F, -3.17799997F)); + builder.AddCubicBezier(new Vector2(79.8509979F, -2.12299991F), new Vector2(80.6299973F, -1.28299999F), new Vector2(81.6200027F, -0.657999992F)); + builder.AddCubicBezier(new Vector2(82.6090012F, -0.0320000015F), new Vector2(83.7200012F, 0.280000001F), new Vector2(84.9520035F, 0.280000001F)); + builder.AddCubicBezier(new Vector2(85.8850021F, 0.280000001F), new Vector2(86.7200012F, 0.101999998F), new Vector2(87.4580002F, -0.252000004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0099() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(76.2440033F, 0F)); + builder.AddLine(new Vector2(76.2440033F, -20.3279991F)); + builder.AddLine(new Vector2(71.9319992F, -20.3279991F)); + builder.AddLine(new Vector2(71.9319992F, 0F)); + builder.AddLine(new Vector2(76.2440033F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0100() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(68.9079971F, 0F)); + builder.AddLine(new Vector2(68.9079971F, -20.3279991F)); + builder.AddLine(new Vector2(64.5960007F, -20.3279991F)); + builder.AddLine(new Vector2(64.5960007F, 0F)); + builder.AddLine(new Vector2(68.9079971F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0101() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(53.4519997F, -4.00400019F)); + builder.AddCubicBezier(new Vector2(52.9850006F, -4.26499987F), new Vector2(52.6209984F, -4.64300013F), new Vector2(52.3600006F, -5.13800001F)); + builder.AddCubicBezier(new Vector2(52.0979996F, -5.63199997F), new Vector2(51.9679985F, -6.19700003F), new Vector2(51.9679985F, -6.83199978F)); + builder.AddCubicBezier(new Vector2(51.9679985F, -7.4289999F), new Vector2(52.0979996F, -7.96999979F), new Vector2(52.3600006F, -8.45600033F)); + builder.AddCubicBezier(new Vector2(52.6209984F, -8.94099998F), new Vector2(52.9850006F, -9.31900024F), new Vector2(53.4519997F, -9.59000015F)); + builder.AddCubicBezier(new Vector2(53.9179993F, -9.85999966F), new Vector2(54.4500008F, -9.99600029F), new Vector2(55.0480003F, -9.99600029F)); + builder.AddCubicBezier(new Vector2(55.6450005F, -9.99600029F), new Vector2(56.1720009F, -9.85999966F), new Vector2(56.6300011F, -9.59000015F)); + builder.AddCubicBezier(new Vector2(57.0870018F, -9.31900024F), new Vector2(57.4459991F, -8.9460001F), new Vector2(57.7080002F, -8.47000027F)); + builder.AddCubicBezier(new Vector2(57.9690018F, -7.99399996F), new Vector2(58.0999985F, -7.44799995F), new Vector2(58.0999985F, -6.83199978F)); + builder.AddCubicBezier(new Vector2(58.0999985F, -6.19700003F), new Vector2(57.973999F, -5.63199997F), new Vector2(57.7220001F, -5.13800001F)); + builder.AddCubicBezier(new Vector2(57.4700012F, -4.64300013F), new Vector2(57.1100006F, -4.26499987F), new Vector2(56.644001F, -4.00400019F)); + builder.AddCubicBezier(new Vector2(56.1769981F, -3.7420001F), new Vector2(55.6450005F, -3.61199999F), new Vector2(55.0480003F, -3.61199999F)); + builder.AddCubicBezier(new Vector2(54.4500008F, -3.61199999F), new Vector2(53.9179993F, -3.7420001F), new Vector2(53.4519997F, -4.00400019F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(58.855999F, -0.643999994F)); + builder.AddCubicBezier(new Vector2(59.9760017F, -1.278F), new Vector2(60.8619995F, -2.13199997F), new Vector2(61.5159988F, -3.20600009F)); + builder.AddCubicBezier(new Vector2(62.1689987F, -4.27899981F), new Vector2(62.4959984F, -5.49700022F), new Vector2(62.4959984F, -6.86000013F)); + builder.AddCubicBezier(new Vector2(62.4959984F, -8.18500042F), new Vector2(62.1689987F, -9.38399982F), new Vector2(61.5159988F, -10.4580002F)); + builder.AddCubicBezier(new Vector2(60.8619995F, -11.5310001F), new Vector2(59.9710007F, -12.3760004F), new Vector2(58.8419991F, -12.9919996F)); + builder.AddCubicBezier(new Vector2(57.7120018F, -13.6079998F), new Vector2(56.4480019F, -13.9160004F), new Vector2(55.0480003F, -13.9160004F)); + builder.AddCubicBezier(new Vector2(53.6100006F, -13.9160004F), new Vector2(52.3320007F, -13.6029997F), new Vector2(51.2120018F, -12.9779997F)); + builder.AddCubicBezier(new Vector2(50.0919991F, -12.3520002F), new Vector2(49.2099991F, -11.5080004F), new Vector2(48.5660019F, -10.4440002F)); + builder.AddCubicBezier(new Vector2(47.9220009F, -9.38000011F), new Vector2(47.5999985F, -8.18500042F), new Vector2(47.5999985F, -6.86000013F)); + builder.AddCubicBezier(new Vector2(47.5999985F, -5.51599979F), new Vector2(47.9259987F, -4.30200005F), new Vector2(48.5800018F, -3.22000003F)); + builder.AddCubicBezier(new Vector2(49.2330017F, -2.13700008F), new Vector2(50.1199989F, -1.278F), new Vector2(51.2400017F, -0.643999994F)); + builder.AddCubicBezier(new Vector2(52.3600006F, -0.00899999961F), new Vector2(53.6290016F, 0.307999998F), new Vector2(55.0480003F, 0.307999998F)); + builder.AddCubicBezier(new Vector2(56.4659996F, 0.307999998F), new Vector2(57.7360001F, -0.00899999961F), new Vector2(58.855999F, -0.643999994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0102() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(43.5400009F, -0.433999985F)); + builder.AddCubicBezier(new Vector2(44.7719994F, -0.927999973F), new Vector2(45.8540001F, -1.62399995F), new Vector2(46.7879982F, -2.51999998F)); + builder.AddLine(new Vector2(43.7919998F, -5.51599979F)); + builder.AddCubicBezier(new Vector2(43.269001F, -4.9369998F), new Vector2(42.6339989F, -4.49399996F), new Vector2(41.8880005F, -4.18599987F)); + builder.AddCubicBezier(new Vector2(41.1409988F, -3.87800002F), new Vector2(40.2639999F, -3.72399998F), new Vector2(39.2560005F, -3.72399998F)); + builder.AddCubicBezier(new Vector2(38.3969994F, -3.72399998F), new Vector2(37.612999F, -3.86800003F), new Vector2(36.9039993F, -4.15799999F)); + builder.AddCubicBezier(new Vector2(36.1940002F, -4.44700003F), new Vector2(35.5779991F, -4.8670001F), new Vector2(35.0559998F, -5.41800022F)); + builder.AddCubicBezier(new Vector2(34.5330009F, -5.96799994F), new Vector2(34.132F, -6.62200022F), new Vector2(33.8520012F, -7.37799978F)); + builder.AddCubicBezier(new Vector2(33.5719986F, -8.13399982F), new Vector2(33.4319992F, -8.97799969F), new Vector2(33.4319992F, -9.9119997F)); + builder.AddCubicBezier(new Vector2(33.4319992F, -10.8079996F), new Vector2(33.5719986F, -11.6379995F), new Vector2(33.8520012F, -12.4040003F)); + builder.AddCubicBezier(new Vector2(34.132F, -13.1689997F), new Vector2(34.5330009F, -13.8219995F), new Vector2(35.0559998F, -14.3640003F)); + builder.AddCubicBezier(new Vector2(35.5779991F, -14.9049997F), new Vector2(36.1940002F, -15.3199997F), new Vector2(36.9039993F, -15.6099997F)); + builder.AddCubicBezier(new Vector2(37.612999F, -15.8990002F), new Vector2(38.3969994F, -16.0440006F), new Vector2(39.2560005F, -16.0440006F)); + builder.AddCubicBezier(new Vector2(40.2260017F, -16.0440006F), new Vector2(41.0800018F, -15.8850002F), new Vector2(41.8180008F, -15.5679998F)); + builder.AddCubicBezier(new Vector2(42.5550003F, -15.25F), new Vector2(43.1759987F, -14.8120003F), new Vector2(43.6800003F, -14.2519999F)); + builder.AddLine(new Vector2(46.6479988F, -17.2479992F)); + builder.AddCubicBezier(new Vector2(45.7330017F, -18.125F), new Vector2(44.6640015F, -18.816F), new Vector2(43.4420013F, -19.3199997F)); + builder.AddCubicBezier(new Vector2(42.2190018F, -19.8239994F), new Vector2(40.8240013F, -20.0760002F), new Vector2(39.2560005F, -20.0760002F)); + builder.AddCubicBezier(new Vector2(37.762001F, -20.0760002F), new Vector2(36.3899994F, -19.8190002F), new Vector2(35.1399994F, -19.3059998F)); + builder.AddCubicBezier(new Vector2(33.8889999F, -18.7919998F), new Vector2(32.7919998F, -18.0779991F), new Vector2(31.8500004F, -17.1639996F)); + builder.AddCubicBezier(new Vector2(30.9069996F, -16.2490005F), new Vector2(30.1739998F, -15.1709995F), new Vector2(29.6520004F, -13.9300003F)); + builder.AddCubicBezier(new Vector2(29.1289997F, -12.6879997F), new Vector2(28.868F, -11.349F), new Vector2(28.868F, -9.9119997F)); + builder.AddCubicBezier(new Vector2(28.868F, -8.47399998F), new Vector2(29.1289997F, -7.13500023F), new Vector2(29.6520004F, -5.89400005F)); + builder.AddCubicBezier(new Vector2(30.1739998F, -4.65199995F), new Vector2(30.9069996F, -3.56500006F), new Vector2(31.8500004F, -2.63199997F)); + builder.AddCubicBezier(new Vector2(32.7919998F, -1.69799995F), new Vector2(33.894001F, -0.975000024F), new Vector2(35.1539993F, -0.462000012F)); + builder.AddCubicBezier(new Vector2(36.4140015F, 0.050999999F), new Vector2(37.7809982F, 0.307999998F), new Vector2(39.2560005F, 0.307999998F)); + builder.AddCubicBezier(new Vector2(40.8800011F, 0.307999998F), new Vector2(42.3079987F, 0.0599999987F), new Vector2(43.5400009F, -0.433999985F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0103() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(6.87400007F, -2.39400005F)); + builder.AddCubicBezier(new Vector2(5.59499979F, -3.16799998F), new Vector2(4.59600019F, -4.21400023F), new Vector2(3.87800002F, -5.53000021F)); + builder.AddCubicBezier(new Vector2(3.15899992F, -6.84600019F), new Vector2(2.79999995F, -8.32499981F), new Vector2(2.79999995F, -9.96800041F)); + builder.AddCubicBezier(new Vector2(2.79999995F, -11.6099997F), new Vector2(3.15400004F, -13.0799999F), new Vector2(3.86400008F, -14.3780003F)); + builder.AddCubicBezier(new Vector2(4.57299995F, -15.6750002F), new Vector2(5.57200003F, -16.7019997F), new Vector2(6.86000013F, -17.4580002F)); + builder.AddCubicBezier(new Vector2(8.14799976F, -18.2140007F), new Vector2(9.63199997F, -18.5919991F), new Vector2(11.3120003F, -18.5919991F)); + builder.AddCubicBezier(new Vector2(12.9919996F, -18.5919991F), new Vector2(14.4759998F, -18.2089996F), new Vector2(15.7639999F, -17.4440002F)); + builder.AddCubicBezier(new Vector2(17.052F, -16.6779995F), new Vector2(18.0599995F, -15.6470003F), new Vector2(18.7880001F, -14.3500004F)); + builder.AddCubicBezier(new Vector2(19.5160007F, -13.052F), new Vector2(19.8799992F, -11.592F), new Vector2(19.8799992F, -9.96800041F)); + builder.AddCubicBezier(new Vector2(19.8799992F, -8.32499981F), new Vector2(19.5160007F, -6.84600019F), new Vector2(18.7880001F, -5.53000021F)); + builder.AddCubicBezier(new Vector2(18.0599995F, -4.21400023F), new Vector2(17.052F, -3.16799998F), new Vector2(15.7639999F, -2.39400005F)); + builder.AddCubicBezier(new Vector2(14.4759998F, -1.61899996F), new Vector2(12.9919996F, -1.23199999F), new Vector2(11.3120003F, -1.23199999F)); + builder.AddCubicBezier(new Vector2(9.63199997F, -1.23199999F), new Vector2(8.15200043F, -1.61899996F), new Vector2(6.87400007F, -2.39400005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(14.0979996F, -4.64799976F)); + builder.AddCubicBezier(new Vector2(14.816F, -4.9460001F), new Vector2(15.4840002F, -5.39400005F), new Vector2(16.1000004F, -5.9920001F)); + builder.AddLine(new Vector2(13.6359997F, -8.45600033F)); + builder.AddCubicBezier(new Vector2(13.4300003F, -8.19400024F), new Vector2(13.1689997F, -7.98899984F), new Vector2(12.8520002F, -7.84000015F)); + builder.AddCubicBezier(new Vector2(12.5340004F, -7.69000006F), new Vector2(12.1700001F, -7.61600018F), new Vector2(11.7600002F, -7.61600018F)); + builder.AddCubicBezier(new Vector2(11.349F, -7.61600018F), new Vector2(10.9659996F, -7.71400023F), new Vector2(10.6120005F, -7.90999985F)); + builder.AddCubicBezier(new Vector2(10.257F, -8.10599995F), new Vector2(9.98200035F, -8.3760004F), new Vector2(9.78600025F, -8.72200012F)); + builder.AddCubicBezier(new Vector2(9.59000015F, -9.06700039F), new Vector2(9.49199963F, -9.46399975F), new Vector2(9.49199963F, -9.9119997F)); + builder.AddCubicBezier(new Vector2(9.49199963F, -10.3780003F), new Vector2(9.59000015F, -10.7799997F), new Vector2(9.78600025F, -11.1160002F)); + builder.AddCubicBezier(new Vector2(9.98200035F, -11.4519997F), new Vector2(10.257F, -11.7180004F), new Vector2(10.6120005F, -11.9139996F)); + builder.AddCubicBezier(new Vector2(10.9659996F, -12.1099997F), new Vector2(11.349F, -12.2080002F), new Vector2(11.7600002F, -12.2080002F)); + builder.AddCubicBezier(new Vector2(12.1520004F, -12.2080002F), new Vector2(12.4969997F, -12.1520004F), new Vector2(12.7959995F, -12.04F)); + builder.AddCubicBezier(new Vector2(13.0939999F, -11.9280005F), new Vector2(13.3559999F, -11.7410002F), new Vector2(13.5799999F, -11.4799995F)); + builder.AddLine(new Vector2(16.0160007F, -13.9440002F)); + builder.AddCubicBezier(new Vector2(15.4560003F, -14.5039997F), new Vector2(14.816F, -14.9280005F), new Vector2(14.0979996F, -15.2180004F)); + builder.AddCubicBezier(new Vector2(13.3789997F, -15.507F), new Vector2(12.6000004F, -15.6520004F), new Vector2(11.7600002F, -15.6520004F)); + builder.AddCubicBezier(new Vector2(10.6020002F, -15.6520004F), new Vector2(9.55700016F, -15.3999996F), new Vector2(8.6239996F, -14.8959999F)); + builder.AddCubicBezier(new Vector2(7.69000006F, -14.3920002F), new Vector2(6.95300007F, -13.71F), new Vector2(6.41200018F, -12.8520002F)); + builder.AddCubicBezier(new Vector2(5.86999989F, -11.993F), new Vector2(5.5999999F, -11.0129995F), new Vector2(5.5999999F, -9.9119997F)); + builder.AddCubicBezier(new Vector2(5.5999999F, -8.82900047F), new Vector2(5.86600018F, -7.85400009F), new Vector2(6.39799976F, -6.98600006F)); + builder.AddCubicBezier(new Vector2(6.92999983F, -6.11800003F), new Vector2(7.65799999F, -5.43599987F), new Vector2(8.58199978F, -4.94199991F)); + builder.AddCubicBezier(new Vector2(9.50599957F, -4.44700003F), new Vector2(10.5459995F, -4.19999981F), new Vector2(11.7040005F, -4.19999981F)); + builder.AddCubicBezier(new Vector2(12.5810003F, -4.19999981F), new Vector2(13.3789997F, -4.34899998F), new Vector2(14.0979996F, -4.64799976F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(15.4139996F, -0.504000008F)); + builder.AddCubicBezier(new Vector2(16.6359997F, -1.02600002F), new Vector2(17.7000008F, -1.75399995F), new Vector2(18.6060009F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(19.5109997F, -3.62100005F), new Vector2(20.2059994F, -4.70800018F), new Vector2(20.6919994F, -5.94999981F)); + builder.AddCubicBezier(new Vector2(21.177F, -7.19099998F), new Vector2(21.4200001F, -8.52099991F), new Vector2(21.4200001F, -9.93999958F)); + builder.AddCubicBezier(new Vector2(21.4200001F, -11.3769999F), new Vector2(21.177F, -12.7119999F), new Vector2(20.6919994F, -13.9440002F)); + builder.AddCubicBezier(new Vector2(20.2059994F, -15.1759996F), new Vector2(19.5160007F, -16.2539997F), new Vector2(18.6200008F, -17.1779995F)); + builder.AddCubicBezier(new Vector2(17.7240009F, -18.1019993F), new Vector2(16.6499996F, -18.8199997F), new Vector2(15.3999996F, -19.3339996F)); + builder.AddCubicBezier(new Vector2(14.1490002F, -19.8470001F), new Vector2(12.7860003F, -20.1040001F), new Vector2(11.3120003F, -20.1040001F)); + builder.AddCubicBezier(new Vector2(9.83699989F, -20.1040001F), new Vector2(8.48400021F, -19.8419991F), new Vector2(7.25199986F, -19.3199997F)); + builder.AddCubicBezier(new Vector2(6.01999998F, -18.7970009F), new Vector2(4.95100021F, -18.0779991F), new Vector2(4.046F, -17.1639996F)); + builder.AddCubicBezier(new Vector2(3.1400001F, -16.2490005F), new Vector2(2.44499993F, -15.1759996F), new Vector2(1.96000004F, -13.9440002F)); + builder.AddCubicBezier(new Vector2(1.47399998F, -12.7119999F), new Vector2(1.23199999F, -11.3859997F), new Vector2(1.23199999F, -9.96800041F)); + builder.AddCubicBezier(new Vector2(1.23199999F, -8.52999973F), new Vector2(1.48399997F, -7.19099998F), new Vector2(1.98800004F, -5.94999981F)); + builder.AddCubicBezier(new Vector2(2.4920001F, -4.70800018F), new Vector2(3.1960001F, -3.62100005F), new Vector2(4.10200024F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(5.00699997F, -1.75399995F), new Vector2(6.07600021F, -1.02600002F), new Vector2(7.30800009F, -0.504000008F)); + builder.AddCubicBezier(new Vector2(8.53999996F, 0.0179999992F), new Vector2(9.89299965F, 0.280000001F), new Vector2(11.368F, 0.280000001F)); + builder.AddCubicBezier(new Vector2(12.842F, 0.280000001F), new Vector2(14.191F, 0.0179999992F), new Vector2(15.4139996F, -0.504000008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0104() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(417.359985F, -17.1359997F)); + builder.AddLine(new Vector2(415.175995F, -17.1359997F)); + builder.AddLine(new Vector2(415.175995F, -8.61600018F)); + builder.AddLine(new Vector2(415.584015F, -5.85599995F)); + builder.AddLine(new Vector2(415.175995F, -3.07200003F)); + builder.AddLine(new Vector2(415.175995F, 0F)); + builder.AddLine(new Vector2(417.359985F, 0F)); + builder.AddLine(new Vector2(417.359985F, -17.1359997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(409.812012F, -2.29200006F)); + builder.AddCubicBezier(new Vector2(409.26001F, -2.61999989F), new Vector2(408.828003F, -3.07999992F), new Vector2(408.515991F, -3.67199993F)); + builder.AddCubicBezier(new Vector2(408.20401F, -4.26399994F), new Vector2(408.048004F, -4.94399977F), new Vector2(408.048004F, -5.71199989F)); + builder.AddCubicBezier(new Vector2(408.048004F, -6.48000002F), new Vector2(408.20401F, -7.15600014F), new Vector2(408.515991F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(408.828003F, -8.32400036F), new Vector2(409.256012F, -8.77999973F), new Vector2(409.799988F, -9.1079998F)); + builder.AddCubicBezier(new Vector2(410.343994F, -9.43599987F), new Vector2(410.976013F, -9.60000038F), new Vector2(411.696014F, -9.60000038F)); + builder.AddCubicBezier(new Vector2(412.415985F, -9.60000038F), new Vector2(413.048004F, -9.43200016F), new Vector2(413.59201F, -9.09599972F)); + builder.AddCubicBezier(new Vector2(414.135986F, -8.76000023F), new Vector2(414.559998F, -8.30000019F), new Vector2(414.864014F, -7.71600008F)); + builder.AddCubicBezier(new Vector2(415.167999F, -7.13199997F), new Vector2(415.320007F, -6.45599985F), new Vector2(415.320007F, -5.6880002F)); + builder.AddCubicBezier(new Vector2(415.320007F, -4.93599987F), new Vector2(415.167999F, -4.26800013F), new Vector2(414.864014F, -3.68400002F)); + builder.AddCubicBezier(new Vector2(414.559998F, -3.0999999F), new Vector2(414.135986F, -2.6400001F), new Vector2(413.59201F, -2.3039999F)); + builder.AddCubicBezier(new Vector2(413.048004F, -1.96800005F), new Vector2(412.415985F, -1.79999995F), new Vector2(411.696014F, -1.79999995F)); + builder.AddCubicBezier(new Vector2(410.992004F, -1.79999995F), new Vector2(410.364014F, -1.96399999F), new Vector2(409.812012F, -2.29200006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(413.687988F, -0.300000012F)); + builder.AddCubicBezier(new Vector2(414.376007F, -0.660000026F), new Vector2(414.928009F, -1.15999997F), new Vector2(415.343994F, -1.79999995F)); + builder.AddCubicBezier(new Vector2(415.76001F, -2.44000006F), new Vector2(415.992004F, -3.16799998F), new Vector2(416.040009F, -3.98399997F)); + builder.AddLine(new Vector2(416.040009F, -7.41599989F)); + builder.AddCubicBezier(new Vector2(415.992004F, -8.24800014F), new Vector2(415.756012F, -8.97999954F), new Vector2(415.332001F, -9.61200047F)); + builder.AddCubicBezier(new Vector2(414.90799F, -10.2440004F), new Vector2(414.35199F, -10.7399998F), new Vector2(413.664001F, -11.1000004F)); + builder.AddCubicBezier(new Vector2(412.976013F, -11.46F), new Vector2(412.200012F, -11.6400003F), new Vector2(411.335999F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(410.29599F, -11.6400003F), new Vector2(409.359985F, -11.3760004F), new Vector2(408.528015F, -10.8479996F)); + builder.AddCubicBezier(new Vector2(407.696014F, -10.3199997F), new Vector2(407.036011F, -9.6079998F), new Vector2(406.548004F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(406.059998F, -7.81599998F), new Vector2(405.81601F, -6.80800009F), new Vector2(405.81601F, -5.6880002F)); + builder.AddCubicBezier(new Vector2(405.81601F, -4.56799984F), new Vector2(406.059998F, -3.55999994F), new Vector2(406.548004F, -2.66400003F)); + builder.AddCubicBezier(new Vector2(407.036011F, -1.76800001F), new Vector2(407.696014F, -1.05999994F), new Vector2(408.528015F, -0.540000021F)); + builder.AddCubicBezier(new Vector2(409.359985F, -0.0199999996F), new Vector2(410.29599F, 0.239999995F), new Vector2(411.335999F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(412.216003F, 0.239999995F), new Vector2(413F, 0.0599999987F), new Vector2(413.687988F, -0.300000012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0105() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(401.471985F, -0.263999999F)); + builder.AddCubicBezier(new Vector2(402.256012F, -0.600000024F), new Vector2(402.928009F, -1.08800006F), new Vector2(403.488007F, -1.72800004F)); + builder.AddLine(new Vector2(402.096008F, -3.14400005F)); + builder.AddCubicBezier(new Vector2(401.712006F, -2.6960001F), new Vector2(401.252014F, -2.3599999F), new Vector2(400.716003F, -2.13599992F)); + builder.AddCubicBezier(new Vector2(400.179993F, -1.91199994F), new Vector2(399.59201F, -1.79999995F), new Vector2(398.951996F, -1.79999995F)); + builder.AddCubicBezier(new Vector2(398.18399F, -1.79999995F), new Vector2(397.503998F, -1.96399999F), new Vector2(396.911987F, -2.29200006F)); + builder.AddCubicBezier(new Vector2(396.320007F, -2.61999989F), new Vector2(395.864014F, -3.08400011F), new Vector2(395.544006F, -3.68400002F)); + builder.AddCubicBezier(new Vector2(395.223999F, -4.28399992F), new Vector2(395.063995F, -4.98400021F), new Vector2(395.063995F, -5.78399992F)); + builder.AddCubicBezier(new Vector2(395.063995F, -6.56799984F), new Vector2(395.216003F, -7.24800014F), new Vector2(395.519989F, -7.82399988F)); + builder.AddCubicBezier(new Vector2(395.824005F, -8.39999962F), new Vector2(396.256012F, -8.84799957F), new Vector2(396.81601F, -9.16800022F)); + builder.AddCubicBezier(new Vector2(397.376007F, -9.48799992F), new Vector2(398.023987F, -9.64799976F), new Vector2(398.76001F, -9.64799976F)); + builder.AddCubicBezier(new Vector2(399.463989F, -9.64799976F), new Vector2(400.063995F, -9.5F), new Vector2(400.559998F, -9.20400047F)); + builder.AddCubicBezier(new Vector2(401.056F, -8.90799999F), new Vector2(401.440002F, -8.49199963F), new Vector2(401.712006F, -7.95599985F)); + builder.AddCubicBezier(new Vector2(401.984009F, -7.42000008F), new Vector2(402.119995F, -6.76800013F), new Vector2(402.119995F, -6F)); + builder.AddLine(new Vector2(402.911987F, -6.6960001F)); + builder.AddLine(new Vector2(394.440002F, -6.6960001F)); + builder.AddLine(new Vector2(394.440002F, -4.89599991F)); + builder.AddLine(new Vector2(404.063995F, -4.89599991F)); + builder.AddCubicBezier(new Vector2(404.112F, -5.11999989F), new Vector2(404.144012F, -5.32399988F), new Vector2(404.160004F, -5.5079999F)); + builder.AddCubicBezier(new Vector2(404.175995F, -5.69199991F), new Vector2(404.18399F, -5.86399984F), new Vector2(404.18399F, -6.02400017F)); + builder.AddCubicBezier(new Vector2(404.18399F, -7.11199999F), new Vector2(403.955994F, -8.07999992F), new Vector2(403.5F, -8.92800045F)); + builder.AddCubicBezier(new Vector2(403.044006F, -9.77600002F), new Vector2(402.40799F, -10.4399996F), new Vector2(401.59201F, -10.9200001F)); + builder.AddCubicBezier(new Vector2(400.776001F, -11.3999996F), new Vector2(399.847992F, -11.6400003F), new Vector2(398.808014F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(397.70401F, -11.6400003F), new Vector2(396.708008F, -11.3800001F), new Vector2(395.820007F, -10.8599997F)); + builder.AddCubicBezier(new Vector2(394.932007F, -10.3400002F), new Vector2(394.227997F, -9.63199997F), new Vector2(393.708008F, -8.73600006F)); + builder.AddCubicBezier(new Vector2(393.187988F, -7.84000015F), new Vector2(392.928009F, -6.83199978F), new Vector2(392.928009F, -5.71199989F)); + builder.AddCubicBezier(new Vector2(392.928009F, -4.57600021F), new Vector2(393.191986F, -3.55999994F), new Vector2(393.720001F, -2.66400003F)); + builder.AddCubicBezier(new Vector2(394.247986F, -1.76800001F), new Vector2(394.963989F, -1.05999994F), new Vector2(395.868011F, -0.540000021F)); + builder.AddCubicBezier(new Vector2(396.772003F, -0.0199999996F), new Vector2(397.799988F, 0.239999995F), new Vector2(398.951996F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(399.847992F, 0.239999995F), new Vector2(400.687988F, 0.0719999969F), new Vector2(401.471985F, -0.263999999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0106() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(387.023987F, 0F)); + builder.AddLine(new Vector2(392.256012F, -11.3999996F)); + builder.AddLine(new Vector2(389.951996F, -11.3999996F)); + builder.AddLine(new Vector2(385.727997F, -1.77600002F)); + builder.AddLine(new Vector2(387.119995F, -1.77600002F)); + builder.AddLine(new Vector2(382.920013F, -11.3999996F)); + builder.AddLine(new Vector2(380.519989F, -11.3999996F)); + builder.AddLine(new Vector2(385.752014F, 0F)); + builder.AddLine(new Vector2(387.023987F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0107() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(375.335999F, -8.83199978F)); + builder.AddCubicBezier(new Vector2(375.847992F, -9.34399986F), new Vector2(376.503998F, -9.60000038F), new Vector2(377.303986F, -9.60000038F)); + builder.AddCubicBezier(new Vector2(377.687988F, -9.60000038F), new Vector2(378.023987F, -9.54399967F), new Vector2(378.312012F, -9.43200016F)); + builder.AddCubicBezier(new Vector2(378.600006F, -9.31999969F), new Vector2(378.864014F, -9.13599968F), new Vector2(379.104004F, -8.88000011F)); + builder.AddLine(new Vector2(380.519989F, -10.3439999F)); + builder.AddCubicBezier(new Vector2(380.119995F, -10.8079996F), new Vector2(379.687988F, -11.1400003F), new Vector2(379.223999F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(378.76001F, -11.54F), new Vector2(378.23999F, -11.6400003F), new Vector2(377.664001F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(376.399994F, -11.6400003F), new Vector2(375.432007F, -11.2080002F), new Vector2(374.76001F, -10.3439999F)); + builder.AddCubicBezier(new Vector2(374.088013F, -9.47999954F), new Vector2(373.752014F, -8.31999969F), new Vector2(373.752014F, -6.86399984F)); + builder.AddLine(new Vector2(374.567993F, -6.48000002F)); + builder.AddCubicBezier(new Vector2(374.567993F, -7.53599977F), new Vector2(374.824005F, -8.31999969F), new Vector2(375.335999F, -8.83199978F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(374.567993F, 0F)); + builder.AddLine(new Vector2(374.567993F, -11.3999996F)); + builder.AddLine(new Vector2(372.40799F, -11.3999996F)); + builder.AddLine(new Vector2(372.40799F, 0F)); + builder.AddLine(new Vector2(374.567993F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0108() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(367.343994F, -0.263999999F)); + builder.AddCubicBezier(new Vector2(368.127991F, -0.600000024F), new Vector2(368.799988F, -1.08800006F), new Vector2(369.359985F, -1.72800004F)); + builder.AddLine(new Vector2(367.967987F, -3.14400005F)); + builder.AddCubicBezier(new Vector2(367.584015F, -2.6960001F), new Vector2(367.123993F, -2.3599999F), new Vector2(366.588013F, -2.13599992F)); + builder.AddCubicBezier(new Vector2(366.052002F, -1.91199994F), new Vector2(365.463989F, -1.79999995F), new Vector2(364.824005F, -1.79999995F)); + builder.AddCubicBezier(new Vector2(364.056F, -1.79999995F), new Vector2(363.376007F, -1.96399999F), new Vector2(362.783997F, -2.29200006F)); + builder.AddCubicBezier(new Vector2(362.191986F, -2.61999989F), new Vector2(361.735992F, -3.08400011F), new Vector2(361.415985F, -3.68400002F)); + builder.AddCubicBezier(new Vector2(361.096008F, -4.28399992F), new Vector2(360.936005F, -4.98400021F), new Vector2(360.936005F, -5.78399992F)); + builder.AddCubicBezier(new Vector2(360.936005F, -6.56799984F), new Vector2(361.088013F, -7.24800014F), new Vector2(361.391998F, -7.82399988F)); + builder.AddCubicBezier(new Vector2(361.696014F, -8.39999962F), new Vector2(362.127991F, -8.84799957F), new Vector2(362.687988F, -9.16800022F)); + builder.AddCubicBezier(new Vector2(363.247986F, -9.48799992F), new Vector2(363.895996F, -9.64799976F), new Vector2(364.631989F, -9.64799976F)); + builder.AddCubicBezier(new Vector2(365.335999F, -9.64799976F), new Vector2(365.936005F, -9.5F), new Vector2(366.432007F, -9.20400047F)); + builder.AddCubicBezier(new Vector2(366.928009F, -8.90799999F), new Vector2(367.312012F, -8.49199963F), new Vector2(367.584015F, -7.95599985F)); + builder.AddCubicBezier(new Vector2(367.855988F, -7.42000008F), new Vector2(367.992004F, -6.76800013F), new Vector2(367.992004F, -6F)); + builder.AddLine(new Vector2(368.783997F, -6.6960001F)); + builder.AddLine(new Vector2(360.312012F, -6.6960001F)); + builder.AddLine(new Vector2(360.312012F, -4.89599991F)); + builder.AddLine(new Vector2(369.936005F, -4.89599991F)); + builder.AddCubicBezier(new Vector2(369.984009F, -5.11999989F), new Vector2(370.015991F, -5.32399988F), new Vector2(370.032013F, -5.5079999F)); + builder.AddCubicBezier(new Vector2(370.048004F, -5.69199991F), new Vector2(370.056F, -5.86399984F), new Vector2(370.056F, -6.02400017F)); + builder.AddCubicBezier(new Vector2(370.056F, -7.11199999F), new Vector2(369.828003F, -8.07999992F), new Vector2(369.372009F, -8.92800045F)); + builder.AddCubicBezier(new Vector2(368.915985F, -9.77600002F), new Vector2(368.279999F, -10.4399996F), new Vector2(367.463989F, -10.9200001F)); + builder.AddCubicBezier(new Vector2(366.64801F, -11.3999996F), new Vector2(365.720001F, -11.6400003F), new Vector2(364.679993F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(363.575989F, -11.6400003F), new Vector2(362.579987F, -11.3800001F), new Vector2(361.691986F, -10.8599997F)); + builder.AddCubicBezier(new Vector2(360.803986F, -10.3400002F), new Vector2(360.100006F, -9.63199997F), new Vector2(359.579987F, -8.73600006F)); + builder.AddCubicBezier(new Vector2(359.059998F, -7.84000015F), new Vector2(358.799988F, -6.83199978F), new Vector2(358.799988F, -5.71199989F)); + builder.AddCubicBezier(new Vector2(358.799988F, -4.57600021F), new Vector2(359.063995F, -3.55999994F), new Vector2(359.59201F, -2.66400003F)); + builder.AddCubicBezier(new Vector2(360.119995F, -1.76800001F), new Vector2(360.835999F, -1.05999994F), new Vector2(361.73999F, -0.540000021F)); + builder.AddCubicBezier(new Vector2(362.644012F, -0.0199999996F), new Vector2(363.671997F, 0.239999995F), new Vector2(364.824005F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(365.720001F, 0.239999995F), new Vector2(366.559998F, 0.0719999969F), new Vector2(367.343994F, -0.263999999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0109() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(355.980011F, -0.69599998F)); + builder.AddCubicBezier(new Vector2(356.73999F, -1.32000005F), new Vector2(357.119995F, -2.16799998F), new Vector2(357.119995F, -3.24000001F)); + builder.AddCubicBezier(new Vector2(357.119995F, -3.94400001F), new Vector2(356.971985F, -4.51200008F), new Vector2(356.675995F, -4.94399977F)); + builder.AddCubicBezier(new Vector2(356.380005F, -5.37599993F), new Vector2(356F, -5.71999979F), new Vector2(355.536011F, -5.97599983F)); + builder.AddCubicBezier(new Vector2(355.071991F, -6.23199987F), new Vector2(354.584015F, -6.43599987F), new Vector2(354.071991F, -6.58799982F)); + builder.AddCubicBezier(new Vector2(353.559998F, -6.73999977F), new Vector2(353.067993F, -6.88800001F), new Vector2(352.596008F, -7.03200006F)); + builder.AddCubicBezier(new Vector2(352.123993F, -7.17600012F), new Vector2(351.743988F, -7.35200024F), new Vector2(351.455994F, -7.55999994F)); + builder.AddCubicBezier(new Vector2(351.167999F, -7.76800013F), new Vector2(351.023987F, -8.06400013F), new Vector2(351.023987F, -8.44799995F)); + builder.AddCubicBezier(new Vector2(351.023987F, -8.81599998F), new Vector2(351.187988F, -9.11200047F), new Vector2(351.515991F, -9.33600044F)); + builder.AddCubicBezier(new Vector2(351.843994F, -9.56000042F), new Vector2(352.320007F, -9.67199993F), new Vector2(352.944F, -9.67199993F)); + builder.AddCubicBezier(new Vector2(353.536011F, -9.67199993F), new Vector2(354.063995F, -9.56000042F), new Vector2(354.528015F, -9.33600044F)); + builder.AddCubicBezier(new Vector2(354.992004F, -9.11200047F), new Vector2(355.391998F, -8.79199982F), new Vector2(355.727997F, -8.3760004F)); + builder.AddLine(new Vector2(357.119995F, -9.76799965F)); + builder.AddCubicBezier(new Vector2(356.671997F, -10.3920002F), new Vector2(356.100006F, -10.8599997F), new Vector2(355.403992F, -11.1719999F)); + builder.AddCubicBezier(new Vector2(354.708008F, -11.4840002F), new Vector2(353.911987F, -11.6400003F), new Vector2(353.015991F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(352.167999F, -11.6400003F), new Vector2(351.440002F, -11.5039997F), new Vector2(350.832001F, -11.2320004F)); + builder.AddCubicBezier(new Vector2(350.223999F, -10.96F), new Vector2(349.756012F, -10.5719995F), new Vector2(349.428009F, -10.0679998F)); + builder.AddCubicBezier(new Vector2(349.100006F, -9.56400013F), new Vector2(348.936005F, -8.96800041F), new Vector2(348.936005F, -8.27999973F)); + builder.AddCubicBezier(new Vector2(348.936005F, -7.59200001F), new Vector2(349.084015F, -7.03599977F), new Vector2(349.380005F, -6.61199999F)); + builder.AddCubicBezier(new Vector2(349.675995F, -6.1880002F), new Vector2(350.056F, -5.85599995F), new Vector2(350.519989F, -5.61600018F)); + builder.AddCubicBezier(new Vector2(350.984009F, -5.37599993F), new Vector2(351.476013F, -5.18400002F), new Vector2(351.996002F, -5.03999996F)); + builder.AddCubicBezier(new Vector2(352.515991F, -4.89599991F), new Vector2(353.007996F, -4.74800014F), new Vector2(353.471985F, -4.59600019F)); + builder.AddCubicBezier(new Vector2(353.936005F, -4.44399977F), new Vector2(354.31601F, -4.25199986F), new Vector2(354.612F, -4.01999998F)); + builder.AddCubicBezier(new Vector2(354.90799F, -3.78800011F), new Vector2(355.056F, -3.46399999F), new Vector2(355.056F, -3.0480001F)); + builder.AddCubicBezier(new Vector2(355.056F, -2.63199997F), new Vector2(354.872009F, -2.30800009F), new Vector2(354.503998F, -2.07599998F)); + builder.AddCubicBezier(new Vector2(354.135986F, -1.84399998F), new Vector2(353.615997F, -1.72800004F), new Vector2(352.944F, -1.72800004F)); + builder.AddCubicBezier(new Vector2(352.272003F, -1.72800004F), new Vector2(351.664001F, -1.852F), new Vector2(351.119995F, -2.0999999F)); + builder.AddCubicBezier(new Vector2(350.575989F, -2.34800005F), new Vector2(350.096008F, -2.72799993F), new Vector2(349.679993F, -3.24000001F)); + builder.AddLine(new Vector2(348.287994F, -1.84800005F)); + builder.AddCubicBezier(new Vector2(348.640015F, -1.41600001F), new Vector2(349.052002F, -1.04400003F), new Vector2(349.523987F, -0.731999993F)); + builder.AddCubicBezier(new Vector2(349.996002F, -0.419999987F), new Vector2(350.519989F, -0.180000007F), new Vector2(351.096008F, -0.0120000001F)); + builder.AddCubicBezier(new Vector2(351.671997F, 0.156000003F), new Vector2(352.279999F, 0.239999995F), new Vector2(352.920013F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(354.200012F, 0.239999995F), new Vector2(355.220001F, -0.0719999969F), new Vector2(355.980011F, -0.69599998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0110() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(344.231995F, -0.263999999F)); + builder.AddCubicBezier(new Vector2(345.015991F, -0.600000024F), new Vector2(345.687988F, -1.08800006F), new Vector2(346.247986F, -1.72800004F)); + builder.AddLine(new Vector2(344.855988F, -3.14400005F)); + builder.AddCubicBezier(new Vector2(344.471985F, -2.6960001F), new Vector2(344.011993F, -2.3599999F), new Vector2(343.476013F, -2.13599992F)); + builder.AddCubicBezier(new Vector2(342.940002F, -1.91199994F), new Vector2(342.35199F, -1.79999995F), new Vector2(341.712006F, -1.79999995F)); + builder.AddCubicBezier(new Vector2(340.944F, -1.79999995F), new Vector2(340.264008F, -1.96399999F), new Vector2(339.671997F, -2.29200006F)); + builder.AddCubicBezier(new Vector2(339.079987F, -2.61999989F), new Vector2(338.623993F, -3.08400011F), new Vector2(338.303986F, -3.68400002F)); + builder.AddCubicBezier(new Vector2(337.984009F, -4.28399992F), new Vector2(337.824005F, -4.98400021F), new Vector2(337.824005F, -5.78399992F)); + builder.AddCubicBezier(new Vector2(337.824005F, -6.56799984F), new Vector2(337.976013F, -7.24800014F), new Vector2(338.279999F, -7.82399988F)); + builder.AddCubicBezier(new Vector2(338.584015F, -8.39999962F), new Vector2(339.015991F, -8.84799957F), new Vector2(339.575989F, -9.16800022F)); + builder.AddCubicBezier(new Vector2(340.135986F, -9.48799992F), new Vector2(340.783997F, -9.64799976F), new Vector2(341.519989F, -9.64799976F)); + builder.AddCubicBezier(new Vector2(342.223999F, -9.64799976F), new Vector2(342.824005F, -9.5F), new Vector2(343.320007F, -9.20400047F)); + builder.AddCubicBezier(new Vector2(343.81601F, -8.90799999F), new Vector2(344.200012F, -8.49199963F), new Vector2(344.471985F, -7.95599985F)); + builder.AddCubicBezier(new Vector2(344.743988F, -7.42000008F), new Vector2(344.880005F, -6.76800013F), new Vector2(344.880005F, -6F)); + builder.AddLine(new Vector2(345.671997F, -6.6960001F)); + builder.AddLine(new Vector2(337.200012F, -6.6960001F)); + builder.AddLine(new Vector2(337.200012F, -4.89599991F)); + builder.AddLine(new Vector2(346.824005F, -4.89599991F)); + builder.AddCubicBezier(new Vector2(346.872009F, -5.11999989F), new Vector2(346.903992F, -5.32399988F), new Vector2(346.920013F, -5.5079999F)); + builder.AddCubicBezier(new Vector2(346.936005F, -5.69199991F), new Vector2(346.944F, -5.86399984F), new Vector2(346.944F, -6.02400017F)); + builder.AddCubicBezier(new Vector2(346.944F, -7.11199999F), new Vector2(346.716003F, -8.07999992F), new Vector2(346.26001F, -8.92800045F)); + builder.AddCubicBezier(new Vector2(345.803986F, -9.77600002F), new Vector2(345.167999F, -10.4399996F), new Vector2(344.35199F, -10.9200001F)); + builder.AddCubicBezier(new Vector2(343.536011F, -11.3999996F), new Vector2(342.608002F, -11.6400003F), new Vector2(341.567993F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(340.463989F, -11.6400003F), new Vector2(339.467987F, -11.3800001F), new Vector2(338.579987F, -10.8599997F)); + builder.AddCubicBezier(new Vector2(337.691986F, -10.3400002F), new Vector2(336.988007F, -9.63199997F), new Vector2(336.467987F, -8.73600006F)); + builder.AddCubicBezier(new Vector2(335.947998F, -7.84000015F), new Vector2(335.687988F, -6.83199978F), new Vector2(335.687988F, -5.71199989F)); + builder.AddCubicBezier(new Vector2(335.687988F, -4.57600021F), new Vector2(335.951996F, -3.55999994F), new Vector2(336.480011F, -2.66400003F)); + builder.AddCubicBezier(new Vector2(337.007996F, -1.76800001F), new Vector2(337.723999F, -1.05999994F), new Vector2(338.627991F, -0.540000021F)); + builder.AddCubicBezier(new Vector2(339.532013F, -0.0199999996F), new Vector2(340.559998F, 0.239999995F), new Vector2(341.712006F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(342.608002F, 0.239999995F), new Vector2(343.447998F, 0.0719999969F), new Vector2(344.231995F, -0.263999999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0111() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(334.847992F, 0F)); + builder.AddLine(new Vector2(328.079987F, -8.20800018F)); + builder.AddLine(new Vector2(325.944F, -7.46400023F)); + builder.AddLine(new Vector2(331.992004F, 0F)); + builder.AddLine(new Vector2(334.847992F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(324.64801F, 0F)); + builder.AddLine(new Vector2(324.64801F, -16.6560001F)); + builder.AddLine(new Vector2(322.391998F, -16.6560001F)); + builder.AddLine(new Vector2(322.391998F, 0F)); + builder.AddLine(new Vector2(324.64801F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(328.511993F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(329.567993F, -7.24800014F), new Vector2(330.488007F, -7.44399977F), new Vector2(331.272003F, -7.83599997F)); + builder.AddCubicBezier(new Vector2(332.056F, -8.22799969F), new Vector2(332.660004F, -8.77600002F), new Vector2(333.084015F, -9.47999954F)); + builder.AddCubicBezier(new Vector2(333.507996F, -10.184F), new Vector2(333.720001F, -11.0080004F), new Vector2(333.720001F, -11.9519997F)); + builder.AddCubicBezier(new Vector2(333.720001F, -12.8640003F), new Vector2(333.507996F, -13.6719999F), new Vector2(333.084015F, -14.3760004F)); + builder.AddCubicBezier(new Vector2(332.660004F, -15.0799999F), new Vector2(332.056F, -15.6359997F), new Vector2(331.272003F, -16.0440006F)); + builder.AddCubicBezier(new Vector2(330.488007F, -16.4519997F), new Vector2(329.567993F, -16.6560001F), new Vector2(328.511993F, -16.6560001F)); + builder.AddLine(new Vector2(323.903992F, -16.6560001F)); + builder.AddLine(new Vector2(323.903992F, -14.6879997F)); + builder.AddLine(new Vector2(328.440002F, -14.6879997F)); + builder.AddCubicBezier(new Vector2(329.399994F, -14.6879997F), new Vector2(330.140015F, -14.4239998F), new Vector2(330.660004F, -13.8959999F)); + builder.AddCubicBezier(new Vector2(331.179993F, -13.368F), new Vector2(331.440002F, -12.7040005F), new Vector2(331.440002F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(331.440002F, -11.0559998F), new Vector2(331.179993F, -10.3839998F), new Vector2(330.660004F, -9.88799953F)); + builder.AddCubicBezier(new Vector2(330.140015F, -9.3920002F), new Vector2(329.391998F, -9.14400005F), new Vector2(328.415985F, -9.14400005F)); + builder.AddLine(new Vector2(323.903992F, -9.14400005F)); + builder.AddLine(new Vector2(323.903992F, -7.24800014F)); + builder.AddLine(new Vector2(328.511993F, -7.24800014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0112() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(313.476013F, -0.69599998F)); + builder.AddCubicBezier(new Vector2(314.235992F, -1.32000005F), new Vector2(314.615997F, -2.16799998F), new Vector2(314.615997F, -3.24000001F)); + builder.AddCubicBezier(new Vector2(314.615997F, -3.94400001F), new Vector2(314.467987F, -4.51200008F), new Vector2(314.171997F, -4.94399977F)); + builder.AddCubicBezier(new Vector2(313.876007F, -5.37599993F), new Vector2(313.496002F, -5.71999979F), new Vector2(313.032013F, -5.97599983F)); + builder.AddCubicBezier(new Vector2(312.567993F, -6.23199987F), new Vector2(312.079987F, -6.43599987F), new Vector2(311.567993F, -6.58799982F)); + builder.AddCubicBezier(new Vector2(311.056F, -6.73999977F), new Vector2(310.563995F, -6.88800001F), new Vector2(310.09201F, -7.03200006F)); + builder.AddCubicBezier(new Vector2(309.619995F, -7.17600012F), new Vector2(309.23999F, -7.35200024F), new Vector2(308.951996F, -7.55999994F)); + builder.AddCubicBezier(new Vector2(308.664001F, -7.76800013F), new Vector2(308.519989F, -8.06400013F), new Vector2(308.519989F, -8.44799995F)); + builder.AddCubicBezier(new Vector2(308.519989F, -8.81599998F), new Vector2(308.68399F, -9.11200047F), new Vector2(309.011993F, -9.33600044F)); + builder.AddCubicBezier(new Vector2(309.339996F, -9.56000042F), new Vector2(309.81601F, -9.67199993F), new Vector2(310.440002F, -9.67199993F)); + builder.AddCubicBezier(new Vector2(311.032013F, -9.67199993F), new Vector2(311.559998F, -9.56000042F), new Vector2(312.023987F, -9.33600044F)); + builder.AddCubicBezier(new Vector2(312.488007F, -9.11200047F), new Vector2(312.888F, -8.79199982F), new Vector2(313.223999F, -8.3760004F)); + builder.AddLine(new Vector2(314.615997F, -9.76799965F)); + builder.AddCubicBezier(new Vector2(314.167999F, -10.3920002F), new Vector2(313.596008F, -10.8599997F), new Vector2(312.899994F, -11.1719999F)); + builder.AddCubicBezier(new Vector2(312.20401F, -11.4840002F), new Vector2(311.40799F, -11.6400003F), new Vector2(310.511993F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(309.664001F, -11.6400003F), new Vector2(308.936005F, -11.5039997F), new Vector2(308.328003F, -11.2320004F)); + builder.AddCubicBezier(new Vector2(307.720001F, -10.96F), new Vector2(307.252014F, -10.5719995F), new Vector2(306.924011F, -10.0679998F)); + builder.AddCubicBezier(new Vector2(306.596008F, -9.56400013F), new Vector2(306.432007F, -8.96800041F), new Vector2(306.432007F, -8.27999973F)); + builder.AddCubicBezier(new Vector2(306.432007F, -7.59200001F), new Vector2(306.579987F, -7.03599977F), new Vector2(306.876007F, -6.61199999F)); + builder.AddCubicBezier(new Vector2(307.171997F, -6.1880002F), new Vector2(307.552002F, -5.85599995F), new Vector2(308.015991F, -5.61600018F)); + builder.AddCubicBezier(new Vector2(308.480011F, -5.37599993F), new Vector2(308.971985F, -5.18400002F), new Vector2(309.492004F, -5.03999996F)); + builder.AddCubicBezier(new Vector2(310.011993F, -4.89599991F), new Vector2(310.503998F, -4.74800014F), new Vector2(310.967987F, -4.59600019F)); + builder.AddCubicBezier(new Vector2(311.432007F, -4.44399977F), new Vector2(311.812012F, -4.25199986F), new Vector2(312.108002F, -4.01999998F)); + builder.AddCubicBezier(new Vector2(312.403992F, -3.78800011F), new Vector2(312.552002F, -3.46399999F), new Vector2(312.552002F, -3.0480001F)); + builder.AddCubicBezier(new Vector2(312.552002F, -2.63199997F), new Vector2(312.368011F, -2.30800009F), new Vector2(312F, -2.07599998F)); + builder.AddCubicBezier(new Vector2(311.631989F, -1.84399998F), new Vector2(311.112F, -1.72800004F), new Vector2(310.440002F, -1.72800004F)); + builder.AddCubicBezier(new Vector2(309.768005F, -1.72800004F), new Vector2(309.160004F, -1.852F), new Vector2(308.615997F, -2.0999999F)); + builder.AddCubicBezier(new Vector2(308.071991F, -2.34800005F), new Vector2(307.59201F, -2.72799993F), new Vector2(307.175995F, -3.24000001F)); + builder.AddLine(new Vector2(305.783997F, -1.84800005F)); + builder.AddCubicBezier(new Vector2(306.135986F, -1.41600001F), new Vector2(306.548004F, -1.04400003F), new Vector2(307.019989F, -0.731999993F)); + builder.AddCubicBezier(new Vector2(307.492004F, -0.419999987F), new Vector2(308.015991F, -0.180000007F), new Vector2(308.59201F, -0.0120000001F)); + builder.AddCubicBezier(new Vector2(309.167999F, 0.156000003F), new Vector2(309.776001F, 0.239999995F), new Vector2(310.415985F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(311.696014F, 0.239999995F), new Vector2(312.716003F, -0.0719999969F), new Vector2(313.476013F, -0.69599998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0113() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(304.920013F, -9.43200016F)); + builder.AddLine(new Vector2(304.920013F, -11.3999996F)); + builder.AddLine(new Vector2(297.144012F, -11.3999996F)); + builder.AddLine(new Vector2(297.144012F, -9.43200016F)); + builder.AddLine(new Vector2(304.920013F, -9.43200016F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(302.112F, 0F)); + builder.AddLine(new Vector2(302.112F, -16.1760006F)); + builder.AddLine(new Vector2(299.951996F, -16.1760006F)); + builder.AddLine(new Vector2(299.951996F, 0F)); + builder.AddLine(new Vector2(302.112F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0114() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(287.35199F, 0F)); + builder.AddLine(new Vector2(287.35199F, -17.1359997F)); + builder.AddLine(new Vector2(285.191986F, -17.1359997F)); + builder.AddLine(new Vector2(285.191986F, 0F)); + builder.AddLine(new Vector2(287.35199F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(295.415985F, 0F)); + builder.AddLine(new Vector2(295.415985F, -7.07999992F)); + builder.AddCubicBezier(new Vector2(295.415985F, -7.97599983F), new Vector2(295.223999F, -8.76799965F), new Vector2(294.839996F, -9.45600033F)); + builder.AddCubicBezier(new Vector2(294.455994F, -10.1440001F), new Vector2(293.932007F, -10.6800003F), new Vector2(293.268005F, -11.0640001F)); + builder.AddCubicBezier(new Vector2(292.604004F, -11.448F), new Vector2(291.839996F, -11.6400003F), new Vector2(290.976013F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(290.112F, -11.6400003F), new Vector2(289.335999F, -11.4440002F), new Vector2(288.64801F, -11.052F)); + builder.AddCubicBezier(new Vector2(287.959991F, -10.6599998F), new Vector2(287.424011F, -10.1280003F), new Vector2(287.040009F, -9.45600033F)); + builder.AddCubicBezier(new Vector2(286.656006F, -8.7840004F), new Vector2(286.463989F, -8.01599979F), new Vector2(286.463989F, -7.15199995F)); + builder.AddLine(new Vector2(287.35199F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(287.35199F, -7.22399998F), new Vector2(287.480011F, -7.73600006F), new Vector2(287.735992F, -8.18400002F)); + builder.AddCubicBezier(new Vector2(287.992004F, -8.63199997F), new Vector2(288.343994F, -8.98400021F), new Vector2(288.791992F, -9.23999977F)); + builder.AddCubicBezier(new Vector2(289.23999F, -9.49600029F), new Vector2(289.752014F, -9.6239996F), new Vector2(290.328003F, -9.6239996F)); + builder.AddCubicBezier(new Vector2(291.191986F, -9.6239996F), new Vector2(291.891998F, -9.34399986F), new Vector2(292.428009F, -8.7840004F)); + builder.AddCubicBezier(new Vector2(292.963989F, -8.22399998F), new Vector2(293.231995F, -7.51200008F), new Vector2(293.231995F, -6.64799976F)); + builder.AddLine(new Vector2(293.231995F, 0F)); + builder.AddLine(new Vector2(295.415985F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0115() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(274.571991F, -2.70000005F)); + builder.AddCubicBezier(new Vector2(274.019989F, -3.01200008F), new Vector2(273.588013F, -3.44799995F), new Vector2(273.276001F, -4.0079999F)); + builder.AddCubicBezier(new Vector2(272.963989F, -4.56799984F), new Vector2(272.808014F, -5.20800018F), new Vector2(272.808014F, -5.92799997F)); + builder.AddCubicBezier(new Vector2(272.808014F, -6.64799976F), new Vector2(272.963989F, -7.28399992F), new Vector2(273.276001F, -7.83599997F)); + builder.AddCubicBezier(new Vector2(273.588013F, -8.38799953F), new Vector2(274.015991F, -8.81999969F), new Vector2(274.559998F, -9.13199997F)); + builder.AddCubicBezier(new Vector2(275.104004F, -9.44400024F), new Vector2(275.735992F, -9.60000038F), new Vector2(276.455994F, -9.60000038F)); + builder.AddCubicBezier(new Vector2(277.160004F, -9.60000038F), new Vector2(277.779999F, -9.44400024F), new Vector2(278.31601F, -9.13199997F)); + builder.AddCubicBezier(new Vector2(278.85199F, -8.81999969F), new Vector2(279.268005F, -8.38799953F), new Vector2(279.563995F, -7.83599997F)); + builder.AddCubicBezier(new Vector2(279.859985F, -7.28399992F), new Vector2(280.007996F, -6.63999987F), new Vector2(280.007996F, -5.90399981F)); + builder.AddCubicBezier(new Vector2(280.007996F, -5.16800022F), new Vector2(279.859985F, -4.52400017F), new Vector2(279.563995F, -3.97199988F)); + builder.AddCubicBezier(new Vector2(279.268005F, -3.42000008F), new Vector2(278.855988F, -2.9920001F), new Vector2(278.328003F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(277.799988F, -2.38400006F), new Vector2(277.175995F, -2.23200011F), new Vector2(276.455994F, -2.23200011F)); + builder.AddCubicBezier(new Vector2(275.752014F, -2.23200011F), new Vector2(275.123993F, -2.38800001F), new Vector2(274.571991F, -2.70000005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(278.399994F, -0.720000029F)); + builder.AddCubicBezier(new Vector2(279.088013F, -1.07200003F), new Vector2(279.635986F, -1.56400001F), new Vector2(280.044006F, -2.1960001F)); + builder.AddCubicBezier(new Vector2(280.451996F, -2.82800007F), new Vector2(280.679993F, -3.55999994F), new Vector2(280.727997F, -4.3920002F)); + builder.AddLine(new Vector2(280.727997F, -7.41599989F)); + builder.AddCubicBezier(new Vector2(280.679993F, -8.26399994F), new Vector2(280.455994F, -9.00399971F), new Vector2(280.056F, -9.63599968F)); + builder.AddCubicBezier(new Vector2(279.656006F, -10.2679996F), new Vector2(279.108002F, -10.7600002F), new Vector2(278.411987F, -11.1120005F)); + builder.AddCubicBezier(new Vector2(277.716003F, -11.4639997F), new Vector2(276.920013F, -11.6400003F), new Vector2(276.023987F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(275F, -11.6400003F), new Vector2(274.071991F, -11.3879995F), new Vector2(273.23999F, -10.8839998F)); + builder.AddCubicBezier(new Vector2(272.40799F, -10.3800001F), new Vector2(271.756012F, -9.69999981F), new Vector2(271.283997F, -8.84399986F)); + builder.AddCubicBezier(new Vector2(270.812012F, -7.98799992F), new Vector2(270.575989F, -7.01599979F), new Vector2(270.575989F, -5.92799997F)); + builder.AddCubicBezier(new Vector2(270.575989F, -4.84000015F), new Vector2(270.81601F, -3.8599999F), new Vector2(271.29599F, -2.98799992F)); + builder.AddCubicBezier(new Vector2(271.776001F, -2.11599994F), new Vector2(272.428009F, -1.43200004F), new Vector2(273.252014F, -0.93599999F)); + builder.AddCubicBezier(new Vector2(274.075989F, -0.439999998F), new Vector2(275.007996F, -0.192000002F), new Vector2(276.048004F, -0.192000002F)); + builder.AddCubicBezier(new Vector2(276.928009F, -0.192000002F), new Vector2(277.712006F, -0.368000001F), new Vector2(278.399994F, -0.720000029F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(279.179993F, 4.33199978F)); + builder.AddCubicBezier(new Vector2(280.084015F, 3.87599993F), new Vector2(280.787994F, 3.23600006F), new Vector2(281.291992F, 2.41199994F)); + builder.AddCubicBezier(new Vector2(281.79599F, 1.58800006F), new Vector2(282.048004F, 0.632000029F), new Vector2(282.048004F, -0.456F)); + builder.AddLine(new Vector2(282.048004F, -11.3999996F)); + builder.AddLine(new Vector2(279.888F, -11.3999996F)); + builder.AddLine(new Vector2(279.888F, -8.39999962F)); + builder.AddLine(new Vector2(280.272003F, -5.85599995F)); + builder.AddLine(new Vector2(279.888F, -3.28800011F)); + builder.AddLine(new Vector2(279.888F, -0.456F)); + builder.AddCubicBezier(new Vector2(279.888F, 0.583999991F), new Vector2(279.544006F, 1.41199994F), new Vector2(278.855988F, 2.02800012F)); + builder.AddCubicBezier(new Vector2(278.167999F, 2.64400005F), new Vector2(277.247986F, 2.9519999F), new Vector2(276.096008F, 2.9519999F)); + builder.AddCubicBezier(new Vector2(275.216003F, 2.9519999F), new Vector2(274.455994F, 2.796F), new Vector2(273.81601F, 2.48399997F)); + builder.AddCubicBezier(new Vector2(273.175995F, 2.17199993F), new Vector2(272.623993F, 1.72000003F), new Vector2(272.160004F, 1.12800002F)); + builder.AddLine(new Vector2(270.743988F, 2.54399991F)); + builder.AddCubicBezier(new Vector2(271.303986F, 3.32800007F), new Vector2(272.032013F, 3.93600011F), new Vector2(272.928009F, 4.36800003F)); + builder.AddCubicBezier(new Vector2(273.824005F, 4.80000019F), new Vector2(274.864014F, 5.01599979F), new Vector2(276.048004F, 5.01599979F)); + builder.AddCubicBezier(new Vector2(277.231995F, 5.01599979F), new Vector2(278.276001F, 4.78800011F), new Vector2(279.179993F, 4.33199978F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0116() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(268.032013F, -14.0760002F)); + builder.AddCubicBezier(new Vector2(268.287994F, -14.3400002F), new Vector2(268.415985F, -14.6719999F), new Vector2(268.415985F, -15.0719995F)); + builder.AddCubicBezier(new Vector2(268.415985F, -15.4560003F), new Vector2(268.287994F, -15.7799997F), new Vector2(268.032013F, -16.0440006F)); + builder.AddCubicBezier(new Vector2(267.776001F, -16.3080006F), new Vector2(267.447998F, -16.4400005F), new Vector2(267.048004F, -16.4400005F)); + builder.AddCubicBezier(new Vector2(266.64801F, -16.4400005F), new Vector2(266.320007F, -16.3080006F), new Vector2(266.063995F, -16.0440006F)); + builder.AddCubicBezier(new Vector2(265.808014F, -15.7799997F), new Vector2(265.679993F, -15.4560003F), new Vector2(265.679993F, -15.0719995F)); + builder.AddCubicBezier(new Vector2(265.679993F, -14.6719999F), new Vector2(265.808014F, -14.3400002F), new Vector2(266.063995F, -14.0760002F)); + builder.AddCubicBezier(new Vector2(266.320007F, -13.8120003F), new Vector2(266.64801F, -13.6800003F), new Vector2(267.048004F, -13.6800003F)); + builder.AddCubicBezier(new Vector2(267.447998F, -13.6800003F), new Vector2(267.776001F, -13.8120003F), new Vector2(268.032013F, -14.0760002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(268.127991F, 0F)); + builder.AddLine(new Vector2(268.127991F, -11.3999996F)); + builder.AddLine(new Vector2(265.944F, -11.3999996F)); + builder.AddLine(new Vector2(265.944F, 0F)); + builder.AddLine(new Vector2(268.127991F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0117() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(263.664001F, 0F)); + builder.AddLine(new Vector2(256.895996F, -8.20800018F)); + builder.AddLine(new Vector2(254.759995F, -7.46400023F)); + builder.AddLine(new Vector2(260.808014F, 0F)); + builder.AddLine(new Vector2(263.664001F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(253.464005F, 0F)); + builder.AddLine(new Vector2(253.464005F, -16.6560001F)); + builder.AddLine(new Vector2(251.207993F, -16.6560001F)); + builder.AddLine(new Vector2(251.207993F, 0F)); + builder.AddLine(new Vector2(253.464005F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(257.328003F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(258.384003F, -7.24800014F), new Vector2(259.303986F, -7.44399977F), new Vector2(260.088013F, -7.83599997F)); + builder.AddCubicBezier(new Vector2(260.872009F, -8.22799969F), new Vector2(261.476013F, -8.77600002F), new Vector2(261.899994F, -9.47999954F)); + builder.AddCubicBezier(new Vector2(262.324005F, -10.184F), new Vector2(262.536011F, -11.0080004F), new Vector2(262.536011F, -11.9519997F)); + builder.AddCubicBezier(new Vector2(262.536011F, -12.8640003F), new Vector2(262.324005F, -13.6719999F), new Vector2(261.899994F, -14.3760004F)); + builder.AddCubicBezier(new Vector2(261.476013F, -15.0799999F), new Vector2(260.872009F, -15.6359997F), new Vector2(260.088013F, -16.0440006F)); + builder.AddCubicBezier(new Vector2(259.303986F, -16.4519997F), new Vector2(258.384003F, -16.6560001F), new Vector2(257.328003F, -16.6560001F)); + builder.AddLine(new Vector2(252.720001F, -16.6560001F)); + builder.AddLine(new Vector2(252.720001F, -14.6879997F)); + builder.AddLine(new Vector2(257.256012F, -14.6879997F)); + builder.AddCubicBezier(new Vector2(258.216003F, -14.6879997F), new Vector2(258.955994F, -14.4239998F), new Vector2(259.476013F, -13.8959999F)); + builder.AddCubicBezier(new Vector2(259.996002F, -13.368F), new Vector2(260.256012F, -12.7040005F), new Vector2(260.256012F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(260.256012F, -11.0559998F), new Vector2(259.996002F, -10.3839998F), new Vector2(259.476013F, -9.88799953F)); + builder.AddCubicBezier(new Vector2(258.955994F, -9.3920002F), new Vector2(258.208008F, -9.14400005F), new Vector2(257.231995F, -9.14400005F)); + builder.AddLine(new Vector2(252.720001F, -9.14400005F)); + builder.AddLine(new Vector2(252.720001F, -7.24800014F)); + builder.AddLine(new Vector2(257.328003F, -7.24800014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0118() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(242.688004F, 0F)); + builder.AddLine(new Vector2(242.688004F, -17.1359997F)); + builder.AddLine(new Vector2(240.528F, -17.1359997F)); + builder.AddLine(new Vector2(240.528F, 0F)); + builder.AddLine(new Vector2(242.688004F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0119() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(237.360001F, 0F)); + builder.AddLine(new Vector2(237.360001F, -17.1359997F)); + builder.AddLine(new Vector2(235.199997F, -17.1359997F)); + builder.AddLine(new Vector2(235.199997F, 0F)); + builder.AddLine(new Vector2(237.360001F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0120() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(229.656006F, -3.76799989F)); + builder.AddLine(new Vector2(229.656006F, -5.73600006F)); + builder.AddLine(new Vector2(220.895996F, -5.73600006F)); + builder.AddLine(new Vector2(220.895996F, -3.76799989F)); + builder.AddLine(new Vector2(229.656006F, -3.76799989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(220.056F, 0F)); + builder.AddLine(new Vector2(225.695999F, -14.0880003F)); + builder.AddLine(new Vector2(224.832001F, -14.0880003F)); + builder.AddLine(new Vector2(230.447998F, 0F)); + builder.AddLine(new Vector2(232.895996F, 0F)); + builder.AddLine(new Vector2(226.104004F, -16.6560001F)); + builder.AddLine(new Vector2(224.472F, -16.6560001F)); + builder.AddLine(new Vector2(217.632004F, 0F)); + builder.AddLine(new Vector2(220.056F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0121() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(211.031998F, -5.06400013F)); + builder.AddLine(new Vector2(211.031998F, -7.12799978F)); + builder.AddLine(new Vector2(203.136002F, -7.12799978F)); + builder.AddLine(new Vector2(203.136002F, -5.06400013F)); + builder.AddLine(new Vector2(211.031998F, -5.06400013F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0122() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(193.104004F, -0.263999999F)); + builder.AddCubicBezier(new Vector2(193.888F, -0.600000024F), new Vector2(194.559998F, -1.08800006F), new Vector2(195.119995F, -1.72800004F)); + builder.AddLine(new Vector2(193.727997F, -3.14400005F)); + builder.AddCubicBezier(new Vector2(193.343994F, -2.6960001F), new Vector2(192.884003F, -2.3599999F), new Vector2(192.348007F, -2.13599992F)); + builder.AddCubicBezier(new Vector2(191.811996F, -1.91199994F), new Vector2(191.223999F, -1.79999995F), new Vector2(190.584F, -1.79999995F)); + builder.AddCubicBezier(new Vector2(189.815994F, -1.79999995F), new Vector2(189.136002F, -1.96399999F), new Vector2(188.544006F, -2.29200006F)); + builder.AddCubicBezier(new Vector2(187.951996F, -2.61999989F), new Vector2(187.496002F, -3.08400011F), new Vector2(187.175995F, -3.68400002F)); + builder.AddCubicBezier(new Vector2(186.856003F, -4.28399992F), new Vector2(186.695999F, -4.98400021F), new Vector2(186.695999F, -5.78399992F)); + builder.AddCubicBezier(new Vector2(186.695999F, -6.56799984F), new Vector2(186.848007F, -7.24800014F), new Vector2(187.151993F, -7.82399988F)); + builder.AddCubicBezier(new Vector2(187.455994F, -8.39999962F), new Vector2(187.888F, -8.84799957F), new Vector2(188.447998F, -9.16800022F)); + builder.AddCubicBezier(new Vector2(189.007996F, -9.48799992F), new Vector2(189.656006F, -9.64799976F), new Vector2(190.391998F, -9.64799976F)); + builder.AddCubicBezier(new Vector2(191.095993F, -9.64799976F), new Vector2(191.695999F, -9.5F), new Vector2(192.192001F, -9.20400047F)); + builder.AddCubicBezier(new Vector2(192.688004F, -8.90799999F), new Vector2(193.072006F, -8.49199963F), new Vector2(193.343994F, -7.95599985F)); + builder.AddCubicBezier(new Vector2(193.615997F, -7.42000008F), new Vector2(193.751999F, -6.76800013F), new Vector2(193.751999F, -6F)); + builder.AddLine(new Vector2(194.544006F, -6.6960001F)); + builder.AddLine(new Vector2(186.072006F, -6.6960001F)); + builder.AddLine(new Vector2(186.072006F, -4.89599991F)); + builder.AddLine(new Vector2(195.695999F, -4.89599991F)); + builder.AddCubicBezier(new Vector2(195.744003F, -5.11999989F), new Vector2(195.776001F, -5.32399988F), new Vector2(195.792007F, -5.5079999F)); + builder.AddCubicBezier(new Vector2(195.807999F, -5.69199991F), new Vector2(195.815994F, -5.86399984F), new Vector2(195.815994F, -6.02400017F)); + builder.AddCubicBezier(new Vector2(195.815994F, -7.11199999F), new Vector2(195.587997F, -8.07999992F), new Vector2(195.132004F, -8.92800045F)); + builder.AddCubicBezier(new Vector2(194.675995F, -9.77600002F), new Vector2(194.039993F, -10.4399996F), new Vector2(193.223999F, -10.9200001F)); + builder.AddCubicBezier(new Vector2(192.408005F, -11.3999996F), new Vector2(191.479996F, -11.6400003F), new Vector2(190.440002F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(189.335999F, -11.6400003F), new Vector2(188.339996F, -11.3800001F), new Vector2(187.451996F, -10.8599997F)); + builder.AddCubicBezier(new Vector2(186.563995F, -10.3400002F), new Vector2(185.860001F, -9.63199997F), new Vector2(185.339996F, -8.73600006F)); + builder.AddCubicBezier(new Vector2(184.820007F, -7.84000015F), new Vector2(184.559998F, -6.83199978F), new Vector2(184.559998F, -5.71199989F)); + builder.AddCubicBezier(new Vector2(184.559998F, -4.57600021F), new Vector2(184.824005F, -3.55999994F), new Vector2(185.352005F, -2.66400003F)); + builder.AddCubicBezier(new Vector2(185.880005F, -1.76800001F), new Vector2(186.595993F, -1.05999994F), new Vector2(187.5F, -0.540000021F)); + builder.AddCubicBezier(new Vector2(188.404007F, -0.0199999996F), new Vector2(189.432007F, 0.239999995F), new Vector2(190.584F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(191.479996F, 0.239999995F), new Vector2(192.320007F, 0.0719999969F), new Vector2(193.104004F, -0.263999999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0123() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(181.740005F, -0.69599998F)); + builder.AddCubicBezier(new Vector2(182.5F, -1.32000005F), new Vector2(182.880005F, -2.16799998F), new Vector2(182.880005F, -3.24000001F)); + builder.AddCubicBezier(new Vector2(182.880005F, -3.94400001F), new Vector2(182.731995F, -4.51200008F), new Vector2(182.436005F, -4.94399977F)); + builder.AddCubicBezier(new Vector2(182.139999F, -5.37599993F), new Vector2(181.759995F, -5.71999979F), new Vector2(181.296005F, -5.97599983F)); + builder.AddCubicBezier(new Vector2(180.832001F, -6.23199987F), new Vector2(180.343994F, -6.43599987F), new Vector2(179.832001F, -6.58799982F)); + builder.AddCubicBezier(new Vector2(179.320007F, -6.73999977F), new Vector2(178.828003F, -6.88800001F), new Vector2(178.356003F, -7.03200006F)); + builder.AddCubicBezier(new Vector2(177.884003F, -7.17600012F), new Vector2(177.503998F, -7.35200024F), new Vector2(177.216003F, -7.55999994F)); + builder.AddCubicBezier(new Vector2(176.927994F, -7.76800013F), new Vector2(176.783997F, -8.06400013F), new Vector2(176.783997F, -8.44799995F)); + builder.AddCubicBezier(new Vector2(176.783997F, -8.81599998F), new Vector2(176.947998F, -9.11200047F), new Vector2(177.276001F, -9.33600044F)); + builder.AddCubicBezier(new Vector2(177.604004F, -9.56000042F), new Vector2(178.080002F, -9.67199993F), new Vector2(178.703995F, -9.67199993F)); + builder.AddCubicBezier(new Vector2(179.296005F, -9.67199993F), new Vector2(179.824005F, -9.56000042F), new Vector2(180.287994F, -9.33600044F)); + builder.AddCubicBezier(new Vector2(180.751999F, -9.11200047F), new Vector2(181.151993F, -8.79199982F), new Vector2(181.488007F, -8.3760004F)); + builder.AddLine(new Vector2(182.880005F, -9.76799965F)); + builder.AddCubicBezier(new Vector2(182.432007F, -10.3920002F), new Vector2(181.860001F, -10.8599997F), new Vector2(181.164001F, -11.1719999F)); + builder.AddCubicBezier(new Vector2(180.468002F, -11.4840002F), new Vector2(179.671997F, -11.6400003F), new Vector2(178.776001F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(177.927994F, -11.6400003F), new Vector2(177.199997F, -11.5039997F), new Vector2(176.591995F, -11.2320004F)); + builder.AddCubicBezier(new Vector2(175.983994F, -10.96F), new Vector2(175.516006F, -10.5719995F), new Vector2(175.188004F, -10.0679998F)); + builder.AddCubicBezier(new Vector2(174.860001F, -9.56400013F), new Vector2(174.695999F, -8.96800041F), new Vector2(174.695999F, -8.27999973F)); + builder.AddCubicBezier(new Vector2(174.695999F, -7.59200001F), new Vector2(174.843994F, -7.03599977F), new Vector2(175.139999F, -6.61199999F)); + builder.AddCubicBezier(new Vector2(175.436005F, -6.1880002F), new Vector2(175.815994F, -5.85599995F), new Vector2(176.279999F, -5.61600018F)); + builder.AddCubicBezier(new Vector2(176.744003F, -5.37599993F), new Vector2(177.235992F, -5.18400002F), new Vector2(177.755997F, -5.03999996F)); + builder.AddCubicBezier(new Vector2(178.276001F, -4.89599991F), new Vector2(178.768005F, -4.74800014F), new Vector2(179.231995F, -4.59600019F)); + builder.AddCubicBezier(new Vector2(179.695999F, -4.44399977F), new Vector2(180.076004F, -4.25199986F), new Vector2(180.371994F, -4.01999998F)); + builder.AddCubicBezier(new Vector2(180.667999F, -3.78800011F), new Vector2(180.815994F, -3.46399999F), new Vector2(180.815994F, -3.0480001F)); + builder.AddCubicBezier(new Vector2(180.815994F, -2.63199997F), new Vector2(180.632004F, -2.30800009F), new Vector2(180.264008F, -2.07599998F)); + builder.AddCubicBezier(new Vector2(179.895996F, -1.84399998F), new Vector2(179.376007F, -1.72800004F), new Vector2(178.703995F, -1.72800004F)); + builder.AddCubicBezier(new Vector2(178.031998F, -1.72800004F), new Vector2(177.423996F, -1.852F), new Vector2(176.880005F, -2.0999999F)); + builder.AddCubicBezier(new Vector2(176.335999F, -2.34800005F), new Vector2(175.856003F, -2.72799993F), new Vector2(175.440002F, -3.24000001F)); + builder.AddLine(new Vector2(174.048004F, -1.84800005F)); + builder.AddCubicBezier(new Vector2(174.399994F, -1.41600001F), new Vector2(174.811996F, -1.04400003F), new Vector2(175.283997F, -0.731999993F)); + builder.AddCubicBezier(new Vector2(175.755997F, -0.419999987F), new Vector2(176.279999F, -0.180000007F), new Vector2(176.856003F, -0.0120000001F)); + builder.AddCubicBezier(new Vector2(177.432007F, 0.156000003F), new Vector2(178.039993F, 0.239999995F), new Vector2(178.679993F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(179.960007F, 0.239999995F), new Vector2(180.979996F, -0.0719999969F), new Vector2(181.740005F, -0.69599998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0124() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(164.063995F, 0F)); + builder.AddLine(new Vector2(164.063995F, -11.3999996F)); + builder.AddLine(new Vector2(161.904007F, -11.3999996F)); + builder.AddLine(new Vector2(161.904007F, 0F)); + builder.AddLine(new Vector2(164.063995F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(172.128006F, 0F)); + builder.AddLine(new Vector2(172.128006F, -7.07999992F)); + builder.AddCubicBezier(new Vector2(172.128006F, -7.86399984F), new Vector2(171.936005F, -8.60400009F), new Vector2(171.552002F, -9.30000019F)); + builder.AddCubicBezier(new Vector2(171.167999F, -9.99600029F), new Vector2(170.643997F, -10.5600004F), new Vector2(169.979996F, -10.9919996F)); + builder.AddCubicBezier(new Vector2(169.315994F, -11.4239998F), new Vector2(168.552002F, -11.6400003F), new Vector2(167.688004F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(166.824005F, -11.6400003F), new Vector2(166.048004F, -11.4440002F), new Vector2(165.360001F, -11.052F)); + builder.AddCubicBezier(new Vector2(164.671997F, -10.6599998F), new Vector2(164.136002F, -10.1280003F), new Vector2(163.751999F, -9.45600033F)); + builder.AddCubicBezier(new Vector2(163.367996F, -8.7840004F), new Vector2(163.175995F, -8.01599979F), new Vector2(163.175995F, -7.15199995F)); + builder.AddLine(new Vector2(164.063995F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(164.063995F, -7.22399998F), new Vector2(164.192001F, -7.73600006F), new Vector2(164.447998F, -8.18400002F)); + builder.AddCubicBezier(new Vector2(164.703995F, -8.63199997F), new Vector2(165.056F, -8.98400021F), new Vector2(165.503998F, -9.23999977F)); + builder.AddCubicBezier(new Vector2(165.951996F, -9.49600029F), new Vector2(166.464005F, -9.6239996F), new Vector2(167.039993F, -9.6239996F)); + builder.AddCubicBezier(new Vector2(167.904007F, -9.6239996F), new Vector2(168.604004F, -9.34399986F), new Vector2(169.139999F, -8.7840004F)); + builder.AddCubicBezier(new Vector2(169.675995F, -8.22399998F), new Vector2(169.944F, -7.51200008F), new Vector2(169.944F, -6.64799976F)); + builder.AddLine(new Vector2(169.944F, 0F)); + builder.AddLine(new Vector2(172.128006F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0125() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(156.839996F, -0.263999999F)); + builder.AddCubicBezier(new Vector2(157.623993F, -0.600000024F), new Vector2(158.296005F, -1.08800006F), new Vector2(158.856003F, -1.72800004F)); + builder.AddLine(new Vector2(157.464005F, -3.14400005F)); + builder.AddCubicBezier(new Vector2(157.080002F, -2.6960001F), new Vector2(156.619995F, -2.3599999F), new Vector2(156.084F, -2.13599992F)); + builder.AddCubicBezier(new Vector2(155.548004F, -1.91199994F), new Vector2(154.960007F, -1.79999995F), new Vector2(154.320007F, -1.79999995F)); + builder.AddCubicBezier(new Vector2(153.552002F, -1.79999995F), new Vector2(152.871994F, -1.96399999F), new Vector2(152.279999F, -2.29200006F)); + builder.AddCubicBezier(new Vector2(151.688004F, -2.61999989F), new Vector2(151.231995F, -3.08400011F), new Vector2(150.912003F, -3.68400002F)); + builder.AddCubicBezier(new Vector2(150.591995F, -4.28399992F), new Vector2(150.432007F, -4.98400021F), new Vector2(150.432007F, -5.78399992F)); + builder.AddCubicBezier(new Vector2(150.432007F, -6.56799984F), new Vector2(150.584F, -7.24800014F), new Vector2(150.888F, -7.82399988F)); + builder.AddCubicBezier(new Vector2(151.192001F, -8.39999962F), new Vector2(151.623993F, -8.84799957F), new Vector2(152.184006F, -9.16800022F)); + builder.AddCubicBezier(new Vector2(152.744003F, -9.48799992F), new Vector2(153.391998F, -9.64799976F), new Vector2(154.128006F, -9.64799976F)); + builder.AddCubicBezier(new Vector2(154.832001F, -9.64799976F), new Vector2(155.432007F, -9.5F), new Vector2(155.927994F, -9.20400047F)); + builder.AddCubicBezier(new Vector2(156.423996F, -8.90799999F), new Vector2(156.807999F, -8.49199963F), new Vector2(157.080002F, -7.95599985F)); + builder.AddCubicBezier(new Vector2(157.352005F, -7.42000008F), new Vector2(157.488007F, -6.76800013F), new Vector2(157.488007F, -6F)); + builder.AddLine(new Vector2(158.279999F, -6.6960001F)); + builder.AddLine(new Vector2(149.807999F, -6.6960001F)); + builder.AddLine(new Vector2(149.807999F, -4.89599991F)); + builder.AddLine(new Vector2(159.432007F, -4.89599991F)); + builder.AddCubicBezier(new Vector2(159.479996F, -5.11999989F), new Vector2(159.511993F, -5.32399988F), new Vector2(159.528F, -5.5079999F)); + builder.AddCubicBezier(new Vector2(159.544006F, -5.69199991F), new Vector2(159.552002F, -5.86399984F), new Vector2(159.552002F, -6.02400017F)); + builder.AddCubicBezier(new Vector2(159.552002F, -7.11199999F), new Vector2(159.324005F, -8.07999992F), new Vector2(158.867996F, -8.92800045F)); + builder.AddCubicBezier(new Vector2(158.412003F, -9.77600002F), new Vector2(157.776001F, -10.4399996F), new Vector2(156.960007F, -10.9200001F)); + builder.AddCubicBezier(new Vector2(156.143997F, -11.3999996F), new Vector2(155.216003F, -11.6400003F), new Vector2(154.175995F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(153.072006F, -11.6400003F), new Vector2(152.076004F, -11.3800001F), new Vector2(151.188004F, -10.8599997F)); + builder.AddCubicBezier(new Vector2(150.300003F, -10.3400002F), new Vector2(149.595993F, -9.63199997F), new Vector2(149.076004F, -8.73600006F)); + builder.AddCubicBezier(new Vector2(148.556F, -7.84000015F), new Vector2(148.296005F, -6.83199978F), new Vector2(148.296005F, -5.71199989F)); + builder.AddCubicBezier(new Vector2(148.296005F, -4.57600021F), new Vector2(148.559998F, -3.55999994F), new Vector2(149.087997F, -2.66400003F)); + builder.AddCubicBezier(new Vector2(149.615997F, -1.76800001F), new Vector2(150.332001F, -1.05999994F), new Vector2(151.235992F, -0.540000021F)); + builder.AddCubicBezier(new Vector2(152.139999F, -0.0199999996F), new Vector2(153.167999F, 0.239999995F), new Vector2(154.320007F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(155.216003F, 0.239999995F), new Vector2(156.056F, 0.0719999969F), new Vector2(156.839996F, -0.263999999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0126() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(145.188004F, -0.263999999F)); + builder.AddCubicBezier(new Vector2(145.947998F, -0.600000024F), new Vector2(146.591995F, -1.07200003F), new Vector2(147.119995F, -1.67999995F)); + builder.AddLine(new Vector2(145.703995F, -3.11999989F)); + builder.AddCubicBezier(new Vector2(145.335999F, -2.704F), new Vector2(144.899994F, -2.38800001F), new Vector2(144.395996F, -2.17199993F)); + builder.AddCubicBezier(new Vector2(143.891998F, -1.95599997F), new Vector2(143.335999F, -1.84800005F), new Vector2(142.727997F, -1.84800005F)); + builder.AddCubicBezier(new Vector2(142.007996F, -1.84800005F), new Vector2(141.367996F, -2.01600003F), new Vector2(140.807999F, -2.352F)); + builder.AddCubicBezier(new Vector2(140.248001F, -2.68799996F), new Vector2(139.807999F, -3.14400005F), new Vector2(139.488007F, -3.72000003F)); + builder.AddCubicBezier(new Vector2(139.167999F, -4.296F), new Vector2(139.007996F, -4.96000004F), new Vector2(139.007996F, -5.71199989F)); + builder.AddCubicBezier(new Vector2(139.007996F, -6.46400023F), new Vector2(139.167999F, -7.12799978F), new Vector2(139.488007F, -7.704F)); + builder.AddCubicBezier(new Vector2(139.807999F, -8.27999973F), new Vector2(140.248001F, -8.73200035F), new Vector2(140.807999F, -9.06000042F)); + builder.AddCubicBezier(new Vector2(141.367996F, -9.38799953F), new Vector2(142.007996F, -9.55200005F), new Vector2(142.727997F, -9.55200005F)); + builder.AddCubicBezier(new Vector2(143.320007F, -9.55200005F), new Vector2(143.871994F, -9.44400024F), new Vector2(144.384003F, -9.22799969F)); + builder.AddCubicBezier(new Vector2(144.895996F, -9.01200008F), new Vector2(145.328003F, -8.6960001F), new Vector2(145.679993F, -8.27999973F)); + builder.AddLine(new Vector2(147.119995F, -9.72000027F)); + builder.AddCubicBezier(new Vector2(146.576004F, -10.3439999F), new Vector2(145.927994F, -10.8199997F), new Vector2(145.175995F, -11.1479998F)); + builder.AddCubicBezier(new Vector2(144.423996F, -11.4759998F), new Vector2(143.608002F, -11.6400003F), new Vector2(142.727997F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(141.608002F, -11.6400003F), new Vector2(140.595993F, -11.3800001F), new Vector2(139.692001F, -10.8599997F)); + builder.AddCubicBezier(new Vector2(138.787994F, -10.3400002F), new Vector2(138.076004F, -9.63199997F), new Vector2(137.556F, -8.73600006F)); + builder.AddCubicBezier(new Vector2(137.035995F, -7.84000015F), new Vector2(136.776001F, -6.83199978F), new Vector2(136.776001F, -5.71199989F)); + builder.AddCubicBezier(new Vector2(136.776001F, -4.6079998F), new Vector2(137.035995F, -3.60400009F), new Vector2(137.556F, -2.70000005F)); + builder.AddCubicBezier(new Vector2(138.076004F, -1.796F), new Vector2(138.787994F, -1.08000004F), new Vector2(139.692001F, -0.551999986F)); + builder.AddCubicBezier(new Vector2(140.595993F, -0.0240000002F), new Vector2(141.608002F, 0.239999995F), new Vector2(142.727997F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(143.608002F, 0.239999995F), new Vector2(144.427994F, 0.0719999969F), new Vector2(145.188004F, -0.263999999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0127() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(134.231995F, -14.0760002F)); + builder.AddCubicBezier(new Vector2(134.488007F, -14.3400002F), new Vector2(134.615997F, -14.6719999F), new Vector2(134.615997F, -15.0719995F)); + builder.AddCubicBezier(new Vector2(134.615997F, -15.4560003F), new Vector2(134.488007F, -15.7799997F), new Vector2(134.231995F, -16.0440006F)); + builder.AddCubicBezier(new Vector2(133.975998F, -16.3080006F), new Vector2(133.647995F, -16.4400005F), new Vector2(133.248001F, -16.4400005F)); + builder.AddCubicBezier(new Vector2(132.848007F, -16.4400005F), new Vector2(132.520004F, -16.3080006F), new Vector2(132.264008F, -16.0440006F)); + builder.AddCubicBezier(new Vector2(132.007996F, -15.7799997F), new Vector2(131.880005F, -15.4560003F), new Vector2(131.880005F, -15.0719995F)); + builder.AddCubicBezier(new Vector2(131.880005F, -14.6719999F), new Vector2(132.007996F, -14.3400002F), new Vector2(132.264008F, -14.0760002F)); + builder.AddCubicBezier(new Vector2(132.520004F, -13.8120003F), new Vector2(132.848007F, -13.6800003F), new Vector2(133.248001F, -13.6800003F)); + builder.AddCubicBezier(new Vector2(133.647995F, -13.6800003F), new Vector2(133.975998F, -13.8120003F), new Vector2(134.231995F, -14.0760002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(134.328003F, 0F)); + builder.AddLine(new Vector2(134.328003F, -11.3999996F)); + builder.AddLine(new Vector2(132.143997F, -11.3999996F)); + builder.AddLine(new Vector2(132.143997F, 0F)); + builder.AddLine(new Vector2(134.328003F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0128() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(129.744003F, 0F)); + builder.AddLine(new Vector2(129.744003F, -2.06399989F)); + builder.AddLine(new Vector2(120.816002F, -2.06399989F)); + builder.AddLine(new Vector2(120.816002F, 0F)); + builder.AddLine(new Vector2(129.744003F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(121.536003F, 0F)); + builder.AddLine(new Vector2(121.536003F, -16.6560001F)); + builder.AddLine(new Vector2(119.279999F, -16.6560001F)); + builder.AddLine(new Vector2(119.279999F, 0F)); + builder.AddLine(new Vector2(121.536003F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0129() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(112.008003F, -14.592F)); + builder.AddLine(new Vector2(112.008003F, -16.6560001F)); + builder.AddLine(new Vector2(98.447998F, -16.6560001F)); + builder.AddLine(new Vector2(98.447998F, -14.592F)); + builder.AddLine(new Vector2(112.008003F, -14.592F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(106.367996F, 0F)); + builder.AddLine(new Vector2(106.367996F, -16.1760006F)); + builder.AddLine(new Vector2(104.087997F, -16.1760006F)); + builder.AddLine(new Vector2(104.087997F, 0F)); + builder.AddLine(new Vector2(106.367996F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0130() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(95.7600021F, 0F)); + builder.AddLine(new Vector2(95.7600021F, -16.6560001F)); + builder.AddLine(new Vector2(93.5039978F, -16.6560001F)); + builder.AddLine(new Vector2(93.5039978F, 0F)); + builder.AddLine(new Vector2(95.7600021F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0131() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(75.6240005F, 0F)); + builder.AddLine(new Vector2(75.6240005F, -12.6960001F)); + builder.AddLine(new Vector2(75.1200027F, -12.552F)); + builder.AddLine(new Vector2(80.6640015F, -3.40799999F)); + builder.AddLine(new Vector2(82.2720032F, -3.40799999F)); + builder.AddLine(new Vector2(87.8160019F, -12.552F)); + builder.AddLine(new Vector2(87.3119965F, -12.6960001F)); + builder.AddLine(new Vector2(87.3119965F, 0F)); + builder.AddLine(new Vector2(89.5680008F, 0F)); + builder.AddLine(new Vector2(89.5680008F, -16.6560001F)); + builder.AddLine(new Vector2(87.9840012F, -16.6560001F)); + builder.AddLine(new Vector2(80.9280014F, -5.06400013F)); + builder.AddLine(new Vector2(82.0080032F, -5.06400013F)); + builder.AddLine(new Vector2(74.9520035F, -16.6560001F)); + builder.AddLine(new Vector2(73.3679962F, -16.6560001F)); + builder.AddLine(new Vector2(73.3679962F, 0F)); + builder.AddLine(new Vector2(75.6240005F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0132() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(60.8880005F, -8.83199978F)); + builder.AddCubicBezier(new Vector2(61.4000015F, -9.34399986F), new Vector2(62.0559998F, -9.60000038F), new Vector2(62.855999F, -9.60000038F)); + builder.AddCubicBezier(new Vector2(63.2400017F, -9.60000038F), new Vector2(63.5760002F, -9.54399967F), new Vector2(63.8639984F, -9.43200016F)); + builder.AddCubicBezier(new Vector2(64.1520004F, -9.31999969F), new Vector2(64.4160004F, -9.13599968F), new Vector2(64.6559982F, -8.88000011F)); + builder.AddLine(new Vector2(66.0719986F, -10.3439999F)); + builder.AddCubicBezier(new Vector2(65.6719971F, -10.8079996F), new Vector2(65.2399979F, -11.1400003F), new Vector2(64.776001F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(64.3119965F, -11.54F), new Vector2(63.7919998F, -11.6400003F), new Vector2(63.2159996F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(61.9519997F, -11.6400003F), new Vector2(60.9840012F, -11.2080002F), new Vector2(60.3120003F, -10.3439999F)); + builder.AddCubicBezier(new Vector2(59.6399994F, -9.47999954F), new Vector2(59.3040009F, -8.31999969F), new Vector2(59.3040009F, -6.86399984F)); + builder.AddLine(new Vector2(60.1199989F, -6.48000002F)); + builder.AddCubicBezier(new Vector2(60.1199989F, -7.53599977F), new Vector2(60.3759995F, -8.31999969F), new Vector2(60.8880005F, -8.83199978F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(60.1199989F, 0F)); + builder.AddLine(new Vector2(60.1199989F, -11.3999996F)); + builder.AddLine(new Vector2(57.9599991F, -11.3999996F)); + builder.AddLine(new Vector2(57.9599991F, 0F)); + builder.AddLine(new Vector2(60.1199989F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0133() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(52.8959999F, -0.263999999F)); + builder.AddCubicBezier(new Vector2(53.6800003F, -0.600000024F), new Vector2(54.3520012F, -1.08800006F), new Vector2(54.9119987F, -1.72800004F)); + builder.AddLine(new Vector2(53.5200005F, -3.14400005F)); + builder.AddCubicBezier(new Vector2(53.1360016F, -2.6960001F), new Vector2(52.6759987F, -2.3599999F), new Vector2(52.1399994F, -2.13599992F)); + builder.AddCubicBezier(new Vector2(51.6040001F, -1.91199994F), new Vector2(51.0159988F, -1.79999995F), new Vector2(50.3759995F, -1.79999995F)); + builder.AddCubicBezier(new Vector2(49.6080017F, -1.79999995F), new Vector2(48.9280014F, -1.96399999F), new Vector2(48.3359985F, -2.29200006F)); + builder.AddCubicBezier(new Vector2(47.7439995F, -2.61999989F), new Vector2(47.2879982F, -3.08400011F), new Vector2(46.9679985F, -3.68400002F)); + builder.AddCubicBezier(new Vector2(46.6479988F, -4.28399992F), new Vector2(46.487999F, -4.98400021F), new Vector2(46.487999F, -5.78399992F)); + builder.AddCubicBezier(new Vector2(46.487999F, -6.56799984F), new Vector2(46.6399994F, -7.24800014F), new Vector2(46.9440002F, -7.82399988F)); + builder.AddCubicBezier(new Vector2(47.2480011F, -8.39999962F), new Vector2(47.6800003F, -8.84799957F), new Vector2(48.2400017F, -9.16800022F)); + builder.AddCubicBezier(new Vector2(48.7999992F, -9.48799992F), new Vector2(49.4480019F, -9.64799976F), new Vector2(50.1839981F, -9.64799976F)); + builder.AddCubicBezier(new Vector2(50.8880005F, -9.64799976F), new Vector2(51.487999F, -9.5F), new Vector2(51.9840012F, -9.20400047F)); + builder.AddCubicBezier(new Vector2(52.4799995F, -8.90799999F), new Vector2(52.8639984F, -8.49199963F), new Vector2(53.1360016F, -7.95599985F)); + builder.AddCubicBezier(new Vector2(53.4080009F, -7.42000008F), new Vector2(53.5439987F, -6.76800013F), new Vector2(53.5439987F, -6F)); + builder.AddLine(new Vector2(54.3359985F, -6.6960001F)); + builder.AddLine(new Vector2(45.8639984F, -6.6960001F)); + builder.AddLine(new Vector2(45.8639984F, -4.89599991F)); + builder.AddLine(new Vector2(55.487999F, -4.89599991F)); + builder.AddCubicBezier(new Vector2(55.5359993F, -5.11999989F), new Vector2(55.5680008F, -5.32399988F), new Vector2(55.5839996F, -5.5079999F)); + builder.AddCubicBezier(new Vector2(55.5999985F, -5.69199991F), new Vector2(55.6080017F, -5.86399984F), new Vector2(55.6080017F, -6.02400017F)); + builder.AddCubicBezier(new Vector2(55.6080017F, -7.11199999F), new Vector2(55.3800011F, -8.07999992F), new Vector2(54.9239998F, -8.92800045F)); + builder.AddCubicBezier(new Vector2(54.4679985F, -9.77600002F), new Vector2(53.8320007F, -10.4399996F), new Vector2(53.0159988F, -10.9200001F)); + builder.AddCubicBezier(new Vector2(52.2000008F, -11.3999996F), new Vector2(51.2719994F, -11.6400003F), new Vector2(50.2319984F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(49.1279984F, -11.6400003F), new Vector2(48.132F, -11.3800001F), new Vector2(47.2439995F, -10.8599997F)); + builder.AddCubicBezier(new Vector2(46.355999F, -10.3400002F), new Vector2(45.6520004F, -9.63199997F), new Vector2(45.132F, -8.73600006F)); + builder.AddCubicBezier(new Vector2(44.6119995F, -7.84000015F), new Vector2(44.3520012F, -6.83199978F), new Vector2(44.3520012F, -5.71199989F)); + builder.AddCubicBezier(new Vector2(44.3520012F, -4.57600021F), new Vector2(44.6160011F, -3.55999994F), new Vector2(45.144001F, -2.66400003F)); + builder.AddCubicBezier(new Vector2(45.6720009F, -1.76800001F), new Vector2(46.3880005F, -1.05999994F), new Vector2(47.2919998F, -0.540000021F)); + builder.AddCubicBezier(new Vector2(48.1959991F, -0.0199999996F), new Vector2(49.223999F, 0.239999995F), new Vector2(50.3759995F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(51.2719994F, 0.239999995F), new Vector2(52.1119995F, 0.0719999969F), new Vector2(52.8959999F, -0.263999999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0134() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(41.9519997F, -17.1359997F)); + builder.AddLine(new Vector2(39.7680016F, -17.1359997F)); + builder.AddLine(new Vector2(39.7680016F, -8.61600018F)); + builder.AddLine(new Vector2(40.1759987F, -5.85599995F)); + builder.AddLine(new Vector2(39.7680016F, -3.07200003F)); + builder.AddLine(new Vector2(39.7680016F, 0F)); + builder.AddLine(new Vector2(41.9519997F, 0F)); + builder.AddLine(new Vector2(41.9519997F, -17.1359997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(34.4039993F, -2.29200006F)); + builder.AddCubicBezier(new Vector2(33.8520012F, -2.61999989F), new Vector2(33.4199982F, -3.07999992F), new Vector2(33.1080017F, -3.67199993F)); + builder.AddCubicBezier(new Vector2(32.7960014F, -4.26399994F), new Vector2(32.6399994F, -4.94399977F), new Vector2(32.6399994F, -5.71199989F)); + builder.AddCubicBezier(new Vector2(32.6399994F, -6.48000002F), new Vector2(32.7960014F, -7.15600014F), new Vector2(33.1080017F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(33.4199982F, -8.32400036F), new Vector2(33.8479996F, -8.77999973F), new Vector2(34.3919983F, -9.1079998F)); + builder.AddCubicBezier(new Vector2(34.9360008F, -9.43599987F), new Vector2(35.5680008F, -9.60000038F), new Vector2(36.2879982F, -9.60000038F)); + builder.AddCubicBezier(new Vector2(37.0079994F, -9.60000038F), new Vector2(37.6399994F, -9.43200016F), new Vector2(38.1839981F, -9.09599972F)); + builder.AddCubicBezier(new Vector2(38.7280006F, -8.76000023F), new Vector2(39.1520004F, -8.30000019F), new Vector2(39.4560013F, -7.71600008F)); + builder.AddCubicBezier(new Vector2(39.7599983F, -7.13199997F), new Vector2(39.9119987F, -6.45599985F), new Vector2(39.9119987F, -5.6880002F)); + builder.AddCubicBezier(new Vector2(39.9119987F, -4.93599987F), new Vector2(39.7599983F, -4.26800013F), new Vector2(39.4560013F, -3.68400002F)); + builder.AddCubicBezier(new Vector2(39.1520004F, -3.0999999F), new Vector2(38.7280006F, -2.6400001F), new Vector2(38.1839981F, -2.3039999F)); + builder.AddCubicBezier(new Vector2(37.6399994F, -1.96800005F), new Vector2(37.0079994F, -1.79999995F), new Vector2(36.2879982F, -1.79999995F)); + builder.AddCubicBezier(new Vector2(35.5839996F, -1.79999995F), new Vector2(34.9560013F, -1.96399999F), new Vector2(34.4039993F, -2.29200006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(38.2799988F, -0.300000012F)); + builder.AddCubicBezier(new Vector2(38.9679985F, -0.660000026F), new Vector2(39.5200005F, -1.15999997F), new Vector2(39.9360008F, -1.79999995F)); + builder.AddCubicBezier(new Vector2(40.3520012F, -2.44000006F), new Vector2(40.5839996F, -3.16799998F), new Vector2(40.632F, -3.98399997F)); + builder.AddLine(new Vector2(40.632F, -7.41599989F)); + builder.AddCubicBezier(new Vector2(40.5839996F, -8.24800014F), new Vector2(40.3479996F, -8.97999954F), new Vector2(39.9239998F, -9.61200047F)); + builder.AddCubicBezier(new Vector2(39.5F, -10.2440004F), new Vector2(38.9440002F, -10.7399998F), new Vector2(38.2560005F, -11.1000004F)); + builder.AddCubicBezier(new Vector2(37.5680008F, -11.46F), new Vector2(36.7919998F, -11.6400003F), new Vector2(35.9280014F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(34.8880005F, -11.6400003F), new Vector2(33.9519997F, -11.3760004F), new Vector2(33.1199989F, -10.8479996F)); + builder.AddCubicBezier(new Vector2(32.2879982F, -10.3199997F), new Vector2(31.6280003F, -9.6079998F), new Vector2(31.1399994F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(30.6520004F, -7.81599998F), new Vector2(30.4080009F, -6.80800009F), new Vector2(30.4080009F, -5.6880002F)); + builder.AddCubicBezier(new Vector2(30.4080009F, -4.56799984F), new Vector2(30.6520004F, -3.55999994F), new Vector2(31.1399994F, -2.66400003F)); + builder.AddCubicBezier(new Vector2(31.6280003F, -1.76800001F), new Vector2(32.2879982F, -1.05999994F), new Vector2(33.1199989F, -0.540000021F)); + builder.AddCubicBezier(new Vector2(33.9519997F, -0.0199999996F), new Vector2(34.8880005F, 0.239999995F), new Vector2(35.9280014F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(36.8079987F, 0.239999995F), new Vector2(37.5919991F, 0.0599999987F), new Vector2(38.2799988F, -0.300000012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0135() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(20.1359997F, 0F)); + builder.AddLine(new Vector2(20.1359997F, -11.3999996F)); + builder.AddLine(new Vector2(17.9759998F, -11.3999996F)); + builder.AddLine(new Vector2(17.9759998F, 0F)); + builder.AddLine(new Vector2(20.1359997F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(28.2000008F, 0F)); + builder.AddLine(new Vector2(28.2000008F, -7.07999992F)); + builder.AddCubicBezier(new Vector2(28.2000008F, -7.86399984F), new Vector2(28.0079994F, -8.60400009F), new Vector2(27.6240005F, -9.30000019F)); + builder.AddCubicBezier(new Vector2(27.2399998F, -9.99600029F), new Vector2(26.7159996F, -10.5600004F), new Vector2(26.052F, -10.9919996F)); + builder.AddCubicBezier(new Vector2(25.3880005F, -11.4239998F), new Vector2(24.6240005F, -11.6400003F), new Vector2(23.7600002F, -11.6400003F)); + builder.AddCubicBezier(new Vector2(22.8959999F, -11.6400003F), new Vector2(22.1200008F, -11.4440002F), new Vector2(21.4319992F, -11.052F)); + builder.AddCubicBezier(new Vector2(20.7439995F, -10.6599998F), new Vector2(20.2080002F, -10.1280003F), new Vector2(19.8239994F, -9.45600033F)); + builder.AddCubicBezier(new Vector2(19.4400005F, -8.7840004F), new Vector2(19.2479992F, -8.01599979F), new Vector2(19.2479992F, -7.15199995F)); + builder.AddLine(new Vector2(20.1359997F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(20.1359997F, -7.22399998F), new Vector2(20.2639999F, -7.73600006F), new Vector2(20.5200005F, -8.18400002F)); + builder.AddCubicBezier(new Vector2(20.7759991F, -8.63199997F), new Vector2(21.1280003F, -8.98400021F), new Vector2(21.5760002F, -9.23999977F)); + builder.AddCubicBezier(new Vector2(22.0240002F, -9.49600029F), new Vector2(22.5359993F, -9.6239996F), new Vector2(23.1119995F, -9.6239996F)); + builder.AddCubicBezier(new Vector2(23.9759998F, -9.6239996F), new Vector2(24.6760006F, -9.34399986F), new Vector2(25.2119999F, -8.7840004F)); + builder.AddCubicBezier(new Vector2(25.7479992F, -8.22399998F), new Vector2(26.0160007F, -7.51200008F), new Vector2(26.0160007F, -6.64799976F)); + builder.AddLine(new Vector2(26.0160007F, 0F)); + builder.AddLine(new Vector2(28.2000008F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Layer: © Collapse Project Outlines + CanvasGeometry Geometry_0136() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(11.5200005F, -0.600000024F)); + builder.AddCubicBezier(new Vector2(12.4799995F, -1.15999997F), new Vector2(13.2399998F, -1.91999996F), new Vector2(13.8000002F, -2.88000011F)); + builder.AddCubicBezier(new Vector2(14.3599997F, -3.83999991F), new Vector2(14.6400003F, -4.92799997F), new Vector2(14.6400003F, -6.14400005F)); + builder.AddLine(new Vector2(14.6400003F, -16.6560001F)); + builder.AddLine(new Vector2(12.3599997F, -16.6560001F)); + builder.AddLine(new Vector2(12.3599997F, -6.19199991F)); + builder.AddCubicBezier(new Vector2(12.3599997F, -5.32800007F), new Vector2(12.1800003F, -4.57600021F), new Vector2(11.8199997F, -3.93600011F)); + builder.AddCubicBezier(new Vector2(11.46F, -3.296F), new Vector2(10.9720001F, -2.79999995F), new Vector2(10.3559999F, -2.44799995F)); + builder.AddCubicBezier(new Vector2(9.73999977F, -2.09599996F), new Vector2(9.03199959F, -1.91999996F), new Vector2(8.23200035F, -1.91999996F)); + builder.AddCubicBezier(new Vector2(7.43200016F, -1.91999996F), new Vector2(6.71600008F, -2.09599996F), new Vector2(6.08400011F, -2.44799995F)); + builder.AddCubicBezier(new Vector2(5.45200014F, -2.79999995F), new Vector2(4.95200014F, -3.296F), new Vector2(4.58400011F, -3.93600011F)); + builder.AddCubicBezier(new Vector2(4.21600008F, -4.57600021F), new Vector2(4.03200006F, -5.33599997F), new Vector2(4.03200006F, -6.21600008F)); + builder.AddLine(new Vector2(4.03200006F, -16.6560001F)); + builder.AddLine(new Vector2(1.75199997F, -16.6560001F)); + builder.AddLine(new Vector2(1.75199997F, -6.16800022F)); + builder.AddCubicBezier(new Vector2(1.75199997F, -4.95200014F), new Vector2(2.03600001F, -3.8599999F), new Vector2(2.60400009F, -2.89199996F)); + builder.AddCubicBezier(new Vector2(3.17199993F, -1.92400002F), new Vector2(3.94400001F, -1.15999997F), new Vector2(4.92000008F, -0.600000024F)); + builder.AddCubicBezier(new Vector2(5.89599991F, -0.0399999991F), new Vector2(7F, 0.239999995F), new Vector2(8.23200035F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(9.46399975F, 0.239999995F), new Vector2(10.5600004F, -0.0399999991F), new Vector2(11.5200005F, -0.600000024F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0137() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(23987.3887F, 0F)); + builder.AddLine(new Vector2(23987.3887F, -201.916F)); + builder.AddLine(new Vector2(23942.2012F, -201.916F)); + builder.AddLine(new Vector2(23942.2012F, 0F)); + builder.AddLine(new Vector2(23987.3887F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(24026.8574F, -73.5019989F)); + builder.AddCubicBezier(new Vector2(24039.6289F, -73.5019989F), new Vector2(24051.2109F, -76.0759964F), new Vector2(24061.6055F, -81.223999F)); + builder.AddCubicBezier(new Vector2(24071.9961F, -86.3720016F), new Vector2(24080.1953F, -93.7590027F), new Vector2(24086.2012F, -103.389F)); + builder.AddCubicBezier(new Vector2(24092.209F, -113.014999F), new Vector2(24095.2109F, -124.410004F), new Vector2(24095.2109F, -137.565994F)); + builder.AddCubicBezier(new Vector2(24095.2109F, -150.910004F), new Vector2(24092.209F, -162.399002F), new Vector2(24086.2012F, -172.029007F)); + builder.AddCubicBezier(new Vector2(24080.1953F, -181.654999F), new Vector2(24071.9961F, -189.046005F), new Vector2(24061.6055F, -194.194F)); + builder.AddCubicBezier(new Vector2(24051.2109F, -199.341995F), new Vector2(24039.6289F, -201.916F), new Vector2(24026.8574F, -201.916F)); + builder.AddLine(new Vector2(23976.8066F, -201.916F)); + builder.AddLine(new Vector2(23976.8066F, -166.738007F)); + builder.AddLine(new Vector2(24020.2793F, -166.738007F)); + builder.AddCubicBezier(new Vector2(24025.8066F, -166.738007F), new Vector2(24030.8125F, -165.639008F), new Vector2(24035.2949F, -163.449005F)); + builder.AddCubicBezier(new Vector2(24039.7715F, -161.255005F), new Vector2(24043.3477F, -157.966003F), new Vector2(24046.0195F, -153.582001F)); + builder.AddCubicBezier(new Vector2(24048.6875F, -149.194F), new Vector2(24050.0234F, -143.858002F), new Vector2(24050.0234F, -137.565994F)); + builder.AddCubicBezier(new Vector2(24050.0234F, -131.462006F), new Vector2(24048.6875F, -126.220001F), new Vector2(24046.0195F, -121.835999F)); + builder.AddCubicBezier(new Vector2(24043.3477F, -117.447998F), new Vector2(24039.7715F, -114.158997F), new Vector2(24035.2949F, -111.969002F)); + builder.AddCubicBezier(new Vector2(24030.8125F, -109.775002F), new Vector2(24025.8066F, -108.68F), new Vector2(24020.2793F, -108.68F)); + builder.AddLine(new Vector2(23976.8066F, -108.68F)); + builder.AddLine(new Vector2(23976.8066F, -73.5019989F)); + builder.AddLine(new Vector2(24026.8574F, -73.5019989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0138() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(23851.5391F, -36.3219986F)); + builder.AddLine(new Vector2(23851.5391F, -72.9300003F)); + builder.AddLine(new Vector2(23741.7168F, -72.9300003F)); + builder.AddLine(new Vector2(23741.7168F, -36.3219986F)); + builder.AddLine(new Vector2(23851.5391F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(23742.5742F, 0F)); + builder.AddLine(new Vector2(23804.3496F, -167.309998F)); + builder.AddLine(new Vector2(23787.7617F, -167.309998F)); + builder.AddLine(new Vector2(23848.1074F, 0F)); + builder.AddLine(new Vector2(23895.8691F, 0F)); + builder.AddLine(new Vector2(23816.6484F, -201.916F)); + builder.AddLine(new Vector2(23775.75F, -201.916F)); + builder.AddLine(new Vector2(23695.9551F, 0F)); + builder.AddLine(new Vector2(23742.5742F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0139() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(23665.3516F, 0F)); + builder.AddLine(new Vector2(23665.3516F, -39.4679985F)); + builder.AddLine(new Vector2(23565.5391F, -39.4679985F)); + builder.AddLine(new Vector2(23565.5391F, 0F)); + builder.AddLine(new Vector2(23665.3516F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(23575.834F, 0F)); + builder.AddLine(new Vector2(23575.834F, -201.916F)); + builder.AddLine(new Vector2(23530.6465F, -201.916F)); + builder.AddLine(new Vector2(23530.6465F, 0F)); + builder.AddLine(new Vector2(23575.834F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0140() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(23473.4473F, -163.020004F)); + builder.AddLine(new Vector2(23473.4473F, -201.916F)); + builder.AddLine(new Vector2(23364.1953F, -201.916F)); + builder.AddLine(new Vector2(23364.1953F, -163.020004F)); + builder.AddLine(new Vector2(23473.4473F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(23464.8672F, -84.0839996F)); + builder.AddLine(new Vector2(23464.8672F, -122.122002F)); + builder.AddLine(new Vector2(23364.1953F, -122.122002F)); + builder.AddLine(new Vector2(23364.1953F, -84.0839996F)); + builder.AddLine(new Vector2(23464.8672F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(23475.1641F, 0F)); + builder.AddLine(new Vector2(23475.1641F, -38.8959999F)); + builder.AddLine(new Vector2(23364.1953F, -38.8959999F)); + builder.AddLine(new Vector2(23364.1953F, 0F)); + builder.AddLine(new Vector2(23475.1641F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(23374.7773F, 0F)); + builder.AddLine(new Vector2(23374.7773F, -201.916F)); + builder.AddLine(new Vector2(23329.5898F, -201.916F)); + builder.AddLine(new Vector2(23329.5898F, 0F)); + builder.AddLine(new Vector2(23374.7773F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0141() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(23228.4883F, -9.29500008F)); + builder.AddCubicBezier(new Vector2(23243.834F, -17.7770004F), new Vector2(23255.8477F, -30.316F), new Vector2(23264.5254F, -46.9039993F)); + builder.AddCubicBezier(new Vector2(23273.1992F, -63.4920006F), new Vector2(23277.5371F, -83.7979965F), new Vector2(23277.5371F, -107.821999F)); + builder.AddLine(new Vector2(23277.5371F, -114.400002F)); + builder.AddLine(new Vector2(23171.4316F, -114.400002F)); + builder.AddLine(new Vector2(23171.4316F, -76.3619995F)); + builder.AddLine(new Vector2(23261.5215F, -74.9319992F)); + builder.AddLine(new Vector2(23231.4922F, -94.9520035F)); + builder.AddCubicBezier(new Vector2(23231.4922F, -82.9400024F), new Vector2(23229.248F, -72.6439972F), new Vector2(23224.7715F, -64.064003F)); + builder.AddCubicBezier(new Vector2(23220.2891F, -55.4840012F), new Vector2(23213.9023F, -48.9510002F), new Vector2(23205.6094F, -44.4729996F)); + builder.AddCubicBezier(new Vector2(23197.3145F, -39.9910011F), new Vector2(23187.3496F, -37.7519989F), new Vector2(23175.7227F, -37.7519989F)); + builder.AddCubicBezier(new Vector2(23164.0898F, -37.7519989F), new Vector2(23153.793F, -40.4690018F), new Vector2(23144.834F, -45.9029999F)); + builder.AddCubicBezier(new Vector2(23135.8691F, -51.3370018F), new Vector2(23128.8184F, -58.8180008F), new Vector2(23123.6699F, -68.3539963F)); + builder.AddCubicBezier(new Vector2(23118.5215F, -77.8860016F), new Vector2(23115.9473F, -88.8479996F), new Vector2(23115.9473F, -101.244003F)); + builder.AddCubicBezier(new Vector2(23115.9473F, -113.828003F), new Vector2(23118.5664F, -124.838997F), new Vector2(23123.8125F, -134.276993F)); + builder.AddCubicBezier(new Vector2(23129.0547F, -143.714996F), new Vector2(23136.3477F, -151.052994F), new Vector2(23145.6914F, -156.298996F)); + builder.AddCubicBezier(new Vector2(23155.0312F, -161.541F), new Vector2(23165.6133F, -164.164001F), new Vector2(23177.4375F, -164.164001F)); + builder.AddCubicBezier(new Vector2(23188.3066F, -164.164001F), new Vector2(23198.1738F, -162.018997F), new Vector2(23207.0391F, -157.729004F)); + builder.AddCubicBezier(new Vector2(23215.9043F, -153.438995F), new Vector2(23223.4844F, -147.098007F), new Vector2(23229.7754F, -138.710007F)); + builder.AddLine(new Vector2(23260.6641F, -169.598007F)); + builder.AddCubicBezier(new Vector2(23251.3203F, -180.654007F), new Vector2(23239.5F, -189.376999F), new Vector2(23225.1992F, -195.766998F)); + builder.AddCubicBezier(new Vector2(23210.9004F, -202.153F), new Vector2(23195.0723F, -205.348007F), new Vector2(23177.7246F, -205.348007F)); + builder.AddCubicBezier(new Vector2(23162.6602F, -205.348007F), new Vector2(23148.5977F, -202.675995F), new Vector2(23135.5391F, -197.339996F)); + builder.AddCubicBezier(new Vector2(23122.4766F, -192F), new Vector2(23110.9883F, -184.613007F), new Vector2(23101.0762F, -175.175003F)); + builder.AddCubicBezier(new Vector2(23091.1602F, -165.737F), new Vector2(23083.4375F, -154.770996F), new Vector2(23077.9102F, -142.285004F)); + builder.AddCubicBezier(new Vector2(23072.377F, -129.794998F), new Vector2(23069.6152F, -116.115997F), new Vector2(23069.6152F, -101.244003F)); + builder.AddCubicBezier(new Vector2(23069.6152F, -86.5599976F), new Vector2(23072.332F, -72.9300003F), new Vector2(23077.7676F, -60.3460007F)); + builder.AddCubicBezier(new Vector2(23083.2012F, -47.762001F), new Vector2(23090.6816F, -36.7019997F), new Vector2(23100.2188F, -27.1700001F)); + builder.AddCubicBezier(new Vector2(23109.75F, -17.6340008F), new Vector2(23120.9531F, -10.1529999F), new Vector2(23133.8223F, -4.71899986F)); + builder.AddCubicBezier(new Vector2(23146.6934F, 0.714999974F), new Vector2(23160.5645F, 3.43199992F), new Vector2(23175.4355F, 3.43199992F)); + builder.AddCubicBezier(new Vector2(23195.4551F, 3.43199992F), new Vector2(23213.1387F, -0.809000015F), new Vector2(23228.4883F, -9.29500008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0142() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(23000.1172F, -36.3219986F)); + builder.AddLine(new Vector2(23000.1172F, -72.9300003F)); + builder.AddLine(new Vector2(22890.2949F, -72.9300003F)); + builder.AddLine(new Vector2(22890.2949F, -36.3219986F)); + builder.AddLine(new Vector2(23000.1172F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(22891.1523F, 0F)); + builder.AddLine(new Vector2(22952.9277F, -167.309998F)); + builder.AddLine(new Vector2(22936.3398F, -167.309998F)); + builder.AddLine(new Vector2(22996.6855F, 0F)); + builder.AddLine(new Vector2(23044.4473F, 0F)); + builder.AddLine(new Vector2(22965.2266F, -201.916F)); + builder.AddLine(new Vector2(22924.3281F, -201.916F)); + builder.AddLine(new Vector2(22844.5332F, 0F)); + builder.AddLine(new Vector2(22891.1523F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0143() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(22795.627F, 0F)); + builder.AddLine(new Vector2(22795.627F, -201.916F)); + builder.AddLine(new Vector2(22750.4395F, -201.916F)); + builder.AddLine(new Vector2(22750.4395F, 0F)); + builder.AddLine(new Vector2(22795.627F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0144() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(22676.6504F, -13.2989998F)); + builder.AddCubicBezier(new Vector2(22690.3789F, -24.2609997F), new Vector2(22697.2422F, -39.3699989F), new Vector2(22697.2422F, -58.6300011F)); + builder.AddCubicBezier(new Vector2(22697.2422F, -69.3059998F), new Vector2(22695.4785F, -78.1719971F), new Vector2(22691.9512F, -85.2279968F)); + builder.AddCubicBezier(new Vector2(22688.4219F, -92.2799988F), new Vector2(22683.8945F, -98.1920013F), new Vector2(22678.3672F, -102.959999F)); + builder.AddCubicBezier(new Vector2(22672.834F, -107.723999F), new Vector2(22666.6855F, -111.584999F), new Vector2(22659.9199F, -114.542999F)); + builder.AddCubicBezier(new Vector2(22653.1504F, -117.497002F), new Vector2(22646.3789F, -120.120003F), new Vector2(22639.6133F, -122.407997F)); + builder.AddCubicBezier(new Vector2(22632.8438F, -124.695999F), new Vector2(22626.6465F, -126.984001F), new Vector2(22621.0234F, -129.272003F)); + builder.AddCubicBezier(new Vector2(22615.3984F, -131.559998F), new Vector2(22610.8711F, -134.276993F), new Vector2(22607.4395F, -137.423004F)); + builder.AddCubicBezier(new Vector2(22604.0078F, -140.569F), new Vector2(22602.291F, -144.617996F), new Vector2(22602.291F, -149.578003F)); + builder.AddCubicBezier(new Vector2(22602.291F, -155.106003F), new Vector2(22604.5781F, -159.347F), new Vector2(22609.1543F, -162.304993F)); + builder.AddCubicBezier(new Vector2(22613.7305F, -165.259003F), new Vector2(22619.9238F, -166.738007F), new Vector2(22627.7441F, -166.738007F)); + builder.AddCubicBezier(new Vector2(22635.3691F, -166.738007F), new Vector2(22642.2812F, -165.210007F), new Vector2(22648.4805F, -162.162003F)); + builder.AddCubicBezier(new Vector2(22654.6738F, -159.110001F), new Vector2(22660.8223F, -154.440002F), new Vector2(22666.9277F, -148.147995F)); + builder.AddLine(new Vector2(22696.3848F, -177.606003F)); + builder.AddCubicBezier(new Vector2(22688.7578F, -185.994003F), new Vector2(22679.127F, -192.666F), new Vector2(22667.5F, -197.626007F)); + builder.AddCubicBezier(new Vector2(22655.8672F, -202.582001F), new Vector2(22642.9023F, -205.061996F), new Vector2(22628.6035F, -205.061996F)); + builder.AddCubicBezier(new Vector2(22614.875F, -205.061996F), new Vector2(22602.5762F, -202.725006F), new Vector2(22591.709F, -198.054993F)); + builder.AddCubicBezier(new Vector2(22580.8418F, -193.380997F), new Vector2(22572.4043F, -186.565994F), new Vector2(22566.3984F, -177.606003F)); + builder.AddCubicBezier(new Vector2(22560.3926F, -168.641998F), new Vector2(22557.3887F, -157.871994F), new Vector2(22557.3887F, -145.287994F)); + builder.AddCubicBezier(new Vector2(22557.3887F, -135.179993F), new Vector2(22559.1055F, -126.697998F), new Vector2(22562.5371F, -119.834F)); + builder.AddCubicBezier(new Vector2(22565.9688F, -112.970001F), new Vector2(22570.4961F, -107.344002F), new Vector2(22576.123F, -102.959999F)); + builder.AddCubicBezier(new Vector2(22581.7441F, -98.5719986F), new Vector2(22587.9414F, -94.8539963F), new Vector2(22594.7129F, -91.8059998F)); + builder.AddCubicBezier(new Vector2(22601.4785F, -88.7539978F), new Vector2(22608.1992F, -86.1309967F), new Vector2(22614.875F, -83.9410019F)); + builder.AddCubicBezier(new Vector2(22621.5469F, -81.7470016F), new Vector2(22627.7441F, -79.4100037F), new Vector2(22633.4648F, -76.9339981F)); + builder.AddCubicBezier(new Vector2(22639.1855F, -74.4540024F), new Vector2(22643.7129F, -71.5F), new Vector2(22647.0508F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(22650.3828F, -64.6360016F), new Vector2(22652.0547F, -60.2480011F), new Vector2(22652.0547F, -54.9119987F)); + builder.AddCubicBezier(new Vector2(22652.0547F, -48.8079987F), new Vector2(22649.4316F, -43.9949989F), new Vector2(22644.1895F, -40.4690018F)); + builder.AddCubicBezier(new Vector2(22638.9434F, -36.9389992F), new Vector2(22631.6504F, -35.1780014F), new Vector2(22622.3105F, -35.1780014F)); + builder.AddCubicBezier(new Vector2(22611.8223F, -35.1780014F), new Vector2(22602.6211F, -37.2249985F), new Vector2(22594.7129F, -41.3269997F)); + builder.AddCubicBezier(new Vector2(22586.7988F, -45.4249992F), new Vector2(22579.5996F, -51.1940002F), new Vector2(22573.1191F, -58.6300011F)); + builder.AddLine(new Vector2(22543.9473F, -29.4580002F)); + builder.AddCubicBezier(new Vector2(22553.6719F, -18.3980007F), new Vector2(22564.4902F, -10.198F), new Vector2(22576.4082F, -4.86199999F)); + builder.AddCubicBezier(new Vector2(22588.3223F, 0.474000007F), new Vector2(22602.6719F, 3.14599991F), new Vector2(22619.4512F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(22643.8555F, 3.14599991F), new Vector2(22662.9238F, -2.33299994F), new Vector2(22676.6504F, -13.2989998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0145() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(22506.4805F, -163.020004F)); + builder.AddLine(new Vector2(22506.4805F, -201.916F)); + builder.AddLine(new Vector2(22397.2285F, -201.916F)); + builder.AddLine(new Vector2(22397.2285F, -163.020004F)); + builder.AddLine(new Vector2(22506.4805F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(22497.9004F, -84.0839996F)); + builder.AddLine(new Vector2(22497.9004F, -122.122002F)); + builder.AddLine(new Vector2(22397.2285F, -122.122002F)); + builder.AddLine(new Vector2(22397.2285F, -84.0839996F)); + builder.AddLine(new Vector2(22497.9004F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(22508.1973F, 0F)); + builder.AddLine(new Vector2(22508.1973F, -38.8959999F)); + builder.AddLine(new Vector2(22397.2285F, -38.8959999F)); + builder.AddLine(new Vector2(22397.2285F, 0F)); + builder.AddLine(new Vector2(22508.1973F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(22407.8105F, 0F)); + builder.AddLine(new Vector2(22407.8105F, -201.916F)); + builder.AddLine(new Vector2(22362.623F, -201.916F)); + builder.AddLine(new Vector2(22362.623F, 0F)); + builder.AddLine(new Vector2(22407.8105F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0146() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(22299.1309F, 0F)); + builder.AddLine(new Vector2(22299.1309F, -201.916F)); + builder.AddLine(new Vector2(22253.6562F, -201.916F)); + builder.AddLine(new Vector2(22253.6562F, -40.3260002F)); + builder.AddLine(new Vector2(22265.668F, 0F)); + builder.AddLine(new Vector2(22299.1309F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(22277.1094F, -49.4780006F)); + builder.AddLine(new Vector2(22158.1328F, -201.916F)); + builder.AddLine(new Vector2(22146.9785F, -152.438004F)); + builder.AddLine(new Vector2(22265.668F, 0F)); + builder.AddLine(new Vector2(22277.1094F, -49.4780006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(22171.5742F, 0F)); + builder.AddLine(new Vector2(22171.5742F, -161.589996F)); + builder.AddLine(new Vector2(22158.1328F, -201.916F)); + builder.AddLine(new Vector2(22126.3867F, -201.916F)); + builder.AddLine(new Vector2(22126.3867F, 0F)); + builder.AddLine(new Vector2(22171.5742F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0147() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(21942.0605F, -42.1850014F)); + builder.AddCubicBezier(new Vector2(21934.7188F, -45.1389999F), new Vector2(21928.377F, -49.4290009F), new Vector2(21923.041F, -55.0550003F)); + builder.AddCubicBezier(new Vector2(21917.7012F, -60.6769981F), new Vector2(21913.6035F, -67.3980026F), new Vector2(21910.7441F, -75.2180023F)); + builder.AddCubicBezier(new Vector2(21907.8848F, -83.0339966F), new Vector2(21906.4531F, -91.7080002F), new Vector2(21906.4531F, -101.244003F)); + builder.AddCubicBezier(new Vector2(21906.4531F, -113.828003F), new Vector2(21908.9297F, -124.838997F), new Vector2(21913.8906F, -134.276993F)); + builder.AddCubicBezier(new Vector2(21918.8457F, -143.714996F), new Vector2(21925.8535F, -151.052994F), new Vector2(21934.9102F, -156.298996F)); + builder.AddCubicBezier(new Vector2(21943.9648F, -161.541F), new Vector2(21954.502F, -164.164001F), new Vector2(21966.5137F, -164.164001F)); + builder.AddCubicBezier(new Vector2(21975.2812F, -164.164001F), new Vector2(21983.3887F, -162.684998F), new Vector2(21990.8242F, -159.731003F)); + builder.AddCubicBezier(new Vector2(21998.2598F, -156.772995F), new Vector2(22004.6465F, -152.483002F), new Vector2(22009.9863F, -146.860992F)); + builder.AddCubicBezier(new Vector2(22015.3223F, -141.235001F), new Vector2(22019.4238F, -134.563004F), new Vector2(22022.2832F, -126.841003F)); + builder.AddCubicBezier(new Vector2(22025.1445F, -119.119003F), new Vector2(22026.5742F, -110.584F), new Vector2(22026.5742F, -101.244003F)); + builder.AddCubicBezier(new Vector2(22026.5742F, -88.6600037F), new Vector2(22024.0449F, -77.5999985F), new Vector2(22018.9941F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(22013.9414F, -58.5320015F), new Vector2(22006.9336F, -51.0960007F), new Vector2(21997.9746F, -45.7599983F)); + builder.AddCubicBezier(new Vector2(21989.0098F, -40.4199982F), new Vector2(21978.5254F, -37.7519989F), new Vector2(21966.5137F, -37.7519989F)); + builder.AddCubicBezier(new Vector2(21957.5488F, -37.7519989F), new Vector2(21949.3984F, -39.2270012F), new Vector2(21942.0605F, -42.1850014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(22008.8418F, -4.57600021F)); + builder.AddCubicBezier(new Vector2(22021.6133F, -9.9119997F), new Vector2(22032.7676F, -17.3029995F), new Vector2(22042.3047F, -26.7409992F)); + builder.AddCubicBezier(new Vector2(22051.8359F, -36.1790009F), new Vector2(22059.2715F, -47.2350006F), new Vector2(22064.6113F, -59.9169998F)); + builder.AddCubicBezier(new Vector2(22069.9473F, -72.5950012F), new Vector2(22072.6191F, -86.2740021F), new Vector2(22072.6191F, -100.958F)); + builder.AddCubicBezier(new Vector2(22072.6191F, -115.830002F), new Vector2(22069.9961F, -129.602997F), new Vector2(22064.7539F, -142.285004F)); + builder.AddCubicBezier(new Vector2(22059.5078F, -154.962997F), new Vector2(22052.0273F, -166.022995F), new Vector2(22042.3047F, -175.460999F)); + builder.AddCubicBezier(new Vector2(22032.5801F, -184.899002F), new Vector2(22021.2832F, -192.237F), new Vector2(22008.4121F, -197.483002F)); + builder.AddCubicBezier(new Vector2(21995.543F, -202.725006F), new Vector2(21981.5742F, -205.348007F), new Vector2(21966.5137F, -205.348007F)); + builder.AddCubicBezier(new Vector2(21951.2578F, -205.348007F), new Vector2(21937.1504F, -202.725006F), new Vector2(21924.1855F, -197.483002F)); + builder.AddCubicBezier(new Vector2(21911.2168F, -192.237F), new Vector2(21899.9688F, -184.899002F), new Vector2(21890.4375F, -175.460999F)); + builder.AddCubicBezier(new Vector2(21880.9023F, -166.022995F), new Vector2(21873.4648F, -155.011993F), new Vector2(21868.1289F, -142.427994F)); + builder.AddCubicBezier(new Vector2(21862.7891F, -129.843994F), new Vector2(21860.1211F, -116.115997F), new Vector2(21860.1211F, -101.244003F)); + builder.AddCubicBezier(new Vector2(21860.1211F, -86.5599976F), new Vector2(21862.7891F, -72.8809967F), new Vector2(21868.1289F, -60.2029991F)); + builder.AddCubicBezier(new Vector2(21873.4648F, -47.5209999F), new Vector2(21881F, -36.4160004F), new Vector2(21890.7246F, -26.8840008F)); + builder.AddCubicBezier(new Vector2(21900.4473F, -17.3479996F), new Vector2(21911.7891F, -9.9119997F), new Vector2(21924.7578F, -4.57600021F)); + builder.AddCubicBezier(new Vector2(21937.7227F, 0.75999999F), new Vector2(21951.8301F, 3.43199992F), new Vector2(21967.0859F, 3.43199992F)); + builder.AddCubicBezier(new Vector2(21982.1465F, 3.43199992F), new Vector2(21996.0664F, 0.75999999F), new Vector2(22008.8418F, -4.57600021F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0148() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(21674.793F, 0F)); + builder.AddLine(new Vector2(21674.793F, -201.916F)); + builder.AddLine(new Vector2(21629.6055F, -201.916F)); + builder.AddLine(new Vector2(21629.6055F, 0F)); + builder.AddLine(new Vector2(21674.793F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(21711.4004F, 0F)); + builder.AddCubicBezier(new Vector2(21726.4609F, 0F), new Vector2(21740.4297F, -2.47600007F), new Vector2(21753.3008F, -7.43599987F)); + builder.AddCubicBezier(new Vector2(21766.1699F, -12.3920002F), new Vector2(21777.3691F, -19.3990002F), new Vector2(21786.9062F, -28.4570007F)); + builder.AddCubicBezier(new Vector2(21796.4375F, -37.5110016F), new Vector2(21803.873F, -48.1910019F), new Vector2(21809.2129F, -60.4889984F)); + builder.AddCubicBezier(new Vector2(21814.5488F, -72.7870026F), new Vector2(21817.2207F, -86.2740021F), new Vector2(21817.2207F, -100.958F)); + builder.AddCubicBezier(new Vector2(21817.2207F, -116.017998F), new Vector2(21814.5488F, -129.651993F), new Vector2(21809.2129F, -141.856003F)); + builder.AddCubicBezier(new Vector2(21803.873F, -154.056F), new Vector2(21796.3887F, -164.686996F), new Vector2(21786.7617F, -173.744995F)); + builder.AddCubicBezier(new Vector2(21777.1328F, -182.798996F), new Vector2(21765.8848F, -189.761002F), new Vector2(21753.0137F, -194.623001F)); + builder.AddCubicBezier(new Vector2(21740.1445F, -199.485001F), new Vector2(21726.082F, -201.916F), new Vector2(21710.8301F, -201.916F)); + builder.AddLine(new Vector2(21659.0625F, -201.916F)); + builder.AddLine(new Vector2(21659.0625F, -162.447998F)); + builder.AddLine(new Vector2(21710.2578F, -162.447998F)); + builder.AddCubicBezier(new Vector2(21722.2695F, -162.447998F), new Vector2(21732.8027F, -160.016998F), new Vector2(21741.8613F, -155.154999F)); + builder.AddCubicBezier(new Vector2(21750.9141F, -150.292999F), new Vector2(21757.9707F, -143.237F), new Vector2(21763.0234F, -133.990997F)); + builder.AddCubicBezier(new Vector2(21768.0742F, -124.740997F), new Vector2(21770.6035F, -113.828003F), new Vector2(21770.6035F, -101.244003F)); + builder.AddCubicBezier(new Vector2(21770.6035F, -88.4680023F), new Vector2(21768.123F, -77.4570007F), new Vector2(21763.168F, -68.2109985F)); + builder.AddCubicBezier(new Vector2(21758.207F, -58.9609985F), new Vector2(21751.1992F, -51.8600006F), new Vector2(21742.1465F, -46.9039993F)); + builder.AddCubicBezier(new Vector2(21733.0879F, -41.9440002F), new Vector2(21722.457F, -39.4679985F), new Vector2(21710.2578F, -39.4679985F)); + builder.AddLine(new Vector2(21660.4941F, -39.4679985F)); + builder.AddLine(new Vector2(21660.4941F, 0F)); + builder.AddLine(new Vector2(21711.4004F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0149() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(21566.1133F, 0F)); + builder.AddLine(new Vector2(21566.1133F, -201.916F)); + builder.AddLine(new Vector2(21520.6387F, -201.916F)); + builder.AddLine(new Vector2(21520.6387F, -40.3260002F)); + builder.AddLine(new Vector2(21532.6504F, 0F)); + builder.AddLine(new Vector2(21566.1133F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(21544.0918F, -49.4780006F)); + builder.AddLine(new Vector2(21425.1152F, -201.916F)); + builder.AddLine(new Vector2(21413.9609F, -152.438004F)); + builder.AddLine(new Vector2(21532.6504F, 0F)); + builder.AddLine(new Vector2(21544.0918F, -49.4780006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(21438.5566F, 0F)); + builder.AddLine(new Vector2(21438.5566F, -161.589996F)); + builder.AddLine(new Vector2(21425.1152F, -201.916F)); + builder.AddLine(new Vector2(21393.3691F, -201.916F)); + builder.AddLine(new Vector2(21393.3691F, 0F)); + builder.AddLine(new Vector2(21438.5566F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0150() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(21329.5918F, 0F)); + builder.AddLine(new Vector2(21329.5918F, -201.916F)); + builder.AddLine(new Vector2(21284.4043F, -201.916F)); + builder.AddLine(new Vector2(21284.4043F, 0F)); + builder.AddLine(new Vector2(21329.5918F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0151() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(21230.0645F, -117.260002F)); + builder.AddLine(new Vector2(21230.0645F, -148.720001F)); + builder.AddLine(new Vector2(21070.1895F, -148.720001F)); + builder.AddLine(new Vector2(21070.1895F, -117.260002F)); + builder.AddLine(new Vector2(21230.0645F, -117.260002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(21113.6621F, 0F)); + builder.AddLine(new Vector2(21146.8379F, -201.916F)); + builder.AddLine(new Vector2(21111.0879F, -201.916F)); + builder.AddLine(new Vector2(21077.627F, 0F)); + builder.AddLine(new Vector2(21113.6621F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(21220.627F, -57.4860001F)); + builder.AddLine(new Vector2(21220.627F, -88.9459991F)); + builder.AddLine(new Vector2(21060.4668F, -88.9459991F)); + builder.AddLine(new Vector2(21060.4668F, -57.4860001F)); + builder.AddLine(new Vector2(21220.627F, -57.4860001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(21177.7266F, 0F)); + builder.AddLine(new Vector2(21211.4746F, -201.916F)); + builder.AddLine(new Vector2(21175.4375F, -201.916F)); + builder.AddLine(new Vector2(21142.2617F, 0F)); + builder.AddLine(new Vector2(21177.7266F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0152() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(20976.9531F, -36.3219986F)); + builder.AddLine(new Vector2(20976.9531F, -72.9300003F)); + builder.AddLine(new Vector2(20867.1309F, -72.9300003F)); + builder.AddLine(new Vector2(20867.1309F, -36.3219986F)); + builder.AddLine(new Vector2(20976.9531F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(20867.9883F, 0F)); + builder.AddLine(new Vector2(20929.7637F, -167.309998F)); + builder.AddLine(new Vector2(20913.1758F, -167.309998F)); + builder.AddLine(new Vector2(20973.5215F, 0F)); + builder.AddLine(new Vector2(21021.2832F, 0F)); + builder.AddLine(new Vector2(20942.0625F, -201.916F)); + builder.AddLine(new Vector2(20901.1641F, -201.916F)); + builder.AddLine(new Vector2(20821.3691F, 0F)); + builder.AddLine(new Vector2(20867.9883F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0153() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(20772.4629F, 0F)); + builder.AddLine(new Vector2(20772.4629F, -201.916F)); + builder.AddLine(new Vector2(20727.2754F, -201.916F)); + builder.AddLine(new Vector2(20727.2754F, 0F)); + builder.AddLine(new Vector2(20772.4629F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0154() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(20653.4863F, -13.2989998F)); + builder.AddCubicBezier(new Vector2(20667.2148F, -24.2609997F), new Vector2(20674.0781F, -39.3699989F), new Vector2(20674.0781F, -58.6300011F)); + builder.AddCubicBezier(new Vector2(20674.0781F, -69.3059998F), new Vector2(20672.3145F, -78.1719971F), new Vector2(20668.7871F, -85.2279968F)); + builder.AddCubicBezier(new Vector2(20665.2578F, -92.2799988F), new Vector2(20660.7305F, -98.1920013F), new Vector2(20655.2031F, -102.959999F)); + builder.AddCubicBezier(new Vector2(20649.6699F, -107.723999F), new Vector2(20643.5215F, -111.584999F), new Vector2(20636.7559F, -114.542999F)); + builder.AddCubicBezier(new Vector2(20629.9863F, -117.497002F), new Vector2(20623.2148F, -120.120003F), new Vector2(20616.4492F, -122.407997F)); + builder.AddCubicBezier(new Vector2(20609.6797F, -124.695999F), new Vector2(20603.4824F, -126.984001F), new Vector2(20597.8594F, -129.272003F)); + builder.AddCubicBezier(new Vector2(20592.2344F, -131.559998F), new Vector2(20587.707F, -134.276993F), new Vector2(20584.2754F, -137.423004F)); + builder.AddCubicBezier(new Vector2(20580.8438F, -140.569F), new Vector2(20579.127F, -144.617996F), new Vector2(20579.127F, -149.578003F)); + builder.AddCubicBezier(new Vector2(20579.127F, -155.106003F), new Vector2(20581.4141F, -159.347F), new Vector2(20585.9902F, -162.304993F)); + builder.AddCubicBezier(new Vector2(20590.5664F, -165.259003F), new Vector2(20596.7598F, -166.738007F), new Vector2(20604.5801F, -166.738007F)); + builder.AddCubicBezier(new Vector2(20612.2051F, -166.738007F), new Vector2(20619.1172F, -165.210007F), new Vector2(20625.3164F, -162.162003F)); + builder.AddCubicBezier(new Vector2(20631.5098F, -159.110001F), new Vector2(20637.6582F, -154.440002F), new Vector2(20643.7637F, -148.147995F)); + builder.AddLine(new Vector2(20673.2207F, -177.606003F)); + builder.AddCubicBezier(new Vector2(20665.5938F, -185.994003F), new Vector2(20655.9629F, -192.666F), new Vector2(20644.3359F, -197.626007F)); + builder.AddCubicBezier(new Vector2(20632.7031F, -202.582001F), new Vector2(20619.7383F, -205.061996F), new Vector2(20605.4395F, -205.061996F)); + builder.AddCubicBezier(new Vector2(20591.7109F, -205.061996F), new Vector2(20579.4121F, -202.725006F), new Vector2(20568.5449F, -198.054993F)); + builder.AddCubicBezier(new Vector2(20557.6777F, -193.380997F), new Vector2(20549.2402F, -186.565994F), new Vector2(20543.2344F, -177.606003F)); + builder.AddCubicBezier(new Vector2(20537.2285F, -168.641998F), new Vector2(20534.2246F, -157.871994F), new Vector2(20534.2246F, -145.287994F)); + builder.AddCubicBezier(new Vector2(20534.2246F, -135.179993F), new Vector2(20535.9414F, -126.697998F), new Vector2(20539.373F, -119.834F)); + builder.AddCubicBezier(new Vector2(20542.8047F, -112.970001F), new Vector2(20547.332F, -107.344002F), new Vector2(20552.959F, -102.959999F)); + builder.AddCubicBezier(new Vector2(20558.5801F, -98.5719986F), new Vector2(20564.7773F, -94.8539963F), new Vector2(20571.5488F, -91.8059998F)); + builder.AddCubicBezier(new Vector2(20578.3145F, -88.7539978F), new Vector2(20585.0352F, -86.1309967F), new Vector2(20591.7109F, -83.9410019F)); + builder.AddCubicBezier(new Vector2(20598.3828F, -81.7470016F), new Vector2(20604.5801F, -79.4100037F), new Vector2(20610.3008F, -76.9339981F)); + builder.AddCubicBezier(new Vector2(20616.0215F, -74.4540024F), new Vector2(20620.5488F, -71.5F), new Vector2(20623.8867F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(20627.2188F, -64.6360016F), new Vector2(20628.8906F, -60.2480011F), new Vector2(20628.8906F, -54.9119987F)); + builder.AddCubicBezier(new Vector2(20628.8906F, -48.8079987F), new Vector2(20626.2676F, -43.9949989F), new Vector2(20621.0254F, -40.4690018F)); + builder.AddCubicBezier(new Vector2(20615.7793F, -36.9389992F), new Vector2(20608.4863F, -35.1780014F), new Vector2(20599.1465F, -35.1780014F)); + builder.AddCubicBezier(new Vector2(20588.6582F, -35.1780014F), new Vector2(20579.457F, -37.2249985F), new Vector2(20571.5488F, -41.3269997F)); + builder.AddCubicBezier(new Vector2(20563.6348F, -45.4249992F), new Vector2(20556.4355F, -51.1940002F), new Vector2(20549.9551F, -58.6300011F)); + builder.AddLine(new Vector2(20520.7832F, -29.4580002F)); + builder.AddCubicBezier(new Vector2(20530.5078F, -18.3980007F), new Vector2(20541.3262F, -10.198F), new Vector2(20553.2441F, -4.86199999F)); + builder.AddCubicBezier(new Vector2(20565.1582F, 0.474000007F), new Vector2(20579.5078F, 3.14599991F), new Vector2(20596.2871F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(20620.6914F, 3.14599991F), new Vector2(20639.7598F, -2.33299994F), new Vector2(20653.4863F, -13.2989998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0155() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(20483.3164F, -163.020004F)); + builder.AddLine(new Vector2(20483.3164F, -201.916F)); + builder.AddLine(new Vector2(20374.0645F, -201.916F)); + builder.AddLine(new Vector2(20374.0645F, -163.020004F)); + builder.AddLine(new Vector2(20483.3164F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(20474.7363F, -84.0839996F)); + builder.AddLine(new Vector2(20474.7363F, -122.122002F)); + builder.AddLine(new Vector2(20374.0645F, -122.122002F)); + builder.AddLine(new Vector2(20374.0645F, -84.0839996F)); + builder.AddLine(new Vector2(20474.7363F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(20485.0332F, 0F)); + builder.AddLine(new Vector2(20485.0332F, -38.8959999F)); + builder.AddLine(new Vector2(20374.0645F, -38.8959999F)); + builder.AddLine(new Vector2(20374.0645F, 0F)); + builder.AddLine(new Vector2(20485.0332F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(20384.6465F, 0F)); + builder.AddLine(new Vector2(20384.6465F, -201.916F)); + builder.AddLine(new Vector2(20339.459F, -201.916F)); + builder.AddLine(new Vector2(20339.459F, 0F)); + builder.AddLine(new Vector2(20384.6465F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0156() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(20275.9688F, 0F)); + builder.AddLine(new Vector2(20275.9688F, -201.916F)); + builder.AddLine(new Vector2(20230.4941F, -201.916F)); + builder.AddLine(new Vector2(20230.4941F, -40.3260002F)); + builder.AddLine(new Vector2(20242.5059F, 0F)); + builder.AddLine(new Vector2(20275.9688F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(20253.9473F, -49.4780006F)); + builder.AddLine(new Vector2(20134.9707F, -201.916F)); + builder.AddLine(new Vector2(20123.8164F, -152.438004F)); + builder.AddLine(new Vector2(20242.5059F, 0F)); + builder.AddLine(new Vector2(20253.9473F, -49.4780006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(20148.4121F, 0F)); + builder.AddLine(new Vector2(20148.4121F, -161.589996F)); + builder.AddLine(new Vector2(20134.9707F, -201.916F)); + builder.AddLine(new Vector2(20103.2246F, -201.916F)); + builder.AddLine(new Vector2(20103.2246F, 0F)); + builder.AddLine(new Vector2(20148.4121F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0157() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(19918.8965F, -42.1850014F)); + builder.AddCubicBezier(new Vector2(19911.5547F, -45.1389999F), new Vector2(19905.2129F, -49.4290009F), new Vector2(19899.877F, -55.0550003F)); + builder.AddCubicBezier(new Vector2(19894.5371F, -60.6769981F), new Vector2(19890.4395F, -67.3980026F), new Vector2(19887.5801F, -75.2180023F)); + builder.AddCubicBezier(new Vector2(19884.7207F, -83.0339966F), new Vector2(19883.2891F, -91.7080002F), new Vector2(19883.2891F, -101.244003F)); + builder.AddCubicBezier(new Vector2(19883.2891F, -113.828003F), new Vector2(19885.7656F, -124.838997F), new Vector2(19890.7266F, -134.276993F)); + builder.AddCubicBezier(new Vector2(19895.6816F, -143.714996F), new Vector2(19902.6895F, -151.052994F), new Vector2(19911.7461F, -156.298996F)); + builder.AddCubicBezier(new Vector2(19920.8008F, -161.541F), new Vector2(19931.3379F, -164.164001F), new Vector2(19943.3496F, -164.164001F)); + builder.AddCubicBezier(new Vector2(19952.1172F, -164.164001F), new Vector2(19960.2246F, -162.684998F), new Vector2(19967.6602F, -159.731003F)); + builder.AddCubicBezier(new Vector2(19975.0957F, -156.772995F), new Vector2(19981.4824F, -152.483002F), new Vector2(19986.8223F, -146.860992F)); + builder.AddCubicBezier(new Vector2(19992.1582F, -141.235001F), new Vector2(19996.2598F, -134.563004F), new Vector2(19999.1191F, -126.841003F)); + builder.AddCubicBezier(new Vector2(20001.9805F, -119.119003F), new Vector2(20003.4102F, -110.584F), new Vector2(20003.4102F, -101.244003F)); + builder.AddCubicBezier(new Vector2(20003.4102F, -88.6600037F), new Vector2(20000.8809F, -77.5999985F), new Vector2(19995.8301F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(19990.7773F, -58.5320015F), new Vector2(19983.7695F, -51.0960007F), new Vector2(19974.8105F, -45.7599983F)); + builder.AddCubicBezier(new Vector2(19965.8457F, -40.4199982F), new Vector2(19955.3613F, -37.7519989F), new Vector2(19943.3496F, -37.7519989F)); + builder.AddCubicBezier(new Vector2(19934.3848F, -37.7519989F), new Vector2(19926.2344F, -39.2270012F), new Vector2(19918.8965F, -42.1850014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(19985.6777F, -4.57600021F)); + builder.AddCubicBezier(new Vector2(19998.4492F, -9.9119997F), new Vector2(20009.6035F, -17.3029995F), new Vector2(20019.1406F, -26.7409992F)); + builder.AddCubicBezier(new Vector2(20028.6719F, -36.1790009F), new Vector2(20036.1074F, -47.2350006F), new Vector2(20041.4473F, -59.9169998F)); + builder.AddCubicBezier(new Vector2(20046.7832F, -72.5950012F), new Vector2(20049.4551F, -86.2740021F), new Vector2(20049.4551F, -100.958F)); + builder.AddCubicBezier(new Vector2(20049.4551F, -115.830002F), new Vector2(20046.832F, -129.602997F), new Vector2(20041.5898F, -142.285004F)); + builder.AddCubicBezier(new Vector2(20036.3438F, -154.962997F), new Vector2(20028.8633F, -166.022995F), new Vector2(20019.1406F, -175.460999F)); + builder.AddCubicBezier(new Vector2(20009.416F, -184.899002F), new Vector2(19998.1191F, -192.237F), new Vector2(19985.248F, -197.483002F)); + builder.AddCubicBezier(new Vector2(19972.3789F, -202.725006F), new Vector2(19958.4102F, -205.348007F), new Vector2(19943.3496F, -205.348007F)); + builder.AddCubicBezier(new Vector2(19928.0938F, -205.348007F), new Vector2(19913.9863F, -202.725006F), new Vector2(19901.0215F, -197.483002F)); + builder.AddCubicBezier(new Vector2(19888.0527F, -192.237F), new Vector2(19876.8047F, -184.899002F), new Vector2(19867.2734F, -175.460999F)); + builder.AddCubicBezier(new Vector2(19857.7383F, -166.022995F), new Vector2(19850.3008F, -155.011993F), new Vector2(19844.9648F, -142.427994F)); + builder.AddCubicBezier(new Vector2(19839.625F, -129.843994F), new Vector2(19836.957F, -116.115997F), new Vector2(19836.957F, -101.244003F)); + builder.AddCubicBezier(new Vector2(19836.957F, -86.5599976F), new Vector2(19839.625F, -72.8809967F), new Vector2(19844.9648F, -60.2029991F)); + builder.AddCubicBezier(new Vector2(19850.3008F, -47.5209999F), new Vector2(19857.8359F, -36.4160004F), new Vector2(19867.5605F, -26.8840008F)); + builder.AddCubicBezier(new Vector2(19877.2832F, -17.3479996F), new Vector2(19888.625F, -9.9119997F), new Vector2(19901.5938F, -4.57600021F)); + builder.AddCubicBezier(new Vector2(19914.5586F, 0.75999999F), new Vector2(19928.666F, 3.43199992F), new Vector2(19943.9219F, 3.43199992F)); + builder.AddCubicBezier(new Vector2(19958.9824F, 3.43199992F), new Vector2(19972.9023F, 0.75999999F), new Vector2(19985.6777F, -4.57600021F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0158() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(19651.6289F, 0F)); + builder.AddLine(new Vector2(19651.6289F, -201.916F)); + builder.AddLine(new Vector2(19606.4414F, -201.916F)); + builder.AddLine(new Vector2(19606.4414F, 0F)); + builder.AddLine(new Vector2(19651.6289F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(19688.2363F, 0F)); + builder.AddCubicBezier(new Vector2(19703.2969F, 0F), new Vector2(19717.2656F, -2.47600007F), new Vector2(19730.1367F, -7.43599987F)); + builder.AddCubicBezier(new Vector2(19743.0059F, -12.3920002F), new Vector2(19754.2051F, -19.3990002F), new Vector2(19763.7422F, -28.4570007F)); + builder.AddCubicBezier(new Vector2(19773.2734F, -37.5110016F), new Vector2(19780.709F, -48.1910019F), new Vector2(19786.0488F, -60.4889984F)); + builder.AddCubicBezier(new Vector2(19791.3848F, -72.7870026F), new Vector2(19794.0566F, -86.2740021F), new Vector2(19794.0566F, -100.958F)); + builder.AddCubicBezier(new Vector2(19794.0566F, -116.017998F), new Vector2(19791.3848F, -129.651993F), new Vector2(19786.0488F, -141.856003F)); + builder.AddCubicBezier(new Vector2(19780.709F, -154.056F), new Vector2(19773.2246F, -164.686996F), new Vector2(19763.5977F, -173.744995F)); + builder.AddCubicBezier(new Vector2(19753.9688F, -182.798996F), new Vector2(19742.7207F, -189.761002F), new Vector2(19729.8496F, -194.623001F)); + builder.AddCubicBezier(new Vector2(19716.9805F, -199.485001F), new Vector2(19702.918F, -201.916F), new Vector2(19687.666F, -201.916F)); + builder.AddLine(new Vector2(19635.8984F, -201.916F)); + builder.AddLine(new Vector2(19635.8984F, -162.447998F)); + builder.AddLine(new Vector2(19687.0938F, -162.447998F)); + builder.AddCubicBezier(new Vector2(19699.1055F, -162.447998F), new Vector2(19709.6387F, -160.016998F), new Vector2(19718.6973F, -155.154999F)); + builder.AddCubicBezier(new Vector2(19727.75F, -150.292999F), new Vector2(19734.8066F, -143.237F), new Vector2(19739.8594F, -133.990997F)); + builder.AddCubicBezier(new Vector2(19744.9102F, -124.740997F), new Vector2(19747.4395F, -113.828003F), new Vector2(19747.4395F, -101.244003F)); + builder.AddCubicBezier(new Vector2(19747.4395F, -88.4680023F), new Vector2(19744.959F, -77.4570007F), new Vector2(19740.0039F, -68.2109985F)); + builder.AddCubicBezier(new Vector2(19735.043F, -58.9609985F), new Vector2(19728.0352F, -51.8600006F), new Vector2(19718.9824F, -46.9039993F)); + builder.AddCubicBezier(new Vector2(19709.9238F, -41.9440002F), new Vector2(19699.293F, -39.4679985F), new Vector2(19687.0938F, -39.4679985F)); + builder.AddLine(new Vector2(19637.3301F, -39.4679985F)); + builder.AddLine(new Vector2(19637.3301F, 0F)); + builder.AddLine(new Vector2(19688.2363F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0159() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(19542.9492F, 0F)); + builder.AddLine(new Vector2(19542.9492F, -201.916F)); + builder.AddLine(new Vector2(19497.4746F, -201.916F)); + builder.AddLine(new Vector2(19497.4746F, -40.3260002F)); + builder.AddLine(new Vector2(19509.4863F, 0F)); + builder.AddLine(new Vector2(19542.9492F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(19520.9277F, -49.4780006F)); + builder.AddLine(new Vector2(19401.9512F, -201.916F)); + builder.AddLine(new Vector2(19390.7969F, -152.438004F)); + builder.AddLine(new Vector2(19509.4863F, 0F)); + builder.AddLine(new Vector2(19520.9277F, -49.4780006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(19415.3926F, 0F)); + builder.AddLine(new Vector2(19415.3926F, -161.589996F)); + builder.AddLine(new Vector2(19401.9512F, -201.916F)); + builder.AddLine(new Vector2(19370.2051F, -201.916F)); + builder.AddLine(new Vector2(19370.2051F, 0F)); + builder.AddLine(new Vector2(19415.3926F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0160() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(19306.4277F, 0F)); + builder.AddLine(new Vector2(19306.4277F, -201.916F)); + builder.AddLine(new Vector2(19261.2402F, -201.916F)); + builder.AddLine(new Vector2(19261.2402F, 0F)); + builder.AddLine(new Vector2(19306.4277F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0161() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(19211.1895F, -162.447998F)); + builder.AddLine(new Vector2(19211.1895F, -201.916F)); + builder.AddLine(new Vector2(19039.5898F, -201.916F)); + builder.AddLine(new Vector2(19039.5898F, -162.447998F)); + builder.AddLine(new Vector2(19211.1895F, -162.447998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(19148.2695F, 0F)); + builder.AddLine(new Vector2(19148.2695F, -199.341995F)); + builder.AddLine(new Vector2(19102.7969F, -199.341995F)); + builder.AddLine(new Vector2(19102.7969F, 0F)); + builder.AddLine(new Vector2(19148.2695F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0162() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(19002.123F, -163.020004F)); + builder.AddLine(new Vector2(19002.123F, -201.916F)); + builder.AddLine(new Vector2(18892.8711F, -201.916F)); + builder.AddLine(new Vector2(18892.8711F, -163.020004F)); + builder.AddLine(new Vector2(19002.123F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(18993.543F, -84.0839996F)); + builder.AddLine(new Vector2(18993.543F, -122.122002F)); + builder.AddLine(new Vector2(18892.8711F, -122.122002F)); + builder.AddLine(new Vector2(18892.8711F, -84.0839996F)); + builder.AddLine(new Vector2(18993.543F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(19003.8398F, 0F)); + builder.AddLine(new Vector2(19003.8398F, -38.8959999F)); + builder.AddLine(new Vector2(18892.8711F, -38.8959999F)); + builder.AddLine(new Vector2(18892.8711F, 0F)); + builder.AddLine(new Vector2(19003.8398F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(18903.4531F, 0F)); + builder.AddLine(new Vector2(18903.4531F, -201.916F)); + builder.AddLine(new Vector2(18858.2656F, -201.916F)); + builder.AddLine(new Vector2(18858.2656F, 0F)); + builder.AddLine(new Vector2(18903.4531F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0163() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(18784.4785F, -13.2989998F)); + builder.AddCubicBezier(new Vector2(18798.207F, -24.2609997F), new Vector2(18805.0703F, -39.3699989F), new Vector2(18805.0703F, -58.6300011F)); + builder.AddCubicBezier(new Vector2(18805.0703F, -69.3059998F), new Vector2(18803.3066F, -78.1719971F), new Vector2(18799.7793F, -85.2279968F)); + builder.AddCubicBezier(new Vector2(18796.25F, -92.2799988F), new Vector2(18791.7227F, -98.1920013F), new Vector2(18786.1953F, -102.959999F)); + builder.AddCubicBezier(new Vector2(18780.6621F, -107.723999F), new Vector2(18774.5137F, -111.584999F), new Vector2(18767.748F, -114.542999F)); + builder.AddCubicBezier(new Vector2(18760.9785F, -117.497002F), new Vector2(18754.207F, -120.120003F), new Vector2(18747.4414F, -122.407997F)); + builder.AddCubicBezier(new Vector2(18740.6719F, -124.695999F), new Vector2(18734.4746F, -126.984001F), new Vector2(18728.8516F, -129.272003F)); + builder.AddCubicBezier(new Vector2(18723.2266F, -131.559998F), new Vector2(18718.6992F, -134.276993F), new Vector2(18715.2676F, -137.423004F)); + builder.AddCubicBezier(new Vector2(18711.8359F, -140.569F), new Vector2(18710.1191F, -144.617996F), new Vector2(18710.1191F, -149.578003F)); + builder.AddCubicBezier(new Vector2(18710.1191F, -155.106003F), new Vector2(18712.4062F, -159.347F), new Vector2(18716.9824F, -162.304993F)); + builder.AddCubicBezier(new Vector2(18721.5586F, -165.259003F), new Vector2(18727.752F, -166.738007F), new Vector2(18735.5723F, -166.738007F)); + builder.AddCubicBezier(new Vector2(18743.1973F, -166.738007F), new Vector2(18750.1094F, -165.210007F), new Vector2(18756.3086F, -162.162003F)); + builder.AddCubicBezier(new Vector2(18762.502F, -159.110001F), new Vector2(18768.6504F, -154.440002F), new Vector2(18774.7559F, -148.147995F)); + builder.AddLine(new Vector2(18804.2129F, -177.606003F)); + builder.AddCubicBezier(new Vector2(18796.5859F, -185.994003F), new Vector2(18786.9551F, -192.666F), new Vector2(18775.3281F, -197.626007F)); + builder.AddCubicBezier(new Vector2(18763.6953F, -202.582001F), new Vector2(18750.7305F, -205.061996F), new Vector2(18736.4316F, -205.061996F)); + builder.AddCubicBezier(new Vector2(18722.7031F, -205.061996F), new Vector2(18710.4043F, -202.725006F), new Vector2(18699.5371F, -198.054993F)); + builder.AddCubicBezier(new Vector2(18688.6699F, -193.380997F), new Vector2(18680.2324F, -186.565994F), new Vector2(18674.2266F, -177.606003F)); + builder.AddCubicBezier(new Vector2(18668.2207F, -168.641998F), new Vector2(18665.2168F, -157.871994F), new Vector2(18665.2168F, -145.287994F)); + builder.AddCubicBezier(new Vector2(18665.2168F, -135.179993F), new Vector2(18666.9336F, -126.697998F), new Vector2(18670.3652F, -119.834F)); + builder.AddCubicBezier(new Vector2(18673.7969F, -112.970001F), new Vector2(18678.3242F, -107.344002F), new Vector2(18683.9512F, -102.959999F)); + builder.AddCubicBezier(new Vector2(18689.5723F, -98.5719986F), new Vector2(18695.7695F, -94.8539963F), new Vector2(18702.541F, -91.8059998F)); + builder.AddCubicBezier(new Vector2(18709.3066F, -88.7539978F), new Vector2(18716.0273F, -86.1309967F), new Vector2(18722.7031F, -83.9410019F)); + builder.AddCubicBezier(new Vector2(18729.375F, -81.7470016F), new Vector2(18735.5723F, -79.4100037F), new Vector2(18741.293F, -76.9339981F)); + builder.AddCubicBezier(new Vector2(18747.0137F, -74.4540024F), new Vector2(18751.541F, -71.5F), new Vector2(18754.8789F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(18758.2109F, -64.6360016F), new Vector2(18759.8828F, -60.2480011F), new Vector2(18759.8828F, -54.9119987F)); + builder.AddCubicBezier(new Vector2(18759.8828F, -48.8079987F), new Vector2(18757.2598F, -43.9949989F), new Vector2(18752.0176F, -40.4690018F)); + builder.AddCubicBezier(new Vector2(18746.7715F, -36.9389992F), new Vector2(18739.4785F, -35.1780014F), new Vector2(18730.1387F, -35.1780014F)); + builder.AddCubicBezier(new Vector2(18719.6504F, -35.1780014F), new Vector2(18710.4492F, -37.2249985F), new Vector2(18702.541F, -41.3269997F)); + builder.AddCubicBezier(new Vector2(18694.627F, -45.4249992F), new Vector2(18687.4277F, -51.1940002F), new Vector2(18680.9473F, -58.6300011F)); + builder.AddLine(new Vector2(18651.7754F, -29.4580002F)); + builder.AddCubicBezier(new Vector2(18661.5F, -18.3980007F), new Vector2(18672.3184F, -10.198F), new Vector2(18684.2363F, -4.86199999F)); + builder.AddCubicBezier(new Vector2(18696.1504F, 0.474000007F), new Vector2(18710.5F, 3.14599991F), new Vector2(18727.2793F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(18751.6836F, 3.14599991F), new Vector2(18770.752F, -2.33299994F), new Vector2(18784.4785F, -13.2989998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0164() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(18614.3086F, -163.020004F)); + builder.AddLine(new Vector2(18614.3086F, -201.916F)); + builder.AddLine(new Vector2(18505.0566F, -201.916F)); + builder.AddLine(new Vector2(18505.0566F, -163.020004F)); + builder.AddLine(new Vector2(18614.3086F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(18605.7285F, -84.0839996F)); + builder.AddLine(new Vector2(18605.7285F, -122.122002F)); + builder.AddLine(new Vector2(18505.0566F, -122.122002F)); + builder.AddLine(new Vector2(18505.0566F, -84.0839996F)); + builder.AddLine(new Vector2(18605.7285F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(18616.0254F, 0F)); + builder.AddLine(new Vector2(18616.0254F, -38.8959999F)); + builder.AddLine(new Vector2(18505.0566F, -38.8959999F)); + builder.AddLine(new Vector2(18505.0566F, 0F)); + builder.AddLine(new Vector2(18616.0254F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(18515.6387F, 0F)); + builder.AddLine(new Vector2(18515.6387F, -201.916F)); + builder.AddLine(new Vector2(18470.4512F, -201.916F)); + builder.AddLine(new Vector2(18470.4512F, 0F)); + builder.AddLine(new Vector2(18515.6387F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0165() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(18426.4062F, 0F)); + builder.AddLine(new Vector2(18351.4727F, -98.3840027F)); + builder.AddLine(new Vector2(18310.0039F, -86.9440002F)); + builder.AddLine(new Vector2(18372.9238F, 0F)); + builder.AddLine(new Vector2(18426.4062F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(18308.2871F, 0F)); + builder.AddLine(new Vector2(18308.2871F, -201.916F)); + builder.AddLine(new Vector2(18263.0996F, -201.916F)); + builder.AddLine(new Vector2(18263.0996F, 0F)); + builder.AddLine(new Vector2(18308.2871F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(18344.3242F, -82.9400024F)); + builder.AddCubicBezier(new Vector2(18358.2383F, -82.9400024F), new Vector2(18370.3496F, -85.4160004F), new Vector2(18380.6445F, -90.3759995F)); + builder.AddCubicBezier(new Vector2(18390.9414F, -95.3320007F), new Vector2(18398.9492F, -102.245003F), new Vector2(18404.6699F, -111.111F)); + builder.AddCubicBezier(new Vector2(18410.3887F, -119.976997F), new Vector2(18413.25F, -130.509995F), new Vector2(18413.25F, -142.714005F)); + builder.AddCubicBezier(new Vector2(18413.25F, -154.154007F), new Vector2(18410.4336F, -164.352005F), new Vector2(18404.8125F, -173.315994F)); + builder.AddCubicBezier(new Vector2(18399.1855F, -182.276001F), new Vector2(18391.3223F, -189.283005F), new Vector2(18381.2168F, -194.337006F)); + builder.AddCubicBezier(new Vector2(18371.1094F, -199.386993F), new Vector2(18359.2891F, -201.916F), new Vector2(18345.7539F, -201.916F)); + builder.AddLine(new Vector2(18297.7051F, -201.916F)); + builder.AddLine(new Vector2(18297.7051F, -166.738007F)); + builder.AddLine(new Vector2(18340.6055F, -166.738007F)); + builder.AddCubicBezier(new Vector2(18349.373F, -166.738007F), new Vector2(18356.1934F, -164.352005F), new Vector2(18361.0547F, -159.587997F)); + builder.AddCubicBezier(new Vector2(18365.916F, -154.820007F), new Vector2(18368.3477F, -148.813995F), new Vector2(18368.3477F, -141.570007F)); + builder.AddCubicBezier(new Vector2(18368.3477F, -133.942001F), new Vector2(18365.8672F, -127.887001F), new Vector2(18360.9121F, -123.408997F)); + builder.AddCubicBezier(new Vector2(18355.9512F, -118.927002F), new Vector2(18349.0879F, -116.688004F), new Vector2(18340.3203F, -116.688004F)); + builder.AddLine(new Vector2(18297.7051F, -116.688004F)); + builder.AddLine(new Vector2(18297.7051F, -82.9400024F)); + builder.AddLine(new Vector2(18344.3242F, -82.9400024F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0166() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(18208.7598F, -117.260002F)); + builder.AddLine(new Vector2(18208.7598F, -148.720001F)); + builder.AddLine(new Vector2(18048.8848F, -148.720001F)); + builder.AddLine(new Vector2(18048.8848F, -117.260002F)); + builder.AddLine(new Vector2(18208.7598F, -117.260002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(18092.3574F, 0F)); + builder.AddLine(new Vector2(18125.5332F, -201.916F)); + builder.AddLine(new Vector2(18089.7832F, -201.916F)); + builder.AddLine(new Vector2(18056.3223F, 0F)); + builder.AddLine(new Vector2(18092.3574F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(18199.3223F, -57.4860001F)); + builder.AddLine(new Vector2(18199.3223F, -88.9459991F)); + builder.AddLine(new Vector2(18039.1621F, -88.9459991F)); + builder.AddLine(new Vector2(18039.1621F, -57.4860001F)); + builder.AddLine(new Vector2(18199.3223F, -57.4860001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(18156.4219F, 0F)); + builder.AddLine(new Vector2(18190.1699F, -201.916F)); + builder.AddLine(new Vector2(18154.1328F, -201.916F)); + builder.AddLine(new Vector2(18120.957F, 0F)); + builder.AddLine(new Vector2(18156.4219F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0167() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(17885.0078F, 0F)); + builder.AddLine(new Vector2(17885.0078F, -201.916F)); + builder.AddLine(new Vector2(17840.3926F, -201.916F)); + builder.AddLine(new Vector2(17840.3926F, 0F)); + builder.AddLine(new Vector2(17885.0078F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(17926.7637F, 0F)); + builder.AddCubicBezier(new Vector2(17941.0645F, 0F), new Vector2(17953.3125F, -2.61899996F), new Vector2(17963.5156F, -7.86499977F)); + builder.AddCubicBezier(new Vector2(17973.7129F, -13.1070004F), new Vector2(17981.5332F, -20.1140003F), new Vector2(17986.9668F, -28.8859997F)); + builder.AddCubicBezier(new Vector2(17992.4023F, -37.6539993F), new Vector2(17995.1191F, -47.5699997F), new Vector2(17995.1191F, -58.6300011F)); + builder.AddCubicBezier(new Vector2(17995.1191F, -73.1179962F), new Vector2(17990.543F, -85.3219986F), new Vector2(17981.3906F, -95.237999F)); + builder.AddCubicBezier(new Vector2(17972.2383F, -105.150002F), new Vector2(17959.082F, -111.727997F), new Vector2(17941.9219F, -114.972F)); + builder.AddLine(new Vector2(17940.7793F, -99.814003F)); + builder.AddCubicBezier(new Vector2(17956.4102F, -103.054001F), new Vector2(17968.2344F, -108.917F), new Vector2(17976.2422F, -117.403F)); + builder.AddCubicBezier(new Vector2(17984.25F, -125.885002F), new Vector2(17988.2539F, -136.516006F), new Vector2(17988.2539F, -149.292007F)); + builder.AddCubicBezier(new Vector2(17988.2539F, -158.824005F), new Vector2(17985.918F, -167.595993F), new Vector2(17981.248F, -175.604004F)); + builder.AddCubicBezier(new Vector2(17976.5723F, -183.612F), new Vector2(17969.6641F, -189.998001F), new Vector2(17960.5117F, -194.766006F)); + builder.AddCubicBezier(new Vector2(17951.3613F, -199.529999F), new Vector2(17940.3008F, -201.916F), new Vector2(17927.3359F, -201.916F)); + builder.AddLine(new Vector2(17874.998F, -201.916F)); + builder.AddLine(new Vector2(17874.998F, -166.738007F)); + builder.AddLine(new Vector2(17918.7559F, -166.738007F)); + builder.AddCubicBezier(new Vector2(17926F, -166.738007F), new Vector2(17931.9121F, -164.878998F), new Vector2(17936.4883F, -161.160995F)); + builder.AddCubicBezier(new Vector2(17941.0645F, -157.442993F), new Vector2(17943.3516F, -151.960007F), new Vector2(17943.3516F, -144.716003F)); + builder.AddCubicBezier(new Vector2(17943.3516F, -137.087997F), new Vector2(17941.0645F, -131.462006F), new Vector2(17936.4883F, -127.842003F)); + builder.AddCubicBezier(new Vector2(17931.9121F, -124.218002F), new Vector2(17926F, -122.407997F), new Vector2(17918.7559F, -122.407997F)); + builder.AddLine(new Vector2(17874.998F, -122.407997F)); + builder.AddLine(new Vector2(17874.998F, -88.0879974F)); + builder.AddLine(new Vector2(17922.4746F, -88.0879974F)); + builder.AddCubicBezier(new Vector2(17928.1953F, -88.0879974F), new Vector2(17933.1016F, -86.9440002F), new Vector2(17937.2031F, -84.6559982F)); + builder.AddCubicBezier(new Vector2(17941.3008F, -82.3679962F), new Vector2(17944.4961F, -79.2220001F), new Vector2(17946.7852F, -75.2180023F)); + builder.AddCubicBezier(new Vector2(17949.0723F, -71.2139969F), new Vector2(17950.2168F, -66.7320023F), new Vector2(17950.2168F, -61.776001F)); + builder.AddCubicBezier(new Vector2(17950.2168F, -54.1479988F), new Vector2(17947.7363F, -47.8069992F), new Vector2(17942.7812F, -42.757F)); + builder.AddCubicBezier(new Vector2(17937.8203F, -37.7029991F), new Vector2(17931.0547F, -35.1780014F), new Vector2(17922.4746F, -35.1780014F)); + builder.AddLine(new Vector2(17874.998F, -35.1780014F)); + builder.AddLine(new Vector2(17874.998F, 0F)); + builder.AddLine(new Vector2(17926.7637F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0168() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(17749.7305F, -36.3219986F)); + builder.AddLine(new Vector2(17749.7305F, -72.9300003F)); + builder.AddLine(new Vector2(17639.9082F, -72.9300003F)); + builder.AddLine(new Vector2(17639.9082F, -36.3219986F)); + builder.AddLine(new Vector2(17749.7305F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(17640.7656F, 0F)); + builder.AddLine(new Vector2(17702.541F, -167.309998F)); + builder.AddLine(new Vector2(17685.9531F, -167.309998F)); + builder.AddLine(new Vector2(17746.2988F, 0F)); + builder.AddLine(new Vector2(17794.0605F, 0F)); + builder.AddLine(new Vector2(17714.8398F, -201.916F)); + builder.AddLine(new Vector2(17673.9414F, -201.916F)); + builder.AddLine(new Vector2(17594.1465F, 0F)); + builder.AddLine(new Vector2(17640.7656F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0169() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(17531.5137F, -4.43300009F)); + builder.AddCubicBezier(new Vector2(17544.0977F, -9.4829998F), new Vector2(17555.1523F, -16.5879993F), new Vector2(17564.6895F, -25.7399998F)); + builder.AddLine(new Vector2(17534.0879F, -56.3419991F)); + builder.AddCubicBezier(new Vector2(17528.7461F, -50.4300003F), new Vector2(17522.2637F, -45.9029999F), new Vector2(17514.6387F, -42.757F)); + builder.AddCubicBezier(new Vector2(17507.0117F, -39.6110001F), new Vector2(17498.0508F, -38.0379982F), new Vector2(17487.7559F, -38.0379982F)); + builder.AddCubicBezier(new Vector2(17478.9824F, -38.0379982F), new Vector2(17470.9746F, -39.5130005F), new Vector2(17463.7305F, -42.4710007F)); + builder.AddCubicBezier(new Vector2(17456.4824F, -45.4249992F), new Vector2(17450.1914F, -49.7150002F), new Vector2(17444.8555F, -55.3409996F)); + builder.AddCubicBezier(new Vector2(17439.5156F, -60.9630013F), new Vector2(17435.418F, -67.6389999F), new Vector2(17432.5566F, -75.3610001F)); + builder.AddCubicBezier(new Vector2(17429.6973F, -83.0830002F), new Vector2(17428.2676F, -91.7080002F), new Vector2(17428.2676F, -101.244003F)); + builder.AddCubicBezier(new Vector2(17428.2676F, -110.396004F), new Vector2(17429.6973F, -118.877998F), new Vector2(17432.5566F, -126.697998F)); + builder.AddCubicBezier(new Vector2(17435.418F, -134.514008F), new Vector2(17439.5156F, -141.186005F), new Vector2(17444.8555F, -146.718002F)); + builder.AddCubicBezier(new Vector2(17450.1914F, -152.246002F), new Vector2(17456.4824F, -156.487F), new Vector2(17463.7305F, -159.445007F)); + builder.AddCubicBezier(new Vector2(17470.9746F, -162.399002F), new Vector2(17478.9824F, -163.878006F), new Vector2(17487.7559F, -163.878006F)); + builder.AddCubicBezier(new Vector2(17497.666F, -163.878006F), new Vector2(17506.3906F, -162.255997F), new Vector2(17513.9238F, -159.016006F)); + builder.AddCubicBezier(new Vector2(17521.4531F, -155.772003F), new Vector2(17527.7949F, -151.294006F), new Vector2(17532.9434F, -145.574005F)); + builder.AddLine(new Vector2(17563.2598F, -176.175995F)); + builder.AddCubicBezier(new Vector2(17553.916F, -185.136002F), new Vector2(17542.998F, -192.192001F), new Vector2(17530.5117F, -197.339996F)); + builder.AddCubicBezier(new Vector2(17518.0215F, -202.488007F), new Vector2(17503.7715F, -205.061996F), new Vector2(17487.7559F, -205.061996F)); + builder.AddCubicBezier(new Vector2(17472.498F, -205.061996F), new Vector2(17458.4844F, -202.438995F), new Vector2(17445.7129F, -197.197006F)); + builder.AddCubicBezier(new Vector2(17432.9375F, -191.951004F), new Vector2(17421.7344F, -184.658005F), new Vector2(17412.1074F, -175.317993F)); + builder.AddCubicBezier(new Vector2(17402.4785F, -165.973999F), new Vector2(17394.9922F, -154.962997F), new Vector2(17389.6562F, -142.285004F)); + builder.AddCubicBezier(new Vector2(17384.3164F, -129.602997F), new Vector2(17381.6484F, -115.924004F), new Vector2(17381.6484F, -101.244003F)); + builder.AddCubicBezier(new Vector2(17381.6484F, -86.5599976F), new Vector2(17384.3164F, -72.8809967F), new Vector2(17389.6562F, -60.2029991F)); + builder.AddCubicBezier(new Vector2(17394.9922F, -47.5209999F), new Vector2(17402.4785F, -36.4160004F), new Vector2(17412.1074F, -26.8840008F)); + builder.AddCubicBezier(new Vector2(17421.7344F, -17.3479996F), new Vector2(17432.9863F, -9.96100044F), new Vector2(17445.8555F, -4.71899986F)); + builder.AddCubicBezier(new Vector2(17458.7266F, 0.523000002F), new Vector2(17472.6914F, 3.14599991F), new Vector2(17487.7559F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(17504.3438F, 3.14599991F), new Vector2(17518.9297F, 0.616999984F), new Vector2(17531.5137F, -4.43300009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0170() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(17312.1504F, -36.3219986F)); + builder.AddLine(new Vector2(17312.1504F, -72.9300003F)); + builder.AddLine(new Vector2(17202.3281F, -72.9300003F)); + builder.AddLine(new Vector2(17202.3281F, -36.3219986F)); + builder.AddLine(new Vector2(17312.1504F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(17203.1855F, 0F)); + builder.AddLine(new Vector2(17264.9609F, -167.309998F)); + builder.AddLine(new Vector2(17248.373F, -167.309998F)); + builder.AddLine(new Vector2(17308.7188F, 0F)); + builder.AddLine(new Vector2(17356.4805F, 0F)); + builder.AddLine(new Vector2(17277.2598F, -201.916F)); + builder.AddLine(new Vector2(17236.3613F, -201.916F)); + builder.AddLine(new Vector2(17156.5664F, 0F)); + builder.AddLine(new Vector2(17203.1855F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0171() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(17117.0996F, -117.260002F)); + builder.AddLine(new Vector2(17117.0996F, -148.720001F)); + builder.AddLine(new Vector2(16957.2246F, -148.720001F)); + builder.AddLine(new Vector2(16957.2246F, -117.260002F)); + builder.AddLine(new Vector2(17117.0996F, -117.260002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(17000.6973F, 0F)); + builder.AddLine(new Vector2(17033.873F, -201.916F)); + builder.AddLine(new Vector2(16998.123F, -201.916F)); + builder.AddLine(new Vector2(16964.6621F, 0F)); + builder.AddLine(new Vector2(17000.6973F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(17107.6621F, -57.4860001F)); + builder.AddLine(new Vector2(17107.6621F, -88.9459991F)); + builder.AddLine(new Vector2(16947.502F, -88.9459991F)); + builder.AddLine(new Vector2(16947.502F, -57.4860001F)); + builder.AddLine(new Vector2(17107.6621F, -57.4860001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(17064.7617F, 0F)); + builder.AddLine(new Vector2(17098.5098F, -201.916F)); + builder.AddLine(new Vector2(17062.4727F, -201.916F)); + builder.AddLine(new Vector2(17029.2969F, 0F)); + builder.AddLine(new Vector2(17064.7617F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0172() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(16903.7422F, 0F)); + builder.AddLine(new Vector2(16903.7422F, -38.3240013F)); + builder.AddLine(new Vector2(16796.207F, -38.3240013F)); + builder.AddLine(new Vector2(16758.168F, -25.1679993F)); + builder.AddLine(new Vector2(16758.168F, 0F)); + builder.AddLine(new Vector2(16903.7422F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(16813.6523F, -24.5960007F)); + builder.AddLine(new Vector2(16867.707F, -78.0780029F)); + builder.AddCubicBezier(new Vector2(16875.5234F, -85.8939972F), new Vector2(16881.7656F, -93.0439987F), new Vector2(16886.4395F, -99.5279999F)); + builder.AddCubicBezier(new Vector2(16891.1094F, -106.008003F), new Vector2(16894.4473F, -112.635002F), new Vector2(16896.4492F, -119.404999F)); + builder.AddCubicBezier(new Vector2(16898.4512F, -126.170998F), new Vector2(16899.4531F, -133.656006F), new Vector2(16899.4531F, -141.856003F)); + builder.AddCubicBezier(new Vector2(16899.4531F, -154.628006F), new Vector2(16896.6875F, -165.781998F), new Vector2(16891.1582F, -175.317993F)); + builder.AddCubicBezier(new Vector2(16885.627F, -184.850006F), new Vector2(16877.7168F, -192.192001F), new Vector2(16867.4199F, -197.339996F)); + builder.AddCubicBezier(new Vector2(16857.125F, -202.488007F), new Vector2(16845.0137F, -205.061996F), new Vector2(16831.0996F, -205.061996F)); + builder.AddCubicBezier(new Vector2(16814.8906F, -205.061996F), new Vector2(16800.6406F, -201.630005F), new Vector2(16788.3418F, -194.766006F)); + builder.AddCubicBezier(new Vector2(16776.043F, -187.901993F), new Vector2(16765.793F, -177.699997F), new Vector2(16757.5977F, -164.164001F)); + builder.AddLine(new Vector2(16787.9121F, -137.852005F)); + builder.AddCubicBezier(new Vector2(16793.8203F, -147.576004F), new Vector2(16799.9688F, -154.582993F), new Vector2(16806.3594F, -158.873001F)); + builder.AddCubicBezier(new Vector2(16812.7461F, -163.162994F), new Vector2(16819.9453F, -165.307999F), new Vector2(16827.9531F, -165.307999F)); + builder.AddCubicBezier(new Vector2(16835.9609F, -165.307999F), new Vector2(16842.4902F, -163.065002F), new Vector2(16847.543F, -158.587006F)); + builder.AddCubicBezier(new Vector2(16852.5938F, -154.104996F), new Vector2(16855.123F, -147.955994F), new Vector2(16855.123F, -140.139999F)); + builder.AddCubicBezier(new Vector2(16855.123F, -136.707993F), new Vector2(16854.502F, -133.227005F), new Vector2(16853.2637F, -129.701004F)); + builder.AddCubicBezier(new Vector2(16852.0215F, -126.170998F), new Vector2(16849.9258F, -122.453003F), new Vector2(16846.9727F, -118.546997F)); + builder.AddCubicBezier(new Vector2(16844.0137F, -114.637001F), new Vector2(16840.25F, -110.204002F), new Vector2(16835.6738F, -105.248001F)); + builder.AddLine(new Vector2(16758.168F, -25.1679993F)); + builder.AddLine(new Vector2(16813.6523F, -24.5960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0173() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(16704.4004F, -163.591995F)); + builder.AddLine(new Vector2(16704.4004F, -201.916F)); + builder.AddLine(new Vector2(16623.4629F, -201.916F)); + builder.AddLine(new Vector2(16623.4629F, -163.591995F)); + builder.AddLine(new Vector2(16704.4004F, -163.591995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(16707.2617F, 0F)); + builder.AddLine(new Vector2(16707.2617F, -201.916F)); + builder.AddLine(new Vector2(16662.3594F, -201.916F)); + builder.AddLine(new Vector2(16662.3594F, 0F)); + builder.AddLine(new Vector2(16707.2617F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0174() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(16544.8125F, -163.591995F)); + builder.AddLine(new Vector2(16580.2754F, -176.748001F)); + builder.AddLine(new Vector2(16580.2754F, -201.916F)); + builder.AddLine(new Vector2(16449.8594F, -201.916F)); + builder.AddLine(new Vector2(16449.8594F, -163.591995F)); + builder.AddLine(new Vector2(16544.8125F, -163.591995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(16529.3691F, -118.975998F)); + builder.AddLine(new Vector2(16580.2754F, -176.748001F)); + builder.AddLine(new Vector2(16529.6543F, -176.462006F)); + builder.AddLine(new Vector2(16480.4629F, -119.262001F)); + builder.AddLine(new Vector2(16480.4629F, -93.8079987F)); + builder.AddLine(new Vector2(16529.3691F, -118.975998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(16546.8145F, -5.57700014F)); + builder.AddCubicBezier(new Vector2(16558.6348F, -11.3909998F), new Vector2(16567.7871F, -19.3990002F), new Vector2(16574.2695F, -29.6009998F)); + builder.AddCubicBezier(new Vector2(16580.75F, -39.7989998F), new Vector2(16583.9941F, -51.6679993F), new Vector2(16583.9941F, -65.2080002F)); + builder.AddCubicBezier(new Vector2(16583.9941F, -77.2200012F), new Vector2(16581.6074F, -87.6589966F), new Vector2(16576.8438F, -96.5250015F)); + builder.AddCubicBezier(new Vector2(16572.0762F, -105.390999F), new Vector2(16565.5469F, -112.254997F), new Vector2(16557.2539F, -117.116997F)); + builder.AddCubicBezier(new Vector2(16548.959F, -121.978996F), new Vector2(16539.6641F, -124.410004F), new Vector2(16529.3691F, -124.410004F)); + builder.AddCubicBezier(new Vector2(16525.1719F, -124.410004F), new Vector2(16520.6895F, -123.883003F), new Vector2(16515.9258F, -122.836998F)); + builder.AddCubicBezier(new Vector2(16511.1582F, -121.787003F), new Vector2(16506.0098F, -120.5F), new Vector2(16500.4824F, -118.975998F)); + builder.AddLine(new Vector2(16480.4629F, -93.8079987F)); + builder.AddCubicBezier(new Vector2(16483.1309F, -94.7600021F), new Vector2(16486.4688F, -95.4749985F), new Vector2(16490.4727F, -95.9530029F)); + builder.AddCubicBezier(new Vector2(16494.4766F, -96.427002F), new Vector2(16498.2891F, -96.6679993F), new Vector2(16501.9121F, -96.6679993F)); + builder.AddCubicBezier(new Vector2(16509.5352F, -96.6679993F), new Vector2(16516.1641F, -95.4749985F), new Vector2(16521.7891F, -93.0930023F)); + builder.AddCubicBezier(new Vector2(16527.4102F, -90.7070007F), new Vector2(16531.75F, -87.3239975F), new Vector2(16534.8027F, -82.9400024F)); + builder.AddCubicBezier(new Vector2(16537.8496F, -78.552002F), new Vector2(16539.3789F, -73.1179962F), new Vector2(16539.3789F, -66.6380005F)); + builder.AddCubicBezier(new Vector2(16539.3789F, -60.3460007F), new Vector2(16537.8496F, -54.9570007F), new Vector2(16534.8027F, -50.4790001F)); + builder.AddCubicBezier(new Vector2(16531.75F, -45.9970016F), new Vector2(16527.6523F, -42.5159988F), new Vector2(16522.5039F, -40.0400009F)); + builder.AddCubicBezier(new Vector2(16517.3555F, -37.5600014F), new Vector2(16511.3496F, -36.3219986F), new Vector2(16504.4863F, -36.3219986F)); + builder.AddCubicBezier(new Vector2(16496.8574F, -36.3219986F), new Vector2(16489.5156F, -37.9399986F), new Vector2(16482.4648F, -41.1839981F)); + builder.AddCubicBezier(new Vector2(16475.4082F, -44.4239998F), new Vector2(16470.0684F, -48.7140007F), new Vector2(16466.4492F, -54.0540009F)); + builder.AddLine(new Vector2(16437.2754F, -24.882F)); + builder.AddCubicBezier(new Vector2(16445.2852F, -15.7299995F), new Vector2(16455.1016F, -8.76799965F), new Vector2(16466.7344F, -4.00400019F)); + builder.AddCubicBezier(new Vector2(16478.3613F, 0.75999999F), new Vector2(16491.2324F, 3.14599991F), new Vector2(16505.3438F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(16521.168F, 3.14599991F), new Vector2(16534.9902F, 0.237000003F), new Vector2(16546.8145F, -5.57700014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0175() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(16386.082F, -163.591995F)); + builder.AddLine(new Vector2(16386.082F, -201.916F)); + builder.AddLine(new Vector2(16305.1445F, -201.916F)); + builder.AddLine(new Vector2(16305.1445F, -163.591995F)); + builder.AddLine(new Vector2(16386.082F, -163.591995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(16388.9434F, 0F)); + builder.AddLine(new Vector2(16388.9434F, -201.916F)); + builder.AddLine(new Vector2(16344.041F, -201.916F)); + builder.AddLine(new Vector2(16344.041F, 0F)); + builder.AddLine(new Vector2(16388.9434F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0176() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(16264.5332F, -117.260002F)); + builder.AddLine(new Vector2(16264.5332F, -148.720001F)); + builder.AddLine(new Vector2(16104.6592F, -148.720001F)); + builder.AddLine(new Vector2(16104.6592F, -117.260002F)); + builder.AddLine(new Vector2(16264.5332F, -117.260002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(16148.1309F, 0F)); + builder.AddLine(new Vector2(16181.3066F, -201.916F)); + builder.AddLine(new Vector2(16145.5566F, -201.916F)); + builder.AddLine(new Vector2(16112.0947F, 0F)); + builder.AddLine(new Vector2(16148.1309F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(16255.0947F, -57.4860001F)); + builder.AddLine(new Vector2(16255.0947F, -88.9459991F)); + builder.AddLine(new Vector2(16094.9346F, -88.9459991F)); + builder.AddLine(new Vector2(16094.9346F, -57.4860001F)); + builder.AddLine(new Vector2(16255.0947F, -57.4860001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(16212.1953F, 0F)); + builder.AddLine(new Vector2(16245.9434F, -201.916F)); + builder.AddLine(new Vector2(16209.9072F, -201.916F)); + builder.AddLine(new Vector2(16176.7305F, 0F)); + builder.AddLine(new Vector2(16212.1953F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0177() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(15944.7852F, 0F)); + builder.AddLine(new Vector2(15944.7852F, -201.916F)); + builder.AddLine(new Vector2(15899.5977F, -201.916F)); + builder.AddLine(new Vector2(15899.5977F, 0F)); + builder.AddLine(new Vector2(15944.7852F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(15984.2539F, -73.5019989F)); + builder.AddCubicBezier(new Vector2(15997.0254F, -73.5019989F), new Vector2(16008.6084F, -76.0759964F), new Vector2(16019.0029F, -81.223999F)); + builder.AddCubicBezier(new Vector2(16029.3926F, -86.3720016F), new Vector2(16037.5928F, -93.7590027F), new Vector2(16043.5986F, -103.389F)); + builder.AddCubicBezier(new Vector2(16049.6055F, -113.014999F), new Vector2(16052.6074F, -124.410004F), new Vector2(16052.6074F, -137.565994F)); + builder.AddCubicBezier(new Vector2(16052.6074F, -150.910004F), new Vector2(16049.6055F, -162.399002F), new Vector2(16043.5986F, -172.029007F)); + builder.AddCubicBezier(new Vector2(16037.5928F, -181.654999F), new Vector2(16029.3926F, -189.046005F), new Vector2(16019.0029F, -194.194F)); + builder.AddCubicBezier(new Vector2(16008.6084F, -199.341995F), new Vector2(15997.0254F, -201.916F), new Vector2(15984.2539F, -201.916F)); + builder.AddLine(new Vector2(15934.2031F, -201.916F)); + builder.AddLine(new Vector2(15934.2031F, -166.738007F)); + builder.AddLine(new Vector2(15977.6758F, -166.738007F)); + builder.AddCubicBezier(new Vector2(15983.2031F, -166.738007F), new Vector2(15988.208F, -165.639008F), new Vector2(15992.6904F, -163.449005F)); + builder.AddCubicBezier(new Vector2(15997.168F, -161.255005F), new Vector2(16000.7432F, -157.966003F), new Vector2(16003.416F, -153.582001F)); + builder.AddCubicBezier(new Vector2(16006.083F, -149.194F), new Vector2(16007.4199F, -143.858002F), new Vector2(16007.4199F, -137.565994F)); + builder.AddCubicBezier(new Vector2(16007.4199F, -131.462006F), new Vector2(16006.083F, -126.220001F), new Vector2(16003.416F, -121.835999F)); + builder.AddCubicBezier(new Vector2(16000.7432F, -117.447998F), new Vector2(15997.168F, -114.158997F), new Vector2(15992.6904F, -111.969002F)); + builder.AddCubicBezier(new Vector2(15988.208F, -109.775002F), new Vector2(15983.2031F, -108.68F), new Vector2(15977.6758F, -108.68F)); + builder.AddLine(new Vector2(15934.2031F, -108.68F)); + builder.AddLine(new Vector2(15934.2031F, -73.5019989F)); + builder.AddLine(new Vector2(15984.2539F, -73.5019989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0178() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(15808.9355F, -36.3219986F)); + builder.AddLine(new Vector2(15808.9355F, -72.9300003F)); + builder.AddLine(new Vector2(15699.1113F, -72.9300003F)); + builder.AddLine(new Vector2(15699.1113F, -36.3219986F)); + builder.AddLine(new Vector2(15808.9355F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(15699.9697F, 0F)); + builder.AddLine(new Vector2(15761.7451F, -167.309998F)); + builder.AddLine(new Vector2(15745.1572F, -167.309998F)); + builder.AddLine(new Vector2(15805.5039F, 0F)); + builder.AddLine(new Vector2(15853.2656F, 0F)); + builder.AddLine(new Vector2(15774.0439F, -201.916F)); + builder.AddLine(new Vector2(15733.1465F, -201.916F)); + builder.AddLine(new Vector2(15653.3516F, 0F)); + builder.AddLine(new Vector2(15699.9697F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0179() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(15622.749F, 0F)); + builder.AddLine(new Vector2(15622.749F, -39.4679985F)); + builder.AddLine(new Vector2(15522.9346F, -39.4679985F)); + builder.AddLine(new Vector2(15522.9346F, 0F)); + builder.AddLine(new Vector2(15622.749F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(15533.2305F, 0F)); + builder.AddLine(new Vector2(15533.2305F, -201.916F)); + builder.AddLine(new Vector2(15488.043F, -201.916F)); + builder.AddLine(new Vector2(15488.043F, 0F)); + builder.AddLine(new Vector2(15533.2305F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0180() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(15430.8428F, -163.020004F)); + builder.AddLine(new Vector2(15430.8428F, -201.916F)); + builder.AddLine(new Vector2(15321.5908F, -201.916F)); + builder.AddLine(new Vector2(15321.5908F, -163.020004F)); + builder.AddLine(new Vector2(15430.8428F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(15422.2637F, -84.0839996F)); + builder.AddLine(new Vector2(15422.2637F, -122.122002F)); + builder.AddLine(new Vector2(15321.5908F, -122.122002F)); + builder.AddLine(new Vector2(15321.5908F, -84.0839996F)); + builder.AddLine(new Vector2(15422.2637F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(15432.5596F, 0F)); + builder.AddLine(new Vector2(15432.5596F, -38.8959999F)); + builder.AddLine(new Vector2(15321.5908F, -38.8959999F)); + builder.AddLine(new Vector2(15321.5908F, 0F)); + builder.AddLine(new Vector2(15432.5596F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(15332.1729F, 0F)); + builder.AddLine(new Vector2(15332.1729F, -201.916F)); + builder.AddLine(new Vector2(15286.9854F, -201.916F)); + builder.AddLine(new Vector2(15286.9854F, 0F)); + builder.AddLine(new Vector2(15332.1729F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0181() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(15185.8848F, -9.29500008F)); + builder.AddCubicBezier(new Vector2(15201.2314F, -17.7770004F), new Vector2(15213.2422F, -30.316F), new Vector2(15221.9209F, -46.9039993F)); + builder.AddCubicBezier(new Vector2(15230.5947F, -63.4920006F), new Vector2(15234.9336F, -83.7979965F), new Vector2(15234.9336F, -107.821999F)); + builder.AddLine(new Vector2(15234.9336F, -114.400002F)); + builder.AddLine(new Vector2(15128.8271F, -114.400002F)); + builder.AddLine(new Vector2(15128.8271F, -76.3619995F)); + builder.AddLine(new Vector2(15218.918F, -74.9319992F)); + builder.AddLine(new Vector2(15188.8877F, -94.9520035F)); + builder.AddCubicBezier(new Vector2(15188.8877F, -82.9400024F), new Vector2(15186.6445F, -72.6439972F), new Vector2(15182.167F, -64.064003F)); + builder.AddCubicBezier(new Vector2(15177.6846F, -55.4840012F), new Vector2(15171.2988F, -48.9510002F), new Vector2(15163.0049F, -44.4729996F)); + builder.AddCubicBezier(new Vector2(15154.7109F, -39.9910011F), new Vector2(15144.7451F, -37.7519989F), new Vector2(15133.1172F, -37.7519989F)); + builder.AddCubicBezier(new Vector2(15121.4854F, -37.7519989F), new Vector2(15111.1895F, -40.4690018F), new Vector2(15102.2285F, -45.9029999F)); + builder.AddCubicBezier(new Vector2(15093.2646F, -51.3370018F), new Vector2(15086.2129F, -58.8180008F), new Vector2(15081.0654F, -68.3539963F)); + builder.AddCubicBezier(new Vector2(15075.918F, -77.8860016F), new Vector2(15073.3438F, -88.8479996F), new Vector2(15073.3438F, -101.244003F)); + builder.AddCubicBezier(new Vector2(15073.3438F, -113.828003F), new Vector2(15075.9619F, -124.838997F), new Vector2(15081.209F, -134.276993F)); + builder.AddCubicBezier(new Vector2(15086.4502F, -143.714996F), new Vector2(15093.7432F, -151.052994F), new Vector2(15103.0879F, -156.298996F)); + builder.AddCubicBezier(new Vector2(15112.4268F, -161.541F), new Vector2(15123.0088F, -164.164001F), new Vector2(15134.834F, -164.164001F)); + builder.AddCubicBezier(new Vector2(15145.7012F, -164.164001F), new Vector2(15155.5693F, -162.018997F), new Vector2(15164.4346F, -157.729004F)); + builder.AddCubicBezier(new Vector2(15173.3008F, -153.438995F), new Vector2(15180.8799F, -147.098007F), new Vector2(15187.1719F, -138.710007F)); + builder.AddLine(new Vector2(15218.0596F, -169.598007F)); + builder.AddCubicBezier(new Vector2(15208.7158F, -180.654007F), new Vector2(15196.8965F, -189.376999F), new Vector2(15182.5957F, -195.766998F)); + builder.AddCubicBezier(new Vector2(15168.2959F, -202.153F), new Vector2(15152.4668F, -205.348007F), new Vector2(15135.1191F, -205.348007F)); + builder.AddCubicBezier(new Vector2(15120.0557F, -205.348007F), new Vector2(15105.9932F, -202.675995F), new Vector2(15092.9346F, -197.339996F)); + builder.AddCubicBezier(new Vector2(15079.873F, -192F), new Vector2(15068.3828F, -184.613007F), new Vector2(15058.4717F, -175.175003F)); + builder.AddCubicBezier(new Vector2(15048.5557F, -165.737F), new Vector2(15040.833F, -154.770996F), new Vector2(15035.3057F, -142.285004F)); + builder.AddCubicBezier(new Vector2(15029.7744F, -129.794998F), new Vector2(15027.0117F, -116.115997F), new Vector2(15027.0117F, -101.244003F)); + builder.AddCubicBezier(new Vector2(15027.0117F, -86.5599976F), new Vector2(15029.7275F, -72.9300003F), new Vector2(15035.1621F, -60.3460007F)); + builder.AddCubicBezier(new Vector2(15040.5967F, -47.762001F), new Vector2(15048.0771F, -36.7019997F), new Vector2(15057.6133F, -27.1700001F)); + builder.AddCubicBezier(new Vector2(15067.1445F, -17.6340008F), new Vector2(15078.3486F, -10.1529999F), new Vector2(15091.2188F, -4.71899986F)); + builder.AddCubicBezier(new Vector2(15104.0889F, 0.714999974F), new Vector2(15117.96F, 3.43199992F), new Vector2(15132.8311F, 3.43199992F)); + builder.AddCubicBezier(new Vector2(15152.8516F, 3.43199992F), new Vector2(15170.5342F, -0.809000015F), new Vector2(15185.8848F, -9.29500008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0182() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(14957.5137F, -36.3219986F)); + builder.AddLine(new Vector2(14957.5137F, -72.9300003F)); + builder.AddLine(new Vector2(14847.6895F, -72.9300003F)); + builder.AddLine(new Vector2(14847.6895F, -36.3219986F)); + builder.AddLine(new Vector2(14957.5137F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(14848.5479F, 0F)); + builder.AddLine(new Vector2(14910.3232F, -167.309998F)); + builder.AddLine(new Vector2(14893.7354F, -167.309998F)); + builder.AddLine(new Vector2(14954.082F, 0F)); + builder.AddLine(new Vector2(15001.8438F, 0F)); + builder.AddLine(new Vector2(14922.6221F, -201.916F)); + builder.AddLine(new Vector2(14881.7236F, -201.916F)); + builder.AddLine(new Vector2(14801.9297F, 0F)); + builder.AddLine(new Vector2(14848.5479F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0183() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(14753.0225F, 0F)); + builder.AddLine(new Vector2(14753.0225F, -201.916F)); + builder.AddLine(new Vector2(14707.835F, -201.916F)); + builder.AddLine(new Vector2(14707.835F, 0F)); + builder.AddLine(new Vector2(14753.0225F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0184() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(14634.0479F, -13.2989998F)); + builder.AddCubicBezier(new Vector2(14647.7764F, -24.2609997F), new Vector2(14654.6396F, -39.3699989F), new Vector2(14654.6396F, -58.6300011F)); + builder.AddCubicBezier(new Vector2(14654.6396F, -69.3059998F), new Vector2(14652.874F, -78.1719971F), new Vector2(14649.3486F, -85.2279968F)); + builder.AddCubicBezier(new Vector2(14645.8193F, -92.2799988F), new Vector2(14641.291F, -98.1920013F), new Vector2(14635.7637F, -102.959999F)); + builder.AddCubicBezier(new Vector2(14630.2324F, -107.723999F), new Vector2(14624.082F, -111.584999F), new Vector2(14617.3164F, -114.542999F)); + builder.AddCubicBezier(new Vector2(14610.5459F, -117.497002F), new Vector2(14603.7773F, -120.120003F), new Vector2(14597.0107F, -122.407997F)); + builder.AddCubicBezier(new Vector2(14590.2402F, -124.695999F), new Vector2(14584.042F, -126.984001F), new Vector2(14578.4209F, -129.272003F)); + builder.AddCubicBezier(new Vector2(14572.7939F, -131.559998F), new Vector2(14568.2676F, -134.276993F), new Vector2(14564.8359F, -137.423004F)); + builder.AddCubicBezier(new Vector2(14561.4033F, -140.569F), new Vector2(14559.6885F, -144.617996F), new Vector2(14559.6885F, -149.578003F)); + builder.AddCubicBezier(new Vector2(14559.6885F, -155.106003F), new Vector2(14561.9756F, -159.347F), new Vector2(14566.5518F, -162.304993F)); + builder.AddCubicBezier(new Vector2(14571.1279F, -165.259003F), new Vector2(14577.3223F, -166.738007F), new Vector2(14585.1416F, -166.738007F)); + builder.AddCubicBezier(new Vector2(14592.7656F, -166.738007F), new Vector2(14599.6787F, -165.210007F), new Vector2(14605.877F, -162.162003F)); + builder.AddCubicBezier(new Vector2(14612.0703F, -159.110001F), new Vector2(14618.2188F, -154.440002F), new Vector2(14624.3232F, -148.147995F)); + builder.AddLine(new Vector2(14653.7812F, -177.606003F)); + builder.AddCubicBezier(new Vector2(14646.1533F, -185.994003F), new Vector2(14636.5244F, -192.666F), new Vector2(14624.8965F, -197.626007F)); + builder.AddCubicBezier(new Vector2(14613.2637F, -202.582001F), new Vector2(14600.2998F, -205.061996F), new Vector2(14586F, -205.061996F)); + builder.AddCubicBezier(new Vector2(14572.2715F, -205.061996F), new Vector2(14559.9727F, -202.725006F), new Vector2(14549.1055F, -198.054993F)); + builder.AddCubicBezier(new Vector2(14538.2373F, -193.380997F), new Vector2(14529.8008F, -186.565994F), new Vector2(14523.7949F, -177.606003F)); + builder.AddCubicBezier(new Vector2(14517.7891F, -168.641998F), new Vector2(14514.7852F, -157.871994F), new Vector2(14514.7852F, -145.287994F)); + builder.AddCubicBezier(new Vector2(14514.7852F, -135.179993F), new Vector2(14516.502F, -126.697998F), new Vector2(14519.9336F, -119.834F)); + builder.AddCubicBezier(new Vector2(14523.3662F, -112.970001F), new Vector2(14527.8926F, -107.344002F), new Vector2(14533.5186F, -102.959999F)); + builder.AddCubicBezier(new Vector2(14539.1406F, -98.5719986F), new Vector2(14545.3379F, -94.8539963F), new Vector2(14552.1084F, -91.8059998F)); + builder.AddCubicBezier(new Vector2(14558.874F, -88.7539978F), new Vector2(14565.5947F, -86.1309967F), new Vector2(14572.2715F, -83.9410019F)); + builder.AddCubicBezier(new Vector2(14578.9434F, -81.7470016F), new Vector2(14585.1406F, -79.4100037F), new Vector2(14590.8613F, -76.9339981F)); + builder.AddCubicBezier(new Vector2(14596.582F, -74.4540024F), new Vector2(14601.1084F, -71.5F), new Vector2(14604.4463F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(14607.7803F, -64.6360016F), new Vector2(14609.4512F, -60.2480011F), new Vector2(14609.4512F, -54.9119987F)); + builder.AddCubicBezier(new Vector2(14609.4512F, -48.8079987F), new Vector2(14606.8281F, -43.9949989F), new Vector2(14601.5869F, -40.4690018F)); + builder.AddCubicBezier(new Vector2(14596.3398F, -36.9389992F), new Vector2(14589.0469F, -35.1780014F), new Vector2(14579.708F, -35.1780014F)); + builder.AddCubicBezier(new Vector2(14569.2197F, -35.1780014F), new Vector2(14560.0176F, -37.2249985F), new Vector2(14552.1084F, -41.3269997F)); + builder.AddCubicBezier(new Vector2(14544.1943F, -45.4249992F), new Vector2(14536.9951F, -51.1940002F), new Vector2(14530.5156F, -58.6300011F)); + builder.AddLine(new Vector2(14501.3438F, -29.4580002F)); + builder.AddCubicBezier(new Vector2(14511.0684F, -18.3980007F), new Vector2(14521.8867F, -10.198F), new Vector2(14533.8047F, -4.86199999F)); + builder.AddCubicBezier(new Vector2(14545.7188F, 0.474000007F), new Vector2(14560.0684F, 3.14599991F), new Vector2(14576.8477F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(14601.251F, 3.14599991F), new Vector2(14620.3193F, -2.33299994F), new Vector2(14634.0479F, -13.2989998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0185() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(14463.877F, -163.020004F)); + builder.AddLine(new Vector2(14463.877F, -201.916F)); + builder.AddLine(new Vector2(14354.625F, -201.916F)); + builder.AddLine(new Vector2(14354.625F, -163.020004F)); + builder.AddLine(new Vector2(14463.877F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(14455.2979F, -84.0839996F)); + builder.AddLine(new Vector2(14455.2979F, -122.122002F)); + builder.AddLine(new Vector2(14354.625F, -122.122002F)); + builder.AddLine(new Vector2(14354.625F, -84.0839996F)); + builder.AddLine(new Vector2(14455.2979F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(14465.5938F, 0F)); + builder.AddLine(new Vector2(14465.5938F, -38.8959999F)); + builder.AddLine(new Vector2(14354.625F, -38.8959999F)); + builder.AddLine(new Vector2(14354.625F, 0F)); + builder.AddLine(new Vector2(14465.5938F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(14365.207F, 0F)); + builder.AddLine(new Vector2(14365.207F, -201.916F)); + builder.AddLine(new Vector2(14320.0195F, -201.916F)); + builder.AddLine(new Vector2(14320.0195F, 0F)); + builder.AddLine(new Vector2(14365.207F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0186() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(14256.5273F, 0F)); + builder.AddLine(new Vector2(14256.5273F, -201.916F)); + builder.AddLine(new Vector2(14211.0527F, -201.916F)); + builder.AddLine(new Vector2(14211.0527F, -40.3260002F)); + builder.AddLine(new Vector2(14223.0654F, 0F)); + builder.AddLine(new Vector2(14256.5273F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(14234.5049F, -49.4780006F)); + builder.AddLine(new Vector2(14115.5293F, -201.916F)); + builder.AddLine(new Vector2(14104.375F, -152.438004F)); + builder.AddLine(new Vector2(14223.0654F, 0F)); + builder.AddLine(new Vector2(14234.5049F, -49.4780006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(14128.9707F, 0F)); + builder.AddLine(new Vector2(14128.9707F, -161.589996F)); + builder.AddLine(new Vector2(14115.5293F, -201.916F)); + builder.AddLine(new Vector2(14083.7832F, -201.916F)); + builder.AddLine(new Vector2(14083.7832F, 0F)); + builder.AddLine(new Vector2(14128.9707F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0187() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(13899.4561F, -42.1850014F)); + builder.AddCubicBezier(new Vector2(13892.1143F, -45.1389999F), new Vector2(13885.7744F, -49.4290009F), new Vector2(13880.4385F, -55.0550003F)); + builder.AddCubicBezier(new Vector2(13875.0977F, -60.6769981F), new Vector2(13870.999F, -67.3980026F), new Vector2(13868.1396F, -75.2180023F)); + builder.AddCubicBezier(new Vector2(13865.2803F, -83.0339966F), new Vector2(13863.8496F, -91.7080002F), new Vector2(13863.8496F, -101.244003F)); + builder.AddCubicBezier(new Vector2(13863.8496F, -113.828003F), new Vector2(13866.3252F, -124.838997F), new Vector2(13871.2852F, -134.276993F)); + builder.AddCubicBezier(new Vector2(13876.2412F, -143.714996F), new Vector2(13883.248F, -151.052994F), new Vector2(13892.3066F, -156.298996F)); + builder.AddCubicBezier(new Vector2(13901.3613F, -161.541F), new Vector2(13911.8975F, -164.164001F), new Vector2(13923.9092F, -164.164001F)); + builder.AddCubicBezier(new Vector2(13932.6768F, -164.164001F), new Vector2(13940.7832F, -162.684998F), new Vector2(13948.2197F, -159.731003F)); + builder.AddCubicBezier(new Vector2(13955.6562F, -156.772995F), new Vector2(13962.041F, -152.483002F), new Vector2(13967.3818F, -146.860992F)); + builder.AddCubicBezier(new Vector2(13972.7168F, -141.235001F), new Vector2(13976.8203F, -134.563004F), new Vector2(13979.6797F, -126.841003F)); + builder.AddCubicBezier(new Vector2(13982.5391F, -119.119003F), new Vector2(13983.9697F, -110.584F), new Vector2(13983.9697F, -101.244003F)); + builder.AddCubicBezier(new Vector2(13983.9697F, -88.6600037F), new Vector2(13981.4414F, -77.5999985F), new Vector2(13976.3906F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(13971.3359F, -58.5320015F), new Vector2(13964.3291F, -51.0960007F), new Vector2(13955.3691F, -45.7599983F)); + builder.AddCubicBezier(new Vector2(13946.4053F, -40.4199982F), new Vector2(13935.9209F, -37.7519989F), new Vector2(13923.9092F, -37.7519989F)); + builder.AddCubicBezier(new Vector2(13914.9453F, -37.7519989F), new Vector2(13906.7939F, -39.2270012F), new Vector2(13899.4561F, -42.1850014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(13966.2373F, -4.57600021F)); + builder.AddCubicBezier(new Vector2(13979.0078F, -9.9119997F), new Vector2(13990.1631F, -17.3029995F), new Vector2(13999.6992F, -26.7409992F)); + builder.AddCubicBezier(new Vector2(14009.2314F, -36.1790009F), new Vector2(14016.667F, -47.2350006F), new Vector2(14022.0078F, -59.9169998F)); + builder.AddCubicBezier(new Vector2(14027.3428F, -72.5950012F), new Vector2(14030.0156F, -86.2740021F), new Vector2(14030.0156F, -100.958F)); + builder.AddCubicBezier(new Vector2(14030.0156F, -115.830002F), new Vector2(14027.3916F, -129.602997F), new Vector2(14022.1504F, -142.285004F)); + builder.AddCubicBezier(new Vector2(14016.9043F, -154.962997F), new Vector2(14009.4238F, -166.022995F), new Vector2(13999.6992F, -175.460999F)); + builder.AddCubicBezier(new Vector2(13989.9746F, -184.899002F), new Vector2(13978.6787F, -192.237F), new Vector2(13965.8086F, -197.483002F)); + builder.AddCubicBezier(new Vector2(13952.9395F, -202.725006F), new Vector2(13938.9688F, -205.348007F), new Vector2(13923.9092F, -205.348007F)); + builder.AddCubicBezier(new Vector2(13908.6533F, -205.348007F), new Vector2(13894.5449F, -202.725006F), new Vector2(13881.5811F, -197.483002F)); + builder.AddCubicBezier(new Vector2(13868.6133F, -192.237F), new Vector2(13857.3652F, -184.899002F), new Vector2(13847.833F, -175.460999F)); + builder.AddCubicBezier(new Vector2(13838.2969F, -166.022995F), new Vector2(13830.8613F, -155.011993F), new Vector2(13825.5254F, -142.427994F)); + builder.AddCubicBezier(new Vector2(13820.1846F, -129.843994F), new Vector2(13817.5176F, -116.115997F), new Vector2(13817.5176F, -101.244003F)); + builder.AddCubicBezier(new Vector2(13817.5176F, -86.5599976F), new Vector2(13820.1846F, -72.8809967F), new Vector2(13825.5254F, -60.2029991F)); + builder.AddCubicBezier(new Vector2(13830.8613F, -47.5209999F), new Vector2(13838.3945F, -36.4160004F), new Vector2(13848.1191F, -26.8840008F)); + builder.AddCubicBezier(new Vector2(13857.8438F, -17.3479996F), new Vector2(13869.1836F, -9.9119997F), new Vector2(13882.1533F, -4.57600021F)); + builder.AddCubicBezier(new Vector2(13895.1172F, 0.75999999F), new Vector2(13909.2236F, 3.43199992F), new Vector2(13924.4814F, 3.43199992F)); + builder.AddCubicBezier(new Vector2(13939.541F, 3.43199992F), new Vector2(13953.4609F, 0.75999999F), new Vector2(13966.2373F, -4.57600021F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0188() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(13632.1895F, 0F)); + builder.AddLine(new Vector2(13632.1895F, -201.916F)); + builder.AddLine(new Vector2(13587.002F, -201.916F)); + builder.AddLine(new Vector2(13587.002F, 0F)); + builder.AddLine(new Vector2(13632.1895F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(13668.7979F, 0F)); + builder.AddCubicBezier(new Vector2(13683.8584F, 0F), new Vector2(13697.8271F, -2.47600007F), new Vector2(13710.6973F, -7.43599987F)); + builder.AddCubicBezier(new Vector2(13723.5664F, -12.3920002F), new Vector2(13734.7656F, -19.3990002F), new Vector2(13744.3018F, -28.4570007F)); + builder.AddCubicBezier(new Vector2(13753.834F, -37.5110016F), new Vector2(13761.2686F, -48.1910019F), new Vector2(13766.6094F, -60.4889984F)); + builder.AddCubicBezier(new Vector2(13771.9453F, -72.7870026F), new Vector2(13774.6182F, -86.2740021F), new Vector2(13774.6182F, -100.958F)); + builder.AddCubicBezier(new Vector2(13774.6182F, -116.017998F), new Vector2(13771.9453F, -129.651993F), new Vector2(13766.6094F, -141.856003F)); + builder.AddCubicBezier(new Vector2(13761.2686F, -154.056F), new Vector2(13753.7842F, -164.686996F), new Vector2(13744.1592F, -173.744995F)); + builder.AddCubicBezier(new Vector2(13734.5283F, -182.798996F), new Vector2(13723.2812F, -189.761002F), new Vector2(13710.4111F, -194.623001F)); + builder.AddCubicBezier(new Vector2(13697.541F, -199.485001F), new Vector2(13683.4775F, -201.916F), new Vector2(13668.2256F, -201.916F)); + builder.AddLine(new Vector2(13616.46F, -201.916F)); + builder.AddLine(new Vector2(13616.46F, -162.447998F)); + builder.AddLine(new Vector2(13667.6543F, -162.447998F)); + builder.AddCubicBezier(new Vector2(13679.666F, -162.447998F), new Vector2(13690.1982F, -160.016998F), new Vector2(13699.2568F, -155.154999F)); + builder.AddCubicBezier(new Vector2(13708.3105F, -150.292999F), new Vector2(13715.3662F, -143.237F), new Vector2(13720.4209F, -133.990997F)); + builder.AddCubicBezier(new Vector2(13725.4707F, -124.740997F), new Vector2(13728F, -113.828003F), new Vector2(13728F, -101.244003F)); + builder.AddCubicBezier(new Vector2(13728F, -88.4680023F), new Vector2(13725.5186F, -77.4570007F), new Vector2(13720.5635F, -68.2109985F)); + builder.AddCubicBezier(new Vector2(13715.6025F, -58.9609985F), new Vector2(13708.5967F, -51.8600006F), new Vector2(13699.543F, -46.9039993F)); + builder.AddCubicBezier(new Vector2(13690.4844F, -41.9440002F), new Vector2(13679.8525F, -39.4679985F), new Vector2(13667.6543F, -39.4679985F)); + builder.AddLine(new Vector2(13617.8896F, -39.4679985F)); + builder.AddLine(new Vector2(13617.8896F, 0F)); + builder.AddLine(new Vector2(13668.7979F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0189() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(13523.5098F, 0F)); + builder.AddLine(new Vector2(13523.5098F, -201.916F)); + builder.AddLine(new Vector2(13478.0352F, -201.916F)); + builder.AddLine(new Vector2(13478.0352F, -40.3260002F)); + builder.AddLine(new Vector2(13490.0479F, 0F)); + builder.AddLine(new Vector2(13523.5098F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(13501.4873F, -49.4780006F)); + builder.AddLine(new Vector2(13382.5117F, -201.916F)); + builder.AddLine(new Vector2(13371.3574F, -152.438004F)); + builder.AddLine(new Vector2(13490.0479F, 0F)); + builder.AddLine(new Vector2(13501.4873F, -49.4780006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(13395.9531F, 0F)); + builder.AddLine(new Vector2(13395.9531F, -161.589996F)); + builder.AddLine(new Vector2(13382.5117F, -201.916F)); + builder.AddLine(new Vector2(13350.7656F, -201.916F)); + builder.AddLine(new Vector2(13350.7656F, 0F)); + builder.AddLine(new Vector2(13395.9531F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0190() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(13286.9873F, 0F)); + builder.AddLine(new Vector2(13286.9873F, -201.916F)); + builder.AddLine(new Vector2(13241.7998F, -201.916F)); + builder.AddLine(new Vector2(13241.7998F, 0F)); + builder.AddLine(new Vector2(13286.9873F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0191() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(13187.46F, -117.260002F)); + builder.AddLine(new Vector2(13187.46F, -148.720001F)); + builder.AddLine(new Vector2(13027.5859F, -148.720001F)); + builder.AddLine(new Vector2(13027.5859F, -117.260002F)); + builder.AddLine(new Vector2(13187.46F, -117.260002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(13071.0576F, 0F)); + builder.AddLine(new Vector2(13104.2334F, -201.916F)); + builder.AddLine(new Vector2(13068.4834F, -201.916F)); + builder.AddLine(new Vector2(13035.0215F, 0F)); + builder.AddLine(new Vector2(13071.0576F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(13178.0215F, -57.4860001F)); + builder.AddLine(new Vector2(13178.0215F, -88.9459991F)); + builder.AddLine(new Vector2(13017.8613F, -88.9459991F)); + builder.AddLine(new Vector2(13017.8613F, -57.4860001F)); + builder.AddLine(new Vector2(13178.0215F, -57.4860001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(13135.1221F, 0F)); + builder.AddLine(new Vector2(13168.8701F, -201.916F)); + builder.AddLine(new Vector2(13132.834F, -201.916F)); + builder.AddLine(new Vector2(13099.6572F, 0F)); + builder.AddLine(new Vector2(13135.1221F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0192() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(12934.3496F, -36.3219986F)); + builder.AddLine(new Vector2(12934.3496F, -72.9300003F)); + builder.AddLine(new Vector2(12824.5254F, -72.9300003F)); + builder.AddLine(new Vector2(12824.5254F, -36.3219986F)); + builder.AddLine(new Vector2(12934.3496F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(12825.3838F, 0F)); + builder.AddLine(new Vector2(12887.1592F, -167.309998F)); + builder.AddLine(new Vector2(12870.5713F, -167.309998F)); + builder.AddLine(new Vector2(12930.918F, 0F)); + builder.AddLine(new Vector2(12978.6797F, 0F)); + builder.AddLine(new Vector2(12899.458F, -201.916F)); + builder.AddLine(new Vector2(12858.5596F, -201.916F)); + builder.AddLine(new Vector2(12778.7656F, 0F)); + builder.AddLine(new Vector2(12825.3838F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0193() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(12729.8594F, 0F)); + builder.AddLine(new Vector2(12729.8594F, -201.916F)); + builder.AddLine(new Vector2(12684.6719F, -201.916F)); + builder.AddLine(new Vector2(12684.6719F, 0F)); + builder.AddLine(new Vector2(12729.8594F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0194() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(12610.8838F, -13.2989998F)); + builder.AddCubicBezier(new Vector2(12624.6123F, -24.2609997F), new Vector2(12631.4756F, -39.3699989F), new Vector2(12631.4756F, -58.6300011F)); + builder.AddCubicBezier(new Vector2(12631.4756F, -69.3059998F), new Vector2(12629.71F, -78.1719971F), new Vector2(12626.1846F, -85.2279968F)); + builder.AddCubicBezier(new Vector2(12622.6553F, -92.2799988F), new Vector2(12618.127F, -98.1920013F), new Vector2(12612.5996F, -102.959999F)); + builder.AddCubicBezier(new Vector2(12607.0684F, -107.723999F), new Vector2(12600.918F, -111.584999F), new Vector2(12594.1523F, -114.542999F)); + builder.AddCubicBezier(new Vector2(12587.3818F, -117.497002F), new Vector2(12580.6133F, -120.120003F), new Vector2(12573.8467F, -122.407997F)); + builder.AddCubicBezier(new Vector2(12567.0762F, -124.695999F), new Vector2(12560.8779F, -126.984001F), new Vector2(12555.2568F, -129.272003F)); + builder.AddCubicBezier(new Vector2(12549.6299F, -131.559998F), new Vector2(12545.1035F, -134.276993F), new Vector2(12541.6719F, -137.423004F)); + builder.AddCubicBezier(new Vector2(12538.2393F, -140.569F), new Vector2(12536.5234F, -144.617996F), new Vector2(12536.5234F, -149.578003F)); + builder.AddCubicBezier(new Vector2(12536.5234F, -155.106003F), new Vector2(12538.8115F, -159.347F), new Vector2(12543.3877F, -162.304993F)); + builder.AddCubicBezier(new Vector2(12547.9639F, -165.259003F), new Vector2(12554.1582F, -166.738007F), new Vector2(12561.9775F, -166.738007F)); + builder.AddCubicBezier(new Vector2(12569.6016F, -166.738007F), new Vector2(12576.5146F, -165.210007F), new Vector2(12582.7129F, -162.162003F)); + builder.AddCubicBezier(new Vector2(12588.9062F, -159.110001F), new Vector2(12595.0547F, -154.440002F), new Vector2(12601.1592F, -148.147995F)); + builder.AddLine(new Vector2(12630.6172F, -177.606003F)); + builder.AddCubicBezier(new Vector2(12622.9893F, -185.994003F), new Vector2(12613.3594F, -192.666F), new Vector2(12601.7314F, -197.626007F)); + builder.AddCubicBezier(new Vector2(12590.0986F, -202.582001F), new Vector2(12577.1357F, -205.061996F), new Vector2(12562.8359F, -205.061996F)); + builder.AddCubicBezier(new Vector2(12549.1074F, -205.061996F), new Vector2(12536.8086F, -202.725006F), new Vector2(12525.9414F, -198.054993F)); + builder.AddCubicBezier(new Vector2(12515.0732F, -193.380997F), new Vector2(12506.6367F, -186.565994F), new Vector2(12500.6309F, -177.606003F)); + builder.AddCubicBezier(new Vector2(12494.625F, -168.641998F), new Vector2(12491.6211F, -157.871994F), new Vector2(12491.6211F, -145.287994F)); + builder.AddCubicBezier(new Vector2(12491.6211F, -135.179993F), new Vector2(12493.3379F, -126.697998F), new Vector2(12496.7695F, -119.834F)); + builder.AddCubicBezier(new Vector2(12500.2021F, -112.970001F), new Vector2(12504.7275F, -107.344002F), new Vector2(12510.3535F, -102.959999F)); + builder.AddCubicBezier(new Vector2(12515.9756F, -98.5719986F), new Vector2(12522.1738F, -94.8539963F), new Vector2(12528.9443F, -91.8059998F)); + builder.AddCubicBezier(new Vector2(12535.71F, -88.7539978F), new Vector2(12542.4307F, -86.1309967F), new Vector2(12549.1074F, -83.9410019F)); + builder.AddCubicBezier(new Vector2(12555.7793F, -81.7470016F), new Vector2(12561.9766F, -79.4100037F), new Vector2(12567.6973F, -76.9339981F)); + builder.AddCubicBezier(new Vector2(12573.418F, -74.4540024F), new Vector2(12577.9443F, -71.5F), new Vector2(12581.2822F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(12584.6162F, -64.6360016F), new Vector2(12586.2871F, -60.2480011F), new Vector2(12586.2871F, -54.9119987F)); + builder.AddCubicBezier(new Vector2(12586.2871F, -48.8079987F), new Vector2(12583.6641F, -43.9949989F), new Vector2(12578.4229F, -40.4690018F)); + builder.AddCubicBezier(new Vector2(12573.1758F, -36.9389992F), new Vector2(12565.8828F, -35.1780014F), new Vector2(12556.5439F, -35.1780014F)); + builder.AddCubicBezier(new Vector2(12546.0557F, -35.1780014F), new Vector2(12536.8535F, -37.2249985F), new Vector2(12528.9443F, -41.3269997F)); + builder.AddCubicBezier(new Vector2(12521.0303F, -45.4249992F), new Vector2(12513.8311F, -51.1940002F), new Vector2(12507.3516F, -58.6300011F)); + builder.AddLine(new Vector2(12478.1797F, -29.4580002F)); + builder.AddCubicBezier(new Vector2(12487.9043F, -18.3980007F), new Vector2(12498.7227F, -10.198F), new Vector2(12510.6406F, -4.86199999F)); + builder.AddCubicBezier(new Vector2(12522.5547F, 0.474000007F), new Vector2(12536.9043F, 3.14599991F), new Vector2(12553.6836F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(12578.0869F, 3.14599991F), new Vector2(12597.1553F, -2.33299994F), new Vector2(12610.8838F, -13.2989998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0195() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(12440.7129F, -163.020004F)); + builder.AddLine(new Vector2(12440.7129F, -201.916F)); + builder.AddLine(new Vector2(12331.4609F, -201.916F)); + builder.AddLine(new Vector2(12331.4609F, -163.020004F)); + builder.AddLine(new Vector2(12440.7129F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(12432.1338F, -84.0839996F)); + builder.AddLine(new Vector2(12432.1338F, -122.122002F)); + builder.AddLine(new Vector2(12331.4609F, -122.122002F)); + builder.AddLine(new Vector2(12331.4609F, -84.0839996F)); + builder.AddLine(new Vector2(12432.1338F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(12442.4297F, 0F)); + builder.AddLine(new Vector2(12442.4297F, -38.8959999F)); + builder.AddLine(new Vector2(12331.4609F, -38.8959999F)); + builder.AddLine(new Vector2(12331.4609F, 0F)); + builder.AddLine(new Vector2(12442.4297F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(12342.043F, 0F)); + builder.AddLine(new Vector2(12342.043F, -201.916F)); + builder.AddLine(new Vector2(12296.8555F, -201.916F)); + builder.AddLine(new Vector2(12296.8555F, 0F)); + builder.AddLine(new Vector2(12342.043F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0196() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(12233.3643F, 0F)); + builder.AddLine(new Vector2(12233.3643F, -201.916F)); + builder.AddLine(new Vector2(12187.8896F, -201.916F)); + builder.AddLine(new Vector2(12187.8896F, -40.3260002F)); + builder.AddLine(new Vector2(12199.9023F, 0F)); + builder.AddLine(new Vector2(12233.3643F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(12211.3418F, -49.4780006F)); + builder.AddLine(new Vector2(12092.3662F, -201.916F)); + builder.AddLine(new Vector2(12081.2119F, -152.438004F)); + builder.AddLine(new Vector2(12199.9023F, 0F)); + builder.AddLine(new Vector2(12211.3418F, -49.4780006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(12105.8076F, 0F)); + builder.AddLine(new Vector2(12105.8076F, -161.589996F)); + builder.AddLine(new Vector2(12092.3662F, -201.916F)); + builder.AddLine(new Vector2(12060.6201F, -201.916F)); + builder.AddLine(new Vector2(12060.6201F, 0F)); + builder.AddLine(new Vector2(12105.8076F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0197() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(11876.292F, -42.1850014F)); + builder.AddCubicBezier(new Vector2(11868.9502F, -45.1389999F), new Vector2(11862.6094F, -49.4290009F), new Vector2(11857.2734F, -55.0550003F)); + builder.AddCubicBezier(new Vector2(11851.9326F, -60.6769981F), new Vector2(11847.835F, -67.3980026F), new Vector2(11844.9756F, -75.2180023F)); + builder.AddCubicBezier(new Vector2(11842.1162F, -83.0339966F), new Vector2(11840.6855F, -91.7080002F), new Vector2(11840.6855F, -101.244003F)); + builder.AddCubicBezier(new Vector2(11840.6855F, -113.828003F), new Vector2(11843.1611F, -124.838997F), new Vector2(11848.1211F, -134.276993F)); + builder.AddCubicBezier(new Vector2(11853.0771F, -143.714996F), new Vector2(11860.084F, -151.052994F), new Vector2(11869.1426F, -156.298996F)); + builder.AddCubicBezier(new Vector2(11878.1973F, -161.541F), new Vector2(11888.7334F, -164.164001F), new Vector2(11900.7451F, -164.164001F)); + builder.AddCubicBezier(new Vector2(11909.5127F, -164.164001F), new Vector2(11917.6191F, -162.684998F), new Vector2(11925.0557F, -159.731003F)); + builder.AddCubicBezier(new Vector2(11932.4922F, -156.772995F), new Vector2(11938.877F, -152.483002F), new Vector2(11944.2178F, -146.860992F)); + builder.AddCubicBezier(new Vector2(11949.5527F, -141.235001F), new Vector2(11953.6562F, -134.563004F), new Vector2(11956.5156F, -126.841003F)); + builder.AddCubicBezier(new Vector2(11959.375F, -119.119003F), new Vector2(11960.8057F, -110.584F), new Vector2(11960.8057F, -101.244003F)); + builder.AddCubicBezier(new Vector2(11960.8057F, -88.6600037F), new Vector2(11958.2773F, -77.5999985F), new Vector2(11953.2266F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(11948.1719F, -58.5320015F), new Vector2(11941.165F, -51.0960007F), new Vector2(11932.2051F, -45.7599983F)); + builder.AddCubicBezier(new Vector2(11923.2412F, -40.4199982F), new Vector2(11912.7568F, -37.7519989F), new Vector2(11900.7451F, -37.7519989F)); + builder.AddCubicBezier(new Vector2(11891.7812F, -37.7519989F), new Vector2(11883.6299F, -39.2270012F), new Vector2(11876.292F, -42.1850014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(11943.0732F, -4.57600021F)); + builder.AddCubicBezier(new Vector2(11955.8438F, -9.9119997F), new Vector2(11966.999F, -17.3029995F), new Vector2(11976.5352F, -26.7409992F)); + builder.AddCubicBezier(new Vector2(11986.0674F, -36.1790009F), new Vector2(11993.5029F, -47.2350006F), new Vector2(11998.8438F, -59.9169998F)); + builder.AddCubicBezier(new Vector2(12004.1787F, -72.5950012F), new Vector2(12006.8516F, -86.2740021F), new Vector2(12006.8516F, -100.958F)); + builder.AddCubicBezier(new Vector2(12006.8516F, -115.830002F), new Vector2(12004.2275F, -129.602997F), new Vector2(11998.9863F, -142.285004F)); + builder.AddCubicBezier(new Vector2(11993.7402F, -154.962997F), new Vector2(11986.2598F, -166.022995F), new Vector2(11976.5352F, -175.460999F)); + builder.AddCubicBezier(new Vector2(11966.8105F, -184.899002F), new Vector2(11955.5146F, -192.237F), new Vector2(11942.6445F, -197.483002F)); + builder.AddCubicBezier(new Vector2(11929.7754F, -202.725006F), new Vector2(11915.8047F, -205.348007F), new Vector2(11900.7451F, -205.348007F)); + builder.AddCubicBezier(new Vector2(11885.4893F, -205.348007F), new Vector2(11871.3809F, -202.725006F), new Vector2(11858.417F, -197.483002F)); + builder.AddCubicBezier(new Vector2(11845.4492F, -192.237F), new Vector2(11834.2012F, -184.899002F), new Vector2(11824.6689F, -175.460999F)); + builder.AddCubicBezier(new Vector2(11815.1328F, -166.022995F), new Vector2(11807.6973F, -155.011993F), new Vector2(11802.3613F, -142.427994F)); + builder.AddCubicBezier(new Vector2(11797.0215F, -129.843994F), new Vector2(11794.3535F, -116.115997F), new Vector2(11794.3535F, -101.244003F)); + builder.AddCubicBezier(new Vector2(11794.3535F, -86.5599976F), new Vector2(11797.0215F, -72.8809967F), new Vector2(11802.3613F, -60.2029991F)); + builder.AddCubicBezier(new Vector2(11807.6973F, -47.5209999F), new Vector2(11815.2314F, -36.4160004F), new Vector2(11824.9551F, -26.8840008F)); + builder.AddCubicBezier(new Vector2(11834.6797F, -17.3479996F), new Vector2(11846.0195F, -9.9119997F), new Vector2(11858.9893F, -4.57600021F)); + builder.AddCubicBezier(new Vector2(11871.9531F, 0.75999999F), new Vector2(11886.0596F, 3.43199992F), new Vector2(11901.3174F, 3.43199992F)); + builder.AddCubicBezier(new Vector2(11916.377F, 3.43199992F), new Vector2(11930.2969F, 0.75999999F), new Vector2(11943.0732F, -4.57600021F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0198() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(11609.0254F, 0F)); + builder.AddLine(new Vector2(11609.0254F, -201.916F)); + builder.AddLine(new Vector2(11563.8379F, -201.916F)); + builder.AddLine(new Vector2(11563.8379F, 0F)); + builder.AddLine(new Vector2(11609.0254F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(11645.6338F, 0F)); + builder.AddCubicBezier(new Vector2(11660.6943F, 0F), new Vector2(11674.6631F, -2.47600007F), new Vector2(11687.5332F, -7.43599987F)); + builder.AddCubicBezier(new Vector2(11700.4023F, -12.3920002F), new Vector2(11711.6016F, -19.3990002F), new Vector2(11721.1377F, -28.4570007F)); + builder.AddCubicBezier(new Vector2(11730.6699F, -37.5110016F), new Vector2(11738.1055F, -48.1910019F), new Vector2(11743.4453F, -60.4889984F)); + builder.AddCubicBezier(new Vector2(11748.7812F, -72.7870026F), new Vector2(11751.4541F, -86.2740021F), new Vector2(11751.4541F, -100.958F)); + builder.AddCubicBezier(new Vector2(11751.4541F, -116.017998F), new Vector2(11748.7812F, -129.651993F), new Vector2(11743.4453F, -141.856003F)); + builder.AddCubicBezier(new Vector2(11738.1055F, -154.056F), new Vector2(11730.6201F, -164.686996F), new Vector2(11720.9951F, -173.744995F)); + builder.AddCubicBezier(new Vector2(11711.3643F, -182.798996F), new Vector2(11700.1172F, -189.761002F), new Vector2(11687.2471F, -194.623001F)); + builder.AddCubicBezier(new Vector2(11674.377F, -199.485001F), new Vector2(11660.3145F, -201.916F), new Vector2(11645.0615F, -201.916F)); + builder.AddLine(new Vector2(11593.2959F, -201.916F)); + builder.AddLine(new Vector2(11593.2959F, -162.447998F)); + builder.AddLine(new Vector2(11644.4902F, -162.447998F)); + builder.AddCubicBezier(new Vector2(11656.502F, -162.447998F), new Vector2(11667.0342F, -160.016998F), new Vector2(11676.0928F, -155.154999F)); + builder.AddCubicBezier(new Vector2(11685.1475F, -150.292999F), new Vector2(11692.2021F, -143.237F), new Vector2(11697.2568F, -133.990997F)); + builder.AddCubicBezier(new Vector2(11702.3066F, -124.740997F), new Vector2(11704.8359F, -113.828003F), new Vector2(11704.8359F, -101.244003F)); + builder.AddCubicBezier(new Vector2(11704.8359F, -88.4680023F), new Vector2(11702.3555F, -77.4570007F), new Vector2(11697.3994F, -68.2109985F)); + builder.AddCubicBezier(new Vector2(11692.4395F, -58.9609985F), new Vector2(11685.4326F, -51.8600006F), new Vector2(11676.3789F, -46.9039993F)); + builder.AddCubicBezier(new Vector2(11667.3203F, -41.9440002F), new Vector2(11656.6895F, -39.4679985F), new Vector2(11644.4902F, -39.4679985F)); + builder.AddLine(new Vector2(11594.7256F, -39.4679985F)); + builder.AddLine(new Vector2(11594.7256F, 0F)); + builder.AddLine(new Vector2(11645.6338F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0199() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(11500.3457F, 0F)); + builder.AddLine(new Vector2(11500.3457F, -201.916F)); + builder.AddLine(new Vector2(11454.8711F, -201.916F)); + builder.AddLine(new Vector2(11454.8711F, -40.3260002F)); + builder.AddLine(new Vector2(11466.8838F, 0F)); + builder.AddLine(new Vector2(11500.3457F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(11478.3232F, -49.4780006F)); + builder.AddLine(new Vector2(11359.3477F, -201.916F)); + builder.AddLine(new Vector2(11348.1934F, -152.438004F)); + builder.AddLine(new Vector2(11466.8838F, 0F)); + builder.AddLine(new Vector2(11478.3232F, -49.4780006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(11372.7891F, 0F)); + builder.AddLine(new Vector2(11372.7891F, -161.589996F)); + builder.AddLine(new Vector2(11359.3477F, -201.916F)); + builder.AddLine(new Vector2(11327.6016F, -201.916F)); + builder.AddLine(new Vector2(11327.6016F, 0F)); + builder.AddLine(new Vector2(11372.7891F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0200() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(11263.8232F, 0F)); + builder.AddLine(new Vector2(11263.8232F, -201.916F)); + builder.AddLine(new Vector2(11218.6357F, -201.916F)); + builder.AddLine(new Vector2(11218.6357F, 0F)); + builder.AddLine(new Vector2(11263.8232F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0201() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(11168.5859F, -162.447998F)); + builder.AddLine(new Vector2(11168.5859F, -201.916F)); + builder.AddLine(new Vector2(10996.9854F, -201.916F)); + builder.AddLine(new Vector2(10996.9854F, -162.447998F)); + builder.AddLine(new Vector2(11168.5859F, -162.447998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(11105.666F, 0F)); + builder.AddLine(new Vector2(11105.666F, -199.341995F)); + builder.AddLine(new Vector2(11060.1914F, -199.341995F)); + builder.AddLine(new Vector2(11060.1914F, 0F)); + builder.AddLine(new Vector2(11105.666F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0202() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(10959.5195F, -163.020004F)); + builder.AddLine(new Vector2(10959.5195F, -201.916F)); + builder.AddLine(new Vector2(10850.2676F, -201.916F)); + builder.AddLine(new Vector2(10850.2676F, -163.020004F)); + builder.AddLine(new Vector2(10959.5195F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(10950.9404F, -84.0839996F)); + builder.AddLine(new Vector2(10950.9404F, -122.122002F)); + builder.AddLine(new Vector2(10850.2676F, -122.122002F)); + builder.AddLine(new Vector2(10850.2676F, -84.0839996F)); + builder.AddLine(new Vector2(10950.9404F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(10961.2363F, 0F)); + builder.AddLine(new Vector2(10961.2363F, -38.8959999F)); + builder.AddLine(new Vector2(10850.2676F, -38.8959999F)); + builder.AddLine(new Vector2(10850.2676F, 0F)); + builder.AddLine(new Vector2(10961.2363F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(10860.8496F, 0F)); + builder.AddLine(new Vector2(10860.8496F, -201.916F)); + builder.AddLine(new Vector2(10815.6621F, -201.916F)); + builder.AddLine(new Vector2(10815.6621F, 0F)); + builder.AddLine(new Vector2(10860.8496F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0203() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(10741.874F, -13.2989998F)); + builder.AddCubicBezier(new Vector2(10755.6016F, -24.2609997F), new Vector2(10762.4658F, -39.3699989F), new Vector2(10762.4658F, -58.6300011F)); + builder.AddCubicBezier(new Vector2(10762.4658F, -69.3059998F), new Vector2(10760.7002F, -78.1719971F), new Vector2(10757.1748F, -85.2279968F)); + builder.AddCubicBezier(new Vector2(10753.6445F, -92.2799988F), new Vector2(10749.1172F, -98.1920013F), new Vector2(10743.5898F, -102.959999F)); + builder.AddCubicBezier(new Vector2(10738.0576F, -107.723999F), new Vector2(10731.9092F, -111.584999F), new Vector2(10725.1426F, -114.542999F)); + builder.AddCubicBezier(new Vector2(10718.373F, -117.497002F), new Vector2(10711.6025F, -120.120003F), new Vector2(10704.8369F, -122.407997F)); + builder.AddCubicBezier(new Vector2(10698.0664F, -124.695999F), new Vector2(10691.8682F, -126.984001F), new Vector2(10686.2471F, -129.272003F)); + builder.AddCubicBezier(new Vector2(10680.6201F, -131.559998F), new Vector2(10676.0938F, -134.276993F), new Vector2(10672.6621F, -137.423004F)); + builder.AddCubicBezier(new Vector2(10669.2285F, -140.569F), new Vector2(10667.5137F, -144.617996F), new Vector2(10667.5137F, -149.578003F)); + builder.AddCubicBezier(new Vector2(10667.5137F, -155.106003F), new Vector2(10669.8018F, -159.347F), new Vector2(10674.3779F, -162.304993F)); + builder.AddCubicBezier(new Vector2(10678.9541F, -165.259003F), new Vector2(10685.1484F, -166.738007F), new Vector2(10692.9678F, -166.738007F)); + builder.AddCubicBezier(new Vector2(10700.5918F, -166.738007F), new Vector2(10707.5049F, -165.210007F), new Vector2(10713.7031F, -162.162003F)); + builder.AddCubicBezier(new Vector2(10719.8965F, -159.110001F), new Vector2(10726.0449F, -154.440002F), new Vector2(10732.1494F, -148.147995F)); + builder.AddLine(new Vector2(10761.6074F, -177.606003F)); + builder.AddCubicBezier(new Vector2(10753.9785F, -185.994003F), new Vector2(10744.3496F, -192.666F), new Vector2(10732.7217F, -197.626007F)); + builder.AddCubicBezier(new Vector2(10721.0898F, -202.582001F), new Vector2(10708.126F, -205.061996F), new Vector2(10693.8262F, -205.061996F)); + builder.AddCubicBezier(new Vector2(10680.0967F, -205.061996F), new Vector2(10667.7998F, -202.725006F), new Vector2(10656.9316F, -198.054993F)); + builder.AddCubicBezier(new Vector2(10646.0645F, -193.380997F), new Vector2(10637.627F, -186.565994F), new Vector2(10631.6211F, -177.606003F)); + builder.AddCubicBezier(new Vector2(10625.6152F, -168.641998F), new Vector2(10622.6113F, -157.871994F), new Vector2(10622.6113F, -145.287994F)); + builder.AddCubicBezier(new Vector2(10622.6113F, -135.179993F), new Vector2(10624.3281F, -126.697998F), new Vector2(10627.7598F, -119.834F)); + builder.AddCubicBezier(new Vector2(10631.1924F, -112.970001F), new Vector2(10635.7188F, -107.344002F), new Vector2(10641.3447F, -102.959999F)); + builder.AddCubicBezier(new Vector2(10646.9668F, -98.5719986F), new Vector2(10653.165F, -94.8539963F), new Vector2(10659.9346F, -91.8059998F)); + builder.AddCubicBezier(new Vector2(10666.7012F, -88.7539978F), new Vector2(10673.4219F, -86.1309967F), new Vector2(10680.0977F, -83.9410019F)); + builder.AddCubicBezier(new Vector2(10686.7695F, -81.7470016F), new Vector2(10692.9678F, -79.4100037F), new Vector2(10698.6885F, -76.9339981F)); + builder.AddCubicBezier(new Vector2(10704.4092F, -74.4540024F), new Vector2(10708.9336F, -71.5F), new Vector2(10712.2725F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(10715.6064F, -64.6360016F), new Vector2(10717.2773F, -60.2480011F), new Vector2(10717.2773F, -54.9119987F)); + builder.AddCubicBezier(new Vector2(10717.2773F, -48.8079987F), new Vector2(10714.6543F, -43.9949989F), new Vector2(10709.4131F, -40.4690018F)); + builder.AddCubicBezier(new Vector2(10704.166F, -36.9389992F), new Vector2(10696.873F, -35.1780014F), new Vector2(10687.5342F, -35.1780014F)); + builder.AddCubicBezier(new Vector2(10677.0459F, -35.1780014F), new Vector2(10667.8447F, -37.2249985F), new Vector2(10659.9346F, -41.3269997F)); + builder.AddCubicBezier(new Vector2(10652.0215F, -45.4249992F), new Vector2(10644.8213F, -51.1940002F), new Vector2(10638.3418F, -58.6300011F)); + builder.AddLine(new Vector2(10609.1699F, -29.4580002F)); + builder.AddCubicBezier(new Vector2(10618.8936F, -18.3980007F), new Vector2(10629.7129F, -10.198F), new Vector2(10641.6309F, -4.86199999F)); + builder.AddCubicBezier(new Vector2(10653.5449F, 0.474000007F), new Vector2(10667.8936F, 3.14599991F), new Vector2(10684.6738F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(10709.0771F, 3.14599991F), new Vector2(10728.1445F, -2.33299994F), new Vector2(10741.874F, -13.2989998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0204() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(10571.7031F, -163.020004F)); + builder.AddLine(new Vector2(10571.7031F, -201.916F)); + builder.AddLine(new Vector2(10462.4512F, -201.916F)); + builder.AddLine(new Vector2(10462.4512F, -163.020004F)); + builder.AddLine(new Vector2(10571.7031F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(10563.124F, -84.0839996F)); + builder.AddLine(new Vector2(10563.124F, -122.122002F)); + builder.AddLine(new Vector2(10462.4512F, -122.122002F)); + builder.AddLine(new Vector2(10462.4512F, -84.0839996F)); + builder.AddLine(new Vector2(10563.124F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(10573.4199F, 0F)); + builder.AddLine(new Vector2(10573.4199F, -38.8959999F)); + builder.AddLine(new Vector2(10462.4512F, -38.8959999F)); + builder.AddLine(new Vector2(10462.4512F, 0F)); + builder.AddLine(new Vector2(10573.4199F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(10473.0332F, 0F)); + builder.AddLine(new Vector2(10473.0332F, -201.916F)); + builder.AddLine(new Vector2(10427.8457F, -201.916F)); + builder.AddLine(new Vector2(10427.8457F, 0F)); + builder.AddLine(new Vector2(10473.0332F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0205() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(10383.8018F, 0F)); + builder.AddLine(new Vector2(10308.8701F, -98.3840027F)); + builder.AddLine(new Vector2(10267.4004F, -86.9440002F)); + builder.AddLine(new Vector2(10330.3203F, 0F)); + builder.AddLine(new Vector2(10383.8018F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(10265.6836F, 0F)); + builder.AddLine(new Vector2(10265.6836F, -201.916F)); + builder.AddLine(new Vector2(10220.4961F, -201.916F)); + builder.AddLine(new Vector2(10220.4961F, 0F)); + builder.AddLine(new Vector2(10265.6836F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(10301.7197F, -82.9400024F)); + builder.AddCubicBezier(new Vector2(10315.6357F, -82.9400024F), new Vector2(10327.7461F, -85.4160004F), new Vector2(10338.042F, -90.3759995F)); + builder.AddCubicBezier(new Vector2(10348.3379F, -95.3320007F), new Vector2(10356.3447F, -102.245003F), new Vector2(10362.0664F, -111.111F)); + builder.AddCubicBezier(new Vector2(10367.7861F, -119.976997F), new Vector2(10370.6465F, -130.509995F), new Vector2(10370.6465F, -142.714005F)); + builder.AddCubicBezier(new Vector2(10370.6465F, -154.154007F), new Vector2(10367.8311F, -164.352005F), new Vector2(10362.209F, -173.315994F)); + builder.AddCubicBezier(new Vector2(10356.583F, -182.276001F), new Vector2(10348.7178F, -189.283005F), new Vector2(10338.6143F, -194.337006F)); + builder.AddCubicBezier(new Vector2(10328.5059F, -199.386993F), new Vector2(10316.6846F, -201.916F), new Vector2(10303.1504F, -201.916F)); + builder.AddLine(new Vector2(10255.1016F, -201.916F)); + builder.AddLine(new Vector2(10255.1016F, -166.738007F)); + builder.AddLine(new Vector2(10298.002F, -166.738007F)); + builder.AddCubicBezier(new Vector2(10306.7695F, -166.738007F), new Vector2(10313.5889F, -164.352005F), new Vector2(10318.4512F, -159.587997F)); + builder.AddCubicBezier(new Vector2(10323.3135F, -154.820007F), new Vector2(10325.7441F, -148.813995F), new Vector2(10325.7441F, -141.570007F)); + builder.AddCubicBezier(new Vector2(10325.7441F, -133.942001F), new Vector2(10323.2637F, -127.887001F), new Vector2(10318.3076F, -123.408997F)); + builder.AddCubicBezier(new Vector2(10313.3477F, -118.927002F), new Vector2(10306.4844F, -116.688004F), new Vector2(10297.7158F, -116.688004F)); + builder.AddLine(new Vector2(10255.1016F, -116.688004F)); + builder.AddLine(new Vector2(10255.1016F, -82.9400024F)); + builder.AddLine(new Vector2(10301.7197F, -82.9400024F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0206() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(10166.1562F, -117.260002F)); + builder.AddLine(new Vector2(10166.1562F, -148.720001F)); + builder.AddLine(new Vector2(10006.2822F, -148.720001F)); + builder.AddLine(new Vector2(10006.2822F, -117.260002F)); + builder.AddLine(new Vector2(10166.1562F, -117.260002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(10049.7539F, 0F)); + builder.AddLine(new Vector2(10082.9297F, -201.916F)); + builder.AddLine(new Vector2(10047.1797F, -201.916F)); + builder.AddLine(new Vector2(10013.7178F, 0F)); + builder.AddLine(new Vector2(10049.7539F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(10156.7178F, -57.4860001F)); + builder.AddLine(new Vector2(10156.7178F, -88.9459991F)); + builder.AddLine(new Vector2(9996.55762F, -88.9459991F)); + builder.AddLine(new Vector2(9996.55762F, -57.4860001F)); + builder.AddLine(new Vector2(10156.7178F, -57.4860001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(10113.8184F, 0F)); + builder.AddLine(new Vector2(10147.5664F, -201.916F)); + builder.AddLine(new Vector2(10111.5303F, -201.916F)); + builder.AddLine(new Vector2(10078.3535F, 0F)); + builder.AddLine(new Vector2(10113.8184F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0207() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(9842.4043F, 0F)); + builder.AddLine(new Vector2(9842.4043F, -201.916F)); + builder.AddLine(new Vector2(9797.78809F, -201.916F)); + builder.AddLine(new Vector2(9797.78809F, 0F)); + builder.AddLine(new Vector2(9842.4043F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(9884.16016F, 0F)); + builder.AddCubicBezier(new Vector2(9898.45996F, 0F), new Vector2(9910.70898F, -2.61899996F), new Vector2(9920.91113F, -7.86499977F)); + builder.AddCubicBezier(new Vector2(9931.1084F, -13.1070004F), new Vector2(9938.92773F, -20.1140003F), new Vector2(9944.36328F, -28.8859997F)); + builder.AddCubicBezier(new Vector2(9949.79688F, -37.6539993F), new Vector2(9952.51367F, -47.5699997F), new Vector2(9952.51367F, -58.6300011F)); + builder.AddCubicBezier(new Vector2(9952.51367F, -73.1179962F), new Vector2(9947.93652F, -85.3219986F), new Vector2(9938.78613F, -95.237999F)); + builder.AddCubicBezier(new Vector2(9929.63379F, -105.150002F), new Vector2(9916.47656F, -111.727997F), new Vector2(9899.31836F, -114.972F)); + builder.AddLine(new Vector2(9898.17383F, -99.814003F)); + builder.AddCubicBezier(new Vector2(9913.80566F, -103.054001F), new Vector2(9925.62988F, -108.917F), new Vector2(9933.6377F, -117.403F)); + builder.AddCubicBezier(new Vector2(9941.64648F, -125.885002F), new Vector2(9945.65039F, -136.516006F), new Vector2(9945.65039F, -149.292007F)); + builder.AddCubicBezier(new Vector2(9945.65039F, -158.824005F), new Vector2(9943.31348F, -167.595993F), new Vector2(9938.64258F, -175.604004F)); + builder.AddCubicBezier(new Vector2(9933.96875F, -183.612F), new Vector2(9927.05859F, -189.998001F), new Vector2(9917.9082F, -194.766006F)); + builder.AddCubicBezier(new Vector2(9908.75586F, -199.529999F), new Vector2(9897.69629F, -201.916F), new Vector2(9884.73242F, -201.916F)); + builder.AddLine(new Vector2(9832.39355F, -201.916F)); + builder.AddLine(new Vector2(9832.39355F, -166.738007F)); + builder.AddLine(new Vector2(9876.15234F, -166.738007F)); + builder.AddCubicBezier(new Vector2(9883.39453F, -166.738007F), new Vector2(9889.30762F, -164.878998F), new Vector2(9893.88379F, -161.160995F)); + builder.AddCubicBezier(new Vector2(9898.45996F, -157.442993F), new Vector2(9900.74805F, -151.960007F), new Vector2(9900.74805F, -144.716003F)); + builder.AddCubicBezier(new Vector2(9900.74805F, -137.087997F), new Vector2(9898.45996F, -131.462006F), new Vector2(9893.88379F, -127.842003F)); + builder.AddCubicBezier(new Vector2(9889.30762F, -124.218002F), new Vector2(9883.39453F, -122.407997F), new Vector2(9876.15234F, -122.407997F)); + builder.AddLine(new Vector2(9832.39355F, -122.407997F)); + builder.AddLine(new Vector2(9832.39355F, -88.0879974F)); + builder.AddLine(new Vector2(9879.87012F, -88.0879974F)); + builder.AddCubicBezier(new Vector2(9885.58984F, -88.0879974F), new Vector2(9890.49707F, -86.9440002F), new Vector2(9894.59863F, -84.6559982F)); + builder.AddCubicBezier(new Vector2(9898.69824F, -82.3679962F), new Vector2(9901.8916F, -79.2220001F), new Vector2(9904.17969F, -75.2180023F)); + builder.AddCubicBezier(new Vector2(9906.46777F, -71.2139969F), new Vector2(9907.6123F, -66.7320023F), new Vector2(9907.6123F, -61.776001F)); + builder.AddCubicBezier(new Vector2(9907.6123F, -54.1479988F), new Vector2(9905.13184F, -47.8069992F), new Vector2(9900.17578F, -42.757F)); + builder.AddCubicBezier(new Vector2(9895.21582F, -37.7029991F), new Vector2(9888.4502F, -35.1780014F), new Vector2(9879.87012F, -35.1780014F)); + builder.AddLine(new Vector2(9832.39355F, -35.1780014F)); + builder.AddLine(new Vector2(9832.39355F, 0F)); + builder.AddLine(new Vector2(9884.16016F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0208() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(9707.12598F, -36.3219986F)); + builder.AddLine(new Vector2(9707.12598F, -72.9300003F)); + builder.AddLine(new Vector2(9597.30176F, -72.9300003F)); + builder.AddLine(new Vector2(9597.30176F, -36.3219986F)); + builder.AddLine(new Vector2(9707.12598F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(9598.16016F, 0F)); + builder.AddLine(new Vector2(9659.93555F, -167.309998F)); + builder.AddLine(new Vector2(9643.34766F, -167.309998F)); + builder.AddLine(new Vector2(9703.69434F, 0F)); + builder.AddLine(new Vector2(9751.45605F, 0F)); + builder.AddLine(new Vector2(9672.23438F, -201.916F)); + builder.AddLine(new Vector2(9631.33594F, -201.916F)); + builder.AddLine(new Vector2(9551.54199F, 0F)); + builder.AddLine(new Vector2(9598.16016F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0209() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(9488.9082F, -4.43300009F)); + builder.AddCubicBezier(new Vector2(9501.49219F, -9.4829998F), new Vector2(9512.54785F, -16.5879993F), new Vector2(9522.08398F, -25.7399998F)); + builder.AddLine(new Vector2(9491.48145F, -56.3419991F)); + builder.AddCubicBezier(new Vector2(9486.14062F, -50.4300003F), new Vector2(9479.65723F, -45.9029999F), new Vector2(9472.03418F, -42.757F)); + builder.AddCubicBezier(new Vector2(9464.40527F, -39.6110001F), new Vector2(9455.44531F, -38.0379982F), new Vector2(9445.14941F, -38.0379982F)); + builder.AddCubicBezier(new Vector2(9436.37793F, -38.0379982F), new Vector2(9428.36914F, -39.5130005F), new Vector2(9421.12598F, -42.4710007F)); + builder.AddCubicBezier(new Vector2(9413.87695F, -45.4249992F), new Vector2(9407.58496F, -49.7150002F), new Vector2(9402.25F, -55.3409996F)); + builder.AddCubicBezier(new Vector2(9396.90918F, -60.9630013F), new Vector2(9392.81055F, -67.6389999F), new Vector2(9389.95215F, -75.3610001F)); + builder.AddCubicBezier(new Vector2(9387.0918F, -83.0830002F), new Vector2(9385.66211F, -91.7080002F), new Vector2(9385.66211F, -101.244003F)); + builder.AddCubicBezier(new Vector2(9385.66211F, -110.396004F), new Vector2(9387.0918F, -118.877998F), new Vector2(9389.95215F, -126.697998F)); + builder.AddCubicBezier(new Vector2(9392.81055F, -134.514008F), new Vector2(9396.90918F, -141.186005F), new Vector2(9402.25F, -146.718002F)); + builder.AddCubicBezier(new Vector2(9407.58496F, -152.246002F), new Vector2(9413.87695F, -156.487F), new Vector2(9421.12598F, -159.445007F)); + builder.AddCubicBezier(new Vector2(9428.36914F, -162.399002F), new Vector2(9436.37793F, -163.878006F), new Vector2(9445.14941F, -163.878006F)); + builder.AddCubicBezier(new Vector2(9455.06055F, -163.878006F), new Vector2(9463.78418F, -162.255997F), new Vector2(9471.31836F, -159.016006F)); + builder.AddCubicBezier(new Vector2(9478.84766F, -155.772003F), new Vector2(9485.19043F, -151.294006F), new Vector2(9490.33789F, -145.574005F)); + builder.AddLine(new Vector2(9520.65332F, -176.175995F)); + builder.AddCubicBezier(new Vector2(9511.30859F, -185.136002F), new Vector2(9500.3916F, -192.192001F), new Vector2(9487.90723F, -197.339996F)); + builder.AddCubicBezier(new Vector2(9475.41699F, -202.488007F), new Vector2(9461.16602F, -205.061996F), new Vector2(9445.14941F, -205.061996F)); + builder.AddCubicBezier(new Vector2(9429.89258F, -205.061996F), new Vector2(9415.87891F, -202.438995F), new Vector2(9403.10742F, -197.197006F)); + builder.AddCubicBezier(new Vector2(9390.33203F, -191.951004F), new Vector2(9379.12891F, -184.658005F), new Vector2(9369.50293F, -175.317993F)); + builder.AddCubicBezier(new Vector2(9359.87305F, -165.973999F), new Vector2(9352.3877F, -154.962997F), new Vector2(9347.05176F, -142.285004F)); + builder.AddCubicBezier(new Vector2(9341.71191F, -129.602997F), new Vector2(9339.04395F, -115.924004F), new Vector2(9339.04395F, -101.244003F)); + builder.AddCubicBezier(new Vector2(9339.04395F, -86.5599976F), new Vector2(9341.71191F, -72.8809967F), new Vector2(9347.05176F, -60.2029991F)); + builder.AddCubicBezier(new Vector2(9352.3877F, -47.5209999F), new Vector2(9359.87305F, -36.4160004F), new Vector2(9369.50293F, -26.8840008F)); + builder.AddCubicBezier(new Vector2(9379.12891F, -17.3479996F), new Vector2(9390.38086F, -9.96100044F), new Vector2(9403.25098F, -4.71899986F)); + builder.AddCubicBezier(new Vector2(9416.12109F, 0.523000002F), new Vector2(9430.08594F, 3.14599991F), new Vector2(9445.14941F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(9461.7373F, 3.14599991F), new Vector2(9476.32422F, 0.616999984F), new Vector2(9488.9082F, -4.43300009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0210() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(9269.5459F, -36.3219986F)); + builder.AddLine(new Vector2(9269.5459F, -72.9300003F)); + builder.AddLine(new Vector2(9159.72168F, -72.9300003F)); + builder.AddLine(new Vector2(9159.72168F, -36.3219986F)); + builder.AddLine(new Vector2(9269.5459F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(9160.58008F, 0F)); + builder.AddLine(new Vector2(9222.35547F, -167.309998F)); + builder.AddLine(new Vector2(9205.76758F, -167.309998F)); + builder.AddLine(new Vector2(9266.11426F, 0F)); + builder.AddLine(new Vector2(9313.87598F, 0F)); + builder.AddLine(new Vector2(9234.6543F, -201.916F)); + builder.AddLine(new Vector2(9193.75586F, -201.916F)); + builder.AddLine(new Vector2(9113.96191F, 0F)); + builder.AddLine(new Vector2(9160.58008F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0211() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(9074.49414F, -117.260002F)); + builder.AddLine(new Vector2(9074.49414F, -148.720001F)); + builder.AddLine(new Vector2(8914.62012F, -148.720001F)); + builder.AddLine(new Vector2(8914.62012F, -117.260002F)); + builder.AddLine(new Vector2(9074.49414F, -117.260002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(8958.0918F, 0F)); + builder.AddLine(new Vector2(8991.26758F, -201.916F)); + builder.AddLine(new Vector2(8955.51758F, -201.916F)); + builder.AddLine(new Vector2(8922.05566F, 0F)); + builder.AddLine(new Vector2(8958.0918F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(9065.05566F, -57.4860001F)); + builder.AddLine(new Vector2(9065.05566F, -88.9459991F)); + builder.AddLine(new Vector2(8904.89648F, -88.9459991F)); + builder.AddLine(new Vector2(8904.89648F, -57.4860001F)); + builder.AddLine(new Vector2(9065.05566F, -57.4860001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(9022.15625F, 0F)); + builder.AddLine(new Vector2(9055.9043F, -201.916F)); + builder.AddLine(new Vector2(9019.86816F, -201.916F)); + builder.AddLine(new Vector2(8986.69141F, 0F)); + builder.AddLine(new Vector2(9022.15625F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0212() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(8861.13867F, 0F)); + builder.AddLine(new Vector2(8861.13867F, -38.3240013F)); + builder.AddLine(new Vector2(8753.60254F, -38.3240013F)); + builder.AddLine(new Vector2(8715.56445F, -25.1679993F)); + builder.AddLine(new Vector2(8715.56445F, 0F)); + builder.AddLine(new Vector2(8861.13867F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(8771.04785F, -24.5960007F)); + builder.AddLine(new Vector2(8825.10254F, -78.0780029F)); + builder.AddCubicBezier(new Vector2(8832.91797F, -85.8939972F), new Vector2(8839.16113F, -93.0439987F), new Vector2(8843.83496F, -99.5279999F)); + builder.AddCubicBezier(new Vector2(8848.50488F, -106.008003F), new Vector2(8851.84277F, -112.635002F), new Vector2(8853.84473F, -119.404999F)); + builder.AddCubicBezier(new Vector2(8855.84766F, -126.170998F), new Vector2(8856.84863F, -133.656006F), new Vector2(8856.84863F, -141.856003F)); + builder.AddCubicBezier(new Vector2(8856.84863F, -154.628006F), new Vector2(8854.08203F, -165.781998F), new Vector2(8848.55469F, -175.317993F)); + builder.AddCubicBezier(new Vector2(8843.02246F, -184.850006F), new Vector2(8835.1123F, -192.192001F), new Vector2(8824.81641F, -197.339996F)); + builder.AddCubicBezier(new Vector2(8814.51953F, -202.488007F), new Vector2(8802.41016F, -205.061996F), new Vector2(8788.49414F, -205.061996F)); + builder.AddCubicBezier(new Vector2(8772.28613F, -205.061996F), new Vector2(8758.03516F, -201.630005F), new Vector2(8745.7373F, -194.766006F)); + builder.AddCubicBezier(new Vector2(8733.43945F, -187.901993F), new Vector2(8723.18652F, -177.699997F), new Vector2(8714.99219F, -164.164001F)); + builder.AddLine(new Vector2(8745.30859F, -137.852005F)); + builder.AddCubicBezier(new Vector2(8751.21582F, -147.576004F), new Vector2(8757.36523F, -154.582993F), new Vector2(8763.75488F, -158.873001F)); + builder.AddCubicBezier(new Vector2(8770.14062F, -163.162994F), new Vector2(8777.33984F, -165.307999F), new Vector2(8785.34863F, -165.307999F)); + builder.AddCubicBezier(new Vector2(8793.35742F, -165.307999F), new Vector2(8799.88379F, -163.065002F), new Vector2(8804.93945F, -158.587006F)); + builder.AddCubicBezier(new Vector2(8809.98926F, -154.104996F), new Vector2(8812.51855F, -147.955994F), new Vector2(8812.51855F, -140.139999F)); + builder.AddCubicBezier(new Vector2(8812.51855F, -136.707993F), new Vector2(8811.89746F, -133.227005F), new Vector2(8810.65918F, -129.701004F)); + builder.AddCubicBezier(new Vector2(8809.41699F, -126.170998F), new Vector2(8807.32129F, -122.453003F), new Vector2(8804.36719F, -118.546997F)); + builder.AddCubicBezier(new Vector2(8801.40918F, -114.637001F), new Vector2(8797.64648F, -110.204002F), new Vector2(8793.07031F, -105.248001F)); + builder.AddLine(new Vector2(8715.56445F, -25.1679993F)); + builder.AddLine(new Vector2(8771.04785F, -24.5960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0213() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(8661.7959F, -163.591995F)); + builder.AddLine(new Vector2(8661.7959F, -201.916F)); + builder.AddLine(new Vector2(8580.85742F, -201.916F)); + builder.AddLine(new Vector2(8580.85742F, -163.591995F)); + builder.AddLine(new Vector2(8661.7959F, -163.591995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(8664.65625F, 0F)); + builder.AddLine(new Vector2(8664.65625F, -201.916F)); + builder.AddLine(new Vector2(8619.75391F, -201.916F)); + builder.AddLine(new Vector2(8619.75391F, 0F)); + builder.AddLine(new Vector2(8664.65625F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0214() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(8502.20801F, -163.591995F)); + builder.AddLine(new Vector2(8537.67188F, -176.748001F)); + builder.AddLine(new Vector2(8537.67188F, -201.916F)); + builder.AddLine(new Vector2(8407.25586F, -201.916F)); + builder.AddLine(new Vector2(8407.25586F, -163.591995F)); + builder.AddLine(new Vector2(8502.20801F, -163.591995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(8486.76367F, -118.975998F)); + builder.AddLine(new Vector2(8537.67188F, -176.748001F)); + builder.AddLine(new Vector2(8487.0498F, -176.462006F)); + builder.AddLine(new Vector2(8437.85742F, -119.262001F)); + builder.AddLine(new Vector2(8437.85742F, -93.8079987F)); + builder.AddLine(new Vector2(8486.76367F, -118.975998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(8504.20996F, -5.57700014F)); + builder.AddCubicBezier(new Vector2(8516.0293F, -11.3909998F), new Vector2(8525.18164F, -19.3990002F), new Vector2(8531.66602F, -29.6009998F)); + builder.AddCubicBezier(new Vector2(8538.14453F, -39.7989998F), new Vector2(8541.38965F, -51.6679993F), new Vector2(8541.38965F, -65.2080002F)); + builder.AddCubicBezier(new Vector2(8541.38965F, -77.2200012F), new Vector2(8539.00391F, -87.6589966F), new Vector2(8534.24023F, -96.5250015F)); + builder.AddCubicBezier(new Vector2(8529.4707F, -105.390999F), new Vector2(8522.94238F, -112.254997F), new Vector2(8514.64844F, -117.116997F)); + builder.AddCubicBezier(new Vector2(8506.35352F, -121.978996F), new Vector2(8497.05957F, -124.410004F), new Vector2(8486.76367F, -124.410004F)); + builder.AddCubicBezier(new Vector2(8482.56836F, -124.410004F), new Vector2(8478.08594F, -123.883003F), new Vector2(8473.32227F, -122.836998F)); + builder.AddCubicBezier(new Vector2(8468.55273F, -121.787003F), new Vector2(8463.40527F, -120.5F), new Vector2(8457.87793F, -118.975998F)); + builder.AddLine(new Vector2(8437.85742F, -93.8079987F)); + builder.AddCubicBezier(new Vector2(8440.52539F, -94.7600021F), new Vector2(8443.86426F, -95.4749985F), new Vector2(8447.86816F, -95.9530029F)); + builder.AddCubicBezier(new Vector2(8451.87207F, -96.427002F), new Vector2(8455.68359F, -96.6679993F), new Vector2(8459.30762F, -96.6679993F)); + builder.AddCubicBezier(new Vector2(8466.93164F, -96.6679993F), new Vector2(8473.55859F, -95.4749985F), new Vector2(8479.18457F, -93.0930023F)); + builder.AddCubicBezier(new Vector2(8484.80664F, -90.7070007F), new Vector2(8489.14453F, -87.3239975F), new Vector2(8492.19824F, -82.9400024F)); + builder.AddCubicBezier(new Vector2(8495.24512F, -78.552002F), new Vector2(8496.77344F, -73.1179962F), new Vector2(8496.77344F, -66.6380005F)); + builder.AddCubicBezier(new Vector2(8496.77344F, -60.3460007F), new Vector2(8495.24512F, -54.9570007F), new Vector2(8492.19824F, -50.4790001F)); + builder.AddCubicBezier(new Vector2(8489.14453F, -45.9970016F), new Vector2(8485.04688F, -42.5159988F), new Vector2(8479.89941F, -40.0400009F)); + builder.AddCubicBezier(new Vector2(8474.75195F, -37.5600014F), new Vector2(8468.74609F, -36.3219986F), new Vector2(8461.88184F, -36.3219986F)); + builder.AddCubicBezier(new Vector2(8454.25391F, -36.3219986F), new Vector2(8446.91113F, -37.9399986F), new Vector2(8439.85938F, -41.1839981F)); + builder.AddCubicBezier(new Vector2(8432.80273F, -44.4239998F), new Vector2(8427.46387F, -48.7140007F), new Vector2(8423.84375F, -54.0540009F)); + builder.AddLine(new Vector2(8394.67188F, -24.882F)); + builder.AddCubicBezier(new Vector2(8402.67969F, -15.7299995F), new Vector2(8412.49805F, -8.76799965F), new Vector2(8424.12988F, -4.00400019F)); + builder.AddCubicBezier(new Vector2(8435.75781F, 0.75999999F), new Vector2(8448.62793F, 3.14599991F), new Vector2(8462.74023F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(8478.56348F, 3.14599991F), new Vector2(8492.38574F, 0.237000003F), new Vector2(8504.20996F, -5.57700014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0215() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(8343.47754F, -163.591995F)); + builder.AddLine(new Vector2(8343.47754F, -201.916F)); + builder.AddLine(new Vector2(8262.53906F, -201.916F)); + builder.AddLine(new Vector2(8262.53906F, -163.591995F)); + builder.AddLine(new Vector2(8343.47754F, -163.591995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(8346.33789F, 0F)); + builder.AddLine(new Vector2(8346.33789F, -201.916F)); + builder.AddLine(new Vector2(8301.43555F, -201.916F)); + builder.AddLine(new Vector2(8301.43555F, 0F)); + builder.AddLine(new Vector2(8346.33789F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0216() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(8221.92773F, -117.260002F)); + builder.AddLine(new Vector2(8221.92773F, -148.720001F)); + builder.AddLine(new Vector2(8062.0542F, -148.720001F)); + builder.AddLine(new Vector2(8062.0542F, -117.260002F)); + builder.AddLine(new Vector2(8221.92773F, -117.260002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(8105.5249F, 0F)); + builder.AddLine(new Vector2(8138.70215F, -201.916F)); + builder.AddLine(new Vector2(8102.95215F, -201.916F)); + builder.AddLine(new Vector2(8069.48877F, 0F)); + builder.AddLine(new Vector2(8105.5249F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(8212.48926F, -57.4860001F)); + builder.AddLine(new Vector2(8212.48926F, -88.9459991F)); + builder.AddLine(new Vector2(8052.33008F, -88.9459991F)); + builder.AddLine(new Vector2(8052.33008F, -57.4860001F)); + builder.AddLine(new Vector2(8212.48926F, -57.4860001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(8169.58887F, 0F)); + builder.AddLine(new Vector2(8203.33789F, -201.916F)); + builder.AddLine(new Vector2(8167.30078F, -201.916F)); + builder.AddLine(new Vector2(8134.125F, 0F)); + builder.AddLine(new Vector2(8169.58887F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0217() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(7902.18018F, 0F)); + builder.AddLine(new Vector2(7902.18018F, -201.916F)); + builder.AddLine(new Vector2(7856.99219F, -201.916F)); + builder.AddLine(new Vector2(7856.99219F, 0F)); + builder.AddLine(new Vector2(7902.18018F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(7941.64697F, -73.5019989F)); + builder.AddCubicBezier(new Vector2(7954.41895F, -73.5019989F), new Vector2(7966.00195F, -76.0759964F), new Vector2(7976.396F, -81.223999F)); + builder.AddCubicBezier(new Vector2(7986.78613F, -86.3720016F), new Vector2(7994.98682F, -93.7590027F), new Vector2(8000.99316F, -103.389F)); + builder.AddCubicBezier(new Vector2(8006.99902F, -113.014999F), new Vector2(8010.00098F, -124.410004F), new Vector2(8010.00098F, -137.565994F)); + builder.AddCubicBezier(new Vector2(8010.00098F, -150.910004F), new Vector2(8006.99902F, -162.399002F), new Vector2(8000.99316F, -172.029007F)); + builder.AddCubicBezier(new Vector2(7994.98682F, -181.654999F), new Vector2(7986.78613F, -189.046005F), new Vector2(7976.396F, -194.194F)); + builder.AddCubicBezier(new Vector2(7966.00195F, -199.341995F), new Vector2(7954.41895F, -201.916F), new Vector2(7941.64697F, -201.916F)); + builder.AddLine(new Vector2(7891.59814F, -201.916F)); + builder.AddLine(new Vector2(7891.59814F, -166.738007F)); + builder.AddLine(new Vector2(7935.06982F, -166.738007F)); + builder.AddCubicBezier(new Vector2(7940.59814F, -166.738007F), new Vector2(7945.60205F, -165.639008F), new Vector2(7950.08398F, -163.449005F)); + builder.AddCubicBezier(new Vector2(7954.56201F, -161.255005F), new Vector2(7958.13818F, -157.966003F), new Vector2(7960.81006F, -153.582001F)); + builder.AddCubicBezier(new Vector2(7963.47803F, -149.194F), new Vector2(7964.81299F, -143.858002F), new Vector2(7964.81299F, -137.565994F)); + builder.AddCubicBezier(new Vector2(7964.81299F, -131.462006F), new Vector2(7963.47803F, -126.220001F), new Vector2(7960.81006F, -121.835999F)); + builder.AddCubicBezier(new Vector2(7958.13818F, -117.447998F), new Vector2(7954.56201F, -114.158997F), new Vector2(7950.08398F, -111.969002F)); + builder.AddCubicBezier(new Vector2(7945.60205F, -109.775002F), new Vector2(7940.59814F, -108.68F), new Vector2(7935.06982F, -108.68F)); + builder.AddLine(new Vector2(7891.59814F, -108.68F)); + builder.AddLine(new Vector2(7891.59814F, -73.5019989F)); + builder.AddLine(new Vector2(7941.64697F, -73.5019989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0218() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(7766.33008F, -36.3219986F)); + builder.AddLine(new Vector2(7766.33008F, -72.9300003F)); + builder.AddLine(new Vector2(7656.50488F, -72.9300003F)); + builder.AddLine(new Vector2(7656.50488F, -36.3219986F)); + builder.AddLine(new Vector2(7766.33008F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(7657.36377F, 0F)); + builder.AddLine(new Vector2(7719.14014F, -167.309998F)); + builder.AddLine(new Vector2(7702.55176F, -167.309998F)); + builder.AddLine(new Vector2(7762.89697F, 0F)); + builder.AddLine(new Vector2(7810.66016F, 0F)); + builder.AddLine(new Vector2(7731.43799F, -201.916F)); + builder.AddLine(new Vector2(7690.54004F, -201.916F)); + builder.AddLine(new Vector2(7610.74609F, 0F)); + builder.AddLine(new Vector2(7657.36377F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0219() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(7580.14404F, 0F)); + builder.AddLine(new Vector2(7580.14404F, -39.4679985F)); + builder.AddLine(new Vector2(7480.33008F, -39.4679985F)); + builder.AddLine(new Vector2(7480.33008F, 0F)); + builder.AddLine(new Vector2(7580.14404F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(7490.62598F, 0F)); + builder.AddLine(new Vector2(7490.62598F, -201.916F)); + builder.AddLine(new Vector2(7445.43799F, -201.916F)); + builder.AddLine(new Vector2(7445.43799F, 0F)); + builder.AddLine(new Vector2(7490.62598F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0220() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(7388.23779F, -163.020004F)); + builder.AddLine(new Vector2(7388.23779F, -201.916F)); + builder.AddLine(new Vector2(7278.98584F, -201.916F)); + builder.AddLine(new Vector2(7278.98584F, -163.020004F)); + builder.AddLine(new Vector2(7388.23779F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(7379.6582F, -84.0839996F)); + builder.AddLine(new Vector2(7379.6582F, -122.122002F)); + builder.AddLine(new Vector2(7278.98584F, -122.122002F)); + builder.AddLine(new Vector2(7278.98584F, -84.0839996F)); + builder.AddLine(new Vector2(7379.6582F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(7389.9541F, 0F)); + builder.AddLine(new Vector2(7389.9541F, -38.8959999F)); + builder.AddLine(new Vector2(7278.98584F, -38.8959999F)); + builder.AddLine(new Vector2(7278.98584F, 0F)); + builder.AddLine(new Vector2(7389.9541F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(7289.56787F, 0F)); + builder.AddLine(new Vector2(7289.56787F, -201.916F)); + builder.AddLine(new Vector2(7244.37988F, -201.916F)); + builder.AddLine(new Vector2(7244.37988F, 0F)); + builder.AddLine(new Vector2(7289.56787F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0221() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(7143.27881F, -9.29500008F)); + builder.AddCubicBezier(new Vector2(7158.62402F, -17.7770004F), new Vector2(7170.63623F, -30.316F), new Vector2(7179.31396F, -46.9039993F)); + builder.AddCubicBezier(new Vector2(7187.98779F, -63.4920006F), new Vector2(7192.32812F, -83.7979965F), new Vector2(7192.32812F, -107.821999F)); + builder.AddLine(new Vector2(7192.32812F, -114.400002F)); + builder.AddLine(new Vector2(7086.22217F, -114.400002F)); + builder.AddLine(new Vector2(7086.22217F, -76.3619995F)); + builder.AddLine(new Vector2(7176.31201F, -74.9319992F)); + builder.AddLine(new Vector2(7146.28223F, -94.9520035F)); + builder.AddCubicBezier(new Vector2(7146.28223F, -82.9400024F), new Vector2(7144.03906F, -72.6439972F), new Vector2(7139.56104F, -64.064003F)); + builder.AddCubicBezier(new Vector2(7135.0791F, -55.4840012F), new Vector2(7128.69189F, -48.9510002F), new Vector2(7120.39795F, -44.4729996F)); + builder.AddCubicBezier(new Vector2(7112.104F, -39.9910011F), new Vector2(7102.13916F, -37.7519989F), new Vector2(7090.51221F, -37.7519989F)); + builder.AddCubicBezier(new Vector2(7078.87988F, -37.7519989F), new Vector2(7068.58398F, -40.4690018F), new Vector2(7059.62402F, -45.9029999F)); + builder.AddCubicBezier(new Vector2(7050.66016F, -51.3370018F), new Vector2(7043.60693F, -58.8180008F), new Vector2(7038.45898F, -68.3539963F)); + builder.AddCubicBezier(new Vector2(7033.31104F, -77.8860016F), new Vector2(7030.73779F, -88.8479996F), new Vector2(7030.73779F, -101.244003F)); + builder.AddCubicBezier(new Vector2(7030.73779F, -113.828003F), new Vector2(7033.35693F, -124.838997F), new Vector2(7038.60303F, -134.276993F)); + builder.AddCubicBezier(new Vector2(7043.84521F, -143.714996F), new Vector2(7051.13721F, -151.052994F), new Vector2(7060.48096F, -156.298996F)); + builder.AddCubicBezier(new Vector2(7069.8208F, -161.541F), new Vector2(7080.40381F, -164.164001F), new Vector2(7092.22803F, -164.164001F)); + builder.AddCubicBezier(new Vector2(7103.09619F, -164.164001F), new Vector2(7112.96289F, -162.018997F), new Vector2(7121.8291F, -157.729004F)); + builder.AddCubicBezier(new Vector2(7130.69482F, -153.438995F), new Vector2(7138.27295F, -147.098007F), new Vector2(7144.56494F, -138.710007F)); + builder.AddLine(new Vector2(7175.4541F, -169.598007F)); + builder.AddCubicBezier(new Vector2(7166.10986F, -180.654007F), new Vector2(7154.29004F, -189.376999F), new Vector2(7139.99023F, -195.766998F)); + builder.AddCubicBezier(new Vector2(7125.68994F, -202.153F), new Vector2(7109.86182F, -205.348007F), new Vector2(7092.51416F, -205.348007F)); + builder.AddCubicBezier(new Vector2(7077.4502F, -205.348007F), new Vector2(7063.38721F, -202.675995F), new Vector2(7050.3291F, -197.339996F)); + builder.AddCubicBezier(new Vector2(7037.26709F, -192F), new Vector2(7025.77783F, -184.613007F), new Vector2(7015.86621F, -175.175003F)); + builder.AddCubicBezier(new Vector2(7005.94922F, -165.737F), new Vector2(6998.22803F, -154.770996F), new Vector2(6992.7002F, -142.285004F)); + builder.AddCubicBezier(new Vector2(6987.16797F, -129.794998F), new Vector2(6984.40576F, -116.115997F), new Vector2(6984.40576F, -101.244003F)); + builder.AddCubicBezier(new Vector2(6984.40576F, -86.5599976F), new Vector2(6987.12305F, -72.9300003F), new Vector2(6992.55713F, -60.3460007F)); + builder.AddCubicBezier(new Vector2(6997.99121F, -47.762001F), new Vector2(7005.47119F, -36.7019997F), new Vector2(7015.00684F, -27.1700001F)); + builder.AddCubicBezier(new Vector2(7024.53906F, -17.6340008F), new Vector2(7035.74316F, -10.1529999F), new Vector2(7048.61279F, -4.71899986F)); + builder.AddCubicBezier(new Vector2(7061.48291F, 0.714999974F), new Vector2(7075.354F, 3.43199992F), new Vector2(7090.22607F, 3.43199992F)); + builder.AddCubicBezier(new Vector2(7110.24609F, 3.43199992F), new Vector2(7127.92822F, -0.809000015F), new Vector2(7143.27881F, -9.29500008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0222() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(6914.9082F, -36.3219986F)); + builder.AddLine(new Vector2(6914.9082F, -72.9300003F)); + builder.AddLine(new Vector2(6805.08301F, -72.9300003F)); + builder.AddLine(new Vector2(6805.08301F, -36.3219986F)); + builder.AddLine(new Vector2(6914.9082F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(6805.94189F, 0F)); + builder.AddLine(new Vector2(6867.71777F, -167.309998F)); + builder.AddLine(new Vector2(6851.12988F, -167.309998F)); + builder.AddLine(new Vector2(6911.47607F, 0F)); + builder.AddLine(new Vector2(6959.23779F, 0F)); + builder.AddLine(new Vector2(6880.01611F, -201.916F)); + builder.AddLine(new Vector2(6839.11816F, -201.916F)); + builder.AddLine(new Vector2(6759.32422F, 0F)); + builder.AddLine(new Vector2(6805.94189F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0223() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(6710.41797F, 0F)); + builder.AddLine(new Vector2(6710.41797F, -201.916F)); + builder.AddLine(new Vector2(6665.22998F, -201.916F)); + builder.AddLine(new Vector2(6665.22998F, 0F)); + builder.AddLine(new Vector2(6710.41797F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0224() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(6591.44092F, -13.2989998F)); + builder.AddCubicBezier(new Vector2(6605.16895F, -24.2609997F), new Vector2(6612.03418F, -39.3699989F), new Vector2(6612.03418F, -58.6300011F)); + builder.AddCubicBezier(new Vector2(6612.03418F, -69.3059998F), new Vector2(6610.26904F, -78.1719971F), new Vector2(6606.74316F, -85.2279968F)); + builder.AddCubicBezier(new Vector2(6603.21289F, -92.2799988F), new Vector2(6598.68604F, -98.1920013F), new Vector2(6593.1582F, -102.959999F)); + builder.AddCubicBezier(new Vector2(6587.62598F, -107.723999F), new Vector2(6581.47607F, -111.584999F), new Vector2(6574.70996F, -114.542999F)); + builder.AddCubicBezier(new Vector2(6567.93994F, -117.497002F), new Vector2(6561.1709F, -120.120003F), new Vector2(6554.40479F, -122.407997F)); + builder.AddCubicBezier(new Vector2(6547.63379F, -124.695999F), new Vector2(6541.43604F, -126.984001F), new Vector2(6535.81396F, -129.272003F)); + builder.AddCubicBezier(new Vector2(6530.18799F, -131.559998F), new Vector2(6525.66113F, -134.276993F), new Vector2(6522.229F, -137.423004F)); + builder.AddCubicBezier(new Vector2(6518.79688F, -140.569F), new Vector2(6517.08203F, -144.617996F), new Vector2(6517.08203F, -149.578003F)); + builder.AddCubicBezier(new Vector2(6517.08203F, -155.106003F), new Vector2(6519.37012F, -159.347F), new Vector2(6523.9458F, -162.304993F)); + builder.AddCubicBezier(new Vector2(6528.52197F, -165.259003F), new Vector2(6534.71582F, -166.738007F), new Vector2(6542.53613F, -166.738007F)); + builder.AddCubicBezier(new Vector2(6550.16016F, -166.738007F), new Vector2(6557.07324F, -165.210007F), new Vector2(6563.271F, -162.162003F)); + builder.AddCubicBezier(new Vector2(6569.46484F, -159.110001F), new Vector2(6575.61377F, -154.440002F), new Vector2(6581.71777F, -148.147995F)); + builder.AddLine(new Vector2(6611.17578F, -177.606003F)); + builder.AddCubicBezier(new Vector2(6603.54785F, -185.994003F), new Vector2(6593.91797F, -192.666F), new Vector2(6582.29004F, -197.626007F)); + builder.AddCubicBezier(new Vector2(6570.6582F, -202.582001F), new Vector2(6557.69385F, -205.061996F), new Vector2(6543.39404F, -205.061996F)); + builder.AddCubicBezier(new Vector2(6529.66602F, -205.061996F), new Vector2(6517.36816F, -202.725006F), new Vector2(6506.5F, -198.054993F)); + builder.AddCubicBezier(new Vector2(6495.63184F, -193.380997F), new Vector2(6487.19385F, -186.565994F), new Vector2(6481.18799F, -177.606003F)); + builder.AddCubicBezier(new Vector2(6475.18213F, -168.641998F), new Vector2(6472.18018F, -157.871994F), new Vector2(6472.18018F, -145.287994F)); + builder.AddCubicBezier(new Vector2(6472.18018F, -135.179993F), new Vector2(6473.896F, -126.697998F), new Vector2(6477.32812F, -119.834F)); + builder.AddCubicBezier(new Vector2(6480.75977F, -112.970001F), new Vector2(6485.28711F, -107.344002F), new Vector2(6490.91309F, -102.959999F)); + builder.AddCubicBezier(new Vector2(6496.53516F, -98.5719986F), new Vector2(6502.73193F, -94.8539963F), new Vector2(6509.50195F, -91.8059998F)); + builder.AddCubicBezier(new Vector2(6516.26807F, -88.7539978F), new Vector2(6522.99023F, -86.1309967F), new Vector2(6529.66602F, -83.9410019F)); + builder.AddCubicBezier(new Vector2(6536.33789F, -81.7470016F), new Vector2(6542.53613F, -79.4100037F), new Vector2(6548.25586F, -76.9339981F)); + builder.AddCubicBezier(new Vector2(6553.97607F, -74.4540024F), new Vector2(6558.50293F, -71.5F), new Vector2(6561.84082F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(6565.17383F, -64.6360016F), new Vector2(6566.84619F, -60.2480011F), new Vector2(6566.84619F, -54.9119987F)); + builder.AddCubicBezier(new Vector2(6566.84619F, -48.8079987F), new Vector2(6564.22217F, -43.9949989F), new Vector2(6558.97998F, -40.4690018F)); + builder.AddCubicBezier(new Vector2(6553.73389F, -36.9389992F), new Vector2(6546.44189F, -35.1780014F), new Vector2(6537.10205F, -35.1780014F)); + builder.AddCubicBezier(new Vector2(6526.61377F, -35.1780014F), new Vector2(6517.41211F, -37.2249985F), new Vector2(6509.50195F, -41.3269997F)); + builder.AddCubicBezier(new Vector2(6501.58789F, -45.4249992F), new Vector2(6494.38916F, -51.1940002F), new Vector2(6487.91016F, -58.6300011F)); + builder.AddLine(new Vector2(6458.73779F, -29.4580002F)); + builder.AddCubicBezier(new Vector2(6468.46191F, -18.3980007F), new Vector2(6479.28076F, -10.198F), new Vector2(6491.19922F, -4.86199999F)); + builder.AddCubicBezier(new Vector2(6503.11279F, 0.474000007F), new Vector2(6517.46191F, 3.14599991F), new Vector2(6534.24219F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(6558.646F, 3.14599991F), new Vector2(6577.71289F, -2.33299994F), new Vector2(6591.44092F, -13.2989998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0225() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(6421.27197F, -163.020004F)); + builder.AddLine(new Vector2(6421.27197F, -201.916F)); + builder.AddLine(new Vector2(6312.02002F, -201.916F)); + builder.AddLine(new Vector2(6312.02002F, -163.020004F)); + builder.AddLine(new Vector2(6421.27197F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(6412.69189F, -84.0839996F)); + builder.AddLine(new Vector2(6412.69189F, -122.122002F)); + builder.AddLine(new Vector2(6312.02002F, -122.122002F)); + builder.AddLine(new Vector2(6312.02002F, -84.0839996F)); + builder.AddLine(new Vector2(6412.69189F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(6422.98779F, 0F)); + builder.AddLine(new Vector2(6422.98779F, -38.8959999F)); + builder.AddLine(new Vector2(6312.02002F, -38.8959999F)); + builder.AddLine(new Vector2(6312.02002F, 0F)); + builder.AddLine(new Vector2(6422.98779F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(6322.60205F, 0F)); + builder.AddLine(new Vector2(6322.60205F, -201.916F)); + builder.AddLine(new Vector2(6277.41406F, -201.916F)); + builder.AddLine(new Vector2(6277.41406F, 0F)); + builder.AddLine(new Vector2(6322.60205F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0226() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(6213.9209F, 0F)); + builder.AddLine(new Vector2(6213.9209F, -201.916F)); + builder.AddLine(new Vector2(6168.44824F, -201.916F)); + builder.AddLine(new Vector2(6168.44824F, -40.3260002F)); + builder.AddLine(new Vector2(6180.45898F, 0F)); + builder.AddLine(new Vector2(6213.9209F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(6191.89893F, -49.4780006F)); + builder.AddLine(new Vector2(6072.92383F, -201.916F)); + builder.AddLine(new Vector2(6061.77002F, -152.438004F)); + builder.AddLine(new Vector2(6180.45898F, 0F)); + builder.AddLine(new Vector2(6191.89893F, -49.4780006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(6086.36621F, 0F)); + builder.AddLine(new Vector2(6086.36621F, -161.589996F)); + builder.AddLine(new Vector2(6072.92383F, -201.916F)); + builder.AddLine(new Vector2(6041.17822F, -201.916F)); + builder.AddLine(new Vector2(6041.17822F, 0F)); + builder.AddLine(new Vector2(6086.36621F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0227() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(5856.85107F, -42.1850014F)); + builder.AddCubicBezier(new Vector2(5849.50879F, -45.1389999F), new Vector2(5843.16699F, -49.4290009F), new Vector2(5837.83203F, -55.0550003F)); + builder.AddCubicBezier(new Vector2(5832.49219F, -60.6769981F), new Vector2(5828.39404F, -67.3980026F), new Vector2(5825.53418F, -75.2180023F)); + builder.AddCubicBezier(new Vector2(5822.67383F, -83.0339966F), new Vector2(5821.24414F, -91.7080002F), new Vector2(5821.24414F, -101.244003F)); + builder.AddCubicBezier(new Vector2(5821.24414F, -113.828003F), new Vector2(5823.72021F, -124.838997F), new Vector2(5828.68018F, -134.276993F)); + builder.AddCubicBezier(new Vector2(5833.63623F, -143.714996F), new Vector2(5840.64307F, -151.052994F), new Vector2(5849.70117F, -156.298996F)); + builder.AddCubicBezier(new Vector2(5858.75488F, -161.541F), new Vector2(5869.29199F, -164.164001F), new Vector2(5881.3042F, -164.164001F)); + builder.AddCubicBezier(new Vector2(5890.07178F, -164.164001F), new Vector2(5898.17822F, -162.684998F), new Vector2(5905.61377F, -159.731003F)); + builder.AddCubicBezier(new Vector2(5913.0498F, -156.772995F), new Vector2(5919.43604F, -152.483002F), new Vector2(5924.77588F, -146.860992F)); + builder.AddCubicBezier(new Vector2(5930.11182F, -141.235001F), new Vector2(5934.21387F, -134.563004F), new Vector2(5937.07422F, -126.841003F)); + builder.AddCubicBezier(new Vector2(5939.93408F, -119.119003F), new Vector2(5941.36377F, -110.584F), new Vector2(5941.36377F, -101.244003F)); + builder.AddCubicBezier(new Vector2(5941.36377F, -88.6600037F), new Vector2(5938.83398F, -77.5999985F), new Vector2(5933.78516F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(5928.73096F, -58.5320015F), new Vector2(5921.72412F, -51.0960007F), new Vector2(5912.76416F, -45.7599983F)); + builder.AddCubicBezier(new Vector2(5903.7998F, -40.4199982F), new Vector2(5893.31592F, -37.7519989F), new Vector2(5881.3042F, -37.7519989F)); + builder.AddCubicBezier(new Vector2(5872.33984F, -37.7519989F), new Vector2(5864.18799F, -39.2270012F), new Vector2(5856.85107F, -42.1850014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(5923.63184F, -4.57600021F)); + builder.AddCubicBezier(new Vector2(5936.40381F, -9.9119997F), new Vector2(5947.55811F, -17.3029995F), new Vector2(5957.09424F, -26.7409992F)); + builder.AddCubicBezier(new Vector2(5966.62598F, -36.1790009F), new Vector2(5974.06201F, -47.2350006F), new Vector2(5979.40186F, -59.9169998F)); + builder.AddCubicBezier(new Vector2(5984.73779F, -72.5950012F), new Vector2(5987.41016F, -86.2740021F), new Vector2(5987.41016F, -100.958F)); + builder.AddCubicBezier(new Vector2(5987.41016F, -115.830002F), new Vector2(5984.78711F, -129.602997F), new Vector2(5979.54492F, -142.285004F)); + builder.AddCubicBezier(new Vector2(5974.29883F, -154.962997F), new Vector2(5966.81787F, -166.022995F), new Vector2(5957.09424F, -175.460999F)); + builder.AddCubicBezier(new Vector2(5947.37012F, -184.899002F), new Vector2(5936.07324F, -192.237F), new Vector2(5923.20312F, -197.483002F)); + builder.AddCubicBezier(new Vector2(5910.33301F, -202.725006F), new Vector2(5896.36377F, -205.348007F), new Vector2(5881.3042F, -205.348007F)); + builder.AddCubicBezier(new Vector2(5866.04785F, -205.348007F), new Vector2(5851.93994F, -202.725006F), new Vector2(5838.97607F, -197.483002F)); + builder.AddCubicBezier(new Vector2(5826.00781F, -192.237F), new Vector2(5814.75977F, -184.899002F), new Vector2(5805.22803F, -175.460999F)); + builder.AddCubicBezier(new Vector2(5795.69092F, -166.022995F), new Vector2(5788.25488F, -155.011993F), new Vector2(5782.91992F, -142.427994F)); + builder.AddCubicBezier(new Vector2(5777.58008F, -129.843994F), new Vector2(5774.91211F, -116.115997F), new Vector2(5774.91211F, -101.244003F)); + builder.AddCubicBezier(new Vector2(5774.91211F, -86.5599976F), new Vector2(5777.58008F, -72.8809967F), new Vector2(5782.91992F, -60.2029991F)); + builder.AddCubicBezier(new Vector2(5788.25488F, -47.5209999F), new Vector2(5795.79004F, -36.4160004F), new Vector2(5805.51416F, -26.8840008F)); + builder.AddCubicBezier(new Vector2(5815.23779F, -17.3479996F), new Vector2(5826.58008F, -9.9119997F), new Vector2(5839.54785F, -4.57600021F)); + builder.AddCubicBezier(new Vector2(5852.51221F, 0.75999999F), new Vector2(5866.62012F, 3.43199992F), new Vector2(5881.87598F, 3.43199992F)); + builder.AddCubicBezier(new Vector2(5896.93604F, 3.43199992F), new Vector2(5910.85596F, 0.75999999F), new Vector2(5923.63184F, -4.57600021F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0228() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(5589.58398F, 0F)); + builder.AddLine(new Vector2(5589.58398F, -201.916F)); + builder.AddLine(new Vector2(5544.396F, -201.916F)); + builder.AddLine(new Vector2(5544.396F, 0F)); + builder.AddLine(new Vector2(5589.58398F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(5626.19189F, 0F)); + builder.AddCubicBezier(new Vector2(5641.25195F, 0F), new Vector2(5655.22119F, -2.47600007F), new Vector2(5668.09082F, -7.43599987F)); + builder.AddCubicBezier(new Vector2(5680.96094F, -12.3920002F), new Vector2(5692.16016F, -19.3990002F), new Vector2(5701.6958F, -28.4570007F)); + builder.AddCubicBezier(new Vector2(5711.22803F, -37.5110016F), new Vector2(5718.66406F, -48.1910019F), new Vector2(5724.00391F, -60.4889984F)); + builder.AddCubicBezier(new Vector2(5729.33887F, -72.7870026F), new Vector2(5732.01221F, -86.2740021F), new Vector2(5732.01221F, -100.958F)); + builder.AddCubicBezier(new Vector2(5732.01221F, -116.017998F), new Vector2(5729.33887F, -129.651993F), new Vector2(5724.00391F, -141.856003F)); + builder.AddCubicBezier(new Vector2(5718.66406F, -154.056F), new Vector2(5711.1792F, -164.686996F), new Vector2(5701.55322F, -173.744995F)); + builder.AddCubicBezier(new Vector2(5691.92285F, -182.798996F), new Vector2(5680.6748F, -189.761002F), new Vector2(5667.80518F, -194.623001F)); + builder.AddCubicBezier(new Vector2(5654.93506F, -199.485001F), new Vector2(5640.87109F, -201.916F), new Vector2(5625.62012F, -201.916F)); + builder.AddLine(new Vector2(5573.854F, -201.916F)); + builder.AddLine(new Vector2(5573.854F, -162.447998F)); + builder.AddLine(new Vector2(5625.04785F, -162.447998F)); + builder.AddCubicBezier(new Vector2(5637.06006F, -162.447998F), new Vector2(5647.59277F, -160.016998F), new Vector2(5656.65088F, -155.154999F)); + builder.AddCubicBezier(new Vector2(5665.70508F, -150.292999F), new Vector2(5672.76123F, -143.237F), new Vector2(5677.81494F, -133.990997F)); + builder.AddCubicBezier(new Vector2(5682.86523F, -124.740997F), new Vector2(5685.39404F, -113.828003F), new Vector2(5685.39404F, -101.244003F)); + builder.AddCubicBezier(new Vector2(5685.39404F, -88.4680023F), new Vector2(5682.91406F, -77.4570007F), new Vector2(5677.95801F, -68.2109985F)); + builder.AddCubicBezier(new Vector2(5672.99805F, -58.9609985F), new Vector2(5665.99121F, -51.8600006F), new Vector2(5656.93701F, -46.9039993F)); + builder.AddCubicBezier(new Vector2(5647.87891F, -41.9440002F), new Vector2(5637.24805F, -39.4679985F), new Vector2(5625.04785F, -39.4679985F)); + builder.AddLine(new Vector2(5575.28418F, -39.4679985F)); + builder.AddLine(new Vector2(5575.28418F, 0F)); + builder.AddLine(new Vector2(5626.19189F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0229() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(5480.90381F, 0F)); + builder.AddLine(new Vector2(5480.90381F, -201.916F)); + builder.AddLine(new Vector2(5435.43018F, -201.916F)); + builder.AddLine(new Vector2(5435.43018F, -40.3260002F)); + builder.AddLine(new Vector2(5447.44189F, 0F)); + builder.AddLine(new Vector2(5480.90381F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(5458.88184F, -49.4780006F)); + builder.AddLine(new Vector2(5339.90576F, -201.916F)); + builder.AddLine(new Vector2(5328.75195F, -152.438004F)); + builder.AddLine(new Vector2(5447.44189F, 0F)); + builder.AddLine(new Vector2(5458.88184F, -49.4780006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(5353.34814F, 0F)); + builder.AddLine(new Vector2(5353.34814F, -161.589996F)); + builder.AddLine(new Vector2(5339.90576F, -201.916F)); + builder.AddLine(new Vector2(5308.16016F, -201.916F)); + builder.AddLine(new Vector2(5308.16016F, 0F)); + builder.AddLine(new Vector2(5353.34814F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0230() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(5244.38184F, 0F)); + builder.AddLine(new Vector2(5244.38184F, -201.916F)); + builder.AddLine(new Vector2(5199.19385F, -201.916F)); + builder.AddLine(new Vector2(5199.19385F, 0F)); + builder.AddLine(new Vector2(5244.38184F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0231() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(5144.854F, -117.260002F)); + builder.AddLine(new Vector2(5144.854F, -148.720001F)); + builder.AddLine(new Vector2(4984.97998F, -148.720001F)); + builder.AddLine(new Vector2(4984.97998F, -117.260002F)); + builder.AddLine(new Vector2(5144.854F, -117.260002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(5028.45215F, 0F)); + builder.AddLine(new Vector2(5061.62793F, -201.916F)); + builder.AddLine(new Vector2(5025.87793F, -201.916F)); + builder.AddLine(new Vector2(4992.41602F, 0F)); + builder.AddLine(new Vector2(5028.45215F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(5135.41602F, -57.4860001F)); + builder.AddLine(new Vector2(5135.41602F, -88.9459991F)); + builder.AddLine(new Vector2(4975.25586F, -88.9459991F)); + builder.AddLine(new Vector2(4975.25586F, -57.4860001F)); + builder.AddLine(new Vector2(5135.41602F, -57.4860001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(5092.51611F, 0F)); + builder.AddLine(new Vector2(5126.26416F, -201.916F)); + builder.AddLine(new Vector2(5090.22803F, -201.916F)); + builder.AddLine(new Vector2(5057.05176F, 0F)); + builder.AddLine(new Vector2(5092.51611F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0232() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(4891.74414F, -36.3219986F)); + builder.AddLine(new Vector2(4891.74414F, -72.9300003F)); + builder.AddLine(new Vector2(4781.91992F, -72.9300003F)); + builder.AddLine(new Vector2(4781.91992F, -36.3219986F)); + builder.AddLine(new Vector2(4891.74414F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(4782.77783F, 0F)); + builder.AddLine(new Vector2(4844.5542F, -167.309998F)); + builder.AddLine(new Vector2(4827.96582F, -167.309998F)); + builder.AddLine(new Vector2(4888.31201F, 0F)); + builder.AddLine(new Vector2(4936.07422F, 0F)); + builder.AddLine(new Vector2(4856.85205F, -201.916F)); + builder.AddLine(new Vector2(4815.9541F, -201.916F)); + builder.AddLine(new Vector2(4736.16016F, 0F)); + builder.AddLine(new Vector2(4782.77783F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0233() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(4687.25391F, 0F)); + builder.AddLine(new Vector2(4687.25391F, -201.916F)); + builder.AddLine(new Vector2(4642.06592F, -201.916F)); + builder.AddLine(new Vector2(4642.06592F, 0F)); + builder.AddLine(new Vector2(4687.25391F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0234() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(4568.27783F, -13.2989998F)); + builder.AddCubicBezier(new Vector2(4582.00586F, -24.2609997F), new Vector2(4588.87012F, -39.3699989F), new Vector2(4588.87012F, -58.6300011F)); + builder.AddCubicBezier(new Vector2(4588.87012F, -69.3059998F), new Vector2(4587.10498F, -78.1719971F), new Vector2(4583.5791F, -85.2279968F)); + builder.AddCubicBezier(new Vector2(4580.04883F, -92.2799988F), new Vector2(4575.52197F, -98.1920013F), new Vector2(4569.99414F, -102.959999F)); + builder.AddCubicBezier(new Vector2(4564.46191F, -107.723999F), new Vector2(4558.31299F, -111.584999F), new Vector2(4551.54688F, -114.542999F)); + builder.AddCubicBezier(new Vector2(4544.77686F, -117.497002F), new Vector2(4538.00684F, -120.120003F), new Vector2(4531.24121F, -122.407997F)); + builder.AddCubicBezier(new Vector2(4524.47021F, -124.695999F), new Vector2(4518.27295F, -126.984001F), new Vector2(4512.65088F, -129.272003F)); + builder.AddCubicBezier(new Vector2(4507.0249F, -131.559998F), new Vector2(4502.49805F, -134.276993F), new Vector2(4499.06592F, -137.423004F)); + builder.AddCubicBezier(new Vector2(4495.63379F, -140.569F), new Vector2(4493.91797F, -144.617996F), new Vector2(4493.91797F, -149.578003F)); + builder.AddCubicBezier(new Vector2(4493.91797F, -155.106003F), new Vector2(4496.20605F, -159.347F), new Vector2(4500.78223F, -162.304993F)); + builder.AddCubicBezier(new Vector2(4505.35791F, -165.259003F), new Vector2(4511.55176F, -166.738007F), new Vector2(4519.37207F, -166.738007F)); + builder.AddCubicBezier(new Vector2(4526.99609F, -166.738007F), new Vector2(4533.90918F, -165.210007F), new Vector2(4540.10693F, -162.162003F)); + builder.AddCubicBezier(new Vector2(4546.30078F, -159.110001F), new Vector2(4552.4502F, -154.440002F), new Vector2(4558.5542F, -148.147995F)); + builder.AddLine(new Vector2(4588.01221F, -177.606003F)); + builder.AddCubicBezier(new Vector2(4580.38379F, -185.994003F), new Vector2(4570.75391F, -192.666F), new Vector2(4559.12598F, -197.626007F)); + builder.AddCubicBezier(new Vector2(4547.49414F, -202.582001F), new Vector2(4534.52979F, -205.061996F), new Vector2(4520.22998F, -205.061996F)); + builder.AddCubicBezier(new Vector2(4506.50195F, -205.061996F), new Vector2(4494.2041F, -202.725006F), new Vector2(4483.33594F, -198.054993F)); + builder.AddCubicBezier(new Vector2(4472.46777F, -193.380997F), new Vector2(4464.03076F, -186.565994F), new Vector2(4458.0249F, -177.606003F)); + builder.AddCubicBezier(new Vector2(4452.01904F, -168.641998F), new Vector2(4449.01611F, -157.871994F), new Vector2(4449.01611F, -145.287994F)); + builder.AddCubicBezier(new Vector2(4449.01611F, -135.179993F), new Vector2(4450.73193F, -126.697998F), new Vector2(4454.16406F, -119.834F)); + builder.AddCubicBezier(new Vector2(4457.59619F, -112.970001F), new Vector2(4462.12305F, -107.344002F), new Vector2(4467.74902F, -102.959999F)); + builder.AddCubicBezier(new Vector2(4473.37109F, -98.5719986F), new Vector2(4479.56885F, -94.8539963F), new Vector2(4486.33887F, -91.8059998F)); + builder.AddCubicBezier(new Vector2(4493.10498F, -88.7539978F), new Vector2(4499.82617F, -86.1309967F), new Vector2(4506.50195F, -83.9410019F)); + builder.AddCubicBezier(new Vector2(4513.17383F, -81.7470016F), new Vector2(4519.37207F, -79.4100037F), new Vector2(4525.0918F, -76.9339981F)); + builder.AddCubicBezier(new Vector2(4530.81201F, -74.4540024F), new Vector2(4535.33887F, -71.5F), new Vector2(4538.67676F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(4542.00977F, -64.6360016F), new Vector2(4543.68213F, -60.2480011F), new Vector2(4543.68213F, -54.9119987F)); + builder.AddCubicBezier(new Vector2(4543.68213F, -48.8079987F), new Vector2(4541.05908F, -43.9949989F), new Vector2(4535.81689F, -40.4690018F)); + builder.AddCubicBezier(new Vector2(4530.5708F, -36.9389992F), new Vector2(4523.27783F, -35.1780014F), new Vector2(4513.93799F, -35.1780014F)); + builder.AddCubicBezier(new Vector2(4503.4502F, -35.1780014F), new Vector2(4494.24902F, -37.2249985F), new Vector2(4486.33887F, -41.3269997F)); + builder.AddCubicBezier(new Vector2(4478.4248F, -45.4249992F), new Vector2(4471.2251F, -51.1940002F), new Vector2(4464.74609F, -58.6300011F)); + builder.AddLine(new Vector2(4435.57422F, -29.4580002F)); + builder.AddCubicBezier(new Vector2(4445.29785F, -18.3980007F), new Vector2(4456.11719F, -10.198F), new Vector2(4468.03516F, -4.86199999F)); + builder.AddCubicBezier(new Vector2(4479.94922F, 0.474000007F), new Vector2(4494.29785F, 3.14599991F), new Vector2(4511.07812F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(4535.48193F, 3.14599991F), new Vector2(4554.5498F, -2.33299994F), new Vector2(4568.27783F, -13.2989998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0235() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(4398.10791F, -163.020004F)); + builder.AddLine(new Vector2(4398.10791F, -201.916F)); + builder.AddLine(new Vector2(4288.85596F, -201.916F)); + builder.AddLine(new Vector2(4288.85596F, -163.020004F)); + builder.AddLine(new Vector2(4398.10791F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(4389.52783F, -84.0839996F)); + builder.AddLine(new Vector2(4389.52783F, -122.122002F)); + builder.AddLine(new Vector2(4288.85596F, -122.122002F)); + builder.AddLine(new Vector2(4288.85596F, -84.0839996F)); + builder.AddLine(new Vector2(4389.52783F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(4399.82422F, 0F)); + builder.AddLine(new Vector2(4399.82422F, -38.8959999F)); + builder.AddLine(new Vector2(4288.85596F, -38.8959999F)); + builder.AddLine(new Vector2(4288.85596F, 0F)); + builder.AddLine(new Vector2(4399.82422F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(4299.43799F, 0F)); + builder.AddLine(new Vector2(4299.43799F, -201.916F)); + builder.AddLine(new Vector2(4254.25F, -201.916F)); + builder.AddLine(new Vector2(4254.25F, 0F)); + builder.AddLine(new Vector2(4299.43799F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0236() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(4190.75781F, 0F)); + builder.AddLine(new Vector2(4190.75781F, -201.916F)); + builder.AddLine(new Vector2(4145.28418F, -201.916F)); + builder.AddLine(new Vector2(4145.28418F, -40.3260002F)); + builder.AddLine(new Vector2(4157.2959F, 0F)); + builder.AddLine(new Vector2(4190.75781F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(4168.73584F, -49.4780006F)); + builder.AddLine(new Vector2(4049.76001F, -201.916F)); + builder.AddLine(new Vector2(4038.60596F, -152.438004F)); + builder.AddLine(new Vector2(4157.2959F, 0F)); + builder.AddLine(new Vector2(4168.73584F, -49.4780006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(4063.2019F, 0F)); + builder.AddLine(new Vector2(4063.2019F, -161.589996F)); + builder.AddLine(new Vector2(4049.76001F, -201.916F)); + builder.AddLine(new Vector2(4018.01392F, -201.916F)); + builder.AddLine(new Vector2(4018.01392F, 0F)); + builder.AddLine(new Vector2(4063.2019F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0237() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(3833.68701F, -42.1850014F)); + builder.AddCubicBezier(new Vector2(3826.34497F, -45.1389999F), new Vector2(3820.00391F, -49.4290009F), new Vector2(3814.66797F, -55.0550003F)); + builder.AddCubicBezier(new Vector2(3809.32788F, -60.6769981F), new Vector2(3805.22998F, -67.3980026F), new Vector2(3802.37012F, -75.2180023F)); + builder.AddCubicBezier(new Vector2(3799.51001F, -83.0339966F), new Vector2(3798.08008F, -91.7080002F), new Vector2(3798.08008F, -101.244003F)); + builder.AddCubicBezier(new Vector2(3798.08008F, -113.828003F), new Vector2(3800.55591F, -124.838997F), new Vector2(3805.51611F, -134.276993F)); + builder.AddCubicBezier(new Vector2(3810.47192F, -143.714996F), new Vector2(3817.479F, -151.052994F), new Vector2(3826.53711F, -156.298996F)); + builder.AddCubicBezier(new Vector2(3835.59106F, -161.541F), new Vector2(3846.12793F, -164.164001F), new Vector2(3858.13989F, -164.164001F)); + builder.AddCubicBezier(new Vector2(3866.90796F, -164.164001F), new Vector2(3875.01392F, -162.684998F), new Vector2(3882.44995F, -159.731003F)); + builder.AddCubicBezier(new Vector2(3889.88599F, -156.772995F), new Vector2(3896.27197F, -152.483002F), new Vector2(3901.61206F, -146.860992F)); + builder.AddCubicBezier(new Vector2(3906.948F, -141.235001F), new Vector2(3911.05005F, -134.563004F), new Vector2(3913.90991F, -126.841003F)); + builder.AddCubicBezier(new Vector2(3916.77002F, -119.119003F), new Vector2(3918.19995F, -110.584F), new Vector2(3918.19995F, -101.244003F)); + builder.AddCubicBezier(new Vector2(3918.19995F, -88.6600037F), new Vector2(3915.6709F, -77.5999985F), new Vector2(3910.62109F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(3905.56689F, -58.5320015F), new Vector2(3898.56006F, -51.0960007F), new Vector2(3889.6001F, -45.7599983F)); + builder.AddCubicBezier(new Vector2(3880.63599F, -40.4199982F), new Vector2(3870.1521F, -37.7519989F), new Vector2(3858.13989F, -37.7519989F)); + builder.AddCubicBezier(new Vector2(3849.17603F, -37.7519989F), new Vector2(3841.0249F, -39.2270012F), new Vector2(3833.68701F, -42.1850014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(3900.46802F, -4.57600021F)); + builder.AddCubicBezier(new Vector2(3913.23999F, -9.9119997F), new Vector2(3924.39404F, -17.3029995F), new Vector2(3933.92993F, -26.7409992F)); + builder.AddCubicBezier(new Vector2(3943.46191F, -36.1790009F), new Vector2(3950.89795F, -47.2350006F), new Vector2(3956.23804F, -59.9169998F)); + builder.AddCubicBezier(new Vector2(3961.57397F, -72.5950012F), new Vector2(3964.24609F, -86.2740021F), new Vector2(3964.24609F, -100.958F)); + builder.AddCubicBezier(new Vector2(3964.24609F, -115.830002F), new Vector2(3961.62305F, -129.602997F), new Vector2(3956.3811F, -142.285004F)); + builder.AddCubicBezier(new Vector2(3951.13501F, -154.962997F), new Vector2(3943.65405F, -166.022995F), new Vector2(3933.92993F, -175.460999F)); + builder.AddCubicBezier(new Vector2(3924.20605F, -184.899002F), new Vector2(3912.90894F, -192.237F), new Vector2(3900.03906F, -197.483002F)); + builder.AddCubicBezier(new Vector2(3887.16895F, -202.725006F), new Vector2(3873.19995F, -205.348007F), new Vector2(3858.13989F, -205.348007F)); + builder.AddCubicBezier(new Vector2(3842.88403F, -205.348007F), new Vector2(3828.77588F, -202.725006F), new Vector2(3815.81201F, -197.483002F)); + builder.AddCubicBezier(new Vector2(3802.84399F, -192.237F), new Vector2(3791.59595F, -184.899002F), new Vector2(3782.06396F, -175.460999F)); + builder.AddCubicBezier(new Vector2(3772.52808F, -166.022995F), new Vector2(3765.09204F, -155.011993F), new Vector2(3759.7561F, -142.427994F)); + builder.AddCubicBezier(new Vector2(3754.41602F, -129.843994F), new Vector2(3751.74805F, -116.115997F), new Vector2(3751.74805F, -101.244003F)); + builder.AddCubicBezier(new Vector2(3751.74805F, -86.5599976F), new Vector2(3754.41602F, -72.8809967F), new Vector2(3759.7561F, -60.2029991F)); + builder.AddCubicBezier(new Vector2(3765.09204F, -47.5209999F), new Vector2(3772.62598F, -36.4160004F), new Vector2(3782.3501F, -26.8840008F)); + builder.AddCubicBezier(new Vector2(3792.07397F, -17.3479996F), new Vector2(3803.41602F, -9.9119997F), new Vector2(3816.38403F, -4.57600021F)); + builder.AddCubicBezier(new Vector2(3829.3479F, 0.75999999F), new Vector2(3843.45605F, 3.43199992F), new Vector2(3858.71191F, 3.43199992F)); + builder.AddCubicBezier(new Vector2(3873.77197F, 3.43199992F), new Vector2(3887.69189F, 0.75999999F), new Vector2(3900.46802F, -4.57600021F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0238() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(3566.41992F, 0F)); + builder.AddLine(new Vector2(3566.41992F, -201.916F)); + builder.AddLine(new Vector2(3521.23193F, -201.916F)); + builder.AddLine(new Vector2(3521.23193F, 0F)); + builder.AddLine(new Vector2(3566.41992F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(3603.02808F, 0F)); + builder.AddCubicBezier(new Vector2(3618.08789F, 0F), new Vector2(3632.05688F, -2.47600007F), new Vector2(3644.927F, -7.43599987F)); + builder.AddCubicBezier(new Vector2(3657.79712F, -12.3920002F), new Vector2(3668.99609F, -19.3990002F), new Vector2(3678.53198F, -28.4570007F)); + builder.AddCubicBezier(new Vector2(3688.06396F, -37.5110016F), new Vector2(3695.5F, -48.1910019F), new Vector2(3700.84009F, -60.4889984F)); + builder.AddCubicBezier(new Vector2(3706.17603F, -72.7870026F), new Vector2(3708.8479F, -86.2740021F), new Vector2(3708.8479F, -100.958F)); + builder.AddCubicBezier(new Vector2(3708.8479F, -116.017998F), new Vector2(3706.17603F, -129.651993F), new Vector2(3700.84009F, -141.856003F)); + builder.AddCubicBezier(new Vector2(3695.5F, -154.056F), new Vector2(3688.01392F, -164.686996F), new Vector2(3678.38892F, -173.744995F)); + builder.AddCubicBezier(new Vector2(3668.75903F, -182.798996F), new Vector2(3657.51099F, -189.761002F), new Vector2(3644.64111F, -194.623001F)); + builder.AddCubicBezier(new Vector2(3631.771F, -199.485001F), new Vector2(3617.70801F, -201.916F), new Vector2(3602.45605F, -201.916F)); + builder.AddLine(new Vector2(3550.68994F, -201.916F)); + builder.AddLine(new Vector2(3550.68994F, -162.447998F)); + builder.AddLine(new Vector2(3601.88403F, -162.447998F)); + builder.AddCubicBezier(new Vector2(3613.896F, -162.447998F), new Vector2(3624.42896F, -160.016998F), new Vector2(3633.48706F, -155.154999F)); + builder.AddCubicBezier(new Vector2(3642.54102F, -150.292999F), new Vector2(3649.59692F, -143.237F), new Vector2(3654.65088F, -133.990997F)); + builder.AddCubicBezier(new Vector2(3659.70093F, -124.740997F), new Vector2(3662.22998F, -113.828003F), new Vector2(3662.22998F, -101.244003F)); + builder.AddCubicBezier(new Vector2(3662.22998F, -88.4680023F), new Vector2(3659.75F, -77.4570007F), new Vector2(3654.79395F, -68.2109985F)); + builder.AddCubicBezier(new Vector2(3649.83398F, -58.9609985F), new Vector2(3642.82593F, -51.8600006F), new Vector2(3633.77295F, -46.9039993F)); + builder.AddCubicBezier(new Vector2(3624.71509F, -41.9440002F), new Vector2(3614.08398F, -39.4679985F), new Vector2(3601.88403F, -39.4679985F)); + builder.AddLine(new Vector2(3552.12012F, -39.4679985F)); + builder.AddLine(new Vector2(3552.12012F, 0F)); + builder.AddLine(new Vector2(3603.02808F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0239() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(3457.73999F, 0F)); + builder.AddLine(new Vector2(3457.73999F, -201.916F)); + builder.AddLine(new Vector2(3412.26611F, -201.916F)); + builder.AddLine(new Vector2(3412.26611F, -40.3260002F)); + builder.AddLine(new Vector2(3424.27808F, 0F)); + builder.AddLine(new Vector2(3457.73999F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(3435.71802F, -49.4780006F)); + builder.AddLine(new Vector2(3316.74194F, -201.916F)); + builder.AddLine(new Vector2(3305.58789F, -152.438004F)); + builder.AddLine(new Vector2(3424.27808F, 0F)); + builder.AddLine(new Vector2(3435.71802F, -49.4780006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(3330.18408F, 0F)); + builder.AddLine(new Vector2(3330.18408F, -161.589996F)); + builder.AddLine(new Vector2(3316.74194F, -201.916F)); + builder.AddLine(new Vector2(3284.99609F, -201.916F)); + builder.AddLine(new Vector2(3284.99609F, 0F)); + builder.AddLine(new Vector2(3330.18408F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0240() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(3221.21802F, 0F)); + builder.AddLine(new Vector2(3221.21802F, -201.916F)); + builder.AddLine(new Vector2(3176.03003F, -201.916F)); + builder.AddLine(new Vector2(3176.03003F, 0F)); + builder.AddLine(new Vector2(3221.21802F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0241() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(3125.97998F, -162.447998F)); + builder.AddLine(new Vector2(3125.97998F, -201.916F)); + builder.AddLine(new Vector2(2954.37988F, -201.916F)); + builder.AddLine(new Vector2(2954.37988F, -162.447998F)); + builder.AddLine(new Vector2(3125.97998F, -162.447998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(3063.06006F, 0F)); + builder.AddLine(new Vector2(3063.06006F, -199.341995F)); + builder.AddLine(new Vector2(3017.58594F, -199.341995F)); + builder.AddLine(new Vector2(3017.58594F, 0F)); + builder.AddLine(new Vector2(3063.06006F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0242() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(2916.91406F, -163.020004F)); + builder.AddLine(new Vector2(2916.91406F, -201.916F)); + builder.AddLine(new Vector2(2807.66211F, -201.916F)); + builder.AddLine(new Vector2(2807.66211F, -163.020004F)); + builder.AddLine(new Vector2(2916.91406F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(2908.33398F, -84.0839996F)); + builder.AddLine(new Vector2(2908.33398F, -122.122002F)); + builder.AddLine(new Vector2(2807.66211F, -122.122002F)); + builder.AddLine(new Vector2(2807.66211F, -84.0839996F)); + builder.AddLine(new Vector2(2908.33398F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(2918.62988F, 0F)); + builder.AddLine(new Vector2(2918.62988F, -38.8959999F)); + builder.AddLine(new Vector2(2807.66211F, -38.8959999F)); + builder.AddLine(new Vector2(2807.66211F, 0F)); + builder.AddLine(new Vector2(2918.62988F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(2818.2439F, 0F)); + builder.AddLine(new Vector2(2818.2439F, -201.916F)); + builder.AddLine(new Vector2(2773.05591F, -201.916F)); + builder.AddLine(new Vector2(2773.05591F, 0F)); + builder.AddLine(new Vector2(2818.2439F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0243() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(2699.26807F, -13.2989998F)); + builder.AddCubicBezier(new Vector2(2712.99609F, -24.2609997F), new Vector2(2719.86011F, -39.3699989F), new Vector2(2719.86011F, -58.6300011F)); + builder.AddCubicBezier(new Vector2(2719.86011F, -69.3059998F), new Vector2(2718.09497F, -78.1719971F), new Vector2(2714.56909F, -85.2279968F)); + builder.AddCubicBezier(new Vector2(2711.03906F, -92.2799988F), new Vector2(2706.51196F, -98.1920013F), new Vector2(2700.98389F, -102.959999F)); + builder.AddCubicBezier(new Vector2(2695.4519F, -107.723999F), new Vector2(2689.30298F, -111.584999F), new Vector2(2682.53711F, -114.542999F)); + builder.AddCubicBezier(new Vector2(2675.76709F, -117.497002F), new Vector2(2668.99707F, -120.120003F), new Vector2(2662.23096F, -122.407997F)); + builder.AddCubicBezier(new Vector2(2655.46094F, -124.695999F), new Vector2(2649.26294F, -126.984001F), new Vector2(2643.64111F, -129.272003F)); + builder.AddCubicBezier(new Vector2(2638.01489F, -131.559998F), new Vector2(2633.48804F, -134.276993F), new Vector2(2630.05591F, -137.423004F)); + builder.AddCubicBezier(new Vector2(2626.62402F, -140.569F), new Vector2(2624.90796F, -144.617996F), new Vector2(2624.90796F, -149.578003F)); + builder.AddCubicBezier(new Vector2(2624.90796F, -155.106003F), new Vector2(2627.19604F, -159.347F), new Vector2(2631.77197F, -162.304993F)); + builder.AddCubicBezier(new Vector2(2636.3479F, -165.259003F), new Vector2(2642.54199F, -166.738007F), new Vector2(2650.36206F, -166.738007F)); + builder.AddCubicBezier(new Vector2(2657.98608F, -166.738007F), new Vector2(2664.89893F, -165.210007F), new Vector2(2671.09692F, -162.162003F)); + builder.AddCubicBezier(new Vector2(2677.29102F, -159.110001F), new Vector2(2683.43994F, -154.440002F), new Vector2(2689.54395F, -148.147995F)); + builder.AddLine(new Vector2(2719.00195F, -177.606003F)); + builder.AddCubicBezier(new Vector2(2711.37402F, -185.994003F), new Vector2(2701.7439F, -192.666F), new Vector2(2690.11597F, -197.626007F)); + builder.AddCubicBezier(new Vector2(2678.48389F, -202.582001F), new Vector2(2665.52002F, -205.061996F), new Vector2(2651.21997F, -205.061996F)); + builder.AddCubicBezier(new Vector2(2637.49194F, -205.061996F), new Vector2(2625.19409F, -202.725006F), new Vector2(2614.32593F, -198.054993F)); + builder.AddCubicBezier(new Vector2(2603.45801F, -193.380997F), new Vector2(2595.021F, -186.565994F), new Vector2(2589.01489F, -177.606003F)); + builder.AddCubicBezier(new Vector2(2583.00903F, -168.641998F), new Vector2(2580.0061F, -157.871994F), new Vector2(2580.0061F, -145.287994F)); + builder.AddCubicBezier(new Vector2(2580.0061F, -135.179993F), new Vector2(2581.72192F, -126.697998F), new Vector2(2585.15405F, -119.834F)); + builder.AddCubicBezier(new Vector2(2588.58594F, -112.970001F), new Vector2(2593.11304F, -107.344002F), new Vector2(2598.73901F, -102.959999F)); + builder.AddCubicBezier(new Vector2(2604.36108F, -98.5719986F), new Vector2(2610.55908F, -94.8539963F), new Vector2(2617.3291F, -91.8059998F)); + builder.AddCubicBezier(new Vector2(2624.09497F, -88.7539978F), new Vector2(2630.81592F, -86.1309967F), new Vector2(2637.49194F, -83.9410019F)); + builder.AddCubicBezier(new Vector2(2644.16406F, -81.7470016F), new Vector2(2650.36206F, -79.4100037F), new Vector2(2656.08203F, -76.9339981F)); + builder.AddCubicBezier(new Vector2(2661.802F, -74.4540024F), new Vector2(2666.3291F, -71.5F), new Vector2(2669.66699F, -68.0680008F)); + builder.AddCubicBezier(new Vector2(2673.00098F, -64.6360016F), new Vector2(2674.67212F, -60.2480011F), new Vector2(2674.67212F, -54.9119987F)); + builder.AddCubicBezier(new Vector2(2674.67212F, -48.8079987F), new Vector2(2672.04907F, -43.9949989F), new Vector2(2666.80688F, -40.4690018F)); + builder.AddCubicBezier(new Vector2(2661.56104F, -36.9389992F), new Vector2(2654.26807F, -35.1780014F), new Vector2(2644.92798F, -35.1780014F)); + builder.AddCubicBezier(new Vector2(2634.43994F, -35.1780014F), new Vector2(2625.23901F, -37.2249985F), new Vector2(2617.3291F, -41.3269997F)); + builder.AddCubicBezier(new Vector2(2609.41504F, -45.4249992F), new Vector2(2602.21606F, -51.1940002F), new Vector2(2595.73608F, -58.6300011F)); + builder.AddLine(new Vector2(2566.56396F, -29.4580002F)); + builder.AddCubicBezier(new Vector2(2576.28809F, -18.3980007F), new Vector2(2587.10693F, -10.198F), new Vector2(2599.0249F, -4.86199999F)); + builder.AddCubicBezier(new Vector2(2610.93896F, 0.474000007F), new Vector2(2625.28809F, 3.14599991F), new Vector2(2642.06812F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(2666.47192F, 3.14599991F), new Vector2(2685.54004F, -2.33299994F), new Vector2(2699.26807F, -13.2989998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0244() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(2529.0979F, -163.020004F)); + builder.AddLine(new Vector2(2529.0979F, -201.916F)); + builder.AddLine(new Vector2(2419.84595F, -201.916F)); + builder.AddLine(new Vector2(2419.84595F, -163.020004F)); + builder.AddLine(new Vector2(2529.0979F, -163.020004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(2520.51807F, -84.0839996F)); + builder.AddLine(new Vector2(2520.51807F, -122.122002F)); + builder.AddLine(new Vector2(2419.84595F, -122.122002F)); + builder.AddLine(new Vector2(2419.84595F, -84.0839996F)); + builder.AddLine(new Vector2(2520.51807F, -84.0839996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(2530.81396F, 0F)); + builder.AddLine(new Vector2(2530.81396F, -38.8959999F)); + builder.AddLine(new Vector2(2419.84595F, -38.8959999F)); + builder.AddLine(new Vector2(2419.84595F, 0F)); + builder.AddLine(new Vector2(2530.81396F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(2430.42798F, 0F)); + builder.AddLine(new Vector2(2430.42798F, -201.916F)); + builder.AddLine(new Vector2(2385.23999F, -201.916F)); + builder.AddLine(new Vector2(2385.23999F, 0F)); + builder.AddLine(new Vector2(2430.42798F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0245() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(2341.19604F, 0F)); + builder.AddLine(new Vector2(2266.26392F, -98.3840027F)); + builder.AddLine(new Vector2(2224.79395F, -86.9440002F)); + builder.AddLine(new Vector2(2287.71411F, 0F)); + builder.AddLine(new Vector2(2341.19604F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(2223.07788F, 0F)); + builder.AddLine(new Vector2(2223.07788F, -201.916F)); + builder.AddLine(new Vector2(2177.88989F, -201.916F)); + builder.AddLine(new Vector2(2177.88989F, 0F)); + builder.AddLine(new Vector2(2223.07788F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(2259.11401F, -82.9400024F)); + builder.AddCubicBezier(new Vector2(2273.03003F, -82.9400024F), new Vector2(2285.13989F, -85.4160004F), new Vector2(2295.43604F, -90.3759995F)); + builder.AddCubicBezier(new Vector2(2305.73193F, -95.3320007F), new Vector2(2313.73999F, -102.245003F), new Vector2(2319.45996F, -111.111F)); + builder.AddCubicBezier(new Vector2(2325.17993F, -119.976997F), new Vector2(2328.04004F, -130.509995F), new Vector2(2328.04004F, -142.714005F)); + builder.AddCubicBezier(new Vector2(2328.04004F, -154.154007F), new Vector2(2325.2251F, -164.352005F), new Vector2(2319.60303F, -173.315994F)); + builder.AddCubicBezier(new Vector2(2313.97705F, -182.276001F), new Vector2(2306.11206F, -189.283005F), new Vector2(2296.00806F, -194.337006F)); + builder.AddCubicBezier(new Vector2(2285.8999F, -199.386993F), new Vector2(2274.08008F, -201.916F), new Vector2(2260.54395F, -201.916F)); + builder.AddLine(new Vector2(2212.49609F, -201.916F)); + builder.AddLine(new Vector2(2212.49609F, -166.738007F)); + builder.AddLine(new Vector2(2255.396F, -166.738007F)); + builder.AddCubicBezier(new Vector2(2264.16406F, -166.738007F), new Vector2(2270.98291F, -164.352005F), new Vector2(2275.84497F, -159.587997F)); + builder.AddCubicBezier(new Vector2(2280.70703F, -154.820007F), new Vector2(2283.13794F, -148.813995F), new Vector2(2283.13794F, -141.570007F)); + builder.AddCubicBezier(new Vector2(2283.13794F, -133.942001F), new Vector2(2280.65796F, -127.887001F), new Vector2(2275.7019F, -123.408997F)); + builder.AddCubicBezier(new Vector2(2270.74194F, -118.927002F), new Vector2(2263.87793F, -116.688004F), new Vector2(2255.11011F, -116.688004F)); + builder.AddLine(new Vector2(2212.49609F, -116.688004F)); + builder.AddLine(new Vector2(2212.49609F, -82.9400024F)); + builder.AddLine(new Vector2(2259.11401F, -82.9400024F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0246() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(2123.55005F, -117.260002F)); + builder.AddLine(new Vector2(2123.55005F, -148.720001F)); + builder.AddLine(new Vector2(1963.67603F, -148.720001F)); + builder.AddLine(new Vector2(1963.67603F, -117.260002F)); + builder.AddLine(new Vector2(2123.55005F, -117.260002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(2007.14795F, 0F)); + builder.AddLine(new Vector2(2040.32397F, -201.916F)); + builder.AddLine(new Vector2(2004.57397F, -201.916F)); + builder.AddLine(new Vector2(1971.11206F, 0F)); + builder.AddLine(new Vector2(2007.14795F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(2114.11206F, -57.4860001F)); + builder.AddLine(new Vector2(2114.11206F, -88.9459991F)); + builder.AddLine(new Vector2(1953.95203F, -88.9459991F)); + builder.AddLine(new Vector2(1953.95203F, -57.4860001F)); + builder.AddLine(new Vector2(2114.11206F, -57.4860001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(2071.21191F, 0F)); + builder.AddLine(new Vector2(2104.95996F, -201.916F)); + builder.AddLine(new Vector2(2068.92407F, -201.916F)); + builder.AddLine(new Vector2(2035.74805F, 0F)); + builder.AddLine(new Vector2(2071.21191F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0247() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(1799.79797F, 0F)); + builder.AddLine(new Vector2(1799.79797F, -201.916F)); + builder.AddLine(new Vector2(1755.18201F, -201.916F)); + builder.AddLine(new Vector2(1755.18201F, 0F)); + builder.AddLine(new Vector2(1799.79797F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(1841.55396F, 0F)); + builder.AddCubicBezier(new Vector2(1855.854F, 0F), new Vector2(1868.10303F, -2.61899996F), new Vector2(1878.30505F, -7.86499977F)); + builder.AddCubicBezier(new Vector2(1888.50305F, -13.1070004F), new Vector2(1896.323F, -20.1140003F), new Vector2(1901.75696F, -28.8859997F)); + builder.AddCubicBezier(new Vector2(1907.19104F, -37.6539993F), new Vector2(1909.90796F, -47.5699997F), new Vector2(1909.90796F, -58.6300011F)); + builder.AddCubicBezier(new Vector2(1909.90796F, -73.1179962F), new Vector2(1905.33203F, -85.3219986F), new Vector2(1896.18005F, -95.237999F)); + builder.AddCubicBezier(new Vector2(1887.02795F, -105.150002F), new Vector2(1873.87195F, -111.727997F), new Vector2(1856.71204F, -114.972F)); + builder.AddLine(new Vector2(1855.56799F, -99.814003F)); + builder.AddCubicBezier(new Vector2(1871.19995F, -103.054001F), new Vector2(1883.02405F, -108.917F), new Vector2(1891.03198F, -117.403F)); + builder.AddCubicBezier(new Vector2(1899.04004F, -125.885002F), new Vector2(1903.04395F, -136.516006F), new Vector2(1903.04395F, -149.292007F)); + builder.AddCubicBezier(new Vector2(1903.04395F, -158.824005F), new Vector2(1900.70703F, -167.595993F), new Vector2(1896.03699F, -175.604004F)); + builder.AddCubicBezier(new Vector2(1891.36304F, -183.612F), new Vector2(1884.45398F, -189.998001F), new Vector2(1875.302F, -194.766006F)); + builder.AddCubicBezier(new Vector2(1866.15002F, -199.529999F), new Vector2(1855.08997F, -201.916F), new Vector2(1842.12598F, -201.916F)); + builder.AddLine(new Vector2(1789.78796F, -201.916F)); + builder.AddLine(new Vector2(1789.78796F, -166.738007F)); + builder.AddLine(new Vector2(1833.54602F, -166.738007F)); + builder.AddCubicBezier(new Vector2(1840.79004F, -166.738007F), new Vector2(1846.70203F, -164.878998F), new Vector2(1851.27795F, -161.160995F)); + builder.AddCubicBezier(new Vector2(1855.854F, -157.442993F), new Vector2(1858.14197F, -151.960007F), new Vector2(1858.14197F, -144.716003F)); + builder.AddCubicBezier(new Vector2(1858.14197F, -137.087997F), new Vector2(1855.854F, -131.462006F), new Vector2(1851.27795F, -127.842003F)); + builder.AddCubicBezier(new Vector2(1846.70203F, -124.218002F), new Vector2(1840.79004F, -122.407997F), new Vector2(1833.54602F, -122.407997F)); + builder.AddLine(new Vector2(1789.78796F, -122.407997F)); + builder.AddLine(new Vector2(1789.78796F, -88.0879974F)); + builder.AddLine(new Vector2(1837.26404F, -88.0879974F)); + builder.AddCubicBezier(new Vector2(1842.98401F, -88.0879974F), new Vector2(1847.89099F, -86.9440002F), new Vector2(1851.99304F, -84.6559982F)); + builder.AddCubicBezier(new Vector2(1856.09094F, -82.3679962F), new Vector2(1859.28601F, -79.2220001F), new Vector2(1861.57397F, -75.2180023F)); + builder.AddCubicBezier(new Vector2(1863.86206F, -71.2139969F), new Vector2(1865.00598F, -66.7320023F), new Vector2(1865.00598F, -61.776001F)); + builder.AddCubicBezier(new Vector2(1865.00598F, -54.1479988F), new Vector2(1862.526F, -47.8069992F), new Vector2(1857.56995F, -42.757F)); + builder.AddCubicBezier(new Vector2(1852.60999F, -37.7029991F), new Vector2(1845.84399F, -35.1780014F), new Vector2(1837.26404F, -35.1780014F)); + builder.AddLine(new Vector2(1789.78796F, -35.1780014F)); + builder.AddLine(new Vector2(1789.78796F, 0F)); + builder.AddLine(new Vector2(1841.55396F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0248() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(1664.52002F, -36.3219986F)); + builder.AddLine(new Vector2(1664.52002F, -72.9300003F)); + builder.AddLine(new Vector2(1554.69604F, -72.9300003F)); + builder.AddLine(new Vector2(1554.69604F, -36.3219986F)); + builder.AddLine(new Vector2(1664.52002F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(1555.55396F, 0F)); + builder.AddLine(new Vector2(1617.32996F, -167.309998F)); + builder.AddLine(new Vector2(1600.74194F, -167.309998F)); + builder.AddLine(new Vector2(1661.08801F, 0F)); + builder.AddLine(new Vector2(1708.84998F, 0F)); + builder.AddLine(new Vector2(1629.62805F, -201.916F)); + builder.AddLine(new Vector2(1588.72998F, -201.916F)); + builder.AddLine(new Vector2(1508.93604F, 0F)); + builder.AddLine(new Vector2(1555.55396F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0249() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(1446.302F, -4.43300009F)); + builder.AddCubicBezier(new Vector2(1458.88599F, -9.4829998F), new Vector2(1469.94202F, -16.5879993F), new Vector2(1479.47803F, -25.7399998F)); + builder.AddLine(new Vector2(1448.87598F, -56.3419991F)); + builder.AddCubicBezier(new Vector2(1443.53601F, -50.4300003F), new Vector2(1437.052F, -45.9029999F), new Vector2(1429.42798F, -42.757F)); + builder.AddCubicBezier(new Vector2(1421.80005F, -39.6110001F), new Vector2(1412.83997F, -38.0379982F), new Vector2(1402.54395F, -38.0379982F)); + builder.AddCubicBezier(new Vector2(1393.77197F, -38.0379982F), new Vector2(1385.76404F, -39.5130005F), new Vector2(1378.52002F, -42.4710007F)); + builder.AddCubicBezier(new Vector2(1371.27197F, -45.4249992F), new Vector2(1364.97998F, -49.7150002F), new Vector2(1359.64404F, -55.3409996F)); + builder.AddCubicBezier(new Vector2(1354.30396F, -60.9630013F), new Vector2(1350.20605F, -67.6389999F), new Vector2(1347.34595F, -75.3610001F)); + builder.AddCubicBezier(new Vector2(1344.48596F, -83.0830002F), new Vector2(1343.05603F, -91.7080002F), new Vector2(1343.05603F, -101.244003F)); + builder.AddCubicBezier(new Vector2(1343.05603F, -110.396004F), new Vector2(1344.48596F, -118.877998F), new Vector2(1347.34595F, -126.697998F)); + builder.AddCubicBezier(new Vector2(1350.20605F, -134.514008F), new Vector2(1354.30396F, -141.186005F), new Vector2(1359.64404F, -146.718002F)); + builder.AddCubicBezier(new Vector2(1364.97998F, -152.246002F), new Vector2(1371.27197F, -156.487F), new Vector2(1378.52002F, -159.445007F)); + builder.AddCubicBezier(new Vector2(1385.76404F, -162.399002F), new Vector2(1393.77197F, -163.878006F), new Vector2(1402.54395F, -163.878006F)); + builder.AddCubicBezier(new Vector2(1412.45605F, -163.878006F), new Vector2(1421.17896F, -162.255997F), new Vector2(1428.71301F, -159.016006F)); + builder.AddCubicBezier(new Vector2(1436.24304F, -155.772003F), new Vector2(1442.58398F, -151.294006F), new Vector2(1447.73206F, -145.574005F)); + builder.AddLine(new Vector2(1478.04797F, -176.175995F)); + builder.AddCubicBezier(new Vector2(1468.70398F, -185.136002F), new Vector2(1457.78699F, -192.192001F), new Vector2(1445.30103F, -197.339996F)); + builder.AddCubicBezier(new Vector2(1432.81104F, -202.488007F), new Vector2(1418.56006F, -205.061996F), new Vector2(1402.54395F, -205.061996F)); + builder.AddCubicBezier(new Vector2(1387.28796F, -205.061996F), new Vector2(1373.27405F, -202.438995F), new Vector2(1360.50195F, -197.197006F)); + builder.AddCubicBezier(new Vector2(1347.72595F, -191.951004F), new Vector2(1336.52295F, -184.658005F), new Vector2(1326.89697F, -175.317993F)); + builder.AddCubicBezier(new Vector2(1317.26697F, -165.973999F), new Vector2(1309.78198F, -154.962997F), new Vector2(1304.44604F, -142.285004F)); + builder.AddCubicBezier(new Vector2(1299.10596F, -129.602997F), new Vector2(1296.43799F, -115.924004F), new Vector2(1296.43799F, -101.244003F)); + builder.AddCubicBezier(new Vector2(1296.43799F, -86.5599976F), new Vector2(1299.10596F, -72.8809967F), new Vector2(1304.44604F, -60.2029991F)); + builder.AddCubicBezier(new Vector2(1309.78198F, -47.5209999F), new Vector2(1317.26697F, -36.4160004F), new Vector2(1326.89697F, -26.8840008F)); + builder.AddCubicBezier(new Vector2(1336.52295F, -17.3479996F), new Vector2(1347.77502F, -9.96100044F), new Vector2(1360.64502F, -4.71899986F)); + builder.AddCubicBezier(new Vector2(1373.51501F, 0.523000002F), new Vector2(1387.47998F, 3.14599991F), new Vector2(1402.54395F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(1419.13196F, 3.14599991F), new Vector2(1433.71802F, 0.616999984F), new Vector2(1446.302F, -4.43300009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0250() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(1226.93994F, -36.3219986F)); + builder.AddLine(new Vector2(1226.93994F, -72.9300003F)); + builder.AddLine(new Vector2(1117.11597F, -72.9300003F)); + builder.AddLine(new Vector2(1117.11597F, -36.3219986F)); + builder.AddLine(new Vector2(1226.93994F, -36.3219986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(1117.974F, 0F)); + builder.AddLine(new Vector2(1179.75F, -167.309998F)); + builder.AddLine(new Vector2(1163.16199F, -167.309998F)); + builder.AddLine(new Vector2(1223.50806F, 0F)); + builder.AddLine(new Vector2(1271.27002F, 0F)); + builder.AddLine(new Vector2(1192.04797F, -201.916F)); + builder.AddLine(new Vector2(1151.15002F, -201.916F)); + builder.AddLine(new Vector2(1071.35596F, 0F)); + builder.AddLine(new Vector2(1117.974F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0251() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(1031.88794F, -117.260002F)); + builder.AddLine(new Vector2(1031.88794F, -148.720001F)); + builder.AddLine(new Vector2(872.013977F, -148.720001F)); + builder.AddLine(new Vector2(872.013977F, -117.260002F)); + builder.AddLine(new Vector2(1031.88794F, -117.260002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(915.486023F, 0F)); + builder.AddLine(new Vector2(948.661987F, -201.916F)); + builder.AddLine(new Vector2(912.911987F, -201.916F)); + builder.AddLine(new Vector2(879.450012F, 0F)); + builder.AddLine(new Vector2(915.486023F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(1022.45001F, -57.4860001F)); + builder.AddLine(new Vector2(1022.45001F, -88.9459991F)); + builder.AddLine(new Vector2(862.289978F, -88.9459991F)); + builder.AddLine(new Vector2(862.289978F, -57.4860001F)); + builder.AddLine(new Vector2(1022.45001F, -57.4860001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(979.549988F, 0F)); + builder.AddLine(new Vector2(1013.29797F, -201.916F)); + builder.AddLine(new Vector2(977.262024F, -201.916F)); + builder.AddLine(new Vector2(944.085999F, 0F)); + builder.AddLine(new Vector2(979.549988F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0252() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(818.531982F, 0F)); + builder.AddLine(new Vector2(818.531982F, -38.3240013F)); + builder.AddLine(new Vector2(710.995972F, -38.3240013F)); + builder.AddLine(new Vector2(672.958008F, -25.1679993F)); + builder.AddLine(new Vector2(672.958008F, 0F)); + builder.AddLine(new Vector2(818.531982F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(728.442017F, -24.5960007F)); + builder.AddLine(new Vector2(782.495972F, -78.0780029F)); + builder.AddCubicBezier(new Vector2(790.312012F, -85.8939972F), new Vector2(796.554993F, -93.0439987F), new Vector2(801.229004F, -99.5279999F)); + builder.AddCubicBezier(new Vector2(805.898987F, -106.008003F), new Vector2(809.237F, -112.635002F), new Vector2(811.239014F, -119.404999F)); + builder.AddCubicBezier(new Vector2(813.241028F, -126.170998F), new Vector2(814.242004F, -133.656006F), new Vector2(814.242004F, -141.856003F)); + builder.AddCubicBezier(new Vector2(814.242004F, -154.628006F), new Vector2(811.476013F, -165.781998F), new Vector2(805.947998F, -175.317993F)); + builder.AddCubicBezier(new Vector2(800.416016F, -184.850006F), new Vector2(792.505981F, -192.192001F), new Vector2(782.210022F, -197.339996F)); + builder.AddCubicBezier(new Vector2(771.914001F, -202.488007F), new Vector2(759.804016F, -205.061996F), new Vector2(745.888F, -205.061996F)); + builder.AddCubicBezier(new Vector2(729.679993F, -205.061996F), new Vector2(715.429016F, -201.630005F), new Vector2(703.130981F, -194.766006F)); + builder.AddCubicBezier(new Vector2(690.833008F, -187.901993F), new Vector2(680.58197F, -177.699997F), new Vector2(672.385986F, -164.164001F)); + builder.AddLine(new Vector2(702.702026F, -137.852005F)); + builder.AddCubicBezier(new Vector2(708.609985F, -147.576004F), new Vector2(714.758972F, -154.582993F), new Vector2(721.148987F, -158.873001F)); + builder.AddCubicBezier(new Vector2(727.534973F, -163.162994F), new Vector2(734.734009F, -165.307999F), new Vector2(742.742004F, -165.307999F)); + builder.AddCubicBezier(new Vector2(750.75F, -165.307999F), new Vector2(757.278992F, -163.065002F), new Vector2(762.333008F, -158.587006F)); + builder.AddCubicBezier(new Vector2(767.382996F, -154.104996F), new Vector2(769.911987F, -147.955994F), new Vector2(769.911987F, -140.139999F)); + builder.AddCubicBezier(new Vector2(769.911987F, -136.707993F), new Vector2(769.291016F, -133.227005F), new Vector2(768.052979F, -129.701004F)); + builder.AddCubicBezier(new Vector2(766.810974F, -126.170998F), new Vector2(764.715027F, -122.453003F), new Vector2(761.760986F, -118.546997F)); + builder.AddCubicBezier(new Vector2(758.802979F, -114.637001F), new Vector2(755.039978F, -110.204002F), new Vector2(750.463989F, -105.248001F)); + builder.AddLine(new Vector2(672.958008F, -25.1679993F)); + builder.AddLine(new Vector2(728.442017F, -24.5960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0253() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(619.190002F, -163.591995F)); + builder.AddLine(new Vector2(619.190002F, -201.916F)); + builder.AddLine(new Vector2(538.252014F, -201.916F)); + builder.AddLine(new Vector2(538.252014F, -163.591995F)); + builder.AddLine(new Vector2(619.190002F, -163.591995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(622.049988F, 0F)); + builder.AddLine(new Vector2(622.049988F, -201.916F)); + builder.AddLine(new Vector2(577.14801F, -201.916F)); + builder.AddLine(new Vector2(577.14801F, 0F)); + builder.AddLine(new Vector2(622.049988F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0254() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(459.60199F, -163.591995F)); + builder.AddLine(new Vector2(495.06601F, -176.748001F)); + builder.AddLine(new Vector2(495.06601F, -201.916F)); + builder.AddLine(new Vector2(364.649994F, -201.916F)); + builder.AddLine(new Vector2(364.649994F, -163.591995F)); + builder.AddLine(new Vector2(459.60199F, -163.591995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(444.15799F, -118.975998F)); + builder.AddLine(new Vector2(495.06601F, -176.748001F)); + builder.AddLine(new Vector2(444.444F, -176.462006F)); + builder.AddLine(new Vector2(395.252014F, -119.262001F)); + builder.AddLine(new Vector2(395.252014F, -93.8079987F)); + builder.AddLine(new Vector2(444.15799F, -118.975998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(461.604004F, -5.57700014F)); + builder.AddCubicBezier(new Vector2(473.424011F, -11.3909998F), new Vector2(482.575989F, -19.3990002F), new Vector2(489.059998F, -29.6009998F)); + builder.AddCubicBezier(new Vector2(495.540009F, -39.7989998F), new Vector2(498.783997F, -51.6679993F), new Vector2(498.783997F, -65.2080002F)); + builder.AddCubicBezier(new Vector2(498.783997F, -77.2200012F), new Vector2(496.39801F, -87.6589966F), new Vector2(491.634003F, -96.5250015F)); + builder.AddCubicBezier(new Vector2(486.865997F, -105.390999F), new Vector2(480.337006F, -112.254997F), new Vector2(472.042999F, -117.116997F)); + builder.AddCubicBezier(new Vector2(463.748993F, -121.978996F), new Vector2(454.45401F, -124.410004F), new Vector2(444.15799F, -124.410004F)); + builder.AddCubicBezier(new Vector2(439.962006F, -124.410004F), new Vector2(435.480011F, -123.883003F), new Vector2(430.716003F, -122.836998F)); + builder.AddCubicBezier(new Vector2(425.947998F, -121.787003F), new Vector2(420.799988F, -120.5F), new Vector2(415.272003F, -118.975998F)); + builder.AddLine(new Vector2(395.252014F, -93.8079987F)); + builder.AddCubicBezier(new Vector2(397.920013F, -94.7600021F), new Vector2(401.257996F, -95.4749985F), new Vector2(405.261993F, -95.9530029F)); + builder.AddCubicBezier(new Vector2(409.265991F, -96.427002F), new Vector2(413.078003F, -96.6679993F), new Vector2(416.701996F, -96.6679993F)); + builder.AddCubicBezier(new Vector2(424.325989F, -96.6679993F), new Vector2(430.953003F, -95.4749985F), new Vector2(436.57901F, -93.0930023F)); + builder.AddCubicBezier(new Vector2(442.200989F, -90.7070007F), new Vector2(446.540009F, -87.3239975F), new Vector2(449.59201F, -82.9400024F)); + builder.AddCubicBezier(new Vector2(452.640015F, -78.552002F), new Vector2(454.167999F, -73.1179962F), new Vector2(454.167999F, -66.6380005F)); + builder.AddCubicBezier(new Vector2(454.167999F, -60.3460007F), new Vector2(452.640015F, -54.9570007F), new Vector2(449.59201F, -50.4790001F)); + builder.AddCubicBezier(new Vector2(446.540009F, -45.9970016F), new Vector2(442.441986F, -42.5159988F), new Vector2(437.294006F, -40.0400009F)); + builder.AddCubicBezier(new Vector2(432.145996F, -37.5600014F), new Vector2(426.140015F, -36.3219986F), new Vector2(419.276001F, -36.3219986F)); + builder.AddCubicBezier(new Vector2(411.64801F, -36.3219986F), new Vector2(404.306F, -37.9399986F), new Vector2(397.253998F, -41.1839981F)); + builder.AddCubicBezier(new Vector2(390.197998F, -44.4239998F), new Vector2(384.858002F, -48.7140007F), new Vector2(381.238007F, -54.0540009F)); + builder.AddLine(new Vector2(352.06601F, -24.882F)); + builder.AddCubicBezier(new Vector2(360.074005F, -15.7299995F), new Vector2(369.891998F, -8.76799965F), new Vector2(381.523987F, -4.00400019F)); + builder.AddCubicBezier(new Vector2(393.152008F, 0.75999999F), new Vector2(406.022003F, 3.14599991F), new Vector2(420.134003F, 3.14599991F)); + builder.AddCubicBezier(new Vector2(435.958008F, 3.14599991F), new Vector2(449.779999F, 0.237000003F), new Vector2(461.604004F, -5.57700014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0255() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(300.872009F, -163.591995F)); + builder.AddLine(new Vector2(300.872009F, -201.916F)); + builder.AddLine(new Vector2(219.934006F, -201.916F)); + builder.AddLine(new Vector2(219.934006F, -163.591995F)); + builder.AddLine(new Vector2(300.872009F, -163.591995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(303.731995F, 0F)); + builder.AddLine(new Vector2(303.731995F, -201.916F)); + builder.AddLine(new Vector2(258.829987F, -201.916F)); + builder.AddLine(new Vector2(258.829987F, 0F)); + builder.AddLine(new Vector2(303.731995F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0256() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(179.322006F, -117.260002F)); + builder.AddLine(new Vector2(179.322006F, -148.720001F)); + builder.AddLine(new Vector2(19.448F, -148.720001F)); + builder.AddLine(new Vector2(19.448F, -117.260002F)); + builder.AddLine(new Vector2(179.322006F, -117.260002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(62.9199982F, 0F)); + builder.AddLine(new Vector2(96.0960007F, -201.916F)); + builder.AddLine(new Vector2(60.3460007F, -201.916F)); + builder.AddLine(new Vector2(26.8840008F, 0F)); + builder.AddLine(new Vector2(62.9199982F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(169.884003F, -57.4860001F)); + builder.AddLine(new Vector2(169.884003F, -88.9459991F)); + builder.AddLine(new Vector2(9.72399998F, -88.9459991F)); + builder.AddLine(new Vector2(9.72399998F, -57.4860001F)); + builder.AddLine(new Vector2(169.884003F, -57.4860001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(126.984001F, 0F)); + builder.AddLine(new Vector2(160.731995F, -201.916F)); + builder.AddLine(new Vector2(124.695999F, -201.916F)); + builder.AddLine(new Vector2(91.5199966F, 0F)); + builder.AddLine(new Vector2(126.984001F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0257() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(485.18399F, 0F)); + builder.AddLine(new Vector2(485.18399F, -27.2159996F)); + builder.AddLine(new Vector2(476.559998F, -27.2159996F)); + builder.AddLine(new Vector2(476.559998F, 0F)); + builder.AddLine(new Vector2(485.18399F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(503.216003F, 0F)); + builder.AddLine(new Vector2(503.216003F, -17.4160004F)); + builder.AddCubicBezier(new Vector2(503.216003F, -19.2819996F), new Vector2(502.768005F, -21.0090008F), new Vector2(501.872009F, -22.5960007F)); + builder.AddCubicBezier(new Vector2(500.976013F, -24.1819992F), new Vector2(499.743988F, -25.4419994F), new Vector2(498.175995F, -26.3759995F)); + builder.AddCubicBezier(new Vector2(496.608002F, -27.309F), new Vector2(494.834015F, -27.7759991F), new Vector2(492.855988F, -27.7759991F)); + builder.AddCubicBezier(new Vector2(490.765015F, -27.7759991F), new Vector2(488.889008F, -27.3369999F), new Vector2(487.227997F, -26.4599991F)); + builder.AddCubicBezier(new Vector2(485.56601F, -25.5820007F), new Vector2(484.26001F, -24.3409996F), new Vector2(483.308014F, -22.7360001F)); + builder.AddCubicBezier(new Vector2(482.355988F, -21.1299992F), new Vector2(481.880005F, -19.2639999F), new Vector2(481.880005F, -17.1359997F)); + builder.AddLine(new Vector2(485.18399F, -15.5120001F)); + builder.AddCubicBezier(new Vector2(485.18399F, -16.4449997F), new Vector2(485.389008F, -17.2660007F), new Vector2(485.799988F, -17.9759998F)); + builder.AddCubicBezier(new Vector2(486.209991F, -18.6849995F), new Vector2(486.769989F, -19.2360001F), new Vector2(487.480011F, -19.6280003F)); + builder.AddCubicBezier(new Vector2(488.188995F, -20.0200005F), new Vector2(488.992004F, -20.2159996F), new Vector2(489.888F, -20.2159996F)); + builder.AddCubicBezier(new Vector2(491.231995F, -20.2159996F), new Vector2(492.35199F, -19.7770004F), new Vector2(493.247986F, -18.8999996F)); + builder.AddCubicBezier(new Vector2(494.144012F, -18.0219994F), new Vector2(494.59201F, -16.8929996F), new Vector2(494.59201F, -15.5120001F)); + builder.AddLine(new Vector2(494.59201F, 0F)); + builder.AddLine(new Vector2(503.216003F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0258() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(470.567993F, 0F)); + builder.AddLine(new Vector2(470.567993F, -27.2159996F)); + builder.AddLine(new Vector2(462.112F, -27.2159996F)); + builder.AddLine(new Vector2(462.112F, -20.552F)); + builder.AddLine(new Vector2(463.399994F, -14F)); + builder.AddLine(new Vector2(462.112F, -7.33599997F)); + builder.AddLine(new Vector2(462.112F, 0F)); + builder.AddLine(new Vector2(470.567993F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(453.291992F, -8.03600025F)); + builder.AddCubicBezier(new Vector2(452.377014F, -8.57699966F), new Vector2(451.648987F, -9.33300018F), new Vector2(451.108002F, -10.3039999F)); + builder.AddCubicBezier(new Vector2(450.56601F, -11.2740002F), new Vector2(450.29599F, -12.3760004F), new Vector2(450.29599F, -13.6079998F)); + builder.AddCubicBezier(new Vector2(450.29599F, -14.8400002F), new Vector2(450.56601F, -15.941F), new Vector2(451.108002F, -16.9120007F)); + builder.AddCubicBezier(new Vector2(451.648987F, -17.882F), new Vector2(452.377014F, -18.6380005F), new Vector2(453.291992F, -19.1800003F)); + builder.AddCubicBezier(new Vector2(454.205994F, -19.7210007F), new Vector2(455.242004F, -19.9920006F), new Vector2(456.399994F, -19.9920006F)); + builder.AddCubicBezier(new Vector2(457.593994F, -19.9920006F), new Vector2(458.65799F, -19.7210007F), new Vector2(459.59201F, -19.1800003F)); + builder.AddCubicBezier(new Vector2(460.524994F, -18.6380005F), new Vector2(461.234009F, -17.8920002F), new Vector2(461.720001F, -16.9400005F)); + builder.AddCubicBezier(new Vector2(462.204987F, -15.9879999F), new Vector2(462.447998F, -14.8959999F), new Vector2(462.447998F, -13.6639996F)); + builder.AddCubicBezier(new Vector2(462.447998F, -11.7600002F), new Vector2(461.897003F, -10.21F), new Vector2(460.79599F, -9.01599979F)); + builder.AddCubicBezier(new Vector2(459.694F, -7.8210001F), new Vector2(458.229004F, -7.22399998F), new Vector2(456.399994F, -7.22399998F)); + builder.AddCubicBezier(new Vector2(455.242004F, -7.22399998F), new Vector2(454.205994F, -7.49399996F), new Vector2(453.291992F, -8.03600025F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(459.619995F, -0.504000008F)); + builder.AddCubicBezier(new Vector2(461.093994F, -1.21300006F), new Vector2(462.289001F, -2.19300008F), new Vector2(463.20401F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(464.118011F, -4.69399977F), new Vector2(464.631989F, -6.12200022F), new Vector2(464.743988F, -7.72800016F)); + builder.AddLine(new Vector2(464.743988F, -19.4880009F)); + builder.AddCubicBezier(new Vector2(464.631989F, -21.0930004F), new Vector2(464.109009F, -22.5209999F), new Vector2(463.175995F, -23.7719994F)); + builder.AddCubicBezier(new Vector2(462.242004F, -25.0219994F), new Vector2(461.037994F, -26.0020008F), new Vector2(459.563995F, -26.7119999F)); + builder.AddCubicBezier(new Vector2(458.088989F, -27.4209995F), new Vector2(456.437012F, -27.7759991F), new Vector2(454.608002F, -27.7759991F)); + builder.AddCubicBezier(new Vector2(452.105988F, -27.7759991F), new Vector2(449.876007F, -27.1690006F), new Vector2(447.915985F, -25.9559994F)); + builder.AddCubicBezier(new Vector2(445.955994F, -24.7420006F), new Vector2(444.406006F, -23.0620003F), new Vector2(443.268005F, -20.9160004F)); + builder.AddCubicBezier(new Vector2(442.128998F, -18.7689991F), new Vector2(441.559998F, -16.3330002F), new Vector2(441.559998F, -13.6079998F)); + builder.AddCubicBezier(new Vector2(441.559998F, -10.882F), new Vector2(442.128998F, -8.46500015F), new Vector2(443.268005F, -6.35599995F)); + builder.AddCubicBezier(new Vector2(444.406006F, -4.24599981F), new Vector2(445.964996F, -2.56599998F), new Vector2(447.944F, -1.31599998F)); + builder.AddCubicBezier(new Vector2(449.921997F, -0.0649999976F), new Vector2(452.144012F, 0.560000002F), new Vector2(454.608002F, 0.560000002F)); + builder.AddCubicBezier(new Vector2(456.473999F, 0.560000002F), new Vector2(458.144989F, 0.204999998F), new Vector2(459.619995F, -0.504000008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0259() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(424.59201F, 11.4799995F)); + builder.AddLine(new Vector2(429.40799F, 0.167999998F)); + builder.AddLine(new Vector2(423.920013F, -6.21600008F)); + builder.AddLine(new Vector2(415.743988F, 11.4799995F)); + builder.AddLine(new Vector2(424.59201F, 11.4799995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(429.40799F, 0.167999998F)); + builder.AddLine(new Vector2(441.056F, -27.2159996F)); + builder.AddLine(new Vector2(431.76001F, -27.2159996F)); + builder.AddLine(new Vector2(424.536011F, -5.54400015F)); + builder.AddLine(new Vector2(427.951996F, -5.54400015F)); + builder.AddLine(new Vector2(420.839996F, -27.2159996F)); + builder.AddLine(new Vector2(411.544006F, -27.2159996F)); + builder.AddLine(new Vector2(422.743988F, 0.167999998F)); + builder.AddLine(new Vector2(429.40799F, 0.167999998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0260() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(390.936005F, 0F)); + builder.AddLine(new Vector2(390.936005F, -27.2159996F)); + builder.AddLine(new Vector2(382.312012F, -27.2159996F)); + builder.AddLine(new Vector2(382.312012F, 0F)); + builder.AddLine(new Vector2(390.936005F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(408.967987F, 0F)); + builder.AddLine(new Vector2(408.967987F, -17.4160004F)); + builder.AddCubicBezier(new Vector2(408.967987F, -19.2819996F), new Vector2(408.519989F, -21.0090008F), new Vector2(407.623993F, -22.5960007F)); + builder.AddCubicBezier(new Vector2(406.727997F, -24.1819992F), new Vector2(405.496002F, -25.4419994F), new Vector2(403.928009F, -26.3759995F)); + builder.AddCubicBezier(new Vector2(402.359985F, -27.309F), new Vector2(400.585999F, -27.7759991F), new Vector2(398.608002F, -27.7759991F)); + builder.AddCubicBezier(new Vector2(396.516998F, -27.7759991F), new Vector2(394.640991F, -27.3369999F), new Vector2(392.980011F, -26.4599991F)); + builder.AddCubicBezier(new Vector2(391.317993F, -25.5820007F), new Vector2(390.011993F, -24.3409996F), new Vector2(389.059998F, -22.7360001F)); + builder.AddCubicBezier(new Vector2(388.108002F, -21.1299992F), new Vector2(387.631989F, -19.2639999F), new Vector2(387.631989F, -17.1359997F)); + builder.AddLine(new Vector2(390.936005F, -15.5120001F)); + builder.AddCubicBezier(new Vector2(390.936005F, -16.4449997F), new Vector2(391.140991F, -17.2660007F), new Vector2(391.552002F, -17.9759998F)); + builder.AddCubicBezier(new Vector2(391.962006F, -18.6849995F), new Vector2(392.522003F, -19.2360001F), new Vector2(393.231995F, -19.6280003F)); + builder.AddCubicBezier(new Vector2(393.94101F, -20.0200005F), new Vector2(394.743988F, -20.2159996F), new Vector2(395.640015F, -20.2159996F)); + builder.AddCubicBezier(new Vector2(396.984009F, -20.2159996F), new Vector2(398.104004F, -19.7770004F), new Vector2(399F, -18.8999996F)); + builder.AddCubicBezier(new Vector2(399.895996F, -18.0219994F), new Vector2(400.343994F, -16.8929996F), new Vector2(400.343994F, -15.5120001F)); + builder.AddLine(new Vector2(400.343994F, 0F)); + builder.AddLine(new Vector2(408.967987F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0261() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(376.376007F, -10.5279999F)); + builder.AddLine(new Vector2(376.376007F, -18.0319996F)); + builder.AddLine(new Vector2(356.440002F, -18.0319996F)); + builder.AddLine(new Vector2(356.440002F, -10.5279999F)); + builder.AddLine(new Vector2(376.376007F, -10.5279999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0262() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(333.032013F, 0F)); + builder.AddLine(new Vector2(333.032013F, -27.2159996F)); + builder.AddLine(new Vector2(324.40799F, -27.2159996F)); + builder.AddLine(new Vector2(324.40799F, 0F)); + builder.AddLine(new Vector2(333.032013F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(351.063995F, 0F)); + builder.AddLine(new Vector2(351.063995F, -17.4160004F)); + builder.AddCubicBezier(new Vector2(351.063995F, -19.2819996F), new Vector2(350.615997F, -21.0090008F), new Vector2(349.720001F, -22.5960007F)); + builder.AddCubicBezier(new Vector2(348.824005F, -24.1819992F), new Vector2(347.59201F, -25.4419994F), new Vector2(346.023987F, -26.3759995F)); + builder.AddCubicBezier(new Vector2(344.455994F, -27.309F), new Vector2(342.682007F, -27.7759991F), new Vector2(340.70401F, -27.7759991F)); + builder.AddCubicBezier(new Vector2(338.613007F, -27.7759991F), new Vector2(336.737F, -27.3369999F), new Vector2(335.075989F, -26.4599991F)); + builder.AddCubicBezier(new Vector2(333.414001F, -25.5820007F), new Vector2(332.108002F, -24.3409996F), new Vector2(331.156006F, -22.7360001F)); + builder.AddCubicBezier(new Vector2(330.20401F, -21.1299992F), new Vector2(329.727997F, -19.2639999F), new Vector2(329.727997F, -17.1359997F)); + builder.AddLine(new Vector2(333.032013F, -15.5120001F)); + builder.AddCubicBezier(new Vector2(333.032013F, -16.4449997F), new Vector2(333.237F, -17.2660007F), new Vector2(333.64801F, -17.9759998F)); + builder.AddCubicBezier(new Vector2(334.058014F, -18.6849995F), new Vector2(334.618011F, -19.2360001F), new Vector2(335.328003F, -19.6280003F)); + builder.AddCubicBezier(new Vector2(336.036987F, -20.0200005F), new Vector2(336.839996F, -20.2159996F), new Vector2(337.735992F, -20.2159996F)); + builder.AddCubicBezier(new Vector2(339.079987F, -20.2159996F), new Vector2(340.200012F, -19.7770004F), new Vector2(341.096008F, -18.8999996F)); + builder.AddCubicBezier(new Vector2(341.992004F, -18.0219994F), new Vector2(342.440002F, -16.8929996F), new Vector2(342.440002F, -15.5120001F)); + builder.AddLine(new Vector2(342.440002F, 0F)); + builder.AddLine(new Vector2(351.063995F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0263() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(302.119995F, -8.00800037F)); + builder.AddCubicBezier(new Vector2(301.186005F, -8.52999973F), new Vector2(300.458008F, -9.28600025F), new Vector2(299.936005F, -10.276F)); + builder.AddCubicBezier(new Vector2(299.412994F, -11.2650003F), new Vector2(299.152008F, -12.3940001F), new Vector2(299.152008F, -13.6639996F)); + builder.AddCubicBezier(new Vector2(299.152008F, -14.8579998F), new Vector2(299.412994F, -15.941F), new Vector2(299.936005F, -16.9120007F)); + builder.AddCubicBezier(new Vector2(300.458008F, -17.882F), new Vector2(301.186005F, -18.6380005F), new Vector2(302.119995F, -19.1800003F)); + builder.AddCubicBezier(new Vector2(303.053009F, -19.7210007F), new Vector2(304.117004F, -19.9920006F), new Vector2(305.312012F, -19.9920006F)); + builder.AddCubicBezier(new Vector2(306.506012F, -19.9920006F), new Vector2(307.561005F, -19.7210007F), new Vector2(308.476013F, -19.1800003F)); + builder.AddCubicBezier(new Vector2(309.390015F, -18.6380005F), new Vector2(310.109009F, -17.8920002F), new Vector2(310.631989F, -16.9400005F)); + builder.AddCubicBezier(new Vector2(311.153992F, -15.9879999F), new Vector2(311.415985F, -14.8959999F), new Vector2(311.415985F, -13.6639996F)); + builder.AddCubicBezier(new Vector2(311.415985F, -12.3940001F), new Vector2(311.164001F, -11.2650003F), new Vector2(310.660004F, -10.276F)); + builder.AddCubicBezier(new Vector2(310.156006F, -9.28600025F), new Vector2(309.437012F, -8.52999973F), new Vector2(308.503998F, -8.00800037F)); + builder.AddCubicBezier(new Vector2(307.570007F, -7.48500013F), new Vector2(306.506012F, -7.22399998F), new Vector2(305.312012F, -7.22399998F)); + builder.AddCubicBezier(new Vector2(304.117004F, -7.22399998F), new Vector2(303.053009F, -7.48500013F), new Vector2(302.119995F, -8.00800037F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(312.928009F, -1.28799999F)); + builder.AddCubicBezier(new Vector2(315.167999F, -2.55699992F), new Vector2(316.94101F, -4.26499987F), new Vector2(318.247986F, -6.41200018F)); + builder.AddCubicBezier(new Vector2(319.553986F, -8.55799961F), new Vector2(320.208008F, -10.9940004F), new Vector2(320.208008F, -13.7200003F)); + builder.AddCubicBezier(new Vector2(320.208008F, -16.3700008F), new Vector2(319.553986F, -18.7689991F), new Vector2(318.247986F, -20.9160004F)); + builder.AddCubicBezier(new Vector2(316.94101F, -23.0620003F), new Vector2(315.15799F, -24.7520008F), new Vector2(312.899994F, -25.9839993F)); + builder.AddCubicBezier(new Vector2(310.640991F, -27.2159996F), new Vector2(308.112F, -27.8320007F), new Vector2(305.312012F, -27.8320007F)); + builder.AddCubicBezier(new Vector2(302.437012F, -27.8320007F), new Vector2(299.880005F, -27.2059994F), new Vector2(297.640015F, -25.9559994F)); + builder.AddCubicBezier(new Vector2(295.399994F, -24.7049999F), new Vector2(293.635986F, -23.0160007F), new Vector2(292.347992F, -20.8880005F)); + builder.AddCubicBezier(new Vector2(291.059998F, -18.7600002F), new Vector2(290.415985F, -16.3700008F), new Vector2(290.415985F, -13.7200003F)); + builder.AddCubicBezier(new Vector2(290.415985F, -11.0319996F), new Vector2(291.069F, -8.60499954F), new Vector2(292.376007F, -6.44000006F)); + builder.AddCubicBezier(new Vector2(293.682007F, -4.27400017F), new Vector2(295.455994F, -2.55699992F), new Vector2(297.696014F, -1.28799999F)); + builder.AddCubicBezier(new Vector2(299.936005F, -0.0179999992F), new Vector2(302.473999F, 0.615999997F), new Vector2(305.312012F, 0.615999997F)); + builder.AddCubicBezier(new Vector2(308.148987F, 0.615999997F), new Vector2(310.687988F, -0.0179999992F), new Vector2(312.928009F, -1.28799999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0264() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(281.231995F, -0.532000005F)); + builder.AddCubicBezier(new Vector2(283.135986F, -1.29700005F), new Vector2(284.76001F, -2.48200011F), new Vector2(286.104004F, -4.08799982F)); + builder.AddLine(new Vector2(281.343994F, -8.79199982F)); + builder.AddCubicBezier(new Vector2(280.522003F, -7.8579998F), new Vector2(279.570007F, -7.15799999F), new Vector2(278.488007F, -6.69199991F)); + builder.AddCubicBezier(new Vector2(277.404999F, -6.2249999F), new Vector2(276.209991F, -5.9920001F), new Vector2(274.903992F, -5.9920001F)); + builder.AddCubicBezier(new Vector2(273.447998F, -5.9920001F), new Vector2(272.187988F, -6.30000019F), new Vector2(271.123993F, -6.91599989F)); + builder.AddCubicBezier(new Vector2(270.059998F, -7.53200006F), new Vector2(269.238007F, -8.41800022F), new Vector2(268.660004F, -9.57600021F)); + builder.AddCubicBezier(new Vector2(268.080994F, -10.7329998F), new Vector2(267.791992F, -12.0959997F), new Vector2(267.791992F, -13.6639996F)); + builder.AddCubicBezier(new Vector2(267.791992F, -15.2320004F), new Vector2(268.062012F, -16.5760002F), new Vector2(268.604004F, -17.6959991F)); + builder.AddCubicBezier(new Vector2(269.144989F, -18.816F), new Vector2(269.910004F, -19.6930008F), new Vector2(270.899994F, -20.3279991F)); + builder.AddCubicBezier(new Vector2(271.889008F, -20.9619999F), new Vector2(273.056F, -21.2800007F), new Vector2(274.399994F, -21.2800007F)); + builder.AddCubicBezier(new Vector2(275.631989F, -21.2800007F), new Vector2(276.686005F, -21F), new Vector2(277.563995F, -20.4400005F)); + builder.AddCubicBezier(new Vector2(278.44101F, -19.8799992F), new Vector2(279.104004F, -19.0860004F), new Vector2(279.552002F, -18.0599995F)); + builder.AddCubicBezier(new Vector2(280F, -17.0330009F), new Vector2(280.242004F, -15.7539997F), new Vector2(280.279999F, -14.224F)); + builder.AddLine(new Vector2(283.976013F, -16.7439995F)); + builder.AddLine(new Vector2(264.264008F, -16.632F)); + builder.AddLine(new Vector2(264.264008F, -10.6960001F)); + builder.AddLine(new Vector2(287.671997F, -10.8079996F)); + builder.AddCubicBezier(new Vector2(287.858002F, -11.4799995F), new Vector2(287.980011F, -12.0860004F), new Vector2(288.036011F, -12.6280003F)); + builder.AddCubicBezier(new Vector2(288.09201F, -13.1689997F), new Vector2(288.119995F, -13.7010002F), new Vector2(288.119995F, -14.224F)); + builder.AddCubicBezier(new Vector2(288.119995F, -16.8740005F), new Vector2(287.522003F, -19.2259998F), new Vector2(286.328003F, -21.2800007F)); + builder.AddCubicBezier(new Vector2(285.132996F, -23.3330002F), new Vector2(283.509003F, -24.9379997F), new Vector2(281.455994F, -26.0960007F)); + builder.AddCubicBezier(new Vector2(279.402008F, -27.2530003F), new Vector2(277.013F, -27.8320007F), new Vector2(274.287994F, -27.8320007F)); + builder.AddCubicBezier(new Vector2(271.524994F, -27.8320007F), new Vector2(269.041992F, -27.2159996F), new Vector2(266.839996F, -25.9839993F)); + builder.AddCubicBezier(new Vector2(264.636993F, -24.7520008F), new Vector2(262.901001F, -23.0620003F), new Vector2(261.631989F, -20.9160004F)); + builder.AddCubicBezier(new Vector2(260.362F, -18.7689991F), new Vector2(259.727997F, -16.3519993F), new Vector2(259.727997F, -13.6639996F)); + builder.AddCubicBezier(new Vector2(259.727997F, -10.901F), new Vector2(260.381012F, -8.43700027F), new Vector2(261.687988F, -6.27199984F)); + builder.AddCubicBezier(new Vector2(262.993988F, -4.10599995F), new Vector2(264.786011F, -2.41700006F), new Vector2(267.063995F, -1.204F)); + builder.AddCubicBezier(new Vector2(269.341003F, 0.00899999961F), new Vector2(271.95401F, 0.615999997F), new Vector2(274.903992F, 0.615999997F)); + builder.AddCubicBezier(new Vector2(277.217987F, 0.615999997F), new Vector2(279.328003F, 0.232999995F), new Vector2(281.231995F, -0.532000005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0265() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(238.056F, 0F)); + builder.AddLine(new Vector2(238.056F, -27.2159996F)); + builder.AddLine(new Vector2(229.432007F, -27.2159996F)); + builder.AddLine(new Vector2(229.432007F, 0F)); + builder.AddLine(new Vector2(238.056F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(256.088013F, 0F)); + builder.AddLine(new Vector2(256.088013F, -17.4160004F)); + builder.AddCubicBezier(new Vector2(256.088013F, -19.2819996F), new Vector2(255.639999F, -21.0090008F), new Vector2(254.744003F, -22.5960007F)); + builder.AddCubicBezier(new Vector2(253.848007F, -24.1819992F), new Vector2(252.615997F, -25.4419994F), new Vector2(251.048004F, -26.3759995F)); + builder.AddCubicBezier(new Vector2(249.479996F, -27.309F), new Vector2(247.705994F, -27.7759991F), new Vector2(245.727997F, -27.7759991F)); + builder.AddCubicBezier(new Vector2(243.636993F, -27.7759991F), new Vector2(241.761002F, -27.3369999F), new Vector2(240.100006F, -26.4599991F)); + builder.AddCubicBezier(new Vector2(238.438004F, -25.5820007F), new Vector2(237.132004F, -24.3409996F), new Vector2(236.179993F, -22.7360001F)); + builder.AddCubicBezier(new Vector2(235.227997F, -21.1299992F), new Vector2(234.751999F, -19.2639999F), new Vector2(234.751999F, -17.1359997F)); + builder.AddLine(new Vector2(238.056F, -15.5120001F)); + builder.AddCubicBezier(new Vector2(238.056F, -16.4449997F), new Vector2(238.261002F, -17.2660007F), new Vector2(238.671997F, -17.9759998F)); + builder.AddCubicBezier(new Vector2(239.082001F, -18.6849995F), new Vector2(239.641998F, -19.2360001F), new Vector2(240.352005F, -19.6280003F)); + builder.AddCubicBezier(new Vector2(241.061005F, -20.0200005F), new Vector2(241.863998F, -20.2159996F), new Vector2(242.759995F, -20.2159996F)); + builder.AddCubicBezier(new Vector2(244.104004F, -20.2159996F), new Vector2(245.223999F, -19.7770004F), new Vector2(246.119995F, -18.8999996F)); + builder.AddCubicBezier(new Vector2(247.016006F, -18.0219994F), new Vector2(247.464005F, -16.8929996F), new Vector2(247.464005F, -15.5120001F)); + builder.AddLine(new Vector2(247.464005F, 0F)); + builder.AddLine(new Vector2(256.088013F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0266() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(210.251999F, -1.62399995F)); + builder.AddCubicBezier(new Vector2(212.024994F, -3.07999992F), new Vector2(212.912003F, -5.05800009F), new Vector2(212.912003F, -7.55999994F)); + builder.AddCubicBezier(new Vector2(212.912003F, -9.20199966F), new Vector2(212.565994F, -10.5279999F), new Vector2(211.876007F, -11.5360003F)); + builder.AddCubicBezier(new Vector2(211.184998F, -12.5439997F), new Vector2(210.298004F, -13.3459997F), new Vector2(209.216003F, -13.9440002F)); + builder.AddCubicBezier(new Vector2(208.132996F, -14.5410004F), new Vector2(206.994003F, -15.0170002F), new Vector2(205.800003F, -15.3719997F)); + builder.AddCubicBezier(new Vector2(204.604996F, -15.7259998F), new Vector2(203.457001F, -16.0720005F), new Vector2(202.356003F, -16.4080009F)); + builder.AddCubicBezier(new Vector2(201.253998F, -16.7439995F), new Vector2(200.367996F, -17.1539993F), new Vector2(199.695999F, -17.6399994F)); + builder.AddCubicBezier(new Vector2(199.024002F, -18.125F), new Vector2(198.688004F, -18.816F), new Vector2(198.688004F, -19.7119999F)); + builder.AddCubicBezier(new Vector2(198.688004F, -20.5699997F), new Vector2(199.070007F, -21.2609997F), new Vector2(199.835999F, -21.7840004F)); + builder.AddCubicBezier(new Vector2(200.600998F, -22.3059998F), new Vector2(201.712006F, -22.5680008F), new Vector2(203.167999F, -22.5680008F)); + builder.AddCubicBezier(new Vector2(204.548996F, -22.5680008F), new Vector2(205.781006F, -22.3059998F), new Vector2(206.863998F, -21.7840004F)); + builder.AddCubicBezier(new Vector2(207.945999F, -21.2609997F), new Vector2(208.880005F, -20.5139999F), new Vector2(209.664001F, -19.5440006F)); + builder.AddLine(new Vector2(212.912003F, -22.7919998F)); + builder.AddCubicBezier(new Vector2(211.865997F, -24.2479992F), new Vector2(210.531998F, -25.3400002F), new Vector2(208.908005F, -26.0680008F)); + builder.AddCubicBezier(new Vector2(207.283997F, -26.7959995F), new Vector2(205.425995F, -27.1599998F), new Vector2(203.335999F, -27.1599998F)); + builder.AddCubicBezier(new Vector2(201.356995F, -27.1599998F), new Vector2(199.658005F, -26.8419991F), new Vector2(198.240005F, -26.2080002F)); + builder.AddCubicBezier(new Vector2(196.820999F, -25.573F), new Vector2(195.729004F, -24.6679993F), new Vector2(194.964005F, -23.4920006F)); + builder.AddCubicBezier(new Vector2(194.197998F, -22.316F), new Vector2(193.815994F, -20.9249992F), new Vector2(193.815994F, -19.3199997F)); + builder.AddCubicBezier(new Vector2(193.815994F, -17.7140007F), new Vector2(194.160995F, -16.4169998F), new Vector2(194.852005F, -15.4280005F)); + builder.AddCubicBezier(new Vector2(195.542007F, -14.4379997F), new Vector2(196.429001F, -13.6639996F), new Vector2(197.511993F, -13.1040001F)); + builder.AddCubicBezier(new Vector2(198.593994F, -12.5439997F), new Vector2(199.742004F, -12.0959997F), new Vector2(200.955994F, -11.7600002F)); + builder.AddCubicBezier(new Vector2(202.169006F, -11.4239998F), new Vector2(203.317001F, -11.0780001F), new Vector2(204.399994F, -10.724F)); + builder.AddCubicBezier(new Vector2(205.481995F, -10.3690004F), new Vector2(206.369003F, -9.92099953F), new Vector2(207.059998F, -9.38000011F)); + builder.AddCubicBezier(new Vector2(207.75F, -8.8380003F), new Vector2(208.095993F, -8.08199978F), new Vector2(208.095993F, -7.11199999F)); + builder.AddCubicBezier(new Vector2(208.095993F, -6.14099979F), new Vector2(207.666F, -5.38500023F), new Vector2(206.807999F, -4.84399986F)); + builder.AddCubicBezier(new Vector2(205.949005F, -4.30200005F), new Vector2(204.735992F, -4.03200006F), new Vector2(203.167999F, -4.03200006F)); + builder.AddCubicBezier(new Vector2(201.600006F, -4.03200006F), new Vector2(200.181F, -4.3210001F), new Vector2(198.912003F, -4.9000001F)); + builder.AddCubicBezier(new Vector2(197.641998F, -5.47800016F), new Vector2(196.522003F, -6.36499977F), new Vector2(195.552002F, -7.55999994F)); + builder.AddLine(new Vector2(192.304001F, -4.3119998F)); + builder.AddCubicBezier(new Vector2(193.125F, -3.3039999F), new Vector2(194.085999F, -2.43600011F), new Vector2(195.188004F, -1.70799994F)); + builder.AddCubicBezier(new Vector2(196.289001F, -0.980000019F), new Vector2(197.511993F, -0.419999987F), new Vector2(198.856003F, -0.0280000009F)); + builder.AddCubicBezier(new Vector2(200.199997F, 0.363999993F), new Vector2(201.617996F, 0.560000002F), new Vector2(203.112F, 0.560000002F)); + builder.AddCubicBezier(new Vector2(206.098007F, 0.560000002F), new Vector2(208.477997F, -0.167999998F), new Vector2(210.251999F, -1.62399995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0267() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(186.983994F, -32.8440018F)); + builder.AddCubicBezier(new Vector2(187.580994F, -33.4599991F), new Vector2(187.880005F, -34.2340012F), new Vector2(187.880005F, -35.1679993F)); + builder.AddCubicBezier(new Vector2(187.880005F, -36.0639992F), new Vector2(187.580994F, -36.8199997F), new Vector2(186.983994F, -37.4360008F)); + builder.AddCubicBezier(new Vector2(186.386002F, -38.0519981F), new Vector2(185.621002F, -38.3600006F), new Vector2(184.688004F, -38.3600006F)); + builder.AddCubicBezier(new Vector2(183.753998F, -38.3600006F), new Vector2(182.988998F, -38.0519981F), new Vector2(182.391998F, -37.4360008F)); + builder.AddCubicBezier(new Vector2(181.794006F, -36.8199997F), new Vector2(181.496002F, -36.0639992F), new Vector2(181.496002F, -35.1679993F)); + builder.AddCubicBezier(new Vector2(181.496002F, -34.2340012F), new Vector2(181.794006F, -33.4599991F), new Vector2(182.391998F, -32.8440018F)); + builder.AddCubicBezier(new Vector2(182.988998F, -32.2280006F), new Vector2(183.753998F, -31.9200001F), new Vector2(184.688004F, -31.9200001F)); + builder.AddCubicBezier(new Vector2(185.621002F, -31.9200001F), new Vector2(186.386002F, -32.2280006F), new Vector2(186.983994F, -32.8440018F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(187.207993F, 0F)); + builder.AddLine(new Vector2(187.207993F, -26.6000004F)); + builder.AddLine(new Vector2(182.112F, -26.6000004F)); + builder.AddLine(new Vector2(182.112F, 0F)); + builder.AddLine(new Vector2(187.207993F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0268() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(162.203995F, -1.62399995F)); + builder.AddCubicBezier(new Vector2(163.977005F, -3.07999992F), new Vector2(164.863998F, -5.05800009F), new Vector2(164.863998F, -7.55999994F)); + builder.AddCubicBezier(new Vector2(164.863998F, -9.20199966F), new Vector2(164.518005F, -10.5279999F), new Vector2(163.828003F, -11.5360003F)); + builder.AddCubicBezier(new Vector2(163.136993F, -12.5439997F), new Vector2(162.25F, -13.3459997F), new Vector2(161.167999F, -13.9440002F)); + builder.AddCubicBezier(new Vector2(160.085007F, -14.5410004F), new Vector2(158.945999F, -15.0170002F), new Vector2(157.751999F, -15.3719997F)); + builder.AddCubicBezier(new Vector2(156.557007F, -15.7259998F), new Vector2(155.408997F, -16.0720005F), new Vector2(154.307999F, -16.4080009F)); + builder.AddCubicBezier(new Vector2(153.205994F, -16.7439995F), new Vector2(152.320007F, -17.1539993F), new Vector2(151.647995F, -17.6399994F)); + builder.AddCubicBezier(new Vector2(150.975998F, -18.125F), new Vector2(150.639999F, -18.816F), new Vector2(150.639999F, -19.7119999F)); + builder.AddCubicBezier(new Vector2(150.639999F, -20.5699997F), new Vector2(151.022003F, -21.2609997F), new Vector2(151.787994F, -21.7840004F)); + builder.AddCubicBezier(new Vector2(152.552994F, -22.3059998F), new Vector2(153.664001F, -22.5680008F), new Vector2(155.119995F, -22.5680008F)); + builder.AddCubicBezier(new Vector2(156.501007F, -22.5680008F), new Vector2(157.733002F, -22.3059998F), new Vector2(158.815994F, -21.7840004F)); + builder.AddCubicBezier(new Vector2(159.897995F, -21.2609997F), new Vector2(160.832001F, -20.5139999F), new Vector2(161.615997F, -19.5440006F)); + builder.AddLine(new Vector2(164.863998F, -22.7919998F)); + builder.AddCubicBezier(new Vector2(163.817993F, -24.2479992F), new Vector2(162.483994F, -25.3400002F), new Vector2(160.860001F, -26.0680008F)); + builder.AddCubicBezier(new Vector2(159.235992F, -26.7959995F), new Vector2(157.378006F, -27.1599998F), new Vector2(155.287994F, -27.1599998F)); + builder.AddCubicBezier(new Vector2(153.309006F, -27.1599998F), new Vector2(151.610001F, -26.8419991F), new Vector2(150.192001F, -26.2080002F)); + builder.AddCubicBezier(new Vector2(148.772995F, -25.573F), new Vector2(147.681F, -24.6679993F), new Vector2(146.916F, -23.4920006F)); + builder.AddCubicBezier(new Vector2(146.149994F, -22.316F), new Vector2(145.768005F, -20.9249992F), new Vector2(145.768005F, -19.3199997F)); + builder.AddCubicBezier(new Vector2(145.768005F, -17.7140007F), new Vector2(146.113007F, -16.4169998F), new Vector2(146.804001F, -15.4280005F)); + builder.AddCubicBezier(new Vector2(147.494003F, -14.4379997F), new Vector2(148.380997F, -13.6639996F), new Vector2(149.464005F, -13.1040001F)); + builder.AddCubicBezier(new Vector2(150.546005F, -12.5439997F), new Vector2(151.694F, -12.0959997F), new Vector2(152.908005F, -11.7600002F)); + builder.AddCubicBezier(new Vector2(154.121002F, -11.4239998F), new Vector2(155.268997F, -11.0780001F), new Vector2(156.352005F, -10.724F)); + builder.AddCubicBezier(new Vector2(157.434006F, -10.3690004F), new Vector2(158.320999F, -9.92099953F), new Vector2(159.011993F, -9.38000011F)); + builder.AddCubicBezier(new Vector2(159.701996F, -8.8380003F), new Vector2(160.048004F, -8.08199978F), new Vector2(160.048004F, -7.11199999F)); + builder.AddCubicBezier(new Vector2(160.048004F, -6.14099979F), new Vector2(159.617996F, -5.38500023F), new Vector2(158.759995F, -4.84399986F)); + builder.AddCubicBezier(new Vector2(157.901001F, -4.30200005F), new Vector2(156.688004F, -4.03200006F), new Vector2(155.119995F, -4.03200006F)); + builder.AddCubicBezier(new Vector2(153.552002F, -4.03200006F), new Vector2(152.132996F, -4.3210001F), new Vector2(150.863998F, -4.9000001F)); + builder.AddCubicBezier(new Vector2(149.593994F, -5.47800016F), new Vector2(148.473999F, -6.36499977F), new Vector2(147.503998F, -7.55999994F)); + builder.AddLine(new Vector2(144.255997F, -4.3119998F)); + builder.AddCubicBezier(new Vector2(145.076996F, -3.3039999F), new Vector2(146.037994F, -2.43600011F), new Vector2(147.139999F, -1.70799994F)); + builder.AddCubicBezier(new Vector2(148.240997F, -0.980000019F), new Vector2(149.464005F, -0.419999987F), new Vector2(150.807999F, -0.0280000009F)); + builder.AddCubicBezier(new Vector2(152.151993F, 0.363999993F), new Vector2(153.570007F, 0.560000002F), new Vector2(155.063995F, 0.560000002F)); + builder.AddCubicBezier(new Vector2(158.050003F, 0.560000002F), new Vector2(160.429993F, -0.167999998F), new Vector2(162.203995F, -1.62399995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0269() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(138.936005F, -32.8440018F)); + builder.AddCubicBezier(new Vector2(139.533005F, -33.4599991F), new Vector2(139.832001F, -34.2340012F), new Vector2(139.832001F, -35.1679993F)); + builder.AddCubicBezier(new Vector2(139.832001F, -36.0639992F), new Vector2(139.533005F, -36.8199997F), new Vector2(138.936005F, -37.4360008F)); + builder.AddCubicBezier(new Vector2(138.337997F, -38.0519981F), new Vector2(137.572998F, -38.3600006F), new Vector2(136.639999F, -38.3600006F)); + builder.AddCubicBezier(new Vector2(135.705994F, -38.3600006F), new Vector2(134.940994F, -38.0519981F), new Vector2(134.343994F, -37.4360008F)); + builder.AddCubicBezier(new Vector2(133.746002F, -36.8199997F), new Vector2(133.447998F, -36.0639992F), new Vector2(133.447998F, -35.1679993F)); + builder.AddCubicBezier(new Vector2(133.447998F, -34.2340012F), new Vector2(133.746002F, -33.4599991F), new Vector2(134.343994F, -32.8440018F)); + builder.AddCubicBezier(new Vector2(134.940994F, -32.2280006F), new Vector2(135.705994F, -31.9200001F), new Vector2(136.639999F, -31.9200001F)); + builder.AddCubicBezier(new Vector2(137.572998F, -31.9200001F), new Vector2(138.337997F, -32.2280006F), new Vector2(138.936005F, -32.8440018F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(139.160004F, 0F)); + builder.AddLine(new Vector2(139.160004F, -26.6000004F)); + builder.AddLine(new Vector2(134.063995F, -26.6000004F)); + builder.AddLine(new Vector2(134.063995F, 0F)); + builder.AddLine(new Vector2(139.160004F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0270() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(108.416F, 0F)); + builder.AddLine(new Vector2(108.416F, -39.9840012F)); + builder.AddLine(new Vector2(103.375999F, -39.9840012F)); + builder.AddLine(new Vector2(103.375999F, 0F)); + builder.AddLine(new Vector2(108.416F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(127.232002F, 0F)); + builder.AddLine(new Vector2(127.232002F, -16.5200005F)); + builder.AddCubicBezier(new Vector2(127.232002F, -18.6100006F), new Vector2(126.783997F, -20.4580002F), new Vector2(125.888F, -22.0639992F)); + builder.AddCubicBezier(new Vector2(124.991997F, -23.6690006F), new Vector2(123.768997F, -24.9200001F), new Vector2(122.220001F, -25.816F)); + builder.AddCubicBezier(new Vector2(120.669998F, -26.7119999F), new Vector2(118.888F, -27.1599998F), new Vector2(116.872002F, -27.1599998F)); + builder.AddCubicBezier(new Vector2(114.856003F, -27.1599998F), new Vector2(113.044998F, -26.7019997F), new Vector2(111.440002F, -25.7880001F)); + builder.AddCubicBezier(new Vector2(109.834F, -24.8729992F), new Vector2(108.584F, -23.632F), new Vector2(107.688004F, -22.0639992F)); + builder.AddCubicBezier(new Vector2(106.792F, -20.4960003F), new Vector2(106.344002F, -18.7040005F), new Vector2(106.344002F, -16.6879997F)); + builder.AddLine(new Vector2(108.416F, -15.5120001F)); + builder.AddCubicBezier(new Vector2(108.416F, -16.8560009F), new Vector2(108.713997F, -18.0499992F), new Vector2(109.311996F, -19.0960007F)); + builder.AddCubicBezier(new Vector2(109.908997F, -20.1410007F), new Vector2(110.730003F, -20.9619999F), new Vector2(111.776001F, -21.5599995F)); + builder.AddCubicBezier(new Vector2(112.820999F, -22.1569996F), new Vector2(114.015999F, -22.4559994F), new Vector2(115.360001F, -22.4559994F)); + builder.AddCubicBezier(new Vector2(117.375999F, -22.4559994F), new Vector2(119.009003F, -21.802F), new Vector2(120.260002F, -20.4960003F)); + builder.AddCubicBezier(new Vector2(121.510002F, -19.1889992F), new Vector2(122.136002F, -17.5279999F), new Vector2(122.136002F, -15.5120001F)); + builder.AddLine(new Vector2(122.136002F, 0F)); + builder.AddLine(new Vector2(127.232002F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0271() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(98.447998F, -22.0079994F)); + builder.AddLine(new Vector2(98.447998F, -26.6000004F)); + builder.AddLine(new Vector2(80.3040009F, -26.6000004F)); + builder.AddLine(new Vector2(80.3040009F, -22.0079994F)); + builder.AddLine(new Vector2(98.447998F, -22.0079994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(91.8960037F, 0F)); + builder.AddLine(new Vector2(91.8960037F, -37.7439995F)); + builder.AddLine(new Vector2(86.8560028F, -37.7439995F)); + builder.AddLine(new Vector2(86.8560028F, 0F)); + builder.AddLine(new Vector2(91.8960037F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0272() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(58.9119987F, 7.72800016F)); + builder.AddLine(new Vector2(62.6640015F, 0.783999979F)); + builder.AddCubicBezier(new Vector2(63.1489983F, -0.149000004F), new Vector2(63.4760017F, -0.904999971F), new Vector2(63.644001F, -1.48399997F)); + builder.AddCubicBezier(new Vector2(63.8120003F, -2.06200004F), new Vector2(63.8959999F, -2.55699992F), new Vector2(63.8959999F, -2.96799994F)); + builder.AddCubicBezier(new Vector2(63.8959999F, -4.05000019F), new Vector2(63.5219994F, -4.95599985F), new Vector2(62.776001F, -5.68400002F)); + builder.AddCubicBezier(new Vector2(62.0289993F, -6.41200018F), new Vector2(61.1699982F, -6.77600002F), new Vector2(60.2000008F, -6.77600002F)); + builder.AddCubicBezier(new Vector2(59.1170006F, -6.77600002F), new Vector2(58.2210007F, -6.41200018F), new Vector2(57.512001F, -5.68400002F)); + builder.AddCubicBezier(new Vector2(56.8019981F, -4.95599985F), new Vector2(56.4480019F, -4.05000019F), new Vector2(56.4480019F, -2.96799994F)); + builder.AddCubicBezier(new Vector2(56.4480019F, -1.99699998F), new Vector2(56.7739983F, -1.18499994F), new Vector2(57.4280014F, -0.532000005F)); + builder.AddCubicBezier(new Vector2(58.0810013F, 0.120999999F), new Vector2(58.7999992F, 0.448000014F), new Vector2(59.5839996F, 0.448000014F)); + builder.AddCubicBezier(new Vector2(59.9570007F, 0.448000014F), new Vector2(60.2929993F, 0.317000002F), new Vector2(60.5919991F, 0.0560000017F)); + builder.AddCubicBezier(new Vector2(60.8899994F, -0.204999998F), new Vector2(61.1329994F, -0.541000009F), new Vector2(61.3199997F, -0.952000022F)); + builder.AddLine(new Vector2(59.5279999F, -0.504000008F)); + builder.AddLine(new Vector2(56.0559998F, 6.15999985F)); + builder.AddLine(new Vector2(58.9119987F, 7.72800016F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0273() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(48.1040001F, -32.8440018F)); + builder.AddCubicBezier(new Vector2(48.7010002F, -33.4599991F), new Vector2(49F, -34.2340012F), new Vector2(49F, -35.1679993F)); + builder.AddCubicBezier(new Vector2(49F, -36.0639992F), new Vector2(48.7010002F, -36.8199997F), new Vector2(48.1040001F, -37.4360008F)); + builder.AddCubicBezier(new Vector2(47.5060005F, -38.0519981F), new Vector2(46.7410011F, -38.3600006F), new Vector2(45.8079987F, -38.3600006F)); + builder.AddCubicBezier(new Vector2(44.8740005F, -38.3600006F), new Vector2(44.1090012F, -38.0519981F), new Vector2(43.512001F, -37.4360008F)); + builder.AddCubicBezier(new Vector2(42.9140015F, -36.8199997F), new Vector2(42.6160011F, -36.0639992F), new Vector2(42.6160011F, -35.1679993F)); + builder.AddCubicBezier(new Vector2(42.6160011F, -34.2340012F), new Vector2(42.9140015F, -33.4599991F), new Vector2(43.512001F, -32.8440018F)); + builder.AddCubicBezier(new Vector2(44.1090012F, -32.2280006F), new Vector2(44.8740005F, -31.9200001F), new Vector2(45.8079987F, -31.9200001F)); + builder.AddCubicBezier(new Vector2(46.7410011F, -31.9200001F), new Vector2(47.5060005F, -32.2280006F), new Vector2(48.1040001F, -32.8440018F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(48.3279991F, 0F)); + builder.AddLine(new Vector2(48.3279991F, -26.6000004F)); + builder.AddLine(new Vector2(43.2319984F, -26.6000004F)); + builder.AddLine(new Vector2(43.2319984F, 0F)); + builder.AddLine(new Vector2(48.3279991F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<128, 166> + CanvasGeometry Geometry_0274() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(30.9120007F, -17.6959991F)); + builder.AddLine(new Vector2(30.9120007F, -22.5119991F)); + builder.AddLine(new Vector2(8.17599964F, -22.5119991F)); + builder.AddLine(new Vector2(8.17599964F, -17.6959991F)); + builder.AddLine(new Vector2(30.9120007F, -17.6959991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(34.9440002F, 0F)); + builder.AddLine(new Vector2(34.9440002F, -38.8639984F)); + builder.AddLine(new Vector2(29.6800003F, -38.8639984F)); + builder.AddLine(new Vector2(29.6800003F, 0F)); + builder.AddLine(new Vector2(34.9440002F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(9.85599995F, 0F)); + builder.AddLine(new Vector2(9.85599995F, -38.8639984F)); + builder.AddLine(new Vector2(4.59200001F, -38.8639984F)); + builder.AddLine(new Vector2(4.59200001F, 0F)); + builder.AddLine(new Vector2(9.85599995F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0275() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(173.462006F, -305.437988F)); + builder.AddCubicBezier(new Vector2(173.906006F, -305.906006F), new Vector2(174.128006F, -306.463989F), new Vector2(174.128006F, -307.112F)); + builder.AddCubicBezier(new Vector2(174.128006F, -307.783997F), new Vector2(173.906006F, -308.34201F), new Vector2(173.462006F, -308.786011F)); + builder.AddCubicBezier(new Vector2(173.018005F, -309.230011F), new Vector2(172.460007F, -309.451996F), new Vector2(171.787994F, -309.451996F)); + builder.AddCubicBezier(new Vector2(171.091995F, -309.451996F), new Vector2(170.528F, -309.230011F), new Vector2(170.095993F, -308.786011F)); + builder.AddCubicBezier(new Vector2(169.664001F, -308.34201F), new Vector2(169.447998F, -307.783997F), new Vector2(169.447998F, -307.112F)); + builder.AddCubicBezier(new Vector2(169.447998F, -306.463989F), new Vector2(169.664001F, -305.906006F), new Vector2(170.095993F, -305.437988F)); + builder.AddCubicBezier(new Vector2(170.528F, -304.970001F), new Vector2(171.091995F, -304.735992F), new Vector2(171.787994F, -304.735992F)); + builder.AddCubicBezier(new Vector2(172.460007F, -304.735992F), new Vector2(173.018005F, -304.970001F), new Vector2(173.462006F, -305.437988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0276() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(164.227997F, -305.096008F)); + builder.AddLine(new Vector2(164.227997F, -322.196014F)); + builder.AddLine(new Vector2(160.951996F, -322.196014F)); + builder.AddLine(new Vector2(160.951996F, -318.019989F)); + builder.AddLine(new Vector2(161.563995F, -313.880005F)); + builder.AddLine(new Vector2(160.951996F, -309.70401F)); + builder.AddLine(new Vector2(160.951996F, -305.096008F)); + builder.AddLine(new Vector2(164.227997F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(152.923996F, -308.552002F)); + builder.AddCubicBezier(new Vector2(152.084F, -309.056F), new Vector2(151.429993F, -309.746002F), new Vector2(150.962006F, -310.622009F)); + builder.AddCubicBezier(new Vector2(150.494003F, -311.497986F), new Vector2(150.259995F, -312.511993F), new Vector2(150.259995F, -313.664001F)); + builder.AddCubicBezier(new Vector2(150.259995F, -314.791992F), new Vector2(150.494003F, -315.794006F), new Vector2(150.962006F, -316.670013F)); + builder.AddCubicBezier(new Vector2(151.429993F, -317.54599F), new Vector2(152.078003F, -318.235992F), new Vector2(152.906006F, -318.73999F)); + builder.AddCubicBezier(new Vector2(153.733994F, -319.243988F), new Vector2(154.688004F, -319.496002F), new Vector2(155.768005F, -319.496002F)); + builder.AddCubicBezier(new Vector2(156.848007F, -319.496002F), new Vector2(157.789993F, -319.25F), new Vector2(158.593994F, -318.757996F)); + builder.AddCubicBezier(new Vector2(159.397995F, -318.265991F), new Vector2(160.028F, -317.575989F), new Vector2(160.483994F, -316.687988F)); + builder.AddCubicBezier(new Vector2(160.940002F, -315.799988F), new Vector2(161.167999F, -314.779999F), new Vector2(161.167999F, -313.627991F)); + builder.AddCubicBezier(new Vector2(161.167999F, -311.924011F), new Vector2(160.675995F, -310.526001F), new Vector2(159.692001F, -309.43399F)); + builder.AddCubicBezier(new Vector2(158.707993F, -308.34201F), new Vector2(157.412003F, -307.79599F), new Vector2(155.804001F, -307.79599F)); + builder.AddCubicBezier(new Vector2(154.723999F, -307.79599F), new Vector2(153.764008F, -308.048004F), new Vector2(152.923996F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(158.755997F, -305.54599F)); + builder.AddCubicBezier(new Vector2(159.787994F, -306.085999F), new Vector2(160.610001F, -306.835999F), new Vector2(161.222F, -307.79599F)); + builder.AddCubicBezier(new Vector2(161.834F, -308.756012F), new Vector2(162.175995F, -309.847992F), new Vector2(162.248001F, -311.071991F)); + builder.AddLine(new Vector2(162.248001F, -316.220001F)); + builder.AddCubicBezier(new Vector2(162.175995F, -317.467987F), new Vector2(161.828003F, -318.56601F), new Vector2(161.203995F, -319.514008F)); + builder.AddCubicBezier(new Vector2(160.580002F, -320.462006F), new Vector2(159.757996F, -321.205994F), new Vector2(158.738007F, -321.746002F)); + builder.AddCubicBezier(new Vector2(157.718002F, -322.286011F), new Vector2(156.559998F, -322.556F), new Vector2(155.264008F, -322.556F)); + builder.AddCubicBezier(new Vector2(153.679993F, -322.556F), new Vector2(152.257996F, -322.160004F), new Vector2(150.998001F, -321.368011F)); + builder.AddCubicBezier(new Vector2(149.738007F, -320.575989F), new Vector2(148.742004F, -319.507996F), new Vector2(148.009995F, -318.164001F)); + builder.AddCubicBezier(new Vector2(147.278F, -316.820007F), new Vector2(146.912003F, -315.308014F), new Vector2(146.912003F, -313.627991F)); + builder.AddCubicBezier(new Vector2(146.912003F, -311.947998F), new Vector2(147.278F, -310.436005F), new Vector2(148.009995F, -309.09201F)); + builder.AddCubicBezier(new Vector2(148.742004F, -307.747986F), new Vector2(149.738007F, -306.686005F), new Vector2(150.998001F, -305.906006F)); + builder.AddCubicBezier(new Vector2(152.257996F, -305.126007F), new Vector2(153.679993F, -304.735992F), new Vector2(155.264008F, -304.735992F)); + builder.AddCubicBezier(new Vector2(156.559998F, -304.735992F), new Vector2(157.723999F, -305.006012F), new Vector2(158.755997F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0277() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(143.059998F, -326.209991F)); + builder.AddCubicBezier(new Vector2(143.444F, -326.605988F), new Vector2(143.636002F, -327.104004F), new Vector2(143.636002F, -327.70401F)); + builder.AddCubicBezier(new Vector2(143.636002F, -328.279999F), new Vector2(143.444F, -328.765991F), new Vector2(143.059998F, -329.161987F)); + builder.AddCubicBezier(new Vector2(142.675995F, -329.558014F), new Vector2(142.184006F, -329.756012F), new Vector2(141.584F, -329.756012F)); + builder.AddCubicBezier(new Vector2(140.983994F, -329.756012F), new Vector2(140.492004F, -329.558014F), new Vector2(140.108002F, -329.161987F)); + builder.AddCubicBezier(new Vector2(139.723999F, -328.765991F), new Vector2(139.531998F, -328.279999F), new Vector2(139.531998F, -327.70401F)); + builder.AddCubicBezier(new Vector2(139.531998F, -327.104004F), new Vector2(139.723999F, -326.605988F), new Vector2(140.108002F, -326.209991F)); + builder.AddCubicBezier(new Vector2(140.492004F, -325.813995F), new Vector2(140.983994F, -325.615997F), new Vector2(141.584F, -325.615997F)); + builder.AddCubicBezier(new Vector2(142.184006F, -325.615997F), new Vector2(142.675995F, -325.813995F), new Vector2(143.059998F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(143.203995F, -305.096008F)); + builder.AddLine(new Vector2(143.203995F, -322.196014F)); + builder.AddLine(new Vector2(139.927994F, -322.196014F)); + builder.AddLine(new Vector2(139.927994F, -305.096008F)); + builder.AddLine(new Vector2(143.203995F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0278() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(134.582001F, -306.140015F)); + builder.AddCubicBezier(new Vector2(135.722F, -307.075989F), new Vector2(136.292007F, -308.347992F), new Vector2(136.292007F, -309.955994F)); + builder.AddCubicBezier(new Vector2(136.292007F, -311.011993F), new Vector2(136.070007F, -311.864014F), new Vector2(135.626007F, -312.511993F)); + builder.AddCubicBezier(new Vector2(135.182007F, -313.160004F), new Vector2(134.612F, -313.675995F), new Vector2(133.916F, -314.059998F)); + builder.AddCubicBezier(new Vector2(133.220001F, -314.444F), new Vector2(132.488007F, -314.75F), new Vector2(131.720001F, -314.977997F)); + builder.AddCubicBezier(new Vector2(130.951996F, -315.205994F), new Vector2(130.214005F, -315.428009F), new Vector2(129.505997F, -315.644012F)); + builder.AddCubicBezier(new Vector2(128.798004F, -315.859985F), new Vector2(128.227997F, -316.123993F), new Vector2(127.795998F, -316.436005F)); + builder.AddCubicBezier(new Vector2(127.363998F, -316.747986F), new Vector2(127.148003F, -317.191986F), new Vector2(127.148003F, -317.768005F)); + builder.AddCubicBezier(new Vector2(127.148003F, -318.320007F), new Vector2(127.393997F, -318.764008F), new Vector2(127.886002F, -319.100006F)); + builder.AddCubicBezier(new Vector2(128.378006F, -319.436005F), new Vector2(129.091995F, -319.604004F), new Vector2(130.028F, -319.604004F)); + builder.AddCubicBezier(new Vector2(130.916F, -319.604004F), new Vector2(131.707993F, -319.436005F), new Vector2(132.404007F, -319.100006F)); + builder.AddCubicBezier(new Vector2(133.100006F, -318.764008F), new Vector2(133.699997F, -318.283997F), new Vector2(134.203995F, -317.660004F)); + builder.AddLine(new Vector2(136.292007F, -319.747986F)); + builder.AddCubicBezier(new Vector2(135.619995F, -320.68399F), new Vector2(134.761993F, -321.385986F), new Vector2(133.718002F, -321.854004F)); + builder.AddCubicBezier(new Vector2(132.673996F, -322.321991F), new Vector2(131.479996F, -322.556F), new Vector2(130.136002F, -322.556F)); + builder.AddCubicBezier(new Vector2(128.863998F, -322.556F), new Vector2(127.772003F, -322.35199F), new Vector2(126.860001F, -321.944F)); + builder.AddCubicBezier(new Vector2(125.947998F, -321.536011F), new Vector2(125.246002F, -320.95401F), new Vector2(124.753998F, -320.197998F)); + builder.AddCubicBezier(new Vector2(124.262001F, -319.441986F), new Vector2(124.015999F, -318.548004F), new Vector2(124.015999F, -317.515991F)); + builder.AddCubicBezier(new Vector2(124.015999F, -316.484009F), new Vector2(124.237999F, -315.649994F), new Vector2(124.681999F, -315.014008F)); + builder.AddCubicBezier(new Vector2(125.125999F, -314.377991F), new Vector2(125.695999F, -313.880005F), new Vector2(126.391998F, -313.519989F)); + builder.AddCubicBezier(new Vector2(127.087997F, -313.160004F), new Vector2(127.825996F, -312.872009F), new Vector2(128.606003F, -312.656006F)); + builder.AddCubicBezier(new Vector2(129.386002F, -312.440002F), new Vector2(130.123993F, -312.217987F), new Vector2(130.820007F, -311.98999F)); + builder.AddCubicBezier(new Vector2(131.516006F, -311.761993F), new Vector2(132.085999F, -311.473999F), new Vector2(132.529999F, -311.126007F)); + builder.AddCubicBezier(new Vector2(132.973999F, -310.778015F), new Vector2(133.195999F, -310.291992F), new Vector2(133.195999F, -309.667999F)); + builder.AddCubicBezier(new Vector2(133.195999F, -309.044006F), new Vector2(132.919998F, -308.558014F), new Vector2(132.367996F, -308.209991F)); + builder.AddCubicBezier(new Vector2(131.815994F, -307.862F), new Vector2(131.035995F, -307.687988F), new Vector2(130.028F, -307.687988F)); + builder.AddCubicBezier(new Vector2(129.020004F, -307.687988F), new Vector2(128.108002F, -307.873993F), new Vector2(127.292F, -308.246002F)); + builder.AddCubicBezier(new Vector2(126.475998F, -308.618011F), new Vector2(125.755997F, -309.187988F), new Vector2(125.132004F, -309.955994F)); + builder.AddLine(new Vector2(123.043999F, -307.868011F)); + builder.AddCubicBezier(new Vector2(123.571999F, -307.220001F), new Vector2(124.190002F, -306.661987F), new Vector2(124.898003F, -306.194F)); + builder.AddCubicBezier(new Vector2(125.606003F, -305.726013F), new Vector2(126.391998F, -305.365997F), new Vector2(127.255997F, -305.114014F)); + builder.AddCubicBezier(new Vector2(128.119995F, -304.862F), new Vector2(129.031998F, -304.735992F), new Vector2(129.992004F, -304.735992F)); + builder.AddCubicBezier(new Vector2(131.912003F, -304.735992F), new Vector2(133.442001F, -305.20401F), new Vector2(134.582001F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0279() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(116.959999F, -305.492004F)); + builder.AddCubicBezier(new Vector2(118.136002F, -305.996002F), new Vector2(119.143997F, -306.727997F), new Vector2(119.984001F, -307.687988F)); + builder.AddLine(new Vector2(117.896004F, -309.812012F)); + builder.AddCubicBezier(new Vector2(117.32F, -309.140015F), new Vector2(116.629997F, -308.635986F), new Vector2(115.825996F, -308.299988F)); + builder.AddCubicBezier(new Vector2(115.022003F, -307.963989F), new Vector2(114.139999F, -307.79599F), new Vector2(113.18F, -307.79599F)); + builder.AddCubicBezier(new Vector2(112.028F, -307.79599F), new Vector2(111.008003F, -308.041992F), new Vector2(110.120003F, -308.533997F)); + builder.AddCubicBezier(new Vector2(109.232002F, -309.026001F), new Vector2(108.547997F, -309.721985F), new Vector2(108.068001F, -310.622009F)); + builder.AddCubicBezier(new Vector2(107.587997F, -311.522003F), new Vector2(107.348F, -312.571991F), new Vector2(107.348F, -313.772003F)); + builder.AddCubicBezier(new Vector2(107.348F, -314.947998F), new Vector2(107.575996F, -315.967987F), new Vector2(108.031998F, -316.832001F)); + builder.AddCubicBezier(new Vector2(108.487999F, -317.696014F), new Vector2(109.136002F, -318.368011F), new Vector2(109.975998F, -318.847992F)); + builder.AddCubicBezier(new Vector2(110.816002F, -319.328003F), new Vector2(111.788002F, -319.567993F), new Vector2(112.891998F, -319.567993F)); + builder.AddCubicBezier(new Vector2(113.947998F, -319.567993F), new Vector2(114.848F, -319.346008F), new Vector2(115.592003F, -318.902008F)); + builder.AddCubicBezier(new Vector2(116.335999F, -318.458008F), new Vector2(116.912003F, -317.834015F), new Vector2(117.32F, -317.029999F)); + builder.AddCubicBezier(new Vector2(117.727997F, -316.226013F), new Vector2(117.931999F, -315.247986F), new Vector2(117.931999F, -314.096008F)); + builder.AddLine(new Vector2(119.120003F, -315.140015F)); + builder.AddLine(new Vector2(106.412003F, -315.140015F)); + builder.AddLine(new Vector2(106.412003F, -312.440002F)); + builder.AddLine(new Vector2(120.848F, -312.440002F)); + builder.AddCubicBezier(new Vector2(120.919998F, -312.776001F), new Vector2(120.968002F, -313.082001F), new Vector2(120.991997F, -313.358002F)); + builder.AddCubicBezier(new Vector2(121.015999F, -313.634003F), new Vector2(121.028F, -313.891998F), new Vector2(121.028F, -314.131989F)); + builder.AddCubicBezier(new Vector2(121.028F, -315.764008F), new Vector2(120.685997F, -317.216003F), new Vector2(120.001999F, -318.488007F)); + builder.AddCubicBezier(new Vector2(119.318001F, -319.76001F), new Vector2(118.363998F, -320.756012F), new Vector2(117.139999F, -321.476013F)); + builder.AddCubicBezier(new Vector2(115.916F, -322.196014F), new Vector2(114.524002F, -322.556F), new Vector2(112.963997F, -322.556F)); + builder.AddCubicBezier(new Vector2(111.307999F, -322.556F), new Vector2(109.814003F, -322.165985F), new Vector2(108.482002F, -321.385986F)); + builder.AddCubicBezier(new Vector2(107.150002F, -320.605988F), new Vector2(106.094002F, -319.544006F), new Vector2(105.314003F, -318.200012F)); + builder.AddCubicBezier(new Vector2(104.533997F, -316.855988F), new Vector2(104.143997F, -315.343994F), new Vector2(104.143997F, -313.664001F)); + builder.AddCubicBezier(new Vector2(104.143997F, -311.959991F), new Vector2(104.540001F, -310.436005F), new Vector2(105.332001F, -309.09201F)); + builder.AddCubicBezier(new Vector2(106.124001F, -307.747986F), new Vector2(107.197998F, -306.686005F), new Vector2(108.554001F, -305.906006F)); + builder.AddCubicBezier(new Vector2(109.910004F, -305.126007F), new Vector2(111.452003F, -304.735992F), new Vector2(113.18F, -304.735992F)); + builder.AddCubicBezier(new Vector2(114.524002F, -304.735992F), new Vector2(115.783997F, -304.988007F), new Vector2(116.959999F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0280() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(88.7720032F, -305.096008F)); + builder.AddLine(new Vector2(88.7720032F, -322.196014F)); + builder.AddLine(new Vector2(85.5319977F, -322.196014F)); + builder.AddLine(new Vector2(85.5319977F, -305.096008F)); + builder.AddLine(new Vector2(88.7720032F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(100.867996F, -305.096008F)); + builder.AddLine(new Vector2(100.867996F, -315.716003F)); + builder.AddCubicBezier(new Vector2(100.867996F, -316.891998F), new Vector2(100.580002F, -318.002014F), new Vector2(100.003998F, -319.04599F)); + builder.AddCubicBezier(new Vector2(99.4280014F, -320.089996F), new Vector2(98.6419983F, -320.936005F), new Vector2(97.6460037F, -321.584015F)); + builder.AddCubicBezier(new Vector2(96.6500015F, -322.231995F), new Vector2(95.5039978F, -322.556F), new Vector2(94.2080002F, -322.556F)); + builder.AddCubicBezier(new Vector2(92.9120026F, -322.556F), new Vector2(91.7480011F, -322.261993F), new Vector2(90.7160034F, -321.674011F)); + builder.AddCubicBezier(new Vector2(89.6839981F, -321.085999F), new Vector2(88.8799973F, -320.287994F), new Vector2(88.3040009F, -319.279999F)); + builder.AddCubicBezier(new Vector2(87.7279968F, -318.272003F), new Vector2(87.4400024F, -317.119995F), new Vector2(87.4400024F, -315.824005F)); + builder.AddLine(new Vector2(88.7720032F, -315.067993F)); + builder.AddCubicBezier(new Vector2(88.7720032F, -315.932007F), new Vector2(88.9639969F, -316.700012F), new Vector2(89.3479996F, -317.372009F)); + builder.AddCubicBezier(new Vector2(89.7320023F, -318.044006F), new Vector2(90.2600021F, -318.571991F), new Vector2(90.9319992F, -318.955994F)); + builder.AddCubicBezier(new Vector2(91.6039963F, -319.339996F), new Vector2(92.3720016F, -319.532013F), new Vector2(93.2360001F, -319.532013F)); + builder.AddCubicBezier(new Vector2(94.5319977F, -319.532013F), new Vector2(95.5820007F, -319.112F), new Vector2(96.3860016F, -318.272003F)); + builder.AddCubicBezier(new Vector2(97.1900024F, -317.432007F), new Vector2(97.5920029F, -316.364014F), new Vector2(97.5920029F, -315.067993F)); + builder.AddLine(new Vector2(97.5920029F, -305.096008F)); + builder.AddLine(new Vector2(100.867996F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0281() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(70.1240005F, -308.623993F)); + builder.AddCubicBezier(new Vector2(69.2839966F, -309.127991F), new Vector2(68.6240005F, -309.817993F), new Vector2(68.1439972F, -310.694F)); + builder.AddCubicBezier(new Vector2(67.6640015F, -311.570007F), new Vector2(67.4240036F, -312.571991F), new Vector2(67.4240036F, -313.700012F)); + builder.AddCubicBezier(new Vector2(67.4240036F, -314.803986F), new Vector2(67.6640015F, -315.787994F), new Vector2(68.1439972F, -316.652008F)); + builder.AddCubicBezier(new Vector2(68.6240005F, -317.515991F), new Vector2(69.2839966F, -318.194F), new Vector2(70.1240005F, -318.686005F)); + builder.AddCubicBezier(new Vector2(70.9639969F, -319.178009F), new Vector2(71.9120026F, -319.424011F), new Vector2(72.9680023F, -319.424011F)); + builder.AddCubicBezier(new Vector2(74.0719986F, -319.424011F), new Vector2(75.038002F, -319.178009F), new Vector2(75.8659973F, -318.686005F)); + builder.AddCubicBezier(new Vector2(76.6940002F, -318.194F), new Vector2(77.3539963F, -317.515991F), new Vector2(77.8460007F, -316.652008F)); + builder.AddCubicBezier(new Vector2(78.3379974F, -315.787994F), new Vector2(78.5839996F, -314.803986F), new Vector2(78.5839996F, -313.700012F)); + builder.AddCubicBezier(new Vector2(78.5839996F, -312.571991F), new Vector2(78.3440018F, -311.570007F), new Vector2(77.8639984F, -310.694F)); + builder.AddCubicBezier(new Vector2(77.3840027F, -309.817993F), new Vector2(76.723999F, -309.127991F), new Vector2(75.8840027F, -308.623993F)); + builder.AddCubicBezier(new Vector2(75.0439987F, -308.119995F), new Vector2(74.0719986F, -307.868011F), new Vector2(72.9680023F, -307.868011F)); + builder.AddCubicBezier(new Vector2(71.9120026F, -307.868011F), new Vector2(70.9639969F, -308.119995F), new Vector2(70.1240005F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(77.5220032F, -305.924011F)); + builder.AddCubicBezier(new Vector2(78.8779984F, -306.716003F), new Vector2(79.9520035F, -307.790009F), new Vector2(80.7440033F, -309.145996F)); + builder.AddCubicBezier(new Vector2(81.5360031F, -310.502014F), new Vector2(81.9319992F, -312.019989F), new Vector2(81.9319992F, -313.700012F)); + builder.AddCubicBezier(new Vector2(81.9319992F, -315.355988F), new Vector2(81.5360031F, -316.855988F), new Vector2(80.7440033F, -318.200012F)); + builder.AddCubicBezier(new Vector2(79.9520035F, -319.544006F), new Vector2(78.8779984F, -320.605988F), new Vector2(77.5220032F, -321.385986F)); + builder.AddCubicBezier(new Vector2(76.1660004F, -322.165985F), new Vector2(74.6480026F, -322.556F), new Vector2(72.9680023F, -322.556F)); + builder.AddCubicBezier(new Vector2(71.3119965F, -322.556F), new Vector2(69.8119965F, -322.160004F), new Vector2(68.4680023F, -321.368011F)); + builder.AddCubicBezier(new Vector2(67.1240005F, -320.575989F), new Vector2(66.0559998F, -319.514008F), new Vector2(65.2639999F, -318.182007F)); + builder.AddCubicBezier(new Vector2(64.4720001F, -316.850006F), new Vector2(64.0759964F, -315.355988F), new Vector2(64.0759964F, -313.700012F)); + builder.AddCubicBezier(new Vector2(64.0759964F, -312.019989F), new Vector2(64.4720001F, -310.502014F), new Vector2(65.2639999F, -309.145996F)); + builder.AddCubicBezier(new Vector2(66.0559998F, -307.790009F), new Vector2(67.1240005F, -306.716003F), new Vector2(68.4680023F, -305.924011F)); + builder.AddCubicBezier(new Vector2(69.8119965F, -305.131989F), new Vector2(71.3119965F, -304.735992F), new Vector2(72.9680023F, -304.735992F)); + builder.AddCubicBezier(new Vector2(74.6480026F, -304.735992F), new Vector2(76.1660004F, -305.131989F), new Vector2(77.5220032F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0282() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(60.4760017F, -330.799988F)); + builder.AddLine(new Vector2(57.2000008F, -330.799988F)); + builder.AddLine(new Vector2(57.2000008F, -318.019989F)); + builder.AddLine(new Vector2(57.8120003F, -313.880005F)); + builder.AddLine(new Vector2(57.2000008F, -309.70401F)); + builder.AddLine(new Vector2(57.2000008F, -305.096008F)); + builder.AddLine(new Vector2(60.4760017F, -305.096008F)); + builder.AddLine(new Vector2(60.4760017F, -330.799988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(49.1539993F, -308.533997F)); + builder.AddCubicBezier(new Vector2(48.3260002F, -309.026001F), new Vector2(47.6780014F, -309.716003F), new Vector2(47.2099991F, -310.604004F)); + builder.AddCubicBezier(new Vector2(46.7420006F, -311.492004F), new Vector2(46.5079994F, -312.511993F), new Vector2(46.5079994F, -313.664001F)); + builder.AddCubicBezier(new Vector2(46.5079994F, -314.81601F), new Vector2(46.7420006F, -315.829987F), new Vector2(47.2099991F, -316.705994F)); + builder.AddCubicBezier(new Vector2(47.6780014F, -317.582001F), new Vector2(48.3199997F, -318.265991F), new Vector2(49.1360016F, -318.757996F)); + builder.AddCubicBezier(new Vector2(49.9519997F, -319.25F), new Vector2(50.9000015F, -319.496002F), new Vector2(51.9799995F, -319.496002F)); + builder.AddCubicBezier(new Vector2(53.0600014F, -319.496002F), new Vector2(54.0079994F, -319.243988F), new Vector2(54.8240013F, -318.73999F)); + builder.AddCubicBezier(new Vector2(55.6399994F, -318.235992F), new Vector2(56.276001F, -317.54599F), new Vector2(56.7319984F, -316.670013F)); + builder.AddCubicBezier(new Vector2(57.1879997F, -315.794006F), new Vector2(57.4160004F, -314.779999F), new Vector2(57.4160004F, -313.627991F)); + builder.AddCubicBezier(new Vector2(57.4160004F, -312.5F), new Vector2(57.1879997F, -311.497986F), new Vector2(56.7319984F, -310.622009F)); + builder.AddCubicBezier(new Vector2(56.276001F, -309.746002F), new Vector2(55.6399994F, -309.056F), new Vector2(54.8240013F, -308.552002F)); + builder.AddCubicBezier(new Vector2(54.0079994F, -308.048004F), new Vector2(53.0600014F, -307.79599F), new Vector2(51.9799995F, -307.79599F)); + builder.AddCubicBezier(new Vector2(50.9239998F, -307.79599F), new Vector2(49.9819984F, -308.041992F), new Vector2(49.1539993F, -308.533997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(54.9679985F, -305.54599F)); + builder.AddCubicBezier(new Vector2(56F, -306.085999F), new Vector2(56.8279991F, -306.835999F), new Vector2(57.4519997F, -307.79599F)); + builder.AddCubicBezier(new Vector2(58.0760002F, -308.756012F), new Vector2(58.4239998F, -309.847992F), new Vector2(58.4959984F, -311.071991F)); + builder.AddLine(new Vector2(58.4959984F, -316.220001F)); + builder.AddCubicBezier(new Vector2(58.4239998F, -317.467987F), new Vector2(58.0699997F, -318.56601F), new Vector2(57.4339981F, -319.514008F)); + builder.AddCubicBezier(new Vector2(56.7980003F, -320.462006F), new Vector2(55.9640007F, -321.205994F), new Vector2(54.9319992F, -321.746002F)); + builder.AddCubicBezier(new Vector2(53.9000015F, -322.286011F), new Vector2(52.7360001F, -322.556F), new Vector2(51.4399986F, -322.556F)); + builder.AddCubicBezier(new Vector2(49.8800011F, -322.556F), new Vector2(48.4760017F, -322.160004F), new Vector2(47.2280006F, -321.368011F)); + builder.AddCubicBezier(new Vector2(45.9799995F, -320.575989F), new Vector2(44.9900017F, -319.507996F), new Vector2(44.2579994F, -318.164001F)); + builder.AddCubicBezier(new Vector2(43.526001F, -316.820007F), new Vector2(43.1599998F, -315.308014F), new Vector2(43.1599998F, -313.627991F)); + builder.AddCubicBezier(new Vector2(43.1599998F, -311.947998F), new Vector2(43.526001F, -310.436005F), new Vector2(44.2579994F, -309.09201F)); + builder.AddCubicBezier(new Vector2(44.9900017F, -307.747986F), new Vector2(45.9799995F, -306.686005F), new Vector2(47.2280006F, -305.906006F)); + builder.AddCubicBezier(new Vector2(48.4760017F, -305.126007F), new Vector2(49.8800011F, -304.735992F), new Vector2(51.4399986F, -304.735992F)); + builder.AddCubicBezier(new Vector2(52.7599983F, -304.735992F), new Vector2(53.9360008F, -305.006012F), new Vector2(54.9679985F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0283() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(27.7520008F, -305.096008F)); + builder.AddLine(new Vector2(27.7520008F, -322.196014F)); + builder.AddLine(new Vector2(24.5119991F, -322.196014F)); + builder.AddLine(new Vector2(24.5119991F, -305.096008F)); + builder.AddLine(new Vector2(27.7520008F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(39.8479996F, -305.096008F)); + builder.AddLine(new Vector2(39.8479996F, -315.716003F)); + builder.AddCubicBezier(new Vector2(39.8479996F, -316.891998F), new Vector2(39.5600014F, -318.002014F), new Vector2(38.9840012F, -319.04599F)); + builder.AddCubicBezier(new Vector2(38.4080009F, -320.089996F), new Vector2(37.6220016F, -320.936005F), new Vector2(36.6259995F, -321.584015F)); + builder.AddCubicBezier(new Vector2(35.6300011F, -322.231995F), new Vector2(34.4840012F, -322.556F), new Vector2(33.1879997F, -322.556F)); + builder.AddCubicBezier(new Vector2(31.8920002F, -322.556F), new Vector2(30.7280006F, -322.261993F), new Vector2(29.6959991F, -321.674011F)); + builder.AddCubicBezier(new Vector2(28.6639996F, -321.085999F), new Vector2(27.8600006F, -320.287994F), new Vector2(27.2840004F, -319.279999F)); + builder.AddCubicBezier(new Vector2(26.7080002F, -318.272003F), new Vector2(26.4200001F, -317.119995F), new Vector2(26.4200001F, -315.824005F)); + builder.AddLine(new Vector2(27.7520008F, -315.067993F)); + builder.AddCubicBezier(new Vector2(27.7520008F, -315.932007F), new Vector2(27.9440002F, -316.700012F), new Vector2(28.3279991F, -317.372009F)); + builder.AddCubicBezier(new Vector2(28.7119999F, -318.044006F), new Vector2(29.2399998F, -318.571991F), new Vector2(29.9120007F, -318.955994F)); + builder.AddCubicBezier(new Vector2(30.5839996F, -319.339996F), new Vector2(31.3519993F, -319.532013F), new Vector2(32.2159996F, -319.532013F)); + builder.AddCubicBezier(new Vector2(33.512001F, -319.532013F), new Vector2(34.5620003F, -319.112F), new Vector2(35.3660011F, -318.272003F)); + builder.AddCubicBezier(new Vector2(36.1699982F, -317.432007F), new Vector2(36.5719986F, -316.364014F), new Vector2(36.5719986F, -315.067993F)); + builder.AddLine(new Vector2(36.5719986F, -305.096008F)); + builder.AddLine(new Vector2(39.8479996F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0284() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(19.184F, -305.096008F)); + builder.AddLine(new Vector2(19.184F, -330.079987F)); + builder.AddLine(new Vector2(15.8000002F, -330.079987F)); + builder.AddLine(new Vector2(15.8000002F, -305.096008F)); + builder.AddLine(new Vector2(19.184F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0285() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-8.7159996F, -305.096008F)); + builder.AddLine(new Vector2(-8.7159996F, -322.196014F)); + builder.AddLine(new Vector2(-11.9560003F, -322.196014F)); + builder.AddLine(new Vector2(-11.9560003F, -305.096008F)); + builder.AddLine(new Vector2(-8.7159996F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(3.38000011F, -305.096008F)); + builder.AddLine(new Vector2(3.38000011F, -315.716003F)); + builder.AddCubicBezier(new Vector2(3.38000011F, -316.891998F), new Vector2(3.09200001F, -318.002014F), new Vector2(2.51600003F, -319.04599F)); + builder.AddCubicBezier(new Vector2(1.94000006F, -320.089996F), new Vector2(1.15400004F, -320.936005F), new Vector2(0.158000007F, -321.584015F)); + builder.AddCubicBezier(new Vector2(-0.838F, -322.231995F), new Vector2(-1.98399997F, -322.556F), new Vector2(-3.27999997F, -322.556F)); + builder.AddCubicBezier(new Vector2(-4.57600021F, -322.556F), new Vector2(-5.73999977F, -322.261993F), new Vector2(-6.77199984F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-7.8039999F, -321.085999F), new Vector2(-8.6079998F, -320.287994F), new Vector2(-9.18400002F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-9.76000023F, -318.272003F), new Vector2(-10.0480003F, -317.119995F), new Vector2(-10.0480003F, -315.824005F)); + builder.AddLine(new Vector2(-8.7159996F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-8.7159996F, -315.932007F), new Vector2(-8.52400017F, -316.700012F), new Vector2(-8.14000034F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-7.75600004F, -318.044006F), new Vector2(-7.22800016F, -318.571991F), new Vector2(-6.55600023F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-5.88399982F, -319.339996F), new Vector2(-5.11600018F, -319.532013F), new Vector2(-4.25199986F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-2.95600009F, -319.532013F), new Vector2(-1.90600002F, -319.112F), new Vector2(-1.102F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-0.298000008F, -317.432007F), new Vector2(0.104000002F, -316.364014F), new Vector2(0.104000002F, -315.067993F)); + builder.AddLine(new Vector2(0.104000002F, -305.096008F)); + builder.AddLine(new Vector2(3.38000011F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0286() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-16.8880005F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-16.5039997F, -326.605988F), new Vector2(-16.3120003F, -327.104004F), new Vector2(-16.3120003F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-16.3120003F, -328.279999F), new Vector2(-16.5039997F, -328.765991F), new Vector2(-16.8880005F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-17.2719994F, -329.558014F), new Vector2(-17.7639999F, -329.756012F), new Vector2(-18.3640003F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-18.9640007F, -329.756012F), new Vector2(-19.4559994F, -329.558014F), new Vector2(-19.8400002F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-20.2240009F, -328.765991F), new Vector2(-20.4160004F, -328.279999F), new Vector2(-20.4160004F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-20.4160004F, -327.104004F), new Vector2(-20.2240009F, -326.605988F), new Vector2(-19.8400002F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-19.4559994F, -325.813995F), new Vector2(-18.9640007F, -325.615997F), new Vector2(-18.3640003F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-17.7639999F, -325.615997F), new Vector2(-17.2719994F, -325.813995F), new Vector2(-16.8880005F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-16.7439995F, -305.096008F)); + builder.AddLine(new Vector2(-16.7439995F, -322.196014F)); + builder.AddLine(new Vector2(-20.0200005F, -322.196014F)); + builder.AddLine(new Vector2(-20.0200005F, -305.096008F)); + builder.AddLine(new Vector2(-16.7439995F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0287() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-43.4020004F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-44.2299995F, -309.614014F), new Vector2(-44.8779984F, -310.268005F), new Vector2(-45.3460007F, -311.108002F)); + builder.AddCubicBezier(new Vector2(-45.8139992F, -311.947998F), new Vector2(-46.0480003F, -312.90799F), new Vector2(-46.0480003F, -313.988007F)); + builder.AddCubicBezier(new Vector2(-46.0480003F, -315.067993F), new Vector2(-45.8139992F, -316.022003F), new Vector2(-45.3460007F, -316.850006F)); + builder.AddCubicBezier(new Vector2(-44.8779984F, -317.678009F), new Vector2(-44.2360001F, -318.325989F), new Vector2(-43.4199982F, -318.794006F)); + builder.AddCubicBezier(new Vector2(-42.6040001F, -319.261993F), new Vector2(-41.6559982F, -319.496002F), new Vector2(-40.5760002F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-39.5200005F, -319.496002F), new Vector2(-38.5900002F, -319.261993F), new Vector2(-37.7859993F, -318.794006F)); + builder.AddCubicBezier(new Vector2(-36.9819984F, -318.325989F), new Vector2(-36.3580017F, -317.678009F), new Vector2(-35.9140015F, -316.850006F)); + builder.AddCubicBezier(new Vector2(-35.4700012F, -316.022003F), new Vector2(-35.2480011F, -315.056F), new Vector2(-35.2480011F, -313.951996F)); + builder.AddCubicBezier(new Vector2(-35.2480011F, -312.847992F), new Vector2(-35.4700012F, -311.881989F), new Vector2(-35.9140015F, -311.053986F)); + builder.AddCubicBezier(new Vector2(-36.3580017F, -310.226013F), new Vector2(-36.9760017F, -309.584015F), new Vector2(-37.7680016F, -309.127991F)); + builder.AddCubicBezier(new Vector2(-38.5600014F, -308.671997F), new Vector2(-39.4959984F, -308.444F), new Vector2(-40.5760002F, -308.444F)); + builder.AddCubicBezier(new Vector2(-41.632F, -308.444F), new Vector2(-42.5740013F, -308.678009F), new Vector2(-43.4020004F, -309.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-37.6599998F, -306.175995F)); + builder.AddCubicBezier(new Vector2(-36.6279984F, -306.70401F), new Vector2(-35.8059998F, -307.441986F), new Vector2(-35.1940002F, -308.390015F)); + builder.AddCubicBezier(new Vector2(-34.5820007F, -309.338013F), new Vector2(-34.2400017F, -310.436005F), new Vector2(-34.1679993F, -311.68399F)); + builder.AddLine(new Vector2(-34.1679993F, -316.220001F)); + builder.AddCubicBezier(new Vector2(-34.2400017F, -317.492004F), new Vector2(-34.5760002F, -318.60199F), new Vector2(-35.1759987F, -319.549988F)); + builder.AddCubicBezier(new Vector2(-35.776001F, -320.497986F), new Vector2(-36.5979996F, -321.235992F), new Vector2(-37.6419983F, -321.764008F)); + builder.AddCubicBezier(new Vector2(-38.6860008F, -322.291992F), new Vector2(-39.8800011F, -322.556F), new Vector2(-41.223999F, -322.556F)); + builder.AddCubicBezier(new Vector2(-42.7599983F, -322.556F), new Vector2(-44.1520004F, -322.178009F), new Vector2(-45.4000015F, -321.421997F)); + builder.AddCubicBezier(new Vector2(-46.6479988F, -320.665985F), new Vector2(-47.6259995F, -319.645996F), new Vector2(-48.3339996F, -318.362F)); + builder.AddCubicBezier(new Vector2(-49.0419998F, -317.078003F), new Vector2(-49.3959999F, -315.619995F), new Vector2(-49.3959999F, -313.988007F)); + builder.AddCubicBezier(new Vector2(-49.3959999F, -312.355988F), new Vector2(-49.0359993F, -310.885986F), new Vector2(-48.3160019F, -309.578003F)); + builder.AddCubicBezier(new Vector2(-47.5960007F, -308.269989F), new Vector2(-46.618F, -307.243988F), new Vector2(-45.382F, -306.5F)); + builder.AddCubicBezier(new Vector2(-44.1459999F, -305.756012F), new Vector2(-42.7480011F, -305.384003F), new Vector2(-41.1879997F, -305.384003F)); + builder.AddCubicBezier(new Vector2(-39.868F, -305.384003F), new Vector2(-38.6920013F, -305.64801F), new Vector2(-37.6599998F, -306.175995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-36.4900017F, -298.597992F)); + builder.AddCubicBezier(new Vector2(-35.1339989F, -299.282013F), new Vector2(-34.0779991F, -300.242004F), new Vector2(-33.3219986F, -301.477997F)); + builder.AddCubicBezier(new Vector2(-32.5660019F, -302.713989F), new Vector2(-32.1879997F, -304.14801F), new Vector2(-32.1879997F, -305.779999F)); + builder.AddLine(new Vector2(-32.1879997F, -322.196014F)); + builder.AddLine(new Vector2(-35.4280014F, -322.196014F)); + builder.AddLine(new Vector2(-35.4280014F, -317.696014F)); + builder.AddLine(new Vector2(-34.8520012F, -313.880005F)); + builder.AddLine(new Vector2(-35.4280014F, -310.028015F)); + builder.AddLine(new Vector2(-35.4280014F, -305.779999F)); + builder.AddCubicBezier(new Vector2(-35.4280014F, -304.220001F), new Vector2(-35.9440002F, -302.977997F), new Vector2(-36.9760017F, -302.053986F)); + builder.AddCubicBezier(new Vector2(-38.0079994F, -301.130005F), new Vector2(-39.3880005F, -300.667999F), new Vector2(-41.1160011F, -300.667999F)); + builder.AddCubicBezier(new Vector2(-42.4360008F, -300.667999F), new Vector2(-43.5760002F, -300.902008F), new Vector2(-44.5359993F, -301.369995F)); + builder.AddCubicBezier(new Vector2(-45.4959984F, -301.838013F), new Vector2(-46.3240013F, -302.515991F), new Vector2(-47.0200005F, -303.403992F)); + builder.AddLine(new Vector2(-49.144001F, -301.279999F)); + builder.AddCubicBezier(new Vector2(-48.3040009F, -300.104004F), new Vector2(-47.2120018F, -299.191986F), new Vector2(-45.868F, -298.544006F)); + builder.AddCubicBezier(new Vector2(-44.5239983F, -297.895996F), new Vector2(-42.9640007F, -297.571991F), new Vector2(-41.1879997F, -297.571991F)); + builder.AddCubicBezier(new Vector2(-39.4119987F, -297.571991F), new Vector2(-37.8460007F, -297.914001F), new Vector2(-36.4900017F, -298.597992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0288() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-64.7679977F, -305.096008F)); + builder.AddLine(new Vector2(-64.7679977F, -322.196014F)); + builder.AddLine(new Vector2(-68.0080032F, -322.196014F)); + builder.AddLine(new Vector2(-68.0080032F, -305.096008F)); + builder.AddLine(new Vector2(-64.7679977F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-52.6720009F, -305.096008F)); + builder.AddLine(new Vector2(-52.6720009F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-52.6720009F, -316.891998F), new Vector2(-52.9599991F, -318.002014F), new Vector2(-53.5359993F, -319.04599F)); + builder.AddCubicBezier(new Vector2(-54.1119995F, -320.089996F), new Vector2(-54.8979988F, -320.936005F), new Vector2(-55.894001F, -321.584015F)); + builder.AddCubicBezier(new Vector2(-56.8899994F, -322.231995F), new Vector2(-58.0359993F, -322.556F), new Vector2(-59.3320007F, -322.556F)); + builder.AddCubicBezier(new Vector2(-60.6279984F, -322.556F), new Vector2(-61.7919998F, -322.261993F), new Vector2(-62.8240013F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-63.855999F, -321.085999F), new Vector2(-64.6600037F, -320.287994F), new Vector2(-65.2360001F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-65.8119965F, -318.272003F), new Vector2(-66.0999985F, -317.119995F), new Vector2(-66.0999985F, -315.824005F)); + builder.AddLine(new Vector2(-64.7679977F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-64.7679977F, -315.932007F), new Vector2(-64.5759964F, -316.700012F), new Vector2(-64.1920013F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-63.8079987F, -318.044006F), new Vector2(-63.2799988F, -318.571991F), new Vector2(-62.6080017F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-61.9360008F, -319.339996F), new Vector2(-61.1679993F, -319.532013F), new Vector2(-60.3040009F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-59.0079994F, -319.532013F), new Vector2(-57.9580002F, -319.112F), new Vector2(-57.1539993F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-56.3499985F, -317.432007F), new Vector2(-55.9480019F, -316.364014F), new Vector2(-55.9480019F, -315.067993F)); + builder.AddLine(new Vector2(-55.9480019F, -305.096008F)); + builder.AddLine(new Vector2(-52.6720009F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0289() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-72.9400024F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-72.5559998F, -326.605988F), new Vector2(-72.3639984F, -327.104004F), new Vector2(-72.3639984F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-72.3639984F, -328.279999F), new Vector2(-72.5559998F, -328.765991F), new Vector2(-72.9400024F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-73.3239975F, -329.558014F), new Vector2(-73.8160019F, -329.756012F), new Vector2(-74.4160004F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-75.0159988F, -329.756012F), new Vector2(-75.5080032F, -329.558014F), new Vector2(-75.8919983F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-76.276001F, -328.765991F), new Vector2(-76.4680023F, -328.279999F), new Vector2(-76.4680023F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-76.4680023F, -327.104004F), new Vector2(-76.276001F, -326.605988F), new Vector2(-75.8919983F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-75.5080032F, -325.813995F), new Vector2(-75.0159988F, -325.615997F), new Vector2(-74.4160004F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-73.8160019F, -325.615997F), new Vector2(-73.3239975F, -325.813995F), new Vector2(-72.9400024F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-72.7959976F, -305.096008F)); + builder.AddLine(new Vector2(-72.7959976F, -322.196014F)); + builder.AddLine(new Vector2(-76.0719986F, -322.196014F)); + builder.AddLine(new Vector2(-76.0719986F, -305.096008F)); + builder.AddLine(new Vector2(-72.7959976F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0290() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-92.5599976F, -305.096008F)); + builder.AddLine(new Vector2(-92.5599976F, -322.196014F)); + builder.AddLine(new Vector2(-95.8000031F, -322.196014F)); + builder.AddLine(new Vector2(-95.8000031F, -305.096008F)); + builder.AddLine(new Vector2(-92.5599976F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-80.4639969F, -305.096008F)); + builder.AddLine(new Vector2(-80.4639969F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-80.4639969F, -316.891998F), new Vector2(-80.7519989F, -318.002014F), new Vector2(-81.3280029F, -319.04599F)); + builder.AddCubicBezier(new Vector2(-81.9039993F, -320.089996F), new Vector2(-82.6900024F, -320.936005F), new Vector2(-83.685997F, -321.584015F)); + builder.AddCubicBezier(new Vector2(-84.6819992F, -322.231995F), new Vector2(-85.8280029F, -322.556F), new Vector2(-87.1240005F, -322.556F)); + builder.AddCubicBezier(new Vector2(-88.4199982F, -322.556F), new Vector2(-89.5839996F, -322.261993F), new Vector2(-90.6159973F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-91.6480026F, -321.085999F), new Vector2(-92.4520035F, -320.287994F), new Vector2(-93.0279999F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-93.6039963F, -318.272003F), new Vector2(-93.8919983F, -317.119995F), new Vector2(-93.8919983F, -315.824005F)); + builder.AddLine(new Vector2(-92.5599976F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-92.5599976F, -315.932007F), new Vector2(-92.3679962F, -316.700012F), new Vector2(-91.9840012F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-91.5999985F, -318.044006F), new Vector2(-91.0719986F, -318.571991F), new Vector2(-90.4000015F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-89.7279968F, -319.339996F), new Vector2(-88.9599991F, -319.532013F), new Vector2(-88.0960007F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-86.8000031F, -319.532013F), new Vector2(-85.75F, -319.112F), new Vector2(-84.9459991F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-84.1419983F, -317.432007F), new Vector2(-83.7399979F, -316.364014F), new Vector2(-83.7399979F, -315.067993F)); + builder.AddLine(new Vector2(-83.7399979F, -305.096008F)); + builder.AddLine(new Vector2(-80.4639969F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0291() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-103.396004F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-102.220001F, -305.996002F), new Vector2(-101.211998F, -306.727997F), new Vector2(-100.372002F, -307.687988F)); + builder.AddLine(new Vector2(-102.459999F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-103.036003F, -309.140015F), new Vector2(-103.725998F, -308.635986F), new Vector2(-104.529999F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-105.334F, -307.963989F), new Vector2(-106.216003F, -307.79599F), new Vector2(-107.176003F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-108.328003F, -307.79599F), new Vector2(-109.348F, -308.041992F), new Vector2(-110.236F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-111.124001F, -309.026001F), new Vector2(-111.807999F, -309.721985F), new Vector2(-112.288002F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-112.767998F, -311.522003F), new Vector2(-113.008003F, -312.571991F), new Vector2(-113.008003F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-113.008003F, -314.947998F), new Vector2(-112.779999F, -315.967987F), new Vector2(-112.323997F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-111.867996F, -317.696014F), new Vector2(-111.220001F, -318.368011F), new Vector2(-110.379997F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-109.540001F, -319.328003F), new Vector2(-108.568001F, -319.567993F), new Vector2(-107.463997F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-106.407997F, -319.567993F), new Vector2(-105.508003F, -319.346008F), new Vector2(-104.764F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-104.019997F, -318.458008F), new Vector2(-103.444F, -317.834015F), new Vector2(-103.036003F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-102.627998F, -316.226013F), new Vector2(-102.424004F, -315.247986F), new Vector2(-102.424004F, -314.096008F)); + builder.AddLine(new Vector2(-101.236F, -315.140015F)); + builder.AddLine(new Vector2(-113.944F, -315.140015F)); + builder.AddLine(new Vector2(-113.944F, -312.440002F)); + builder.AddLine(new Vector2(-99.5080032F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-99.435997F, -312.776001F), new Vector2(-99.3880005F, -313.082001F), new Vector2(-99.3639984F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-99.3399963F, -313.634003F), new Vector2(-99.3280029F, -313.891998F), new Vector2(-99.3280029F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-99.3280029F, -315.764008F), new Vector2(-99.6699982F, -317.216003F), new Vector2(-100.353996F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-101.038002F, -319.76001F), new Vector2(-101.991997F, -320.756012F), new Vector2(-103.216003F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-104.440002F, -322.196014F), new Vector2(-105.832001F, -322.556F), new Vector2(-107.391998F, -322.556F)); + builder.AddCubicBezier(new Vector2(-109.047997F, -322.556F), new Vector2(-110.542F, -322.165985F), new Vector2(-111.874001F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-113.206001F, -320.605988F), new Vector2(-114.262001F, -319.544006F), new Vector2(-115.042F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-115.821999F, -316.855988F), new Vector2(-116.211998F, -315.343994F), new Vector2(-116.211998F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-116.211998F, -311.959991F), new Vector2(-115.816002F, -310.436005F), new Vector2(-115.024002F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-114.232002F, -307.747986F), new Vector2(-113.157997F, -306.686005F), new Vector2(-111.802002F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-110.445999F, -305.126007F), new Vector2(-108.903999F, -304.735992F), new Vector2(-107.176003F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-105.832001F, -304.735992F), new Vector2(-104.571999F, -304.988007F), new Vector2(-103.396004F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0292() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-130.414001F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-131.242004F, -309.056F), new Vector2(-131.878006F, -309.746002F), new Vector2(-132.322006F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-132.766006F, -311.497986F), new Vector2(-132.988007F, -312.5F), new Vector2(-132.988007F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-132.988007F, -314.779999F), new Vector2(-132.759995F, -315.794006F), new Vector2(-132.304001F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-131.848007F, -317.54599F), new Vector2(-131.212006F, -318.235992F), new Vector2(-130.395996F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-129.580002F, -319.243988F), new Vector2(-128.643997F, -319.496002F), new Vector2(-127.587997F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-126.508003F, -319.496002F), new Vector2(-125.559998F, -319.243988F), new Vector2(-124.744003F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-123.928001F, -318.235992F), new Vector2(-123.286003F, -317.54599F), new Vector2(-122.818001F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-122.349998F, -315.794006F), new Vector2(-122.115997F, -314.791992F), new Vector2(-122.115997F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-122.115997F, -312.511993F), new Vector2(-122.349998F, -311.497986F), new Vector2(-122.818001F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-123.286003F, -309.746002F), new Vector2(-123.928001F, -309.056F), new Vector2(-124.744003F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-125.559998F, -308.048004F), new Vector2(-126.508003F, -307.79599F), new Vector2(-127.587997F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-128.643997F, -307.79599F), new Vector2(-129.585999F, -308.048004F), new Vector2(-130.414001F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-132.807999F, -297.932007F)); + builder.AddLine(new Vector2(-132.807999F, -309.380005F)); + builder.AddLine(new Vector2(-133.419998F, -313.556F)); + builder.AddLine(new Vector2(-132.807999F, -317.696014F)); + builder.AddLine(new Vector2(-132.807999F, -322.196014F)); + builder.AddLine(new Vector2(-136.048004F, -322.196014F)); + builder.AddLine(new Vector2(-136.048004F, -297.932007F)); + builder.AddLine(new Vector2(-132.807999F, -297.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-122.818001F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-121.557999F, -306.686005F), new Vector2(-120.568001F, -307.747986F), new Vector2(-119.848F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-119.127998F, -310.436005F), new Vector2(-118.767998F, -311.947998F), new Vector2(-118.767998F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-118.767998F, -315.308014F), new Vector2(-119.127998F, -316.820007F), new Vector2(-119.848F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-120.568001F, -319.507996F), new Vector2(-121.557999F, -320.575989F), new Vector2(-122.818001F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-124.078003F, -322.160004F), new Vector2(-125.487999F, -322.556F), new Vector2(-127.047997F, -322.556F)); + builder.AddCubicBezier(new Vector2(-128.320007F, -322.556F), new Vector2(-129.477997F, -322.286011F), new Vector2(-130.522003F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-131.565994F, -321.205994F), new Vector2(-132.406006F, -320.462006F), new Vector2(-133.042007F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-133.677994F, -318.56601F), new Vector2(-134.031998F, -317.467987F), new Vector2(-134.104004F, -316.220001F)); + builder.AddLine(new Vector2(-134.104004F, -311.071991F)); + builder.AddCubicBezier(new Vector2(-134.031998F, -309.847992F), new Vector2(-133.684006F, -308.756012F), new Vector2(-133.059998F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-132.436005F, -306.835999F), new Vector2(-131.602005F, -306.085999F), new Vector2(-130.557999F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-129.514008F, -305.006012F), new Vector2(-128.343994F, -304.735992F), new Vector2(-127.047997F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-125.487999F, -304.735992F), new Vector2(-124.078003F, -305.126007F), new Vector2(-122.818001F, -305.906006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0293() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-151.365997F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-152.194F, -309.056F), new Vector2(-152.830002F, -309.746002F), new Vector2(-153.274002F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-153.718002F, -311.497986F), new Vector2(-153.940002F, -312.5F), new Vector2(-153.940002F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-153.940002F, -314.779999F), new Vector2(-153.712006F, -315.794006F), new Vector2(-153.255997F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-152.800003F, -317.54599F), new Vector2(-152.164001F, -318.235992F), new Vector2(-151.348007F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-150.531998F, -319.243988F), new Vector2(-149.595993F, -319.496002F), new Vector2(-148.539993F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-147.460007F, -319.496002F), new Vector2(-146.511993F, -319.243988F), new Vector2(-145.695999F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-144.880005F, -318.235992F), new Vector2(-144.238007F, -317.54599F), new Vector2(-143.770004F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-143.302002F, -315.794006F), new Vector2(-143.067993F, -314.791992F), new Vector2(-143.067993F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-143.067993F, -312.511993F), new Vector2(-143.302002F, -311.497986F), new Vector2(-143.770004F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-144.238007F, -309.746002F), new Vector2(-144.880005F, -309.056F), new Vector2(-145.695999F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-146.511993F, -308.048004F), new Vector2(-147.460007F, -307.79599F), new Vector2(-148.539993F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-149.595993F, -307.79599F), new Vector2(-150.537994F, -308.048004F), new Vector2(-151.365997F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-153.759995F, -297.932007F)); + builder.AddLine(new Vector2(-153.759995F, -309.380005F)); + builder.AddLine(new Vector2(-154.371994F, -313.556F)); + builder.AddLine(new Vector2(-153.759995F, -317.696014F)); + builder.AddLine(new Vector2(-153.759995F, -322.196014F)); + builder.AddLine(new Vector2(-157F, -322.196014F)); + builder.AddLine(new Vector2(-157F, -297.932007F)); + builder.AddLine(new Vector2(-153.759995F, -297.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-143.770004F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-142.509995F, -306.686005F), new Vector2(-141.520004F, -307.747986F), new Vector2(-140.800003F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-140.080002F, -310.436005F), new Vector2(-139.720001F, -311.947998F), new Vector2(-139.720001F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-139.720001F, -315.308014F), new Vector2(-140.080002F, -316.820007F), new Vector2(-140.800003F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-141.520004F, -319.507996F), new Vector2(-142.509995F, -320.575989F), new Vector2(-143.770004F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-145.029999F, -322.160004F), new Vector2(-146.440002F, -322.556F), new Vector2(-148F, -322.556F)); + builder.AddCubicBezier(new Vector2(-149.272003F, -322.556F), new Vector2(-150.429993F, -322.286011F), new Vector2(-151.473999F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-152.518005F, -321.205994F), new Vector2(-153.358002F, -320.462006F), new Vector2(-153.994003F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-154.630005F, -318.56601F), new Vector2(-154.983994F, -317.467987F), new Vector2(-155.056F, -316.220001F)); + builder.AddLine(new Vector2(-155.056F, -311.071991F)); + builder.AddCubicBezier(new Vector2(-154.983994F, -309.847992F), new Vector2(-154.636002F, -308.756012F), new Vector2(-154.011993F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-153.388F, -306.835999F), new Vector2(-152.554001F, -306.085999F), new Vector2(-151.509995F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-150.466003F, -305.006012F), new Vector2(-149.296005F, -304.735992F), new Vector2(-148F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-146.440002F, -304.735992F), new Vector2(-145.029999F, -305.126007F), new Vector2(-143.770004F, -305.906006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0294() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-161.716003F, -305.096008F)); + builder.AddLine(new Vector2(-161.716003F, -322.196014F)); + builder.AddLine(new Vector2(-164.992004F, -322.196014F)); + builder.AddLine(new Vector2(-164.992004F, -318.019989F)); + builder.AddLine(new Vector2(-164.380005F, -313.880005F)); + builder.AddLine(new Vector2(-164.992004F, -309.70401F)); + builder.AddLine(new Vector2(-164.992004F, -305.096008F)); + builder.AddLine(new Vector2(-161.716003F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-173.020004F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-173.860001F, -309.056F), new Vector2(-174.514008F, -309.746002F), new Vector2(-174.981995F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-175.449997F, -311.497986F), new Vector2(-175.684006F, -312.511993F), new Vector2(-175.684006F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-175.684006F, -314.791992F), new Vector2(-175.449997F, -315.794006F), new Vector2(-174.981995F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-174.514008F, -317.54599F), new Vector2(-173.865997F, -318.235992F), new Vector2(-173.037994F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-172.210007F, -319.243988F), new Vector2(-171.255997F, -319.496002F), new Vector2(-170.175995F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-169.095993F, -319.496002F), new Vector2(-168.154007F, -319.25F), new Vector2(-167.350006F, -318.757996F)); + builder.AddCubicBezier(new Vector2(-166.546005F, -318.265991F), new Vector2(-165.916F, -317.575989F), new Vector2(-165.460007F, -316.687988F)); + builder.AddCubicBezier(new Vector2(-165.003998F, -315.799988F), new Vector2(-164.776001F, -314.779999F), new Vector2(-164.776001F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-164.776001F, -311.924011F), new Vector2(-165.268005F, -310.526001F), new Vector2(-166.251999F, -309.43399F)); + builder.AddCubicBezier(new Vector2(-167.235992F, -308.34201F), new Vector2(-168.531998F, -307.79599F), new Vector2(-170.139999F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-171.220001F, -307.79599F), new Vector2(-172.179993F, -308.048004F), new Vector2(-173.020004F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-167.188004F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-166.156006F, -306.085999F), new Vector2(-165.334F, -306.835999F), new Vector2(-164.722F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-164.110001F, -308.756012F), new Vector2(-163.768005F, -309.847992F), new Vector2(-163.695999F, -311.071991F)); + builder.AddLine(new Vector2(-163.695999F, -316.220001F)); + builder.AddCubicBezier(new Vector2(-163.768005F, -317.467987F), new Vector2(-164.115997F, -318.56601F), new Vector2(-164.740005F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-165.363998F, -320.462006F), new Vector2(-166.186005F, -321.205994F), new Vector2(-167.205994F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-168.225998F, -322.286011F), new Vector2(-169.384003F, -322.556F), new Vector2(-170.679993F, -322.556F)); + builder.AddCubicBezier(new Vector2(-172.264008F, -322.556F), new Vector2(-173.686005F, -322.160004F), new Vector2(-174.945999F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-176.205994F, -320.575989F), new Vector2(-177.201996F, -319.507996F), new Vector2(-177.934006F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-178.666F, -316.820007F), new Vector2(-179.031998F, -315.308014F), new Vector2(-179.031998F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-179.031998F, -311.947998F), new Vector2(-178.666F, -310.436005F), new Vector2(-177.934006F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-177.201996F, -307.747986F), new Vector2(-176.205994F, -306.686005F), new Vector2(-174.945999F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-173.686005F, -305.126007F), new Vector2(-172.264008F, -304.735992F), new Vector2(-170.679993F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-169.384003F, -304.735992F), new Vector2(-168.220001F, -305.006012F), new Vector2(-167.188004F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0295() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-194.440002F, -305.096008F)); + builder.AddLine(new Vector2(-194.440002F, -330.799988F)); + builder.AddLine(new Vector2(-197.679993F, -330.799988F)); + builder.AddLine(new Vector2(-197.679993F, -305.096008F)); + builder.AddLine(new Vector2(-194.440002F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-182.343994F, -305.096008F)); + builder.AddLine(new Vector2(-182.343994F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-182.343994F, -317.059998F), new Vector2(-182.632004F, -318.247986F), new Vector2(-183.207993F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-183.783997F, -320.312012F), new Vector2(-184.570007F, -321.115997F), new Vector2(-185.565994F, -321.691986F)); + builder.AddCubicBezier(new Vector2(-186.561996F, -322.268005F), new Vector2(-187.707993F, -322.556F), new Vector2(-189.003998F, -322.556F)); + builder.AddCubicBezier(new Vector2(-190.300003F, -322.556F), new Vector2(-191.464005F, -322.261993F), new Vector2(-192.496002F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-193.528F, -321.085999F), new Vector2(-194.332001F, -320.287994F), new Vector2(-194.908005F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-195.483994F, -318.272003F), new Vector2(-195.772003F, -317.119995F), new Vector2(-195.772003F, -315.824005F)); + builder.AddLine(new Vector2(-194.440002F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-194.440002F, -315.932007F), new Vector2(-194.248001F, -316.700012F), new Vector2(-193.863998F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-193.479996F, -318.044006F), new Vector2(-192.951996F, -318.571991F), new Vector2(-192.279999F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-191.608002F, -319.339996F), new Vector2(-190.839996F, -319.532013F), new Vector2(-189.975998F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-188.679993F, -319.532013F), new Vector2(-187.630005F, -319.112F), new Vector2(-186.826004F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-186.022003F, -317.432007F), new Vector2(-185.619995F, -316.364014F), new Vector2(-185.619995F, -315.067993F)); + builder.AddLine(new Vector2(-185.619995F, -305.096008F)); + builder.AddLine(new Vector2(-182.343994F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0296() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-219.315994F, -297.932007F)); + builder.AddLine(new Vector2(-216.076004F, -304.951996F)); + builder.AddLine(new Vector2(-217.912003F, -308.264008F)); + builder.AddLine(new Vector2(-222.916F, -297.932007F)); + builder.AddLine(new Vector2(-219.315994F, -297.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-216.076004F, -304.951996F)); + builder.AddLine(new Vector2(-208.084F, -322.196014F)); + builder.AddLine(new Vector2(-211.684006F, -322.196014F)); + builder.AddLine(new Vector2(-217.479996F, -308.696014F)); + builder.AddLine(new Vector2(-216.328003F, -308.696014F)); + builder.AddLine(new Vector2(-221.835999F, -322.196014F)); + builder.AddLine(new Vector2(-225.436005F, -322.196014F)); + builder.AddLine(new Vector2(-218.020004F, -304.951996F)); + builder.AddLine(new Vector2(-216.076004F, -304.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0297() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-228.388F, -305.096008F)); + builder.AddLine(new Vector2(-228.388F, -330.799988F)); + builder.AddLine(new Vector2(-231.628006F, -330.799988F)); + builder.AddLine(new Vector2(-231.628006F, -305.096008F)); + builder.AddLine(new Vector2(-228.388F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0298() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-234.796005F, -319.243988F)); + builder.AddLine(new Vector2(-234.796005F, -322.196014F)); + builder.AddLine(new Vector2(-246.460007F, -322.196014F)); + builder.AddLine(new Vector2(-246.460007F, -319.243988F)); + builder.AddLine(new Vector2(-234.796005F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-239.007996F, -305.096008F)); + builder.AddLine(new Vector2(-239.007996F, -329.359985F)); + builder.AddLine(new Vector2(-242.248001F, -329.359985F)); + builder.AddLine(new Vector2(-242.248001F, -305.096008F)); + builder.AddLine(new Vector2(-239.007996F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0299() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-261.14801F, -305.096008F)); + builder.AddLine(new Vector2(-261.14801F, -322.196014F)); + builder.AddLine(new Vector2(-264.388F, -322.196014F)); + builder.AddLine(new Vector2(-264.388F, -305.096008F)); + builder.AddLine(new Vector2(-261.14801F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-249.052002F, -305.096008F)); + builder.AddLine(new Vector2(-249.052002F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-249.052002F, -316.891998F), new Vector2(-249.339996F, -318.002014F), new Vector2(-249.916F, -319.04599F)); + builder.AddCubicBezier(new Vector2(-250.492004F, -320.089996F), new Vector2(-251.278F, -320.936005F), new Vector2(-252.274002F, -321.584015F)); + builder.AddCubicBezier(new Vector2(-253.270004F, -322.231995F), new Vector2(-254.416F, -322.556F), new Vector2(-255.712006F, -322.556F)); + builder.AddCubicBezier(new Vector2(-257.007996F, -322.556F), new Vector2(-258.171997F, -322.261993F), new Vector2(-259.20401F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-260.235992F, -321.085999F), new Vector2(-261.040009F, -320.287994F), new Vector2(-261.615997F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-262.191986F, -318.272003F), new Vector2(-262.480011F, -317.119995F), new Vector2(-262.480011F, -315.824005F)); + builder.AddLine(new Vector2(-261.14801F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-261.14801F, -315.932007F), new Vector2(-260.955994F, -316.700012F), new Vector2(-260.571991F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-260.187988F, -318.044006F), new Vector2(-259.660004F, -318.571991F), new Vector2(-258.988007F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-258.31601F, -319.339996F), new Vector2(-257.548004F, -319.532013F), new Vector2(-256.68399F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-255.388F, -319.532013F), new Vector2(-254.337997F, -319.112F), new Vector2(-253.533997F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-252.729996F, -317.432007F), new Vector2(-252.328003F, -316.364014F), new Vector2(-252.328003F, -315.067993F)); + builder.AddLine(new Vector2(-252.328003F, -305.096008F)); + builder.AddLine(new Vector2(-249.052002F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0300() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-271.984009F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-270.808014F, -305.996002F), new Vector2(-269.799988F, -306.727997F), new Vector2(-268.959991F, -307.687988F)); + builder.AddLine(new Vector2(-271.048004F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-271.623993F, -309.140015F), new Vector2(-272.313995F, -308.635986F), new Vector2(-273.118011F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-273.921997F, -307.963989F), new Vector2(-274.803986F, -307.79599F), new Vector2(-275.764008F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-276.915985F, -307.79599F), new Vector2(-277.936005F, -308.041992F), new Vector2(-278.824005F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-279.712006F, -309.026001F), new Vector2(-280.395996F, -309.721985F), new Vector2(-280.876007F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-281.355988F, -311.522003F), new Vector2(-281.596008F, -312.571991F), new Vector2(-281.596008F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-281.596008F, -314.947998F), new Vector2(-281.368011F, -315.967987F), new Vector2(-280.911987F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-280.455994F, -317.696014F), new Vector2(-279.808014F, -318.368011F), new Vector2(-278.967987F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-278.127991F, -319.328003F), new Vector2(-277.156006F, -319.567993F), new Vector2(-276.052002F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-274.996002F, -319.567993F), new Vector2(-274.096008F, -319.346008F), new Vector2(-273.35199F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-272.608002F, -318.458008F), new Vector2(-272.032013F, -317.834015F), new Vector2(-271.623993F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-271.216003F, -316.226013F), new Vector2(-271.011993F, -315.247986F), new Vector2(-271.011993F, -314.096008F)); + builder.AddLine(new Vector2(-269.824005F, -315.140015F)); + builder.AddLine(new Vector2(-282.532013F, -315.140015F)); + builder.AddLine(new Vector2(-282.532013F, -312.440002F)); + builder.AddLine(new Vector2(-268.096008F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-268.023987F, -312.776001F), new Vector2(-267.976013F, -313.082001F), new Vector2(-267.951996F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-267.928009F, -313.634003F), new Vector2(-267.915985F, -313.891998F), new Vector2(-267.915985F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-267.915985F, -315.764008F), new Vector2(-268.257996F, -317.216003F), new Vector2(-268.941986F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-269.626007F, -319.76001F), new Vector2(-270.579987F, -320.756012F), new Vector2(-271.803986F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-273.028015F, -322.196014F), new Vector2(-274.420013F, -322.556F), new Vector2(-275.980011F, -322.556F)); + builder.AddCubicBezier(new Vector2(-277.635986F, -322.556F), new Vector2(-279.130005F, -322.165985F), new Vector2(-280.462006F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-281.794006F, -320.605988F), new Vector2(-282.850006F, -319.544006F), new Vector2(-283.630005F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-284.410004F, -316.855988F), new Vector2(-284.799988F, -315.343994F), new Vector2(-284.799988F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-284.799988F, -311.959991F), new Vector2(-284.403992F, -310.436005F), new Vector2(-283.612F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-282.820007F, -307.747986F), new Vector2(-281.746002F, -306.686005F), new Vector2(-280.390015F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-279.033997F, -305.126007F), new Vector2(-277.492004F, -304.735992F), new Vector2(-275.764008F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-274.420013F, -304.735992F), new Vector2(-273.160004F, -304.988007F), new Vector2(-271.984009F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0301() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-293.187988F, -318.343994F)); + builder.AddCubicBezier(new Vector2(-292.420013F, -319.112F), new Vector2(-291.436005F, -319.496002F), new Vector2(-290.235992F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-289.660004F, -319.496002F), new Vector2(-289.156006F, -319.411987F), new Vector2(-288.723999F, -319.243988F)); + builder.AddCubicBezier(new Vector2(-288.291992F, -319.075989F), new Vector2(-287.895996F, -318.799988F), new Vector2(-287.536011F, -318.415985F)); + builder.AddLine(new Vector2(-285.411987F, -320.612F)); + builder.AddCubicBezier(new Vector2(-286.011993F, -321.308014F), new Vector2(-286.660004F, -321.806F), new Vector2(-287.355988F, -322.105988F)); + builder.AddCubicBezier(new Vector2(-288.052002F, -322.406006F), new Vector2(-288.832001F, -322.556F), new Vector2(-289.696014F, -322.556F)); + builder.AddCubicBezier(new Vector2(-291.59201F, -322.556F), new Vector2(-293.044006F, -321.90799F), new Vector2(-294.052002F, -320.612F)); + builder.AddCubicBezier(new Vector2(-295.059998F, -319.31601F), new Vector2(-295.563995F, -317.575989F), new Vector2(-295.563995F, -315.391998F)); + builder.AddLine(new Vector2(-294.339996F, -314.81601F)); + builder.AddCubicBezier(new Vector2(-294.339996F, -316.399994F), new Vector2(-293.955994F, -317.575989F), new Vector2(-293.187988F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-294.339996F, -305.096008F)); + builder.AddLine(new Vector2(-294.339996F, -322.196014F)); + builder.AddLine(new Vector2(-297.579987F, -322.196014F)); + builder.AddLine(new Vector2(-297.579987F, -305.096008F)); + builder.AddLine(new Vector2(-294.339996F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0302() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-307.696014F, -318.343994F)); + builder.AddCubicBezier(new Vector2(-306.928009F, -319.112F), new Vector2(-305.944F, -319.496002F), new Vector2(-304.743988F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-304.167999F, -319.496002F), new Vector2(-303.664001F, -319.411987F), new Vector2(-303.231995F, -319.243988F)); + builder.AddCubicBezier(new Vector2(-302.799988F, -319.075989F), new Vector2(-302.403992F, -318.799988F), new Vector2(-302.044006F, -318.415985F)); + builder.AddLine(new Vector2(-299.920013F, -320.612F)); + builder.AddCubicBezier(new Vector2(-300.519989F, -321.308014F), new Vector2(-301.167999F, -321.806F), new Vector2(-301.864014F, -322.105988F)); + builder.AddCubicBezier(new Vector2(-302.559998F, -322.406006F), new Vector2(-303.339996F, -322.556F), new Vector2(-304.20401F, -322.556F)); + builder.AddCubicBezier(new Vector2(-306.100006F, -322.556F), new Vector2(-307.552002F, -321.90799F), new Vector2(-308.559998F, -320.612F)); + builder.AddCubicBezier(new Vector2(-309.567993F, -319.31601F), new Vector2(-310.071991F, -317.575989F), new Vector2(-310.071991F, -315.391998F)); + builder.AddLine(new Vector2(-308.847992F, -314.81601F)); + builder.AddCubicBezier(new Vector2(-308.847992F, -316.399994F), new Vector2(-308.463989F, -317.575989F), new Vector2(-307.696014F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-308.847992F, -305.096008F)); + builder.AddLine(new Vector2(-308.847992F, -322.196014F)); + builder.AddLine(new Vector2(-312.088013F, -322.196014F)); + builder.AddLine(new Vector2(-312.088013F, -305.096008F)); + builder.AddLine(new Vector2(-308.847992F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0303() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-319.971985F, -305.726013F)); + builder.AddCubicBezier(new Vector2(-318.868011F, -306.338013F), new Vector2(-318.003998F, -307.208008F), new Vector2(-317.380005F, -308.335999F)); + builder.AddCubicBezier(new Vector2(-316.756012F, -309.463989F), new Vector2(-316.444F, -310.772003F), new Vector2(-316.444F, -312.26001F)); + builder.AddLine(new Vector2(-316.444F, -322.196014F)); + builder.AddLine(new Vector2(-319.68399F, -322.196014F)); + builder.AddLine(new Vector2(-319.68399F, -312.403992F)); + builder.AddCubicBezier(new Vector2(-319.68399F, -310.988007F), new Vector2(-320.044006F, -309.877991F), new Vector2(-320.764008F, -309.074005F)); + builder.AddCubicBezier(new Vector2(-321.484009F, -308.269989F), new Vector2(-322.480011F, -307.868011F), new Vector2(-323.752014F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-324.59201F, -307.868011F), new Vector2(-325.324005F, -308.048004F), new Vector2(-325.947998F, -308.40799F)); + builder.AddCubicBezier(new Vector2(-326.571991F, -308.768005F), new Vector2(-327.04599F, -309.290009F), new Vector2(-327.369995F, -309.973999F)); + builder.AddCubicBezier(new Vector2(-327.694F, -310.65799F), new Vector2(-327.855988F, -311.467987F), new Vector2(-327.855988F, -312.403992F)); + builder.AddLine(new Vector2(-327.855988F, -322.196014F)); + builder.AddLine(new Vector2(-331.096008F, -322.196014F)); + builder.AddLine(new Vector2(-331.096008F, -312.26001F)); + builder.AddCubicBezier(new Vector2(-331.096008F, -310.772003F), new Vector2(-330.783997F, -309.463989F), new Vector2(-330.160004F, -308.335999F)); + builder.AddCubicBezier(new Vector2(-329.536011F, -307.208008F), new Vector2(-328.665985F, -306.338013F), new Vector2(-327.549988F, -305.726013F)); + builder.AddCubicBezier(new Vector2(-326.43399F, -305.114014F), new Vector2(-325.167999F, -304.808014F), new Vector2(-323.752014F, -304.808014F)); + builder.AddCubicBezier(new Vector2(-322.335999F, -304.808014F), new Vector2(-321.075989F, -305.114014F), new Vector2(-319.971985F, -305.726013F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0304() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-336.765991F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-335.626007F, -305.996002F), new Vector2(-334.660004F, -306.70401F), new Vector2(-333.868011F, -307.615997F)); + builder.AddLine(new Vector2(-335.992004F, -309.776001F)); + builder.AddCubicBezier(new Vector2(-336.544006F, -309.152008F), new Vector2(-337.197998F, -308.678009F), new Vector2(-337.95401F, -308.354004F)); + builder.AddCubicBezier(new Vector2(-338.709991F, -308.029999F), new Vector2(-339.544006F, -307.868011F), new Vector2(-340.455994F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-341.536011F, -307.868011F), new Vector2(-342.496002F, -308.119995F), new Vector2(-343.335999F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-344.175995F, -309.127991F), new Vector2(-344.835999F, -309.812012F), new Vector2(-345.31601F, -310.675995F)); + builder.AddCubicBezier(new Vector2(-345.79599F, -311.540009F), new Vector2(-346.036011F, -312.536011F), new Vector2(-346.036011F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-346.036011F, -314.791992F), new Vector2(-345.79599F, -315.787994F), new Vector2(-345.31601F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-344.835999F, -317.515991F), new Vector2(-344.175995F, -318.194F), new Vector2(-343.335999F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-342.496002F, -319.178009F), new Vector2(-341.536011F, -319.424011F), new Vector2(-340.455994F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-339.567993F, -319.424011F), new Vector2(-338.73999F, -319.261993F), new Vector2(-337.971985F, -318.937988F)); + builder.AddCubicBezier(new Vector2(-337.20401F, -318.614014F), new Vector2(-336.556F, -318.140015F), new Vector2(-336.028015F, -317.515991F)); + builder.AddLine(new Vector2(-333.868011F, -319.675995F)); + builder.AddCubicBezier(new Vector2(-334.68399F, -320.612F), new Vector2(-335.656006F, -321.325989F), new Vector2(-336.783997F, -321.817993F)); + builder.AddCubicBezier(new Vector2(-337.911987F, -322.309998F), new Vector2(-339.135986F, -322.556F), new Vector2(-340.455994F, -322.556F)); + builder.AddCubicBezier(new Vector2(-342.135986F, -322.556F), new Vector2(-343.653992F, -322.165985F), new Vector2(-345.01001F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-346.365997F, -320.605988F), new Vector2(-347.43399F, -319.544006F), new Vector2(-348.213989F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-348.993988F, -316.855988F), new Vector2(-349.384003F, -315.343994F), new Vector2(-349.384003F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-349.384003F, -312.007996F), new Vector2(-348.993988F, -310.502014F), new Vector2(-348.213989F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-347.43399F, -307.790009F), new Vector2(-346.365997F, -306.716003F), new Vector2(-345.01001F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-343.653992F, -305.131989F), new Vector2(-342.135986F, -304.735992F), new Vector2(-340.455994F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-339.135986F, -304.735992F), new Vector2(-337.906006F, -304.988007F), new Vector2(-336.765991F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0305() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-361.06601F, -306.140015F)); + builder.AddCubicBezier(new Vector2(-359.925995F, -307.075989F), new Vector2(-359.355988F, -308.347992F), new Vector2(-359.355988F, -309.955994F)); + builder.AddCubicBezier(new Vector2(-359.355988F, -311.011993F), new Vector2(-359.578003F, -311.864014F), new Vector2(-360.022003F, -312.511993F)); + builder.AddCubicBezier(new Vector2(-360.466003F, -313.160004F), new Vector2(-361.036011F, -313.675995F), new Vector2(-361.731995F, -314.059998F)); + builder.AddCubicBezier(new Vector2(-362.428009F, -314.444F), new Vector2(-363.160004F, -314.75F), new Vector2(-363.928009F, -314.977997F)); + builder.AddCubicBezier(new Vector2(-364.696014F, -315.205994F), new Vector2(-365.43399F, -315.428009F), new Vector2(-366.141998F, -315.644012F)); + builder.AddCubicBezier(new Vector2(-366.850006F, -315.859985F), new Vector2(-367.420013F, -316.123993F), new Vector2(-367.85199F, -316.436005F)); + builder.AddCubicBezier(new Vector2(-368.283997F, -316.747986F), new Vector2(-368.5F, -317.191986F), new Vector2(-368.5F, -317.768005F)); + builder.AddCubicBezier(new Vector2(-368.5F, -318.320007F), new Vector2(-368.253998F, -318.764008F), new Vector2(-367.761993F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-367.269989F, -319.436005F), new Vector2(-366.556F, -319.604004F), new Vector2(-365.619995F, -319.604004F)); + builder.AddCubicBezier(new Vector2(-364.731995F, -319.604004F), new Vector2(-363.940002F, -319.436005F), new Vector2(-363.243988F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-362.548004F, -318.764008F), new Vector2(-361.947998F, -318.283997F), new Vector2(-361.444F, -317.660004F)); + builder.AddLine(new Vector2(-359.355988F, -319.747986F)); + builder.AddCubicBezier(new Vector2(-360.028015F, -320.68399F), new Vector2(-360.885986F, -321.385986F), new Vector2(-361.929993F, -321.854004F)); + builder.AddCubicBezier(new Vector2(-362.973999F, -322.321991F), new Vector2(-364.167999F, -322.556F), new Vector2(-365.511993F, -322.556F)); + builder.AddCubicBezier(new Vector2(-366.783997F, -322.556F), new Vector2(-367.876007F, -322.35199F), new Vector2(-368.787994F, -321.944F)); + builder.AddCubicBezier(new Vector2(-369.700012F, -321.536011F), new Vector2(-370.402008F, -320.95401F), new Vector2(-370.894012F, -320.197998F)); + builder.AddCubicBezier(new Vector2(-371.385986F, -319.441986F), new Vector2(-371.631989F, -318.548004F), new Vector2(-371.631989F, -317.515991F)); + builder.AddCubicBezier(new Vector2(-371.631989F, -316.484009F), new Vector2(-371.410004F, -315.649994F), new Vector2(-370.966003F, -315.014008F)); + builder.AddCubicBezier(new Vector2(-370.522003F, -314.377991F), new Vector2(-369.951996F, -313.880005F), new Vector2(-369.256012F, -313.519989F)); + builder.AddCubicBezier(new Vector2(-368.559998F, -313.160004F), new Vector2(-367.821991F, -312.872009F), new Vector2(-367.041992F, -312.656006F)); + builder.AddCubicBezier(new Vector2(-366.261993F, -312.440002F), new Vector2(-365.523987F, -312.217987F), new Vector2(-364.828003F, -311.98999F)); + builder.AddCubicBezier(new Vector2(-364.131989F, -311.761993F), new Vector2(-363.562012F, -311.473999F), new Vector2(-363.118011F, -311.126007F)); + builder.AddCubicBezier(new Vector2(-362.674011F, -310.778015F), new Vector2(-362.451996F, -310.291992F), new Vector2(-362.451996F, -309.667999F)); + builder.AddCubicBezier(new Vector2(-362.451996F, -309.044006F), new Vector2(-362.727997F, -308.558014F), new Vector2(-363.279999F, -308.209991F)); + builder.AddCubicBezier(new Vector2(-363.832001F, -307.862F), new Vector2(-364.612F, -307.687988F), new Vector2(-365.619995F, -307.687988F)); + builder.AddCubicBezier(new Vector2(-366.627991F, -307.687988F), new Vector2(-367.540009F, -307.873993F), new Vector2(-368.355988F, -308.246002F)); + builder.AddCubicBezier(new Vector2(-369.171997F, -308.618011F), new Vector2(-369.891998F, -309.187988F), new Vector2(-370.515991F, -309.955994F)); + builder.AddLine(new Vector2(-372.604004F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-372.075989F, -307.220001F), new Vector2(-371.458008F, -306.661987F), new Vector2(-370.75F, -306.194F)); + builder.AddCubicBezier(new Vector2(-370.041992F, -305.726013F), new Vector2(-369.256012F, -305.365997F), new Vector2(-368.391998F, -305.114014F)); + builder.AddCubicBezier(new Vector2(-367.528015F, -304.862F), new Vector2(-366.615997F, -304.735992F), new Vector2(-365.656006F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-363.735992F, -304.735992F), new Vector2(-362.205994F, -305.20401F), new Vector2(-361.06601F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0306() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-376.023987F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-375.640015F, -326.605988F), new Vector2(-375.447998F, -327.104004F), new Vector2(-375.447998F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-375.447998F, -328.279999F), new Vector2(-375.640015F, -328.765991F), new Vector2(-376.023987F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-376.40799F, -329.558014F), new Vector2(-376.899994F, -329.756012F), new Vector2(-377.5F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-378.100006F, -329.756012F), new Vector2(-378.59201F, -329.558014F), new Vector2(-378.976013F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-379.359985F, -328.765991F), new Vector2(-379.552002F, -328.279999F), new Vector2(-379.552002F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-379.552002F, -327.104004F), new Vector2(-379.359985F, -326.605988F), new Vector2(-378.976013F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-378.59201F, -325.813995F), new Vector2(-378.100006F, -325.615997F), new Vector2(-377.5F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-376.899994F, -325.615997F), new Vector2(-376.40799F, -325.813995F), new Vector2(-376.023987F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-375.880005F, -305.096008F)); + builder.AddLine(new Vector2(-375.880005F, -322.196014F)); + builder.AddLine(new Vector2(-379.156006F, -322.196014F)); + builder.AddLine(new Vector2(-379.156006F, -305.096008F)); + builder.AddLine(new Vector2(-375.880005F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0307() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-389.776001F, -319.243988F)); + builder.AddLine(new Vector2(-389.776001F, -322.196014F)); + builder.AddLine(new Vector2(-401.440002F, -322.196014F)); + builder.AddLine(new Vector2(-401.440002F, -319.243988F)); + builder.AddLine(new Vector2(-389.776001F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-393.988007F, -305.096008F)); + builder.AddLine(new Vector2(-393.988007F, -329.359985F)); + builder.AddLine(new Vector2(-397.227997F, -329.359985F)); + builder.AddLine(new Vector2(-397.227997F, -305.096008F)); + builder.AddLine(new Vector2(-393.988007F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0308() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-404.5F, -305.096008F)); + builder.AddLine(new Vector2(-404.5F, -322.196014F)); + builder.AddLine(new Vector2(-407.776001F, -322.196014F)); + builder.AddLine(new Vector2(-407.776001F, -318.019989F)); + builder.AddLine(new Vector2(-407.164001F, -313.880005F)); + builder.AddLine(new Vector2(-407.776001F, -309.70401F)); + builder.AddLine(new Vector2(-407.776001F, -305.096008F)); + builder.AddLine(new Vector2(-404.5F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-415.803986F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-416.644012F, -309.056F), new Vector2(-417.298004F, -309.746002F), new Vector2(-417.765991F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-418.234009F, -311.497986F), new Vector2(-418.467987F, -312.511993F), new Vector2(-418.467987F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-418.467987F, -314.791992F), new Vector2(-418.234009F, -315.794006F), new Vector2(-417.765991F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-417.298004F, -317.54599F), new Vector2(-416.649994F, -318.235992F), new Vector2(-415.821991F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-414.993988F, -319.243988F), new Vector2(-414.040009F, -319.496002F), new Vector2(-412.959991F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-411.880005F, -319.496002F), new Vector2(-410.937988F, -319.25F), new Vector2(-410.134003F, -318.757996F)); + builder.AddCubicBezier(new Vector2(-409.329987F, -318.265991F), new Vector2(-408.700012F, -317.575989F), new Vector2(-408.243988F, -316.687988F)); + builder.AddCubicBezier(new Vector2(-407.787994F, -315.799988F), new Vector2(-407.559998F, -314.779999F), new Vector2(-407.559998F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-407.559998F, -311.924011F), new Vector2(-408.052002F, -310.526001F), new Vector2(-409.036011F, -309.43399F)); + builder.AddCubicBezier(new Vector2(-410.019989F, -308.34201F), new Vector2(-411.31601F, -307.79599F), new Vector2(-412.924011F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-414.003998F, -307.79599F), new Vector2(-414.963989F, -308.048004F), new Vector2(-415.803986F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-409.971985F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-408.940002F, -306.085999F), new Vector2(-408.118011F, -306.835999F), new Vector2(-407.506012F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-406.894012F, -308.756012F), new Vector2(-406.552002F, -309.847992F), new Vector2(-406.480011F, -311.071991F)); + builder.AddLine(new Vector2(-406.480011F, -316.220001F)); + builder.AddCubicBezier(new Vector2(-406.552002F, -317.467987F), new Vector2(-406.899994F, -318.56601F), new Vector2(-407.523987F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-408.14801F, -320.462006F), new Vector2(-408.970001F, -321.205994F), new Vector2(-409.98999F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-411.01001F, -322.286011F), new Vector2(-412.167999F, -322.556F), new Vector2(-413.463989F, -322.556F)); + builder.AddCubicBezier(new Vector2(-415.048004F, -322.556F), new Vector2(-416.470001F, -322.160004F), new Vector2(-417.730011F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-418.98999F, -320.575989F), new Vector2(-419.985992F, -319.507996F), new Vector2(-420.717987F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-421.450012F, -316.820007F), new Vector2(-421.81601F, -315.308014F), new Vector2(-421.81601F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-421.81601F, -311.947998F), new Vector2(-421.450012F, -310.436005F), new Vector2(-420.717987F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-419.985992F, -307.747986F), new Vector2(-418.98999F, -306.686005F), new Vector2(-417.730011F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-416.470001F, -305.126007F), new Vector2(-415.048004F, -304.735992F), new Vector2(-413.463989F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-412.167999F, -304.735992F), new Vector2(-411.003998F, -305.006012F), new Vector2(-409.971985F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0309() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-437.223999F, -305.096008F)); + builder.AddLine(new Vector2(-437.223999F, -330.799988F)); + builder.AddLine(new Vector2(-440.463989F, -330.799988F)); + builder.AddLine(new Vector2(-440.463989F, -305.096008F)); + builder.AddLine(new Vector2(-437.223999F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-425.127991F, -305.096008F)); + builder.AddLine(new Vector2(-425.127991F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-425.127991F, -317.059998F), new Vector2(-425.415985F, -318.247986F), new Vector2(-425.992004F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-426.567993F, -320.312012F), new Vector2(-427.354004F, -321.115997F), new Vector2(-428.350006F, -321.691986F)); + builder.AddCubicBezier(new Vector2(-429.346008F, -322.268005F), new Vector2(-430.492004F, -322.556F), new Vector2(-431.787994F, -322.556F)); + builder.AddCubicBezier(new Vector2(-433.084015F, -322.556F), new Vector2(-434.247986F, -322.261993F), new Vector2(-435.279999F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-436.312012F, -321.085999F), new Vector2(-437.115997F, -320.287994F), new Vector2(-437.691986F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-438.268005F, -318.272003F), new Vector2(-438.556F, -317.119995F), new Vector2(-438.556F, -315.824005F)); + builder.AddLine(new Vector2(-437.223999F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-437.223999F, -315.932007F), new Vector2(-437.032013F, -316.700012F), new Vector2(-436.64801F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-436.264008F, -318.044006F), new Vector2(-435.735992F, -318.571991F), new Vector2(-435.063995F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-434.391998F, -319.339996F), new Vector2(-433.623993F, -319.532013F), new Vector2(-432.76001F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-431.463989F, -319.532013F), new Vector2(-430.414001F, -319.112F), new Vector2(-429.609985F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-428.806F, -317.432007F), new Vector2(-428.403992F, -316.364014F), new Vector2(-428.403992F, -315.067993F)); + builder.AddLine(new Vector2(-428.403992F, -305.096008F)); + builder.AddLine(new Vector2(-425.127991F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0310() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-460.696014F, -305.096008F)); + builder.AddLine(new Vector2(-455.727997F, -317.984009F)); + builder.AddLine(new Vector2(-456.915985F, -317.984009F)); + builder.AddLine(new Vector2(-451.984009F, -305.096008F)); + builder.AddLine(new Vector2(-450.075989F, -305.096008F)); + builder.AddLine(new Vector2(-443.343994F, -322.196014F)); + builder.AddLine(new Vector2(-446.727997F, -322.196014F)); + builder.AddLine(new Vector2(-451.623993F, -308.876007F)); + builder.AddLine(new Vector2(-450.544006F, -308.876007F)); + builder.AddLine(new Vector2(-455.403992F, -322.196014F)); + builder.AddLine(new Vector2(-457.276001F, -322.196014F)); + builder.AddLine(new Vector2(-462.135986F, -308.876007F)); + builder.AddLine(new Vector2(-461.056F, -308.876007F)); + builder.AddLine(new Vector2(-465.951996F, -322.196014F)); + builder.AddLine(new Vector2(-469.335999F, -322.196014F)); + builder.AddLine(new Vector2(-462.604004F, -305.096008F)); + builder.AddLine(new Vector2(-460.696014F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0311() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-490.846008F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-491.674011F, -309.614014F), new Vector2(-492.321991F, -310.268005F), new Vector2(-492.790009F, -311.108002F)); + builder.AddCubicBezier(new Vector2(-493.257996F, -311.947998F), new Vector2(-493.492004F, -312.90799F), new Vector2(-493.492004F, -313.988007F)); + builder.AddCubicBezier(new Vector2(-493.492004F, -315.067993F), new Vector2(-493.257996F, -316.022003F), new Vector2(-492.790009F, -316.850006F)); + builder.AddCubicBezier(new Vector2(-492.321991F, -317.678009F), new Vector2(-491.679993F, -318.325989F), new Vector2(-490.864014F, -318.794006F)); + builder.AddCubicBezier(new Vector2(-490.048004F, -319.261993F), new Vector2(-489.100006F, -319.496002F), new Vector2(-488.019989F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-486.963989F, -319.496002F), new Vector2(-486.033997F, -319.261993F), new Vector2(-485.230011F, -318.794006F)); + builder.AddCubicBezier(new Vector2(-484.425995F, -318.325989F), new Vector2(-483.802002F, -317.678009F), new Vector2(-483.358002F, -316.850006F)); + builder.AddCubicBezier(new Vector2(-482.914001F, -316.022003F), new Vector2(-482.691986F, -315.056F), new Vector2(-482.691986F, -313.951996F)); + builder.AddCubicBezier(new Vector2(-482.691986F, -312.847992F), new Vector2(-482.914001F, -311.881989F), new Vector2(-483.358002F, -311.053986F)); + builder.AddCubicBezier(new Vector2(-483.802002F, -310.226013F), new Vector2(-484.420013F, -309.584015F), new Vector2(-485.212006F, -309.127991F)); + builder.AddCubicBezier(new Vector2(-486.003998F, -308.671997F), new Vector2(-486.940002F, -308.444F), new Vector2(-488.019989F, -308.444F)); + builder.AddCubicBezier(new Vector2(-489.075989F, -308.444F), new Vector2(-490.018005F, -308.678009F), new Vector2(-490.846008F, -309.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-485.104004F, -306.175995F)); + builder.AddCubicBezier(new Vector2(-484.071991F, -306.70401F), new Vector2(-483.25F, -307.441986F), new Vector2(-482.638F, -308.390015F)); + builder.AddCubicBezier(new Vector2(-482.026001F, -309.338013F), new Vector2(-481.68399F, -310.436005F), new Vector2(-481.612F, -311.68399F)); + builder.AddLine(new Vector2(-481.612F, -316.220001F)); + builder.AddCubicBezier(new Vector2(-481.68399F, -317.492004F), new Vector2(-482.019989F, -318.60199F), new Vector2(-482.619995F, -319.549988F)); + builder.AddCubicBezier(new Vector2(-483.220001F, -320.497986F), new Vector2(-484.041992F, -321.235992F), new Vector2(-485.085999F, -321.764008F)); + builder.AddCubicBezier(new Vector2(-486.130005F, -322.291992F), new Vector2(-487.324005F, -322.556F), new Vector2(-488.667999F, -322.556F)); + builder.AddCubicBezier(new Vector2(-490.20401F, -322.556F), new Vector2(-491.596008F, -322.178009F), new Vector2(-492.843994F, -321.421997F)); + builder.AddCubicBezier(new Vector2(-494.09201F, -320.665985F), new Vector2(-495.070007F, -319.645996F), new Vector2(-495.778015F, -318.362F)); + builder.AddCubicBezier(new Vector2(-496.485992F, -317.078003F), new Vector2(-496.839996F, -315.619995F), new Vector2(-496.839996F, -313.988007F)); + builder.AddCubicBezier(new Vector2(-496.839996F, -312.355988F), new Vector2(-496.480011F, -310.885986F), new Vector2(-495.76001F, -309.578003F)); + builder.AddCubicBezier(new Vector2(-495.040009F, -308.269989F), new Vector2(-494.062012F, -307.243988F), new Vector2(-492.825989F, -306.5F)); + builder.AddCubicBezier(new Vector2(-491.589996F, -305.756012F), new Vector2(-490.191986F, -305.384003F), new Vector2(-488.631989F, -305.384003F)); + builder.AddCubicBezier(new Vector2(-487.312012F, -305.384003F), new Vector2(-486.135986F, -305.64801F), new Vector2(-485.104004F, -306.175995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-483.93399F, -298.597992F)); + builder.AddCubicBezier(new Vector2(-482.578003F, -299.282013F), new Vector2(-481.522003F, -300.242004F), new Vector2(-480.765991F, -301.477997F)); + builder.AddCubicBezier(new Vector2(-480.01001F, -302.713989F), new Vector2(-479.631989F, -304.14801F), new Vector2(-479.631989F, -305.779999F)); + builder.AddLine(new Vector2(-479.631989F, -322.196014F)); + builder.AddLine(new Vector2(-482.872009F, -322.196014F)); + builder.AddLine(new Vector2(-482.872009F, -317.696014F)); + builder.AddLine(new Vector2(-482.29599F, -313.880005F)); + builder.AddLine(new Vector2(-482.872009F, -310.028015F)); + builder.AddLine(new Vector2(-482.872009F, -305.779999F)); + builder.AddCubicBezier(new Vector2(-482.872009F, -304.220001F), new Vector2(-483.388F, -302.977997F), new Vector2(-484.420013F, -302.053986F)); + builder.AddCubicBezier(new Vector2(-485.451996F, -301.130005F), new Vector2(-486.832001F, -300.667999F), new Vector2(-488.559998F, -300.667999F)); + builder.AddCubicBezier(new Vector2(-489.880005F, -300.667999F), new Vector2(-491.019989F, -300.902008F), new Vector2(-491.980011F, -301.369995F)); + builder.AddCubicBezier(new Vector2(-492.940002F, -301.838013F), new Vector2(-493.768005F, -302.515991F), new Vector2(-494.463989F, -303.403992F)); + builder.AddLine(new Vector2(-496.588013F, -301.279999F)); + builder.AddCubicBezier(new Vector2(-495.747986F, -300.104004F), new Vector2(-494.656006F, -299.191986F), new Vector2(-493.312012F, -298.544006F)); + builder.AddCubicBezier(new Vector2(-491.967987F, -297.895996F), new Vector2(-490.40799F, -297.571991F), new Vector2(-488.631989F, -297.571991F)); + builder.AddCubicBezier(new Vector2(-486.855988F, -297.571991F), new Vector2(-485.290009F, -297.914001F), new Vector2(-483.93399F, -298.597992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0312() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-512.211975F, -305.096008F)); + builder.AddLine(new Vector2(-512.211975F, -322.196014F)); + builder.AddLine(new Vector2(-515.452026F, -322.196014F)); + builder.AddLine(new Vector2(-515.452026F, -305.096008F)); + builder.AddLine(new Vector2(-512.211975F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-500.115997F, -305.096008F)); + builder.AddLine(new Vector2(-500.115997F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-500.115997F, -316.891998F), new Vector2(-500.403992F, -318.002014F), new Vector2(-500.980011F, -319.04599F)); + builder.AddCubicBezier(new Vector2(-501.556F, -320.089996F), new Vector2(-502.34201F, -320.936005F), new Vector2(-503.338013F, -321.584015F)); + builder.AddCubicBezier(new Vector2(-504.334015F, -322.231995F), new Vector2(-505.480011F, -322.556F), new Vector2(-506.776001F, -322.556F)); + builder.AddCubicBezier(new Vector2(-508.071991F, -322.556F), new Vector2(-509.235992F, -322.261993F), new Vector2(-510.268005F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-511.299988F, -321.085999F), new Vector2(-512.104004F, -320.287994F), new Vector2(-512.679993F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-513.255981F, -318.272003F), new Vector2(-513.544006F, -317.119995F), new Vector2(-513.544006F, -315.824005F)); + builder.AddLine(new Vector2(-512.211975F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-512.211975F, -315.932007F), new Vector2(-512.02002F, -316.700012F), new Vector2(-511.635986F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-511.252014F, -318.044006F), new Vector2(-510.723999F, -318.571991F), new Vector2(-510.052002F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-509.380005F, -319.339996F), new Vector2(-508.612F, -319.532013F), new Vector2(-507.747986F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-506.451996F, -319.532013F), new Vector2(-505.402008F, -319.112F), new Vector2(-504.597992F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-503.794006F, -317.432007F), new Vector2(-503.391998F, -316.364014F), new Vector2(-503.391998F, -315.067993F)); + builder.AddLine(new Vector2(-503.391998F, -305.096008F)); + builder.AddLine(new Vector2(-500.115997F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0313() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-520.383972F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-520F, -326.605988F), new Vector2(-519.807983F, -327.104004F), new Vector2(-519.807983F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-519.807983F, -328.279999F), new Vector2(-520F, -328.765991F), new Vector2(-520.383972F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-520.768005F, -329.558014F), new Vector2(-521.26001F, -329.756012F), new Vector2(-521.859985F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-522.460022F, -329.756012F), new Vector2(-522.952026F, -329.558014F), new Vector2(-523.335999F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-523.719971F, -328.765991F), new Vector2(-523.911987F, -328.279999F), new Vector2(-523.911987F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-523.911987F, -327.104004F), new Vector2(-523.719971F, -326.605988F), new Vector2(-523.335999F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-522.952026F, -325.813995F), new Vector2(-522.460022F, -325.615997F), new Vector2(-521.859985F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-521.26001F, -325.615997F), new Vector2(-520.768005F, -325.813995F), new Vector2(-520.383972F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-520.23999F, -305.096008F)); + builder.AddLine(new Vector2(-520.23999F, -322.196014F)); + builder.AddLine(new Vector2(-523.515991F, -322.196014F)); + builder.AddLine(new Vector2(-523.515991F, -305.096008F)); + builder.AddLine(new Vector2(-520.23999F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0314() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-528.231995F, -330.799988F)); + builder.AddLine(new Vector2(-531.507996F, -330.799988F)); + builder.AddLine(new Vector2(-531.507996F, -318.019989F)); + builder.AddLine(new Vector2(-530.895996F, -313.880005F)); + builder.AddLine(new Vector2(-531.507996F, -309.70401F)); + builder.AddLine(new Vector2(-531.507996F, -305.096008F)); + builder.AddLine(new Vector2(-528.231995F, -305.096008F)); + builder.AddLine(new Vector2(-528.231995F, -330.799988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-539.554016F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-540.382019F, -309.026001F), new Vector2(-541.030029F, -309.716003F), new Vector2(-541.497986F, -310.604004F)); + builder.AddCubicBezier(new Vector2(-541.966003F, -311.492004F), new Vector2(-542.200012F, -312.511993F), new Vector2(-542.200012F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-542.200012F, -314.81601F), new Vector2(-541.966003F, -315.829987F), new Vector2(-541.497986F, -316.705994F)); + builder.AddCubicBezier(new Vector2(-541.030029F, -317.582001F), new Vector2(-540.388F, -318.265991F), new Vector2(-539.572021F, -318.757996F)); + builder.AddCubicBezier(new Vector2(-538.755981F, -319.25F), new Vector2(-537.807983F, -319.496002F), new Vector2(-536.728027F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-535.64801F, -319.496002F), new Vector2(-534.700012F, -319.243988F), new Vector2(-533.883972F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-533.067993F, -318.235992F), new Vector2(-532.432007F, -317.54599F), new Vector2(-531.976013F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-531.52002F, -315.794006F), new Vector2(-531.291992F, -314.779999F), new Vector2(-531.291992F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-531.291992F, -312.5F), new Vector2(-531.52002F, -311.497986F), new Vector2(-531.976013F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-532.432007F, -309.746002F), new Vector2(-533.067993F, -309.056F), new Vector2(-533.883972F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-534.700012F, -308.048004F), new Vector2(-535.64801F, -307.79599F), new Vector2(-536.728027F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-537.783997F, -307.79599F), new Vector2(-538.726013F, -308.041992F), new Vector2(-539.554016F, -308.533997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-533.73999F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-532.708008F, -306.085999F), new Vector2(-531.880005F, -306.835999F), new Vector2(-531.255981F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-530.632019F, -308.756012F), new Vector2(-530.283997F, -309.847992F), new Vector2(-530.211975F, -311.071991F)); + builder.AddLine(new Vector2(-530.211975F, -316.220001F)); + builder.AddCubicBezier(new Vector2(-530.283997F, -317.467987F), new Vector2(-530.638F, -318.56601F), new Vector2(-531.273987F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-531.909973F, -320.462006F), new Vector2(-532.744019F, -321.205994F), new Vector2(-533.776001F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-534.807983F, -322.286011F), new Vector2(-535.971985F, -322.556F), new Vector2(-537.268005F, -322.556F)); + builder.AddCubicBezier(new Vector2(-538.828003F, -322.556F), new Vector2(-540.231995F, -322.160004F), new Vector2(-541.47998F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-542.728027F, -320.575989F), new Vector2(-543.718018F, -319.507996F), new Vector2(-544.450012F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-545.182007F, -316.820007F), new Vector2(-545.547974F, -315.308014F), new Vector2(-545.547974F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-545.547974F, -311.947998F), new Vector2(-545.182007F, -310.436005F), new Vector2(-544.450012F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-543.718018F, -307.747986F), new Vector2(-542.728027F, -306.686005F), new Vector2(-541.47998F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-540.231995F, -305.126007F), new Vector2(-538.828003F, -304.735992F), new Vector2(-537.268005F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-535.947998F, -304.735992F), new Vector2(-534.771973F, -305.006012F), new Vector2(-533.73999F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0315() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-553.971985F, -318.343994F)); + builder.AddCubicBezier(new Vector2(-553.203979F, -319.112F), new Vector2(-552.219971F, -319.496002F), new Vector2(-551.02002F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-550.44397F, -319.496002F), new Vector2(-549.940002F, -319.411987F), new Vector2(-549.507996F, -319.243988F)); + builder.AddCubicBezier(new Vector2(-549.075989F, -319.075989F), new Vector2(-548.679993F, -318.799988F), new Vector2(-548.320007F, -318.415985F)); + builder.AddLine(new Vector2(-546.195984F, -320.612F)); + builder.AddCubicBezier(new Vector2(-546.796021F, -321.308014F), new Vector2(-547.44397F, -321.806F), new Vector2(-548.140015F, -322.105988F)); + builder.AddCubicBezier(new Vector2(-548.835999F, -322.406006F), new Vector2(-549.616028F, -322.556F), new Vector2(-550.47998F, -322.556F)); + builder.AddCubicBezier(new Vector2(-552.375977F, -322.556F), new Vector2(-553.828003F, -321.90799F), new Vector2(-554.835999F, -320.612F)); + builder.AddCubicBezier(new Vector2(-555.843994F, -319.31601F), new Vector2(-556.348022F, -317.575989F), new Vector2(-556.348022F, -315.391998F)); + builder.AddLine(new Vector2(-555.124023F, -314.81601F)); + builder.AddCubicBezier(new Vector2(-555.124023F, -316.399994F), new Vector2(-554.73999F, -317.575989F), new Vector2(-553.971985F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-555.124023F, -305.096008F)); + builder.AddLine(new Vector2(-555.124023F, -322.196014F)); + builder.AddLine(new Vector2(-558.364014F, -322.196014F)); + builder.AddLine(new Vector2(-558.364014F, -305.096008F)); + builder.AddLine(new Vector2(-555.124023F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0316() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-563.080017F, -305.096008F)); + builder.AddLine(new Vector2(-563.080017F, -322.196014F)); + builder.AddLine(new Vector2(-566.356018F, -322.196014F)); + builder.AddLine(new Vector2(-566.356018F, -318.019989F)); + builder.AddLine(new Vector2(-565.744019F, -313.880005F)); + builder.AddLine(new Vector2(-566.356018F, -309.70401F)); + builder.AddLine(new Vector2(-566.356018F, -305.096008F)); + builder.AddLine(new Vector2(-563.080017F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-574.383972F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-575.223999F, -309.056F), new Vector2(-575.877991F, -309.746002F), new Vector2(-576.346008F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-576.814026F, -311.497986F), new Vector2(-577.047974F, -312.511993F), new Vector2(-577.047974F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-577.047974F, -314.791992F), new Vector2(-576.814026F, -315.794006F), new Vector2(-576.346008F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-575.877991F, -317.54599F), new Vector2(-575.22998F, -318.235992F), new Vector2(-574.401978F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-573.573975F, -319.243988F), new Vector2(-572.619995F, -319.496002F), new Vector2(-571.539978F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-570.460022F, -319.496002F), new Vector2(-569.518005F, -319.25F), new Vector2(-568.713989F, -318.757996F)); + builder.AddCubicBezier(new Vector2(-567.909973F, -318.265991F), new Vector2(-567.280029F, -317.575989F), new Vector2(-566.823975F, -316.687988F)); + builder.AddCubicBezier(new Vector2(-566.367981F, -315.799988F), new Vector2(-566.140015F, -314.779999F), new Vector2(-566.140015F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-566.140015F, -311.924011F), new Vector2(-566.632019F, -310.526001F), new Vector2(-567.616028F, -309.43399F)); + builder.AddCubicBezier(new Vector2(-568.599976F, -308.34201F), new Vector2(-569.895996F, -307.79599F), new Vector2(-571.504028F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-572.583984F, -307.79599F), new Vector2(-573.544006F, -308.048004F), new Vector2(-574.383972F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-568.552002F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-567.52002F, -306.085999F), new Vector2(-566.697998F, -306.835999F), new Vector2(-566.085999F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-565.473999F, -308.756012F), new Vector2(-565.132019F, -309.847992F), new Vector2(-565.059998F, -311.071991F)); + builder.AddLine(new Vector2(-565.059998F, -316.220001F)); + builder.AddCubicBezier(new Vector2(-565.132019F, -317.467987F), new Vector2(-565.47998F, -318.56601F), new Vector2(-566.104004F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-566.728027F, -320.462006F), new Vector2(-567.549988F, -321.205994F), new Vector2(-568.570007F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-569.590027F, -322.286011F), new Vector2(-570.747986F, -322.556F), new Vector2(-572.044006F, -322.556F)); + builder.AddCubicBezier(new Vector2(-573.627991F, -322.556F), new Vector2(-575.049988F, -322.160004F), new Vector2(-576.309998F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-577.570007F, -320.575989F), new Vector2(-578.565979F, -319.507996F), new Vector2(-579.297974F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-580.030029F, -316.820007F), new Vector2(-580.395996F, -315.308014F), new Vector2(-580.395996F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-580.395996F, -311.947998F), new Vector2(-580.030029F, -310.436005F), new Vector2(-579.297974F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-578.565979F, -307.747986F), new Vector2(-577.570007F, -306.686005F), new Vector2(-576.309998F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-575.049988F, -305.126007F), new Vector2(-573.627991F, -304.735992F), new Vector2(-572.044006F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-570.747986F, -304.735992F), new Vector2(-569.583984F, -305.006012F), new Vector2(-568.552002F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0317() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-595.245972F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-596.073975F, -309.614014F), new Vector2(-596.721985F, -310.268005F), new Vector2(-597.190002F, -311.108002F)); + builder.AddCubicBezier(new Vector2(-597.65802F, -311.947998F), new Vector2(-597.892029F, -312.90799F), new Vector2(-597.892029F, -313.988007F)); + builder.AddCubicBezier(new Vector2(-597.892029F, -315.067993F), new Vector2(-597.65802F, -316.022003F), new Vector2(-597.190002F, -316.850006F)); + builder.AddCubicBezier(new Vector2(-596.721985F, -317.678009F), new Vector2(-596.080017F, -318.325989F), new Vector2(-595.263977F, -318.794006F)); + builder.AddCubicBezier(new Vector2(-594.447998F, -319.261993F), new Vector2(-593.5F, -319.496002F), new Vector2(-592.419983F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-591.364014F, -319.496002F), new Vector2(-590.434021F, -319.261993F), new Vector2(-589.630005F, -318.794006F)); + builder.AddCubicBezier(new Vector2(-588.825989F, -318.325989F), new Vector2(-588.202026F, -317.678009F), new Vector2(-587.757996F, -316.850006F)); + builder.AddCubicBezier(new Vector2(-587.314026F, -316.022003F), new Vector2(-587.09198F, -315.056F), new Vector2(-587.09198F, -313.951996F)); + builder.AddCubicBezier(new Vector2(-587.09198F, -312.847992F), new Vector2(-587.314026F, -311.881989F), new Vector2(-587.757996F, -311.053986F)); + builder.AddCubicBezier(new Vector2(-588.202026F, -310.226013F), new Vector2(-588.820007F, -309.584015F), new Vector2(-589.612F, -309.127991F)); + builder.AddCubicBezier(new Vector2(-590.403992F, -308.671997F), new Vector2(-591.340027F, -308.444F), new Vector2(-592.419983F, -308.444F)); + builder.AddCubicBezier(new Vector2(-593.476013F, -308.444F), new Vector2(-594.41803F, -308.678009F), new Vector2(-595.245972F, -309.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-589.504028F, -306.175995F)); + builder.AddCubicBezier(new Vector2(-588.471985F, -306.70401F), new Vector2(-587.650024F, -307.441986F), new Vector2(-587.038025F, -308.390015F)); + builder.AddCubicBezier(new Vector2(-586.426025F, -309.338013F), new Vector2(-586.083984F, -310.436005F), new Vector2(-586.012024F, -311.68399F)); + builder.AddLine(new Vector2(-586.012024F, -316.220001F)); + builder.AddCubicBezier(new Vector2(-586.083984F, -317.492004F), new Vector2(-586.419983F, -318.60199F), new Vector2(-587.02002F, -319.549988F)); + builder.AddCubicBezier(new Vector2(-587.619995F, -320.497986F), new Vector2(-588.442017F, -321.235992F), new Vector2(-589.486023F, -321.764008F)); + builder.AddCubicBezier(new Vector2(-590.530029F, -322.291992F), new Vector2(-591.723999F, -322.556F), new Vector2(-593.067993F, -322.556F)); + builder.AddCubicBezier(new Vector2(-594.604004F, -322.556F), new Vector2(-595.995972F, -322.178009F), new Vector2(-597.244019F, -321.421997F)); + builder.AddCubicBezier(new Vector2(-598.492004F, -320.665985F), new Vector2(-599.469971F, -319.645996F), new Vector2(-600.177979F, -318.362F)); + builder.AddCubicBezier(new Vector2(-600.885986F, -317.078003F), new Vector2(-601.23999F, -315.619995F), new Vector2(-601.23999F, -313.988007F)); + builder.AddCubicBezier(new Vector2(-601.23999F, -312.355988F), new Vector2(-600.880005F, -310.885986F), new Vector2(-600.159973F, -309.578003F)); + builder.AddCubicBezier(new Vector2(-599.440002F, -308.269989F), new Vector2(-598.461975F, -307.243988F), new Vector2(-597.226013F, -306.5F)); + builder.AddCubicBezier(new Vector2(-595.98999F, -305.756012F), new Vector2(-594.59198F, -305.384003F), new Vector2(-593.031982F, -305.384003F)); + builder.AddCubicBezier(new Vector2(-591.711975F, -305.384003F), new Vector2(-590.536011F, -305.64801F), new Vector2(-589.504028F, -306.175995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-588.333984F, -298.597992F)); + builder.AddCubicBezier(new Vector2(-586.978027F, -299.282013F), new Vector2(-585.921997F, -300.242004F), new Vector2(-585.166016F, -301.477997F)); + builder.AddCubicBezier(new Vector2(-584.409973F, -302.713989F), new Vector2(-584.031982F, -304.14801F), new Vector2(-584.031982F, -305.779999F)); + builder.AddLine(new Vector2(-584.031982F, -322.196014F)); + builder.AddLine(new Vector2(-587.271973F, -322.196014F)); + builder.AddLine(new Vector2(-587.271973F, -317.696014F)); + builder.AddLine(new Vector2(-586.695984F, -313.880005F)); + builder.AddLine(new Vector2(-587.271973F, -310.028015F)); + builder.AddLine(new Vector2(-587.271973F, -305.779999F)); + builder.AddCubicBezier(new Vector2(-587.271973F, -304.220001F), new Vector2(-587.788025F, -302.977997F), new Vector2(-588.820007F, -302.053986F)); + builder.AddCubicBezier(new Vector2(-589.85199F, -301.130005F), new Vector2(-591.231995F, -300.667999F), new Vector2(-592.960022F, -300.667999F)); + builder.AddCubicBezier(new Vector2(-594.280029F, -300.667999F), new Vector2(-595.419983F, -300.902008F), new Vector2(-596.380005F, -301.369995F)); + builder.AddCubicBezier(new Vector2(-597.340027F, -301.838013F), new Vector2(-598.16803F, -302.515991F), new Vector2(-598.864014F, -303.403992F)); + builder.AddLine(new Vector2(-600.987976F, -301.279999F)); + builder.AddCubicBezier(new Vector2(-600.14801F, -300.104004F), new Vector2(-599.05603F, -299.191986F), new Vector2(-597.711975F, -298.544006F)); + builder.AddCubicBezier(new Vector2(-596.367981F, -297.895996F), new Vector2(-594.807983F, -297.571991F), new Vector2(-593.031982F, -297.571991F)); + builder.AddCubicBezier(new Vector2(-591.255981F, -297.571991F), new Vector2(-589.690002F, -297.914001F), new Vector2(-588.333984F, -298.597992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0318() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-607.719971F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-606.544006F, -305.996002F), new Vector2(-605.536011F, -306.727997F), new Vector2(-604.695984F, -307.687988F)); + builder.AddLine(new Vector2(-606.783997F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-607.359985F, -309.140015F), new Vector2(-608.049988F, -308.635986F), new Vector2(-608.854004F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-609.65802F, -307.963989F), new Vector2(-610.539978F, -307.79599F), new Vector2(-611.5F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-612.651978F, -307.79599F), new Vector2(-613.671997F, -308.041992F), new Vector2(-614.559998F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-615.447998F, -309.026001F), new Vector2(-616.132019F, -309.721985F), new Vector2(-616.612F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-617.09198F, -311.522003F), new Vector2(-617.33197F, -312.571991F), new Vector2(-617.33197F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-617.33197F, -314.947998F), new Vector2(-617.104004F, -315.967987F), new Vector2(-616.64801F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-616.192017F, -317.696014F), new Vector2(-615.544006F, -318.368011F), new Vector2(-614.703979F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-613.864014F, -319.328003F), new Vector2(-612.892029F, -319.567993F), new Vector2(-611.788025F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-610.731995F, -319.567993F), new Vector2(-609.83197F, -319.346008F), new Vector2(-609.088013F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-608.343994F, -318.458008F), new Vector2(-607.768005F, -317.834015F), new Vector2(-607.359985F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-606.952026F, -316.226013F), new Vector2(-606.747986F, -315.247986F), new Vector2(-606.747986F, -314.096008F)); + builder.AddLine(new Vector2(-605.559998F, -315.140015F)); + builder.AddLine(new Vector2(-618.268005F, -315.140015F)); + builder.AddLine(new Vector2(-618.268005F, -312.440002F)); + builder.AddLine(new Vector2(-603.83197F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-603.76001F, -312.776001F), new Vector2(-603.711975F, -313.082001F), new Vector2(-603.687988F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-603.664001F, -313.634003F), new Vector2(-603.651978F, -313.891998F), new Vector2(-603.651978F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-603.651978F, -315.764008F), new Vector2(-603.994019F, -317.216003F), new Vector2(-604.677979F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-605.362F, -319.76001F), new Vector2(-606.315979F, -320.756012F), new Vector2(-607.539978F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-608.763977F, -322.196014F), new Vector2(-610.156006F, -322.556F), new Vector2(-611.716003F, -322.556F)); + builder.AddCubicBezier(new Vector2(-613.372009F, -322.556F), new Vector2(-614.866028F, -322.165985F), new Vector2(-616.197998F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-617.530029F, -320.605988F), new Vector2(-618.585999F, -319.544006F), new Vector2(-619.366028F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-620.145996F, -316.855988F), new Vector2(-620.536011F, -315.343994F), new Vector2(-620.536011F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-620.536011F, -311.959991F), new Vector2(-620.140015F, -310.436005F), new Vector2(-619.348022F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-618.55603F, -307.747986F), new Vector2(-617.481995F, -306.686005F), new Vector2(-616.125977F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-614.77002F, -305.126007F), new Vector2(-613.228027F, -304.735992F), new Vector2(-611.5F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-610.156006F, -304.735992F), new Vector2(-608.895996F, -304.988007F), new Vector2(-607.719971F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0319() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-628.924011F, -318.343994F)); + builder.AddCubicBezier(new Vector2(-628.156006F, -319.112F), new Vector2(-627.171997F, -319.496002F), new Vector2(-625.971985F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-625.395996F, -319.496002F), new Vector2(-624.892029F, -319.411987F), new Vector2(-624.460022F, -319.243988F)); + builder.AddCubicBezier(new Vector2(-624.028015F, -319.075989F), new Vector2(-623.632019F, -318.799988F), new Vector2(-623.271973F, -318.415985F)); + builder.AddLine(new Vector2(-621.14801F, -320.612F)); + builder.AddCubicBezier(new Vector2(-621.747986F, -321.308014F), new Vector2(-622.395996F, -321.806F), new Vector2(-623.09198F, -322.105988F)); + builder.AddCubicBezier(new Vector2(-623.788025F, -322.406006F), new Vector2(-624.567993F, -322.556F), new Vector2(-625.432007F, -322.556F)); + builder.AddCubicBezier(new Vector2(-627.328003F, -322.556F), new Vector2(-628.780029F, -321.90799F), new Vector2(-629.788025F, -320.612F)); + builder.AddCubicBezier(new Vector2(-630.796021F, -319.31601F), new Vector2(-631.299988F, -317.575989F), new Vector2(-631.299988F, -315.391998F)); + builder.AddLine(new Vector2(-630.075989F, -314.81601F)); + builder.AddCubicBezier(new Vector2(-630.075989F, -316.399994F), new Vector2(-629.692017F, -317.575989F), new Vector2(-628.924011F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-630.075989F, -305.096008F)); + builder.AddLine(new Vector2(-630.075989F, -322.196014F)); + builder.AddLine(new Vector2(-633.315979F, -322.196014F)); + builder.AddLine(new Vector2(-633.315979F, -305.096008F)); + builder.AddLine(new Vector2(-630.075989F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0320() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-657.255981F, -305.096008F)); + builder.AddLine(new Vector2(-657.255981F, -322.196014F)); + builder.AddLine(new Vector2(-660.495972F, -322.196014F)); + builder.AddLine(new Vector2(-660.495972F, -305.096008F)); + builder.AddLine(new Vector2(-657.255981F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-645.159973F, -305.096008F)); + builder.AddLine(new Vector2(-645.159973F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-645.159973F, -316.891998F), new Vector2(-645.447998F, -318.002014F), new Vector2(-646.023987F, -319.04599F)); + builder.AddCubicBezier(new Vector2(-646.599976F, -320.089996F), new Vector2(-647.385986F, -320.936005F), new Vector2(-648.382019F, -321.584015F)); + builder.AddCubicBezier(new Vector2(-649.377991F, -322.231995F), new Vector2(-650.523987F, -322.556F), new Vector2(-651.820007F, -322.556F)); + builder.AddCubicBezier(new Vector2(-653.116028F, -322.556F), new Vector2(-654.280029F, -322.261993F), new Vector2(-655.312012F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-656.343994F, -321.085999F), new Vector2(-657.14801F, -320.287994F), new Vector2(-657.723999F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-658.299988F, -318.272003F), new Vector2(-658.588013F, -317.119995F), new Vector2(-658.588013F, -315.824005F)); + builder.AddLine(new Vector2(-657.255981F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-657.255981F, -315.932007F), new Vector2(-657.064026F, -316.700012F), new Vector2(-656.679993F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-656.296021F, -318.044006F), new Vector2(-655.768005F, -318.571991F), new Vector2(-655.096008F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-654.424011F, -319.339996F), new Vector2(-653.656006F, -319.532013F), new Vector2(-652.791992F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-651.495972F, -319.532013F), new Vector2(-650.445984F, -319.112F), new Vector2(-649.642029F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-648.838013F, -317.432007F), new Vector2(-648.435974F, -316.364014F), new Vector2(-648.435974F, -315.067993F)); + builder.AddLine(new Vector2(-648.435974F, -305.096008F)); + builder.AddLine(new Vector2(-645.159973F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0321() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-675.903992F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-676.744019F, -309.127991F), new Vector2(-677.403992F, -309.817993F), new Vector2(-677.883972F, -310.694F)); + builder.AddCubicBezier(new Vector2(-678.364014F, -311.570007F), new Vector2(-678.604004F, -312.571991F), new Vector2(-678.604004F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-678.604004F, -314.803986F), new Vector2(-678.364014F, -315.787994F), new Vector2(-677.883972F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-677.403992F, -317.515991F), new Vector2(-676.744019F, -318.194F), new Vector2(-675.903992F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-675.064026F, -319.178009F), new Vector2(-674.116028F, -319.424011F), new Vector2(-673.059998F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-671.955994F, -319.424011F), new Vector2(-670.98999F, -319.178009F), new Vector2(-670.161987F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-669.333984F, -318.194F), new Vector2(-668.674011F, -317.515991F), new Vector2(-668.182007F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-667.690002F, -315.787994F), new Vector2(-667.44397F, -314.803986F), new Vector2(-667.44397F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-667.44397F, -312.571991F), new Vector2(-667.684021F, -311.570007F), new Vector2(-668.164001F, -310.694F)); + builder.AddCubicBezier(new Vector2(-668.643982F, -309.817993F), new Vector2(-669.304016F, -309.127991F), new Vector2(-670.143982F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-670.984009F, -308.119995F), new Vector2(-671.955994F, -307.868011F), new Vector2(-673.059998F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-674.116028F, -307.868011F), new Vector2(-675.064026F, -308.119995F), new Vector2(-675.903992F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-668.505981F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-667.150024F, -306.716003F), new Vector2(-666.075989F, -307.790009F), new Vector2(-665.283997F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-664.492004F, -310.502014F), new Vector2(-664.096008F, -312.019989F), new Vector2(-664.096008F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-664.096008F, -315.355988F), new Vector2(-664.492004F, -316.855988F), new Vector2(-665.283997F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-666.075989F, -319.544006F), new Vector2(-667.150024F, -320.605988F), new Vector2(-668.505981F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-669.862F, -322.165985F), new Vector2(-671.380005F, -322.556F), new Vector2(-673.059998F, -322.556F)); + builder.AddCubicBezier(new Vector2(-674.716003F, -322.556F), new Vector2(-676.216003F, -322.160004F), new Vector2(-677.559998F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-678.903992F, -320.575989F), new Vector2(-679.971985F, -319.514008F), new Vector2(-680.763977F, -318.182007F)); + builder.AddCubicBezier(new Vector2(-681.55603F, -316.850006F), new Vector2(-681.952026F, -315.355988F), new Vector2(-681.952026F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-681.952026F, -312.019989F), new Vector2(-681.55603F, -310.502014F), new Vector2(-680.763977F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-679.971985F, -307.790009F), new Vector2(-678.903992F, -306.716003F), new Vector2(-677.559998F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-676.216003F, -305.131989F), new Vector2(-674.716003F, -304.735992F), new Vector2(-673.059998F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-671.380005F, -304.735992F), new Vector2(-669.862F, -305.131989F), new Vector2(-668.505981F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0322() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-685.768005F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-685.383972F, -326.605988F), new Vector2(-685.192017F, -327.104004F), new Vector2(-685.192017F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-685.192017F, -328.279999F), new Vector2(-685.383972F, -328.765991F), new Vector2(-685.768005F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-686.151978F, -329.558014F), new Vector2(-686.643982F, -329.756012F), new Vector2(-687.244019F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-687.843994F, -329.756012F), new Vector2(-688.335999F, -329.558014F), new Vector2(-688.719971F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-689.104004F, -328.765991F), new Vector2(-689.296021F, -328.279999F), new Vector2(-689.296021F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-689.296021F, -327.104004F), new Vector2(-689.104004F, -326.605988F), new Vector2(-688.719971F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-688.335999F, -325.813995F), new Vector2(-687.843994F, -325.615997F), new Vector2(-687.244019F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-686.643982F, -325.615997F), new Vector2(-686.151978F, -325.813995F), new Vector2(-685.768005F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-685.624023F, -305.096008F)); + builder.AddLine(new Vector2(-685.624023F, -322.196014F)); + builder.AddLine(new Vector2(-688.900024F, -322.196014F)); + builder.AddLine(new Vector2(-688.900024F, -305.096008F)); + builder.AddLine(new Vector2(-685.624023F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0323() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-692.067993F, -319.243988F)); + builder.AddLine(new Vector2(-692.067993F, -322.196014F)); + builder.AddLine(new Vector2(-703.731995F, -322.196014F)); + builder.AddLine(new Vector2(-703.731995F, -319.243988F)); + builder.AddLine(new Vector2(-692.067993F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-696.280029F, -305.096008F)); + builder.AddLine(new Vector2(-696.280029F, -329.359985F)); + builder.AddLine(new Vector2(-699.52002F, -329.359985F)); + builder.AddLine(new Vector2(-699.52002F, -305.096008F)); + builder.AddLine(new Vector2(-696.280029F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0324() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-706.791992F, -305.096008F)); + builder.AddLine(new Vector2(-706.791992F, -322.196014F)); + builder.AddLine(new Vector2(-710.067993F, -322.196014F)); + builder.AddLine(new Vector2(-710.067993F, -318.019989F)); + builder.AddLine(new Vector2(-709.455994F, -313.880005F)); + builder.AddLine(new Vector2(-710.067993F, -309.70401F)); + builder.AddLine(new Vector2(-710.067993F, -305.096008F)); + builder.AddLine(new Vector2(-706.791992F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-718.096008F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-718.935974F, -309.056F), new Vector2(-719.590027F, -309.746002F), new Vector2(-720.057983F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-720.526001F, -311.497986F), new Vector2(-720.76001F, -312.511993F), new Vector2(-720.76001F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-720.76001F, -314.791992F), new Vector2(-720.526001F, -315.794006F), new Vector2(-720.057983F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-719.590027F, -317.54599F), new Vector2(-718.942017F, -318.235992F), new Vector2(-718.114014F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-717.286011F, -319.243988F), new Vector2(-716.33197F, -319.496002F), new Vector2(-715.252014F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-714.171997F, -319.496002F), new Vector2(-713.22998F, -319.25F), new Vector2(-712.426025F, -318.757996F)); + builder.AddCubicBezier(new Vector2(-711.622009F, -318.265991F), new Vector2(-710.992004F, -317.575989F), new Vector2(-710.536011F, -316.687988F)); + builder.AddCubicBezier(new Vector2(-710.080017F, -315.799988F), new Vector2(-709.85199F, -314.779999F), new Vector2(-709.85199F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-709.85199F, -311.924011F), new Vector2(-710.343994F, -310.526001F), new Vector2(-711.328003F, -309.43399F)); + builder.AddCubicBezier(new Vector2(-712.312012F, -308.34201F), new Vector2(-713.607971F, -307.79599F), new Vector2(-715.216003F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-716.296021F, -307.79599F), new Vector2(-717.255981F, -308.048004F), new Vector2(-718.096008F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-712.263977F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-711.231995F, -306.085999F), new Vector2(-710.409973F, -306.835999F), new Vector2(-709.797974F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-709.185974F, -308.756012F), new Vector2(-708.843994F, -309.847992F), new Vector2(-708.771973F, -311.071991F)); + builder.AddLine(new Vector2(-708.771973F, -316.220001F)); + builder.AddCubicBezier(new Vector2(-708.843994F, -317.467987F), new Vector2(-709.192017F, -318.56601F), new Vector2(-709.815979F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-710.440002F, -320.462006F), new Vector2(-711.262024F, -321.205994F), new Vector2(-712.281982F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-713.302002F, -322.286011F), new Vector2(-714.460022F, -322.556F), new Vector2(-715.755981F, -322.556F)); + builder.AddCubicBezier(new Vector2(-717.340027F, -322.556F), new Vector2(-718.762024F, -322.160004F), new Vector2(-720.021973F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-721.281982F, -320.575989F), new Vector2(-722.278015F, -319.507996F), new Vector2(-723.01001F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-723.742004F, -316.820007F), new Vector2(-724.107971F, -315.308014F), new Vector2(-724.107971F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-724.107971F, -311.947998F), new Vector2(-723.742004F, -310.436005F), new Vector2(-723.01001F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-722.278015F, -307.747986F), new Vector2(-721.281982F, -306.686005F), new Vector2(-720.021973F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-718.762024F, -305.126007F), new Vector2(-717.340027F, -304.735992F), new Vector2(-715.755981F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-714.460022F, -304.735992F), new Vector2(-713.296021F, -305.006012F), new Vector2(-712.263977F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0325() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-727.419983F, -305.096008F)); + builder.AddLine(new Vector2(-727.419983F, -316.075989F)); + builder.AddCubicBezier(new Vector2(-727.419983F, -317.420013F), new Vector2(-727.713989F, -318.571991F), new Vector2(-728.302002F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-728.890015F, -320.492004F), new Vector2(-729.676025F, -321.235992F), new Vector2(-730.659973F, -321.764008F)); + builder.AddCubicBezier(new Vector2(-731.643982F, -322.291992F), new Vector2(-732.76001F, -322.556F), new Vector2(-734.007996F, -322.556F)); + builder.AddCubicBezier(new Vector2(-735.208008F, -322.556F), new Vector2(-736.312012F, -322.286011F), new Vector2(-737.320007F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-738.328003F, -321.205994F), new Vector2(-739.150024F, -320.462006F), new Vector2(-739.786011F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-740.421997F, -318.56601F), new Vector2(-740.776001F, -317.432007F), new Vector2(-740.848022F, -316.112F)); + builder.AddLine(new Vector2(-739.012024F, -315.428009F)); + builder.AddCubicBezier(new Vector2(-739.012024F, -316.291992F), new Vector2(-738.820007F, -317.023987F), new Vector2(-738.435974F, -317.623993F)); + builder.AddCubicBezier(new Vector2(-738.052002F, -318.223999F), new Vector2(-737.541992F, -318.691986F), new Vector2(-736.906006F, -319.028015F)); + builder.AddCubicBezier(new Vector2(-736.27002F, -319.364014F), new Vector2(-735.55603F, -319.532013F), new Vector2(-734.763977F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-733.612F, -319.532013F), new Vector2(-732.645996F, -319.165985F), new Vector2(-731.866028F, -318.43399F)); + builder.AddCubicBezier(new Vector2(-731.085999F, -317.701996F), new Vector2(-730.695984F, -316.700012F), new Vector2(-730.695984F, -315.428009F)); + builder.AddLine(new Vector2(-730.695984F, -305.096008F)); + builder.AddLine(new Vector2(-727.419983F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-739.012024F, -305.096008F)); + builder.AddLine(new Vector2(-739.012024F, -316.112F)); + builder.AddCubicBezier(new Vector2(-739.012024F, -317.432007F), new Vector2(-739.294006F, -318.571991F), new Vector2(-739.857971F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-740.421997F, -320.492004F), new Vector2(-741.190002F, -321.235992F), new Vector2(-742.161987F, -321.764008F)); + builder.AddCubicBezier(new Vector2(-743.133972F, -322.291992F), new Vector2(-744.219971F, -322.556F), new Vector2(-745.419983F, -322.556F)); + builder.AddCubicBezier(new Vector2(-746.643982F, -322.556F), new Vector2(-747.747986F, -322.286011F), new Vector2(-748.731995F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-749.716003F, -321.205994F), new Vector2(-750.48999F, -320.455994F), new Vector2(-751.054016F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-751.617981F, -318.536011F), new Vector2(-751.900024F, -317.40799F), new Vector2(-751.900024F, -316.112F)); + builder.AddLine(new Vector2(-750.567993F, -315.428009F)); + builder.AddCubicBezier(new Vector2(-750.567993F, -316.291992F), new Vector2(-750.375977F, -317.023987F), new Vector2(-749.992004F, -317.623993F)); + builder.AddCubicBezier(new Vector2(-749.607971F, -318.223999F), new Vector2(-749.104004F, -318.691986F), new Vector2(-748.47998F, -319.028015F)); + builder.AddCubicBezier(new Vector2(-747.856018F, -319.364014F), new Vector2(-747.14801F, -319.532013F), new Vector2(-746.356018F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-745.179993F, -319.532013F), new Vector2(-744.202026F, -319.165985F), new Vector2(-743.421997F, -318.43399F)); + builder.AddCubicBezier(new Vector2(-742.642029F, -317.701996F), new Vector2(-742.252014F, -316.700012F), new Vector2(-742.252014F, -315.428009F)); + builder.AddLine(new Vector2(-742.252014F, -305.096008F)); + builder.AddLine(new Vector2(-739.012024F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-750.567993F, -305.096008F)); + builder.AddLine(new Vector2(-750.567993F, -322.196014F)); + builder.AddLine(new Vector2(-753.807983F, -322.196014F)); + builder.AddLine(new Vector2(-753.807983F, -305.096008F)); + builder.AddLine(new Vector2(-750.567993F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0326() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-763.924011F, -318.343994F)); + builder.AddCubicBezier(new Vector2(-763.156006F, -319.112F), new Vector2(-762.171997F, -319.496002F), new Vector2(-760.971985F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-760.395996F, -319.496002F), new Vector2(-759.892029F, -319.411987F), new Vector2(-759.460022F, -319.243988F)); + builder.AddCubicBezier(new Vector2(-759.028015F, -319.075989F), new Vector2(-758.632019F, -318.799988F), new Vector2(-758.271973F, -318.415985F)); + builder.AddLine(new Vector2(-756.14801F, -320.612F)); + builder.AddCubicBezier(new Vector2(-756.747986F, -321.308014F), new Vector2(-757.395996F, -321.806F), new Vector2(-758.09198F, -322.105988F)); + builder.AddCubicBezier(new Vector2(-758.788025F, -322.406006F), new Vector2(-759.567993F, -322.556F), new Vector2(-760.432007F, -322.556F)); + builder.AddCubicBezier(new Vector2(-762.328003F, -322.556F), new Vector2(-763.780029F, -321.90799F), new Vector2(-764.788025F, -320.612F)); + builder.AddCubicBezier(new Vector2(-765.796021F, -319.31601F), new Vector2(-766.299988F, -317.575989F), new Vector2(-766.299988F, -315.391998F)); + builder.AddLine(new Vector2(-765.075989F, -314.81601F)); + builder.AddCubicBezier(new Vector2(-765.075989F, -316.399994F), new Vector2(-764.692017F, -317.575989F), new Vector2(-763.924011F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-765.075989F, -305.096008F)); + builder.AddLine(new Vector2(-765.075989F, -322.196014F)); + builder.AddLine(new Vector2(-768.315979F, -322.196014F)); + builder.AddLine(new Vector2(-768.315979F, -305.096008F)); + builder.AddLine(new Vector2(-765.075989F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0327() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-783.723999F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-784.564026F, -309.127991F), new Vector2(-785.223999F, -309.817993F), new Vector2(-785.703979F, -310.694F)); + builder.AddCubicBezier(new Vector2(-786.184021F, -311.570007F), new Vector2(-786.424011F, -312.571991F), new Vector2(-786.424011F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-786.424011F, -314.803986F), new Vector2(-786.184021F, -315.787994F), new Vector2(-785.703979F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-785.223999F, -317.515991F), new Vector2(-784.564026F, -318.194F), new Vector2(-783.723999F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-782.883972F, -319.178009F), new Vector2(-781.935974F, -319.424011F), new Vector2(-780.880005F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-779.776001F, -319.424011F), new Vector2(-778.809998F, -319.178009F), new Vector2(-777.981995F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-777.153992F, -318.194F), new Vector2(-776.494019F, -317.515991F), new Vector2(-776.002014F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-775.51001F, -315.787994F), new Vector2(-775.263977F, -314.803986F), new Vector2(-775.263977F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-775.263977F, -312.571991F), new Vector2(-775.504028F, -311.570007F), new Vector2(-775.984009F, -310.694F)); + builder.AddCubicBezier(new Vector2(-776.463989F, -309.817993F), new Vector2(-777.124023F, -309.127991F), new Vector2(-777.963989F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-778.804016F, -308.119995F), new Vector2(-779.776001F, -307.868011F), new Vector2(-780.880005F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-781.935974F, -307.868011F), new Vector2(-782.883972F, -308.119995F), new Vector2(-783.723999F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-776.325989F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-774.969971F, -306.716003F), new Vector2(-773.895996F, -307.790009F), new Vector2(-773.104004F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-772.312012F, -310.502014F), new Vector2(-771.916016F, -312.019989F), new Vector2(-771.916016F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-771.916016F, -315.355988F), new Vector2(-772.312012F, -316.855988F), new Vector2(-773.104004F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-773.895996F, -319.544006F), new Vector2(-774.969971F, -320.605988F), new Vector2(-776.325989F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-777.682007F, -322.165985F), new Vector2(-779.200012F, -322.556F), new Vector2(-780.880005F, -322.556F)); + builder.AddCubicBezier(new Vector2(-782.536011F, -322.556F), new Vector2(-784.036011F, -322.160004F), new Vector2(-785.380005F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-786.723999F, -320.575989F), new Vector2(-787.791992F, -319.514008F), new Vector2(-788.583984F, -318.182007F)); + builder.AddCubicBezier(new Vector2(-789.375977F, -316.850006F), new Vector2(-789.771973F, -315.355988F), new Vector2(-789.771973F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-789.771973F, -312.019989F), new Vector2(-789.375977F, -310.502014F), new Vector2(-788.583984F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-787.791992F, -307.790009F), new Vector2(-786.723999F, -306.716003F), new Vector2(-785.380005F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-784.036011F, -305.131989F), new Vector2(-782.536011F, -304.735992F), new Vector2(-780.880005F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-779.200012F, -304.735992F), new Vector2(-777.682007F, -305.131989F), new Vector2(-776.325989F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0328() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-790.924011F, -319.243988F)); + builder.AddLine(new Vector2(-790.924011F, -322.196014F)); + builder.AddLine(new Vector2(-803.812012F, -322.196014F)); + builder.AddLine(new Vector2(-803.812012F, -319.243988F)); + builder.AddLine(new Vector2(-790.924011F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-796.359985F, -305.096008F)); + builder.AddLine(new Vector2(-796.359985F, -324.752014F)); + builder.AddCubicBezier(new Vector2(-796.359985F, -325.808014F), new Vector2(-796.078003F, -326.630005F), new Vector2(-795.513977F, -327.217987F)); + builder.AddCubicBezier(new Vector2(-794.950012F, -327.806F), new Vector2(-794.151978F, -328.100006F), new Vector2(-793.119995F, -328.100006F)); + builder.AddCubicBezier(new Vector2(-792.567993F, -328.100006F), new Vector2(-792.099976F, -328.015991F), new Vector2(-791.716003F, -327.847992F)); + builder.AddCubicBezier(new Vector2(-791.33197F, -327.679993F), new Vector2(-790.984009F, -327.428009F), new Vector2(-790.671997F, -327.09201F)); + builder.AddLine(new Vector2(-788.547974F, -329.179993F)); + builder.AddCubicBezier(new Vector2(-789.14801F, -329.828003F), new Vector2(-789.807983F, -330.320007F), new Vector2(-790.528015F, -330.656006F)); + builder.AddCubicBezier(new Vector2(-791.247986F, -330.992004F), new Vector2(-792.099976F, -331.160004F), new Vector2(-793.083984F, -331.160004F)); + builder.AddCubicBezier(new Vector2(-794.380005F, -331.160004F), new Vector2(-795.52002F, -330.884003F), new Vector2(-796.504028F, -330.332001F)); + builder.AddCubicBezier(new Vector2(-797.487976F, -329.779999F), new Vector2(-798.255981F, -329.023987F), new Vector2(-798.807983F, -328.063995F)); + builder.AddCubicBezier(new Vector2(-799.359985F, -327.104004F), new Vector2(-799.635986F, -326F), new Vector2(-799.635986F, -324.752014F)); + builder.AddLine(new Vector2(-799.635986F, -305.096008F)); + builder.AddLine(new Vector2(-796.359985F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0329() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-818.320007F, -305.096008F)); + builder.AddLine(new Vector2(-818.320007F, -322.196014F)); + builder.AddLine(new Vector2(-821.559998F, -322.196014F)); + builder.AddLine(new Vector2(-821.559998F, -305.096008F)); + builder.AddLine(new Vector2(-818.320007F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-806.223999F, -305.096008F)); + builder.AddLine(new Vector2(-806.223999F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-806.223999F, -316.891998F), new Vector2(-806.512024F, -318.002014F), new Vector2(-807.088013F, -319.04599F)); + builder.AddCubicBezier(new Vector2(-807.664001F, -320.089996F), new Vector2(-808.450012F, -320.936005F), new Vector2(-809.445984F, -321.584015F)); + builder.AddCubicBezier(new Vector2(-810.442017F, -322.231995F), new Vector2(-811.588013F, -322.556F), new Vector2(-812.883972F, -322.556F)); + builder.AddCubicBezier(new Vector2(-814.179993F, -322.556F), new Vector2(-815.343994F, -322.261993F), new Vector2(-816.375977F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-817.40802F, -321.085999F), new Vector2(-818.211975F, -320.287994F), new Vector2(-818.788025F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-819.364014F, -318.272003F), new Vector2(-819.651978F, -317.119995F), new Vector2(-819.651978F, -315.824005F)); + builder.AddLine(new Vector2(-818.320007F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-818.320007F, -315.932007F), new Vector2(-818.127991F, -316.700012F), new Vector2(-817.744019F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-817.359985F, -318.044006F), new Vector2(-816.83197F, -318.571991F), new Vector2(-816.159973F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-815.487976F, -319.339996F), new Vector2(-814.719971F, -319.532013F), new Vector2(-813.856018F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-812.559998F, -319.532013F), new Vector2(-811.51001F, -319.112F), new Vector2(-810.705994F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-809.901978F, -317.432007F), new Vector2(-809.5F, -316.364014F), new Vector2(-809.5F, -315.067993F)); + builder.AddLine(new Vector2(-809.5F, -305.096008F)); + builder.AddLine(new Vector2(-806.223999F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0330() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-826.492004F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-826.107971F, -326.605988F), new Vector2(-825.916016F, -327.104004F), new Vector2(-825.916016F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-825.916016F, -328.279999F), new Vector2(-826.107971F, -328.765991F), new Vector2(-826.492004F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-826.875977F, -329.558014F), new Vector2(-827.367981F, -329.756012F), new Vector2(-827.968018F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-828.567993F, -329.756012F), new Vector2(-829.059998F, -329.558014F), new Vector2(-829.44397F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-829.828003F, -328.765991F), new Vector2(-830.02002F, -328.279999F), new Vector2(-830.02002F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-830.02002F, -327.104004F), new Vector2(-829.828003F, -326.605988F), new Vector2(-829.44397F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-829.059998F, -325.813995F), new Vector2(-828.567993F, -325.615997F), new Vector2(-827.968018F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-827.367981F, -325.615997F), new Vector2(-826.875977F, -325.813995F), new Vector2(-826.492004F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-826.348022F, -305.096008F)); + builder.AddLine(new Vector2(-826.348022F, -322.196014F)); + builder.AddLine(new Vector2(-829.624023F, -322.196014F)); + builder.AddLine(new Vector2(-829.624023F, -305.096008F)); + builder.AddLine(new Vector2(-826.348022F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0331() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(673.340027F, -348.691986F)); + builder.AddCubicBezier(new Vector2(674.515991F, -349.196014F), new Vector2(675.523987F, -349.928009F), new Vector2(676.364014F, -350.888F)); + builder.AddLine(new Vector2(674.276001F, -353.011993F)); + builder.AddCubicBezier(new Vector2(673.700012F, -352.339996F), new Vector2(673.01001F, -351.835999F), new Vector2(672.205994F, -351.5F)); + builder.AddCubicBezier(new Vector2(671.401978F, -351.164001F), new Vector2(670.52002F, -350.996002F), new Vector2(669.559998F, -350.996002F)); + builder.AddCubicBezier(new Vector2(668.40802F, -350.996002F), new Vector2(667.388F, -351.242004F), new Vector2(666.5F, -351.734009F)); + builder.AddCubicBezier(new Vector2(665.612F, -352.226013F), new Vector2(664.927979F, -352.921997F), new Vector2(664.447998F, -353.821991F)); + builder.AddCubicBezier(new Vector2(663.968018F, -354.721985F), new Vector2(663.728027F, -355.772003F), new Vector2(663.728027F, -356.971985F)); + builder.AddCubicBezier(new Vector2(663.728027F, -358.14801F), new Vector2(663.955994F, -359.167999F), new Vector2(664.411987F, -360.032013F)); + builder.AddCubicBezier(new Vector2(664.867981F, -360.895996F), new Vector2(665.515991F, -361.567993F), new Vector2(666.356018F, -362.048004F)); + builder.AddCubicBezier(new Vector2(667.195984F, -362.528015F), new Vector2(668.16803F, -362.768005F), new Vector2(669.271973F, -362.768005F)); + builder.AddCubicBezier(new Vector2(670.328003F, -362.768005F), new Vector2(671.228027F, -362.54599F), new Vector2(671.971985F, -362.10199F)); + builder.AddCubicBezier(new Vector2(672.716003F, -361.65799F), new Vector2(673.291992F, -361.033997F), new Vector2(673.700012F, -360.230011F)); + builder.AddCubicBezier(new Vector2(674.107971F, -359.425995F), new Vector2(674.312012F, -358.447998F), new Vector2(674.312012F, -357.29599F)); + builder.AddLine(new Vector2(675.5F, -358.339996F)); + builder.AddLine(new Vector2(662.791992F, -358.339996F)); + builder.AddLine(new Vector2(662.791992F, -355.640015F)); + builder.AddLine(new Vector2(677.228027F, -355.640015F)); + builder.AddCubicBezier(new Vector2(677.299988F, -355.976013F), new Vector2(677.348022F, -356.282013F), new Vector2(677.372009F, -356.558014F)); + builder.AddCubicBezier(new Vector2(677.395996F, -356.834015F), new Vector2(677.40802F, -357.09201F), new Vector2(677.40802F, -357.332001F)); + builder.AddCubicBezier(new Vector2(677.40802F, -358.963989F), new Vector2(677.065979F, -360.415985F), new Vector2(676.382019F, -361.687988F)); + builder.AddCubicBezier(new Vector2(675.697998F, -362.959991F), new Vector2(674.744019F, -363.955994F), new Vector2(673.52002F, -364.675995F)); + builder.AddCubicBezier(new Vector2(672.296021F, -365.395996F), new Vector2(670.903992F, -365.756012F), new Vector2(669.343994F, -365.756012F)); + builder.AddCubicBezier(new Vector2(667.687988F, -365.756012F), new Vector2(666.19397F, -365.365997F), new Vector2(664.862F, -364.585999F)); + builder.AddCubicBezier(new Vector2(663.530029F, -363.806F), new Vector2(662.473999F, -362.743988F), new Vector2(661.69397F, -361.399994F)); + builder.AddCubicBezier(new Vector2(660.914001F, -360.056F), new Vector2(660.523987F, -358.544006F), new Vector2(660.523987F, -356.864014F)); + builder.AddCubicBezier(new Vector2(660.523987F, -355.160004F), new Vector2(660.919983F, -353.635986F), new Vector2(661.711975F, -352.291992F)); + builder.AddCubicBezier(new Vector2(662.504028F, -350.947998F), new Vector2(663.578003F, -349.885986F), new Vector2(664.934021F, -349.105988F)); + builder.AddCubicBezier(new Vector2(666.289978F, -348.325989F), new Vector2(667.83197F, -347.936005F), new Vector2(669.559998F, -347.936005F)); + builder.AddCubicBezier(new Vector2(670.903992F, -347.936005F), new Vector2(672.164001F, -348.187988F), new Vector2(673.340027F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0332() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(657.247986F, -348.29599F)); + builder.AddLine(new Vector2(657.247986F, -359.276001F)); + builder.AddCubicBezier(new Vector2(657.247986F, -360.619995F), new Vector2(656.953979F, -361.772003F), new Vector2(656.366028F, -362.731995F)); + builder.AddCubicBezier(new Vector2(655.778015F, -363.691986F), new Vector2(654.992004F, -364.436005F), new Vector2(654.007996F, -364.963989F)); + builder.AddCubicBezier(new Vector2(653.023987F, -365.492004F), new Vector2(651.90802F, -365.756012F), new Vector2(650.659973F, -365.756012F)); + builder.AddCubicBezier(new Vector2(649.460022F, -365.756012F), new Vector2(648.356018F, -365.485992F), new Vector2(647.348022F, -364.946014F)); + builder.AddCubicBezier(new Vector2(646.340027F, -364.406006F), new Vector2(645.518005F, -363.661987F), new Vector2(644.882019F, -362.713989F)); + builder.AddCubicBezier(new Vector2(644.245972F, -361.765991F), new Vector2(643.892029F, -360.631989F), new Vector2(643.820007F, -359.312012F)); + builder.AddLine(new Vector2(645.656006F, -358.627991F)); + builder.AddCubicBezier(new Vector2(645.656006F, -359.492004F), new Vector2(645.848022F, -360.223999F), new Vector2(646.231995F, -360.824005F)); + builder.AddCubicBezier(new Vector2(646.616028F, -361.424011F), new Vector2(647.125977F, -361.891998F), new Vector2(647.762024F, -362.227997F)); + builder.AddCubicBezier(new Vector2(648.39801F, -362.563995F), new Vector2(649.112F, -362.731995F), new Vector2(649.903992F, -362.731995F)); + builder.AddCubicBezier(new Vector2(651.05603F, -362.731995F), new Vector2(652.021973F, -362.365997F), new Vector2(652.802002F, -361.634003F)); + builder.AddCubicBezier(new Vector2(653.58197F, -360.902008F), new Vector2(653.971985F, -359.899994F), new Vector2(653.971985F, -358.627991F)); + builder.AddLine(new Vector2(653.971985F, -348.29599F)); + builder.AddLine(new Vector2(657.247986F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(645.656006F, -348.29599F)); + builder.AddLine(new Vector2(645.656006F, -359.312012F)); + builder.AddCubicBezier(new Vector2(645.656006F, -360.631989F), new Vector2(645.374023F, -361.772003F), new Vector2(644.809998F, -362.731995F)); + builder.AddCubicBezier(new Vector2(644.245972F, -363.691986F), new Vector2(643.478027F, -364.436005F), new Vector2(642.505981F, -364.963989F)); + builder.AddCubicBezier(new Vector2(641.533997F, -365.492004F), new Vector2(640.447998F, -365.756012F), new Vector2(639.247986F, -365.756012F)); + builder.AddCubicBezier(new Vector2(638.023987F, -365.756012F), new Vector2(636.919983F, -365.485992F), new Vector2(635.935974F, -364.946014F)); + builder.AddCubicBezier(new Vector2(634.952026F, -364.406006F), new Vector2(634.177979F, -363.656006F), new Vector2(633.614014F, -362.696014F)); + builder.AddCubicBezier(new Vector2(633.049988F, -361.735992F), new Vector2(632.768005F, -360.608002F), new Vector2(632.768005F, -359.312012F)); + builder.AddLine(new Vector2(634.099976F, -358.627991F)); + builder.AddCubicBezier(new Vector2(634.099976F, -359.492004F), new Vector2(634.291992F, -360.223999F), new Vector2(634.676025F, -360.824005F)); + builder.AddCubicBezier(new Vector2(635.059998F, -361.424011F), new Vector2(635.564026F, -361.891998F), new Vector2(636.187988F, -362.227997F)); + builder.AddCubicBezier(new Vector2(636.812012F, -362.563995F), new Vector2(637.52002F, -362.731995F), new Vector2(638.312012F, -362.731995F)); + builder.AddCubicBezier(new Vector2(639.487976F, -362.731995F), new Vector2(640.466003F, -362.365997F), new Vector2(641.245972F, -361.634003F)); + builder.AddCubicBezier(new Vector2(642.026001F, -360.902008F), new Vector2(642.416016F, -359.899994F), new Vector2(642.416016F, -358.627991F)); + builder.AddLine(new Vector2(642.416016F, -348.29599F)); + builder.AddLine(new Vector2(645.656006F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(634.099976F, -348.29599F)); + builder.AddLine(new Vector2(634.099976F, -365.395996F)); + builder.AddLine(new Vector2(630.859985F, -365.395996F)); + builder.AddLine(new Vector2(630.859985F, -348.29599F)); + builder.AddLine(new Vector2(634.099976F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0333() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(615.452026F, -351.824005F)); + builder.AddCubicBezier(new Vector2(614.612F, -352.328003F), new Vector2(613.952026F, -353.018005F), new Vector2(613.471985F, -353.894012F)); + builder.AddCubicBezier(new Vector2(612.992004F, -354.769989F), new Vector2(612.752014F, -355.772003F), new Vector2(612.752014F, -356.899994F)); + builder.AddCubicBezier(new Vector2(612.752014F, -358.003998F), new Vector2(612.992004F, -358.988007F), new Vector2(613.471985F, -359.85199F)); + builder.AddCubicBezier(new Vector2(613.952026F, -360.716003F), new Vector2(614.612F, -361.394012F), new Vector2(615.452026F, -361.885986F)); + builder.AddCubicBezier(new Vector2(616.291992F, -362.377991F), new Vector2(617.23999F, -362.623993F), new Vector2(618.296021F, -362.623993F)); + builder.AddCubicBezier(new Vector2(619.400024F, -362.623993F), new Vector2(620.366028F, -362.377991F), new Vector2(621.19397F, -361.885986F)); + builder.AddCubicBezier(new Vector2(622.021973F, -361.394012F), new Vector2(622.682007F, -360.716003F), new Vector2(623.174011F, -359.85199F)); + builder.AddCubicBezier(new Vector2(623.666016F, -358.988007F), new Vector2(623.911987F, -358.003998F), new Vector2(623.911987F, -356.899994F)); + builder.AddCubicBezier(new Vector2(623.911987F, -355.772003F), new Vector2(623.671997F, -354.769989F), new Vector2(623.192017F, -353.894012F)); + builder.AddCubicBezier(new Vector2(622.711975F, -353.018005F), new Vector2(622.052002F, -352.328003F), new Vector2(621.211975F, -351.824005F)); + builder.AddCubicBezier(new Vector2(620.372009F, -351.320007F), new Vector2(619.400024F, -351.067993F), new Vector2(618.296021F, -351.067993F)); + builder.AddCubicBezier(new Vector2(617.23999F, -351.067993F), new Vector2(616.291992F, -351.320007F), new Vector2(615.452026F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(622.849976F, -349.123993F)); + builder.AddCubicBezier(new Vector2(624.205994F, -349.915985F), new Vector2(625.280029F, -350.98999F), new Vector2(626.072021F, -352.346008F)); + builder.AddCubicBezier(new Vector2(626.864014F, -353.701996F), new Vector2(627.26001F, -355.220001F), new Vector2(627.26001F, -356.899994F)); + builder.AddCubicBezier(new Vector2(627.26001F, -358.556F), new Vector2(626.864014F, -360.056F), new Vector2(626.072021F, -361.399994F)); + builder.AddCubicBezier(new Vector2(625.280029F, -362.743988F), new Vector2(624.205994F, -363.806F), new Vector2(622.849976F, -364.585999F)); + builder.AddCubicBezier(new Vector2(621.494019F, -365.365997F), new Vector2(619.976013F, -365.756012F), new Vector2(618.296021F, -365.756012F)); + builder.AddCubicBezier(new Vector2(616.640015F, -365.756012F), new Vector2(615.140015F, -365.359985F), new Vector2(613.796021F, -364.567993F)); + builder.AddCubicBezier(new Vector2(612.452026F, -363.776001F), new Vector2(611.383972F, -362.713989F), new Vector2(610.59198F, -361.381989F)); + builder.AddCubicBezier(new Vector2(609.799988F, -360.049988F), new Vector2(609.403992F, -358.556F), new Vector2(609.403992F, -356.899994F)); + builder.AddCubicBezier(new Vector2(609.403992F, -355.220001F), new Vector2(609.799988F, -353.701996F), new Vector2(610.59198F, -352.346008F)); + builder.AddCubicBezier(new Vector2(611.383972F, -350.98999F), new Vector2(612.452026F, -349.915985F), new Vector2(613.796021F, -349.123993F)); + builder.AddCubicBezier(new Vector2(615.140015F, -348.332001F), new Vector2(616.640015F, -347.936005F), new Vector2(618.296021F, -347.936005F)); + builder.AddCubicBezier(new Vector2(619.976013F, -347.936005F), new Vector2(621.494019F, -348.332001F), new Vector2(622.849976F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0334() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(605.174011F, -349.339996F)); + builder.AddCubicBezier(new Vector2(606.314026F, -350.276001F), new Vector2(606.883972F, -351.548004F), new Vector2(606.883972F, -353.156006F)); + builder.AddCubicBezier(new Vector2(606.883972F, -354.212006F), new Vector2(606.661987F, -355.063995F), new Vector2(606.218018F, -355.712006F)); + builder.AddCubicBezier(new Vector2(605.773987F, -356.359985F), new Vector2(605.203979F, -356.876007F), new Vector2(604.507996F, -357.26001F)); + builder.AddCubicBezier(new Vector2(603.812012F, -357.644012F), new Vector2(603.080017F, -357.950012F), new Vector2(602.312012F, -358.178009F)); + builder.AddCubicBezier(new Vector2(601.544006F, -358.406006F), new Vector2(600.80603F, -358.627991F), new Vector2(600.098022F, -358.843994F)); + builder.AddCubicBezier(new Vector2(599.390015F, -359.059998F), new Vector2(598.820007F, -359.324005F), new Vector2(598.388F, -359.635986F)); + builder.AddCubicBezier(new Vector2(597.955994F, -359.947998F), new Vector2(597.73999F, -360.391998F), new Vector2(597.73999F, -360.967987F)); + builder.AddCubicBezier(new Vector2(597.73999F, -361.519989F), new Vector2(597.986023F, -361.963989F), new Vector2(598.478027F, -362.299988F)); + builder.AddCubicBezier(new Vector2(598.969971F, -362.635986F), new Vector2(599.684021F, -362.803986F), new Vector2(600.619995F, -362.803986F)); + builder.AddCubicBezier(new Vector2(601.507996F, -362.803986F), new Vector2(602.299988F, -362.635986F), new Vector2(602.995972F, -362.299988F)); + builder.AddCubicBezier(new Vector2(603.692017F, -361.963989F), new Vector2(604.291992F, -361.484009F), new Vector2(604.796021F, -360.859985F)); + builder.AddLine(new Vector2(606.883972F, -362.947998F)); + builder.AddCubicBezier(new Vector2(606.211975F, -363.884003F), new Vector2(605.354004F, -364.585999F), new Vector2(604.309998F, -365.053986F)); + builder.AddCubicBezier(new Vector2(603.265991F, -365.522003F), new Vector2(602.072021F, -365.756012F), new Vector2(600.728027F, -365.756012F)); + builder.AddCubicBezier(new Vector2(599.455994F, -365.756012F), new Vector2(598.364014F, -365.552002F), new Vector2(597.452026F, -365.144012F)); + builder.AddCubicBezier(new Vector2(596.539978F, -364.735992F), new Vector2(595.838013F, -364.153992F), new Vector2(595.346008F, -363.39801F)); + builder.AddCubicBezier(new Vector2(594.854004F, -362.641998F), new Vector2(594.607971F, -361.747986F), new Vector2(594.607971F, -360.716003F)); + builder.AddCubicBezier(new Vector2(594.607971F, -359.68399F), new Vector2(594.830017F, -358.850006F), new Vector2(595.273987F, -358.213989F)); + builder.AddCubicBezier(new Vector2(595.718018F, -357.578003F), new Vector2(596.288025F, -357.079987F), new Vector2(596.984009F, -356.720001F)); + builder.AddCubicBezier(new Vector2(597.679993F, -356.359985F), new Vector2(598.41803F, -356.071991F), new Vector2(599.197998F, -355.855988F)); + builder.AddCubicBezier(new Vector2(599.978027F, -355.640015F), new Vector2(600.716003F, -355.417999F), new Vector2(601.411987F, -355.190002F)); + builder.AddCubicBezier(new Vector2(602.107971F, -354.962006F), new Vector2(602.677979F, -354.674011F), new Vector2(603.122009F, -354.325989F)); + builder.AddCubicBezier(new Vector2(603.565979F, -353.977997F), new Vector2(603.788025F, -353.492004F), new Vector2(603.788025F, -352.868011F)); + builder.AddCubicBezier(new Vector2(603.788025F, -352.243988F), new Vector2(603.512024F, -351.757996F), new Vector2(602.960022F, -351.410004F)); + builder.AddCubicBezier(new Vector2(602.40802F, -351.062012F), new Vector2(601.627991F, -350.888F), new Vector2(600.619995F, -350.888F)); + builder.AddCubicBezier(new Vector2(599.612F, -350.888F), new Vector2(598.700012F, -351.074005F), new Vector2(597.883972F, -351.446014F)); + builder.AddCubicBezier(new Vector2(597.067993F, -351.817993F), new Vector2(596.348022F, -352.388F), new Vector2(595.723999F, -353.156006F)); + builder.AddLine(new Vector2(593.635986F, -351.067993F)); + builder.AddCubicBezier(new Vector2(594.164001F, -350.420013F), new Vector2(594.781982F, -349.862F), new Vector2(595.48999F, -349.394012F)); + builder.AddCubicBezier(new Vector2(596.197998F, -348.925995F), new Vector2(596.984009F, -348.56601F), new Vector2(597.848022F, -348.313995F)); + builder.AddCubicBezier(new Vector2(598.711975F, -348.062012F), new Vector2(599.624023F, -347.936005F), new Vector2(600.583984F, -347.936005F)); + builder.AddCubicBezier(new Vector2(602.504028F, -347.936005F), new Vector2(604.033997F, -348.403992F), new Vector2(605.174011F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0335() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(579.812012F, -348.925995F)); + builder.AddCubicBezier(new Vector2(580.916016F, -349.537994F), new Vector2(581.780029F, -350.40799F), new Vector2(582.403992F, -351.536011F)); + builder.AddCubicBezier(new Vector2(583.028015F, -352.664001F), new Vector2(583.340027F, -353.971985F), new Vector2(583.340027F, -355.459991F)); + builder.AddLine(new Vector2(583.340027F, -365.395996F)); + builder.AddLine(new Vector2(580.099976F, -365.395996F)); + builder.AddLine(new Vector2(580.099976F, -355.604004F)); + builder.AddCubicBezier(new Vector2(580.099976F, -354.187988F), new Vector2(579.73999F, -353.078003F), new Vector2(579.02002F, -352.273987F)); + builder.AddCubicBezier(new Vector2(578.299988F, -351.470001F), new Vector2(577.304016F, -351.067993F), new Vector2(576.031982F, -351.067993F)); + builder.AddCubicBezier(new Vector2(575.192017F, -351.067993F), new Vector2(574.460022F, -351.247986F), new Vector2(573.835999F, -351.608002F)); + builder.AddCubicBezier(new Vector2(573.211975F, -351.967987F), new Vector2(572.737976F, -352.48999F), new Vector2(572.414001F, -353.174011F)); + builder.AddCubicBezier(new Vector2(572.090027F, -353.858002F), new Vector2(571.927979F, -354.667999F), new Vector2(571.927979F, -355.604004F)); + builder.AddLine(new Vector2(571.927979F, -365.395996F)); + builder.AddLine(new Vector2(568.687988F, -365.395996F)); + builder.AddLine(new Vector2(568.687988F, -355.459991F)); + builder.AddCubicBezier(new Vector2(568.687988F, -353.971985F), new Vector2(569F, -352.664001F), new Vector2(569.624023F, -351.536011F)); + builder.AddCubicBezier(new Vector2(570.247986F, -350.40799F), new Vector2(571.117981F, -349.537994F), new Vector2(572.234009F, -348.925995F)); + builder.AddCubicBezier(new Vector2(573.349976F, -348.313995F), new Vector2(574.616028F, -348.007996F), new Vector2(576.031982F, -348.007996F)); + builder.AddCubicBezier(new Vector2(577.447998F, -348.007996F), new Vector2(578.708008F, -348.313995F), new Vector2(579.812012F, -348.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0336() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(553.711975F, -351.824005F)); + builder.AddCubicBezier(new Vector2(552.872009F, -352.328003F), new Vector2(552.211975F, -353.018005F), new Vector2(551.731995F, -353.894012F)); + builder.AddCubicBezier(new Vector2(551.252014F, -354.769989F), new Vector2(551.012024F, -355.772003F), new Vector2(551.012024F, -356.899994F)); + builder.AddCubicBezier(new Vector2(551.012024F, -358.003998F), new Vector2(551.252014F, -358.988007F), new Vector2(551.731995F, -359.85199F)); + builder.AddCubicBezier(new Vector2(552.211975F, -360.716003F), new Vector2(552.872009F, -361.394012F), new Vector2(553.711975F, -361.885986F)); + builder.AddCubicBezier(new Vector2(554.552002F, -362.377991F), new Vector2(555.5F, -362.623993F), new Vector2(556.55603F, -362.623993F)); + builder.AddCubicBezier(new Vector2(557.659973F, -362.623993F), new Vector2(558.625977F, -362.377991F), new Vector2(559.453979F, -361.885986F)); + builder.AddCubicBezier(new Vector2(560.281982F, -361.394012F), new Vector2(560.942017F, -360.716003F), new Vector2(561.434021F, -359.85199F)); + builder.AddCubicBezier(new Vector2(561.926025F, -358.988007F), new Vector2(562.171997F, -358.003998F), new Vector2(562.171997F, -356.899994F)); + builder.AddCubicBezier(new Vector2(562.171997F, -355.772003F), new Vector2(561.932007F, -354.769989F), new Vector2(561.452026F, -353.894012F)); + builder.AddCubicBezier(new Vector2(560.971985F, -353.018005F), new Vector2(560.312012F, -352.328003F), new Vector2(559.471985F, -351.824005F)); + builder.AddCubicBezier(new Vector2(558.632019F, -351.320007F), new Vector2(557.659973F, -351.067993F), new Vector2(556.55603F, -351.067993F)); + builder.AddCubicBezier(new Vector2(555.5F, -351.067993F), new Vector2(554.552002F, -351.320007F), new Vector2(553.711975F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(561.109985F, -349.123993F)); + builder.AddCubicBezier(new Vector2(562.466003F, -349.915985F), new Vector2(563.539978F, -350.98999F), new Vector2(564.33197F, -352.346008F)); + builder.AddCubicBezier(new Vector2(565.124023F, -353.701996F), new Vector2(565.52002F, -355.220001F), new Vector2(565.52002F, -356.899994F)); + builder.AddCubicBezier(new Vector2(565.52002F, -358.556F), new Vector2(565.124023F, -360.056F), new Vector2(564.33197F, -361.399994F)); + builder.AddCubicBezier(new Vector2(563.539978F, -362.743988F), new Vector2(562.466003F, -363.806F), new Vector2(561.109985F, -364.585999F)); + builder.AddCubicBezier(new Vector2(559.754028F, -365.365997F), new Vector2(558.236023F, -365.756012F), new Vector2(556.55603F, -365.756012F)); + builder.AddCubicBezier(new Vector2(554.900024F, -365.756012F), new Vector2(553.400024F, -365.359985F), new Vector2(552.05603F, -364.567993F)); + builder.AddCubicBezier(new Vector2(550.711975F, -363.776001F), new Vector2(549.643982F, -362.713989F), new Vector2(548.85199F, -361.381989F)); + builder.AddCubicBezier(new Vector2(548.059998F, -360.049988F), new Vector2(547.664001F, -358.556F), new Vector2(547.664001F, -356.899994F)); + builder.AddCubicBezier(new Vector2(547.664001F, -355.220001F), new Vector2(548.059998F, -353.701996F), new Vector2(548.85199F, -352.346008F)); + builder.AddCubicBezier(new Vector2(549.643982F, -350.98999F), new Vector2(550.711975F, -349.915985F), new Vector2(552.05603F, -349.123993F)); + builder.AddCubicBezier(new Vector2(553.400024F, -348.332001F), new Vector2(554.900024F, -347.936005F), new Vector2(556.55603F, -347.936005F)); + builder.AddCubicBezier(new Vector2(558.236023F, -347.936005F), new Vector2(559.754028F, -348.332001F), new Vector2(561.109985F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0337() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(535.531982F, -341.131989F)); + builder.AddLine(new Vector2(538.771973F, -348.152008F)); + builder.AddLine(new Vector2(536.935974F, -351.463989F)); + builder.AddLine(new Vector2(531.932007F, -341.131989F)); + builder.AddLine(new Vector2(535.531982F, -341.131989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(538.771973F, -348.152008F)); + builder.AddLine(new Vector2(546.763977F, -365.395996F)); + builder.AddLine(new Vector2(543.164001F, -365.395996F)); + builder.AddLine(new Vector2(537.367981F, -351.895996F)); + builder.AddLine(new Vector2(538.52002F, -351.895996F)); + builder.AddLine(new Vector2(533.012024F, -365.395996F)); + builder.AddLine(new Vector2(529.411987F, -365.395996F)); + builder.AddLine(new Vector2(536.828003F, -348.152008F)); + builder.AddLine(new Vector2(538.771973F, -348.152008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0338() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(507.829987F, -352.346008F)); + builder.AddCubicBezier(new Vector2(507.002014F, -352.813995F), new Vector2(506.354004F, -353.467987F), new Vector2(505.885986F, -354.308014F)); + builder.AddCubicBezier(new Vector2(505.417999F, -355.14801F), new Vector2(505.18399F, -356.108002F), new Vector2(505.18399F, -357.187988F)); + builder.AddCubicBezier(new Vector2(505.18399F, -358.268005F), new Vector2(505.417999F, -359.221985F), new Vector2(505.885986F, -360.049988F)); + builder.AddCubicBezier(new Vector2(506.354004F, -360.877991F), new Vector2(506.996002F, -361.526001F), new Vector2(507.812012F, -361.993988F)); + builder.AddCubicBezier(new Vector2(508.627991F, -362.462006F), new Vector2(509.575989F, -362.696014F), new Vector2(510.656006F, -362.696014F)); + builder.AddCubicBezier(new Vector2(511.712006F, -362.696014F), new Vector2(512.642029F, -362.462006F), new Vector2(513.445984F, -361.993988F)); + builder.AddCubicBezier(new Vector2(514.25F, -361.526001F), new Vector2(514.874023F, -360.877991F), new Vector2(515.317993F, -360.049988F)); + builder.AddCubicBezier(new Vector2(515.762024F, -359.221985F), new Vector2(515.984009F, -358.256012F), new Vector2(515.984009F, -357.152008F)); + builder.AddCubicBezier(new Vector2(515.984009F, -356.048004F), new Vector2(515.762024F, -355.082001F), new Vector2(515.317993F, -354.253998F)); + builder.AddCubicBezier(new Vector2(514.874023F, -353.425995F), new Vector2(514.255981F, -352.783997F), new Vector2(513.463989F, -352.328003F)); + builder.AddCubicBezier(new Vector2(512.671997F, -351.872009F), new Vector2(511.735992F, -351.644012F), new Vector2(510.656006F, -351.644012F)); + builder.AddCubicBezier(new Vector2(509.600006F, -351.644012F), new Vector2(508.65799F, -351.877991F), new Vector2(507.829987F, -352.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(513.572021F, -349.376007F)); + builder.AddCubicBezier(new Vector2(514.604004F, -349.903992F), new Vector2(515.426025F, -350.641998F), new Vector2(516.038025F, -351.589996F)); + builder.AddCubicBezier(new Vector2(516.650024F, -352.537994F), new Vector2(516.992004F, -353.635986F), new Vector2(517.064026F, -354.884003F)); + builder.AddLine(new Vector2(517.064026F, -359.420013F)); + builder.AddCubicBezier(new Vector2(516.992004F, -360.691986F), new Vector2(516.656006F, -361.802002F), new Vector2(516.05603F, -362.75F)); + builder.AddCubicBezier(new Vector2(515.455994F, -363.697998F), new Vector2(514.633972F, -364.436005F), new Vector2(513.590027F, -364.963989F)); + builder.AddCubicBezier(new Vector2(512.546021F, -365.492004F), new Vector2(511.35199F, -365.756012F), new Vector2(510.007996F, -365.756012F)); + builder.AddCubicBezier(new Vector2(508.471985F, -365.756012F), new Vector2(507.079987F, -365.377991F), new Vector2(505.832001F, -364.622009F)); + builder.AddCubicBezier(new Vector2(504.584015F, -363.865997F), new Vector2(503.605988F, -362.846008F), new Vector2(502.89801F, -361.562012F)); + builder.AddCubicBezier(new Vector2(502.190002F, -360.278015F), new Vector2(501.835999F, -358.820007F), new Vector2(501.835999F, -357.187988F)); + builder.AddCubicBezier(new Vector2(501.835999F, -355.556F), new Vector2(502.196014F, -354.085999F), new Vector2(502.915985F, -352.778015F)); + builder.AddCubicBezier(new Vector2(503.635986F, -351.470001F), new Vector2(504.614014F, -350.444F), new Vector2(505.850006F, -349.700012F)); + builder.AddCubicBezier(new Vector2(507.085999F, -348.955994F), new Vector2(508.484009F, -348.584015F), new Vector2(510.044006F, -348.584015F)); + builder.AddCubicBezier(new Vector2(511.364014F, -348.584015F), new Vector2(512.539978F, -348.847992F), new Vector2(513.572021F, -349.376007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(514.742004F, -341.798004F)); + builder.AddCubicBezier(new Vector2(516.098022F, -342.481995F), new Vector2(517.153992F, -343.441986F), new Vector2(517.909973F, -344.678009F)); + builder.AddCubicBezier(new Vector2(518.666016F, -345.914001F), new Vector2(519.044006F, -347.347992F), new Vector2(519.044006F, -348.980011F)); + builder.AddLine(new Vector2(519.044006F, -365.395996F)); + builder.AddLine(new Vector2(515.804016F, -365.395996F)); + builder.AddLine(new Vector2(515.804016F, -360.895996F)); + builder.AddLine(new Vector2(516.380005F, -357.079987F)); + builder.AddLine(new Vector2(515.804016F, -353.227997F)); + builder.AddLine(new Vector2(515.804016F, -348.980011F)); + builder.AddCubicBezier(new Vector2(515.804016F, -347.420013F), new Vector2(515.288025F, -346.178009F), new Vector2(514.255981F, -345.253998F)); + builder.AddCubicBezier(new Vector2(513.223999F, -344.329987F), new Vector2(511.843994F, -343.868011F), new Vector2(510.115997F, -343.868011F)); + builder.AddCubicBezier(new Vector2(508.79599F, -343.868011F), new Vector2(507.656006F, -344.10199F), new Vector2(506.696014F, -344.570007F)); + builder.AddCubicBezier(new Vector2(505.735992F, -345.037994F), new Vector2(504.90799F, -345.716003F), new Vector2(504.212006F, -346.604004F)); + builder.AddLine(new Vector2(502.088013F, -344.480011F)); + builder.AddCubicBezier(new Vector2(502.928009F, -343.303986F), new Vector2(504.019989F, -342.391998F), new Vector2(505.364014F, -341.743988F)); + builder.AddCubicBezier(new Vector2(506.708008F, -341.096008F), new Vector2(508.268005F, -340.772003F), new Vector2(510.044006F, -340.772003F)); + builder.AddCubicBezier(new Vector2(511.820007F, -340.772003F), new Vector2(513.385986F, -341.114014F), new Vector2(514.742004F, -341.798004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0339() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(486.463989F, -348.29599F)); + builder.AddLine(new Vector2(486.463989F, -365.395996F)); + builder.AddLine(new Vector2(483.223999F, -365.395996F)); + builder.AddLine(new Vector2(483.223999F, -348.29599F)); + builder.AddLine(new Vector2(486.463989F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(498.559998F, -348.29599F)); + builder.AddLine(new Vector2(498.559998F, -358.915985F)); + builder.AddCubicBezier(new Vector2(498.559998F, -360.09201F), new Vector2(498.272003F, -361.201996F), new Vector2(497.696014F, -362.246002F)); + builder.AddCubicBezier(new Vector2(497.119995F, -363.290009F), new Vector2(496.334015F, -364.135986F), new Vector2(495.338013F, -364.783997F)); + builder.AddCubicBezier(new Vector2(494.34201F, -365.432007F), new Vector2(493.196014F, -365.756012F), new Vector2(491.899994F, -365.756012F)); + builder.AddCubicBezier(new Vector2(490.604004F, -365.756012F), new Vector2(489.440002F, -365.462006F), new Vector2(488.40799F, -364.873993F)); + builder.AddCubicBezier(new Vector2(487.376007F, -364.286011F), new Vector2(486.571991F, -363.488007F), new Vector2(485.996002F, -362.480011F)); + builder.AddCubicBezier(new Vector2(485.420013F, -361.471985F), new Vector2(485.131989F, -360.320007F), new Vector2(485.131989F, -359.023987F)); + builder.AddLine(new Vector2(486.463989F, -358.268005F)); + builder.AddCubicBezier(new Vector2(486.463989F, -359.131989F), new Vector2(486.656006F, -359.899994F), new Vector2(487.040009F, -360.571991F)); + builder.AddCubicBezier(new Vector2(487.424011F, -361.243988F), new Vector2(487.951996F, -361.772003F), new Vector2(488.623993F, -362.156006F)); + builder.AddCubicBezier(new Vector2(489.29599F, -362.540009F), new Vector2(490.063995F, -362.731995F), new Vector2(490.928009F, -362.731995F)); + builder.AddCubicBezier(new Vector2(492.223999F, -362.731995F), new Vector2(493.273987F, -362.312012F), new Vector2(494.078003F, -361.471985F)); + builder.AddCubicBezier(new Vector2(494.881989F, -360.631989F), new Vector2(495.283997F, -359.563995F), new Vector2(495.283997F, -358.268005F)); + builder.AddLine(new Vector2(495.283997F, -348.29599F)); + builder.AddLine(new Vector2(498.559998F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0340() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(478.291992F, -369.410004F)); + builder.AddCubicBezier(new Vector2(478.675995F, -369.806F), new Vector2(478.868011F, -370.303986F), new Vector2(478.868011F, -370.903992F)); + builder.AddCubicBezier(new Vector2(478.868011F, -371.480011F), new Vector2(478.675995F, -371.966003F), new Vector2(478.291992F, -372.362F)); + builder.AddCubicBezier(new Vector2(477.90799F, -372.757996F), new Vector2(477.415985F, -372.955994F), new Vector2(476.81601F, -372.955994F)); + builder.AddCubicBezier(new Vector2(476.216003F, -372.955994F), new Vector2(475.723999F, -372.757996F), new Vector2(475.339996F, -372.362F)); + builder.AddCubicBezier(new Vector2(474.955994F, -371.966003F), new Vector2(474.764008F, -371.480011F), new Vector2(474.764008F, -370.903992F)); + builder.AddCubicBezier(new Vector2(474.764008F, -370.303986F), new Vector2(474.955994F, -369.806F), new Vector2(475.339996F, -369.410004F)); + builder.AddCubicBezier(new Vector2(475.723999F, -369.014008F), new Vector2(476.216003F, -368.81601F), new Vector2(476.81601F, -368.81601F)); + builder.AddCubicBezier(new Vector2(477.415985F, -368.81601F), new Vector2(477.90799F, -369.014008F), new Vector2(478.291992F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(478.436005F, -348.29599F)); + builder.AddLine(new Vector2(478.436005F, -365.395996F)); + builder.AddLine(new Vector2(475.160004F, -365.395996F)); + builder.AddLine(new Vector2(475.160004F, -348.29599F)); + builder.AddLine(new Vector2(478.436005F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0341() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(465.115997F, -361.544006F)); + builder.AddCubicBezier(new Vector2(465.884003F, -362.312012F), new Vector2(466.868011F, -362.696014F), new Vector2(468.067993F, -362.696014F)); + builder.AddCubicBezier(new Vector2(468.644012F, -362.696014F), new Vector2(469.14801F, -362.612F), new Vector2(469.579987F, -362.444F)); + builder.AddCubicBezier(new Vector2(470.011993F, -362.276001F), new Vector2(470.40799F, -362F), new Vector2(470.768005F, -361.615997F)); + builder.AddLine(new Vector2(472.891998F, -363.812012F)); + builder.AddCubicBezier(new Vector2(472.291992F, -364.507996F), new Vector2(471.644012F, -365.006012F), new Vector2(470.947998F, -365.306F)); + builder.AddCubicBezier(new Vector2(470.252014F, -365.605988F), new Vector2(469.471985F, -365.756012F), new Vector2(468.608002F, -365.756012F)); + builder.AddCubicBezier(new Vector2(466.712006F, -365.756012F), new Vector2(465.26001F, -365.108002F), new Vector2(464.252014F, -363.812012F)); + builder.AddCubicBezier(new Vector2(463.243988F, -362.515991F), new Vector2(462.73999F, -360.776001F), new Vector2(462.73999F, -358.59201F)); + builder.AddLine(new Vector2(463.963989F, -358.015991F)); + builder.AddCubicBezier(new Vector2(463.963989F, -359.600006F), new Vector2(464.347992F, -360.776001F), new Vector2(465.115997F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(463.963989F, -348.29599F)); + builder.AddLine(new Vector2(463.963989F, -365.395996F)); + builder.AddLine(new Vector2(460.723999F, -365.395996F)); + builder.AddLine(new Vector2(460.723999F, -348.29599F)); + builder.AddLine(new Vector2(463.963989F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0342() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(445.406006F, -351.752014F)); + builder.AddCubicBezier(new Vector2(444.578003F, -352.256012F), new Vector2(443.941986F, -352.946014F), new Vector2(443.497986F, -353.821991F)); + builder.AddCubicBezier(new Vector2(443.053986F, -354.697998F), new Vector2(442.832001F, -355.700012F), new Vector2(442.832001F, -356.828003F)); + builder.AddCubicBezier(new Vector2(442.832001F, -357.980011F), new Vector2(443.059998F, -358.993988F), new Vector2(443.515991F, -359.869995F)); + builder.AddCubicBezier(new Vector2(443.971985F, -360.746002F), new Vector2(444.608002F, -361.436005F), new Vector2(445.424011F, -361.940002F)); + builder.AddCubicBezier(new Vector2(446.23999F, -362.444F), new Vector2(447.175995F, -362.696014F), new Vector2(448.231995F, -362.696014F)); + builder.AddCubicBezier(new Vector2(449.312012F, -362.696014F), new Vector2(450.26001F, -362.444F), new Vector2(451.075989F, -361.940002F)); + builder.AddCubicBezier(new Vector2(451.891998F, -361.436005F), new Vector2(452.533997F, -360.746002F), new Vector2(453.002014F, -359.869995F)); + builder.AddCubicBezier(new Vector2(453.470001F, -358.993988F), new Vector2(453.70401F, -357.992004F), new Vector2(453.70401F, -356.864014F)); + builder.AddCubicBezier(new Vector2(453.70401F, -355.712006F), new Vector2(453.470001F, -354.697998F), new Vector2(453.002014F, -353.821991F)); + builder.AddCubicBezier(new Vector2(452.533997F, -352.946014F), new Vector2(451.891998F, -352.256012F), new Vector2(451.075989F, -351.752014F)); + builder.AddCubicBezier(new Vector2(450.26001F, -351.247986F), new Vector2(449.312012F, -350.996002F), new Vector2(448.231995F, -350.996002F)); + builder.AddCubicBezier(new Vector2(447.175995F, -350.996002F), new Vector2(446.234009F, -351.247986F), new Vector2(445.406006F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(443.011993F, -348.29599F)); + builder.AddLine(new Vector2(443.011993F, -352.903992F)); + builder.AddLine(new Vector2(442.399994F, -357.079987F)); + builder.AddLine(new Vector2(443.011993F, -361.220001F)); + builder.AddLine(new Vector2(443.011993F, -374F)); + builder.AddLine(new Vector2(439.772003F, -374F)); + builder.AddLine(new Vector2(439.772003F, -348.29599F)); + builder.AddLine(new Vector2(443.011993F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(453.002014F, -349.105988F)); + builder.AddCubicBezier(new Vector2(454.261993F, -349.885986F), new Vector2(455.252014F, -350.947998F), new Vector2(455.971985F, -352.291992F)); + builder.AddCubicBezier(new Vector2(456.691986F, -353.635986F), new Vector2(457.052002F, -355.14801F), new Vector2(457.052002F, -356.828003F)); + builder.AddCubicBezier(new Vector2(457.052002F, -358.507996F), new Vector2(456.691986F, -360.019989F), new Vector2(455.971985F, -361.364014F)); + builder.AddCubicBezier(new Vector2(455.252014F, -362.708008F), new Vector2(454.261993F, -363.776001F), new Vector2(453.002014F, -364.567993F)); + builder.AddCubicBezier(new Vector2(451.742004F, -365.359985F), new Vector2(450.332001F, -365.756012F), new Vector2(448.772003F, -365.756012F)); + builder.AddCubicBezier(new Vector2(447.5F, -365.756012F), new Vector2(446.34201F, -365.485992F), new Vector2(445.298004F, -364.946014F)); + builder.AddCubicBezier(new Vector2(444.253998F, -364.406006F), new Vector2(443.414001F, -363.661987F), new Vector2(442.778015F, -362.713989F)); + builder.AddCubicBezier(new Vector2(442.141998F, -361.765991F), new Vector2(441.787994F, -360.667999F), new Vector2(441.716003F, -359.420013F)); + builder.AddLine(new Vector2(441.716003F, -354.272003F)); + builder.AddCubicBezier(new Vector2(441.787994F, -353.048004F), new Vector2(442.135986F, -351.955994F), new Vector2(442.76001F, -350.996002F)); + builder.AddCubicBezier(new Vector2(443.384003F, -350.036011F), new Vector2(444.217987F, -349.286011F), new Vector2(445.261993F, -348.746002F)); + builder.AddCubicBezier(new Vector2(446.306F, -348.205994F), new Vector2(447.476013F, -347.936005F), new Vector2(448.772003F, -347.936005F)); + builder.AddCubicBezier(new Vector2(450.332001F, -347.936005F), new Vector2(451.742004F, -348.325989F), new Vector2(453.002014F, -349.105988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0343() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(416.911987F, -351.824005F)); + builder.AddCubicBezier(new Vector2(416.071991F, -352.328003F), new Vector2(415.411987F, -353.018005F), new Vector2(414.932007F, -353.894012F)); + builder.AddCubicBezier(new Vector2(414.451996F, -354.769989F), new Vector2(414.212006F, -355.772003F), new Vector2(414.212006F, -356.899994F)); + builder.AddCubicBezier(new Vector2(414.212006F, -358.003998F), new Vector2(414.451996F, -358.988007F), new Vector2(414.932007F, -359.85199F)); + builder.AddCubicBezier(new Vector2(415.411987F, -360.716003F), new Vector2(416.071991F, -361.394012F), new Vector2(416.911987F, -361.885986F)); + builder.AddCubicBezier(new Vector2(417.752014F, -362.377991F), new Vector2(418.700012F, -362.623993F), new Vector2(419.756012F, -362.623993F)); + builder.AddCubicBezier(new Vector2(420.859985F, -362.623993F), new Vector2(421.825989F, -362.377991F), new Vector2(422.653992F, -361.885986F)); + builder.AddCubicBezier(new Vector2(423.481995F, -361.394012F), new Vector2(424.141998F, -360.716003F), new Vector2(424.634003F, -359.85199F)); + builder.AddCubicBezier(new Vector2(425.126007F, -358.988007F), new Vector2(425.372009F, -358.003998F), new Vector2(425.372009F, -356.899994F)); + builder.AddCubicBezier(new Vector2(425.372009F, -355.772003F), new Vector2(425.131989F, -354.769989F), new Vector2(424.652008F, -353.894012F)); + builder.AddCubicBezier(new Vector2(424.171997F, -353.018005F), new Vector2(423.511993F, -352.328003F), new Vector2(422.671997F, -351.824005F)); + builder.AddCubicBezier(new Vector2(421.832001F, -351.320007F), new Vector2(420.859985F, -351.067993F), new Vector2(419.756012F, -351.067993F)); + builder.AddCubicBezier(new Vector2(418.700012F, -351.067993F), new Vector2(417.752014F, -351.320007F), new Vector2(416.911987F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(424.309998F, -349.123993F)); + builder.AddCubicBezier(new Vector2(425.665985F, -349.915985F), new Vector2(426.73999F, -350.98999F), new Vector2(427.532013F, -352.346008F)); + builder.AddCubicBezier(new Vector2(428.324005F, -353.701996F), new Vector2(428.720001F, -355.220001F), new Vector2(428.720001F, -356.899994F)); + builder.AddCubicBezier(new Vector2(428.720001F, -358.556F), new Vector2(428.324005F, -360.056F), new Vector2(427.532013F, -361.399994F)); + builder.AddCubicBezier(new Vector2(426.73999F, -362.743988F), new Vector2(425.665985F, -363.806F), new Vector2(424.309998F, -364.585999F)); + builder.AddCubicBezier(new Vector2(422.95401F, -365.365997F), new Vector2(421.436005F, -365.756012F), new Vector2(419.756012F, -365.756012F)); + builder.AddCubicBezier(new Vector2(418.100006F, -365.756012F), new Vector2(416.600006F, -365.359985F), new Vector2(415.256012F, -364.567993F)); + builder.AddCubicBezier(new Vector2(413.911987F, -363.776001F), new Vector2(412.843994F, -362.713989F), new Vector2(412.052002F, -361.381989F)); + builder.AddCubicBezier(new Vector2(411.26001F, -360.049988F), new Vector2(410.864014F, -358.556F), new Vector2(410.864014F, -356.899994F)); + builder.AddCubicBezier(new Vector2(410.864014F, -355.220001F), new Vector2(411.26001F, -353.701996F), new Vector2(412.052002F, -352.346008F)); + builder.AddCubicBezier(new Vector2(412.843994F, -350.98999F), new Vector2(413.911987F, -349.915985F), new Vector2(415.256012F, -349.123993F)); + builder.AddCubicBezier(new Vector2(416.600006F, -348.332001F), new Vector2(418.100006F, -347.936005F), new Vector2(419.756012F, -347.936005F)); + builder.AddCubicBezier(new Vector2(421.436005F, -347.936005F), new Vector2(422.95401F, -348.332001F), new Vector2(424.309998F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0344() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(409.35199F, -362.444F)); + builder.AddLine(new Vector2(409.35199F, -365.395996F)); + builder.AddLine(new Vector2(397.687988F, -365.395996F)); + builder.AddLine(new Vector2(397.687988F, -362.444F)); + builder.AddLine(new Vector2(409.35199F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(405.140015F, -348.29599F)); + builder.AddLine(new Vector2(405.140015F, -372.559998F)); + builder.AddLine(new Vector2(401.899994F, -372.559998F)); + builder.AddLine(new Vector2(401.899994F, -348.29599F)); + builder.AddLine(new Vector2(405.140015F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0345() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(384.223999F, -348.691986F)); + builder.AddCubicBezier(new Vector2(385.399994F, -349.196014F), new Vector2(386.40799F, -349.928009F), new Vector2(387.247986F, -350.888F)); + builder.AddLine(new Vector2(385.160004F, -353.011993F)); + builder.AddCubicBezier(new Vector2(384.584015F, -352.339996F), new Vector2(383.894012F, -351.835999F), new Vector2(383.089996F, -351.5F)); + builder.AddCubicBezier(new Vector2(382.286011F, -351.164001F), new Vector2(381.403992F, -350.996002F), new Vector2(380.444F, -350.996002F)); + builder.AddCubicBezier(new Vector2(379.291992F, -350.996002F), new Vector2(378.272003F, -351.242004F), new Vector2(377.384003F, -351.734009F)); + builder.AddCubicBezier(new Vector2(376.496002F, -352.226013F), new Vector2(375.812012F, -352.921997F), new Vector2(375.332001F, -353.821991F)); + builder.AddCubicBezier(new Vector2(374.85199F, -354.721985F), new Vector2(374.612F, -355.772003F), new Vector2(374.612F, -356.971985F)); + builder.AddCubicBezier(new Vector2(374.612F, -358.14801F), new Vector2(374.839996F, -359.167999F), new Vector2(375.29599F, -360.032013F)); + builder.AddCubicBezier(new Vector2(375.752014F, -360.895996F), new Vector2(376.399994F, -361.567993F), new Vector2(377.23999F, -362.048004F)); + builder.AddCubicBezier(new Vector2(378.079987F, -362.528015F), new Vector2(379.052002F, -362.768005F), new Vector2(380.156006F, -362.768005F)); + builder.AddCubicBezier(new Vector2(381.212006F, -362.768005F), new Vector2(382.112F, -362.54599F), new Vector2(382.855988F, -362.10199F)); + builder.AddCubicBezier(new Vector2(383.600006F, -361.65799F), new Vector2(384.175995F, -361.033997F), new Vector2(384.584015F, -360.230011F)); + builder.AddCubicBezier(new Vector2(384.992004F, -359.425995F), new Vector2(385.196014F, -358.447998F), new Vector2(385.196014F, -357.29599F)); + builder.AddLine(new Vector2(386.384003F, -358.339996F)); + builder.AddLine(new Vector2(373.675995F, -358.339996F)); + builder.AddLine(new Vector2(373.675995F, -355.640015F)); + builder.AddLine(new Vector2(388.112F, -355.640015F)); + builder.AddCubicBezier(new Vector2(388.18399F, -355.976013F), new Vector2(388.231995F, -356.282013F), new Vector2(388.256012F, -356.558014F)); + builder.AddCubicBezier(new Vector2(388.279999F, -356.834015F), new Vector2(388.291992F, -357.09201F), new Vector2(388.291992F, -357.332001F)); + builder.AddCubicBezier(new Vector2(388.291992F, -358.963989F), new Vector2(387.950012F, -360.415985F), new Vector2(387.265991F, -361.687988F)); + builder.AddCubicBezier(new Vector2(386.582001F, -362.959991F), new Vector2(385.627991F, -363.955994F), new Vector2(384.403992F, -364.675995F)); + builder.AddCubicBezier(new Vector2(383.179993F, -365.395996F), new Vector2(381.787994F, -365.756012F), new Vector2(380.227997F, -365.756012F)); + builder.AddCubicBezier(new Vector2(378.571991F, -365.756012F), new Vector2(377.078003F, -365.365997F), new Vector2(375.746002F, -364.585999F)); + builder.AddCubicBezier(new Vector2(374.414001F, -363.806F), new Vector2(373.358002F, -362.743988F), new Vector2(372.578003F, -361.399994F)); + builder.AddCubicBezier(new Vector2(371.798004F, -360.056F), new Vector2(371.40799F, -358.544006F), new Vector2(371.40799F, -356.864014F)); + builder.AddCubicBezier(new Vector2(371.40799F, -355.160004F), new Vector2(371.803986F, -353.635986F), new Vector2(372.596008F, -352.291992F)); + builder.AddCubicBezier(new Vector2(373.388F, -350.947998F), new Vector2(374.462006F, -349.885986F), new Vector2(375.817993F, -349.105988F)); + builder.AddCubicBezier(new Vector2(377.174011F, -348.325989F), new Vector2(378.716003F, -347.936005F), new Vector2(380.444F, -347.936005F)); + builder.AddCubicBezier(new Vector2(381.787994F, -347.936005F), new Vector2(383.048004F, -348.187988F), new Vector2(384.223999F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0346() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(358.808014F, -348.29599F)); + builder.AddLine(new Vector2(358.808014F, -374F)); + builder.AddLine(new Vector2(355.567993F, -374F)); + builder.AddLine(new Vector2(355.567993F, -348.29599F)); + builder.AddLine(new Vector2(358.808014F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(370.687988F, -348.29599F)); + builder.AddLine(new Vector2(361.687988F, -358.052002F)); + builder.AddLine(new Vector2(361.544006F, -356.179993F)); + builder.AddLine(new Vector2(370.364014F, -365.395996F)); + builder.AddLine(new Vector2(366.403992F, -365.395996F)); + builder.AddLine(new Vector2(358.519989F, -357.044006F)); + builder.AddLine(new Vector2(366.511993F, -348.29599F)); + builder.AddLine(new Vector2(370.687988F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0347() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(350.635986F, -369.410004F)); + builder.AddCubicBezier(new Vector2(351.019989F, -369.806F), new Vector2(351.212006F, -370.303986F), new Vector2(351.212006F, -370.903992F)); + builder.AddCubicBezier(new Vector2(351.212006F, -371.480011F), new Vector2(351.019989F, -371.966003F), new Vector2(350.635986F, -372.362F)); + builder.AddCubicBezier(new Vector2(350.252014F, -372.757996F), new Vector2(349.76001F, -372.955994F), new Vector2(349.160004F, -372.955994F)); + builder.AddCubicBezier(new Vector2(348.559998F, -372.955994F), new Vector2(348.067993F, -372.757996F), new Vector2(347.68399F, -372.362F)); + builder.AddCubicBezier(new Vector2(347.299988F, -371.966003F), new Vector2(347.108002F, -371.480011F), new Vector2(347.108002F, -370.903992F)); + builder.AddCubicBezier(new Vector2(347.108002F, -370.303986F), new Vector2(347.299988F, -369.806F), new Vector2(347.68399F, -369.410004F)); + builder.AddCubicBezier(new Vector2(348.067993F, -369.014008F), new Vector2(348.559998F, -368.81601F), new Vector2(349.160004F, -368.81601F)); + builder.AddCubicBezier(new Vector2(349.76001F, -368.81601F), new Vector2(350.252014F, -369.014008F), new Vector2(350.635986F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(350.779999F, -348.29599F)); + builder.AddLine(new Vector2(350.779999F, -365.395996F)); + builder.AddLine(new Vector2(347.503998F, -365.395996F)); + builder.AddLine(new Vector2(347.503998F, -348.29599F)); + builder.AddLine(new Vector2(350.779999F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0348() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(342.752014F, -348.29599F)); + builder.AddLine(new Vector2(342.752014F, -374F)); + builder.AddLine(new Vector2(339.511993F, -374F)); + builder.AddLine(new Vector2(339.511993F, -348.29599F)); + builder.AddLine(new Vector2(342.752014F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0349() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(327.343994F, -374F)); + builder.AddLine(new Vector2(324.067993F, -374F)); + builder.AddLine(new Vector2(324.067993F, -361.220001F)); + builder.AddLine(new Vector2(324.679993F, -357.079987F)); + builder.AddLine(new Vector2(324.067993F, -352.903992F)); + builder.AddLine(new Vector2(324.067993F, -348.29599F)); + builder.AddLine(new Vector2(327.343994F, -348.29599F)); + builder.AddLine(new Vector2(327.343994F, -374F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(316.022003F, -351.734009F)); + builder.AddCubicBezier(new Vector2(315.194F, -352.226013F), new Vector2(314.54599F, -352.915985F), new Vector2(314.078003F, -353.803986F)); + builder.AddCubicBezier(new Vector2(313.609985F, -354.691986F), new Vector2(313.376007F, -355.712006F), new Vector2(313.376007F, -356.864014F)); + builder.AddCubicBezier(new Vector2(313.376007F, -358.015991F), new Vector2(313.609985F, -359.029999F), new Vector2(314.078003F, -359.906006F)); + builder.AddCubicBezier(new Vector2(314.54599F, -360.782013F), new Vector2(315.187988F, -361.466003F), new Vector2(316.003998F, -361.958008F)); + builder.AddCubicBezier(new Vector2(316.820007F, -362.450012F), new Vector2(317.768005F, -362.696014F), new Vector2(318.847992F, -362.696014F)); + builder.AddCubicBezier(new Vector2(319.928009F, -362.696014F), new Vector2(320.876007F, -362.444F), new Vector2(321.691986F, -361.940002F)); + builder.AddCubicBezier(new Vector2(322.507996F, -361.436005F), new Vector2(323.144012F, -360.746002F), new Vector2(323.600006F, -359.869995F)); + builder.AddCubicBezier(new Vector2(324.056F, -358.993988F), new Vector2(324.283997F, -357.980011F), new Vector2(324.283997F, -356.828003F)); + builder.AddCubicBezier(new Vector2(324.283997F, -355.700012F), new Vector2(324.056F, -354.697998F), new Vector2(323.600006F, -353.821991F)); + builder.AddCubicBezier(new Vector2(323.144012F, -352.946014F), new Vector2(322.507996F, -352.256012F), new Vector2(321.691986F, -351.752014F)); + builder.AddCubicBezier(new Vector2(320.876007F, -351.247986F), new Vector2(319.928009F, -350.996002F), new Vector2(318.847992F, -350.996002F)); + builder.AddCubicBezier(new Vector2(317.791992F, -350.996002F), new Vector2(316.850006F, -351.242004F), new Vector2(316.022003F, -351.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(321.835999F, -348.746002F)); + builder.AddCubicBezier(new Vector2(322.868011F, -349.286011F), new Vector2(323.696014F, -350.036011F), new Vector2(324.320007F, -350.996002F)); + builder.AddCubicBezier(new Vector2(324.944F, -351.955994F), new Vector2(325.291992F, -353.048004F), new Vector2(325.364014F, -354.272003F)); + builder.AddLine(new Vector2(325.364014F, -359.420013F)); + builder.AddCubicBezier(new Vector2(325.291992F, -360.667999F), new Vector2(324.937988F, -361.765991F), new Vector2(324.302002F, -362.713989F)); + builder.AddCubicBezier(new Vector2(323.665985F, -363.661987F), new Vector2(322.832001F, -364.406006F), new Vector2(321.799988F, -364.946014F)); + builder.AddCubicBezier(new Vector2(320.768005F, -365.485992F), new Vector2(319.604004F, -365.756012F), new Vector2(318.308014F, -365.756012F)); + builder.AddCubicBezier(new Vector2(316.747986F, -365.756012F), new Vector2(315.343994F, -365.359985F), new Vector2(314.096008F, -364.567993F)); + builder.AddCubicBezier(new Vector2(312.847992F, -363.776001F), new Vector2(311.858002F, -362.708008F), new Vector2(311.126007F, -361.364014F)); + builder.AddCubicBezier(new Vector2(310.394012F, -360.019989F), new Vector2(310.028015F, -358.507996F), new Vector2(310.028015F, -356.828003F)); + builder.AddCubicBezier(new Vector2(310.028015F, -355.14801F), new Vector2(310.394012F, -353.635986F), new Vector2(311.126007F, -352.291992F)); + builder.AddCubicBezier(new Vector2(311.858002F, -350.947998F), new Vector2(312.847992F, -349.885986F), new Vector2(314.096008F, -349.105988F)); + builder.AddCubicBezier(new Vector2(315.343994F, -348.325989F), new Vector2(316.747986F, -347.936005F), new Vector2(318.308014F, -347.936005F)); + builder.AddCubicBezier(new Vector2(319.627991F, -347.936005F), new Vector2(320.803986F, -348.205994F), new Vector2(321.835999F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0350() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(306.355988F, -348.29599F)); + builder.AddLine(new Vector2(306.355988F, -374F)); + builder.AddLine(new Vector2(303.115997F, -374F)); + builder.AddLine(new Vector2(303.115997F, -348.29599F)); + builder.AddLine(new Vector2(306.355988F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0351() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(295.231995F, -348.925995F)); + builder.AddCubicBezier(new Vector2(296.335999F, -349.537994F), new Vector2(297.200012F, -350.40799F), new Vector2(297.824005F, -351.536011F)); + builder.AddCubicBezier(new Vector2(298.447998F, -352.664001F), new Vector2(298.76001F, -353.971985F), new Vector2(298.76001F, -355.459991F)); + builder.AddLine(new Vector2(298.76001F, -365.395996F)); + builder.AddLine(new Vector2(295.519989F, -365.395996F)); + builder.AddLine(new Vector2(295.519989F, -355.604004F)); + builder.AddCubicBezier(new Vector2(295.519989F, -354.187988F), new Vector2(295.160004F, -353.078003F), new Vector2(294.440002F, -352.273987F)); + builder.AddCubicBezier(new Vector2(293.720001F, -351.470001F), new Vector2(292.723999F, -351.067993F), new Vector2(291.451996F, -351.067993F)); + builder.AddCubicBezier(new Vector2(290.612F, -351.067993F), new Vector2(289.880005F, -351.247986F), new Vector2(289.256012F, -351.608002F)); + builder.AddCubicBezier(new Vector2(288.631989F, -351.967987F), new Vector2(288.15799F, -352.48999F), new Vector2(287.834015F, -353.174011F)); + builder.AddCubicBezier(new Vector2(287.51001F, -353.858002F), new Vector2(287.347992F, -354.667999F), new Vector2(287.347992F, -355.604004F)); + builder.AddLine(new Vector2(287.347992F, -365.395996F)); + builder.AddLine(new Vector2(284.108002F, -365.395996F)); + builder.AddLine(new Vector2(284.108002F, -355.459991F)); + builder.AddCubicBezier(new Vector2(284.108002F, -353.971985F), new Vector2(284.420013F, -352.664001F), new Vector2(285.044006F, -351.536011F)); + builder.AddCubicBezier(new Vector2(285.667999F, -350.40799F), new Vector2(286.537994F, -349.537994F), new Vector2(287.653992F, -348.925995F)); + builder.AddCubicBezier(new Vector2(288.769989F, -348.313995F), new Vector2(290.036011F, -348.007996F), new Vector2(291.451996F, -348.007996F)); + builder.AddCubicBezier(new Vector2(292.868011F, -348.007996F), new Vector2(294.127991F, -348.313995F), new Vector2(295.231995F, -348.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0352() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(269.131989F, -351.824005F)); + builder.AddCubicBezier(new Vector2(268.291992F, -352.328003F), new Vector2(267.631989F, -353.018005F), new Vector2(267.152008F, -353.894012F)); + builder.AddCubicBezier(new Vector2(266.671997F, -354.769989F), new Vector2(266.432007F, -355.772003F), new Vector2(266.432007F, -356.899994F)); + builder.AddCubicBezier(new Vector2(266.432007F, -358.003998F), new Vector2(266.671997F, -358.988007F), new Vector2(267.152008F, -359.85199F)); + builder.AddCubicBezier(new Vector2(267.631989F, -360.716003F), new Vector2(268.291992F, -361.394012F), new Vector2(269.131989F, -361.885986F)); + builder.AddCubicBezier(new Vector2(269.971985F, -362.377991F), new Vector2(270.920013F, -362.623993F), new Vector2(271.976013F, -362.623993F)); + builder.AddCubicBezier(new Vector2(273.079987F, -362.623993F), new Vector2(274.04599F, -362.377991F), new Vector2(274.873993F, -361.885986F)); + builder.AddCubicBezier(new Vector2(275.701996F, -361.394012F), new Vector2(276.362F, -360.716003F), new Vector2(276.854004F, -359.85199F)); + builder.AddCubicBezier(new Vector2(277.346008F, -358.988007F), new Vector2(277.59201F, -358.003998F), new Vector2(277.59201F, -356.899994F)); + builder.AddCubicBezier(new Vector2(277.59201F, -355.772003F), new Vector2(277.35199F, -354.769989F), new Vector2(276.872009F, -353.894012F)); + builder.AddCubicBezier(new Vector2(276.391998F, -353.018005F), new Vector2(275.731995F, -352.328003F), new Vector2(274.891998F, -351.824005F)); + builder.AddCubicBezier(new Vector2(274.052002F, -351.320007F), new Vector2(273.079987F, -351.067993F), new Vector2(271.976013F, -351.067993F)); + builder.AddCubicBezier(new Vector2(270.920013F, -351.067993F), new Vector2(269.971985F, -351.320007F), new Vector2(269.131989F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(276.529999F, -349.123993F)); + builder.AddCubicBezier(new Vector2(277.885986F, -349.915985F), new Vector2(278.959991F, -350.98999F), new Vector2(279.752014F, -352.346008F)); + builder.AddCubicBezier(new Vector2(280.544006F, -353.701996F), new Vector2(280.940002F, -355.220001F), new Vector2(280.940002F, -356.899994F)); + builder.AddCubicBezier(new Vector2(280.940002F, -358.556F), new Vector2(280.544006F, -360.056F), new Vector2(279.752014F, -361.399994F)); + builder.AddCubicBezier(new Vector2(278.959991F, -362.743988F), new Vector2(277.885986F, -363.806F), new Vector2(276.529999F, -364.585999F)); + builder.AddCubicBezier(new Vector2(275.174011F, -365.365997F), new Vector2(273.656006F, -365.756012F), new Vector2(271.976013F, -365.756012F)); + builder.AddCubicBezier(new Vector2(270.320007F, -365.756012F), new Vector2(268.820007F, -365.359985F), new Vector2(267.476013F, -364.567993F)); + builder.AddCubicBezier(new Vector2(266.131989F, -363.776001F), new Vector2(265.063995F, -362.713989F), new Vector2(264.272003F, -361.381989F)); + builder.AddCubicBezier(new Vector2(263.480011F, -360.049988F), new Vector2(263.084015F, -358.556F), new Vector2(263.084015F, -356.899994F)); + builder.AddCubicBezier(new Vector2(263.084015F, -355.220001F), new Vector2(263.480011F, -353.701996F), new Vector2(264.272003F, -352.346008F)); + builder.AddCubicBezier(new Vector2(265.063995F, -350.98999F), new Vector2(266.131989F, -349.915985F), new Vector2(267.476013F, -349.123993F)); + builder.AddCubicBezier(new Vector2(268.820007F, -348.332001F), new Vector2(270.320007F, -347.936005F), new Vector2(271.976013F, -347.936005F)); + builder.AddCubicBezier(new Vector2(273.656006F, -347.936005F), new Vector2(275.174011F, -348.332001F), new Vector2(276.529999F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0353() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(244.472F, -348.29599F)); + builder.AddLine(new Vector2(249.440002F, -361.18399F)); + builder.AddLine(new Vector2(248.251999F, -361.18399F)); + builder.AddLine(new Vector2(253.184006F, -348.29599F)); + builder.AddLine(new Vector2(255.091995F, -348.29599F)); + builder.AddLine(new Vector2(261.824005F, -365.395996F)); + builder.AddLine(new Vector2(258.440002F, -365.395996F)); + builder.AddLine(new Vector2(253.544006F, -352.075989F)); + builder.AddLine(new Vector2(254.623993F, -352.075989F)); + builder.AddLine(new Vector2(249.764008F, -365.395996F)); + builder.AddLine(new Vector2(247.891998F, -365.395996F)); + builder.AddLine(new Vector2(243.031998F, -352.075989F)); + builder.AddLine(new Vector2(244.112F, -352.075989F)); + builder.AddLine(new Vector2(239.216003F, -365.395996F)); + builder.AddLine(new Vector2(235.832001F, -365.395996F)); + builder.AddLine(new Vector2(242.563995F, -348.29599F)); + builder.AddLine(new Vector2(244.472F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0354() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(224.923996F, -348.29599F)); + builder.AddLine(new Vector2(224.923996F, -373.279999F)); + builder.AddLine(new Vector2(221.539993F, -373.279999F)); + builder.AddLine(new Vector2(221.539993F, -348.29599F)); + builder.AddLine(new Vector2(224.923996F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0355() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(205.628006F, -343.328003F)); + builder.AddLine(new Vector2(208.039993F, -347.791992F)); + builder.AddCubicBezier(new Vector2(208.352005F, -348.391998F), new Vector2(208.561996F, -348.877991F), new Vector2(208.669998F, -349.25F)); + builder.AddCubicBezier(new Vector2(208.778F, -349.622009F), new Vector2(208.832001F, -349.940002F), new Vector2(208.832001F, -350.20401F)); + builder.AddCubicBezier(new Vector2(208.832001F, -350.899994F), new Vector2(208.591995F, -351.481995F), new Vector2(208.112F, -351.950012F)); + builder.AddCubicBezier(new Vector2(207.632004F, -352.417999F), new Vector2(207.080002F, -352.652008F), new Vector2(206.455994F, -352.652008F)); + builder.AddCubicBezier(new Vector2(205.759995F, -352.652008F), new Vector2(205.184006F, -352.417999F), new Vector2(204.727997F, -351.950012F)); + builder.AddCubicBezier(new Vector2(204.272003F, -351.481995F), new Vector2(204.044006F, -350.899994F), new Vector2(204.044006F, -350.20401F)); + builder.AddCubicBezier(new Vector2(204.044006F, -349.579987F), new Vector2(204.253998F, -349.058014F), new Vector2(204.673996F, -348.638F)); + builder.AddCubicBezier(new Vector2(205.093994F, -348.217987F), new Vector2(205.556F, -348.007996F), new Vector2(206.059998F, -348.007996F)); + builder.AddCubicBezier(new Vector2(206.300003F, -348.007996F), new Vector2(206.516006F, -348.09201F), new Vector2(206.707993F, -348.26001F)); + builder.AddCubicBezier(new Vector2(206.899994F, -348.428009F), new Vector2(207.056F, -348.644012F), new Vector2(207.175995F, -348.90799F)); + builder.AddLine(new Vector2(206.024002F, -348.619995F)); + builder.AddLine(new Vector2(203.792007F, -344.335999F)); + builder.AddLine(new Vector2(205.628006F, -343.328003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0356() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(201.667999F, -362.444F)); + builder.AddLine(new Vector2(201.667999F, -365.395996F)); + builder.AddLine(new Vector2(190.003998F, -365.395996F)); + builder.AddLine(new Vector2(190.003998F, -362.444F)); + builder.AddLine(new Vector2(201.667999F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(197.455994F, -348.29599F)); + builder.AddLine(new Vector2(197.455994F, -372.559998F)); + builder.AddLine(new Vector2(194.216003F, -372.559998F)); + builder.AddLine(new Vector2(194.216003F, -348.29599F)); + builder.AddLine(new Vector2(197.455994F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0357() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(183.703995F, -348.925995F)); + builder.AddCubicBezier(new Vector2(184.807999F, -349.537994F), new Vector2(185.671997F, -350.40799F), new Vector2(186.296005F, -351.536011F)); + builder.AddCubicBezier(new Vector2(186.919998F, -352.664001F), new Vector2(187.231995F, -353.971985F), new Vector2(187.231995F, -355.459991F)); + builder.AddLine(new Vector2(187.231995F, -365.395996F)); + builder.AddLine(new Vector2(183.992004F, -365.395996F)); + builder.AddLine(new Vector2(183.992004F, -355.604004F)); + builder.AddCubicBezier(new Vector2(183.992004F, -354.187988F), new Vector2(183.632004F, -353.078003F), new Vector2(182.912003F, -352.273987F)); + builder.AddCubicBezier(new Vector2(182.192001F, -351.470001F), new Vector2(181.195999F, -351.067993F), new Vector2(179.923996F, -351.067993F)); + builder.AddCubicBezier(new Vector2(179.084F, -351.067993F), new Vector2(178.352005F, -351.247986F), new Vector2(177.727997F, -351.608002F)); + builder.AddCubicBezier(new Vector2(177.104004F, -351.967987F), new Vector2(176.630005F, -352.48999F), new Vector2(176.306F, -353.174011F)); + builder.AddCubicBezier(new Vector2(175.981995F, -353.858002F), new Vector2(175.820007F, -354.667999F), new Vector2(175.820007F, -355.604004F)); + builder.AddLine(new Vector2(175.820007F, -365.395996F)); + builder.AddLine(new Vector2(172.580002F, -365.395996F)); + builder.AddLine(new Vector2(172.580002F, -355.459991F)); + builder.AddCubicBezier(new Vector2(172.580002F, -353.971985F), new Vector2(172.891998F, -352.664001F), new Vector2(173.516006F, -351.536011F)); + builder.AddCubicBezier(new Vector2(174.139999F, -350.40799F), new Vector2(175.009995F, -349.537994F), new Vector2(176.126007F, -348.925995F)); + builder.AddCubicBezier(new Vector2(177.242004F, -348.313995F), new Vector2(178.507996F, -348.007996F), new Vector2(179.923996F, -348.007996F)); + builder.AddCubicBezier(new Vector2(181.339996F, -348.007996F), new Vector2(182.600006F, -348.313995F), new Vector2(183.703995F, -348.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0358() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(157.694F, -351.752014F)); + builder.AddCubicBezier(new Vector2(156.865997F, -352.256012F), new Vector2(156.229996F, -352.946014F), new Vector2(155.785995F, -353.821991F)); + builder.AddCubicBezier(new Vector2(155.341995F, -354.697998F), new Vector2(155.119995F, -355.700012F), new Vector2(155.119995F, -356.828003F)); + builder.AddCubicBezier(new Vector2(155.119995F, -357.980011F), new Vector2(155.348007F, -358.993988F), new Vector2(155.804001F, -359.869995F)); + builder.AddCubicBezier(new Vector2(156.259995F, -360.746002F), new Vector2(156.895996F, -361.436005F), new Vector2(157.712006F, -361.940002F)); + builder.AddCubicBezier(new Vector2(158.528F, -362.444F), new Vector2(159.464005F, -362.696014F), new Vector2(160.520004F, -362.696014F)); + builder.AddCubicBezier(new Vector2(161.600006F, -362.696014F), new Vector2(162.548004F, -362.444F), new Vector2(163.363998F, -361.940002F)); + builder.AddCubicBezier(new Vector2(164.179993F, -361.436005F), new Vector2(164.822006F, -360.746002F), new Vector2(165.289993F, -359.869995F)); + builder.AddCubicBezier(new Vector2(165.757996F, -358.993988F), new Vector2(165.992004F, -357.992004F), new Vector2(165.992004F, -356.864014F)); + builder.AddCubicBezier(new Vector2(165.992004F, -355.712006F), new Vector2(165.757996F, -354.697998F), new Vector2(165.289993F, -353.821991F)); + builder.AddCubicBezier(new Vector2(164.822006F, -352.946014F), new Vector2(164.179993F, -352.256012F), new Vector2(163.363998F, -351.752014F)); + builder.AddCubicBezier(new Vector2(162.548004F, -351.247986F), new Vector2(161.600006F, -350.996002F), new Vector2(160.520004F, -350.996002F)); + builder.AddCubicBezier(new Vector2(159.464005F, -350.996002F), new Vector2(158.522003F, -351.247986F), new Vector2(157.694F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(155.300003F, -348.29599F)); + builder.AddLine(new Vector2(155.300003F, -352.903992F)); + builder.AddLine(new Vector2(154.688004F, -357.079987F)); + builder.AddLine(new Vector2(155.300003F, -361.220001F)); + builder.AddLine(new Vector2(155.300003F, -374F)); + builder.AddLine(new Vector2(152.059998F, -374F)); + builder.AddLine(new Vector2(152.059998F, -348.29599F)); + builder.AddLine(new Vector2(155.300003F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(165.289993F, -349.105988F)); + builder.AddCubicBezier(new Vector2(166.550003F, -349.885986F), new Vector2(167.539993F, -350.947998F), new Vector2(168.259995F, -352.291992F)); + builder.AddCubicBezier(new Vector2(168.979996F, -353.635986F), new Vector2(169.339996F, -355.14801F), new Vector2(169.339996F, -356.828003F)); + builder.AddCubicBezier(new Vector2(169.339996F, -358.507996F), new Vector2(168.979996F, -360.019989F), new Vector2(168.259995F, -361.364014F)); + builder.AddCubicBezier(new Vector2(167.539993F, -362.708008F), new Vector2(166.550003F, -363.776001F), new Vector2(165.289993F, -364.567993F)); + builder.AddCubicBezier(new Vector2(164.029999F, -365.359985F), new Vector2(162.619995F, -365.756012F), new Vector2(161.059998F, -365.756012F)); + builder.AddCubicBezier(new Vector2(159.787994F, -365.756012F), new Vector2(158.630005F, -365.485992F), new Vector2(157.585999F, -364.946014F)); + builder.AddCubicBezier(new Vector2(156.542007F, -364.406006F), new Vector2(155.701996F, -363.661987F), new Vector2(155.065994F, -362.713989F)); + builder.AddCubicBezier(new Vector2(154.429993F, -361.765991F), new Vector2(154.076004F, -360.667999F), new Vector2(154.003998F, -359.420013F)); + builder.AddLine(new Vector2(154.003998F, -354.272003F)); + builder.AddCubicBezier(new Vector2(154.076004F, -353.048004F), new Vector2(154.423996F, -351.955994F), new Vector2(155.048004F, -350.996002F)); + builder.AddCubicBezier(new Vector2(155.671997F, -350.036011F), new Vector2(156.505997F, -349.286011F), new Vector2(157.550003F, -348.746002F)); + builder.AddCubicBezier(new Vector2(158.593994F, -348.205994F), new Vector2(159.764008F, -347.936005F), new Vector2(161.059998F, -347.936005F)); + builder.AddCubicBezier(new Vector2(162.619995F, -347.936005F), new Vector2(164.029999F, -348.325989F), new Vector2(165.289993F, -349.105988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0359() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(141.440002F, -362.444F)); + builder.AddLine(new Vector2(141.440002F, -365.395996F)); + builder.AddLine(new Vector2(129.776001F, -365.395996F)); + builder.AddLine(new Vector2(129.776001F, -362.444F)); + builder.AddLine(new Vector2(141.440002F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(137.227997F, -348.29599F)); + builder.AddLine(new Vector2(137.227997F, -372.559998F)); + builder.AddLine(new Vector2(133.988007F, -372.559998F)); + builder.AddLine(new Vector2(133.988007F, -348.29599F)); + builder.AddLine(new Vector2(137.227997F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0360() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(115.087997F, -348.29599F)); + builder.AddLine(new Vector2(115.087997F, -365.395996F)); + builder.AddLine(new Vector2(111.848F, -365.395996F)); + builder.AddLine(new Vector2(111.848F, -348.29599F)); + builder.AddLine(new Vector2(115.087997F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(127.183998F, -348.29599F)); + builder.AddLine(new Vector2(127.183998F, -358.915985F)); + builder.AddCubicBezier(new Vector2(127.183998F, -360.09201F), new Vector2(126.896004F, -361.201996F), new Vector2(126.32F, -362.246002F)); + builder.AddCubicBezier(new Vector2(125.744003F, -363.290009F), new Vector2(124.958F, -364.135986F), new Vector2(123.961998F, -364.783997F)); + builder.AddCubicBezier(new Vector2(122.966003F, -365.432007F), new Vector2(121.82F, -365.756012F), new Vector2(120.524002F, -365.756012F)); + builder.AddCubicBezier(new Vector2(119.227997F, -365.756012F), new Vector2(118.064003F, -365.462006F), new Vector2(117.031998F, -364.873993F)); + builder.AddCubicBezier(new Vector2(116F, -364.286011F), new Vector2(115.195999F, -363.488007F), new Vector2(114.620003F, -362.480011F)); + builder.AddCubicBezier(new Vector2(114.043999F, -361.471985F), new Vector2(113.755997F, -360.320007F), new Vector2(113.755997F, -359.023987F)); + builder.AddLine(new Vector2(115.087997F, -358.268005F)); + builder.AddCubicBezier(new Vector2(115.087997F, -359.131989F), new Vector2(115.279999F, -359.899994F), new Vector2(115.664001F, -360.571991F)); + builder.AddCubicBezier(new Vector2(116.047997F, -361.243988F), new Vector2(116.575996F, -361.772003F), new Vector2(117.248001F, -362.156006F)); + builder.AddCubicBezier(new Vector2(117.919998F, -362.540009F), new Vector2(118.688004F, -362.731995F), new Vector2(119.552002F, -362.731995F)); + builder.AddCubicBezier(new Vector2(120.848F, -362.731995F), new Vector2(121.898003F, -362.312012F), new Vector2(122.702003F, -361.471985F)); + builder.AddCubicBezier(new Vector2(123.505997F, -360.631989F), new Vector2(123.907997F, -359.563995F), new Vector2(123.907997F, -358.268005F)); + builder.AddLine(new Vector2(123.907997F, -348.29599F)); + builder.AddLine(new Vector2(127.183998F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0361() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(104.251999F, -348.691986F)); + builder.AddCubicBezier(new Vector2(105.428001F, -349.196014F), new Vector2(106.435997F, -349.928009F), new Vector2(107.276001F, -350.888F)); + builder.AddLine(new Vector2(105.188004F, -353.011993F)); + builder.AddCubicBezier(new Vector2(104.612F, -352.339996F), new Vector2(103.921997F, -351.835999F), new Vector2(103.117996F, -351.5F)); + builder.AddCubicBezier(new Vector2(102.314003F, -351.164001F), new Vector2(101.431999F, -350.996002F), new Vector2(100.472F, -350.996002F)); + builder.AddCubicBezier(new Vector2(99.3199997F, -350.996002F), new Vector2(98.3000031F, -351.242004F), new Vector2(97.4120026F, -351.734009F)); + builder.AddCubicBezier(new Vector2(96.5240021F, -352.226013F), new Vector2(95.8399963F, -352.921997F), new Vector2(95.3600006F, -353.821991F)); + builder.AddCubicBezier(new Vector2(94.8799973F, -354.721985F), new Vector2(94.6399994F, -355.772003F), new Vector2(94.6399994F, -356.971985F)); + builder.AddCubicBezier(new Vector2(94.6399994F, -358.14801F), new Vector2(94.8679962F, -359.167999F), new Vector2(95.3239975F, -360.032013F)); + builder.AddCubicBezier(new Vector2(95.7799988F, -360.895996F), new Vector2(96.4280014F, -361.567993F), new Vector2(97.2679977F, -362.048004F)); + builder.AddCubicBezier(new Vector2(98.1080017F, -362.528015F), new Vector2(99.0800018F, -362.768005F), new Vector2(100.183998F, -362.768005F)); + builder.AddCubicBezier(new Vector2(101.239998F, -362.768005F), new Vector2(102.139999F, -362.54599F), new Vector2(102.884003F, -362.10199F)); + builder.AddCubicBezier(new Vector2(103.627998F, -361.65799F), new Vector2(104.204002F, -361.033997F), new Vector2(104.612F, -360.230011F)); + builder.AddCubicBezier(new Vector2(105.019997F, -359.425995F), new Vector2(105.223999F, -358.447998F), new Vector2(105.223999F, -357.29599F)); + builder.AddLine(new Vector2(106.412003F, -358.339996F)); + builder.AddLine(new Vector2(93.7040024F, -358.339996F)); + builder.AddLine(new Vector2(93.7040024F, -355.640015F)); + builder.AddLine(new Vector2(108.139999F, -355.640015F)); + builder.AddCubicBezier(new Vector2(108.211998F, -355.976013F), new Vector2(108.260002F, -356.282013F), new Vector2(108.283997F, -356.558014F)); + builder.AddCubicBezier(new Vector2(108.307999F, -356.834015F), new Vector2(108.32F, -357.09201F), new Vector2(108.32F, -357.332001F)); + builder.AddCubicBezier(new Vector2(108.32F, -358.963989F), new Vector2(107.977997F, -360.415985F), new Vector2(107.293999F, -361.687988F)); + builder.AddCubicBezier(new Vector2(106.610001F, -362.959991F), new Vector2(105.655998F, -363.955994F), new Vector2(104.431999F, -364.675995F)); + builder.AddCubicBezier(new Vector2(103.208F, -365.395996F), new Vector2(101.816002F, -365.756012F), new Vector2(100.255997F, -365.756012F)); + builder.AddCubicBezier(new Vector2(98.5999985F, -365.756012F), new Vector2(97.1060028F, -365.365997F), new Vector2(95.7740021F, -364.585999F)); + builder.AddCubicBezier(new Vector2(94.4420013F, -363.806F), new Vector2(93.3860016F, -362.743988F), new Vector2(92.6060028F, -361.399994F)); + builder.AddCubicBezier(new Vector2(91.8259964F, -360.056F), new Vector2(91.435997F, -358.544006F), new Vector2(91.435997F, -356.864014F)); + builder.AddCubicBezier(new Vector2(91.435997F, -355.160004F), new Vector2(91.8320007F, -353.635986F), new Vector2(92.6240005F, -352.291992F)); + builder.AddCubicBezier(new Vector2(93.4160004F, -350.947998F), new Vector2(94.4899979F, -349.885986F), new Vector2(95.8460007F, -349.105988F)); + builder.AddCubicBezier(new Vector2(97.2020035F, -348.325989F), new Vector2(98.7440033F, -347.936005F), new Vector2(100.472F, -347.936005F)); + builder.AddCubicBezier(new Vector2(101.816002F, -347.936005F), new Vector2(103.075996F, -348.187988F), new Vector2(104.251999F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0362() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(88.1600037F, -348.29599F)); + builder.AddLine(new Vector2(88.1600037F, -359.276001F)); + builder.AddCubicBezier(new Vector2(88.1600037F, -360.619995F), new Vector2(87.8659973F, -361.772003F), new Vector2(87.2779999F, -362.731995F)); + builder.AddCubicBezier(new Vector2(86.6900024F, -363.691986F), new Vector2(85.9039993F, -364.436005F), new Vector2(84.9199982F, -364.963989F)); + builder.AddCubicBezier(new Vector2(83.935997F, -365.492004F), new Vector2(82.8199997F, -365.756012F), new Vector2(81.5719986F, -365.756012F)); + builder.AddCubicBezier(new Vector2(80.3720016F, -365.756012F), new Vector2(79.2679977F, -365.485992F), new Vector2(78.2600021F, -364.946014F)); + builder.AddCubicBezier(new Vector2(77.2519989F, -364.406006F), new Vector2(76.4300003F, -363.661987F), new Vector2(75.7939987F, -362.713989F)); + builder.AddCubicBezier(new Vector2(75.1579971F, -361.765991F), new Vector2(74.8040009F, -360.631989F), new Vector2(74.7320023F, -359.312012F)); + builder.AddLine(new Vector2(76.5680008F, -358.627991F)); + builder.AddCubicBezier(new Vector2(76.5680008F, -359.492004F), new Vector2(76.7600021F, -360.223999F), new Vector2(77.1439972F, -360.824005F)); + builder.AddCubicBezier(new Vector2(77.5279999F, -361.424011F), new Vector2(78.038002F, -361.891998F), new Vector2(78.6740036F, -362.227997F)); + builder.AddCubicBezier(new Vector2(79.3099976F, -362.563995F), new Vector2(80.0240021F, -362.731995F), new Vector2(80.8160019F, -362.731995F)); + builder.AddCubicBezier(new Vector2(81.9680023F, -362.731995F), new Vector2(82.9339981F, -362.365997F), new Vector2(83.7139969F, -361.634003F)); + builder.AddCubicBezier(new Vector2(84.4940033F, -360.902008F), new Vector2(84.8840027F, -359.899994F), new Vector2(84.8840027F, -358.627991F)); + builder.AddLine(new Vector2(84.8840027F, -348.29599F)); + builder.AddLine(new Vector2(88.1600037F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(76.5680008F, -348.29599F)); + builder.AddLine(new Vector2(76.5680008F, -359.312012F)); + builder.AddCubicBezier(new Vector2(76.5680008F, -360.631989F), new Vector2(76.2860031F, -361.772003F), new Vector2(75.7220001F, -362.731995F)); + builder.AddCubicBezier(new Vector2(75.1579971F, -363.691986F), new Vector2(74.3899994F, -364.436005F), new Vector2(73.4179993F, -364.963989F)); + builder.AddCubicBezier(new Vector2(72.4459991F, -365.492004F), new Vector2(71.3600006F, -365.756012F), new Vector2(70.1600037F, -365.756012F)); + builder.AddCubicBezier(new Vector2(68.935997F, -365.756012F), new Vector2(67.8320007F, -365.485992F), new Vector2(66.8479996F, -364.946014F)); + builder.AddCubicBezier(new Vector2(65.8639984F, -364.406006F), new Vector2(65.0899963F, -363.656006F), new Vector2(64.526001F, -362.696014F)); + builder.AddCubicBezier(new Vector2(63.9620018F, -361.735992F), new Vector2(63.6800003F, -360.608002F), new Vector2(63.6800003F, -359.312012F)); + builder.AddLine(new Vector2(65.012001F, -358.627991F)); + builder.AddCubicBezier(new Vector2(65.012001F, -359.492004F), new Vector2(65.2040024F, -360.223999F), new Vector2(65.5879974F, -360.824005F)); + builder.AddCubicBezier(new Vector2(65.9720001F, -361.424011F), new Vector2(66.4759979F, -361.891998F), new Vector2(67.0999985F, -362.227997F)); + builder.AddCubicBezier(new Vector2(67.723999F, -362.563995F), new Vector2(68.4319992F, -362.731995F), new Vector2(69.223999F, -362.731995F)); + builder.AddCubicBezier(new Vector2(70.4000015F, -362.731995F), new Vector2(71.3779984F, -362.365997F), new Vector2(72.1579971F, -361.634003F)); + builder.AddCubicBezier(new Vector2(72.9380035F, -360.902008F), new Vector2(73.3280029F, -359.899994F), new Vector2(73.3280029F, -358.627991F)); + builder.AddLine(new Vector2(73.3280029F, -348.29599F)); + builder.AddLine(new Vector2(76.5680008F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(65.012001F, -348.29599F)); + builder.AddLine(new Vector2(65.012001F, -365.395996F)); + builder.AddLine(new Vector2(61.7719994F, -365.395996F)); + builder.AddLine(new Vector2(61.7719994F, -348.29599F)); + builder.AddLine(new Vector2(65.012001F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0363() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(54.1759987F, -348.691986F)); + builder.AddCubicBezier(new Vector2(55.3520012F, -349.196014F), new Vector2(56.3600006F, -349.928009F), new Vector2(57.2000008F, -350.888F)); + builder.AddLine(new Vector2(55.1119995F, -353.011993F)); + builder.AddCubicBezier(new Vector2(54.5359993F, -352.339996F), new Vector2(53.8460007F, -351.835999F), new Vector2(53.0419998F, -351.5F)); + builder.AddCubicBezier(new Vector2(52.237999F, -351.164001F), new Vector2(51.355999F, -350.996002F), new Vector2(50.3959999F, -350.996002F)); + builder.AddCubicBezier(new Vector2(49.2439995F, -350.996002F), new Vector2(48.223999F, -351.242004F), new Vector2(47.3359985F, -351.734009F)); + builder.AddCubicBezier(new Vector2(46.4480019F, -352.226013F), new Vector2(45.7639999F, -352.921997F), new Vector2(45.2840004F, -353.821991F)); + builder.AddCubicBezier(new Vector2(44.8040009F, -354.721985F), new Vector2(44.5639992F, -355.772003F), new Vector2(44.5639992F, -356.971985F)); + builder.AddCubicBezier(new Vector2(44.5639992F, -358.14801F), new Vector2(44.7919998F, -359.167999F), new Vector2(45.2480011F, -360.032013F)); + builder.AddCubicBezier(new Vector2(45.7039986F, -360.895996F), new Vector2(46.3520012F, -361.567993F), new Vector2(47.1920013F, -362.048004F)); + builder.AddCubicBezier(new Vector2(48.0320015F, -362.528015F), new Vector2(49.0040016F, -362.768005F), new Vector2(50.1080017F, -362.768005F)); + builder.AddCubicBezier(new Vector2(51.1640015F, -362.768005F), new Vector2(52.0639992F, -362.54599F), new Vector2(52.8079987F, -362.10199F)); + builder.AddCubicBezier(new Vector2(53.5519981F, -361.65799F), new Vector2(54.1279984F, -361.033997F), new Vector2(54.5359993F, -360.230011F)); + builder.AddCubicBezier(new Vector2(54.9440002F, -359.425995F), new Vector2(55.1479988F, -358.447998F), new Vector2(55.1479988F, -357.29599F)); + builder.AddLine(new Vector2(56.3359985F, -358.339996F)); + builder.AddLine(new Vector2(43.6279984F, -358.339996F)); + builder.AddLine(new Vector2(43.6279984F, -355.640015F)); + builder.AddLine(new Vector2(58.0639992F, -355.640015F)); + builder.AddCubicBezier(new Vector2(58.1360016F, -355.976013F), new Vector2(58.1839981F, -356.282013F), new Vector2(58.2080002F, -356.558014F)); + builder.AddCubicBezier(new Vector2(58.2319984F, -356.834015F), new Vector2(58.2439995F, -357.09201F), new Vector2(58.2439995F, -357.332001F)); + builder.AddCubicBezier(new Vector2(58.2439995F, -358.963989F), new Vector2(57.9020004F, -360.415985F), new Vector2(57.2179985F, -361.687988F)); + builder.AddCubicBezier(new Vector2(56.5340004F, -362.959991F), new Vector2(55.5800018F, -363.955994F), new Vector2(54.355999F, -364.675995F)); + builder.AddCubicBezier(new Vector2(53.132F, -365.395996F), new Vector2(51.7400017F, -365.756012F), new Vector2(50.1800003F, -365.756012F)); + builder.AddCubicBezier(new Vector2(48.5239983F, -365.756012F), new Vector2(47.0299988F, -365.365997F), new Vector2(45.6980019F, -364.585999F)); + builder.AddCubicBezier(new Vector2(44.3660011F, -363.806F), new Vector2(43.3100014F, -362.743988F), new Vector2(42.5299988F, -361.399994F)); + builder.AddCubicBezier(new Vector2(41.75F, -360.056F), new Vector2(41.3600006F, -358.544006F), new Vector2(41.3600006F, -356.864014F)); + builder.AddCubicBezier(new Vector2(41.3600006F, -355.160004F), new Vector2(41.7560005F, -353.635986F), new Vector2(42.5480003F, -352.291992F)); + builder.AddCubicBezier(new Vector2(43.3400002F, -350.947998F), new Vector2(44.4140015F, -349.885986F), new Vector2(45.7700005F, -349.105988F)); + builder.AddCubicBezier(new Vector2(47.1259995F, -348.325989F), new Vector2(48.6679993F, -347.936005F), new Vector2(50.3959999F, -347.936005F)); + builder.AddCubicBezier(new Vector2(51.7400017F, -347.936005F), new Vector2(53F, -348.187988F), new Vector2(54.1759987F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0364() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(36.6980019F, -348.691986F)); + builder.AddCubicBezier(new Vector2(37.8380013F, -349.196014F), new Vector2(38.8040009F, -349.903992F), new Vector2(39.5960007F, -350.81601F)); + builder.AddLine(new Vector2(37.4720001F, -352.976013F)); + builder.AddCubicBezier(new Vector2(36.9199982F, -352.35199F), new Vector2(36.2659988F, -351.877991F), new Vector2(35.5099983F, -351.553986F)); + builder.AddCubicBezier(new Vector2(34.7540016F, -351.230011F), new Vector2(33.9199982F, -351.067993F), new Vector2(33.0079994F, -351.067993F)); + builder.AddCubicBezier(new Vector2(31.9279995F, -351.067993F), new Vector2(30.9680004F, -351.320007F), new Vector2(30.1280003F, -351.824005F)); + builder.AddCubicBezier(new Vector2(29.2880001F, -352.328003F), new Vector2(28.6280003F, -353.011993F), new Vector2(28.1480007F, -353.876007F)); + builder.AddCubicBezier(new Vector2(27.6679993F, -354.73999F), new Vector2(27.4279995F, -355.735992F), new Vector2(27.4279995F, -356.864014F)); + builder.AddCubicBezier(new Vector2(27.4279995F, -357.992004F), new Vector2(27.6679993F, -358.988007F), new Vector2(28.1480007F, -359.85199F)); + builder.AddCubicBezier(new Vector2(28.6280003F, -360.716003F), new Vector2(29.2880001F, -361.394012F), new Vector2(30.1280003F, -361.885986F)); + builder.AddCubicBezier(new Vector2(30.9680004F, -362.377991F), new Vector2(31.9279995F, -362.623993F), new Vector2(33.0079994F, -362.623993F)); + builder.AddCubicBezier(new Vector2(33.8959999F, -362.623993F), new Vector2(34.723999F, -362.462006F), new Vector2(35.4920006F, -362.138F)); + builder.AddCubicBezier(new Vector2(36.2599983F, -361.813995F), new Vector2(36.9080009F, -361.339996F), new Vector2(37.4360008F, -360.716003F)); + builder.AddLine(new Vector2(39.5960007F, -362.876007F)); + builder.AddCubicBezier(new Vector2(38.7799988F, -363.812012F), new Vector2(37.8079987F, -364.526001F), new Vector2(36.6800003F, -365.018005F)); + builder.AddCubicBezier(new Vector2(35.5519981F, -365.51001F), new Vector2(34.3279991F, -365.756012F), new Vector2(33.0079994F, -365.756012F)); + builder.AddCubicBezier(new Vector2(31.3279991F, -365.756012F), new Vector2(29.8099995F, -365.365997F), new Vector2(28.4540005F, -364.585999F)); + builder.AddCubicBezier(new Vector2(27.0979996F, -363.806F), new Vector2(26.0300007F, -362.743988F), new Vector2(25.25F, -361.399994F)); + builder.AddCubicBezier(new Vector2(24.4699993F, -360.056F), new Vector2(24.0799999F, -358.544006F), new Vector2(24.0799999F, -356.864014F)); + builder.AddCubicBezier(new Vector2(24.0799999F, -355.208008F), new Vector2(24.4699993F, -353.701996F), new Vector2(25.25F, -352.346008F)); + builder.AddCubicBezier(new Vector2(26.0300007F, -350.98999F), new Vector2(27.0979996F, -349.915985F), new Vector2(28.4540005F, -349.123993F)); + builder.AddCubicBezier(new Vector2(29.8099995F, -348.332001F), new Vector2(31.3279991F, -347.936005F), new Vector2(33.0079994F, -347.936005F)); + builder.AddCubicBezier(new Vector2(34.3279991F, -347.936005F), new Vector2(35.5579987F, -348.187988F), new Vector2(36.6980019F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0365() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(8.70800018F, -348.29599F)); + builder.AddLine(new Vector2(8.70800018F, -365.395996F)); + builder.AddLine(new Vector2(5.46799994F, -365.395996F)); + builder.AddLine(new Vector2(5.46799994F, -348.29599F)); + builder.AddLine(new Vector2(8.70800018F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(20.8040009F, -348.29599F)); + builder.AddLine(new Vector2(20.8040009F, -358.915985F)); + builder.AddCubicBezier(new Vector2(20.8040009F, -360.09201F), new Vector2(20.5160007F, -361.201996F), new Vector2(19.9400005F, -362.246002F)); + builder.AddCubicBezier(new Vector2(19.3640003F, -363.290009F), new Vector2(18.5779991F, -364.135986F), new Vector2(17.5820007F, -364.783997F)); + builder.AddCubicBezier(new Vector2(16.5860004F, -365.432007F), new Vector2(15.4399996F, -365.756012F), new Vector2(14.1440001F, -365.756012F)); + builder.AddCubicBezier(new Vector2(12.8479996F, -365.756012F), new Vector2(11.684F, -365.462006F), new Vector2(10.6520004F, -364.873993F)); + builder.AddCubicBezier(new Vector2(9.61999989F, -364.286011F), new Vector2(8.81599998F, -363.488007F), new Vector2(8.23999977F, -362.480011F)); + builder.AddCubicBezier(new Vector2(7.66400003F, -361.471985F), new Vector2(7.37599993F, -360.320007F), new Vector2(7.37599993F, -359.023987F)); + builder.AddLine(new Vector2(8.70800018F, -358.268005F)); + builder.AddCubicBezier(new Vector2(8.70800018F, -359.131989F), new Vector2(8.89999962F, -359.899994F), new Vector2(9.2840004F, -360.571991F)); + builder.AddCubicBezier(new Vector2(9.66800022F, -361.243988F), new Vector2(10.1960001F, -361.772003F), new Vector2(10.868F, -362.156006F)); + builder.AddCubicBezier(new Vector2(11.54F, -362.540009F), new Vector2(12.3079996F, -362.731995F), new Vector2(13.1719999F, -362.731995F)); + builder.AddCubicBezier(new Vector2(14.4680004F, -362.731995F), new Vector2(15.5179996F, -362.312012F), new Vector2(16.3220005F, -361.471985F)); + builder.AddCubicBezier(new Vector2(17.1259995F, -360.631989F), new Vector2(17.5279999F, -359.563995F), new Vector2(17.5279999F, -358.268005F)); + builder.AddLine(new Vector2(17.5279999F, -348.29599F)); + builder.AddLine(new Vector2(20.8040009F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0366() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-2.41599989F, -348.925995F)); + builder.AddCubicBezier(new Vector2(-1.31200004F, -349.537994F), new Vector2(-0.448000014F, -350.40799F), new Vector2(0.175999999F, -351.536011F)); + builder.AddCubicBezier(new Vector2(0.800000012F, -352.664001F), new Vector2(1.11199999F, -353.971985F), new Vector2(1.11199999F, -355.459991F)); + builder.AddLine(new Vector2(1.11199999F, -365.395996F)); + builder.AddLine(new Vector2(-2.12800002F, -365.395996F)); + builder.AddLine(new Vector2(-2.12800002F, -355.604004F)); + builder.AddCubicBezier(new Vector2(-2.12800002F, -354.187988F), new Vector2(-2.48799992F, -353.078003F), new Vector2(-3.20799994F, -352.273987F)); + builder.AddCubicBezier(new Vector2(-3.92799997F, -351.470001F), new Vector2(-4.92399979F, -351.067993F), new Vector2(-6.1960001F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-7.03599977F, -351.067993F), new Vector2(-7.76800013F, -351.247986F), new Vector2(-8.3920002F, -351.608002F)); + builder.AddCubicBezier(new Vector2(-9.01599979F, -351.967987F), new Vector2(-9.48999977F, -352.48999F), new Vector2(-9.81400013F, -353.174011F)); + builder.AddCubicBezier(new Vector2(-10.1379995F, -353.858002F), new Vector2(-10.3000002F, -354.667999F), new Vector2(-10.3000002F, -355.604004F)); + builder.AddLine(new Vector2(-10.3000002F, -365.395996F)); + builder.AddLine(new Vector2(-13.54F, -365.395996F)); + builder.AddLine(new Vector2(-13.54F, -355.459991F)); + builder.AddCubicBezier(new Vector2(-13.54F, -353.971985F), new Vector2(-13.2279997F, -352.664001F), new Vector2(-12.6040001F, -351.536011F)); + builder.AddCubicBezier(new Vector2(-11.9799995F, -350.40799F), new Vector2(-11.1099997F, -349.537994F), new Vector2(-9.99400043F, -348.925995F)); + builder.AddCubicBezier(new Vector2(-8.87800026F, -348.313995F), new Vector2(-7.61199999F, -348.007996F), new Vector2(-6.1960001F, -348.007996F)); + builder.AddCubicBezier(new Vector2(-4.78000021F, -348.007996F), new Vector2(-3.51999998F, -348.313995F), new Vector2(-2.41599989F, -348.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0367() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-28.5160007F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-29.3560009F, -352.328003F), new Vector2(-30.0160007F, -353.018005F), new Vector2(-30.4960003F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-30.9759998F, -354.769989F), new Vector2(-31.2159996F, -355.772003F), new Vector2(-31.2159996F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-31.2159996F, -358.003998F), new Vector2(-30.9759998F, -358.988007F), new Vector2(-30.4960003F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-30.0160007F, -360.716003F), new Vector2(-29.3560009F, -361.394012F), new Vector2(-28.5160007F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-27.6760006F, -362.377991F), new Vector2(-26.7280006F, -362.623993F), new Vector2(-25.6720009F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-24.5680008F, -362.623993F), new Vector2(-23.6019993F, -362.377991F), new Vector2(-22.7740002F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-21.9459991F, -361.394012F), new Vector2(-21.2859993F, -360.716003F), new Vector2(-20.7940006F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-20.302F, -358.988007F), new Vector2(-20.0559998F, -358.003998F), new Vector2(-20.0559998F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-20.0559998F, -355.772003F), new Vector2(-20.2959995F, -354.769989F), new Vector2(-20.7759991F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-21.2560005F, -353.018005F), new Vector2(-21.9160004F, -352.328003F), new Vector2(-22.7560005F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-23.5960007F, -351.320007F), new Vector2(-24.5680008F, -351.067993F), new Vector2(-25.6720009F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-26.7280006F, -351.067993F), new Vector2(-27.6760006F, -351.320007F), new Vector2(-28.5160007F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-21.118F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-19.7619991F, -349.915985F), new Vector2(-18.6879997F, -350.98999F), new Vector2(-17.8959999F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-17.1040001F, -353.701996F), new Vector2(-16.7080002F, -355.220001F), new Vector2(-16.7080002F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-16.7080002F, -358.556F), new Vector2(-17.1040001F, -360.056F), new Vector2(-17.8959999F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-18.6879997F, -362.743988F), new Vector2(-19.7619991F, -363.806F), new Vector2(-21.118F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-22.4740009F, -365.365997F), new Vector2(-23.9920006F, -365.756012F), new Vector2(-25.6720009F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-27.3279991F, -365.756012F), new Vector2(-28.8279991F, -365.359985F), new Vector2(-30.1720009F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-31.5160007F, -363.776001F), new Vector2(-32.5839996F, -362.713989F), new Vector2(-33.3759995F, -361.381989F)); + builder.AddCubicBezier(new Vector2(-34.1679993F, -360.049988F), new Vector2(-34.5639992F, -358.556F), new Vector2(-34.5639992F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-34.5639992F, -355.220001F), new Vector2(-34.1679993F, -353.701996F), new Vector2(-33.3759995F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-32.5839996F, -350.98999F), new Vector2(-31.5160007F, -349.915985F), new Vector2(-30.1720009F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-28.8279991F, -348.332001F), new Vector2(-27.3279991F, -347.936005F), new Vector2(-25.6720009F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-23.9920006F, -347.936005F), new Vector2(-22.4740009F, -348.332001F), new Vector2(-21.118F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0368() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-49.9360008F, -348.29599F)); + builder.AddLine(new Vector2(-49.9360008F, -365.395996F)); + builder.AddLine(new Vector2(-53.1759987F, -365.395996F)); + builder.AddLine(new Vector2(-53.1759987F, -348.29599F)); + builder.AddLine(new Vector2(-49.9360008F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-37.8400002F, -348.29599F)); + builder.AddLine(new Vector2(-37.8400002F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-37.8400002F, -360.09201F), new Vector2(-38.1279984F, -361.201996F), new Vector2(-38.7039986F, -362.246002F)); + builder.AddCubicBezier(new Vector2(-39.2799988F, -363.290009F), new Vector2(-40.0660019F, -364.135986F), new Vector2(-41.0620003F, -364.783997F)); + builder.AddCubicBezier(new Vector2(-42.0579987F, -365.432007F), new Vector2(-43.2039986F, -365.756012F), new Vector2(-44.5F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-45.7960014F, -365.756012F), new Vector2(-46.9599991F, -365.462006F), new Vector2(-47.9920006F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-49.0239983F, -364.286011F), new Vector2(-49.8279991F, -363.488007F), new Vector2(-50.4039993F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-50.9799995F, -361.471985F), new Vector2(-51.2680016F, -360.320007F), new Vector2(-51.2680016F, -359.023987F)); + builder.AddLine(new Vector2(-49.9360008F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-49.9360008F, -359.131989F), new Vector2(-49.7439995F, -359.899994F), new Vector2(-49.3600006F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-48.9760017F, -361.243988F), new Vector2(-48.4480019F, -361.772003F), new Vector2(-47.776001F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-47.1040001F, -362.540009F), new Vector2(-46.3359985F, -362.731995F), new Vector2(-45.4720001F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-44.1759987F, -362.731995F), new Vector2(-43.1259995F, -362.312012F), new Vector2(-42.3219986F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-41.5180016F, -360.631989F), new Vector2(-41.1160011F, -359.563995F), new Vector2(-41.1160011F, -358.268005F)); + builder.AddLine(new Vector2(-41.1160011F, -348.29599F)); + builder.AddLine(new Vector2(-37.8400002F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0369() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-69.6640015F, -348.29599F)); + builder.AddLine(new Vector2(-69.6640015F, -365.395996F)); + builder.AddLine(new Vector2(-72.9039993F, -365.395996F)); + builder.AddLine(new Vector2(-72.9039993F, -348.29599F)); + builder.AddLine(new Vector2(-69.6640015F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-57.5680008F, -348.29599F)); + builder.AddLine(new Vector2(-57.5680008F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-57.5680008F, -360.09201F), new Vector2(-57.855999F, -361.201996F), new Vector2(-58.4319992F, -362.246002F)); + builder.AddCubicBezier(new Vector2(-59.0079994F, -363.290009F), new Vector2(-59.7939987F, -364.135986F), new Vector2(-60.7900009F, -364.783997F)); + builder.AddCubicBezier(new Vector2(-61.7859993F, -365.432007F), new Vector2(-62.9319992F, -365.756012F), new Vector2(-64.2279968F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-65.5240021F, -365.756012F), new Vector2(-66.6880035F, -365.462006F), new Vector2(-67.7200012F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-68.7519989F, -364.286011F), new Vector2(-69.5559998F, -363.488007F), new Vector2(-70.1320038F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-70.7080002F, -361.471985F), new Vector2(-70.9960022F, -360.320007F), new Vector2(-70.9960022F, -359.023987F)); + builder.AddLine(new Vector2(-69.6640015F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-69.6640015F, -359.131989F), new Vector2(-69.4720001F, -359.899994F), new Vector2(-69.0879974F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-68.7040024F, -361.243988F), new Vector2(-68.1760025F, -361.772003F), new Vector2(-67.5039978F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-66.8320007F, -362.540009F), new Vector2(-66.064003F, -362.731995F), new Vector2(-65.1999969F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-63.9039993F, -362.731995F), new Vector2(-62.8540001F, -362.312012F), new Vector2(-62.0499992F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-61.2459984F, -360.631989F), new Vector2(-60.8440018F, -359.563995F), new Vector2(-60.8440018F, -358.268005F)); + builder.AddLine(new Vector2(-60.8440018F, -348.29599F)); + builder.AddLine(new Vector2(-57.5680008F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0370() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-77.6200027F, -348.29599F)); + builder.AddLine(new Vector2(-77.6200027F, -365.395996F)); + builder.AddLine(new Vector2(-80.8960037F, -365.395996F)); + builder.AddLine(new Vector2(-80.8960037F, -361.220001F)); + builder.AddLine(new Vector2(-80.2839966F, -357.079987F)); + builder.AddLine(new Vector2(-80.8960037F, -352.903992F)); + builder.AddLine(new Vector2(-80.8960037F, -348.29599F)); + builder.AddLine(new Vector2(-77.6200027F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-88.9240036F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-89.7639999F, -352.256012F), new Vector2(-90.4179993F, -352.946014F), new Vector2(-90.8860016F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-91.3539963F, -354.697998F), new Vector2(-91.5879974F, -355.712006F), new Vector2(-91.5879974F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-91.5879974F, -357.992004F), new Vector2(-91.3539963F, -358.993988F), new Vector2(-90.8860016F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-90.4179993F, -360.746002F), new Vector2(-89.7699966F, -361.436005F), new Vector2(-88.9420013F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-88.1139984F, -362.444F), new Vector2(-87.1600037F, -362.696014F), new Vector2(-86.0800018F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-85F, -362.696014F), new Vector2(-84.0579987F, -362.450012F), new Vector2(-83.2539978F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-82.4499969F, -361.466003F), new Vector2(-81.8199997F, -360.776001F), new Vector2(-81.3639984F, -359.888F)); + builder.AddCubicBezier(new Vector2(-80.9079971F, -359F), new Vector2(-80.6800003F, -357.980011F), new Vector2(-80.6800003F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-80.6800003F, -355.123993F), new Vector2(-81.1719971F, -353.726013F), new Vector2(-82.1559982F, -352.634003F)); + builder.AddCubicBezier(new Vector2(-83.1399994F, -351.541992F), new Vector2(-84.435997F, -350.996002F), new Vector2(-86.0439987F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-87.1240005F, -350.996002F), new Vector2(-88.0839996F, -351.247986F), new Vector2(-88.9240036F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-83.0920029F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-82.0599976F, -349.286011F), new Vector2(-81.237999F, -350.036011F), new Vector2(-80.6259995F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-80.0139999F, -351.955994F), new Vector2(-79.6719971F, -353.048004F), new Vector2(-79.5999985F, -354.272003F)); + builder.AddLine(new Vector2(-79.5999985F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-79.6719971F, -360.667999F), new Vector2(-80.0199966F, -361.765991F), new Vector2(-80.6439972F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-81.2679977F, -363.661987F), new Vector2(-82.0899963F, -364.406006F), new Vector2(-83.1100006F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-84.1299973F, -365.485992F), new Vector2(-85.288002F, -365.756012F), new Vector2(-86.5839996F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-88.1679993F, -365.756012F), new Vector2(-89.5899963F, -365.359985F), new Vector2(-90.8499985F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-92.1100006F, -363.776001F), new Vector2(-93.1060028F, -362.708008F), new Vector2(-93.8379974F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-94.5699997F, -360.019989F), new Vector2(-94.935997F, -358.507996F), new Vector2(-94.935997F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-94.935997F, -355.14801F), new Vector2(-94.5699997F, -353.635986F), new Vector2(-93.8379974F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-93.1060028F, -350.947998F), new Vector2(-92.1100006F, -349.885986F), new Vector2(-90.8499985F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-89.5899963F, -348.325989F), new Vector2(-88.1679993F, -347.936005F), new Vector2(-86.5839996F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-85.288002F, -347.936005F), new Vector2(-84.1240005F, -348.205994F), new Vector2(-83.0920029F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0371() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-117.795998F, -348.29599F)); + builder.AddLine(new Vector2(-117.795998F, -365.395996F)); + builder.AddLine(new Vector2(-121.036003F, -365.395996F)); + builder.AddLine(new Vector2(-121.036003F, -348.29599F)); + builder.AddLine(new Vector2(-117.795998F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-105.699997F, -348.29599F)); + builder.AddLine(new Vector2(-105.699997F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-105.699997F, -360.09201F), new Vector2(-105.987999F, -361.201996F), new Vector2(-106.564003F, -362.246002F)); + builder.AddCubicBezier(new Vector2(-107.139999F, -363.290009F), new Vector2(-107.926003F, -364.135986F), new Vector2(-108.921997F, -364.783997F)); + builder.AddCubicBezier(new Vector2(-109.917999F, -365.432007F), new Vector2(-111.064003F, -365.756012F), new Vector2(-112.360001F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-113.655998F, -365.756012F), new Vector2(-114.82F, -365.462006F), new Vector2(-115.851997F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-116.884003F, -364.286011F), new Vector2(-117.688004F, -363.488007F), new Vector2(-118.264F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-118.839996F, -361.471985F), new Vector2(-119.127998F, -360.320007F), new Vector2(-119.127998F, -359.023987F)); + builder.AddLine(new Vector2(-117.795998F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-117.795998F, -359.131989F), new Vector2(-117.603996F, -359.899994F), new Vector2(-117.220001F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-116.835999F, -361.243988F), new Vector2(-116.307999F, -361.772003F), new Vector2(-115.636002F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-114.963997F, -362.540009F), new Vector2(-114.195999F, -362.731995F), new Vector2(-113.332001F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-112.036003F, -362.731995F), new Vector2(-110.986F, -362.312012F), new Vector2(-110.181999F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-109.377998F, -360.631989F), new Vector2(-108.975998F, -359.563995F), new Vector2(-108.975998F, -358.268005F)); + builder.AddLine(new Vector2(-108.975998F, -348.29599F)); + builder.AddLine(new Vector2(-105.699997F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0372() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-128.632004F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-127.456001F, -349.196014F), new Vector2(-126.447998F, -349.928009F), new Vector2(-125.608002F, -350.888F)); + builder.AddLine(new Vector2(-127.695999F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-128.272003F, -352.339996F), new Vector2(-128.962006F, -351.835999F), new Vector2(-129.766006F, -351.5F)); + builder.AddCubicBezier(new Vector2(-130.570007F, -351.164001F), new Vector2(-131.451996F, -350.996002F), new Vector2(-132.412003F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-133.563995F, -350.996002F), new Vector2(-134.584F, -351.242004F), new Vector2(-135.472F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-136.360001F, -352.226013F), new Vector2(-137.044006F, -352.921997F), new Vector2(-137.524002F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-138.003998F, -354.721985F), new Vector2(-138.244003F, -355.772003F), new Vector2(-138.244003F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-138.244003F, -358.14801F), new Vector2(-138.016006F, -359.167999F), new Vector2(-137.559998F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-137.104004F, -360.895996F), new Vector2(-136.455994F, -361.567993F), new Vector2(-135.615997F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-134.776001F, -362.528015F), new Vector2(-133.804001F, -362.768005F), new Vector2(-132.699997F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-131.643997F, -362.768005F), new Vector2(-130.744003F, -362.54599F), new Vector2(-130F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-129.255997F, -361.65799F), new Vector2(-128.679993F, -361.033997F), new Vector2(-128.272003F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-127.863998F, -359.425995F), new Vector2(-127.660004F, -358.447998F), new Vector2(-127.660004F, -357.29599F)); + builder.AddLine(new Vector2(-126.472F, -358.339996F)); + builder.AddLine(new Vector2(-139.179993F, -358.339996F)); + builder.AddLine(new Vector2(-139.179993F, -355.640015F)); + builder.AddLine(new Vector2(-124.744003F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-124.671997F, -355.976013F), new Vector2(-124.624001F, -356.282013F), new Vector2(-124.599998F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-124.575996F, -356.834015F), new Vector2(-124.564003F, -357.09201F), new Vector2(-124.564003F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-124.564003F, -358.963989F), new Vector2(-124.905998F, -360.415985F), new Vector2(-125.589996F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-126.274002F, -362.959991F), new Vector2(-127.227997F, -363.955994F), new Vector2(-128.451996F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-129.675995F, -365.395996F), new Vector2(-131.067993F, -365.756012F), new Vector2(-132.628006F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-134.283997F, -365.756012F), new Vector2(-135.778F, -365.365997F), new Vector2(-137.110001F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-138.442001F, -363.806F), new Vector2(-139.498001F, -362.743988F), new Vector2(-140.278F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-141.057999F, -360.056F), new Vector2(-141.447998F, -358.544006F), new Vector2(-141.447998F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-141.447998F, -355.160004F), new Vector2(-141.052002F, -353.635986F), new Vector2(-140.259995F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-139.468002F, -350.947998F), new Vector2(-138.393997F, -349.885986F), new Vector2(-137.037994F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-135.682007F, -348.325989F), new Vector2(-134.139999F, -347.936005F), new Vector2(-132.412003F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-131.067993F, -347.936005F), new Vector2(-129.807999F, -348.187988F), new Vector2(-128.632004F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0373() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-145.048004F, -374F)); + builder.AddLine(new Vector2(-148.324005F, -374F)); + builder.AddLine(new Vector2(-148.324005F, -361.220001F)); + builder.AddLine(new Vector2(-147.712006F, -357.079987F)); + builder.AddLine(new Vector2(-148.324005F, -352.903992F)); + builder.AddLine(new Vector2(-148.324005F, -348.29599F)); + builder.AddLine(new Vector2(-145.048004F, -348.29599F)); + builder.AddLine(new Vector2(-145.048004F, -374F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-156.369995F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-157.197998F, -352.226013F), new Vector2(-157.845993F, -352.915985F), new Vector2(-158.313995F, -353.803986F)); + builder.AddCubicBezier(new Vector2(-158.781998F, -354.691986F), new Vector2(-159.016006F, -355.712006F), new Vector2(-159.016006F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-159.016006F, -358.015991F), new Vector2(-158.781998F, -359.029999F), new Vector2(-158.313995F, -359.906006F)); + builder.AddCubicBezier(new Vector2(-157.845993F, -360.782013F), new Vector2(-157.203995F, -361.466003F), new Vector2(-156.388F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-155.572006F, -362.450012F), new Vector2(-154.623993F, -362.696014F), new Vector2(-153.544006F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-152.464005F, -362.696014F), new Vector2(-151.516006F, -362.444F), new Vector2(-150.699997F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-149.884003F, -361.436005F), new Vector2(-149.248001F, -360.746002F), new Vector2(-148.792007F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-148.335999F, -358.993988F), new Vector2(-148.108002F, -357.980011F), new Vector2(-148.108002F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-148.108002F, -355.700012F), new Vector2(-148.335999F, -354.697998F), new Vector2(-148.792007F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-149.248001F, -352.946014F), new Vector2(-149.884003F, -352.256012F), new Vector2(-150.699997F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-151.516006F, -351.247986F), new Vector2(-152.464005F, -350.996002F), new Vector2(-153.544006F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-154.600006F, -350.996002F), new Vector2(-155.542007F, -351.242004F), new Vector2(-156.369995F, -351.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-150.556F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-149.524002F, -349.286011F), new Vector2(-148.695999F, -350.036011F), new Vector2(-148.072006F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-147.447998F, -351.955994F), new Vector2(-147.100006F, -353.048004F), new Vector2(-147.028F, -354.272003F)); + builder.AddLine(new Vector2(-147.028F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-147.100006F, -360.667999F), new Vector2(-147.453995F, -361.765991F), new Vector2(-148.089996F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-148.725998F, -363.661987F), new Vector2(-149.559998F, -364.406006F), new Vector2(-150.591995F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-151.623993F, -365.485992F), new Vector2(-152.787994F, -365.756012F), new Vector2(-154.084F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-155.643997F, -365.756012F), new Vector2(-157.048004F, -365.359985F), new Vector2(-158.296005F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-159.544006F, -363.776001F), new Vector2(-160.533997F, -362.708008F), new Vector2(-161.266006F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-161.998001F, -360.019989F), new Vector2(-162.363998F, -358.507996F), new Vector2(-162.363998F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-162.363998F, -355.14801F), new Vector2(-161.998001F, -353.635986F), new Vector2(-161.266006F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-160.533997F, -350.947998F), new Vector2(-159.544006F, -349.885986F), new Vector2(-158.296005F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-157.048004F, -348.325989F), new Vector2(-155.643997F, -347.936005F), new Vector2(-154.084F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-152.764008F, -347.936005F), new Vector2(-151.587997F, -348.205994F), new Vector2(-150.556F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0374() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-166F, -374F)); + builder.AddLine(new Vector2(-169.276001F, -374F)); + builder.AddLine(new Vector2(-169.276001F, -361.220001F)); + builder.AddLine(new Vector2(-168.664001F, -357.079987F)); + builder.AddLine(new Vector2(-169.276001F, -352.903992F)); + builder.AddLine(new Vector2(-169.276001F, -348.29599F)); + builder.AddLine(new Vector2(-166F, -348.29599F)); + builder.AddLine(new Vector2(-166F, -374F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-177.322006F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-178.149994F, -352.226013F), new Vector2(-178.798004F, -352.915985F), new Vector2(-179.266006F, -353.803986F)); + builder.AddCubicBezier(new Vector2(-179.733994F, -354.691986F), new Vector2(-179.968002F, -355.712006F), new Vector2(-179.968002F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-179.968002F, -358.015991F), new Vector2(-179.733994F, -359.029999F), new Vector2(-179.266006F, -359.906006F)); + builder.AddCubicBezier(new Vector2(-178.798004F, -360.782013F), new Vector2(-178.156006F, -361.466003F), new Vector2(-177.339996F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-176.524002F, -362.450012F), new Vector2(-175.576004F, -362.696014F), new Vector2(-174.496002F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-173.416F, -362.696014F), new Vector2(-172.468002F, -362.444F), new Vector2(-171.651993F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-170.835999F, -361.436005F), new Vector2(-170.199997F, -360.746002F), new Vector2(-169.744003F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-169.287994F, -358.993988F), new Vector2(-169.059998F, -357.980011F), new Vector2(-169.059998F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-169.059998F, -355.700012F), new Vector2(-169.287994F, -354.697998F), new Vector2(-169.744003F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-170.199997F, -352.946014F), new Vector2(-170.835999F, -352.256012F), new Vector2(-171.651993F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-172.468002F, -351.247986F), new Vector2(-173.416F, -350.996002F), new Vector2(-174.496002F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-175.552002F, -350.996002F), new Vector2(-176.494003F, -351.242004F), new Vector2(-177.322006F, -351.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-171.507996F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-170.475998F, -349.286011F), new Vector2(-169.647995F, -350.036011F), new Vector2(-169.024002F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-168.399994F, -351.955994F), new Vector2(-168.052002F, -353.048004F), new Vector2(-167.979996F, -354.272003F)); + builder.AddLine(new Vector2(-167.979996F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-168.052002F, -360.667999F), new Vector2(-168.406006F, -361.765991F), new Vector2(-169.042007F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-169.677994F, -363.661987F), new Vector2(-170.511993F, -364.406006F), new Vector2(-171.544006F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-172.576004F, -365.485992F), new Vector2(-173.740005F, -365.756012F), new Vector2(-175.035995F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-176.595993F, -365.756012F), new Vector2(-178F, -365.359985F), new Vector2(-179.248001F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-180.496002F, -363.776001F), new Vector2(-181.485992F, -362.708008F), new Vector2(-182.218002F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-182.949997F, -360.019989F), new Vector2(-183.315994F, -358.507996F), new Vector2(-183.315994F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-183.315994F, -355.14801F), new Vector2(-182.949997F, -353.635986F), new Vector2(-182.218002F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-181.485992F, -350.947998F), new Vector2(-180.496002F, -349.885986F), new Vector2(-179.248001F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-178F, -348.325989F), new Vector2(-176.595993F, -347.936005F), new Vector2(-175.035995F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-173.716003F, -347.936005F), new Vector2(-172.539993F, -348.205994F), new Vector2(-171.507996F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0375() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-190.119995F, -348.925995F)); + builder.AddCubicBezier(new Vector2(-189.016006F, -349.537994F), new Vector2(-188.151993F, -350.40799F), new Vector2(-187.528F, -351.536011F)); + builder.AddCubicBezier(new Vector2(-186.904007F, -352.664001F), new Vector2(-186.591995F, -353.971985F), new Vector2(-186.591995F, -355.459991F)); + builder.AddLine(new Vector2(-186.591995F, -365.395996F)); + builder.AddLine(new Vector2(-189.832001F, -365.395996F)); + builder.AddLine(new Vector2(-189.832001F, -355.604004F)); + builder.AddCubicBezier(new Vector2(-189.832001F, -354.187988F), new Vector2(-190.192001F, -353.078003F), new Vector2(-190.912003F, -352.273987F)); + builder.AddCubicBezier(new Vector2(-191.632004F, -351.470001F), new Vector2(-192.628006F, -351.067993F), new Vector2(-193.899994F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-194.740005F, -351.067993F), new Vector2(-195.472F, -351.247986F), new Vector2(-196.095993F, -351.608002F)); + builder.AddCubicBezier(new Vector2(-196.720001F, -351.967987F), new Vector2(-197.194F, -352.48999F), new Vector2(-197.518005F, -353.174011F)); + builder.AddCubicBezier(new Vector2(-197.841995F, -353.858002F), new Vector2(-198.003998F, -354.667999F), new Vector2(-198.003998F, -355.604004F)); + builder.AddLine(new Vector2(-198.003998F, -365.395996F)); + builder.AddLine(new Vector2(-201.244003F, -365.395996F)); + builder.AddLine(new Vector2(-201.244003F, -355.459991F)); + builder.AddCubicBezier(new Vector2(-201.244003F, -353.971985F), new Vector2(-200.932007F, -352.664001F), new Vector2(-200.307999F, -351.536011F)); + builder.AddCubicBezier(new Vector2(-199.684006F, -350.40799F), new Vector2(-198.813995F, -349.537994F), new Vector2(-197.697998F, -348.925995F)); + builder.AddCubicBezier(new Vector2(-196.582001F, -348.313995F), new Vector2(-195.315994F, -348.007996F), new Vector2(-193.899994F, -348.007996F)); + builder.AddCubicBezier(new Vector2(-192.483994F, -348.007996F), new Vector2(-191.223999F, -348.313995F), new Vector2(-190.119995F, -348.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0376() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-206.158005F, -349.339996F)); + builder.AddCubicBezier(new Vector2(-205.018005F, -350.276001F), new Vector2(-204.447998F, -351.548004F), new Vector2(-204.447998F, -353.156006F)); + builder.AddCubicBezier(new Vector2(-204.447998F, -354.212006F), new Vector2(-204.669998F, -355.063995F), new Vector2(-205.113998F, -355.712006F)); + builder.AddCubicBezier(new Vector2(-205.557999F, -356.359985F), new Vector2(-206.128006F, -356.876007F), new Vector2(-206.824005F, -357.26001F)); + builder.AddCubicBezier(new Vector2(-207.520004F, -357.644012F), new Vector2(-208.251999F, -357.950012F), new Vector2(-209.020004F, -358.178009F)); + builder.AddCubicBezier(new Vector2(-209.787994F, -358.406006F), new Vector2(-210.526001F, -358.627991F), new Vector2(-211.233994F, -358.843994F)); + builder.AddCubicBezier(new Vector2(-211.942001F, -359.059998F), new Vector2(-212.511993F, -359.324005F), new Vector2(-212.944F, -359.635986F)); + builder.AddCubicBezier(new Vector2(-213.376007F, -359.947998F), new Vector2(-213.591995F, -360.391998F), new Vector2(-213.591995F, -360.967987F)); + builder.AddCubicBezier(new Vector2(-213.591995F, -361.519989F), new Vector2(-213.345993F, -361.963989F), new Vector2(-212.854004F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-212.362F, -362.635986F), new Vector2(-211.647995F, -362.803986F), new Vector2(-210.712006F, -362.803986F)); + builder.AddCubicBezier(new Vector2(-209.824005F, -362.803986F), new Vector2(-209.031998F, -362.635986F), new Vector2(-208.335999F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-207.639999F, -361.963989F), new Vector2(-207.039993F, -361.484009F), new Vector2(-206.535995F, -360.859985F)); + builder.AddLine(new Vector2(-204.447998F, -362.947998F)); + builder.AddCubicBezier(new Vector2(-205.119995F, -363.884003F), new Vector2(-205.977997F, -364.585999F), new Vector2(-207.022003F, -365.053986F)); + builder.AddCubicBezier(new Vector2(-208.065994F, -365.522003F), new Vector2(-209.259995F, -365.756012F), new Vector2(-210.604004F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-211.876007F, -365.756012F), new Vector2(-212.968002F, -365.552002F), new Vector2(-213.880005F, -365.144012F)); + builder.AddCubicBezier(new Vector2(-214.792007F, -364.735992F), new Vector2(-215.494003F, -364.153992F), new Vector2(-215.985992F, -363.39801F)); + builder.AddCubicBezier(new Vector2(-216.477997F, -362.641998F), new Vector2(-216.723999F, -361.747986F), new Vector2(-216.723999F, -360.716003F)); + builder.AddCubicBezier(new Vector2(-216.723999F, -359.68399F), new Vector2(-216.501999F, -358.850006F), new Vector2(-216.057999F, -358.213989F)); + builder.AddCubicBezier(new Vector2(-215.613998F, -357.578003F), new Vector2(-215.044006F, -357.079987F), new Vector2(-214.348007F, -356.720001F)); + builder.AddCubicBezier(new Vector2(-213.651993F, -356.359985F), new Vector2(-212.914001F, -356.071991F), new Vector2(-212.134003F, -355.855988F)); + builder.AddCubicBezier(new Vector2(-211.354004F, -355.640015F), new Vector2(-210.615997F, -355.417999F), new Vector2(-209.919998F, -355.190002F)); + builder.AddCubicBezier(new Vector2(-209.223999F, -354.962006F), new Vector2(-208.654007F, -354.674011F), new Vector2(-208.210007F, -354.325989F)); + builder.AddCubicBezier(new Vector2(-207.766006F, -353.977997F), new Vector2(-207.544006F, -353.492004F), new Vector2(-207.544006F, -352.868011F)); + builder.AddCubicBezier(new Vector2(-207.544006F, -352.243988F), new Vector2(-207.820007F, -351.757996F), new Vector2(-208.371994F, -351.410004F)); + builder.AddCubicBezier(new Vector2(-208.923996F, -351.062012F), new Vector2(-209.703995F, -350.888F), new Vector2(-210.712006F, -350.888F)); + builder.AddCubicBezier(new Vector2(-211.720001F, -350.888F), new Vector2(-212.632004F, -351.074005F), new Vector2(-213.447998F, -351.446014F)); + builder.AddCubicBezier(new Vector2(-214.264008F, -351.817993F), new Vector2(-214.983994F, -352.388F), new Vector2(-215.608002F, -353.156006F)); + builder.AddLine(new Vector2(-217.695999F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-217.167999F, -350.420013F), new Vector2(-216.550003F, -349.862F), new Vector2(-215.841995F, -349.394012F)); + builder.AddCubicBezier(new Vector2(-215.134003F, -348.925995F), new Vector2(-214.348007F, -348.56601F), new Vector2(-213.483994F, -348.313995F)); + builder.AddCubicBezier(new Vector2(-212.619995F, -348.062012F), new Vector2(-211.707993F, -347.936005F), new Vector2(-210.748001F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-208.828003F, -347.936005F), new Vector2(-207.298004F, -348.403992F), new Vector2(-206.158005F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0377() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-228.981995F, -349.339996F)); + builder.AddCubicBezier(new Vector2(-227.841995F, -350.276001F), new Vector2(-227.272003F, -351.548004F), new Vector2(-227.272003F, -353.156006F)); + builder.AddCubicBezier(new Vector2(-227.272003F, -354.212006F), new Vector2(-227.494003F, -355.063995F), new Vector2(-227.938004F, -355.712006F)); + builder.AddCubicBezier(new Vector2(-228.382004F, -356.359985F), new Vector2(-228.951996F, -356.876007F), new Vector2(-229.647995F, -357.26001F)); + builder.AddCubicBezier(new Vector2(-230.343994F, -357.644012F), new Vector2(-231.076004F, -357.950012F), new Vector2(-231.843994F, -358.178009F)); + builder.AddCubicBezier(new Vector2(-232.612F, -358.406006F), new Vector2(-233.350006F, -358.627991F), new Vector2(-234.057999F, -358.843994F)); + builder.AddCubicBezier(new Vector2(-234.766006F, -359.059998F), new Vector2(-235.335999F, -359.324005F), new Vector2(-235.768005F, -359.635986F)); + builder.AddCubicBezier(new Vector2(-236.199997F, -359.947998F), new Vector2(-236.416F, -360.391998F), new Vector2(-236.416F, -360.967987F)); + builder.AddCubicBezier(new Vector2(-236.416F, -361.519989F), new Vector2(-236.169998F, -361.963989F), new Vector2(-235.677994F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-235.186005F, -362.635986F), new Vector2(-234.472F, -362.803986F), new Vector2(-233.535995F, -362.803986F)); + builder.AddCubicBezier(new Vector2(-232.647995F, -362.803986F), new Vector2(-231.856003F, -362.635986F), new Vector2(-231.160004F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-230.464005F, -361.963989F), new Vector2(-229.863998F, -361.484009F), new Vector2(-229.360001F, -360.859985F)); + builder.AddLine(new Vector2(-227.272003F, -362.947998F)); + builder.AddCubicBezier(new Vector2(-227.944F, -363.884003F), new Vector2(-228.802002F, -364.585999F), new Vector2(-229.845993F, -365.053986F)); + builder.AddCubicBezier(new Vector2(-230.889999F, -365.522003F), new Vector2(-232.084F, -365.756012F), new Vector2(-233.427994F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-234.699997F, -365.756012F), new Vector2(-235.792007F, -365.552002F), new Vector2(-236.703995F, -365.144012F)); + builder.AddCubicBezier(new Vector2(-237.615997F, -364.735992F), new Vector2(-238.317993F, -364.153992F), new Vector2(-238.809998F, -363.39801F)); + builder.AddCubicBezier(new Vector2(-239.302002F, -362.641998F), new Vector2(-239.548004F, -361.747986F), new Vector2(-239.548004F, -360.716003F)); + builder.AddCubicBezier(new Vector2(-239.548004F, -359.68399F), new Vector2(-239.326004F, -358.850006F), new Vector2(-238.882004F, -358.213989F)); + builder.AddCubicBezier(new Vector2(-238.438004F, -357.578003F), new Vector2(-237.867996F, -357.079987F), new Vector2(-237.171997F, -356.720001F)); + builder.AddCubicBezier(new Vector2(-236.475998F, -356.359985F), new Vector2(-235.738007F, -356.071991F), new Vector2(-234.957993F, -355.855988F)); + builder.AddCubicBezier(new Vector2(-234.177994F, -355.640015F), new Vector2(-233.440002F, -355.417999F), new Vector2(-232.744003F, -355.190002F)); + builder.AddCubicBezier(new Vector2(-232.048004F, -354.962006F), new Vector2(-231.477997F, -354.674011F), new Vector2(-231.033997F, -354.325989F)); + builder.AddCubicBezier(new Vector2(-230.589996F, -353.977997F), new Vector2(-230.367996F, -353.492004F), new Vector2(-230.367996F, -352.868011F)); + builder.AddCubicBezier(new Vector2(-230.367996F, -352.243988F), new Vector2(-230.643997F, -351.757996F), new Vector2(-231.195999F, -351.410004F)); + builder.AddCubicBezier(new Vector2(-231.748001F, -351.062012F), new Vector2(-232.528F, -350.888F), new Vector2(-233.535995F, -350.888F)); + builder.AddCubicBezier(new Vector2(-234.544006F, -350.888F), new Vector2(-235.455994F, -351.074005F), new Vector2(-236.272003F, -351.446014F)); + builder.AddCubicBezier(new Vector2(-237.087997F, -351.817993F), new Vector2(-237.807999F, -352.388F), new Vector2(-238.432007F, -353.156006F)); + builder.AddLine(new Vector2(-240.520004F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-239.992004F, -350.420013F), new Vector2(-239.373993F, -349.862F), new Vector2(-238.666F, -349.394012F)); + builder.AddCubicBezier(new Vector2(-237.957993F, -348.925995F), new Vector2(-237.171997F, -348.56601F), new Vector2(-236.307999F, -348.313995F)); + builder.AddCubicBezier(new Vector2(-235.444F, -348.062012F), new Vector2(-234.531998F, -347.936005F), new Vector2(-233.572006F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-231.651993F, -347.936005F), new Vector2(-230.121994F, -348.403992F), new Vector2(-228.981995F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0378() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-243.940002F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-243.556F, -369.806F), new Vector2(-243.363998F, -370.303986F), new Vector2(-243.363998F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-243.363998F, -371.480011F), new Vector2(-243.556F, -371.966003F), new Vector2(-243.940002F, -372.362F)); + builder.AddCubicBezier(new Vector2(-244.324005F, -372.757996F), new Vector2(-244.815994F, -372.955994F), new Vector2(-245.416F, -372.955994F)); + builder.AddCubicBezier(new Vector2(-246.016006F, -372.955994F), new Vector2(-246.507996F, -372.757996F), new Vector2(-246.891998F, -372.362F)); + builder.AddCubicBezier(new Vector2(-247.276001F, -371.966003F), new Vector2(-247.468002F, -371.480011F), new Vector2(-247.468002F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-247.468002F, -370.303986F), new Vector2(-247.276001F, -369.806F), new Vector2(-246.891998F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-246.507996F, -369.014008F), new Vector2(-246.016006F, -368.81601F), new Vector2(-245.416F, -368.81601F)); + builder.AddCubicBezier(new Vector2(-244.815994F, -368.81601F), new Vector2(-244.324005F, -369.014008F), new Vector2(-243.940002F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-243.796005F, -348.29599F)); + builder.AddLine(new Vector2(-243.796005F, -365.395996F)); + builder.AddLine(new Vector2(-247.072006F, -365.395996F)); + builder.AddLine(new Vector2(-247.072006F, -348.29599F)); + builder.AddLine(new Vector2(-243.796005F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0379() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-263.559998F, -348.29599F)); + builder.AddLine(new Vector2(-263.559998F, -374F)); + builder.AddLine(new Vector2(-266.799988F, -374F)); + builder.AddLine(new Vector2(-266.799988F, -348.29599F)); + builder.AddLine(new Vector2(-263.559998F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-251.464005F, -348.29599F)); + builder.AddLine(new Vector2(-251.464005F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-251.464005F, -360.26001F), new Vector2(-251.751999F, -361.447998F), new Vector2(-252.328003F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-252.904007F, -363.511993F), new Vector2(-253.690002F, -364.31601F), new Vector2(-254.686005F, -364.891998F)); + builder.AddCubicBezier(new Vector2(-255.682007F, -365.467987F), new Vector2(-256.828003F, -365.756012F), new Vector2(-258.123993F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-259.420013F, -365.756012F), new Vector2(-260.584015F, -365.462006F), new Vector2(-261.615997F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-262.64801F, -364.286011F), new Vector2(-263.451996F, -363.488007F), new Vector2(-264.028015F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-264.604004F, -361.471985F), new Vector2(-264.891998F, -360.320007F), new Vector2(-264.891998F, -359.023987F)); + builder.AddLine(new Vector2(-263.559998F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-263.559998F, -359.131989F), new Vector2(-263.368011F, -359.899994F), new Vector2(-262.984009F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-262.600006F, -361.243988F), new Vector2(-262.071991F, -361.772003F), new Vector2(-261.399994F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-260.727997F, -362.540009F), new Vector2(-259.959991F, -362.731995F), new Vector2(-259.096008F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-257.799988F, -362.731995F), new Vector2(-256.75F, -362.312012F), new Vector2(-255.945999F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-255.141998F, -360.631989F), new Vector2(-254.740005F, -359.563995F), new Vector2(-254.740005F, -358.268005F)); + builder.AddLine(new Vector2(-254.740005F, -348.29599F)); + builder.AddLine(new Vector2(-251.464005F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0380() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-269.967987F, -362.444F)); + builder.AddLine(new Vector2(-269.967987F, -365.395996F)); + builder.AddLine(new Vector2(-281.631989F, -365.395996F)); + builder.AddLine(new Vector2(-281.631989F, -362.444F)); + builder.AddLine(new Vector2(-269.967987F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-274.179993F, -348.29599F)); + builder.AddLine(new Vector2(-274.179993F, -372.559998F)); + builder.AddLine(new Vector2(-277.420013F, -372.559998F)); + builder.AddLine(new Vector2(-277.420013F, -348.29599F)); + builder.AddLine(new Vector2(-274.179993F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0381() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-298.191986F, -361.544006F)); + builder.AddCubicBezier(new Vector2(-297.424011F, -362.312012F), new Vector2(-296.440002F, -362.696014F), new Vector2(-295.23999F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-294.664001F, -362.696014F), new Vector2(-294.160004F, -362.612F), new Vector2(-293.727997F, -362.444F)); + builder.AddCubicBezier(new Vector2(-293.29599F, -362.276001F), new Vector2(-292.899994F, -362F), new Vector2(-292.540009F, -361.615997F)); + builder.AddLine(new Vector2(-290.415985F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-291.015991F, -364.507996F), new Vector2(-291.664001F, -365.006012F), new Vector2(-292.359985F, -365.306F)); + builder.AddCubicBezier(new Vector2(-293.056F, -365.605988F), new Vector2(-293.835999F, -365.756012F), new Vector2(-294.700012F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-296.596008F, -365.756012F), new Vector2(-298.048004F, -365.108002F), new Vector2(-299.056F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-300.063995F, -362.515991F), new Vector2(-300.567993F, -360.776001F), new Vector2(-300.567993F, -358.59201F)); + builder.AddLine(new Vector2(-299.343994F, -358.015991F)); + builder.AddCubicBezier(new Vector2(-299.343994F, -359.600006F), new Vector2(-298.959991F, -360.776001F), new Vector2(-298.191986F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-299.343994F, -348.29599F)); + builder.AddLine(new Vector2(-299.343994F, -365.395996F)); + builder.AddLine(new Vector2(-302.584015F, -365.395996F)); + builder.AddLine(new Vector2(-302.584015F, -348.29599F)); + builder.AddLine(new Vector2(-299.343994F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0382() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-317.992004F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-318.832001F, -352.328003F), new Vector2(-319.492004F, -353.018005F), new Vector2(-319.971985F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-320.451996F, -354.769989F), new Vector2(-320.691986F, -355.772003F), new Vector2(-320.691986F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-320.691986F, -358.003998F), new Vector2(-320.451996F, -358.988007F), new Vector2(-319.971985F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-319.492004F, -360.716003F), new Vector2(-318.832001F, -361.394012F), new Vector2(-317.992004F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-317.152008F, -362.377991F), new Vector2(-316.20401F, -362.623993F), new Vector2(-315.14801F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-314.044006F, -362.623993F), new Vector2(-313.078003F, -362.377991F), new Vector2(-312.25F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-311.421997F, -361.394012F), new Vector2(-310.761993F, -360.716003F), new Vector2(-310.269989F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-309.778015F, -358.988007F), new Vector2(-309.532013F, -358.003998F), new Vector2(-309.532013F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-309.532013F, -355.772003F), new Vector2(-309.772003F, -354.769989F), new Vector2(-310.252014F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-310.731995F, -353.018005F), new Vector2(-311.391998F, -352.328003F), new Vector2(-312.231995F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-313.071991F, -351.320007F), new Vector2(-314.044006F, -351.067993F), new Vector2(-315.14801F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-316.20401F, -351.067993F), new Vector2(-317.152008F, -351.320007F), new Vector2(-317.992004F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-310.593994F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-309.238007F, -349.915985F), new Vector2(-308.164001F, -350.98999F), new Vector2(-307.372009F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-306.579987F, -353.701996F), new Vector2(-306.18399F, -355.220001F), new Vector2(-306.18399F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-306.18399F, -358.556F), new Vector2(-306.579987F, -360.056F), new Vector2(-307.372009F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-308.164001F, -362.743988F), new Vector2(-309.238007F, -363.806F), new Vector2(-310.593994F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-311.950012F, -365.365997F), new Vector2(-313.467987F, -365.756012F), new Vector2(-315.14801F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-316.803986F, -365.756012F), new Vector2(-318.303986F, -365.359985F), new Vector2(-319.64801F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-320.992004F, -363.776001F), new Vector2(-322.059998F, -362.713989F), new Vector2(-322.85199F, -361.381989F)); + builder.AddCubicBezier(new Vector2(-323.644012F, -360.049988F), new Vector2(-324.040009F, -358.556F), new Vector2(-324.040009F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-324.040009F, -355.220001F), new Vector2(-323.644012F, -353.701996F), new Vector2(-322.85199F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-322.059998F, -350.98999F), new Vector2(-320.992004F, -349.915985F), new Vector2(-319.64801F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-318.303986F, -348.332001F), new Vector2(-316.803986F, -347.936005F), new Vector2(-315.14801F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-313.467987F, -347.936005F), new Vector2(-311.950012F, -348.332001F), new Vector2(-310.593994F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0383() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-325.191986F, -362.444F)); + builder.AddLine(new Vector2(-325.191986F, -365.395996F)); + builder.AddLine(new Vector2(-338.079987F, -365.395996F)); + builder.AddLine(new Vector2(-338.079987F, -362.444F)); + builder.AddLine(new Vector2(-325.191986F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-330.627991F, -348.29599F)); + builder.AddLine(new Vector2(-330.627991F, -367.951996F)); + builder.AddCubicBezier(new Vector2(-330.627991F, -369.007996F), new Vector2(-330.346008F, -369.829987F), new Vector2(-329.782013F, -370.417999F)); + builder.AddCubicBezier(new Vector2(-329.217987F, -371.006012F), new Vector2(-328.420013F, -371.299988F), new Vector2(-327.388F, -371.299988F)); + builder.AddCubicBezier(new Vector2(-326.835999F, -371.299988F), new Vector2(-326.368011F, -371.216003F), new Vector2(-325.984009F, -371.048004F)); + builder.AddCubicBezier(new Vector2(-325.600006F, -370.880005F), new Vector2(-325.252014F, -370.627991F), new Vector2(-324.940002F, -370.291992F)); + builder.AddLine(new Vector2(-322.81601F, -372.380005F)); + builder.AddCubicBezier(new Vector2(-323.415985F, -373.028015F), new Vector2(-324.075989F, -373.519989F), new Vector2(-324.79599F, -373.855988F)); + builder.AddCubicBezier(new Vector2(-325.515991F, -374.191986F), new Vector2(-326.368011F, -374.359985F), new Vector2(-327.35199F, -374.359985F)); + builder.AddCubicBezier(new Vector2(-328.64801F, -374.359985F), new Vector2(-329.787994F, -374.084015F), new Vector2(-330.772003F, -373.532013F)); + builder.AddCubicBezier(new Vector2(-331.756012F, -372.980011F), new Vector2(-332.523987F, -372.223999F), new Vector2(-333.075989F, -371.264008F)); + builder.AddCubicBezier(new Vector2(-333.627991F, -370.303986F), new Vector2(-333.903992F, -369.200012F), new Vector2(-333.903992F, -367.951996F)); + builder.AddLine(new Vector2(-333.903992F, -348.29599F)); + builder.AddLine(new Vector2(-330.627991F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0384() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-351.364014F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-350.187988F, -349.196014F), new Vector2(-349.179993F, -349.928009F), new Vector2(-348.339996F, -350.888F)); + builder.AddLine(new Vector2(-350.428009F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-351.003998F, -352.339996F), new Vector2(-351.694F, -351.835999F), new Vector2(-352.497986F, -351.5F)); + builder.AddCubicBezier(new Vector2(-353.302002F, -351.164001F), new Vector2(-354.18399F, -350.996002F), new Vector2(-355.144012F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-356.29599F, -350.996002F), new Vector2(-357.31601F, -351.242004F), new Vector2(-358.20401F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-359.09201F, -352.226013F), new Vector2(-359.776001F, -352.921997F), new Vector2(-360.256012F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-360.735992F, -354.721985F), new Vector2(-360.976013F, -355.772003F), new Vector2(-360.976013F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-360.976013F, -358.14801F), new Vector2(-360.747986F, -359.167999F), new Vector2(-360.291992F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-359.835999F, -360.895996F), new Vector2(-359.187988F, -361.567993F), new Vector2(-358.347992F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-357.507996F, -362.528015F), new Vector2(-356.536011F, -362.768005F), new Vector2(-355.432007F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-354.376007F, -362.768005F), new Vector2(-353.476013F, -362.54599F), new Vector2(-352.731995F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-351.988007F, -361.65799F), new Vector2(-351.411987F, -361.033997F), new Vector2(-351.003998F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-350.596008F, -359.425995F), new Vector2(-350.391998F, -358.447998F), new Vector2(-350.391998F, -357.29599F)); + builder.AddLine(new Vector2(-349.20401F, -358.339996F)); + builder.AddLine(new Vector2(-361.911987F, -358.339996F)); + builder.AddLine(new Vector2(-361.911987F, -355.640015F)); + builder.AddLine(new Vector2(-347.476013F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-347.403992F, -355.976013F), new Vector2(-347.355988F, -356.282013F), new Vector2(-347.332001F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-347.308014F, -356.834015F), new Vector2(-347.29599F, -357.09201F), new Vector2(-347.29599F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-347.29599F, -358.963989F), new Vector2(-347.638F, -360.415985F), new Vector2(-348.321991F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-349.006012F, -362.959991F), new Vector2(-349.959991F, -363.955994F), new Vector2(-351.18399F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-352.40799F, -365.395996F), new Vector2(-353.799988F, -365.756012F), new Vector2(-355.359985F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-357.015991F, -365.756012F), new Vector2(-358.51001F, -365.365997F), new Vector2(-359.84201F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-361.174011F, -363.806F), new Vector2(-362.230011F, -362.743988F), new Vector2(-363.01001F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-363.790009F, -360.056F), new Vector2(-364.179993F, -358.544006F), new Vector2(-364.179993F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-364.179993F, -355.160004F), new Vector2(-363.783997F, -353.635986F), new Vector2(-362.992004F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-362.200012F, -350.947998F), new Vector2(-361.126007F, -349.885986F), new Vector2(-359.769989F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-358.414001F, -348.325989F), new Vector2(-356.872009F, -347.936005F), new Vector2(-355.144012F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-353.799988F, -347.936005F), new Vector2(-352.540009F, -348.187988F), new Vector2(-351.364014F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0385() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-369.220001F, -362.444F)); + builder.AddLine(new Vector2(-366.231995F, -363.631989F)); + builder.AddLine(new Vector2(-366.231995F, -365.395996F)); + builder.AddLine(new Vector2(-379.588013F, -365.395996F)); + builder.AddLine(new Vector2(-379.588013F, -362.444F)); + builder.AddLine(new Vector2(-369.220001F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-366.447998F, -348.29599F)); + builder.AddLine(new Vector2(-366.447998F, -351.247986F)); + builder.AddLine(new Vector2(-377.320007F, -351.247986F)); + builder.AddLine(new Vector2(-380.235992F, -350.059998F)); + builder.AddLine(new Vector2(-380.235992F, -348.29599F)); + builder.AddLine(new Vector2(-366.447998F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-376.384003F, -350.059998F)); + builder.AddLine(new Vector2(-366.231995F, -363.631989F)); + builder.AddLine(new Vector2(-370.048004F, -363.631989F)); + builder.AddLine(new Vector2(-380.235992F, -350.059998F)); + builder.AddLine(new Vector2(-376.384003F, -350.059998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0386() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-383.764008F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-383.380005F, -369.806F), new Vector2(-383.187988F, -370.303986F), new Vector2(-383.187988F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-383.187988F, -371.480011F), new Vector2(-383.380005F, -371.966003F), new Vector2(-383.764008F, -372.362F)); + builder.AddCubicBezier(new Vector2(-384.14801F, -372.757996F), new Vector2(-384.640015F, -372.955994F), new Vector2(-385.23999F, -372.955994F)); + builder.AddCubicBezier(new Vector2(-385.839996F, -372.955994F), new Vector2(-386.332001F, -372.757996F), new Vector2(-386.716003F, -372.362F)); + builder.AddCubicBezier(new Vector2(-387.100006F, -371.966003F), new Vector2(-387.291992F, -371.480011F), new Vector2(-387.291992F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-387.291992F, -370.303986F), new Vector2(-387.100006F, -369.806F), new Vector2(-386.716003F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-386.332001F, -369.014008F), new Vector2(-385.839996F, -368.81601F), new Vector2(-385.23999F, -368.81601F)); + builder.AddCubicBezier(new Vector2(-384.640015F, -368.81601F), new Vector2(-384.14801F, -369.014008F), new Vector2(-383.764008F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-383.619995F, -348.29599F)); + builder.AddLine(new Vector2(-383.619995F, -365.395996F)); + builder.AddLine(new Vector2(-386.895996F, -365.395996F)); + builder.AddLine(new Vector2(-386.895996F, -348.29599F)); + builder.AddLine(new Vector2(-383.619995F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0387() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-402.825989F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-403.653992F, -352.813995F), new Vector2(-404.302002F, -353.467987F), new Vector2(-404.769989F, -354.308014F)); + builder.AddCubicBezier(new Vector2(-405.238007F, -355.14801F), new Vector2(-405.471985F, -356.108002F), new Vector2(-405.471985F, -357.187988F)); + builder.AddCubicBezier(new Vector2(-405.471985F, -358.268005F), new Vector2(-405.238007F, -359.221985F), new Vector2(-404.769989F, -360.049988F)); + builder.AddCubicBezier(new Vector2(-404.302002F, -360.877991F), new Vector2(-403.660004F, -361.526001F), new Vector2(-402.843994F, -361.993988F)); + builder.AddCubicBezier(new Vector2(-402.028015F, -362.462006F), new Vector2(-401.079987F, -362.696014F), new Vector2(-400F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-398.944F, -362.696014F), new Vector2(-398.014008F, -362.462006F), new Vector2(-397.209991F, -361.993988F)); + builder.AddCubicBezier(new Vector2(-396.406006F, -361.526001F), new Vector2(-395.782013F, -360.877991F), new Vector2(-395.338013F, -360.049988F)); + builder.AddCubicBezier(new Vector2(-394.894012F, -359.221985F), new Vector2(-394.671997F, -358.256012F), new Vector2(-394.671997F, -357.152008F)); + builder.AddCubicBezier(new Vector2(-394.671997F, -356.048004F), new Vector2(-394.894012F, -355.082001F), new Vector2(-395.338013F, -354.253998F)); + builder.AddCubicBezier(new Vector2(-395.782013F, -353.425995F), new Vector2(-396.399994F, -352.783997F), new Vector2(-397.191986F, -352.328003F)); + builder.AddCubicBezier(new Vector2(-397.984009F, -351.872009F), new Vector2(-398.920013F, -351.644012F), new Vector2(-400F, -351.644012F)); + builder.AddCubicBezier(new Vector2(-401.056F, -351.644012F), new Vector2(-401.997986F, -351.877991F), new Vector2(-402.825989F, -352.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-397.084015F, -349.376007F)); + builder.AddCubicBezier(new Vector2(-396.052002F, -349.903992F), new Vector2(-395.230011F, -350.641998F), new Vector2(-394.618011F, -351.589996F)); + builder.AddCubicBezier(new Vector2(-394.006012F, -352.537994F), new Vector2(-393.664001F, -353.635986F), new Vector2(-393.59201F, -354.884003F)); + builder.AddLine(new Vector2(-393.59201F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-393.664001F, -360.691986F), new Vector2(-394F, -361.802002F), new Vector2(-394.600006F, -362.75F)); + builder.AddCubicBezier(new Vector2(-395.200012F, -363.697998F), new Vector2(-396.022003F, -364.436005F), new Vector2(-397.06601F, -364.963989F)); + builder.AddCubicBezier(new Vector2(-398.109985F, -365.492004F), new Vector2(-399.303986F, -365.756012F), new Vector2(-400.64801F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-402.18399F, -365.756012F), new Vector2(-403.575989F, -365.377991F), new Vector2(-404.824005F, -364.622009F)); + builder.AddCubicBezier(new Vector2(-406.071991F, -363.865997F), new Vector2(-407.049988F, -362.846008F), new Vector2(-407.757996F, -361.562012F)); + builder.AddCubicBezier(new Vector2(-408.466003F, -360.278015F), new Vector2(-408.820007F, -358.820007F), new Vector2(-408.820007F, -357.187988F)); + builder.AddCubicBezier(new Vector2(-408.820007F, -355.556F), new Vector2(-408.459991F, -354.085999F), new Vector2(-407.73999F, -352.778015F)); + builder.AddCubicBezier(new Vector2(-407.019989F, -351.470001F), new Vector2(-406.041992F, -350.444F), new Vector2(-404.806F, -349.700012F)); + builder.AddCubicBezier(new Vector2(-403.570007F, -348.955994F), new Vector2(-402.171997F, -348.584015F), new Vector2(-400.612F, -348.584015F)); + builder.AddCubicBezier(new Vector2(-399.291992F, -348.584015F), new Vector2(-398.115997F, -348.847992F), new Vector2(-397.084015F, -349.376007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-395.914001F, -341.798004F)); + builder.AddCubicBezier(new Vector2(-394.558014F, -342.481995F), new Vector2(-393.502014F, -343.441986F), new Vector2(-392.746002F, -344.678009F)); + builder.AddCubicBezier(new Vector2(-391.98999F, -345.914001F), new Vector2(-391.612F, -347.347992F), new Vector2(-391.612F, -348.980011F)); + builder.AddLine(new Vector2(-391.612F, -365.395996F)); + builder.AddLine(new Vector2(-394.85199F, -365.395996F)); + builder.AddLine(new Vector2(-394.85199F, -360.895996F)); + builder.AddLine(new Vector2(-394.276001F, -357.079987F)); + builder.AddLine(new Vector2(-394.85199F, -353.227997F)); + builder.AddLine(new Vector2(-394.85199F, -348.980011F)); + builder.AddCubicBezier(new Vector2(-394.85199F, -347.420013F), new Vector2(-395.368011F, -346.178009F), new Vector2(-396.399994F, -345.253998F)); + builder.AddCubicBezier(new Vector2(-397.432007F, -344.329987F), new Vector2(-398.812012F, -343.868011F), new Vector2(-400.540009F, -343.868011F)); + builder.AddCubicBezier(new Vector2(-401.859985F, -343.868011F), new Vector2(-403F, -344.10199F), new Vector2(-403.959991F, -344.570007F)); + builder.AddCubicBezier(new Vector2(-404.920013F, -345.037994F), new Vector2(-405.747986F, -345.716003F), new Vector2(-406.444F, -346.604004F)); + builder.AddLine(new Vector2(-408.567993F, -344.480011F)); + builder.AddCubicBezier(new Vector2(-407.727997F, -343.303986F), new Vector2(-406.635986F, -342.391998F), new Vector2(-405.291992F, -341.743988F)); + builder.AddCubicBezier(new Vector2(-403.947998F, -341.096008F), new Vector2(-402.388F, -340.772003F), new Vector2(-400.612F, -340.772003F)); + builder.AddCubicBezier(new Vector2(-398.835999F, -340.772003F), new Vector2(-397.269989F, -341.114014F), new Vector2(-395.914001F, -341.798004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0388() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-423.112F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-423.951996F, -352.328003F), new Vector2(-424.612F, -353.018005F), new Vector2(-425.09201F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-425.571991F, -354.769989F), new Vector2(-425.812012F, -355.772003F), new Vector2(-425.812012F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-425.812012F, -358.003998F), new Vector2(-425.571991F, -358.988007F), new Vector2(-425.09201F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-424.612F, -360.716003F), new Vector2(-423.951996F, -361.394012F), new Vector2(-423.112F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-422.272003F, -362.377991F), new Vector2(-421.324005F, -362.623993F), new Vector2(-420.268005F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-419.164001F, -362.623993F), new Vector2(-418.197998F, -362.377991F), new Vector2(-417.369995F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-416.541992F, -361.394012F), new Vector2(-415.881989F, -360.716003F), new Vector2(-415.390015F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-414.89801F, -358.988007F), new Vector2(-414.652008F, -358.003998F), new Vector2(-414.652008F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-414.652008F, -355.772003F), new Vector2(-414.891998F, -354.769989F), new Vector2(-415.372009F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-415.85199F, -353.018005F), new Vector2(-416.511993F, -352.328003F), new Vector2(-417.35199F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-418.191986F, -351.320007F), new Vector2(-419.164001F, -351.067993F), new Vector2(-420.268005F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-421.324005F, -351.067993F), new Vector2(-422.272003F, -351.320007F), new Vector2(-423.112F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-415.713989F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-414.358002F, -349.915985F), new Vector2(-413.283997F, -350.98999F), new Vector2(-412.492004F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-411.700012F, -353.701996F), new Vector2(-411.303986F, -355.220001F), new Vector2(-411.303986F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-411.303986F, -358.556F), new Vector2(-411.700012F, -360.056F), new Vector2(-412.492004F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-413.283997F, -362.743988F), new Vector2(-414.358002F, -363.806F), new Vector2(-415.713989F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-417.070007F, -365.365997F), new Vector2(-418.588013F, -365.756012F), new Vector2(-420.268005F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-421.924011F, -365.756012F), new Vector2(-423.424011F, -365.359985F), new Vector2(-424.768005F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-426.112F, -363.776001F), new Vector2(-427.179993F, -362.713989F), new Vector2(-427.971985F, -361.381989F)); + builder.AddCubicBezier(new Vector2(-428.764008F, -360.049988F), new Vector2(-429.160004F, -358.556F), new Vector2(-429.160004F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-429.160004F, -355.220001F), new Vector2(-428.764008F, -353.701996F), new Vector2(-427.971985F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-427.179993F, -350.98999F), new Vector2(-426.112F, -349.915985F), new Vector2(-424.768005F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-423.424011F, -348.332001F), new Vector2(-421.924011F, -347.936005F), new Vector2(-420.268005F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-418.588013F, -347.936005F), new Vector2(-417.070007F, -348.332001F), new Vector2(-415.713989F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0389() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-432.79599F, -348.29599F)); + builder.AddLine(new Vector2(-432.79599F, -374F)); + builder.AddLine(new Vector2(-436.036011F, -374F)); + builder.AddLine(new Vector2(-436.036011F, -348.29599F)); + builder.AddLine(new Vector2(-432.79599F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0390() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-451.444F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-452.283997F, -352.328003F), new Vector2(-452.944F, -353.018005F), new Vector2(-453.424011F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-453.903992F, -354.769989F), new Vector2(-454.144012F, -355.772003F), new Vector2(-454.144012F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-454.144012F, -358.003998F), new Vector2(-453.903992F, -358.988007F), new Vector2(-453.424011F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-452.944F, -360.716003F), new Vector2(-452.283997F, -361.394012F), new Vector2(-451.444F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-450.604004F, -362.377991F), new Vector2(-449.656006F, -362.623993F), new Vector2(-448.600006F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-447.496002F, -362.623993F), new Vector2(-446.529999F, -362.377991F), new Vector2(-445.701996F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-444.873993F, -361.394012F), new Vector2(-444.213989F, -360.716003F), new Vector2(-443.721985F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-443.230011F, -358.988007F), new Vector2(-442.984009F, -358.003998F), new Vector2(-442.984009F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-442.984009F, -355.772003F), new Vector2(-443.223999F, -354.769989F), new Vector2(-443.70401F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-444.18399F, -353.018005F), new Vector2(-444.843994F, -352.328003F), new Vector2(-445.68399F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-446.523987F, -351.320007F), new Vector2(-447.496002F, -351.067993F), new Vector2(-448.600006F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-449.656006F, -351.067993F), new Vector2(-450.604004F, -351.320007F), new Vector2(-451.444F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-444.04599F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-442.690002F, -349.915985F), new Vector2(-441.615997F, -350.98999F), new Vector2(-440.824005F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-440.032013F, -353.701996F), new Vector2(-439.635986F, -355.220001F), new Vector2(-439.635986F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-439.635986F, -358.556F), new Vector2(-440.032013F, -360.056F), new Vector2(-440.824005F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-441.615997F, -362.743988F), new Vector2(-442.690002F, -363.806F), new Vector2(-444.04599F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-445.402008F, -365.365997F), new Vector2(-446.920013F, -365.756012F), new Vector2(-448.600006F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-450.256012F, -365.756012F), new Vector2(-451.756012F, -365.359985F), new Vector2(-453.100006F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-454.444F, -363.776001F), new Vector2(-455.511993F, -362.713989F), new Vector2(-456.303986F, -361.381989F)); + builder.AddCubicBezier(new Vector2(-457.096008F, -360.049988F), new Vector2(-457.492004F, -358.556F), new Vector2(-457.492004F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-457.492004F, -355.220001F), new Vector2(-457.096008F, -353.701996F), new Vector2(-456.303986F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-455.511993F, -350.98999F), new Vector2(-454.444F, -349.915985F), new Vector2(-453.100006F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-451.756012F, -348.332001F), new Vector2(-450.256012F, -347.936005F), new Vector2(-448.600006F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-446.920013F, -347.936005F), new Vector2(-445.402008F, -348.332001F), new Vector2(-444.04599F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0391() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-471.694F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-472.522003F, -352.256012F), new Vector2(-473.15799F, -352.946014F), new Vector2(-473.60199F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-474.04599F, -354.697998F), new Vector2(-474.268005F, -355.700012F), new Vector2(-474.268005F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-474.268005F, -357.980011F), new Vector2(-474.040009F, -358.993988F), new Vector2(-473.584015F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-473.127991F, -360.746002F), new Vector2(-472.492004F, -361.436005F), new Vector2(-471.675995F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-470.859985F, -362.444F), new Vector2(-469.924011F, -362.696014F), new Vector2(-468.868011F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-467.787994F, -362.696014F), new Vector2(-466.839996F, -362.444F), new Vector2(-466.023987F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-465.208008F, -361.436005F), new Vector2(-464.56601F, -360.746002F), new Vector2(-464.097992F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-463.630005F, -358.993988F), new Vector2(-463.395996F, -357.992004F), new Vector2(-463.395996F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-463.395996F, -355.712006F), new Vector2(-463.630005F, -354.697998F), new Vector2(-464.097992F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-464.56601F, -352.946014F), new Vector2(-465.208008F, -352.256012F), new Vector2(-466.023987F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-466.839996F, -351.247986F), new Vector2(-467.787994F, -350.996002F), new Vector2(-468.868011F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-469.924011F, -350.996002F), new Vector2(-470.865997F, -351.247986F), new Vector2(-471.694F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-474.088013F, -341.131989F)); + builder.AddLine(new Vector2(-474.088013F, -352.579987F)); + builder.AddLine(new Vector2(-474.700012F, -356.756012F)); + builder.AddLine(new Vector2(-474.088013F, -360.895996F)); + builder.AddLine(new Vector2(-474.088013F, -365.395996F)); + builder.AddLine(new Vector2(-477.328003F, -365.395996F)); + builder.AddLine(new Vector2(-477.328003F, -341.131989F)); + builder.AddLine(new Vector2(-474.088013F, -341.131989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-464.097992F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-462.838013F, -349.885986F), new Vector2(-461.847992F, -350.947998F), new Vector2(-461.127991F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-460.40799F, -353.635986F), new Vector2(-460.048004F, -355.14801F), new Vector2(-460.048004F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-460.048004F, -358.507996F), new Vector2(-460.40799F, -360.019989F), new Vector2(-461.127991F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-461.847992F, -362.708008F), new Vector2(-462.838013F, -363.776001F), new Vector2(-464.097992F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-465.358002F, -365.359985F), new Vector2(-466.768005F, -365.756012F), new Vector2(-468.328003F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-469.600006F, -365.756012F), new Vector2(-470.757996F, -365.485992F), new Vector2(-471.802002F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-472.846008F, -364.406006F), new Vector2(-473.686005F, -363.661987F), new Vector2(-474.321991F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-474.958008F, -361.765991F), new Vector2(-475.312012F, -360.667999F), new Vector2(-475.384003F, -359.420013F)); + builder.AddLine(new Vector2(-475.384003F, -354.272003F)); + builder.AddCubicBezier(new Vector2(-475.312012F, -353.048004F), new Vector2(-474.963989F, -351.955994F), new Vector2(-474.339996F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-473.716003F, -350.036011F), new Vector2(-472.881989F, -349.286011F), new Vector2(-471.838013F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-470.794006F, -348.205994F), new Vector2(-469.623993F, -347.936005F), new Vector2(-468.328003F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-466.768005F, -347.936005F), new Vector2(-465.358002F, -348.325989F), new Vector2(-464.097992F, -349.105988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0392() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-482.044006F, -348.29599F)); + builder.AddLine(new Vector2(-482.044006F, -365.395996F)); + builder.AddLine(new Vector2(-485.320007F, -365.395996F)); + builder.AddLine(new Vector2(-485.320007F, -361.220001F)); + builder.AddLine(new Vector2(-484.708008F, -357.079987F)); + builder.AddLine(new Vector2(-485.320007F, -352.903992F)); + builder.AddLine(new Vector2(-485.320007F, -348.29599F)); + builder.AddLine(new Vector2(-482.044006F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-493.347992F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-494.187988F, -352.256012F), new Vector2(-494.84201F, -352.946014F), new Vector2(-495.309998F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-495.778015F, -354.697998F), new Vector2(-496.011993F, -355.712006F), new Vector2(-496.011993F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-496.011993F, -357.992004F), new Vector2(-495.778015F, -358.993988F), new Vector2(-495.309998F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-494.84201F, -360.746002F), new Vector2(-494.194F, -361.436005F), new Vector2(-493.365997F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-492.537994F, -362.444F), new Vector2(-491.584015F, -362.696014F), new Vector2(-490.503998F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-489.424011F, -362.696014F), new Vector2(-488.481995F, -362.450012F), new Vector2(-487.678009F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-486.873993F, -361.466003F), new Vector2(-486.243988F, -360.776001F), new Vector2(-485.787994F, -359.888F)); + builder.AddCubicBezier(new Vector2(-485.332001F, -359F), new Vector2(-485.104004F, -357.980011F), new Vector2(-485.104004F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-485.104004F, -355.123993F), new Vector2(-485.596008F, -353.726013F), new Vector2(-486.579987F, -352.634003F)); + builder.AddCubicBezier(new Vector2(-487.563995F, -351.541992F), new Vector2(-488.859985F, -350.996002F), new Vector2(-490.467987F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-491.548004F, -350.996002F), new Vector2(-492.507996F, -351.247986F), new Vector2(-493.347992F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-487.515991F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-486.484009F, -349.286011F), new Vector2(-485.661987F, -350.036011F), new Vector2(-485.049988F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-484.437988F, -351.955994F), new Vector2(-484.096008F, -353.048004F), new Vector2(-484.023987F, -354.272003F)); + builder.AddLine(new Vector2(-484.023987F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-484.096008F, -360.667999F), new Vector2(-484.444F, -361.765991F), new Vector2(-485.067993F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-485.691986F, -363.661987F), new Vector2(-486.514008F, -364.406006F), new Vector2(-487.533997F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-488.553986F, -365.485992F), new Vector2(-489.712006F, -365.756012F), new Vector2(-491.007996F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-492.59201F, -365.756012F), new Vector2(-494.014008F, -365.359985F), new Vector2(-495.273987F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-496.533997F, -363.776001F), new Vector2(-497.529999F, -362.708008F), new Vector2(-498.261993F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-498.993988F, -360.019989F), new Vector2(-499.359985F, -358.507996F), new Vector2(-499.359985F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-499.359985F, -355.14801F), new Vector2(-498.993988F, -353.635986F), new Vector2(-498.261993F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-497.529999F, -350.947998F), new Vector2(-496.533997F, -349.885986F), new Vector2(-495.273987F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-494.014008F, -348.325989F), new Vector2(-492.59201F, -347.936005F), new Vector2(-491.007996F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-489.712006F, -347.936005F), new Vector2(-488.548004F, -348.205994F), new Vector2(-487.515991F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0393() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-521.140015F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-521.97998F, -352.328003F), new Vector2(-522.640015F, -353.018005F), new Vector2(-523.119995F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-523.599976F, -354.769989F), new Vector2(-523.840027F, -355.772003F), new Vector2(-523.840027F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-523.840027F, -358.003998F), new Vector2(-523.599976F, -358.988007F), new Vector2(-523.119995F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-522.640015F, -360.716003F), new Vector2(-521.97998F, -361.394012F), new Vector2(-521.140015F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-520.299988F, -362.377991F), new Vector2(-519.35199F, -362.623993F), new Vector2(-518.296021F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-517.192017F, -362.623993F), new Vector2(-516.226013F, -362.377991F), new Vector2(-515.39801F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-514.570007F, -361.394012F), new Vector2(-513.909973F, -360.716003F), new Vector2(-513.41803F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-512.926025F, -358.988007F), new Vector2(-512.679993F, -358.003998F), new Vector2(-512.679993F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-512.679993F, -355.772003F), new Vector2(-512.919983F, -354.769989F), new Vector2(-513.400024F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-513.880005F, -353.018005F), new Vector2(-514.539978F, -352.328003F), new Vector2(-515.380005F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-516.219971F, -351.320007F), new Vector2(-517.192017F, -351.067993F), new Vector2(-518.296021F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-519.35199F, -351.067993F), new Vector2(-520.299988F, -351.320007F), new Vector2(-521.140015F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-513.742004F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-512.385986F, -349.915985F), new Vector2(-511.312012F, -350.98999F), new Vector2(-510.519989F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-509.727997F, -353.701996F), new Vector2(-509.332001F, -355.220001F), new Vector2(-509.332001F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-509.332001F, -358.556F), new Vector2(-509.727997F, -360.056F), new Vector2(-510.519989F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-511.312012F, -362.743988F), new Vector2(-512.385986F, -363.806F), new Vector2(-513.742004F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-515.098022F, -365.365997F), new Vector2(-516.616028F, -365.756012F), new Vector2(-518.296021F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-519.952026F, -365.756012F), new Vector2(-521.452026F, -365.359985F), new Vector2(-522.796021F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-524.140015F, -363.776001F), new Vector2(-525.208008F, -362.713989F), new Vector2(-526F, -361.381989F)); + builder.AddCubicBezier(new Vector2(-526.791992F, -360.049988F), new Vector2(-527.187988F, -358.556F), new Vector2(-527.187988F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-527.187988F, -355.220001F), new Vector2(-526.791992F, -353.701996F), new Vector2(-526F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-525.208008F, -350.98999F), new Vector2(-524.140015F, -349.915985F), new Vector2(-522.796021F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-521.452026F, -348.332001F), new Vector2(-519.952026F, -347.936005F), new Vector2(-518.296021F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-516.616028F, -347.936005F), new Vector2(-515.098022F, -348.332001F), new Vector2(-513.742004F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0394() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-528.700012F, -362.444F)); + builder.AddLine(new Vector2(-528.700012F, -365.395996F)); + builder.AddLine(new Vector2(-540.364014F, -365.395996F)); + builder.AddLine(new Vector2(-540.364014F, -362.444F)); + builder.AddLine(new Vector2(-528.700012F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-532.911987F, -348.29599F)); + builder.AddLine(new Vector2(-532.911987F, -372.559998F)); + builder.AddLine(new Vector2(-536.151978F, -372.559998F)); + builder.AddLine(new Vector2(-536.151978F, -348.29599F)); + builder.AddLine(new Vector2(-532.911987F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0395() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-553.828003F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-552.651978F, -349.196014F), new Vector2(-551.643982F, -349.928009F), new Vector2(-550.804016F, -350.888F)); + builder.AddLine(new Vector2(-552.892029F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-553.468018F, -352.339996F), new Vector2(-554.15802F, -351.835999F), new Vector2(-554.961975F, -351.5F)); + builder.AddCubicBezier(new Vector2(-555.765991F, -351.164001F), new Vector2(-556.64801F, -350.996002F), new Vector2(-557.607971F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-558.76001F, -350.996002F), new Vector2(-559.780029F, -351.242004F), new Vector2(-560.66803F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-561.55603F, -352.226013F), new Vector2(-562.23999F, -352.921997F), new Vector2(-562.719971F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-563.200012F, -354.721985F), new Vector2(-563.440002F, -355.772003F), new Vector2(-563.440002F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-563.440002F, -358.14801F), new Vector2(-563.211975F, -359.167999F), new Vector2(-562.755981F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-562.299988F, -360.895996F), new Vector2(-561.651978F, -361.567993F), new Vector2(-560.812012F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-559.971985F, -362.528015F), new Vector2(-559F, -362.768005F), new Vector2(-557.895996F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-556.840027F, -362.768005F), new Vector2(-555.940002F, -362.54599F), new Vector2(-555.195984F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-554.452026F, -361.65799F), new Vector2(-553.875977F, -361.033997F), new Vector2(-553.468018F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-553.059998F, -359.425995F), new Vector2(-552.856018F, -358.447998F), new Vector2(-552.856018F, -357.29599F)); + builder.AddLine(new Vector2(-551.66803F, -358.339996F)); + builder.AddLine(new Vector2(-564.375977F, -358.339996F)); + builder.AddLine(new Vector2(-564.375977F, -355.640015F)); + builder.AddLine(new Vector2(-549.940002F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-549.867981F, -355.976013F), new Vector2(-549.820007F, -356.282013F), new Vector2(-549.796021F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-549.771973F, -356.834015F), new Vector2(-549.76001F, -357.09201F), new Vector2(-549.76001F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-549.76001F, -358.963989F), new Vector2(-550.10199F, -360.415985F), new Vector2(-550.786011F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-551.469971F, -362.959991F), new Vector2(-552.424011F, -363.955994F), new Vector2(-553.64801F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-554.872009F, -365.395996F), new Vector2(-556.263977F, -365.756012F), new Vector2(-557.823975F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-559.47998F, -365.756012F), new Vector2(-560.973999F, -365.365997F), new Vector2(-562.30603F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-563.638F, -363.806F), new Vector2(-564.69397F, -362.743988F), new Vector2(-565.473999F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-566.254028F, -360.056F), new Vector2(-566.643982F, -358.544006F), new Vector2(-566.643982F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-566.643982F, -355.160004F), new Vector2(-566.247986F, -353.635986F), new Vector2(-565.455994F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-564.664001F, -350.947998F), new Vector2(-563.590027F, -349.885986F), new Vector2(-562.234009F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-560.877991F, -348.325989F), new Vector2(-559.335999F, -347.936005F), new Vector2(-557.607971F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-556.263977F, -347.936005F), new Vector2(-555.004028F, -348.187988F), new Vector2(-553.828003F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0396() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-579.244019F, -348.29599F)); + builder.AddLine(new Vector2(-579.244019F, -374F)); + builder.AddLine(new Vector2(-582.484009F, -374F)); + builder.AddLine(new Vector2(-582.484009F, -348.29599F)); + builder.AddLine(new Vector2(-579.244019F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-567.364014F, -348.29599F)); + builder.AddLine(new Vector2(-576.364014F, -358.052002F)); + builder.AddLine(new Vector2(-576.507996F, -356.179993F)); + builder.AddLine(new Vector2(-567.687988F, -365.395996F)); + builder.AddLine(new Vector2(-571.64801F, -365.395996F)); + builder.AddLine(new Vector2(-579.531982F, -357.044006F)); + builder.AddLine(new Vector2(-571.539978F, -348.29599F)); + builder.AddLine(new Vector2(-567.364014F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0397() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-587.416016F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-587.031982F, -369.806F), new Vector2(-586.840027F, -370.303986F), new Vector2(-586.840027F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-586.840027F, -371.480011F), new Vector2(-587.031982F, -371.966003F), new Vector2(-587.416016F, -372.362F)); + builder.AddCubicBezier(new Vector2(-587.799988F, -372.757996F), new Vector2(-588.291992F, -372.955994F), new Vector2(-588.892029F, -372.955994F)); + builder.AddCubicBezier(new Vector2(-589.492004F, -372.955994F), new Vector2(-589.984009F, -372.757996F), new Vector2(-590.367981F, -372.362F)); + builder.AddCubicBezier(new Vector2(-590.752014F, -371.966003F), new Vector2(-590.94397F, -371.480011F), new Vector2(-590.94397F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-590.94397F, -370.303986F), new Vector2(-590.752014F, -369.806F), new Vector2(-590.367981F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-589.984009F, -369.014008F), new Vector2(-589.492004F, -368.81601F), new Vector2(-588.892029F, -368.81601F)); + builder.AddCubicBezier(new Vector2(-588.291992F, -368.81601F), new Vector2(-587.799988F, -369.014008F), new Vector2(-587.416016F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-587.271973F, -348.29599F)); + builder.AddLine(new Vector2(-587.271973F, -365.395996F)); + builder.AddLine(new Vector2(-590.547974F, -365.395996F)); + builder.AddLine(new Vector2(-590.547974F, -348.29599F)); + builder.AddLine(new Vector2(-587.271973F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0398() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-595.299988F, -348.29599F)); + builder.AddLine(new Vector2(-595.299988F, -374F)); + builder.AddLine(new Vector2(-598.539978F, -374F)); + builder.AddLine(new Vector2(-598.539978F, -348.29599F)); + builder.AddLine(new Vector2(-595.299988F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0399() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-610.708008F, -374F)); + builder.AddLine(new Vector2(-613.984009F, -374F)); + builder.AddLine(new Vector2(-613.984009F, -361.220001F)); + builder.AddLine(new Vector2(-613.372009F, -357.079987F)); + builder.AddLine(new Vector2(-613.984009F, -352.903992F)); + builder.AddLine(new Vector2(-613.984009F, -348.29599F)); + builder.AddLine(new Vector2(-610.708008F, -348.29599F)); + builder.AddLine(new Vector2(-610.708008F, -374F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-622.030029F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-622.857971F, -352.226013F), new Vector2(-623.505981F, -352.915985F), new Vector2(-623.973999F, -353.803986F)); + builder.AddCubicBezier(new Vector2(-624.442017F, -354.691986F), new Vector2(-624.676025F, -355.712006F), new Vector2(-624.676025F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-624.676025F, -358.015991F), new Vector2(-624.442017F, -359.029999F), new Vector2(-623.973999F, -359.906006F)); + builder.AddCubicBezier(new Vector2(-623.505981F, -360.782013F), new Vector2(-622.864014F, -361.466003F), new Vector2(-622.047974F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-621.231995F, -362.450012F), new Vector2(-620.283997F, -362.696014F), new Vector2(-619.203979F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-618.124023F, -362.696014F), new Vector2(-617.176025F, -362.444F), new Vector2(-616.359985F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-615.544006F, -361.436005F), new Vector2(-614.90802F, -360.746002F), new Vector2(-614.452026F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-613.995972F, -358.993988F), new Vector2(-613.768005F, -357.980011F), new Vector2(-613.768005F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-613.768005F, -355.700012F), new Vector2(-613.995972F, -354.697998F), new Vector2(-614.452026F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-614.90802F, -352.946014F), new Vector2(-615.544006F, -352.256012F), new Vector2(-616.359985F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-617.176025F, -351.247986F), new Vector2(-618.124023F, -350.996002F), new Vector2(-619.203979F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-620.26001F, -350.996002F), new Vector2(-621.202026F, -351.242004F), new Vector2(-622.030029F, -351.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-616.216003F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-615.184021F, -349.286011F), new Vector2(-614.356018F, -350.036011F), new Vector2(-613.731995F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-613.107971F, -351.955994F), new Vector2(-612.76001F, -353.048004F), new Vector2(-612.687988F, -354.272003F)); + builder.AddLine(new Vector2(-612.687988F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-612.76001F, -360.667999F), new Vector2(-613.114014F, -361.765991F), new Vector2(-613.75F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-614.385986F, -363.661987F), new Vector2(-615.219971F, -364.406006F), new Vector2(-616.252014F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-617.283997F, -365.485992F), new Vector2(-618.447998F, -365.756012F), new Vector2(-619.744019F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-621.304016F, -365.756012F), new Vector2(-622.708008F, -365.359985F), new Vector2(-623.955994F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-625.203979F, -363.776001F), new Vector2(-626.19397F, -362.708008F), new Vector2(-626.926025F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-627.65802F, -360.019989F), new Vector2(-628.023987F, -358.507996F), new Vector2(-628.023987F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-628.023987F, -355.14801F), new Vector2(-627.65802F, -353.635986F), new Vector2(-626.926025F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-626.19397F, -350.947998F), new Vector2(-625.203979F, -349.885986F), new Vector2(-623.955994F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-622.708008F, -348.325989F), new Vector2(-621.304016F, -347.936005F), new Vector2(-619.744019F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-618.424011F, -347.936005F), new Vector2(-617.247986F, -348.205994F), new Vector2(-616.216003F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0400() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-631.695984F, -348.29599F)); + builder.AddLine(new Vector2(-631.695984F, -374F)); + builder.AddLine(new Vector2(-634.935974F, -374F)); + builder.AddLine(new Vector2(-634.935974F, -348.29599F)); + builder.AddLine(new Vector2(-631.695984F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0401() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-642.820007F, -348.925995F)); + builder.AddCubicBezier(new Vector2(-641.716003F, -349.537994F), new Vector2(-640.85199F, -350.40799F), new Vector2(-640.228027F, -351.536011F)); + builder.AddCubicBezier(new Vector2(-639.604004F, -352.664001F), new Vector2(-639.291992F, -353.971985F), new Vector2(-639.291992F, -355.459991F)); + builder.AddLine(new Vector2(-639.291992F, -365.395996F)); + builder.AddLine(new Vector2(-642.531982F, -365.395996F)); + builder.AddLine(new Vector2(-642.531982F, -355.604004F)); + builder.AddCubicBezier(new Vector2(-642.531982F, -354.187988F), new Vector2(-642.892029F, -353.078003F), new Vector2(-643.612F, -352.273987F)); + builder.AddCubicBezier(new Vector2(-644.33197F, -351.470001F), new Vector2(-645.328003F, -351.067993F), new Vector2(-646.599976F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-647.440002F, -351.067993F), new Vector2(-648.171997F, -351.247986F), new Vector2(-648.796021F, -351.608002F)); + builder.AddCubicBezier(new Vector2(-649.419983F, -351.967987F), new Vector2(-649.893982F, -352.48999F), new Vector2(-650.218018F, -353.174011F)); + builder.AddCubicBezier(new Vector2(-650.541992F, -353.858002F), new Vector2(-650.703979F, -354.667999F), new Vector2(-650.703979F, -355.604004F)); + builder.AddLine(new Vector2(-650.703979F, -365.395996F)); + builder.AddLine(new Vector2(-653.94397F, -365.395996F)); + builder.AddLine(new Vector2(-653.94397F, -355.459991F)); + builder.AddCubicBezier(new Vector2(-653.94397F, -353.971985F), new Vector2(-653.632019F, -352.664001F), new Vector2(-653.007996F, -351.536011F)); + builder.AddCubicBezier(new Vector2(-652.383972F, -350.40799F), new Vector2(-651.513977F, -349.537994F), new Vector2(-650.39801F, -348.925995F)); + builder.AddCubicBezier(new Vector2(-649.281982F, -348.313995F), new Vector2(-648.015991F, -348.007996F), new Vector2(-646.599976F, -348.007996F)); + builder.AddCubicBezier(new Vector2(-645.184021F, -348.007996F), new Vector2(-643.924011F, -348.313995F), new Vector2(-642.820007F, -348.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0402() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-668.919983F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-669.76001F, -352.328003F), new Vector2(-670.419983F, -353.018005F), new Vector2(-670.900024F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-671.380005F, -354.769989F), new Vector2(-671.619995F, -355.772003F), new Vector2(-671.619995F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-671.619995F, -358.003998F), new Vector2(-671.380005F, -358.988007F), new Vector2(-670.900024F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-670.419983F, -360.716003F), new Vector2(-669.76001F, -361.394012F), new Vector2(-668.919983F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-668.080017F, -362.377991F), new Vector2(-667.132019F, -362.623993F), new Vector2(-666.075989F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-664.971985F, -362.623993F), new Vector2(-664.005981F, -362.377991F), new Vector2(-663.177979F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-662.349976F, -361.394012F), new Vector2(-661.690002F, -360.716003F), new Vector2(-661.197998F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-660.705994F, -358.988007F), new Vector2(-660.460022F, -358.003998F), new Vector2(-660.460022F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-660.460022F, -355.772003F), new Vector2(-660.700012F, -354.769989F), new Vector2(-661.179993F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-661.659973F, -353.018005F), new Vector2(-662.320007F, -352.328003F), new Vector2(-663.159973F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-664F, -351.320007F), new Vector2(-664.971985F, -351.067993F), new Vector2(-666.075989F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-667.132019F, -351.067993F), new Vector2(-668.080017F, -351.320007F), new Vector2(-668.919983F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-661.521973F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-660.166016F, -349.915985F), new Vector2(-659.09198F, -350.98999F), new Vector2(-658.299988F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-657.507996F, -353.701996F), new Vector2(-657.112F, -355.220001F), new Vector2(-657.112F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-657.112F, -358.556F), new Vector2(-657.507996F, -360.056F), new Vector2(-658.299988F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-659.09198F, -362.743988F), new Vector2(-660.166016F, -363.806F), new Vector2(-661.521973F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-662.877991F, -365.365997F), new Vector2(-664.395996F, -365.756012F), new Vector2(-666.075989F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-667.731995F, -365.756012F), new Vector2(-669.231995F, -365.359985F), new Vector2(-670.575989F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-671.919983F, -363.776001F), new Vector2(-672.987976F, -362.713989F), new Vector2(-673.780029F, -361.381989F)); + builder.AddCubicBezier(new Vector2(-674.572021F, -360.049988F), new Vector2(-674.968018F, -358.556F), new Vector2(-674.968018F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-674.968018F, -355.220001F), new Vector2(-674.572021F, -353.701996F), new Vector2(-673.780029F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-672.987976F, -350.98999F), new Vector2(-671.919983F, -349.915985F), new Vector2(-670.575989F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-669.231995F, -348.332001F), new Vector2(-667.731995F, -347.936005F), new Vector2(-666.075989F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-664.395996F, -347.936005F), new Vector2(-662.877991F, -348.332001F), new Vector2(-661.521973F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0403() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-693.580017F, -348.29599F)); + builder.AddLine(new Vector2(-688.612F, -361.18399F)); + builder.AddLine(new Vector2(-689.799988F, -361.18399F)); + builder.AddLine(new Vector2(-684.867981F, -348.29599F)); + builder.AddLine(new Vector2(-682.960022F, -348.29599F)); + builder.AddLine(new Vector2(-676.228027F, -365.395996F)); + builder.AddLine(new Vector2(-679.612F, -365.395996F)); + builder.AddLine(new Vector2(-684.507996F, -352.075989F)); + builder.AddLine(new Vector2(-683.427979F, -352.075989F)); + builder.AddLine(new Vector2(-688.288025F, -365.395996F)); + builder.AddLine(new Vector2(-690.159973F, -365.395996F)); + builder.AddLine(new Vector2(-695.02002F, -352.075989F)); + builder.AddLine(new Vector2(-693.940002F, -352.075989F)); + builder.AddLine(new Vector2(-698.835999F, -365.395996F)); + builder.AddLine(new Vector2(-702.219971F, -365.395996F)); + builder.AddLine(new Vector2(-695.487976F, -348.29599F)); + builder.AddLine(new Vector2(-693.580017F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0404() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-713.127991F, -348.29599F)); + builder.AddLine(new Vector2(-713.127991F, -373.279999F)); + builder.AddLine(new Vector2(-716.512024F, -373.279999F)); + builder.AddLine(new Vector2(-716.512024F, -348.29599F)); + builder.AddLine(new Vector2(-713.127991F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0405() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-732.424011F, -343.328003F)); + builder.AddLine(new Vector2(-730.012024F, -347.791992F)); + builder.AddCubicBezier(new Vector2(-729.700012F, -348.391998F), new Vector2(-729.48999F, -348.877991F), new Vector2(-729.382019F, -349.25F)); + builder.AddCubicBezier(new Vector2(-729.273987F, -349.622009F), new Vector2(-729.219971F, -349.940002F), new Vector2(-729.219971F, -350.20401F)); + builder.AddCubicBezier(new Vector2(-729.219971F, -350.899994F), new Vector2(-729.460022F, -351.481995F), new Vector2(-729.940002F, -351.950012F)); + builder.AddCubicBezier(new Vector2(-730.419983F, -352.417999F), new Vector2(-730.971985F, -352.652008F), new Vector2(-731.596008F, -352.652008F)); + builder.AddCubicBezier(new Vector2(-732.291992F, -352.652008F), new Vector2(-732.867981F, -352.417999F), new Vector2(-733.323975F, -351.950012F)); + builder.AddCubicBezier(new Vector2(-733.780029F, -351.481995F), new Vector2(-734.007996F, -350.899994F), new Vector2(-734.007996F, -350.20401F)); + builder.AddCubicBezier(new Vector2(-734.007996F, -349.579987F), new Vector2(-733.797974F, -349.058014F), new Vector2(-733.377991F, -348.638F)); + builder.AddCubicBezier(new Vector2(-732.958008F, -348.217987F), new Vector2(-732.495972F, -348.007996F), new Vector2(-731.992004F, -348.007996F)); + builder.AddCubicBezier(new Vector2(-731.752014F, -348.007996F), new Vector2(-731.536011F, -348.09201F), new Vector2(-731.343994F, -348.26001F)); + builder.AddCubicBezier(new Vector2(-731.151978F, -348.428009F), new Vector2(-730.995972F, -348.644012F), new Vector2(-730.875977F, -348.90799F)); + builder.AddLine(new Vector2(-732.028015F, -348.619995F)); + builder.AddLine(new Vector2(-734.26001F, -344.335999F)); + builder.AddLine(new Vector2(-732.424011F, -343.328003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0406() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-746.176025F, -341.131989F)); + builder.AddLine(new Vector2(-742.935974F, -348.152008F)); + builder.AddLine(new Vector2(-744.771973F, -351.463989F)); + builder.AddLine(new Vector2(-749.776001F, -341.131989F)); + builder.AddLine(new Vector2(-746.176025F, -341.131989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-742.935974F, -348.152008F)); + builder.AddLine(new Vector2(-734.94397F, -365.395996F)); + builder.AddLine(new Vector2(-738.544006F, -365.395996F)); + builder.AddLine(new Vector2(-744.340027F, -351.895996F)); + builder.AddLine(new Vector2(-743.187988F, -351.895996F)); + builder.AddLine(new Vector2(-748.695984F, -365.395996F)); + builder.AddLine(new Vector2(-752.296021F, -365.395996F)); + builder.AddLine(new Vector2(-744.880005F, -348.152008F)); + builder.AddLine(new Vector2(-742.935974F, -348.152008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0407() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-755.247986F, -348.29599F)); + builder.AddLine(new Vector2(-755.247986F, -374F)); + builder.AddLine(new Vector2(-758.487976F, -374F)); + builder.AddLine(new Vector2(-758.487976F, -348.29599F)); + builder.AddLine(new Vector2(-755.247986F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0408() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-761.656006F, -362.444F)); + builder.AddLine(new Vector2(-761.656006F, -365.395996F)); + builder.AddLine(new Vector2(-773.320007F, -365.395996F)); + builder.AddLine(new Vector2(-773.320007F, -362.444F)); + builder.AddLine(new Vector2(-761.656006F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-765.867981F, -348.29599F)); + builder.AddLine(new Vector2(-765.867981F, -372.559998F)); + builder.AddLine(new Vector2(-769.107971F, -372.559998F)); + builder.AddLine(new Vector2(-769.107971F, -348.29599F)); + builder.AddLine(new Vector2(-765.867981F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0409() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-777.08197F, -349.339996F)); + builder.AddCubicBezier(new Vector2(-775.942017F, -350.276001F), new Vector2(-775.372009F, -351.548004F), new Vector2(-775.372009F, -353.156006F)); + builder.AddCubicBezier(new Vector2(-775.372009F, -354.212006F), new Vector2(-775.593994F, -355.063995F), new Vector2(-776.038025F, -355.712006F)); + builder.AddCubicBezier(new Vector2(-776.481995F, -356.359985F), new Vector2(-777.052002F, -356.876007F), new Vector2(-777.747986F, -357.26001F)); + builder.AddCubicBezier(new Vector2(-778.44397F, -357.644012F), new Vector2(-779.176025F, -357.950012F), new Vector2(-779.94397F, -358.178009F)); + builder.AddCubicBezier(new Vector2(-780.711975F, -358.406006F), new Vector2(-781.450012F, -358.627991F), new Vector2(-782.15802F, -358.843994F)); + builder.AddCubicBezier(new Vector2(-782.866028F, -359.059998F), new Vector2(-783.435974F, -359.324005F), new Vector2(-783.867981F, -359.635986F)); + builder.AddCubicBezier(new Vector2(-784.299988F, -359.947998F), new Vector2(-784.515991F, -360.391998F), new Vector2(-784.515991F, -360.967987F)); + builder.AddCubicBezier(new Vector2(-784.515991F, -361.519989F), new Vector2(-784.27002F, -361.963989F), new Vector2(-783.778015F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-783.286011F, -362.635986F), new Vector2(-782.572021F, -362.803986F), new Vector2(-781.635986F, -362.803986F)); + builder.AddCubicBezier(new Vector2(-780.747986F, -362.803986F), new Vector2(-779.955994F, -362.635986F), new Vector2(-779.26001F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-778.564026F, -361.963989F), new Vector2(-777.963989F, -361.484009F), new Vector2(-777.460022F, -360.859985F)); + builder.AddLine(new Vector2(-775.372009F, -362.947998F)); + builder.AddCubicBezier(new Vector2(-776.044006F, -363.884003F), new Vector2(-776.901978F, -364.585999F), new Vector2(-777.945984F, -365.053986F)); + builder.AddCubicBezier(new Vector2(-778.98999F, -365.522003F), new Vector2(-780.184021F, -365.756012F), new Vector2(-781.528015F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-782.799988F, -365.756012F), new Vector2(-783.892029F, -365.552002F), new Vector2(-784.804016F, -365.144012F)); + builder.AddCubicBezier(new Vector2(-785.716003F, -364.735992F), new Vector2(-786.41803F, -364.153992F), new Vector2(-786.909973F, -363.39801F)); + builder.AddCubicBezier(new Vector2(-787.401978F, -362.641998F), new Vector2(-787.64801F, -361.747986F), new Vector2(-787.64801F, -360.716003F)); + builder.AddCubicBezier(new Vector2(-787.64801F, -359.68399F), new Vector2(-787.426025F, -358.850006F), new Vector2(-786.981995F, -358.213989F)); + builder.AddCubicBezier(new Vector2(-786.538025F, -357.578003F), new Vector2(-785.968018F, -357.079987F), new Vector2(-785.271973F, -356.720001F)); + builder.AddCubicBezier(new Vector2(-784.575989F, -356.359985F), new Vector2(-783.838013F, -356.071991F), new Vector2(-783.057983F, -355.855988F)); + builder.AddCubicBezier(new Vector2(-782.278015F, -355.640015F), new Vector2(-781.539978F, -355.417999F), new Vector2(-780.843994F, -355.190002F)); + builder.AddCubicBezier(new Vector2(-780.14801F, -354.962006F), new Vector2(-779.578003F, -354.674011F), new Vector2(-779.133972F, -354.325989F)); + builder.AddCubicBezier(new Vector2(-778.690002F, -353.977997F), new Vector2(-778.468018F, -353.492004F), new Vector2(-778.468018F, -352.868011F)); + builder.AddCubicBezier(new Vector2(-778.468018F, -352.243988F), new Vector2(-778.744019F, -351.757996F), new Vector2(-779.296021F, -351.410004F)); + builder.AddCubicBezier(new Vector2(-779.848022F, -351.062012F), new Vector2(-780.627991F, -350.888F), new Vector2(-781.635986F, -350.888F)); + builder.AddCubicBezier(new Vector2(-782.643982F, -350.888F), new Vector2(-783.55603F, -351.074005F), new Vector2(-784.372009F, -351.446014F)); + builder.AddCubicBezier(new Vector2(-785.187988F, -351.817993F), new Vector2(-785.90802F, -352.388F), new Vector2(-786.531982F, -353.156006F)); + builder.AddLine(new Vector2(-788.619995F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-788.09198F, -350.420013F), new Vector2(-787.473999F, -349.862F), new Vector2(-786.765991F, -349.394012F)); + builder.AddCubicBezier(new Vector2(-786.057983F, -348.925995F), new Vector2(-785.271973F, -348.56601F), new Vector2(-784.40802F, -348.313995F)); + builder.AddCubicBezier(new Vector2(-783.544006F, -348.062012F), new Vector2(-782.632019F, -347.936005F), new Vector2(-781.671997F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-779.752014F, -347.936005F), new Vector2(-778.221985F, -348.403992F), new Vector2(-777.08197F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0410() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-796.791992F, -361.544006F)); + builder.AddCubicBezier(new Vector2(-796.023987F, -362.312012F), new Vector2(-795.039978F, -362.696014F), new Vector2(-793.840027F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-793.263977F, -362.696014F), new Vector2(-792.76001F, -362.612F), new Vector2(-792.328003F, -362.444F)); + builder.AddCubicBezier(new Vector2(-791.895996F, -362.276001F), new Vector2(-791.5F, -362F), new Vector2(-791.140015F, -361.615997F)); + builder.AddLine(new Vector2(-789.015991F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-789.616028F, -364.507996F), new Vector2(-790.263977F, -365.006012F), new Vector2(-790.960022F, -365.306F)); + builder.AddCubicBezier(new Vector2(-791.656006F, -365.605988F), new Vector2(-792.435974F, -365.756012F), new Vector2(-793.299988F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-795.195984F, -365.756012F), new Vector2(-796.64801F, -365.108002F), new Vector2(-797.656006F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-798.664001F, -362.515991F), new Vector2(-799.16803F, -360.776001F), new Vector2(-799.16803F, -358.59201F)); + builder.AddLine(new Vector2(-797.94397F, -358.015991F)); + builder.AddCubicBezier(new Vector2(-797.94397F, -359.600006F), new Vector2(-797.559998F, -360.776001F), new Vector2(-796.791992F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-797.94397F, -348.29599F)); + builder.AddLine(new Vector2(-797.94397F, -365.395996F)); + builder.AddLine(new Vector2(-801.184021F, -365.395996F)); + builder.AddLine(new Vector2(-801.184021F, -348.29599F)); + builder.AddLine(new Vector2(-797.94397F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // - - Offset:<964, 609> + CanvasGeometry Geometry_0411() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-806.116028F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-805.731995F, -369.806F), new Vector2(-805.539978F, -370.303986F), new Vector2(-805.539978F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-805.539978F, -371.480011F), new Vector2(-805.731995F, -371.966003F), new Vector2(-806.116028F, -372.362F)); + builder.AddCubicBezier(new Vector2(-806.5F, -372.757996F), new Vector2(-806.992004F, -372.955994F), new Vector2(-807.59198F, -372.955994F)); + builder.AddCubicBezier(new Vector2(-808.192017F, -372.955994F), new Vector2(-808.684021F, -372.757996F), new Vector2(-809.067993F, -372.362F)); + builder.AddCubicBezier(new Vector2(-809.452026F, -371.966003F), new Vector2(-809.643982F, -371.480011F), new Vector2(-809.643982F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-809.643982F, -370.303986F), new Vector2(-809.452026F, -369.806F), new Vector2(-809.067993F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-808.684021F, -369.014008F), new Vector2(-808.192017F, -368.81601F), new Vector2(-807.59198F, -368.81601F)); + builder.AddCubicBezier(new Vector2(-806.992004F, -368.81601F), new Vector2(-806.5F, -369.014008F), new Vector2(-806.116028F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-805.971985F, -348.29599F)); + builder.AddLine(new Vector2(-805.971985F, -365.395996F)); + builder.AddLine(new Vector2(-809.247986F, -365.395996F)); + builder.AddLine(new Vector2(-809.247986F, -348.29599F)); + builder.AddLine(new Vector2(-805.971985F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CanvasGeometry Geometry_0412() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-813.099976F, -370.18399F)); + builder.AddLine(new Vector2(-813.099976F, -373.279999F)); + builder.AddLine(new Vector2(-826.744019F, -373.279999F)); + builder.AddLine(new Vector2(-826.744019F, -370.18399F)); + builder.AddLine(new Vector2(-813.099976F, -370.18399F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-813.711975F, -359.276001F)); + builder.AddLine(new Vector2(-813.711975F, -362.372009F)); + builder.AddLine(new Vector2(-826.744019F, -362.372009F)); + builder.AddLine(new Vector2(-826.744019F, -359.276001F)); + builder.AddLine(new Vector2(-813.711975F, -359.276001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-825.664001F, -348.29599F)); + builder.AddLine(new Vector2(-825.664001F, -373.279999F)); + builder.AddLine(new Vector2(-829.047974F, -373.279999F)); + builder.AddLine(new Vector2(-829.047974F, -348.29599F)); + builder.AddLine(new Vector2(-825.664001F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0413() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(71.9779968F, -132.638F)); + builder.AddCubicBezier(new Vector2(72.4219971F, -133.106003F), new Vector2(72.6439972F, -133.664001F), new Vector2(72.6439972F, -134.311996F)); + builder.AddCubicBezier(new Vector2(72.6439972F, -134.983994F), new Vector2(72.4219971F, -135.542007F), new Vector2(71.9779968F, -135.985992F)); + builder.AddCubicBezier(new Vector2(71.5339966F, -136.429993F), new Vector2(70.9759979F, -136.651993F), new Vector2(70.3040009F, -136.651993F)); + builder.AddCubicBezier(new Vector2(69.6080017F, -136.651993F), new Vector2(69.0439987F, -136.429993F), new Vector2(68.6119995F, -135.985992F)); + builder.AddCubicBezier(new Vector2(68.1800003F, -135.542007F), new Vector2(67.9639969F, -134.983994F), new Vector2(67.9639969F, -134.311996F)); + builder.AddCubicBezier(new Vector2(67.9639969F, -133.664001F), new Vector2(68.1800003F, -133.106003F), new Vector2(68.6119995F, -132.638F)); + builder.AddCubicBezier(new Vector2(69.0439987F, -132.169998F), new Vector2(69.6080017F, -131.936005F), new Vector2(70.3040009F, -131.936005F)); + builder.AddCubicBezier(new Vector2(70.9759979F, -131.936005F), new Vector2(71.5339966F, -132.169998F), new Vector2(71.9779968F, -132.638F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0414() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(62.7080002F, -132.296005F)); + builder.AddLine(new Vector2(62.7080002F, -158F)); + builder.AddLine(new Vector2(59.4679985F, -158F)); + builder.AddLine(new Vector2(59.4679985F, -132.296005F)); + builder.AddLine(new Vector2(62.7080002F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0415() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(54.7519989F, -132.296005F)); + builder.AddLine(new Vector2(54.7519989F, -149.395996F)); + builder.AddLine(new Vector2(51.4760017F, -149.395996F)); + builder.AddLine(new Vector2(51.4760017F, -145.220001F)); + builder.AddLine(new Vector2(52.0880013F, -141.080002F)); + builder.AddLine(new Vector2(51.4760017F, -136.904007F)); + builder.AddLine(new Vector2(51.4760017F, -132.296005F)); + builder.AddLine(new Vector2(54.7519989F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(43.4480019F, -135.751999F)); + builder.AddCubicBezier(new Vector2(42.6080017F, -136.255997F), new Vector2(41.9539986F, -136.945999F), new Vector2(41.4860001F, -137.822006F)); + builder.AddCubicBezier(new Vector2(41.0180016F, -138.697998F), new Vector2(40.7840004F, -139.712006F), new Vector2(40.7840004F, -140.863998F)); + builder.AddCubicBezier(new Vector2(40.7840004F, -141.992004F), new Vector2(41.0180016F, -142.994003F), new Vector2(41.4860001F, -143.869995F)); + builder.AddCubicBezier(new Vector2(41.9539986F, -144.746002F), new Vector2(42.6020012F, -145.436005F), new Vector2(43.4300003F, -145.940002F)); + builder.AddCubicBezier(new Vector2(44.2579994F, -146.444F), new Vector2(45.2120018F, -146.695999F), new Vector2(46.2919998F, -146.695999F)); + builder.AddCubicBezier(new Vector2(47.3720016F, -146.695999F), new Vector2(48.3139992F, -146.449997F), new Vector2(49.118F, -145.957993F)); + builder.AddCubicBezier(new Vector2(49.9220009F, -145.466003F), new Vector2(50.5519981F, -144.776001F), new Vector2(51.0079994F, -143.888F)); + builder.AddCubicBezier(new Vector2(51.4640007F, -143F), new Vector2(51.6920013F, -141.979996F), new Vector2(51.6920013F, -140.828003F)); + builder.AddCubicBezier(new Vector2(51.6920013F, -139.123993F), new Vector2(51.2000008F, -137.725998F), new Vector2(50.2159996F, -136.634003F)); + builder.AddCubicBezier(new Vector2(49.2319984F, -135.542007F), new Vector2(47.9360008F, -134.996002F), new Vector2(46.3279991F, -134.996002F)); + builder.AddCubicBezier(new Vector2(45.2480011F, -134.996002F), new Vector2(44.2879982F, -135.248001F), new Vector2(43.4480019F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(49.2799988F, -132.746002F)); + builder.AddCubicBezier(new Vector2(50.3120003F, -133.285995F), new Vector2(51.1339989F, -134.035995F), new Vector2(51.7459984F, -134.996002F)); + builder.AddCubicBezier(new Vector2(52.3580017F, -135.955994F), new Vector2(52.7000008F, -137.048004F), new Vector2(52.7719994F, -138.272003F)); + builder.AddLine(new Vector2(52.7719994F, -143.419998F)); + builder.AddCubicBezier(new Vector2(52.7000008F, -144.667999F), new Vector2(52.3520012F, -145.766006F), new Vector2(51.7280006F, -146.714005F)); + builder.AddCubicBezier(new Vector2(51.1040001F, -147.662003F), new Vector2(50.2820015F, -148.406006F), new Vector2(49.262001F, -148.945999F)); + builder.AddCubicBezier(new Vector2(48.2420006F, -149.485992F), new Vector2(47.0839996F, -149.755997F), new Vector2(45.7879982F, -149.755997F)); + builder.AddCubicBezier(new Vector2(44.2039986F, -149.755997F), new Vector2(42.7820015F, -149.360001F), new Vector2(41.5219994F, -148.567993F)); + builder.AddCubicBezier(new Vector2(40.262001F, -147.776001F), new Vector2(39.2659988F, -146.707993F), new Vector2(38.5340004F, -145.363998F)); + builder.AddCubicBezier(new Vector2(37.8019981F, -144.020004F), new Vector2(37.4360008F, -142.507996F), new Vector2(37.4360008F, -140.828003F)); + builder.AddCubicBezier(new Vector2(37.4360008F, -139.147995F), new Vector2(37.8019981F, -137.636002F), new Vector2(38.5340004F, -136.292007F)); + builder.AddCubicBezier(new Vector2(39.2659988F, -134.947998F), new Vector2(40.262001F, -133.886002F), new Vector2(41.5219994F, -133.106003F)); + builder.AddCubicBezier(new Vector2(42.7820015F, -132.326004F), new Vector2(44.2039986F, -131.936005F), new Vector2(45.7879982F, -131.936005F)); + builder.AddCubicBezier(new Vector2(47.0839996F, -131.936005F), new Vector2(48.2480011F, -132.205994F), new Vector2(49.2799988F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0416() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(35.8880005F, -146.444F)); + builder.AddLine(new Vector2(35.8880005F, -149.395996F)); + builder.AddLine(new Vector2(24.2240009F, -149.395996F)); + builder.AddLine(new Vector2(24.2240009F, -146.444F)); + builder.AddLine(new Vector2(35.8880005F, -146.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(31.6760006F, -132.296005F)); + builder.AddLine(new Vector2(31.6760006F, -156.559998F)); + builder.AddLine(new Vector2(28.4360008F, -156.559998F)); + builder.AddLine(new Vector2(28.4360008F, -132.296005F)); + builder.AddLine(new Vector2(31.6760006F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0417() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(20.8759995F, -153.410004F)); + builder.AddCubicBezier(new Vector2(21.2600002F, -153.806F), new Vector2(21.4519997F, -154.304001F), new Vector2(21.4519997F, -154.904007F)); + builder.AddCubicBezier(new Vector2(21.4519997F, -155.479996F), new Vector2(21.2600002F, -155.966003F), new Vector2(20.8759995F, -156.362F)); + builder.AddCubicBezier(new Vector2(20.4920006F, -156.757996F), new Vector2(20F, -156.955994F), new Vector2(19.3999996F, -156.955994F)); + builder.AddCubicBezier(new Vector2(18.7999992F, -156.955994F), new Vector2(18.3080006F, -156.757996F), new Vector2(17.9239998F, -156.362F)); + builder.AddCubicBezier(new Vector2(17.5400009F, -155.966003F), new Vector2(17.3479996F, -155.479996F), new Vector2(17.3479996F, -154.904007F)); + builder.AddCubicBezier(new Vector2(17.3479996F, -154.304001F), new Vector2(17.5400009F, -153.806F), new Vector2(17.9239998F, -153.410004F)); + builder.AddCubicBezier(new Vector2(18.3080006F, -153.014008F), new Vector2(18.7999992F, -152.815994F), new Vector2(19.3999996F, -152.815994F)); + builder.AddCubicBezier(new Vector2(20F, -152.815994F), new Vector2(20.4920006F, -153.014008F), new Vector2(20.8759995F, -153.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(21.0200005F, -132.296005F)); + builder.AddLine(new Vector2(21.0200005F, -149.395996F)); + builder.AddLine(new Vector2(17.7439995F, -149.395996F)); + builder.AddLine(new Vector2(17.7439995F, -132.296005F)); + builder.AddLine(new Vector2(21.0200005F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0418() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(2.42600012F, -135.751999F)); + builder.AddCubicBezier(new Vector2(1.59800005F, -136.255997F), new Vector2(0.962000012F, -136.945999F), new Vector2(0.518000007F, -137.822006F)); + builder.AddCubicBezier(new Vector2(0.074000001F, -138.697998F), new Vector2(-0.148000002F, -139.699997F), new Vector2(-0.148000002F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-0.148000002F, -141.979996F), new Vector2(0.0799999982F, -142.994003F), new Vector2(0.536000013F, -143.869995F)); + builder.AddCubicBezier(new Vector2(0.991999984F, -144.746002F), new Vector2(1.62800002F, -145.436005F), new Vector2(2.44400001F, -145.940002F)); + builder.AddCubicBezier(new Vector2(3.25999999F, -146.444F), new Vector2(4.1960001F, -146.695999F), new Vector2(5.25199986F, -146.695999F)); + builder.AddCubicBezier(new Vector2(6.33199978F, -146.695999F), new Vector2(7.28000021F, -146.444F), new Vector2(8.09599972F, -145.940002F)); + builder.AddCubicBezier(new Vector2(8.9119997F, -145.436005F), new Vector2(9.5539999F, -144.746002F), new Vector2(10.0220003F, -143.869995F)); + builder.AddCubicBezier(new Vector2(10.4899998F, -142.994003F), new Vector2(10.724F, -141.992004F), new Vector2(10.724F, -140.863998F)); + builder.AddCubicBezier(new Vector2(10.724F, -139.712006F), new Vector2(10.4899998F, -138.697998F), new Vector2(10.0220003F, -137.822006F)); + builder.AddCubicBezier(new Vector2(9.5539999F, -136.945999F), new Vector2(8.9119997F, -136.255997F), new Vector2(8.09599972F, -135.751999F)); + builder.AddCubicBezier(new Vector2(7.28000021F, -135.248001F), new Vector2(6.33199978F, -134.996002F), new Vector2(5.25199986F, -134.996002F)); + builder.AddCubicBezier(new Vector2(4.1960001F, -134.996002F), new Vector2(3.25399995F, -135.248001F), new Vector2(2.42600012F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(0.0320000015F, -125.132004F)); + builder.AddLine(new Vector2(0.0320000015F, -136.580002F)); + builder.AddLine(new Vector2(-0.579999983F, -140.755997F)); + builder.AddLine(new Vector2(0.0320000015F, -144.895996F)); + builder.AddLine(new Vector2(0.0320000015F, -149.395996F)); + builder.AddLine(new Vector2(-3.20799994F, -149.395996F)); + builder.AddLine(new Vector2(-3.20799994F, -125.132004F)); + builder.AddLine(new Vector2(0.0320000015F, -125.132004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(10.0220003F, -133.106003F)); + builder.AddCubicBezier(new Vector2(11.2819996F, -133.886002F), new Vector2(12.2720003F, -134.947998F), new Vector2(12.9919996F, -136.292007F)); + builder.AddCubicBezier(new Vector2(13.7119999F, -137.636002F), new Vector2(14.0719995F, -139.147995F), new Vector2(14.0719995F, -140.828003F)); + builder.AddCubicBezier(new Vector2(14.0719995F, -142.507996F), new Vector2(13.7119999F, -144.020004F), new Vector2(12.9919996F, -145.363998F)); + builder.AddCubicBezier(new Vector2(12.2720003F, -146.707993F), new Vector2(11.2819996F, -147.776001F), new Vector2(10.0220003F, -148.567993F)); + builder.AddCubicBezier(new Vector2(8.76200008F, -149.360001F), new Vector2(7.35200024F, -149.755997F), new Vector2(5.79199982F, -149.755997F)); + builder.AddCubicBezier(new Vector2(4.51999998F, -149.755997F), new Vector2(3.36199999F, -149.485992F), new Vector2(2.31800008F, -148.945999F)); + builder.AddCubicBezier(new Vector2(1.27400005F, -148.406006F), new Vector2(0.433999985F, -147.662003F), new Vector2(-0.202000007F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-0.838F, -145.766006F), new Vector2(-1.19200003F, -144.667999F), new Vector2(-1.26400006F, -143.419998F)); + builder.AddLine(new Vector2(-1.26400006F, -138.272003F)); + builder.AddCubicBezier(new Vector2(-1.19200003F, -137.048004F), new Vector2(-0.843999982F, -135.955994F), new Vector2(-0.219999999F, -134.996002F)); + builder.AddCubicBezier(new Vector2(0.404000014F, -134.035995F), new Vector2(1.23800004F, -133.285995F), new Vector2(2.28200006F, -132.746002F)); + builder.AddCubicBezier(new Vector2(3.32599998F, -132.205994F), new Vector2(4.49599981F, -131.936005F), new Vector2(5.79199982F, -131.936005F)); + builder.AddCubicBezier(new Vector2(7.35200024F, -131.936005F), new Vector2(8.76200008F, -132.326004F), new Vector2(10.0220003F, -133.106003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0419() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-8.5539999F, -133.339996F)); + builder.AddCubicBezier(new Vector2(-7.41400003F, -134.276001F), new Vector2(-6.84399986F, -135.548004F), new Vector2(-6.84399986F, -137.156006F)); + builder.AddCubicBezier(new Vector2(-6.84399986F, -138.212006F), new Vector2(-7.06599998F, -139.063995F), new Vector2(-7.51000023F, -139.712006F)); + builder.AddCubicBezier(new Vector2(-7.954F, -140.360001F), new Vector2(-8.52400017F, -140.876007F), new Vector2(-9.22000027F, -141.259995F)); + builder.AddCubicBezier(new Vector2(-9.91600037F, -141.643997F), new Vector2(-10.6479998F, -141.949997F), new Vector2(-11.4160004F, -142.177994F)); + builder.AddCubicBezier(new Vector2(-12.184F, -142.406006F), new Vector2(-12.9219999F, -142.628006F), new Vector2(-13.6300001F, -142.843994F)); + builder.AddCubicBezier(new Vector2(-14.3380003F, -143.059998F), new Vector2(-14.908F, -143.324005F), new Vector2(-15.3400002F, -143.636002F)); + builder.AddCubicBezier(new Vector2(-15.7720003F, -143.947998F), new Vector2(-15.9879999F, -144.391998F), new Vector2(-15.9879999F, -144.968002F)); + builder.AddCubicBezier(new Vector2(-15.9879999F, -145.520004F), new Vector2(-15.7419996F, -145.964005F), new Vector2(-15.25F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-14.7580004F, -146.636002F), new Vector2(-14.0439997F, -146.804001F), new Vector2(-13.1079998F, -146.804001F)); + builder.AddCubicBezier(new Vector2(-12.2200003F, -146.804001F), new Vector2(-11.4280005F, -146.636002F), new Vector2(-10.7320004F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-10.0360003F, -145.964005F), new Vector2(-9.43599987F, -145.483994F), new Vector2(-8.93200016F, -144.860001F)); + builder.AddLine(new Vector2(-6.84399986F, -146.947998F)); + builder.AddCubicBezier(new Vector2(-7.51599979F, -147.884003F), new Vector2(-8.3739996F, -148.585999F), new Vector2(-9.41800022F, -149.054001F)); + builder.AddCubicBezier(new Vector2(-10.4619999F, -149.522003F), new Vector2(-11.6560001F, -149.755997F), new Vector2(-13F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-14.2720003F, -149.755997F), new Vector2(-15.3640003F, -149.552002F), new Vector2(-16.2759991F, -149.143997F)); + builder.AddCubicBezier(new Vector2(-17.1879997F, -148.735992F), new Vector2(-17.8899994F, -148.154007F), new Vector2(-18.382F, -147.397995F)); + builder.AddCubicBezier(new Vector2(-18.8740005F, -146.641998F), new Vector2(-19.1200008F, -145.748001F), new Vector2(-19.1200008F, -144.716003F)); + builder.AddCubicBezier(new Vector2(-19.1200008F, -143.684006F), new Vector2(-18.8980007F, -142.850006F), new Vector2(-18.4540005F, -142.214005F)); + builder.AddCubicBezier(new Vector2(-18.0100002F, -141.578003F), new Vector2(-17.4400005F, -141.080002F), new Vector2(-16.7439995F, -140.720001F)); + builder.AddCubicBezier(new Vector2(-16.0480003F, -140.360001F), new Vector2(-15.3100004F, -140.072006F), new Vector2(-14.5299997F, -139.856003F)); + builder.AddCubicBezier(new Vector2(-13.75F, -139.639999F), new Vector2(-13.0120001F, -139.417999F), new Vector2(-12.316F, -139.190002F)); + builder.AddCubicBezier(new Vector2(-11.6199999F, -138.962006F), new Vector2(-11.0500002F, -138.673996F), new Vector2(-10.6059999F, -138.326004F)); + builder.AddCubicBezier(new Vector2(-10.1619997F, -137.977997F), new Vector2(-9.93999958F, -137.492004F), new Vector2(-9.93999958F, -136.867996F)); + builder.AddCubicBezier(new Vector2(-9.93999958F, -136.244003F), new Vector2(-10.2159996F, -135.757996F), new Vector2(-10.7679996F, -135.410004F)); + builder.AddCubicBezier(new Vector2(-11.3199997F, -135.061996F), new Vector2(-12.1000004F, -134.888F), new Vector2(-13.1079998F, -134.888F)); + builder.AddCubicBezier(new Vector2(-14.1160002F, -134.888F), new Vector2(-15.0279999F, -135.074005F), new Vector2(-15.8439999F, -135.445999F)); + builder.AddCubicBezier(new Vector2(-16.6599998F, -135.817993F), new Vector2(-17.3799992F, -136.388F), new Vector2(-18.0039997F, -137.156006F)); + builder.AddLine(new Vector2(-20.0919991F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-19.5639992F, -134.419998F), new Vector2(-18.9459991F, -133.862F), new Vector2(-18.2380009F, -133.393997F)); + builder.AddCubicBezier(new Vector2(-17.5300007F, -132.925995F), new Vector2(-16.7439995F, -132.565994F), new Vector2(-15.8800001F, -132.313995F)); + builder.AddCubicBezier(new Vector2(-15.0159998F, -132.061996F), new Vector2(-14.1040001F, -131.936005F), new Vector2(-13.1440001F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-11.224F, -131.936005F), new Vector2(-9.69400024F, -132.404007F), new Vector2(-8.5539999F, -133.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0420() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-33.987999F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-34.8279991F, -136.328003F), new Vector2(-35.487999F, -137.018005F), new Vector2(-35.9679985F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-36.4480019F, -138.770004F), new Vector2(-36.6879997F, -139.772003F), new Vector2(-36.6879997F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-36.6879997F, -142.003998F), new Vector2(-36.4480019F, -142.988007F), new Vector2(-35.9679985F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-35.487999F, -144.716003F), new Vector2(-34.8279991F, -145.393997F), new Vector2(-33.987999F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-33.1479988F, -146.378006F), new Vector2(-32.2000008F, -146.623993F), new Vector2(-31.1439991F, -146.623993F)); + builder.AddCubicBezier(new Vector2(-30.0400009F, -146.623993F), new Vector2(-29.0739994F, -146.378006F), new Vector2(-28.2460003F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-27.4179993F, -145.393997F), new Vector2(-26.7579994F, -144.716003F), new Vector2(-26.2660007F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-25.7740002F, -142.988007F), new Vector2(-25.5279999F, -142.003998F), new Vector2(-25.5279999F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-25.5279999F, -139.772003F), new Vector2(-25.7679996F, -138.770004F), new Vector2(-26.2479992F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-26.7280006F, -137.018005F), new Vector2(-27.3880005F, -136.328003F), new Vector2(-28.2280006F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-29.0680008F, -135.320007F), new Vector2(-30.0400009F, -135.067993F), new Vector2(-31.1439991F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-32.2000008F, -135.067993F), new Vector2(-33.1479988F, -135.320007F), new Vector2(-33.987999F, -135.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-26.5900002F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-25.2339993F, -133.916F), new Vector2(-24.1599998F, -134.990005F), new Vector2(-23.368F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-22.5760002F, -137.701996F), new Vector2(-22.1800003F, -139.220001F), new Vector2(-22.1800003F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-22.1800003F, -142.556F), new Vector2(-22.5760002F, -144.056F), new Vector2(-23.368F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-24.1599998F, -146.744003F), new Vector2(-25.2339993F, -147.806F), new Vector2(-26.5900002F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-27.9459991F, -149.365997F), new Vector2(-29.4640007F, -149.755997F), new Vector2(-31.1439991F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-32.7999992F, -149.755997F), new Vector2(-34.2999992F, -149.360001F), new Vector2(-35.644001F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-36.987999F, -147.776001F), new Vector2(-38.0559998F, -146.714005F), new Vector2(-38.8479996F, -145.382004F)); + builder.AddCubicBezier(new Vector2(-39.6399994F, -144.050003F), new Vector2(-40.0359993F, -142.556F), new Vector2(-40.0359993F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-40.0359993F, -139.220001F), new Vector2(-39.6399994F, -137.701996F), new Vector2(-38.8479996F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-38.0559998F, -134.990005F), new Vector2(-36.987999F, -133.916F), new Vector2(-35.644001F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-34.2999992F, -132.332001F), new Vector2(-32.7999992F, -131.936005F), new Vector2(-31.1439991F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-29.4640007F, -131.936005F), new Vector2(-27.9459991F, -132.332001F), new Vector2(-26.5900002F, -133.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0421() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-55.4080009F, -132.296005F)); + builder.AddLine(new Vector2(-55.4080009F, -158F)); + builder.AddLine(new Vector2(-58.6479988F, -158F)); + builder.AddLine(new Vector2(-58.6479988F, -132.296005F)); + builder.AddLine(new Vector2(-55.4080009F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-43.3120003F, -132.296005F)); + builder.AddLine(new Vector2(-43.3120003F, -142.916F)); + builder.AddCubicBezier(new Vector2(-43.3120003F, -144.259995F), new Vector2(-43.5999985F, -145.447998F), new Vector2(-44.1759987F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-44.7519989F, -147.511993F), new Vector2(-45.5379982F, -148.315994F), new Vector2(-46.5340004F, -148.891998F)); + builder.AddCubicBezier(new Vector2(-47.5299988F, -149.468002F), new Vector2(-48.6759987F, -149.755997F), new Vector2(-49.9720001F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-51.2680016F, -149.755997F), new Vector2(-52.4319992F, -149.462006F), new Vector2(-53.4640007F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-54.4959984F, -148.285995F), new Vector2(-55.2999992F, -147.488007F), new Vector2(-55.8759995F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-56.4519997F, -145.472F), new Vector2(-56.7400017F, -144.320007F), new Vector2(-56.7400017F, -143.024002F)); + builder.AddLine(new Vector2(-55.4080009F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-55.4080009F, -143.132004F), new Vector2(-55.2159996F, -143.899994F), new Vector2(-54.8320007F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-54.4480019F, -145.244003F), new Vector2(-53.9199982F, -145.772003F), new Vector2(-53.2480011F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-52.5760002F, -146.539993F), new Vector2(-51.8079987F, -146.731995F), new Vector2(-50.9440002F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-49.6479988F, -146.731995F), new Vector2(-48.5979996F, -146.311996F), new Vector2(-47.7939987F, -145.472F)); + builder.AddCubicBezier(new Vector2(-46.9900017F, -144.632004F), new Vector2(-46.5880013F, -143.563995F), new Vector2(-46.5880013F, -142.268005F)); + builder.AddLine(new Vector2(-46.5880013F, -132.296005F)); + builder.AddLine(new Vector2(-43.3120003F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0422() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-73.6959991F, -132.692001F)); + builder.AddCubicBezier(new Vector2(-72.5199966F, -133.195999F), new Vector2(-71.512001F, -133.927994F), new Vector2(-70.6719971F, -134.888F)); + builder.AddLine(new Vector2(-72.7600021F, -137.011993F)); + builder.AddCubicBezier(new Vector2(-73.3359985F, -136.339996F), new Vector2(-74.026001F, -135.835999F), new Vector2(-74.8300018F, -135.5F)); + builder.AddCubicBezier(new Vector2(-75.6340027F, -135.164001F), new Vector2(-76.5159988F, -134.996002F), new Vector2(-77.4759979F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-78.6279984F, -134.996002F), new Vector2(-79.6480026F, -135.242004F), new Vector2(-80.5360031F, -135.733994F)); + builder.AddCubicBezier(new Vector2(-81.4240036F, -136.225998F), new Vector2(-82.1080017F, -136.921997F), new Vector2(-82.5879974F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-83.0680008F, -138.722F), new Vector2(-83.3079987F, -139.772003F), new Vector2(-83.3079987F, -140.972F)); + builder.AddCubicBezier(new Vector2(-83.3079987F, -142.147995F), new Vector2(-83.0800018F, -143.167999F), new Vector2(-82.6240005F, -144.031998F)); + builder.AddCubicBezier(new Vector2(-82.1679993F, -144.895996F), new Vector2(-81.5199966F, -145.567993F), new Vector2(-80.6800003F, -146.048004F)); + builder.AddCubicBezier(new Vector2(-79.8399963F, -146.528F), new Vector2(-78.8679962F, -146.768005F), new Vector2(-77.7639999F, -146.768005F)); + builder.AddCubicBezier(new Vector2(-76.7080002F, -146.768005F), new Vector2(-75.8079987F, -146.546005F), new Vector2(-75.064003F, -146.102005F)); + builder.AddCubicBezier(new Vector2(-74.3199997F, -145.658005F), new Vector2(-73.7440033F, -145.033997F), new Vector2(-73.3359985F, -144.229996F)); + builder.AddCubicBezier(new Vector2(-72.9280014F, -143.425995F), new Vector2(-72.723999F, -142.447998F), new Vector2(-72.723999F, -141.296005F)); + builder.AddLine(new Vector2(-71.5360031F, -142.339996F)); + builder.AddLine(new Vector2(-84.2440033F, -142.339996F)); + builder.AddLine(new Vector2(-84.2440033F, -139.639999F)); + builder.AddLine(new Vector2(-69.8079987F, -139.639999F)); + builder.AddCubicBezier(new Vector2(-69.7360001F, -139.975998F), new Vector2(-69.6880035F, -140.281998F), new Vector2(-69.6640015F, -140.557999F)); + builder.AddCubicBezier(new Vector2(-69.6399994F, -140.834F), new Vector2(-69.6279984F, -141.091995F), new Vector2(-69.6279984F, -141.332001F)); + builder.AddCubicBezier(new Vector2(-69.6279984F, -142.964005F), new Vector2(-69.9700012F, -144.416F), new Vector2(-70.6539993F, -145.688004F)); + builder.AddCubicBezier(new Vector2(-71.3379974F, -146.960007F), new Vector2(-72.2919998F, -147.955994F), new Vector2(-73.5159988F, -148.675995F)); + builder.AddCubicBezier(new Vector2(-74.7399979F, -149.395996F), new Vector2(-76.1320038F, -149.755997F), new Vector2(-77.6920013F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-79.3479996F, -149.755997F), new Vector2(-80.8420029F, -149.365997F), new Vector2(-82.1740036F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-83.5059967F, -147.806F), new Vector2(-84.5619965F, -146.744003F), new Vector2(-85.3420029F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-86.1220016F, -144.056F), new Vector2(-86.512001F, -142.544006F), new Vector2(-86.512001F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-86.512001F, -139.160004F), new Vector2(-86.1159973F, -137.636002F), new Vector2(-85.3239975F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-84.5319977F, -134.947998F), new Vector2(-83.4580002F, -133.886002F), new Vector2(-82.1019974F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-80.7460022F, -132.326004F), new Vector2(-79.2040024F, -131.936005F), new Vector2(-77.4759979F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-76.1320038F, -131.936005F), new Vector2(-74.8720016F, -132.188004F), new Vector2(-73.6959991F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0423() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-101.884003F, -132.296005F)); + builder.AddLine(new Vector2(-101.884003F, -158F)); + builder.AddLine(new Vector2(-105.124001F, -158F)); + builder.AddLine(new Vector2(-105.124001F, -132.296005F)); + builder.AddLine(new Vector2(-101.884003F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-89.788002F, -132.296005F)); + builder.AddLine(new Vector2(-89.788002F, -142.916F)); + builder.AddCubicBezier(new Vector2(-89.788002F, -144.259995F), new Vector2(-90.0759964F, -145.447998F), new Vector2(-90.6520004F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-91.2279968F, -147.511993F), new Vector2(-92.0139999F, -148.315994F), new Vector2(-93.0100021F, -148.891998F)); + builder.AddCubicBezier(new Vector2(-94.0059967F, -149.468002F), new Vector2(-95.1520004F, -149.755997F), new Vector2(-96.447998F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-97.7440033F, -149.755997F), new Vector2(-98.9079971F, -149.462006F), new Vector2(-99.9400024F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-100.972F, -148.285995F), new Vector2(-101.776001F, -147.488007F), new Vector2(-102.351997F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-102.928001F, -145.472F), new Vector2(-103.216003F, -144.320007F), new Vector2(-103.216003F, -143.024002F)); + builder.AddLine(new Vector2(-101.884003F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-101.884003F, -143.132004F), new Vector2(-101.692001F, -143.899994F), new Vector2(-101.307999F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-100.924004F, -145.244003F), new Vector2(-100.396004F, -145.772003F), new Vector2(-99.723999F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-99.052002F, -146.539993F), new Vector2(-98.2839966F, -146.731995F), new Vector2(-97.4199982F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-96.1240005F, -146.731995F), new Vector2(-95.0739975F, -146.311996F), new Vector2(-94.2699966F, -145.472F)); + builder.AddCubicBezier(new Vector2(-93.4660034F, -144.632004F), new Vector2(-93.064003F, -143.563995F), new Vector2(-93.064003F, -142.268005F)); + builder.AddLine(new Vector2(-93.064003F, -132.296005F)); + builder.AddLine(new Vector2(-89.788002F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0424() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-108.292F, -146.444F)); + builder.AddLine(new Vector2(-108.292F, -149.395996F)); + builder.AddLine(new Vector2(-119.956001F, -149.395996F)); + builder.AddLine(new Vector2(-119.956001F, -146.444F)); + builder.AddLine(new Vector2(-108.292F, -146.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-112.503998F, -132.296005F)); + builder.AddLine(new Vector2(-112.503998F, -156.559998F)); + builder.AddLine(new Vector2(-115.744003F, -156.559998F)); + builder.AddLine(new Vector2(-115.744003F, -132.296005F)); + builder.AddLine(new Vector2(-112.503998F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0425() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-142.311996F, -132.296005F)); + builder.AddLine(new Vector2(-142.311996F, -149.395996F)); + builder.AddLine(new Vector2(-145.552002F, -149.395996F)); + builder.AddLine(new Vector2(-145.552002F, -132.296005F)); + builder.AddLine(new Vector2(-142.311996F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-130.216003F, -132.296005F)); + builder.AddLine(new Vector2(-130.216003F, -142.916F)); + builder.AddCubicBezier(new Vector2(-130.216003F, -144.091995F), new Vector2(-130.503998F, -145.201996F), new Vector2(-131.080002F, -146.246002F)); + builder.AddCubicBezier(new Vector2(-131.656006F, -147.289993F), new Vector2(-132.442001F, -148.136002F), new Vector2(-133.438004F, -148.783997F)); + builder.AddCubicBezier(new Vector2(-134.434006F, -149.432007F), new Vector2(-135.580002F, -149.755997F), new Vector2(-136.876007F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-138.171997F, -149.755997F), new Vector2(-139.335999F, -149.462006F), new Vector2(-140.367996F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-141.399994F, -148.285995F), new Vector2(-142.203995F, -147.488007F), new Vector2(-142.779999F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-143.356003F, -145.472F), new Vector2(-143.643997F, -144.320007F), new Vector2(-143.643997F, -143.024002F)); + builder.AddLine(new Vector2(-142.311996F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-142.311996F, -143.132004F), new Vector2(-142.119995F, -143.899994F), new Vector2(-141.735992F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-141.352005F, -145.244003F), new Vector2(-140.824005F, -145.772003F), new Vector2(-140.151993F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-139.479996F, -146.539993F), new Vector2(-138.712006F, -146.731995F), new Vector2(-137.848007F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-136.552002F, -146.731995F), new Vector2(-135.501999F, -146.311996F), new Vector2(-134.697998F, -145.472F)); + builder.AddCubicBezier(new Vector2(-133.893997F, -144.632004F), new Vector2(-133.492004F, -143.563995F), new Vector2(-133.492004F, -142.268005F)); + builder.AddLine(new Vector2(-133.492004F, -132.296005F)); + builder.AddLine(new Vector2(-130.216003F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0426() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-150.483994F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-150.100006F, -153.806F), new Vector2(-149.908005F, -154.304001F), new Vector2(-149.908005F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-149.908005F, -155.479996F), new Vector2(-150.100006F, -155.966003F), new Vector2(-150.483994F, -156.362F)); + builder.AddCubicBezier(new Vector2(-150.867996F, -156.757996F), new Vector2(-151.360001F, -156.955994F), new Vector2(-151.960007F, -156.955994F)); + builder.AddCubicBezier(new Vector2(-152.559998F, -156.955994F), new Vector2(-153.052002F, -156.757996F), new Vector2(-153.436005F, -156.362F)); + builder.AddCubicBezier(new Vector2(-153.820007F, -155.966003F), new Vector2(-154.011993F, -155.479996F), new Vector2(-154.011993F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-154.011993F, -154.304001F), new Vector2(-153.820007F, -153.806F), new Vector2(-153.436005F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-153.052002F, -153.014008F), new Vector2(-152.559998F, -152.815994F), new Vector2(-151.960007F, -152.815994F)); + builder.AddCubicBezier(new Vector2(-151.360001F, -152.815994F), new Vector2(-150.867996F, -153.014008F), new Vector2(-150.483994F, -153.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-150.339996F, -132.296005F)); + builder.AddLine(new Vector2(-150.339996F, -149.395996F)); + builder.AddLine(new Vector2(-153.615997F, -149.395996F)); + builder.AddLine(new Vector2(-153.615997F, -132.296005F)); + builder.AddLine(new Vector2(-150.339996F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0427() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-175.251999F, -125.132004F)); + builder.AddLine(new Vector2(-172.011993F, -132.151993F)); + builder.AddLine(new Vector2(-173.848007F, -135.464005F)); + builder.AddLine(new Vector2(-178.852005F, -125.132004F)); + builder.AddLine(new Vector2(-175.251999F, -125.132004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-172.011993F, -132.151993F)); + builder.AddLine(new Vector2(-164.020004F, -149.395996F)); + builder.AddLine(new Vector2(-167.619995F, -149.395996F)); + builder.AddLine(new Vector2(-173.416F, -135.895996F)); + builder.AddLine(new Vector2(-172.264008F, -135.895996F)); + builder.AddLine(new Vector2(-177.772003F, -149.395996F)); + builder.AddLine(new Vector2(-181.371994F, -149.395996F)); + builder.AddLine(new Vector2(-173.955994F, -132.151993F)); + builder.AddLine(new Vector2(-172.011993F, -132.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0428() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-184.287994F, -132.296005F)); + builder.AddLine(new Vector2(-184.287994F, -149.395996F)); + builder.AddLine(new Vector2(-187.563995F, -149.395996F)); + builder.AddLine(new Vector2(-187.563995F, -145.220001F)); + builder.AddLine(new Vector2(-186.951996F, -141.080002F)); + builder.AddLine(new Vector2(-187.563995F, -136.904007F)); + builder.AddLine(new Vector2(-187.563995F, -132.296005F)); + builder.AddLine(new Vector2(-184.287994F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-195.591995F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-196.432007F, -136.255997F), new Vector2(-197.085999F, -136.945999F), new Vector2(-197.554001F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-198.022003F, -138.697998F), new Vector2(-198.255997F, -139.712006F), new Vector2(-198.255997F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-198.255997F, -141.992004F), new Vector2(-198.022003F, -142.994003F), new Vector2(-197.554001F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-197.085999F, -144.746002F), new Vector2(-196.438004F, -145.436005F), new Vector2(-195.610001F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-194.781998F, -146.444F), new Vector2(-193.828003F, -146.695999F), new Vector2(-192.748001F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-191.667999F, -146.695999F), new Vector2(-190.725998F, -146.449997F), new Vector2(-189.921997F, -145.957993F)); + builder.AddCubicBezier(new Vector2(-189.117996F, -145.466003F), new Vector2(-188.488007F, -144.776001F), new Vector2(-188.031998F, -143.888F)); + builder.AddCubicBezier(new Vector2(-187.576004F, -143F), new Vector2(-187.348007F, -141.979996F), new Vector2(-187.348007F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-187.348007F, -139.123993F), new Vector2(-187.839996F, -137.725998F), new Vector2(-188.824005F, -136.634003F)); + builder.AddCubicBezier(new Vector2(-189.807999F, -135.542007F), new Vector2(-191.104004F, -134.996002F), new Vector2(-192.712006F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-193.792007F, -134.996002F), new Vector2(-194.751999F, -135.248001F), new Vector2(-195.591995F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-189.759995F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-188.727997F, -133.285995F), new Vector2(-187.906006F, -134.035995F), new Vector2(-187.294006F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-186.682007F, -135.955994F), new Vector2(-186.339996F, -137.048004F), new Vector2(-186.268005F, -138.272003F)); + builder.AddLine(new Vector2(-186.268005F, -143.419998F)); + builder.AddCubicBezier(new Vector2(-186.339996F, -144.667999F), new Vector2(-186.688004F, -145.766006F), new Vector2(-187.311996F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-187.936005F, -147.662003F), new Vector2(-188.757996F, -148.406006F), new Vector2(-189.778F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-190.798004F, -149.485992F), new Vector2(-191.955994F, -149.755997F), new Vector2(-193.251999F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-194.835999F, -149.755997F), new Vector2(-196.257996F, -149.360001F), new Vector2(-197.518005F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-198.778F, -147.776001F), new Vector2(-199.774002F, -146.707993F), new Vector2(-200.505997F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-201.238007F, -144.020004F), new Vector2(-201.604004F, -142.507996F), new Vector2(-201.604004F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-201.604004F, -139.147995F), new Vector2(-201.238007F, -137.636002F), new Vector2(-200.505997F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-199.774002F, -134.947998F), new Vector2(-198.778F, -133.886002F), new Vector2(-197.518005F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-196.257996F, -132.326004F), new Vector2(-194.835999F, -131.936005F), new Vector2(-193.251999F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-191.955994F, -131.936005F), new Vector2(-190.792007F, -132.205994F), new Vector2(-189.759995F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0429() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-220.251999F, -132.296005F)); + builder.AddLine(new Vector2(-215.283997F, -145.184006F)); + builder.AddLine(new Vector2(-216.472F, -145.184006F)); + builder.AddLine(new Vector2(-211.539993F, -132.296005F)); + builder.AddLine(new Vector2(-209.632004F, -132.296005F)); + builder.AddLine(new Vector2(-202.899994F, -149.395996F)); + builder.AddLine(new Vector2(-206.283997F, -149.395996F)); + builder.AddLine(new Vector2(-211.179993F, -136.076004F)); + builder.AddLine(new Vector2(-210.100006F, -136.076004F)); + builder.AddLine(new Vector2(-214.960007F, -149.395996F)); + builder.AddLine(new Vector2(-216.832001F, -149.395996F)); + builder.AddLine(new Vector2(-221.692001F, -136.076004F)); + builder.AddLine(new Vector2(-220.612F, -136.076004F)); + builder.AddLine(new Vector2(-225.507996F, -149.395996F)); + builder.AddLine(new Vector2(-228.891998F, -149.395996F)); + builder.AddLine(new Vector2(-222.160004F, -132.296005F)); + builder.AddLine(new Vector2(-220.251999F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0430() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-231.664001F, -132.296005F)); + builder.AddLine(new Vector2(-231.664001F, -149.395996F)); + builder.AddLine(new Vector2(-234.940002F, -149.395996F)); + builder.AddLine(new Vector2(-234.940002F, -145.220001F)); + builder.AddLine(new Vector2(-234.328003F, -141.080002F)); + builder.AddLine(new Vector2(-234.940002F, -136.904007F)); + builder.AddLine(new Vector2(-234.940002F, -132.296005F)); + builder.AddLine(new Vector2(-231.664001F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-242.968002F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-243.807999F, -136.255997F), new Vector2(-244.462006F, -136.945999F), new Vector2(-244.929993F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-245.397995F, -138.697998F), new Vector2(-245.632004F, -139.712006F), new Vector2(-245.632004F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-245.632004F, -141.992004F), new Vector2(-245.397995F, -142.994003F), new Vector2(-244.929993F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-244.462006F, -144.746002F), new Vector2(-243.813995F, -145.436005F), new Vector2(-242.985992F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-242.158005F, -146.444F), new Vector2(-241.203995F, -146.695999F), new Vector2(-240.123993F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-239.044006F, -146.695999F), new Vector2(-238.102005F, -146.449997F), new Vector2(-237.298004F, -145.957993F)); + builder.AddCubicBezier(new Vector2(-236.494003F, -145.466003F), new Vector2(-235.863998F, -144.776001F), new Vector2(-235.408005F, -143.888F)); + builder.AddCubicBezier(new Vector2(-234.951996F, -143F), new Vector2(-234.723999F, -141.979996F), new Vector2(-234.723999F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-234.723999F, -139.123993F), new Vector2(-235.216003F, -137.725998F), new Vector2(-236.199997F, -136.634003F)); + builder.AddCubicBezier(new Vector2(-237.184006F, -135.542007F), new Vector2(-238.479996F, -134.996002F), new Vector2(-240.087997F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-241.167999F, -134.996002F), new Vector2(-242.128006F, -135.248001F), new Vector2(-242.968002F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-237.136002F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-236.104004F, -133.285995F), new Vector2(-235.281998F, -134.035995F), new Vector2(-234.669998F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-234.057999F, -135.955994F), new Vector2(-233.716003F, -137.048004F), new Vector2(-233.643997F, -138.272003F)); + builder.AddLine(new Vector2(-233.643997F, -143.419998F)); + builder.AddCubicBezier(new Vector2(-233.716003F, -144.667999F), new Vector2(-234.063995F, -145.766006F), new Vector2(-234.688004F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-235.311996F, -147.662003F), new Vector2(-236.134003F, -148.406006F), new Vector2(-237.154007F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-238.173996F, -149.485992F), new Vector2(-239.332001F, -149.755997F), new Vector2(-240.628006F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-242.212006F, -149.755997F), new Vector2(-243.634003F, -149.360001F), new Vector2(-244.893997F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-246.154007F, -147.776001F), new Vector2(-247.149994F, -146.707993F), new Vector2(-247.882004F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-248.613998F, -144.020004F), new Vector2(-248.979996F, -142.507996F), new Vector2(-248.979996F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-248.979996F, -139.147995F), new Vector2(-248.613998F, -137.636002F), new Vector2(-247.882004F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-247.149994F, -134.947998F), new Vector2(-246.154007F, -133.886002F), new Vector2(-244.893997F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-243.634003F, -132.326004F), new Vector2(-242.212006F, -131.936005F), new Vector2(-240.628006F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-239.332001F, -131.936005F), new Vector2(-238.167999F, -132.205994F), new Vector2(-237.136002F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0431() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-260.067993F, -158F)); + builder.AddLine(new Vector2(-263.343994F, -158F)); + builder.AddLine(new Vector2(-263.343994F, -145.220001F)); + builder.AddLine(new Vector2(-262.731995F, -141.080002F)); + builder.AddLine(new Vector2(-263.343994F, -136.904007F)); + builder.AddLine(new Vector2(-263.343994F, -132.296005F)); + builder.AddLine(new Vector2(-260.067993F, -132.296005F)); + builder.AddLine(new Vector2(-260.067993F, -158F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-271.390015F, -135.733994F)); + builder.AddCubicBezier(new Vector2(-272.217987F, -136.225998F), new Vector2(-272.865997F, -136.916F), new Vector2(-273.334015F, -137.804001F)); + builder.AddCubicBezier(new Vector2(-273.802002F, -138.692001F), new Vector2(-274.036011F, -139.712006F), new Vector2(-274.036011F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-274.036011F, -142.016006F), new Vector2(-273.802002F, -143.029999F), new Vector2(-273.334015F, -143.906006F)); + builder.AddCubicBezier(new Vector2(-272.865997F, -144.781998F), new Vector2(-272.223999F, -145.466003F), new Vector2(-271.40799F, -145.957993F)); + builder.AddCubicBezier(new Vector2(-270.59201F, -146.449997F), new Vector2(-269.644012F, -146.695999F), new Vector2(-268.563995F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-267.484009F, -146.695999F), new Vector2(-266.536011F, -146.444F), new Vector2(-265.720001F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-264.903992F, -145.436005F), new Vector2(-264.268005F, -144.746002F), new Vector2(-263.812012F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-263.355988F, -142.994003F), new Vector2(-263.127991F, -141.979996F), new Vector2(-263.127991F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-263.127991F, -139.699997F), new Vector2(-263.355988F, -138.697998F), new Vector2(-263.812012F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-264.268005F, -136.945999F), new Vector2(-264.903992F, -136.255997F), new Vector2(-265.720001F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-266.536011F, -135.248001F), new Vector2(-267.484009F, -134.996002F), new Vector2(-268.563995F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-269.619995F, -134.996002F), new Vector2(-270.562012F, -135.242004F), new Vector2(-271.390015F, -135.733994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-265.575989F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-264.544006F, -133.285995F), new Vector2(-263.716003F, -134.035995F), new Vector2(-263.09201F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-262.467987F, -135.955994F), new Vector2(-262.119995F, -137.048004F), new Vector2(-262.048004F, -138.272003F)); + builder.AddLine(new Vector2(-262.048004F, -143.419998F)); + builder.AddCubicBezier(new Vector2(-262.119995F, -144.667999F), new Vector2(-262.473999F, -145.766006F), new Vector2(-263.109985F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-263.746002F, -147.662003F), new Vector2(-264.579987F, -148.406006F), new Vector2(-265.612F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-266.644012F, -149.485992F), new Vector2(-267.808014F, -149.755997F), new Vector2(-269.104004F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-270.664001F, -149.755997F), new Vector2(-272.067993F, -149.360001F), new Vector2(-273.31601F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-274.563995F, -147.776001F), new Vector2(-275.553986F, -146.707993F), new Vector2(-276.286011F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-277.018005F, -144.020004F), new Vector2(-277.384003F, -142.507996F), new Vector2(-277.384003F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-277.384003F, -139.147995F), new Vector2(-277.018005F, -137.636002F), new Vector2(-276.286011F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-275.553986F, -134.947998F), new Vector2(-274.563995F, -133.886002F), new Vector2(-273.31601F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-272.067993F, -132.326004F), new Vector2(-270.664001F, -131.936005F), new Vector2(-269.104004F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-267.783997F, -131.936005F), new Vector2(-266.608002F, -132.205994F), new Vector2(-265.575989F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0432() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-283.899994F, -132.692001F)); + builder.AddCubicBezier(new Vector2(-282.723999F, -133.195999F), new Vector2(-281.716003F, -133.927994F), new Vector2(-280.876007F, -134.888F)); + builder.AddLine(new Vector2(-282.963989F, -137.011993F)); + builder.AddCubicBezier(new Vector2(-283.540009F, -136.339996F), new Vector2(-284.230011F, -135.835999F), new Vector2(-285.033997F, -135.5F)); + builder.AddCubicBezier(new Vector2(-285.838013F, -135.164001F), new Vector2(-286.720001F, -134.996002F), new Vector2(-287.679993F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-288.832001F, -134.996002F), new Vector2(-289.85199F, -135.242004F), new Vector2(-290.73999F, -135.733994F)); + builder.AddCubicBezier(new Vector2(-291.627991F, -136.225998F), new Vector2(-292.312012F, -136.921997F), new Vector2(-292.791992F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-293.272003F, -138.722F), new Vector2(-293.511993F, -139.772003F), new Vector2(-293.511993F, -140.972F)); + builder.AddCubicBezier(new Vector2(-293.511993F, -142.147995F), new Vector2(-293.283997F, -143.167999F), new Vector2(-292.828003F, -144.031998F)); + builder.AddCubicBezier(new Vector2(-292.372009F, -144.895996F), new Vector2(-291.723999F, -145.567993F), new Vector2(-290.884003F, -146.048004F)); + builder.AddCubicBezier(new Vector2(-290.044006F, -146.528F), new Vector2(-289.071991F, -146.768005F), new Vector2(-287.967987F, -146.768005F)); + builder.AddCubicBezier(new Vector2(-286.911987F, -146.768005F), new Vector2(-286.011993F, -146.546005F), new Vector2(-285.268005F, -146.102005F)); + builder.AddCubicBezier(new Vector2(-284.523987F, -145.658005F), new Vector2(-283.947998F, -145.033997F), new Vector2(-283.540009F, -144.229996F)); + builder.AddCubicBezier(new Vector2(-283.131989F, -143.425995F), new Vector2(-282.928009F, -142.447998F), new Vector2(-282.928009F, -141.296005F)); + builder.AddLine(new Vector2(-281.73999F, -142.339996F)); + builder.AddLine(new Vector2(-294.447998F, -142.339996F)); + builder.AddLine(new Vector2(-294.447998F, -139.639999F)); + builder.AddLine(new Vector2(-280.011993F, -139.639999F)); + builder.AddCubicBezier(new Vector2(-279.940002F, -139.975998F), new Vector2(-279.891998F, -140.281998F), new Vector2(-279.868011F, -140.557999F)); + builder.AddCubicBezier(new Vector2(-279.843994F, -140.834F), new Vector2(-279.832001F, -141.091995F), new Vector2(-279.832001F, -141.332001F)); + builder.AddCubicBezier(new Vector2(-279.832001F, -142.964005F), new Vector2(-280.174011F, -144.416F), new Vector2(-280.858002F, -145.688004F)); + builder.AddCubicBezier(new Vector2(-281.541992F, -146.960007F), new Vector2(-282.496002F, -147.955994F), new Vector2(-283.720001F, -148.675995F)); + builder.AddCubicBezier(new Vector2(-284.944F, -149.395996F), new Vector2(-286.335999F, -149.755997F), new Vector2(-287.895996F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-289.552002F, -149.755997F), new Vector2(-291.04599F, -149.365997F), new Vector2(-292.377991F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-293.709991F, -147.806F), new Vector2(-294.765991F, -146.744003F), new Vector2(-295.54599F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-296.325989F, -144.056F), new Vector2(-296.716003F, -142.544006F), new Vector2(-296.716003F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-296.716003F, -139.160004F), new Vector2(-296.320007F, -137.636002F), new Vector2(-295.528015F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-294.735992F, -134.947998F), new Vector2(-293.661987F, -133.886002F), new Vector2(-292.306F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-290.950012F, -132.326004F), new Vector2(-289.40799F, -131.936005F), new Vector2(-287.679993F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-286.335999F, -131.936005F), new Vector2(-285.075989F, -132.188004F), new Vector2(-283.899994F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0433() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-300.946014F, -133.339996F)); + builder.AddCubicBezier(new Vector2(-299.806F, -134.276001F), new Vector2(-299.235992F, -135.548004F), new Vector2(-299.235992F, -137.156006F)); + builder.AddCubicBezier(new Vector2(-299.235992F, -138.212006F), new Vector2(-299.458008F, -139.063995F), new Vector2(-299.902008F, -139.712006F)); + builder.AddCubicBezier(new Vector2(-300.346008F, -140.360001F), new Vector2(-300.915985F, -140.876007F), new Vector2(-301.612F, -141.259995F)); + builder.AddCubicBezier(new Vector2(-302.308014F, -141.643997F), new Vector2(-303.040009F, -141.949997F), new Vector2(-303.808014F, -142.177994F)); + builder.AddCubicBezier(new Vector2(-304.575989F, -142.406006F), new Vector2(-305.313995F, -142.628006F), new Vector2(-306.022003F, -142.843994F)); + builder.AddCubicBezier(new Vector2(-306.730011F, -143.059998F), new Vector2(-307.299988F, -143.324005F), new Vector2(-307.731995F, -143.636002F)); + builder.AddCubicBezier(new Vector2(-308.164001F, -143.947998F), new Vector2(-308.380005F, -144.391998F), new Vector2(-308.380005F, -144.968002F)); + builder.AddCubicBezier(new Vector2(-308.380005F, -145.520004F), new Vector2(-308.134003F, -145.964005F), new Vector2(-307.641998F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-307.149994F, -146.636002F), new Vector2(-306.436005F, -146.804001F), new Vector2(-305.5F, -146.804001F)); + builder.AddCubicBezier(new Vector2(-304.612F, -146.804001F), new Vector2(-303.820007F, -146.636002F), new Vector2(-303.123993F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-302.428009F, -145.964005F), new Vector2(-301.828003F, -145.483994F), new Vector2(-301.324005F, -144.860001F)); + builder.AddLine(new Vector2(-299.235992F, -146.947998F)); + builder.AddCubicBezier(new Vector2(-299.90799F, -147.884003F), new Vector2(-300.765991F, -148.585999F), new Vector2(-301.809998F, -149.054001F)); + builder.AddCubicBezier(new Vector2(-302.854004F, -149.522003F), new Vector2(-304.048004F, -149.755997F), new Vector2(-305.391998F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-306.664001F, -149.755997F), new Vector2(-307.756012F, -149.552002F), new Vector2(-308.667999F, -149.143997F)); + builder.AddCubicBezier(new Vector2(-309.579987F, -148.735992F), new Vector2(-310.282013F, -148.154007F), new Vector2(-310.773987F, -147.397995F)); + builder.AddCubicBezier(new Vector2(-311.265991F, -146.641998F), new Vector2(-311.511993F, -145.748001F), new Vector2(-311.511993F, -144.716003F)); + builder.AddCubicBezier(new Vector2(-311.511993F, -143.684006F), new Vector2(-311.290009F, -142.850006F), new Vector2(-310.846008F, -142.214005F)); + builder.AddCubicBezier(new Vector2(-310.402008F, -141.578003F), new Vector2(-309.832001F, -141.080002F), new Vector2(-309.135986F, -140.720001F)); + builder.AddCubicBezier(new Vector2(-308.440002F, -140.360001F), new Vector2(-307.701996F, -140.072006F), new Vector2(-306.921997F, -139.856003F)); + builder.AddCubicBezier(new Vector2(-306.141998F, -139.639999F), new Vector2(-305.403992F, -139.417999F), new Vector2(-304.708008F, -139.190002F)); + builder.AddCubicBezier(new Vector2(-304.011993F, -138.962006F), new Vector2(-303.441986F, -138.673996F), new Vector2(-302.997986F, -138.326004F)); + builder.AddCubicBezier(new Vector2(-302.553986F, -137.977997F), new Vector2(-302.332001F, -137.492004F), new Vector2(-302.332001F, -136.867996F)); + builder.AddCubicBezier(new Vector2(-302.332001F, -136.244003F), new Vector2(-302.608002F, -135.757996F), new Vector2(-303.160004F, -135.410004F)); + builder.AddCubicBezier(new Vector2(-303.712006F, -135.061996F), new Vector2(-304.492004F, -134.888F), new Vector2(-305.5F, -134.888F)); + builder.AddCubicBezier(new Vector2(-306.507996F, -134.888F), new Vector2(-307.420013F, -135.074005F), new Vector2(-308.235992F, -135.445999F)); + builder.AddCubicBezier(new Vector2(-309.052002F, -135.817993F), new Vector2(-309.772003F, -136.388F), new Vector2(-310.395996F, -137.156006F)); + builder.AddLine(new Vector2(-312.484009F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-311.955994F, -134.419998F), new Vector2(-311.338013F, -133.862F), new Vector2(-310.630005F, -133.393997F)); + builder.AddCubicBezier(new Vector2(-309.921997F, -132.925995F), new Vector2(-309.135986F, -132.565994F), new Vector2(-308.272003F, -132.313995F)); + builder.AddCubicBezier(new Vector2(-307.40799F, -132.061996F), new Vector2(-306.496002F, -131.936005F), new Vector2(-305.536011F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-303.615997F, -131.936005F), new Vector2(-302.085999F, -132.404007F), new Vector2(-300.946014F, -133.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0434() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-316.317993F, -133.339996F)); + builder.AddCubicBezier(new Vector2(-315.178009F, -134.276001F), new Vector2(-314.608002F, -135.548004F), new Vector2(-314.608002F, -137.156006F)); + builder.AddCubicBezier(new Vector2(-314.608002F, -138.212006F), new Vector2(-314.829987F, -139.063995F), new Vector2(-315.273987F, -139.712006F)); + builder.AddCubicBezier(new Vector2(-315.717987F, -140.360001F), new Vector2(-316.287994F, -140.876007F), new Vector2(-316.984009F, -141.259995F)); + builder.AddCubicBezier(new Vector2(-317.679993F, -141.643997F), new Vector2(-318.411987F, -141.949997F), new Vector2(-319.179993F, -142.177994F)); + builder.AddCubicBezier(new Vector2(-319.947998F, -142.406006F), new Vector2(-320.686005F, -142.628006F), new Vector2(-321.394012F, -142.843994F)); + builder.AddCubicBezier(new Vector2(-322.10199F, -143.059998F), new Vector2(-322.671997F, -143.324005F), new Vector2(-323.104004F, -143.636002F)); + builder.AddCubicBezier(new Vector2(-323.536011F, -143.947998F), new Vector2(-323.752014F, -144.391998F), new Vector2(-323.752014F, -144.968002F)); + builder.AddCubicBezier(new Vector2(-323.752014F, -145.520004F), new Vector2(-323.506012F, -145.964005F), new Vector2(-323.014008F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-322.522003F, -146.636002F), new Vector2(-321.808014F, -146.804001F), new Vector2(-320.872009F, -146.804001F)); + builder.AddCubicBezier(new Vector2(-319.984009F, -146.804001F), new Vector2(-319.191986F, -146.636002F), new Vector2(-318.496002F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-317.799988F, -145.964005F), new Vector2(-317.200012F, -145.483994F), new Vector2(-316.696014F, -144.860001F)); + builder.AddLine(new Vector2(-314.608002F, -146.947998F)); + builder.AddCubicBezier(new Vector2(-315.279999F, -147.884003F), new Vector2(-316.138F, -148.585999F), new Vector2(-317.182007F, -149.054001F)); + builder.AddCubicBezier(new Vector2(-318.226013F, -149.522003F), new Vector2(-319.420013F, -149.755997F), new Vector2(-320.764008F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-322.036011F, -149.755997F), new Vector2(-323.127991F, -149.552002F), new Vector2(-324.040009F, -149.143997F)); + builder.AddCubicBezier(new Vector2(-324.951996F, -148.735992F), new Vector2(-325.653992F, -148.154007F), new Vector2(-326.145996F, -147.397995F)); + builder.AddCubicBezier(new Vector2(-326.638F, -146.641998F), new Vector2(-326.884003F, -145.748001F), new Vector2(-326.884003F, -144.716003F)); + builder.AddCubicBezier(new Vector2(-326.884003F, -143.684006F), new Vector2(-326.661987F, -142.850006F), new Vector2(-326.217987F, -142.214005F)); + builder.AddCubicBezier(new Vector2(-325.773987F, -141.578003F), new Vector2(-325.20401F, -141.080002F), new Vector2(-324.507996F, -140.720001F)); + builder.AddCubicBezier(new Vector2(-323.812012F, -140.360001F), new Vector2(-323.074005F, -140.072006F), new Vector2(-322.294006F, -139.856003F)); + builder.AddCubicBezier(new Vector2(-321.514008F, -139.639999F), new Vector2(-320.776001F, -139.417999F), new Vector2(-320.079987F, -139.190002F)); + builder.AddCubicBezier(new Vector2(-319.384003F, -138.962006F), new Vector2(-318.813995F, -138.673996F), new Vector2(-318.369995F, -138.326004F)); + builder.AddCubicBezier(new Vector2(-317.925995F, -137.977997F), new Vector2(-317.70401F, -137.492004F), new Vector2(-317.70401F, -136.867996F)); + builder.AddCubicBezier(new Vector2(-317.70401F, -136.244003F), new Vector2(-317.980011F, -135.757996F), new Vector2(-318.532013F, -135.410004F)); + builder.AddCubicBezier(new Vector2(-319.084015F, -135.061996F), new Vector2(-319.864014F, -134.888F), new Vector2(-320.872009F, -134.888F)); + builder.AddCubicBezier(new Vector2(-321.880005F, -134.888F), new Vector2(-322.791992F, -135.074005F), new Vector2(-323.608002F, -135.445999F)); + builder.AddCubicBezier(new Vector2(-324.424011F, -135.817993F), new Vector2(-325.144012F, -136.388F), new Vector2(-325.768005F, -137.156006F)); + builder.AddLine(new Vector2(-327.855988F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-327.328003F, -134.419998F), new Vector2(-326.709991F, -133.862F), new Vector2(-326.002014F, -133.393997F)); + builder.AddCubicBezier(new Vector2(-325.294006F, -132.925995F), new Vector2(-324.507996F, -132.565994F), new Vector2(-323.644012F, -132.313995F)); + builder.AddCubicBezier(new Vector2(-322.779999F, -132.061996F), new Vector2(-321.868011F, -131.936005F), new Vector2(-320.90799F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-318.988007F, -131.936005F), new Vector2(-317.458008F, -132.404007F), new Vector2(-316.317993F, -133.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0435() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-331.059998F, -132.296005F)); + builder.AddLine(new Vector2(-331.059998F, -149.395996F)); + builder.AddLine(new Vector2(-334.335999F, -149.395996F)); + builder.AddLine(new Vector2(-334.335999F, -145.220001F)); + builder.AddLine(new Vector2(-333.723999F, -141.080002F)); + builder.AddLine(new Vector2(-334.335999F, -136.904007F)); + builder.AddLine(new Vector2(-334.335999F, -132.296005F)); + builder.AddLine(new Vector2(-331.059998F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-342.364014F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-343.20401F, -136.255997F), new Vector2(-343.858002F, -136.945999F), new Vector2(-344.325989F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-344.794006F, -138.697998F), new Vector2(-345.028015F, -139.712006F), new Vector2(-345.028015F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-345.028015F, -141.992004F), new Vector2(-344.794006F, -142.994003F), new Vector2(-344.325989F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-343.858002F, -144.746002F), new Vector2(-343.209991F, -145.436005F), new Vector2(-342.381989F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-341.553986F, -146.444F), new Vector2(-340.600006F, -146.695999F), new Vector2(-339.519989F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-338.440002F, -146.695999F), new Vector2(-337.497986F, -146.449997F), new Vector2(-336.694F, -145.957993F)); + builder.AddCubicBezier(new Vector2(-335.890015F, -145.466003F), new Vector2(-335.26001F, -144.776001F), new Vector2(-334.803986F, -143.888F)); + builder.AddCubicBezier(new Vector2(-334.347992F, -143F), new Vector2(-334.119995F, -141.979996F), new Vector2(-334.119995F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-334.119995F, -139.123993F), new Vector2(-334.612F, -137.725998F), new Vector2(-335.596008F, -136.634003F)); + builder.AddCubicBezier(new Vector2(-336.579987F, -135.542007F), new Vector2(-337.876007F, -134.996002F), new Vector2(-339.484009F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-340.563995F, -134.996002F), new Vector2(-341.523987F, -135.248001F), new Vector2(-342.364014F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-336.532013F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-335.5F, -133.285995F), new Vector2(-334.678009F, -134.035995F), new Vector2(-334.06601F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-333.45401F, -135.955994F), new Vector2(-333.112F, -137.048004F), new Vector2(-333.040009F, -138.272003F)); + builder.AddLine(new Vector2(-333.040009F, -143.419998F)); + builder.AddCubicBezier(new Vector2(-333.112F, -144.667999F), new Vector2(-333.459991F, -145.766006F), new Vector2(-334.084015F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-334.708008F, -147.662003F), new Vector2(-335.529999F, -148.406006F), new Vector2(-336.549988F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-337.570007F, -149.485992F), new Vector2(-338.727997F, -149.755997F), new Vector2(-340.023987F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-341.608002F, -149.755997F), new Vector2(-343.029999F, -149.360001F), new Vector2(-344.290009F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-345.549988F, -147.776001F), new Vector2(-346.54599F, -146.707993F), new Vector2(-347.278015F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-348.01001F, -144.020004F), new Vector2(-348.376007F, -142.507996F), new Vector2(-348.376007F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-348.376007F, -139.147995F), new Vector2(-348.01001F, -137.636002F), new Vector2(-347.278015F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-346.54599F, -134.947998F), new Vector2(-345.549988F, -133.886002F), new Vector2(-344.290009F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-343.029999F, -132.326004F), new Vector2(-341.608002F, -131.936005F), new Vector2(-340.023987F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-338.727997F, -131.936005F), new Vector2(-337.563995F, -132.205994F), new Vector2(-336.532013F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0436() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-362.614014F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-363.441986F, -136.255997F), new Vector2(-364.078003F, -136.945999F), new Vector2(-364.522003F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-364.966003F, -138.697998F), new Vector2(-365.187988F, -139.699997F), new Vector2(-365.187988F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-365.187988F, -141.979996F), new Vector2(-364.959991F, -142.994003F), new Vector2(-364.503998F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-364.048004F, -144.746002F), new Vector2(-363.411987F, -145.436005F), new Vector2(-362.596008F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-361.779999F, -146.444F), new Vector2(-360.843994F, -146.695999F), new Vector2(-359.787994F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-358.708008F, -146.695999F), new Vector2(-357.76001F, -146.444F), new Vector2(-356.944F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-356.127991F, -145.436005F), new Vector2(-355.485992F, -144.746002F), new Vector2(-355.018005F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-354.549988F, -142.994003F), new Vector2(-354.31601F, -141.992004F), new Vector2(-354.31601F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-354.31601F, -139.712006F), new Vector2(-354.549988F, -138.697998F), new Vector2(-355.018005F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-355.485992F, -136.945999F), new Vector2(-356.127991F, -136.255997F), new Vector2(-356.944F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-357.76001F, -135.248001F), new Vector2(-358.708008F, -134.996002F), new Vector2(-359.787994F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-360.843994F, -134.996002F), new Vector2(-361.786011F, -135.248001F), new Vector2(-362.614014F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-365.007996F, -125.132004F)); + builder.AddLine(new Vector2(-365.007996F, -136.580002F)); + builder.AddLine(new Vector2(-365.619995F, -140.755997F)); + builder.AddLine(new Vector2(-365.007996F, -144.895996F)); + builder.AddLine(new Vector2(-365.007996F, -149.395996F)); + builder.AddLine(new Vector2(-368.247986F, -149.395996F)); + builder.AddLine(new Vector2(-368.247986F, -125.132004F)); + builder.AddLine(new Vector2(-365.007996F, -125.132004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-355.018005F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-353.757996F, -133.886002F), new Vector2(-352.768005F, -134.947998F), new Vector2(-352.048004F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-351.328003F, -137.636002F), new Vector2(-350.967987F, -139.147995F), new Vector2(-350.967987F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-350.967987F, -142.507996F), new Vector2(-351.328003F, -144.020004F), new Vector2(-352.048004F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-352.768005F, -146.707993F), new Vector2(-353.757996F, -147.776001F), new Vector2(-355.018005F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-356.278015F, -149.360001F), new Vector2(-357.687988F, -149.755997F), new Vector2(-359.247986F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-360.519989F, -149.755997F), new Vector2(-361.678009F, -149.485992F), new Vector2(-362.721985F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-363.765991F, -148.406006F), new Vector2(-364.605988F, -147.662003F), new Vector2(-365.242004F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-365.877991F, -145.766006F), new Vector2(-366.231995F, -144.667999F), new Vector2(-366.303986F, -143.419998F)); + builder.AddLine(new Vector2(-366.303986F, -138.272003F)); + builder.AddCubicBezier(new Vector2(-366.231995F, -137.048004F), new Vector2(-365.884003F, -135.955994F), new Vector2(-365.26001F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-364.635986F, -134.035995F), new Vector2(-363.802002F, -133.285995F), new Vector2(-362.757996F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-361.713989F, -132.205994F), new Vector2(-360.544006F, -131.936005F), new Vector2(-359.247986F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-357.687988F, -131.936005F), new Vector2(-356.278015F, -132.326004F), new Vector2(-355.018005F, -133.106003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0437() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-391.108002F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-391.947998F, -136.328003F), new Vector2(-392.608002F, -137.018005F), new Vector2(-393.088013F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-393.567993F, -138.770004F), new Vector2(-393.808014F, -139.772003F), new Vector2(-393.808014F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-393.808014F, -142.003998F), new Vector2(-393.567993F, -142.988007F), new Vector2(-393.088013F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-392.608002F, -144.716003F), new Vector2(-391.947998F, -145.393997F), new Vector2(-391.108002F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-390.268005F, -146.378006F), new Vector2(-389.320007F, -146.623993F), new Vector2(-388.264008F, -146.623993F)); + builder.AddCubicBezier(new Vector2(-387.160004F, -146.623993F), new Vector2(-386.194F, -146.378006F), new Vector2(-385.365997F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-384.537994F, -145.393997F), new Vector2(-383.877991F, -144.716003F), new Vector2(-383.385986F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-382.894012F, -142.988007F), new Vector2(-382.64801F, -142.003998F), new Vector2(-382.64801F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-382.64801F, -139.772003F), new Vector2(-382.888F, -138.770004F), new Vector2(-383.368011F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-383.847992F, -137.018005F), new Vector2(-384.507996F, -136.328003F), new Vector2(-385.347992F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-386.187988F, -135.320007F), new Vector2(-387.160004F, -135.067993F), new Vector2(-388.264008F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-389.320007F, -135.067993F), new Vector2(-390.268005F, -135.320007F), new Vector2(-391.108002F, -135.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-383.709991F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-382.354004F, -133.916F), new Vector2(-381.279999F, -134.990005F), new Vector2(-380.488007F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-379.696014F, -137.701996F), new Vector2(-379.299988F, -139.220001F), new Vector2(-379.299988F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-379.299988F, -142.556F), new Vector2(-379.696014F, -144.056F), new Vector2(-380.488007F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-381.279999F, -146.744003F), new Vector2(-382.354004F, -147.806F), new Vector2(-383.709991F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-385.06601F, -149.365997F), new Vector2(-386.584015F, -149.755997F), new Vector2(-388.264008F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-389.920013F, -149.755997F), new Vector2(-391.420013F, -149.360001F), new Vector2(-392.764008F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-394.108002F, -147.776001F), new Vector2(-395.175995F, -146.714005F), new Vector2(-395.967987F, -145.382004F)); + builder.AddCubicBezier(new Vector2(-396.76001F, -144.050003F), new Vector2(-397.156006F, -142.556F), new Vector2(-397.156006F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-397.156006F, -139.220001F), new Vector2(-396.76001F, -137.701996F), new Vector2(-395.967987F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-395.175995F, -134.990005F), new Vector2(-394.108002F, -133.916F), new Vector2(-392.764008F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-391.420013F, -132.332001F), new Vector2(-389.920013F, -131.936005F), new Vector2(-388.264008F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-386.584015F, -131.936005F), new Vector2(-385.06601F, -132.332001F), new Vector2(-383.709991F, -133.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0438() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-412.528015F, -132.296005F)); + builder.AddLine(new Vector2(-412.528015F, -158F)); + builder.AddLine(new Vector2(-415.768005F, -158F)); + builder.AddLine(new Vector2(-415.768005F, -132.296005F)); + builder.AddLine(new Vector2(-412.528015F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-400.432007F, -132.296005F)); + builder.AddLine(new Vector2(-400.432007F, -142.916F)); + builder.AddCubicBezier(new Vector2(-400.432007F, -144.259995F), new Vector2(-400.720001F, -145.447998F), new Vector2(-401.29599F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-401.872009F, -147.511993F), new Vector2(-402.65799F, -148.315994F), new Vector2(-403.653992F, -148.891998F)); + builder.AddCubicBezier(new Vector2(-404.649994F, -149.468002F), new Vector2(-405.79599F, -149.755997F), new Vector2(-407.09201F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-408.388F, -149.755997F), new Vector2(-409.552002F, -149.462006F), new Vector2(-410.584015F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-411.615997F, -148.285995F), new Vector2(-412.420013F, -147.488007F), new Vector2(-412.996002F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-413.571991F, -145.472F), new Vector2(-413.859985F, -144.320007F), new Vector2(-413.859985F, -143.024002F)); + builder.AddLine(new Vector2(-412.528015F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-412.528015F, -143.132004F), new Vector2(-412.335999F, -143.899994F), new Vector2(-411.951996F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-411.567993F, -145.244003F), new Vector2(-411.040009F, -145.772003F), new Vector2(-410.368011F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-409.696014F, -146.539993F), new Vector2(-408.928009F, -146.731995F), new Vector2(-408.063995F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-406.768005F, -146.731995F), new Vector2(-405.717987F, -146.311996F), new Vector2(-404.914001F, -145.472F)); + builder.AddCubicBezier(new Vector2(-404.109985F, -144.632004F), new Vector2(-403.708008F, -143.563995F), new Vector2(-403.708008F, -142.268005F)); + builder.AddLine(new Vector2(-403.708008F, -132.296005F)); + builder.AddLine(new Vector2(-400.432007F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0439() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-436F, -132.296005F)); + builder.AddLine(new Vector2(-431.032013F, -145.184006F)); + builder.AddLine(new Vector2(-432.220001F, -145.184006F)); + builder.AddLine(new Vector2(-427.287994F, -132.296005F)); + builder.AddLine(new Vector2(-425.380005F, -132.296005F)); + builder.AddLine(new Vector2(-418.64801F, -149.395996F)); + builder.AddLine(new Vector2(-422.032013F, -149.395996F)); + builder.AddLine(new Vector2(-426.928009F, -136.076004F)); + builder.AddLine(new Vector2(-425.847992F, -136.076004F)); + builder.AddLine(new Vector2(-430.708008F, -149.395996F)); + builder.AddLine(new Vector2(-432.579987F, -149.395996F)); + builder.AddLine(new Vector2(-437.440002F, -136.076004F)); + builder.AddLine(new Vector2(-436.359985F, -136.076004F)); + builder.AddLine(new Vector2(-441.256012F, -149.395996F)); + builder.AddLine(new Vector2(-444.640015F, -149.395996F)); + builder.AddLine(new Vector2(-437.90799F, -132.296005F)); + builder.AddLine(new Vector2(-436F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0440() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-455.56601F, -133.339996F)); + builder.AddCubicBezier(new Vector2(-454.425995F, -134.276001F), new Vector2(-453.855988F, -135.548004F), new Vector2(-453.855988F, -137.156006F)); + builder.AddCubicBezier(new Vector2(-453.855988F, -138.212006F), new Vector2(-454.078003F, -139.063995F), new Vector2(-454.522003F, -139.712006F)); + builder.AddCubicBezier(new Vector2(-454.966003F, -140.360001F), new Vector2(-455.536011F, -140.876007F), new Vector2(-456.231995F, -141.259995F)); + builder.AddCubicBezier(new Vector2(-456.928009F, -141.643997F), new Vector2(-457.660004F, -141.949997F), new Vector2(-458.428009F, -142.177994F)); + builder.AddCubicBezier(new Vector2(-459.196014F, -142.406006F), new Vector2(-459.93399F, -142.628006F), new Vector2(-460.641998F, -142.843994F)); + builder.AddCubicBezier(new Vector2(-461.350006F, -143.059998F), new Vector2(-461.920013F, -143.324005F), new Vector2(-462.35199F, -143.636002F)); + builder.AddCubicBezier(new Vector2(-462.783997F, -143.947998F), new Vector2(-463F, -144.391998F), new Vector2(-463F, -144.968002F)); + builder.AddCubicBezier(new Vector2(-463F, -145.520004F), new Vector2(-462.753998F, -145.964005F), new Vector2(-462.261993F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-461.769989F, -146.636002F), new Vector2(-461.056F, -146.804001F), new Vector2(-460.119995F, -146.804001F)); + builder.AddCubicBezier(new Vector2(-459.231995F, -146.804001F), new Vector2(-458.440002F, -146.636002F), new Vector2(-457.743988F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-457.048004F, -145.964005F), new Vector2(-456.447998F, -145.483994F), new Vector2(-455.944F, -144.860001F)); + builder.AddLine(new Vector2(-453.855988F, -146.947998F)); + builder.AddCubicBezier(new Vector2(-454.528015F, -147.884003F), new Vector2(-455.385986F, -148.585999F), new Vector2(-456.429993F, -149.054001F)); + builder.AddCubicBezier(new Vector2(-457.473999F, -149.522003F), new Vector2(-458.667999F, -149.755997F), new Vector2(-460.011993F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-461.283997F, -149.755997F), new Vector2(-462.376007F, -149.552002F), new Vector2(-463.287994F, -149.143997F)); + builder.AddCubicBezier(new Vector2(-464.200012F, -148.735992F), new Vector2(-464.902008F, -148.154007F), new Vector2(-465.394012F, -147.397995F)); + builder.AddCubicBezier(new Vector2(-465.885986F, -146.641998F), new Vector2(-466.131989F, -145.748001F), new Vector2(-466.131989F, -144.716003F)); + builder.AddCubicBezier(new Vector2(-466.131989F, -143.684006F), new Vector2(-465.910004F, -142.850006F), new Vector2(-465.466003F, -142.214005F)); + builder.AddCubicBezier(new Vector2(-465.022003F, -141.578003F), new Vector2(-464.451996F, -141.080002F), new Vector2(-463.756012F, -140.720001F)); + builder.AddCubicBezier(new Vector2(-463.059998F, -140.360001F), new Vector2(-462.321991F, -140.072006F), new Vector2(-461.541992F, -139.856003F)); + builder.AddCubicBezier(new Vector2(-460.761993F, -139.639999F), new Vector2(-460.023987F, -139.417999F), new Vector2(-459.328003F, -139.190002F)); + builder.AddCubicBezier(new Vector2(-458.631989F, -138.962006F), new Vector2(-458.062012F, -138.673996F), new Vector2(-457.618011F, -138.326004F)); + builder.AddCubicBezier(new Vector2(-457.174011F, -137.977997F), new Vector2(-456.951996F, -137.492004F), new Vector2(-456.951996F, -136.867996F)); + builder.AddCubicBezier(new Vector2(-456.951996F, -136.244003F), new Vector2(-457.227997F, -135.757996F), new Vector2(-457.779999F, -135.410004F)); + builder.AddCubicBezier(new Vector2(-458.332001F, -135.061996F), new Vector2(-459.112F, -134.888F), new Vector2(-460.119995F, -134.888F)); + builder.AddCubicBezier(new Vector2(-461.127991F, -134.888F), new Vector2(-462.040009F, -135.074005F), new Vector2(-462.855988F, -135.445999F)); + builder.AddCubicBezier(new Vector2(-463.671997F, -135.817993F), new Vector2(-464.391998F, -136.388F), new Vector2(-465.015991F, -137.156006F)); + builder.AddLine(new Vector2(-467.104004F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-466.575989F, -134.419998F), new Vector2(-465.958008F, -133.862F), new Vector2(-465.25F, -133.393997F)); + builder.AddCubicBezier(new Vector2(-464.541992F, -132.925995F), new Vector2(-463.756012F, -132.565994F), new Vector2(-462.891998F, -132.313995F)); + builder.AddCubicBezier(new Vector2(-462.028015F, -132.061996F), new Vector2(-461.115997F, -131.936005F), new Vector2(-460.156006F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-458.235992F, -131.936005F), new Vector2(-456.705994F, -132.404007F), new Vector2(-455.56601F, -133.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0441() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-469.984009F, -132.296005F)); + builder.AddLine(new Vector2(-469.984009F, -143.276001F)); + builder.AddCubicBezier(new Vector2(-469.984009F, -144.619995F), new Vector2(-470.278015F, -145.772003F), new Vector2(-470.865997F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-471.45401F, -147.692001F), new Vector2(-472.23999F, -148.436005F), new Vector2(-473.223999F, -148.964005F)); + builder.AddCubicBezier(new Vector2(-474.208008F, -149.492004F), new Vector2(-475.324005F, -149.755997F), new Vector2(-476.571991F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-477.772003F, -149.755997F), new Vector2(-478.876007F, -149.485992F), new Vector2(-479.884003F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-480.891998F, -148.406006F), new Vector2(-481.713989F, -147.662003F), new Vector2(-482.350006F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-482.985992F, -145.766006F), new Vector2(-483.339996F, -144.632004F), new Vector2(-483.411987F, -143.311996F)); + builder.AddLine(new Vector2(-481.575989F, -142.628006F)); + builder.AddCubicBezier(new Vector2(-481.575989F, -143.492004F), new Vector2(-481.384003F, -144.223999F), new Vector2(-481F, -144.824005F)); + builder.AddCubicBezier(new Vector2(-480.615997F, -145.423996F), new Vector2(-480.105988F, -145.891998F), new Vector2(-479.470001F, -146.227997F)); + builder.AddCubicBezier(new Vector2(-478.834015F, -146.563995F), new Vector2(-478.119995F, -146.731995F), new Vector2(-477.328003F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-476.175995F, -146.731995F), new Vector2(-475.209991F, -146.365997F), new Vector2(-474.429993F, -145.634003F)); + builder.AddCubicBezier(new Vector2(-473.649994F, -144.901993F), new Vector2(-473.26001F, -143.899994F), new Vector2(-473.26001F, -142.628006F)); + builder.AddLine(new Vector2(-473.26001F, -132.296005F)); + builder.AddLine(new Vector2(-469.984009F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-481.575989F, -132.296005F)); + builder.AddLine(new Vector2(-481.575989F, -143.311996F)); + builder.AddCubicBezier(new Vector2(-481.575989F, -144.632004F), new Vector2(-481.858002F, -145.772003F), new Vector2(-482.421997F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-482.985992F, -147.692001F), new Vector2(-483.753998F, -148.436005F), new Vector2(-484.726013F, -148.964005F)); + builder.AddCubicBezier(new Vector2(-485.697998F, -149.492004F), new Vector2(-486.783997F, -149.755997F), new Vector2(-487.984009F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-489.208008F, -149.755997F), new Vector2(-490.312012F, -149.485992F), new Vector2(-491.29599F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-492.279999F, -148.406006F), new Vector2(-493.053986F, -147.656006F), new Vector2(-493.618011F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-494.182007F, -145.735992F), new Vector2(-494.463989F, -144.608002F), new Vector2(-494.463989F, -143.311996F)); + builder.AddLine(new Vector2(-493.131989F, -142.628006F)); + builder.AddCubicBezier(new Vector2(-493.131989F, -143.492004F), new Vector2(-492.940002F, -144.223999F), new Vector2(-492.556F, -144.824005F)); + builder.AddCubicBezier(new Vector2(-492.171997F, -145.423996F), new Vector2(-491.667999F, -145.891998F), new Vector2(-491.044006F, -146.227997F)); + builder.AddCubicBezier(new Vector2(-490.420013F, -146.563995F), new Vector2(-489.712006F, -146.731995F), new Vector2(-488.920013F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-487.743988F, -146.731995F), new Vector2(-486.765991F, -146.365997F), new Vector2(-485.985992F, -145.634003F)); + builder.AddCubicBezier(new Vector2(-485.205994F, -144.901993F), new Vector2(-484.81601F, -143.899994F), new Vector2(-484.81601F, -142.628006F)); + builder.AddLine(new Vector2(-484.81601F, -132.296005F)); + builder.AddLine(new Vector2(-481.575989F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-493.131989F, -132.296005F)); + builder.AddLine(new Vector2(-493.131989F, -149.395996F)); + builder.AddLine(new Vector2(-496.372009F, -149.395996F)); + builder.AddLine(new Vector2(-496.372009F, -132.296005F)); + builder.AddLine(new Vector2(-493.131989F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0442() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-501.303986F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-500.920013F, -153.806F), new Vector2(-500.727997F, -154.304001F), new Vector2(-500.727997F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-500.727997F, -155.479996F), new Vector2(-500.920013F, -155.966003F), new Vector2(-501.303986F, -156.362F)); + builder.AddCubicBezier(new Vector2(-501.687988F, -156.757996F), new Vector2(-502.179993F, -156.955994F), new Vector2(-502.779999F, -156.955994F)); + builder.AddCubicBezier(new Vector2(-503.380005F, -156.955994F), new Vector2(-503.872009F, -156.757996F), new Vector2(-504.256012F, -156.362F)); + builder.AddCubicBezier(new Vector2(-504.640015F, -155.966003F), new Vector2(-504.832001F, -155.479996F), new Vector2(-504.832001F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-504.832001F, -154.304001F), new Vector2(-504.640015F, -153.806F), new Vector2(-504.256012F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-503.872009F, -153.014008F), new Vector2(-503.380005F, -152.815994F), new Vector2(-502.779999F, -152.815994F)); + builder.AddCubicBezier(new Vector2(-502.179993F, -152.815994F), new Vector2(-501.687988F, -153.014008F), new Vector2(-501.303986F, -153.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-501.160004F, -132.296005F)); + builder.AddLine(new Vector2(-501.160004F, -149.395996F)); + builder.AddLine(new Vector2(-504.436005F, -149.395996F)); + builder.AddLine(new Vector2(-504.436005F, -132.296005F)); + builder.AddLine(new Vector2(-501.160004F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0443() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-507.604004F, -146.444F)); + builder.AddLine(new Vector2(-507.604004F, -149.395996F)); + builder.AddLine(new Vector2(-519.268005F, -149.395996F)); + builder.AddLine(new Vector2(-519.268005F, -146.444F)); + builder.AddLine(new Vector2(-507.604004F, -146.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-511.81601F, -132.296005F)); + builder.AddLine(new Vector2(-511.81601F, -156.559998F)); + builder.AddLine(new Vector2(-515.05603F, -156.559998F)); + builder.AddLine(new Vector2(-515.05603F, -132.296005F)); + builder.AddLine(new Vector2(-511.81601F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0444() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-523.570007F, -132.692001F)); + builder.AddCubicBezier(new Vector2(-522.429993F, -133.195999F), new Vector2(-521.463989F, -133.904007F), new Vector2(-520.671997F, -134.815994F)); + builder.AddLine(new Vector2(-522.796021F, -136.975998F)); + builder.AddCubicBezier(new Vector2(-523.348022F, -136.352005F), new Vector2(-524.002014F, -135.878006F), new Vector2(-524.757996F, -135.554001F)); + builder.AddCubicBezier(new Vector2(-525.513977F, -135.229996F), new Vector2(-526.348022F, -135.067993F), new Vector2(-527.26001F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-528.340027F, -135.067993F), new Vector2(-529.299988F, -135.320007F), new Vector2(-530.140015F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-530.97998F, -136.328003F), new Vector2(-531.640015F, -137.011993F), new Vector2(-532.119995F, -137.876007F)); + builder.AddCubicBezier(new Vector2(-532.599976F, -138.740005F), new Vector2(-532.840027F, -139.735992F), new Vector2(-532.840027F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-532.840027F, -141.992004F), new Vector2(-532.599976F, -142.988007F), new Vector2(-532.119995F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-531.640015F, -144.716003F), new Vector2(-530.97998F, -145.393997F), new Vector2(-530.140015F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-529.299988F, -146.378006F), new Vector2(-528.340027F, -146.623993F), new Vector2(-527.26001F, -146.623993F)); + builder.AddCubicBezier(new Vector2(-526.372009F, -146.623993F), new Vector2(-525.544006F, -146.462006F), new Vector2(-524.776001F, -146.138F)); + builder.AddCubicBezier(new Vector2(-524.007996F, -145.813995F), new Vector2(-523.359985F, -145.339996F), new Vector2(-522.83197F, -144.716003F)); + builder.AddLine(new Vector2(-520.671997F, -146.876007F)); + builder.AddCubicBezier(new Vector2(-521.487976F, -147.811996F), new Vector2(-522.460022F, -148.526001F), new Vector2(-523.588013F, -149.018005F)); + builder.AddCubicBezier(new Vector2(-524.716003F, -149.509995F), new Vector2(-525.940002F, -149.755997F), new Vector2(-527.26001F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-528.940002F, -149.755997F), new Vector2(-530.458008F, -149.365997F), new Vector2(-531.814026F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-533.169983F, -147.806F), new Vector2(-534.237976F, -146.744003F), new Vector2(-535.018005F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-535.797974F, -144.056F), new Vector2(-536.187988F, -142.544006F), new Vector2(-536.187988F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-536.187988F, -139.207993F), new Vector2(-535.797974F, -137.701996F), new Vector2(-535.018005F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-534.237976F, -134.990005F), new Vector2(-533.169983F, -133.916F), new Vector2(-531.814026F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-530.458008F, -132.332001F), new Vector2(-528.940002F, -131.936005F), new Vector2(-527.26001F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-525.940002F, -131.936005F), new Vector2(-524.710022F, -132.188004F), new Vector2(-523.570007F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0445() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-540.004028F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-539.619995F, -153.806F), new Vector2(-539.427979F, -154.304001F), new Vector2(-539.427979F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-539.427979F, -155.479996F), new Vector2(-539.619995F, -155.966003F), new Vector2(-540.004028F, -156.362F)); + builder.AddCubicBezier(new Vector2(-540.388F, -156.757996F), new Vector2(-540.880005F, -156.955994F), new Vector2(-541.47998F, -156.955994F)); + builder.AddCubicBezier(new Vector2(-542.080017F, -156.955994F), new Vector2(-542.572021F, -156.757996F), new Vector2(-542.955994F, -156.362F)); + builder.AddCubicBezier(new Vector2(-543.340027F, -155.966003F), new Vector2(-543.531982F, -155.479996F), new Vector2(-543.531982F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-543.531982F, -154.304001F), new Vector2(-543.340027F, -153.806F), new Vector2(-542.955994F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-542.572021F, -153.014008F), new Vector2(-542.080017F, -152.815994F), new Vector2(-541.47998F, -152.815994F)); + builder.AddCubicBezier(new Vector2(-540.880005F, -152.815994F), new Vector2(-540.388F, -153.014008F), new Vector2(-540.004028F, -153.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-539.859985F, -132.296005F)); + builder.AddLine(new Vector2(-539.859985F, -149.395996F)); + builder.AddLine(new Vector2(-543.135986F, -149.395996F)); + builder.AddLine(new Vector2(-543.135986F, -132.296005F)); + builder.AddLine(new Vector2(-539.859985F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0446() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-553.755981F, -132.296005F)); + builder.AddLine(new Vector2(-545.90802F, -149.395996F)); + builder.AddLine(new Vector2(-549.364014F, -149.395996F)); + builder.AddLine(new Vector2(-555.700012F, -134.960007F)); + builder.AddLine(new Vector2(-553.612F, -134.960007F)); + builder.AddLine(new Vector2(-559.911987F, -149.395996F)); + builder.AddLine(new Vector2(-563.512024F, -149.395996F)); + builder.AddLine(new Vector2(-555.664001F, -132.296005F)); + builder.AddLine(new Vector2(-553.755981F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0447() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-579.676025F, -145.544006F)); + builder.AddCubicBezier(new Vector2(-578.90802F, -146.311996F), new Vector2(-577.924011F, -146.695999F), new Vector2(-576.723999F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-576.14801F, -146.695999F), new Vector2(-575.643982F, -146.612F), new Vector2(-575.211975F, -146.444F)); + builder.AddCubicBezier(new Vector2(-574.780029F, -146.276001F), new Vector2(-574.383972F, -146F), new Vector2(-574.023987F, -145.615997F)); + builder.AddLine(new Vector2(-571.900024F, -147.811996F)); + builder.AddCubicBezier(new Vector2(-572.5F, -148.507996F), new Vector2(-573.14801F, -149.005997F), new Vector2(-573.843994F, -149.306F)); + builder.AddCubicBezier(new Vector2(-574.539978F, -149.606003F), new Vector2(-575.320007F, -149.755997F), new Vector2(-576.184021F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-578.080017F, -149.755997F), new Vector2(-579.531982F, -149.108002F), new Vector2(-580.539978F, -147.811996F)); + builder.AddCubicBezier(new Vector2(-581.547974F, -146.516006F), new Vector2(-582.052002F, -144.776001F), new Vector2(-582.052002F, -142.591995F)); + builder.AddLine(new Vector2(-580.828003F, -142.016006F)); + builder.AddCubicBezier(new Vector2(-580.828003F, -143.600006F), new Vector2(-580.44397F, -144.776001F), new Vector2(-579.676025F, -145.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-580.828003F, -132.296005F)); + builder.AddLine(new Vector2(-580.828003F, -149.395996F)); + builder.AddLine(new Vector2(-584.067993F, -149.395996F)); + builder.AddLine(new Vector2(-584.067993F, -132.296005F)); + builder.AddLine(new Vector2(-580.828003F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0448() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-591.664001F, -132.692001F)); + builder.AddCubicBezier(new Vector2(-590.487976F, -133.195999F), new Vector2(-589.47998F, -133.927994F), new Vector2(-588.640015F, -134.888F)); + builder.AddLine(new Vector2(-590.728027F, -137.011993F)); + builder.AddCubicBezier(new Vector2(-591.304016F, -136.339996F), new Vector2(-591.994019F, -135.835999F), new Vector2(-592.797974F, -135.5F)); + builder.AddCubicBezier(new Vector2(-593.60199F, -135.164001F), new Vector2(-594.484009F, -134.996002F), new Vector2(-595.44397F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-596.596008F, -134.996002F), new Vector2(-597.616028F, -135.242004F), new Vector2(-598.504028F, -135.733994F)); + builder.AddCubicBezier(new Vector2(-599.392029F, -136.225998F), new Vector2(-600.075989F, -136.921997F), new Vector2(-600.55603F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-601.036011F, -138.722F), new Vector2(-601.276001F, -139.772003F), new Vector2(-601.276001F, -140.972F)); + builder.AddCubicBezier(new Vector2(-601.276001F, -142.147995F), new Vector2(-601.047974F, -143.167999F), new Vector2(-600.59198F, -144.031998F)); + builder.AddCubicBezier(new Vector2(-600.135986F, -144.895996F), new Vector2(-599.487976F, -145.567993F), new Vector2(-598.64801F, -146.048004F)); + builder.AddCubicBezier(new Vector2(-597.807983F, -146.528F), new Vector2(-596.835999F, -146.768005F), new Vector2(-595.731995F, -146.768005F)); + builder.AddCubicBezier(new Vector2(-594.676025F, -146.768005F), new Vector2(-593.776001F, -146.546005F), new Vector2(-593.031982F, -146.102005F)); + builder.AddCubicBezier(new Vector2(-592.288025F, -145.658005F), new Vector2(-591.711975F, -145.033997F), new Vector2(-591.304016F, -144.229996F)); + builder.AddCubicBezier(new Vector2(-590.895996F, -143.425995F), new Vector2(-590.692017F, -142.447998F), new Vector2(-590.692017F, -141.296005F)); + builder.AddLine(new Vector2(-589.504028F, -142.339996F)); + builder.AddLine(new Vector2(-602.211975F, -142.339996F)); + builder.AddLine(new Vector2(-602.211975F, -139.639999F)); + builder.AddLine(new Vector2(-587.776001F, -139.639999F)); + builder.AddCubicBezier(new Vector2(-587.703979F, -139.975998F), new Vector2(-587.656006F, -140.281998F), new Vector2(-587.632019F, -140.557999F)); + builder.AddCubicBezier(new Vector2(-587.607971F, -140.834F), new Vector2(-587.596008F, -141.091995F), new Vector2(-587.596008F, -141.332001F)); + builder.AddCubicBezier(new Vector2(-587.596008F, -142.964005F), new Vector2(-587.937988F, -144.416F), new Vector2(-588.622009F, -145.688004F)); + builder.AddCubicBezier(new Vector2(-589.30603F, -146.960007F), new Vector2(-590.26001F, -147.955994F), new Vector2(-591.484009F, -148.675995F)); + builder.AddCubicBezier(new Vector2(-592.708008F, -149.395996F), new Vector2(-594.099976F, -149.755997F), new Vector2(-595.659973F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-597.315979F, -149.755997F), new Vector2(-598.809998F, -149.365997F), new Vector2(-600.142029F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-601.473999F, -147.806F), new Vector2(-602.530029F, -146.744003F), new Vector2(-603.309998F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-604.090027F, -144.056F), new Vector2(-604.47998F, -142.544006F), new Vector2(-604.47998F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-604.47998F, -139.160004F), new Vector2(-604.083984F, -137.636002F), new Vector2(-603.291992F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-602.5F, -134.947998F), new Vector2(-601.426025F, -133.886002F), new Vector2(-600.070007F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-598.713989F, -132.326004F), new Vector2(-597.171997F, -131.936005F), new Vector2(-595.44397F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-594.099976F, -131.936005F), new Vector2(-592.840027F, -132.188004F), new Vector2(-591.664001F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0449() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-619.85199F, -132.296005F)); + builder.AddLine(new Vector2(-619.85199F, -158F)); + builder.AddLine(new Vector2(-623.09198F, -158F)); + builder.AddLine(new Vector2(-623.09198F, -132.296005F)); + builder.AddLine(new Vector2(-619.85199F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-607.755981F, -132.296005F)); + builder.AddLine(new Vector2(-607.755981F, -142.916F)); + builder.AddCubicBezier(new Vector2(-607.755981F, -144.259995F), new Vector2(-608.044006F, -145.447998F), new Vector2(-608.619995F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-609.195984F, -147.511993F), new Vector2(-609.981995F, -148.315994F), new Vector2(-610.978027F, -148.891998F)); + builder.AddCubicBezier(new Vector2(-611.973999F, -149.468002F), new Vector2(-613.119995F, -149.755997F), new Vector2(-614.416016F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-615.711975F, -149.755997F), new Vector2(-616.875977F, -149.462006F), new Vector2(-617.90802F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-618.940002F, -148.285995F), new Vector2(-619.744019F, -147.488007F), new Vector2(-620.320007F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-620.895996F, -145.472F), new Vector2(-621.184021F, -144.320007F), new Vector2(-621.184021F, -143.024002F)); + builder.AddLine(new Vector2(-619.85199F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-619.85199F, -143.132004F), new Vector2(-619.659973F, -143.899994F), new Vector2(-619.276001F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-618.892029F, -145.244003F), new Vector2(-618.364014F, -145.772003F), new Vector2(-617.692017F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-617.02002F, -146.539993F), new Vector2(-616.252014F, -146.731995F), new Vector2(-615.388F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-614.09198F, -146.731995F), new Vector2(-613.041992F, -146.311996F), new Vector2(-612.237976F, -145.472F)); + builder.AddCubicBezier(new Vector2(-611.434021F, -144.632004F), new Vector2(-611.031982F, -143.563995F), new Vector2(-611.031982F, -142.268005F)); + builder.AddLine(new Vector2(-611.031982F, -132.296005F)); + builder.AddLine(new Vector2(-607.755981F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0450() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-626.26001F, -146.444F)); + builder.AddLine(new Vector2(-626.26001F, -149.395996F)); + builder.AddLine(new Vector2(-637.924011F, -149.395996F)); + builder.AddLine(new Vector2(-637.924011F, -146.444F)); + builder.AddLine(new Vector2(-626.26001F, -146.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-630.471985F, -132.296005F)); + builder.AddLine(new Vector2(-630.471985F, -156.559998F)); + builder.AddLine(new Vector2(-633.711975F, -156.559998F)); + builder.AddLine(new Vector2(-633.711975F, -132.296005F)); + builder.AddLine(new Vector2(-630.471985F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0451() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-651.208008F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-652.047974F, -136.328003F), new Vector2(-652.708008F, -137.018005F), new Vector2(-653.187988F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-653.66803F, -138.770004F), new Vector2(-653.90802F, -139.772003F), new Vector2(-653.90802F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-653.90802F, -142.003998F), new Vector2(-653.66803F, -142.988007F), new Vector2(-653.187988F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-652.708008F, -144.716003F), new Vector2(-652.047974F, -145.393997F), new Vector2(-651.208008F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-650.367981F, -146.378006F), new Vector2(-649.419983F, -146.623993F), new Vector2(-648.364014F, -146.623993F)); + builder.AddCubicBezier(new Vector2(-647.26001F, -146.623993F), new Vector2(-646.294006F, -146.378006F), new Vector2(-645.466003F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-644.638F, -145.393997F), new Vector2(-643.978027F, -144.716003F), new Vector2(-643.486023F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-642.994019F, -142.988007F), new Vector2(-642.747986F, -142.003998F), new Vector2(-642.747986F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-642.747986F, -139.772003F), new Vector2(-642.987976F, -138.770004F), new Vector2(-643.468018F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-643.947998F, -137.018005F), new Vector2(-644.607971F, -136.328003F), new Vector2(-645.447998F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-646.288025F, -135.320007F), new Vector2(-647.26001F, -135.067993F), new Vector2(-648.364014F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-649.419983F, -135.067993F), new Vector2(-650.367981F, -135.320007F), new Vector2(-651.208008F, -135.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-643.809998F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-642.453979F, -133.916F), new Vector2(-641.380005F, -134.990005F), new Vector2(-640.588013F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-639.796021F, -137.701996F), new Vector2(-639.400024F, -139.220001F), new Vector2(-639.400024F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-639.400024F, -142.556F), new Vector2(-639.796021F, -144.056F), new Vector2(-640.588013F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-641.380005F, -146.744003F), new Vector2(-642.453979F, -147.806F), new Vector2(-643.809998F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-645.166016F, -149.365997F), new Vector2(-646.684021F, -149.755997F), new Vector2(-648.364014F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-650.02002F, -149.755997F), new Vector2(-651.52002F, -149.360001F), new Vector2(-652.864014F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-654.208008F, -147.776001F), new Vector2(-655.276001F, -146.714005F), new Vector2(-656.067993F, -145.382004F)); + builder.AddCubicBezier(new Vector2(-656.859985F, -144.050003F), new Vector2(-657.255981F, -142.556F), new Vector2(-657.255981F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-657.255981F, -139.220001F), new Vector2(-656.859985F, -137.701996F), new Vector2(-656.067993F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-655.276001F, -134.990005F), new Vector2(-654.208008F, -133.916F), new Vector2(-652.864014F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-651.52002F, -132.332001F), new Vector2(-650.02002F, -131.936005F), new Vector2(-648.364014F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-646.684021F, -131.936005F), new Vector2(-645.166016F, -132.332001F), new Vector2(-643.809998F, -133.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0452() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-666.83197F, -146.444F)); + builder.AddLine(new Vector2(-666.83197F, -149.395996F)); + builder.AddLine(new Vector2(-679.719971F, -149.395996F)); + builder.AddLine(new Vector2(-679.719971F, -146.444F)); + builder.AddLine(new Vector2(-666.83197F, -146.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-672.268005F, -132.296005F)); + builder.AddLine(new Vector2(-672.268005F, -151.951996F)); + builder.AddCubicBezier(new Vector2(-672.268005F, -153.007996F), new Vector2(-671.986023F, -153.830002F), new Vector2(-671.421997F, -154.417999F)); + builder.AddCubicBezier(new Vector2(-670.857971F, -155.005997F), new Vector2(-670.059998F, -155.300003F), new Vector2(-669.028015F, -155.300003F)); + builder.AddCubicBezier(new Vector2(-668.476013F, -155.300003F), new Vector2(-668.007996F, -155.216003F), new Vector2(-667.624023F, -155.048004F)); + builder.AddCubicBezier(new Vector2(-667.23999F, -154.880005F), new Vector2(-666.892029F, -154.628006F), new Vector2(-666.580017F, -154.292007F)); + builder.AddLine(new Vector2(-664.455994F, -156.380005F)); + builder.AddCubicBezier(new Vector2(-665.05603F, -157.028F), new Vector2(-665.716003F, -157.520004F), new Vector2(-666.435974F, -157.856003F)); + builder.AddCubicBezier(new Vector2(-667.156006F, -158.192001F), new Vector2(-668.007996F, -158.360001F), new Vector2(-668.992004F, -158.360001F)); + builder.AddCubicBezier(new Vector2(-670.288025F, -158.360001F), new Vector2(-671.427979F, -158.084F), new Vector2(-672.411987F, -157.531998F)); + builder.AddCubicBezier(new Vector2(-673.395996F, -156.979996F), new Vector2(-674.164001F, -156.223999F), new Vector2(-674.716003F, -155.264008F)); + builder.AddCubicBezier(new Vector2(-675.268005F, -154.304001F), new Vector2(-675.544006F, -153.199997F), new Vector2(-675.544006F, -151.951996F)); + builder.AddLine(new Vector2(-675.544006F, -132.296005F)); + builder.AddLine(new Vector2(-672.268005F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0453() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-692.823975F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-693.664001F, -136.328003F), new Vector2(-694.323975F, -137.018005F), new Vector2(-694.804016F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-695.283997F, -138.770004F), new Vector2(-695.523987F, -139.772003F), new Vector2(-695.523987F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-695.523987F, -142.003998F), new Vector2(-695.283997F, -142.988007F), new Vector2(-694.804016F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-694.323975F, -144.716003F), new Vector2(-693.664001F, -145.393997F), new Vector2(-692.823975F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-691.984009F, -146.378006F), new Vector2(-691.036011F, -146.623993F), new Vector2(-689.97998F, -146.623993F)); + builder.AddCubicBezier(new Vector2(-688.875977F, -146.623993F), new Vector2(-687.909973F, -146.378006F), new Vector2(-687.08197F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-686.254028F, -145.393997F), new Vector2(-685.593994F, -144.716003F), new Vector2(-685.10199F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-684.609985F, -142.988007F), new Vector2(-684.364014F, -142.003998F), new Vector2(-684.364014F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-684.364014F, -139.772003F), new Vector2(-684.604004F, -138.770004F), new Vector2(-685.083984F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-685.564026F, -137.018005F), new Vector2(-686.223999F, -136.328003F), new Vector2(-687.064026F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-687.903992F, -135.320007F), new Vector2(-688.875977F, -135.067993F), new Vector2(-689.97998F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-691.036011F, -135.067993F), new Vector2(-691.984009F, -135.320007F), new Vector2(-692.823975F, -135.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-685.426025F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-684.070007F, -133.916F), new Vector2(-682.995972F, -134.990005F), new Vector2(-682.203979F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-681.411987F, -137.701996F), new Vector2(-681.015991F, -139.220001F), new Vector2(-681.015991F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-681.015991F, -142.556F), new Vector2(-681.411987F, -144.056F), new Vector2(-682.203979F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-682.995972F, -146.744003F), new Vector2(-684.070007F, -147.806F), new Vector2(-685.426025F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-686.781982F, -149.365997F), new Vector2(-688.299988F, -149.755997F), new Vector2(-689.97998F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-691.635986F, -149.755997F), new Vector2(-693.135986F, -149.360001F), new Vector2(-694.47998F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-695.823975F, -147.776001F), new Vector2(-696.892029F, -146.714005F), new Vector2(-697.684021F, -145.382004F)); + builder.AddCubicBezier(new Vector2(-698.476013F, -144.050003F), new Vector2(-698.872009F, -142.556F), new Vector2(-698.872009F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-698.872009F, -139.220001F), new Vector2(-698.476013F, -137.701996F), new Vector2(-697.684021F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-696.892029F, -134.990005F), new Vector2(-695.823975F, -133.916F), new Vector2(-694.47998F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-693.135986F, -132.332001F), new Vector2(-691.635986F, -131.936005F), new Vector2(-689.97998F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-688.299988F, -131.936005F), new Vector2(-686.781982F, -132.332001F), new Vector2(-685.426025F, -133.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0454() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-715.900024F, -145.544006F)); + builder.AddCubicBezier(new Vector2(-715.132019F, -146.311996F), new Vector2(-714.14801F, -146.695999F), new Vector2(-712.947998F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-712.372009F, -146.695999F), new Vector2(-711.867981F, -146.612F), new Vector2(-711.435974F, -146.444F)); + builder.AddCubicBezier(new Vector2(-711.004028F, -146.276001F), new Vector2(-710.607971F, -146F), new Vector2(-710.247986F, -145.615997F)); + builder.AddLine(new Vector2(-708.124023F, -147.811996F)); + builder.AddCubicBezier(new Vector2(-708.723999F, -148.507996F), new Vector2(-709.372009F, -149.005997F), new Vector2(-710.067993F, -149.306F)); + builder.AddCubicBezier(new Vector2(-710.763977F, -149.606003F), new Vector2(-711.544006F, -149.755997F), new Vector2(-712.40802F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-714.304016F, -149.755997F), new Vector2(-715.755981F, -149.108002F), new Vector2(-716.763977F, -147.811996F)); + builder.AddCubicBezier(new Vector2(-717.771973F, -146.516006F), new Vector2(-718.276001F, -144.776001F), new Vector2(-718.276001F, -142.591995F)); + builder.AddLine(new Vector2(-717.052002F, -142.016006F)); + builder.AddCubicBezier(new Vector2(-717.052002F, -143.600006F), new Vector2(-716.66803F, -144.776001F), new Vector2(-715.900024F, -145.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-717.052002F, -132.296005F)); + builder.AddLine(new Vector2(-717.052002F, -149.395996F)); + builder.AddLine(new Vector2(-720.291992F, -149.395996F)); + builder.AddLine(new Vector2(-720.291992F, -132.296005F)); + builder.AddLine(new Vector2(-717.052002F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0455() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-727.888F, -132.692001F)); + builder.AddCubicBezier(new Vector2(-726.711975F, -133.195999F), new Vector2(-725.703979F, -133.927994F), new Vector2(-724.864014F, -134.888F)); + builder.AddLine(new Vector2(-726.952026F, -137.011993F)); + builder.AddCubicBezier(new Vector2(-727.528015F, -136.339996F), new Vector2(-728.218018F, -135.835999F), new Vector2(-729.021973F, -135.5F)); + builder.AddCubicBezier(new Vector2(-729.825989F, -135.164001F), new Vector2(-730.708008F, -134.996002F), new Vector2(-731.66803F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-732.820007F, -134.996002F), new Vector2(-733.840027F, -135.242004F), new Vector2(-734.728027F, -135.733994F)); + builder.AddCubicBezier(new Vector2(-735.616028F, -136.225998F), new Vector2(-736.299988F, -136.921997F), new Vector2(-736.780029F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-737.26001F, -138.722F), new Vector2(-737.5F, -139.772003F), new Vector2(-737.5F, -140.972F)); + builder.AddCubicBezier(new Vector2(-737.5F, -142.147995F), new Vector2(-737.271973F, -143.167999F), new Vector2(-736.815979F, -144.031998F)); + builder.AddCubicBezier(new Vector2(-736.359985F, -144.895996F), new Vector2(-735.711975F, -145.567993F), new Vector2(-734.872009F, -146.048004F)); + builder.AddCubicBezier(new Vector2(-734.031982F, -146.528F), new Vector2(-733.059998F, -146.768005F), new Vector2(-731.955994F, -146.768005F)); + builder.AddCubicBezier(new Vector2(-730.900024F, -146.768005F), new Vector2(-730F, -146.546005F), new Vector2(-729.255981F, -146.102005F)); + builder.AddCubicBezier(new Vector2(-728.512024F, -145.658005F), new Vector2(-727.935974F, -145.033997F), new Vector2(-727.528015F, -144.229996F)); + builder.AddCubicBezier(new Vector2(-727.119995F, -143.425995F), new Vector2(-726.916016F, -142.447998F), new Vector2(-726.916016F, -141.296005F)); + builder.AddLine(new Vector2(-725.728027F, -142.339996F)); + builder.AddLine(new Vector2(-738.435974F, -142.339996F)); + builder.AddLine(new Vector2(-738.435974F, -139.639999F)); + builder.AddLine(new Vector2(-724F, -139.639999F)); + builder.AddCubicBezier(new Vector2(-723.927979F, -139.975998F), new Vector2(-723.880005F, -140.281998F), new Vector2(-723.856018F, -140.557999F)); + builder.AddCubicBezier(new Vector2(-723.83197F, -140.834F), new Vector2(-723.820007F, -141.091995F), new Vector2(-723.820007F, -141.332001F)); + builder.AddCubicBezier(new Vector2(-723.820007F, -142.964005F), new Vector2(-724.161987F, -144.416F), new Vector2(-724.846008F, -145.688004F)); + builder.AddCubicBezier(new Vector2(-725.530029F, -146.960007F), new Vector2(-726.484009F, -147.955994F), new Vector2(-727.708008F, -148.675995F)); + builder.AddCubicBezier(new Vector2(-728.932007F, -149.395996F), new Vector2(-730.323975F, -149.755997F), new Vector2(-731.883972F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-733.539978F, -149.755997F), new Vector2(-735.033997F, -149.365997F), new Vector2(-736.366028F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-737.697998F, -147.806F), new Vector2(-738.754028F, -146.744003F), new Vector2(-739.533997F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-740.314026F, -144.056F), new Vector2(-740.703979F, -142.544006F), new Vector2(-740.703979F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-740.703979F, -139.160004F), new Vector2(-740.307983F, -137.636002F), new Vector2(-739.515991F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-738.723999F, -134.947998F), new Vector2(-737.650024F, -133.886002F), new Vector2(-736.294006F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-734.937988F, -132.326004F), new Vector2(-733.395996F, -131.936005F), new Vector2(-731.66803F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-730.323975F, -131.936005F), new Vector2(-729.064026F, -132.188004F), new Vector2(-727.888F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0456() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-754.906006F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-755.734009F, -136.255997F), new Vector2(-756.369995F, -136.945999F), new Vector2(-756.814026F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-757.257996F, -138.697998F), new Vector2(-757.47998F, -139.699997F), new Vector2(-757.47998F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-757.47998F, -141.979996F), new Vector2(-757.252014F, -142.994003F), new Vector2(-756.796021F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-756.340027F, -144.746002F), new Vector2(-755.703979F, -145.436005F), new Vector2(-754.888F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-754.072021F, -146.444F), new Vector2(-753.135986F, -146.695999F), new Vector2(-752.080017F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-751F, -146.695999F), new Vector2(-750.052002F, -146.444F), new Vector2(-749.236023F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-748.419983F, -145.436005F), new Vector2(-747.778015F, -144.746002F), new Vector2(-747.309998F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-746.84198F, -142.994003F), new Vector2(-746.607971F, -141.992004F), new Vector2(-746.607971F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-746.607971F, -139.712006F), new Vector2(-746.84198F, -138.697998F), new Vector2(-747.309998F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-747.778015F, -136.945999F), new Vector2(-748.419983F, -136.255997F), new Vector2(-749.236023F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-750.052002F, -135.248001F), new Vector2(-751F, -134.996002F), new Vector2(-752.080017F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-753.135986F, -134.996002F), new Vector2(-754.078003F, -135.248001F), new Vector2(-754.906006F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-757.299988F, -132.296005F)); + builder.AddLine(new Vector2(-757.299988F, -136.904007F)); + builder.AddLine(new Vector2(-757.911987F, -141.080002F)); + builder.AddLine(new Vector2(-757.299988F, -145.220001F)); + builder.AddLine(new Vector2(-757.299988F, -158F)); + builder.AddLine(new Vector2(-760.539978F, -158F)); + builder.AddLine(new Vector2(-760.539978F, -132.296005F)); + builder.AddLine(new Vector2(-757.299988F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-747.309998F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-746.049988F, -133.886002F), new Vector2(-745.059998F, -134.947998F), new Vector2(-744.340027F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-743.619995F, -137.636002F), new Vector2(-743.26001F, -139.147995F), new Vector2(-743.26001F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-743.26001F, -142.507996F), new Vector2(-743.619995F, -144.020004F), new Vector2(-744.340027F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-745.059998F, -146.707993F), new Vector2(-746.049988F, -147.776001F), new Vector2(-747.309998F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-748.570007F, -149.360001F), new Vector2(-749.97998F, -149.755997F), new Vector2(-751.539978F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-752.812012F, -149.755997F), new Vector2(-753.969971F, -149.485992F), new Vector2(-755.013977F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-756.057983F, -148.406006F), new Vector2(-756.89801F, -147.662003F), new Vector2(-757.533997F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-758.169983F, -145.766006F), new Vector2(-758.523987F, -144.667999F), new Vector2(-758.596008F, -143.419998F)); + builder.AddLine(new Vector2(-758.596008F, -138.272003F)); + builder.AddCubicBezier(new Vector2(-758.523987F, -137.048004F), new Vector2(-758.176025F, -135.955994F), new Vector2(-757.552002F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-756.927979F, -134.035995F), new Vector2(-756.093994F, -133.285995F), new Vector2(-755.049988F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-754.005981F, -132.205994F), new Vector2(-752.835999F, -131.936005F), new Vector2(-751.539978F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-749.97998F, -131.936005F), new Vector2(-748.570007F, -132.326004F), new Vector2(-747.309998F, -133.106003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0457() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-764.932007F, -132.296005F)); + builder.AddLine(new Vector2(-764.932007F, -143.276001F)); + builder.AddCubicBezier(new Vector2(-764.932007F, -144.619995F), new Vector2(-765.226013F, -145.772003F), new Vector2(-765.814026F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-766.401978F, -147.692001F), new Vector2(-767.187988F, -148.436005F), new Vector2(-768.171997F, -148.964005F)); + builder.AddCubicBezier(new Vector2(-769.156006F, -149.492004F), new Vector2(-770.271973F, -149.755997F), new Vector2(-771.52002F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-772.719971F, -149.755997F), new Vector2(-773.823975F, -149.485992F), new Vector2(-774.83197F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-775.840027F, -148.406006F), new Vector2(-776.661987F, -147.662003F), new Vector2(-777.297974F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-777.934021F, -145.766006F), new Vector2(-778.288025F, -144.632004F), new Vector2(-778.359985F, -143.311996F)); + builder.AddLine(new Vector2(-776.523987F, -142.628006F)); + builder.AddCubicBezier(new Vector2(-776.523987F, -143.492004F), new Vector2(-776.33197F, -144.223999F), new Vector2(-775.947998F, -144.824005F)); + builder.AddCubicBezier(new Vector2(-775.564026F, -145.423996F), new Vector2(-775.054016F, -145.891998F), new Vector2(-774.41803F, -146.227997F)); + builder.AddCubicBezier(new Vector2(-773.781982F, -146.563995F), new Vector2(-773.067993F, -146.731995F), new Vector2(-772.276001F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-771.124023F, -146.731995F), new Vector2(-770.15802F, -146.365997F), new Vector2(-769.377991F, -145.634003F)); + builder.AddCubicBezier(new Vector2(-768.598022F, -144.901993F), new Vector2(-768.208008F, -143.899994F), new Vector2(-768.208008F, -142.628006F)); + builder.AddLine(new Vector2(-768.208008F, -132.296005F)); + builder.AddLine(new Vector2(-764.932007F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-776.523987F, -132.296005F)); + builder.AddLine(new Vector2(-776.523987F, -143.311996F)); + builder.AddCubicBezier(new Vector2(-776.523987F, -144.632004F), new Vector2(-776.80603F, -145.772003F), new Vector2(-777.369995F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-777.934021F, -147.692001F), new Vector2(-778.702026F, -148.436005F), new Vector2(-779.674011F, -148.964005F)); + builder.AddCubicBezier(new Vector2(-780.645996F, -149.492004F), new Vector2(-781.731995F, -149.755997F), new Vector2(-782.932007F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-784.156006F, -149.755997F), new Vector2(-785.26001F, -149.485992F), new Vector2(-786.244019F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-787.228027F, -148.406006F), new Vector2(-788.002014F, -147.656006F), new Vector2(-788.565979F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-789.130005F, -145.735992F), new Vector2(-789.411987F, -144.608002F), new Vector2(-789.411987F, -143.311996F)); + builder.AddLine(new Vector2(-788.080017F, -142.628006F)); + builder.AddCubicBezier(new Vector2(-788.080017F, -143.492004F), new Vector2(-787.888F, -144.223999F), new Vector2(-787.504028F, -144.824005F)); + builder.AddCubicBezier(new Vector2(-787.119995F, -145.423996F), new Vector2(-786.616028F, -145.891998F), new Vector2(-785.992004F, -146.227997F)); + builder.AddCubicBezier(new Vector2(-785.367981F, -146.563995F), new Vector2(-784.659973F, -146.731995F), new Vector2(-783.867981F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-782.692017F, -146.731995F), new Vector2(-781.713989F, -146.365997F), new Vector2(-780.934021F, -145.634003F)); + builder.AddCubicBezier(new Vector2(-780.153992F, -144.901993F), new Vector2(-779.763977F, -143.899994F), new Vector2(-779.763977F, -142.628006F)); + builder.AddLine(new Vector2(-779.763977F, -132.296005F)); + builder.AddLine(new Vector2(-776.523987F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-788.080017F, -132.296005F)); + builder.AddLine(new Vector2(-788.080017F, -149.395996F)); + builder.AddLine(new Vector2(-791.320007F, -149.395996F)); + builder.AddLine(new Vector2(-791.320007F, -132.296005F)); + builder.AddLine(new Vector2(-788.080017F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0458() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-799.203979F, -132.925995F)); + builder.AddCubicBezier(new Vector2(-798.099976F, -133.537994F), new Vector2(-797.236023F, -134.408005F), new Vector2(-796.612F, -135.535995F)); + builder.AddCubicBezier(new Vector2(-795.987976F, -136.664001F), new Vector2(-795.676025F, -137.972F), new Vector2(-795.676025F, -139.460007F)); + builder.AddLine(new Vector2(-795.676025F, -149.395996F)); + builder.AddLine(new Vector2(-798.916016F, -149.395996F)); + builder.AddLine(new Vector2(-798.916016F, -139.604004F)); + builder.AddCubicBezier(new Vector2(-798.916016F, -138.188004F), new Vector2(-799.276001F, -137.078003F), new Vector2(-799.995972F, -136.274002F)); + builder.AddCubicBezier(new Vector2(-800.716003F, -135.470001F), new Vector2(-801.711975F, -135.067993F), new Vector2(-802.984009F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-803.823975F, -135.067993F), new Vector2(-804.55603F, -135.248001F), new Vector2(-805.179993F, -135.608002F)); + builder.AddCubicBezier(new Vector2(-805.804016F, -135.968002F), new Vector2(-806.278015F, -136.490005F), new Vector2(-806.60199F, -137.173996F)); + builder.AddCubicBezier(new Vector2(-806.926025F, -137.858002F), new Vector2(-807.088013F, -138.667999F), new Vector2(-807.088013F, -139.604004F)); + builder.AddLine(new Vector2(-807.088013F, -149.395996F)); + builder.AddLine(new Vector2(-810.328003F, -149.395996F)); + builder.AddLine(new Vector2(-810.328003F, -139.460007F)); + builder.AddCubicBezier(new Vector2(-810.328003F, -137.972F), new Vector2(-810.015991F, -136.664001F), new Vector2(-809.392029F, -135.535995F)); + builder.AddCubicBezier(new Vector2(-808.768005F, -134.408005F), new Vector2(-807.89801F, -133.537994F), new Vector2(-806.781982F, -132.925995F)); + builder.AddCubicBezier(new Vector2(-805.666016F, -132.313995F), new Vector2(-804.400024F, -132.007996F), new Vector2(-802.984009F, -132.007996F)); + builder.AddCubicBezier(new Vector2(-801.567993F, -132.007996F), new Vector2(-800.307983F, -132.313995F), new Vector2(-799.203979F, -132.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0459() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-826.383972F, -132.296005F)); + builder.AddLine(new Vector2(-826.383972F, -149.395996F)); + builder.AddLine(new Vector2(-829.624023F, -149.395996F)); + builder.AddLine(new Vector2(-829.624023F, -132.296005F)); + builder.AddLine(new Vector2(-826.383972F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-814.288025F, -132.296005F)); + builder.AddLine(new Vector2(-814.288025F, -142.916F)); + builder.AddCubicBezier(new Vector2(-814.288025F, -144.091995F), new Vector2(-814.575989F, -145.201996F), new Vector2(-815.151978F, -146.246002F)); + builder.AddCubicBezier(new Vector2(-815.728027F, -147.289993F), new Vector2(-816.513977F, -148.136002F), new Vector2(-817.51001F, -148.783997F)); + builder.AddCubicBezier(new Vector2(-818.505981F, -149.432007F), new Vector2(-819.651978F, -149.755997F), new Vector2(-820.947998F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-822.244019F, -149.755997F), new Vector2(-823.40802F, -149.462006F), new Vector2(-824.440002F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-825.471985F, -148.285995F), new Vector2(-826.276001F, -147.488007F), new Vector2(-826.85199F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-827.427979F, -145.472F), new Vector2(-827.716003F, -144.320007F), new Vector2(-827.716003F, -143.024002F)); + builder.AddLine(new Vector2(-826.383972F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-826.383972F, -143.132004F), new Vector2(-826.192017F, -143.899994F), new Vector2(-825.807983F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-825.424011F, -145.244003F), new Vector2(-824.895996F, -145.772003F), new Vector2(-824.223999F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-823.552002F, -146.539993F), new Vector2(-822.783997F, -146.731995F), new Vector2(-821.919983F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-820.624023F, -146.731995F), new Vector2(-819.573975F, -146.311996F), new Vector2(-818.77002F, -145.472F)); + builder.AddCubicBezier(new Vector2(-817.966003F, -144.632004F), new Vector2(-817.564026F, -143.563995F), new Vector2(-817.564026F, -142.268005F)); + builder.AddLine(new Vector2(-817.564026F, -132.296005F)); + builder.AddLine(new Vector2(-814.288025F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0460() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(701.924011F, -175.891998F)); + builder.AddCubicBezier(new Vector2(703.099976F, -176.395996F), new Vector2(704.107971F, -177.128006F), new Vector2(704.947998F, -178.087997F)); + builder.AddLine(new Vector2(702.859985F, -180.212006F)); + builder.AddCubicBezier(new Vector2(702.283997F, -179.539993F), new Vector2(701.593994F, -179.035995F), new Vector2(700.789978F, -178.699997F)); + builder.AddCubicBezier(new Vector2(699.986023F, -178.363998F), new Vector2(699.104004F, -178.195999F), new Vector2(698.143982F, -178.195999F)); + builder.AddCubicBezier(new Vector2(696.992004F, -178.195999F), new Vector2(695.971985F, -178.442001F), new Vector2(695.083984F, -178.934006F)); + builder.AddCubicBezier(new Vector2(694.195984F, -179.425995F), new Vector2(693.512024F, -180.121994F), new Vector2(693.031982F, -181.022003F)); + builder.AddCubicBezier(new Vector2(692.552002F, -181.921997F), new Vector2(692.312012F, -182.972F), new Vector2(692.312012F, -184.171997F)); + builder.AddCubicBezier(new Vector2(692.312012F, -185.348007F), new Vector2(692.539978F, -186.367996F), new Vector2(692.995972F, -187.231995F)); + builder.AddCubicBezier(new Vector2(693.452026F, -188.095993F), new Vector2(694.099976F, -188.768005F), new Vector2(694.940002F, -189.248001F)); + builder.AddCubicBezier(new Vector2(695.780029F, -189.727997F), new Vector2(696.752014F, -189.968002F), new Vector2(697.856018F, -189.968002F)); + builder.AddCubicBezier(new Vector2(698.911987F, -189.968002F), new Vector2(699.812012F, -189.746002F), new Vector2(700.55603F, -189.302002F)); + builder.AddCubicBezier(new Vector2(701.299988F, -188.858002F), new Vector2(701.875977F, -188.233994F), new Vector2(702.283997F, -187.429993F)); + builder.AddCubicBezier(new Vector2(702.692017F, -186.626007F), new Vector2(702.895996F, -185.647995F), new Vector2(702.895996F, -184.496002F)); + builder.AddLine(new Vector2(704.083984F, -185.539993F)); + builder.AddLine(new Vector2(691.375977F, -185.539993F)); + builder.AddLine(new Vector2(691.375977F, -182.839996F)); + builder.AddLine(new Vector2(705.812012F, -182.839996F)); + builder.AddCubicBezier(new Vector2(705.883972F, -183.175995F), new Vector2(705.932007F, -183.481995F), new Vector2(705.955994F, -183.757996F)); + builder.AddCubicBezier(new Vector2(705.97998F, -184.033997F), new Vector2(705.992004F, -184.292007F), new Vector2(705.992004F, -184.531998F)); + builder.AddCubicBezier(new Vector2(705.992004F, -186.164001F), new Vector2(705.650024F, -187.615997F), new Vector2(704.966003F, -188.888F)); + builder.AddCubicBezier(new Vector2(704.281982F, -190.160004F), new Vector2(703.328003F, -191.156006F), new Vector2(702.104004F, -191.876007F)); + builder.AddCubicBezier(new Vector2(700.880005F, -192.595993F), new Vector2(699.487976F, -192.955994F), new Vector2(697.927979F, -192.955994F)); + builder.AddCubicBezier(new Vector2(696.271973F, -192.955994F), new Vector2(694.778015F, -192.565994F), new Vector2(693.445984F, -191.785995F)); + builder.AddCubicBezier(new Vector2(692.114014F, -191.005997F), new Vector2(691.057983F, -189.944F), new Vector2(690.278015F, -188.600006F)); + builder.AddCubicBezier(new Vector2(689.497986F, -187.255997F), new Vector2(689.107971F, -185.744003F), new Vector2(689.107971F, -184.063995F)); + builder.AddCubicBezier(new Vector2(689.107971F, -182.360001F), new Vector2(689.504028F, -180.835999F), new Vector2(690.296021F, -179.492004F)); + builder.AddCubicBezier(new Vector2(691.088013F, -178.147995F), new Vector2(692.161987F, -177.085999F), new Vector2(693.518005F, -176.306F)); + builder.AddCubicBezier(new Vector2(694.874023F, -175.526001F), new Vector2(696.416016F, -175.136002F), new Vector2(698.143982F, -175.136002F)); + builder.AddCubicBezier(new Vector2(699.487976F, -175.136002F), new Vector2(700.747986F, -175.388F), new Vector2(701.924011F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0461() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(680.719971F, -188.744003F)); + builder.AddCubicBezier(new Vector2(681.487976F, -189.511993F), new Vector2(682.471985F, -189.895996F), new Vector2(683.671997F, -189.895996F)); + builder.AddCubicBezier(new Vector2(684.247986F, -189.895996F), new Vector2(684.752014F, -189.811996F), new Vector2(685.184021F, -189.643997F)); + builder.AddCubicBezier(new Vector2(685.616028F, -189.475998F), new Vector2(686.012024F, -189.199997F), new Vector2(686.372009F, -188.815994F)); + builder.AddLine(new Vector2(688.495972F, -191.011993F)); + builder.AddCubicBezier(new Vector2(687.895996F, -191.707993F), new Vector2(687.247986F, -192.205994F), new Vector2(686.552002F, -192.505997F)); + builder.AddCubicBezier(new Vector2(685.856018F, -192.806F), new Vector2(685.075989F, -192.955994F), new Vector2(684.211975F, -192.955994F)); + builder.AddCubicBezier(new Vector2(682.315979F, -192.955994F), new Vector2(680.864014F, -192.307999F), new Vector2(679.856018F, -191.011993F)); + builder.AddCubicBezier(new Vector2(678.848022F, -189.716003F), new Vector2(678.343994F, -187.975998F), new Vector2(678.343994F, -185.792007F)); + builder.AddLine(new Vector2(679.567993F, -185.216003F)); + builder.AddCubicBezier(new Vector2(679.567993F, -186.800003F), new Vector2(679.952026F, -187.975998F), new Vector2(680.719971F, -188.744003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(679.567993F, -175.496002F)); + builder.AddLine(new Vector2(679.567993F, -192.595993F)); + builder.AddLine(new Vector2(676.328003F, -192.595993F)); + builder.AddLine(new Vector2(676.328003F, -175.496002F)); + builder.AddLine(new Vector2(679.567993F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0462() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(671.612F, -175.496002F)); + builder.AddLine(new Vector2(671.612F, -192.595993F)); + builder.AddLine(new Vector2(668.335999F, -192.595993F)); + builder.AddLine(new Vector2(668.335999F, -188.419998F)); + builder.AddLine(new Vector2(668.947998F, -184.279999F)); + builder.AddLine(new Vector2(668.335999F, -180.104004F)); + builder.AddLine(new Vector2(668.335999F, -175.496002F)); + builder.AddLine(new Vector2(671.612F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(660.307983F, -178.951996F)); + builder.AddCubicBezier(new Vector2(659.468018F, -179.455994F), new Vector2(658.814026F, -180.145996F), new Vector2(658.346008F, -181.022003F)); + builder.AddCubicBezier(new Vector2(657.877991F, -181.897995F), new Vector2(657.643982F, -182.912003F), new Vector2(657.643982F, -184.063995F)); + builder.AddCubicBezier(new Vector2(657.643982F, -185.192001F), new Vector2(657.877991F, -186.194F), new Vector2(658.346008F, -187.070007F)); + builder.AddCubicBezier(new Vector2(658.814026F, -187.945999F), new Vector2(659.461975F, -188.636002F), new Vector2(660.289978F, -189.139999F)); + builder.AddCubicBezier(new Vector2(661.117981F, -189.643997F), new Vector2(662.072021F, -189.895996F), new Vector2(663.151978F, -189.895996F)); + builder.AddCubicBezier(new Vector2(664.231995F, -189.895996F), new Vector2(665.174011F, -189.649994F), new Vector2(665.978027F, -189.158005F)); + builder.AddCubicBezier(new Vector2(666.781982F, -188.666F), new Vector2(667.411987F, -187.975998F), new Vector2(667.867981F, -187.087997F)); + builder.AddCubicBezier(new Vector2(668.323975F, -186.199997F), new Vector2(668.552002F, -185.179993F), new Vector2(668.552002F, -184.028F)); + builder.AddCubicBezier(new Vector2(668.552002F, -182.324005F), new Vector2(668.059998F, -180.925995F), new Vector2(667.075989F, -179.834F)); + builder.AddCubicBezier(new Vector2(666.09198F, -178.742004F), new Vector2(664.796021F, -178.195999F), new Vector2(663.187988F, -178.195999F)); + builder.AddCubicBezier(new Vector2(662.107971F, -178.195999F), new Vector2(661.14801F, -178.447998F), new Vector2(660.307983F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(666.140015F, -175.945999F)); + builder.AddCubicBezier(new Vector2(667.171997F, -176.485992F), new Vector2(667.994019F, -177.235992F), new Vector2(668.606018F, -178.195999F)); + builder.AddCubicBezier(new Vector2(669.218018F, -179.156006F), new Vector2(669.559998F, -180.248001F), new Vector2(669.632019F, -181.472F)); + builder.AddLine(new Vector2(669.632019F, -186.619995F)); + builder.AddCubicBezier(new Vector2(669.559998F, -187.867996F), new Vector2(669.211975F, -188.966003F), new Vector2(668.588013F, -189.914001F)); + builder.AddCubicBezier(new Vector2(667.963989F, -190.862F), new Vector2(667.142029F, -191.606003F), new Vector2(666.122009F, -192.145996F)); + builder.AddCubicBezier(new Vector2(665.10199F, -192.686005F), new Vector2(663.94397F, -192.955994F), new Vector2(662.64801F, -192.955994F)); + builder.AddCubicBezier(new Vector2(661.064026F, -192.955994F), new Vector2(659.642029F, -192.559998F), new Vector2(658.382019F, -191.768005F)); + builder.AddCubicBezier(new Vector2(657.122009F, -190.975998F), new Vector2(656.125977F, -189.908005F), new Vector2(655.393982F, -188.563995F)); + builder.AddCubicBezier(new Vector2(654.661987F, -187.220001F), new Vector2(654.296021F, -185.707993F), new Vector2(654.296021F, -184.028F)); + builder.AddCubicBezier(new Vector2(654.296021F, -182.348007F), new Vector2(654.661987F, -180.835999F), new Vector2(655.393982F, -179.492004F)); + builder.AddCubicBezier(new Vector2(656.125977F, -178.147995F), new Vector2(657.122009F, -177.085999F), new Vector2(658.382019F, -176.306F)); + builder.AddCubicBezier(new Vector2(659.642029F, -175.526001F), new Vector2(661.064026F, -175.136002F), new Vector2(662.64801F, -175.136002F)); + builder.AddCubicBezier(new Vector2(663.94397F, -175.136002F), new Vector2(665.107971F, -175.406006F), new Vector2(666.140015F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0463() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(640.328003F, -175.891998F)); + builder.AddCubicBezier(new Vector2(641.504028F, -176.395996F), new Vector2(642.512024F, -177.128006F), new Vector2(643.35199F, -178.087997F)); + builder.AddLine(new Vector2(641.263977F, -180.212006F)); + builder.AddCubicBezier(new Vector2(640.687988F, -179.539993F), new Vector2(639.997986F, -179.035995F), new Vector2(639.19397F, -178.699997F)); + builder.AddCubicBezier(new Vector2(638.390015F, -178.363998F), new Vector2(637.507996F, -178.195999F), new Vector2(636.547974F, -178.195999F)); + builder.AddCubicBezier(new Vector2(635.395996F, -178.195999F), new Vector2(634.375977F, -178.442001F), new Vector2(633.487976F, -178.934006F)); + builder.AddCubicBezier(new Vector2(632.599976F, -179.425995F), new Vector2(631.916016F, -180.121994F), new Vector2(631.435974F, -181.022003F)); + builder.AddCubicBezier(new Vector2(630.955994F, -181.921997F), new Vector2(630.716003F, -182.972F), new Vector2(630.716003F, -184.171997F)); + builder.AddCubicBezier(new Vector2(630.716003F, -185.348007F), new Vector2(630.94397F, -186.367996F), new Vector2(631.400024F, -187.231995F)); + builder.AddCubicBezier(new Vector2(631.856018F, -188.095993F), new Vector2(632.504028F, -188.768005F), new Vector2(633.343994F, -189.248001F)); + builder.AddCubicBezier(new Vector2(634.184021F, -189.727997F), new Vector2(635.156006F, -189.968002F), new Vector2(636.26001F, -189.968002F)); + builder.AddCubicBezier(new Vector2(637.315979F, -189.968002F), new Vector2(638.216003F, -189.746002F), new Vector2(638.960022F, -189.302002F)); + builder.AddCubicBezier(new Vector2(639.703979F, -188.858002F), new Vector2(640.280029F, -188.233994F), new Vector2(640.687988F, -187.429993F)); + builder.AddCubicBezier(new Vector2(641.096008F, -186.626007F), new Vector2(641.299988F, -185.647995F), new Vector2(641.299988F, -184.496002F)); + builder.AddLine(new Vector2(642.487976F, -185.539993F)); + builder.AddLine(new Vector2(629.780029F, -185.539993F)); + builder.AddLine(new Vector2(629.780029F, -182.839996F)); + builder.AddLine(new Vector2(644.216003F, -182.839996F)); + builder.AddCubicBezier(new Vector2(644.288025F, -183.175995F), new Vector2(644.335999F, -183.481995F), new Vector2(644.359985F, -183.757996F)); + builder.AddCubicBezier(new Vector2(644.383972F, -184.033997F), new Vector2(644.395996F, -184.292007F), new Vector2(644.395996F, -184.531998F)); + builder.AddCubicBezier(new Vector2(644.395996F, -186.164001F), new Vector2(644.054016F, -187.615997F), new Vector2(643.369995F, -188.888F)); + builder.AddCubicBezier(new Vector2(642.685974F, -190.160004F), new Vector2(641.731995F, -191.156006F), new Vector2(640.507996F, -191.876007F)); + builder.AddCubicBezier(new Vector2(639.283997F, -192.595993F), new Vector2(637.892029F, -192.955994F), new Vector2(636.33197F, -192.955994F)); + builder.AddCubicBezier(new Vector2(634.676025F, -192.955994F), new Vector2(633.182007F, -192.565994F), new Vector2(631.849976F, -191.785995F)); + builder.AddCubicBezier(new Vector2(630.518005F, -191.005997F), new Vector2(629.461975F, -189.944F), new Vector2(628.682007F, -188.600006F)); + builder.AddCubicBezier(new Vector2(627.901978F, -187.255997F), new Vector2(627.512024F, -185.744003F), new Vector2(627.512024F, -184.063995F)); + builder.AddCubicBezier(new Vector2(627.512024F, -182.360001F), new Vector2(627.90802F, -180.835999F), new Vector2(628.700012F, -179.492004F)); + builder.AddCubicBezier(new Vector2(629.492004F, -178.147995F), new Vector2(630.565979F, -177.085999F), new Vector2(631.921997F, -176.306F)); + builder.AddCubicBezier(new Vector2(633.278015F, -175.526001F), new Vector2(634.820007F, -175.136002F), new Vector2(636.547974F, -175.136002F)); + builder.AddCubicBezier(new Vector2(637.892029F, -175.136002F), new Vector2(639.151978F, -175.388F), new Vector2(640.328003F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0464() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(619.124023F, -188.744003F)); + builder.AddCubicBezier(new Vector2(619.892029F, -189.511993F), new Vector2(620.875977F, -189.895996F), new Vector2(622.075989F, -189.895996F)); + builder.AddCubicBezier(new Vector2(622.651978F, -189.895996F), new Vector2(623.156006F, -189.811996F), new Vector2(623.588013F, -189.643997F)); + builder.AddCubicBezier(new Vector2(624.02002F, -189.475998F), new Vector2(624.416016F, -189.199997F), new Vector2(624.776001F, -188.815994F)); + builder.AddLine(new Vector2(626.900024F, -191.011993F)); + builder.AddCubicBezier(new Vector2(626.299988F, -191.707993F), new Vector2(625.651978F, -192.205994F), new Vector2(624.955994F, -192.505997F)); + builder.AddCubicBezier(new Vector2(624.26001F, -192.806F), new Vector2(623.47998F, -192.955994F), new Vector2(622.616028F, -192.955994F)); + builder.AddCubicBezier(new Vector2(620.719971F, -192.955994F), new Vector2(619.268005F, -192.307999F), new Vector2(618.26001F, -191.011993F)); + builder.AddCubicBezier(new Vector2(617.252014F, -189.716003F), new Vector2(616.747986F, -187.975998F), new Vector2(616.747986F, -185.792007F)); + builder.AddLine(new Vector2(617.971985F, -185.216003F)); + builder.AddCubicBezier(new Vector2(617.971985F, -186.800003F), new Vector2(618.356018F, -187.975998F), new Vector2(619.124023F, -188.744003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(617.971985F, -175.496002F)); + builder.AddLine(new Vector2(617.971985F, -192.595993F)); + builder.AddLine(new Vector2(614.731995F, -192.595993F)); + builder.AddLine(new Vector2(614.731995F, -175.496002F)); + builder.AddLine(new Vector2(617.971985F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0465() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(607.135986F, -175.891998F)); + builder.AddCubicBezier(new Vector2(608.312012F, -176.395996F), new Vector2(609.320007F, -177.128006F), new Vector2(610.159973F, -178.087997F)); + builder.AddLine(new Vector2(608.072021F, -180.212006F)); + builder.AddCubicBezier(new Vector2(607.495972F, -179.539993F), new Vector2(606.80603F, -179.035995F), new Vector2(606.002014F, -178.699997F)); + builder.AddCubicBezier(new Vector2(605.197998F, -178.363998F), new Vector2(604.315979F, -178.195999F), new Vector2(603.356018F, -178.195999F)); + builder.AddCubicBezier(new Vector2(602.203979F, -178.195999F), new Vector2(601.184021F, -178.442001F), new Vector2(600.296021F, -178.934006F)); + builder.AddCubicBezier(new Vector2(599.40802F, -179.425995F), new Vector2(598.723999F, -180.121994F), new Vector2(598.244019F, -181.022003F)); + builder.AddCubicBezier(new Vector2(597.763977F, -181.921997F), new Vector2(597.523987F, -182.972F), new Vector2(597.523987F, -184.171997F)); + builder.AddCubicBezier(new Vector2(597.523987F, -185.348007F), new Vector2(597.752014F, -186.367996F), new Vector2(598.208008F, -187.231995F)); + builder.AddCubicBezier(new Vector2(598.664001F, -188.095993F), new Vector2(599.312012F, -188.768005F), new Vector2(600.151978F, -189.248001F)); + builder.AddCubicBezier(new Vector2(600.992004F, -189.727997F), new Vector2(601.963989F, -189.968002F), new Vector2(603.067993F, -189.968002F)); + builder.AddCubicBezier(new Vector2(604.124023F, -189.968002F), new Vector2(605.023987F, -189.746002F), new Vector2(605.768005F, -189.302002F)); + builder.AddCubicBezier(new Vector2(606.512024F, -188.858002F), new Vector2(607.088013F, -188.233994F), new Vector2(607.495972F, -187.429993F)); + builder.AddCubicBezier(new Vector2(607.903992F, -186.626007F), new Vector2(608.107971F, -185.647995F), new Vector2(608.107971F, -184.496002F)); + builder.AddLine(new Vector2(609.296021F, -185.539993F)); + builder.AddLine(new Vector2(596.588013F, -185.539993F)); + builder.AddLine(new Vector2(596.588013F, -182.839996F)); + builder.AddLine(new Vector2(611.023987F, -182.839996F)); + builder.AddCubicBezier(new Vector2(611.096008F, -183.175995F), new Vector2(611.143982F, -183.481995F), new Vector2(611.16803F, -183.757996F)); + builder.AddCubicBezier(new Vector2(611.192017F, -184.033997F), new Vector2(611.203979F, -184.292007F), new Vector2(611.203979F, -184.531998F)); + builder.AddCubicBezier(new Vector2(611.203979F, -186.164001F), new Vector2(610.862F, -187.615997F), new Vector2(610.177979F, -188.888F)); + builder.AddCubicBezier(new Vector2(609.494019F, -190.160004F), new Vector2(608.539978F, -191.156006F), new Vector2(607.315979F, -191.876007F)); + builder.AddCubicBezier(new Vector2(606.09198F, -192.595993F), new Vector2(604.700012F, -192.955994F), new Vector2(603.140015F, -192.955994F)); + builder.AddCubicBezier(new Vector2(601.484009F, -192.955994F), new Vector2(599.98999F, -192.565994F), new Vector2(598.65802F, -191.785995F)); + builder.AddCubicBezier(new Vector2(597.325989F, -191.005997F), new Vector2(596.27002F, -189.944F), new Vector2(595.48999F, -188.600006F)); + builder.AddCubicBezier(new Vector2(594.710022F, -187.255997F), new Vector2(594.320007F, -185.744003F), new Vector2(594.320007F, -184.063995F)); + builder.AddCubicBezier(new Vector2(594.320007F, -182.360001F), new Vector2(594.716003F, -180.835999F), new Vector2(595.507996F, -179.492004F)); + builder.AddCubicBezier(new Vector2(596.299988F, -178.147995F), new Vector2(597.374023F, -177.085999F), new Vector2(598.72998F, -176.306F)); + builder.AddCubicBezier(new Vector2(600.085999F, -175.526001F), new Vector2(601.627991F, -175.136002F), new Vector2(603.356018F, -175.136002F)); + builder.AddCubicBezier(new Vector2(604.700012F, -175.136002F), new Vector2(605.960022F, -175.388F), new Vector2(607.135986F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0466() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(578.947998F, -175.496002F)); + builder.AddLine(new Vector2(578.947998F, -201.199997F)); + builder.AddLine(new Vector2(575.708008F, -201.199997F)); + builder.AddLine(new Vector2(575.708008F, -175.496002F)); + builder.AddLine(new Vector2(578.947998F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(591.044006F, -175.496002F)); + builder.AddLine(new Vector2(591.044006F, -186.115997F)); + builder.AddCubicBezier(new Vector2(591.044006F, -187.460007F), new Vector2(590.755981F, -188.647995F), new Vector2(590.179993F, -189.679993F)); + builder.AddCubicBezier(new Vector2(589.604004F, -190.712006F), new Vector2(588.817993F, -191.516006F), new Vector2(587.822021F, -192.091995F)); + builder.AddCubicBezier(new Vector2(586.825989F, -192.667999F), new Vector2(585.679993F, -192.955994F), new Vector2(584.383972F, -192.955994F)); + builder.AddCubicBezier(new Vector2(583.088013F, -192.955994F), new Vector2(581.924011F, -192.662003F), new Vector2(580.892029F, -192.074005F)); + builder.AddCubicBezier(new Vector2(579.859985F, -191.485992F), new Vector2(579.05603F, -190.688004F), new Vector2(578.47998F, -189.679993F)); + builder.AddCubicBezier(new Vector2(577.903992F, -188.671997F), new Vector2(577.616028F, -187.520004F), new Vector2(577.616028F, -186.223999F)); + builder.AddLine(new Vector2(578.947998F, -185.468002F)); + builder.AddCubicBezier(new Vector2(578.947998F, -186.332001F), new Vector2(579.140015F, -187.100006F), new Vector2(579.523987F, -187.772003F)); + builder.AddCubicBezier(new Vector2(579.90802F, -188.444F), new Vector2(580.435974F, -188.972F), new Vector2(581.107971F, -189.356003F)); + builder.AddCubicBezier(new Vector2(581.780029F, -189.740005F), new Vector2(582.547974F, -189.932007F), new Vector2(583.411987F, -189.932007F)); + builder.AddCubicBezier(new Vector2(584.708008F, -189.932007F), new Vector2(585.757996F, -189.511993F), new Vector2(586.562012F, -188.671997F)); + builder.AddCubicBezier(new Vector2(587.366028F, -187.832001F), new Vector2(587.768005F, -186.764008F), new Vector2(587.768005F, -185.468002F)); + builder.AddLine(new Vector2(587.768005F, -175.496002F)); + builder.AddLine(new Vector2(591.044006F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0467() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(572.539978F, -189.643997F)); + builder.AddLine(new Vector2(572.539978F, -192.595993F)); + builder.AddLine(new Vector2(560.875977F, -192.595993F)); + builder.AddLine(new Vector2(560.875977F, -189.643997F)); + builder.AddLine(new Vector2(572.539978F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(568.328003F, -175.496002F)); + builder.AddLine(new Vector2(568.328003F, -199.759995F)); + builder.AddLine(new Vector2(565.088013F, -199.759995F)); + builder.AddLine(new Vector2(565.088013F, -175.496002F)); + builder.AddLine(new Vector2(568.328003F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0468() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(547.124023F, -170.528F)); + builder.AddLine(new Vector2(549.536011F, -174.992004F)); + builder.AddCubicBezier(new Vector2(549.848022F, -175.591995F), new Vector2(550.057983F, -176.078003F), new Vector2(550.166016F, -176.449997F)); + builder.AddCubicBezier(new Vector2(550.273987F, -176.822006F), new Vector2(550.328003F, -177.139999F), new Vector2(550.328003F, -177.404007F)); + builder.AddCubicBezier(new Vector2(550.328003F, -178.100006F), new Vector2(550.088013F, -178.682007F), new Vector2(549.607971F, -179.149994F)); + builder.AddCubicBezier(new Vector2(549.127991F, -179.617996F), new Vector2(548.575989F, -179.852005F), new Vector2(547.952026F, -179.852005F)); + builder.AddCubicBezier(new Vector2(547.255981F, -179.852005F), new Vector2(546.679993F, -179.617996F), new Vector2(546.223999F, -179.149994F)); + builder.AddCubicBezier(new Vector2(545.768005F, -178.682007F), new Vector2(545.539978F, -178.100006F), new Vector2(545.539978F, -177.404007F)); + builder.AddCubicBezier(new Vector2(545.539978F, -176.779999F), new Vector2(545.75F, -176.257996F), new Vector2(546.169983F, -175.837997F)); + builder.AddCubicBezier(new Vector2(546.590027F, -175.417999F), new Vector2(547.052002F, -175.207993F), new Vector2(547.55603F, -175.207993F)); + builder.AddCubicBezier(new Vector2(547.796021F, -175.207993F), new Vector2(548.012024F, -175.292007F), new Vector2(548.203979F, -175.460007F)); + builder.AddCubicBezier(new Vector2(548.395996F, -175.628006F), new Vector2(548.552002F, -175.843994F), new Vector2(548.671997F, -176.108002F)); + builder.AddLine(new Vector2(547.52002F, -175.820007F)); + builder.AddLine(new Vector2(545.288025F, -171.535995F)); + builder.AddLine(new Vector2(547.124023F, -170.528F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0469() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(543.164001F, -189.643997F)); + builder.AddLine(new Vector2(543.164001F, -192.595993F)); + builder.AddLine(new Vector2(531.5F, -192.595993F)); + builder.AddLine(new Vector2(531.5F, -189.643997F)); + builder.AddLine(new Vector2(543.164001F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(538.952026F, -175.496002F)); + builder.AddLine(new Vector2(538.952026F, -199.759995F)); + builder.AddLine(new Vector2(535.711975F, -199.759995F)); + builder.AddLine(new Vector2(535.711975F, -175.496002F)); + builder.AddLine(new Vector2(538.952026F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0470() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(527.737976F, -176.539993F)); + builder.AddCubicBezier(new Vector2(528.877991F, -177.475998F), new Vector2(529.447998F, -178.748001F), new Vector2(529.447998F, -180.356003F)); + builder.AddCubicBezier(new Vector2(529.447998F, -181.412003F), new Vector2(529.226013F, -182.264008F), new Vector2(528.781982F, -182.912003F)); + builder.AddCubicBezier(new Vector2(528.338013F, -183.559998F), new Vector2(527.768005F, -184.076004F), new Vector2(527.072021F, -184.460007F)); + builder.AddCubicBezier(new Vector2(526.375977F, -184.843994F), new Vector2(525.643982F, -185.149994F), new Vector2(524.875977F, -185.378006F)); + builder.AddCubicBezier(new Vector2(524.107971F, -185.606003F), new Vector2(523.369995F, -185.828003F), new Vector2(522.661987F, -186.044006F)); + builder.AddCubicBezier(new Vector2(521.953979F, -186.259995F), new Vector2(521.383972F, -186.524002F), new Vector2(520.952026F, -186.835999F)); + builder.AddCubicBezier(new Vector2(520.52002F, -187.147995F), new Vector2(520.304016F, -187.591995F), new Vector2(520.304016F, -188.167999F)); + builder.AddCubicBezier(new Vector2(520.304016F, -188.720001F), new Vector2(520.549988F, -189.164001F), new Vector2(521.041992F, -189.5F)); + builder.AddCubicBezier(new Vector2(521.533997F, -189.835999F), new Vector2(522.247986F, -190.003998F), new Vector2(523.184021F, -190.003998F)); + builder.AddCubicBezier(new Vector2(524.072021F, -190.003998F), new Vector2(524.864014F, -189.835999F), new Vector2(525.559998F, -189.5F)); + builder.AddCubicBezier(new Vector2(526.255981F, -189.164001F), new Vector2(526.856018F, -188.684006F), new Vector2(527.359985F, -188.059998F)); + builder.AddLine(new Vector2(529.447998F, -190.147995F)); + builder.AddCubicBezier(new Vector2(528.776001F, -191.084F), new Vector2(527.91803F, -191.785995F), new Vector2(526.874023F, -192.253998F)); + builder.AddCubicBezier(new Vector2(525.830017F, -192.722F), new Vector2(524.635986F, -192.955994F), new Vector2(523.291992F, -192.955994F)); + builder.AddCubicBezier(new Vector2(522.02002F, -192.955994F), new Vector2(520.927979F, -192.751999F), new Vector2(520.015991F, -192.343994F)); + builder.AddCubicBezier(new Vector2(519.104004F, -191.936005F), new Vector2(518.401978F, -191.354004F), new Vector2(517.909973F, -190.598007F)); + builder.AddCubicBezier(new Vector2(517.41803F, -189.841995F), new Vector2(517.171997F, -188.947998F), new Vector2(517.171997F, -187.916F)); + builder.AddCubicBezier(new Vector2(517.171997F, -186.884003F), new Vector2(517.393982F, -186.050003F), new Vector2(517.838013F, -185.414001F)); + builder.AddCubicBezier(new Vector2(518.281982F, -184.778F), new Vector2(518.85199F, -184.279999F), new Vector2(519.547974F, -183.919998F)); + builder.AddCubicBezier(new Vector2(520.244019F, -183.559998F), new Vector2(520.981995F, -183.272003F), new Vector2(521.762024F, -183.056F)); + builder.AddCubicBezier(new Vector2(522.541992F, -182.839996F), new Vector2(523.280029F, -182.617996F), new Vector2(523.976013F, -182.389999F)); + builder.AddCubicBezier(new Vector2(524.671997F, -182.162003F), new Vector2(525.242004F, -181.873993F), new Vector2(525.685974F, -181.526001F)); + builder.AddCubicBezier(new Vector2(526.130005F, -181.177994F), new Vector2(526.35199F, -180.692001F), new Vector2(526.35199F, -180.067993F)); + builder.AddCubicBezier(new Vector2(526.35199F, -179.444F), new Vector2(526.075989F, -178.957993F), new Vector2(525.523987F, -178.610001F)); + builder.AddCubicBezier(new Vector2(524.971985F, -178.261993F), new Vector2(524.192017F, -178.087997F), new Vector2(523.184021F, -178.087997F)); + builder.AddCubicBezier(new Vector2(522.176025F, -178.087997F), new Vector2(521.263977F, -178.274002F), new Vector2(520.447998F, -178.645996F)); + builder.AddCubicBezier(new Vector2(519.632019F, -179.018005F), new Vector2(518.911987F, -179.587997F), new Vector2(518.288025F, -180.356003F)); + builder.AddLine(new Vector2(516.200012F, -178.268005F)); + builder.AddCubicBezier(new Vector2(516.728027F, -177.619995F), new Vector2(517.346008F, -177.061996F), new Vector2(518.054016F, -176.593994F)); + builder.AddCubicBezier(new Vector2(518.762024F, -176.126007F), new Vector2(519.547974F, -175.766006F), new Vector2(520.411987F, -175.514008F)); + builder.AddCubicBezier(new Vector2(521.276001F, -175.261993F), new Vector2(522.187988F, -175.136002F), new Vector2(523.14801F, -175.136002F)); + builder.AddCubicBezier(new Vector2(525.067993F, -175.136002F), new Vector2(526.598022F, -175.604004F), new Vector2(527.737976F, -176.539993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0471() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(512.059998F, -197.455994F)); + builder.AddLine(new Vector2(512.059998F, -200.479996F)); + builder.AddLine(new Vector2(503.959991F, -200.479996F)); + builder.AddLine(new Vector2(503.959991F, -197.455994F)); + builder.AddLine(new Vector2(512.059998F, -197.455994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(512.419983F, -175.496002F)); + builder.AddLine(new Vector2(512.419983F, -200.479996F)); + builder.AddLine(new Vector2(509.071991F, -200.479996F)); + builder.AddLine(new Vector2(509.071991F, -175.496002F)); + builder.AddLine(new Vector2(512.419983F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0472() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(497.984009F, -197.455994F)); + builder.AddLine(new Vector2(500.936005F, -198.427994F)); + builder.AddLine(new Vector2(500.936005F, -200.479996F)); + builder.AddLine(new Vector2(485.708008F, -200.479996F)); + builder.AddLine(new Vector2(485.708008F, -197.455994F)); + builder.AddLine(new Vector2(497.984009F, -197.455994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(493.411987F, -189.932007F)); + builder.AddLine(new Vector2(500.936005F, -198.427994F)); + builder.AddLine(new Vector2(496.903992F, -198.427994F)); + builder.AddLine(new Vector2(489.596008F, -190.112F)); + builder.AddLine(new Vector2(489.596008F, -188.059998F)); + builder.AddLine(new Vector2(493.411987F, -189.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(496.976013F, -176.162003F)); + builder.AddCubicBezier(new Vector2(498.29599F, -176.845993F), new Vector2(499.334015F, -177.794006F), new Vector2(500.089996F, -179.005997F)); + builder.AddCubicBezier(new Vector2(500.846008F, -180.218002F), new Vector2(501.223999F, -181.615997F), new Vector2(501.223999F, -183.199997F)); + builder.AddCubicBezier(new Vector2(501.223999F, -184.688004F), new Vector2(500.906006F, -185.996002F), new Vector2(500.269989F, -187.123993F)); + builder.AddCubicBezier(new Vector2(499.634003F, -188.251999F), new Vector2(498.782013F, -189.128006F), new Vector2(497.713989F, -189.751999F)); + builder.AddCubicBezier(new Vector2(496.645996F, -190.376007F), new Vector2(495.440002F, -190.688004F), new Vector2(494.096008F, -190.688004F)); + builder.AddCubicBezier(new Vector2(493.567993F, -190.688004F), new Vector2(493.040009F, -190.628006F), new Vector2(492.511993F, -190.507996F)); + builder.AddCubicBezier(new Vector2(491.984009F, -190.388F), new Vector2(491.492004F, -190.220001F), new Vector2(491.036011F, -190.003998F)); + builder.AddLine(new Vector2(489.596008F, -188.059998F)); + builder.AddCubicBezier(new Vector2(489.980011F, -188.179993F), new Vector2(490.394012F, -188.270004F), new Vector2(490.838013F, -188.330002F)); + builder.AddCubicBezier(new Vector2(491.282013F, -188.389999F), new Vector2(491.708008F, -188.419998F), new Vector2(492.115997F, -188.419998F)); + builder.AddCubicBezier(new Vector2(493.291992F, -188.419998F), new Vector2(494.299988F, -188.210007F), new Vector2(495.140015F, -187.789993F)); + builder.AddCubicBezier(new Vector2(495.980011F, -187.369995F), new Vector2(496.627991F, -186.787994F), new Vector2(497.084015F, -186.044006F)); + builder.AddCubicBezier(new Vector2(497.540009F, -185.300003F), new Vector2(497.768005F, -184.412003F), new Vector2(497.768005F, -183.380005F)); + builder.AddCubicBezier(new Vector2(497.768005F, -182.371994F), new Vector2(497.540009F, -181.483994F), new Vector2(497.084015F, -180.716003F)); + builder.AddCubicBezier(new Vector2(496.627991F, -179.947998F), new Vector2(495.997986F, -179.354004F), new Vector2(495.194F, -178.934006F)); + builder.AddCubicBezier(new Vector2(494.390015F, -178.514008F), new Vector2(493.424011F, -178.304001F), new Vector2(492.29599F, -178.304001F)); + builder.AddCubicBezier(new Vector2(491.144012F, -178.304001F), new Vector2(490.088013F, -178.550003F), new Vector2(489.127991F, -179.042007F)); + builder.AddCubicBezier(new Vector2(488.167999F, -179.533997F), new Vector2(487.411987F, -180.199997F), new Vector2(486.859985F, -181.039993F)); + builder.AddLine(new Vector2(484.556F, -178.735992F)); + builder.AddCubicBezier(new Vector2(485.467987F, -177.559998F), new Vector2(486.589996F, -176.666F), new Vector2(487.921997F, -176.054001F)); + builder.AddCubicBezier(new Vector2(489.253998F, -175.442001F), new Vector2(490.735992F, -175.136002F), new Vector2(492.368011F, -175.136002F)); + builder.AddCubicBezier(new Vector2(494.119995F, -175.136002F), new Vector2(495.656006F, -175.477997F), new Vector2(496.976013F, -176.162003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0473() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(475.231995F, -189.643997F)); + builder.AddLine(new Vector2(475.231995F, -192.595993F)); + builder.AddLine(new Vector2(463.567993F, -192.595993F)); + builder.AddLine(new Vector2(463.567993F, -189.643997F)); + builder.AddLine(new Vector2(475.231995F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(471.019989F, -175.496002F)); + builder.AddLine(new Vector2(471.019989F, -199.759995F)); + builder.AddLine(new Vector2(467.779999F, -199.759995F)); + builder.AddLine(new Vector2(467.779999F, -175.496002F)); + builder.AddLine(new Vector2(471.019989F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0474() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(459.806F, -176.539993F)); + builder.AddCubicBezier(new Vector2(460.946014F, -177.475998F), new Vector2(461.515991F, -178.748001F), new Vector2(461.515991F, -180.356003F)); + builder.AddCubicBezier(new Vector2(461.515991F, -181.412003F), new Vector2(461.294006F, -182.264008F), new Vector2(460.850006F, -182.912003F)); + builder.AddCubicBezier(new Vector2(460.406006F, -183.559998F), new Vector2(459.835999F, -184.076004F), new Vector2(459.140015F, -184.460007F)); + builder.AddCubicBezier(new Vector2(458.444F, -184.843994F), new Vector2(457.712006F, -185.149994F), new Vector2(456.944F, -185.378006F)); + builder.AddCubicBezier(new Vector2(456.175995F, -185.606003F), new Vector2(455.437988F, -185.828003F), new Vector2(454.730011F, -186.044006F)); + builder.AddCubicBezier(new Vector2(454.022003F, -186.259995F), new Vector2(453.451996F, -186.524002F), new Vector2(453.019989F, -186.835999F)); + builder.AddCubicBezier(new Vector2(452.588013F, -187.147995F), new Vector2(452.372009F, -187.591995F), new Vector2(452.372009F, -188.167999F)); + builder.AddCubicBezier(new Vector2(452.372009F, -188.720001F), new Vector2(452.618011F, -189.164001F), new Vector2(453.109985F, -189.5F)); + builder.AddCubicBezier(new Vector2(453.60199F, -189.835999F), new Vector2(454.31601F, -190.003998F), new Vector2(455.252014F, -190.003998F)); + builder.AddCubicBezier(new Vector2(456.140015F, -190.003998F), new Vector2(456.932007F, -189.835999F), new Vector2(457.627991F, -189.5F)); + builder.AddCubicBezier(new Vector2(458.324005F, -189.164001F), new Vector2(458.924011F, -188.684006F), new Vector2(459.428009F, -188.059998F)); + builder.AddLine(new Vector2(461.515991F, -190.147995F)); + builder.AddCubicBezier(new Vector2(460.843994F, -191.084F), new Vector2(459.985992F, -191.785995F), new Vector2(458.941986F, -192.253998F)); + builder.AddCubicBezier(new Vector2(457.89801F, -192.722F), new Vector2(456.70401F, -192.955994F), new Vector2(455.359985F, -192.955994F)); + builder.AddCubicBezier(new Vector2(454.088013F, -192.955994F), new Vector2(452.996002F, -192.751999F), new Vector2(452.084015F, -192.343994F)); + builder.AddCubicBezier(new Vector2(451.171997F, -191.936005F), new Vector2(450.470001F, -191.354004F), new Vector2(449.977997F, -190.598007F)); + builder.AddCubicBezier(new Vector2(449.485992F, -189.841995F), new Vector2(449.23999F, -188.947998F), new Vector2(449.23999F, -187.916F)); + builder.AddCubicBezier(new Vector2(449.23999F, -186.884003F), new Vector2(449.462006F, -186.050003F), new Vector2(449.906006F, -185.414001F)); + builder.AddCubicBezier(new Vector2(450.350006F, -184.778F), new Vector2(450.920013F, -184.279999F), new Vector2(451.615997F, -183.919998F)); + builder.AddCubicBezier(new Vector2(452.312012F, -183.559998F), new Vector2(453.049988F, -183.272003F), new Vector2(453.829987F, -183.056F)); + builder.AddCubicBezier(new Vector2(454.609985F, -182.839996F), new Vector2(455.347992F, -182.617996F), new Vector2(456.044006F, -182.389999F)); + builder.AddCubicBezier(new Vector2(456.73999F, -182.162003F), new Vector2(457.309998F, -181.873993F), new Vector2(457.753998F, -181.526001F)); + builder.AddCubicBezier(new Vector2(458.197998F, -181.177994F), new Vector2(458.420013F, -180.692001F), new Vector2(458.420013F, -180.067993F)); + builder.AddCubicBezier(new Vector2(458.420013F, -179.444F), new Vector2(458.144012F, -178.957993F), new Vector2(457.59201F, -178.610001F)); + builder.AddCubicBezier(new Vector2(457.040009F, -178.261993F), new Vector2(456.26001F, -178.087997F), new Vector2(455.252014F, -178.087997F)); + builder.AddCubicBezier(new Vector2(454.243988F, -178.087997F), new Vector2(453.332001F, -178.274002F), new Vector2(452.515991F, -178.645996F)); + builder.AddCubicBezier(new Vector2(451.700012F, -179.018005F), new Vector2(450.980011F, -179.587997F), new Vector2(450.355988F, -180.356003F)); + builder.AddLine(new Vector2(448.268005F, -178.268005F)); + builder.AddCubicBezier(new Vector2(448.79599F, -177.619995F), new Vector2(449.414001F, -177.061996F), new Vector2(450.122009F, -176.593994F)); + builder.AddCubicBezier(new Vector2(450.829987F, -176.126007F), new Vector2(451.615997F, -175.766006F), new Vector2(452.480011F, -175.514008F)); + builder.AddCubicBezier(new Vector2(453.343994F, -175.261993F), new Vector2(454.256012F, -175.136002F), new Vector2(455.216003F, -175.136002F)); + builder.AddCubicBezier(new Vector2(457.135986F, -175.136002F), new Vector2(458.665985F, -175.604004F), new Vector2(459.806F, -176.539993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0475() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(441.895996F, -176.126007F)); + builder.AddCubicBezier(new Vector2(443F, -176.738007F), new Vector2(443.864014F, -177.608002F), new Vector2(444.488007F, -178.735992F)); + builder.AddCubicBezier(new Vector2(445.112F, -179.863998F), new Vector2(445.424011F, -181.171997F), new Vector2(445.424011F, -182.660004F)); + builder.AddLine(new Vector2(445.424011F, -192.595993F)); + builder.AddLine(new Vector2(442.18399F, -192.595993F)); + builder.AddLine(new Vector2(442.18399F, -182.804001F)); + builder.AddCubicBezier(new Vector2(442.18399F, -181.388F), new Vector2(441.824005F, -180.278F), new Vector2(441.104004F, -179.473999F)); + builder.AddCubicBezier(new Vector2(440.384003F, -178.669998F), new Vector2(439.388F, -178.268005F), new Vector2(438.115997F, -178.268005F)); + builder.AddCubicBezier(new Vector2(437.276001F, -178.268005F), new Vector2(436.544006F, -178.447998F), new Vector2(435.920013F, -178.807999F)); + builder.AddCubicBezier(new Vector2(435.29599F, -179.167999F), new Vector2(434.821991F, -179.690002F), new Vector2(434.497986F, -180.373993F)); + builder.AddCubicBezier(new Vector2(434.174011F, -181.057999F), new Vector2(434.011993F, -181.867996F), new Vector2(434.011993F, -182.804001F)); + builder.AddLine(new Vector2(434.011993F, -192.595993F)); + builder.AddLine(new Vector2(430.772003F, -192.595993F)); + builder.AddLine(new Vector2(430.772003F, -182.660004F)); + builder.AddCubicBezier(new Vector2(430.772003F, -181.171997F), new Vector2(431.084015F, -179.863998F), new Vector2(431.708008F, -178.735992F)); + builder.AddCubicBezier(new Vector2(432.332001F, -177.608002F), new Vector2(433.201996F, -176.738007F), new Vector2(434.317993F, -176.126007F)); + builder.AddCubicBezier(new Vector2(435.43399F, -175.514008F), new Vector2(436.700012F, -175.207993F), new Vector2(438.115997F, -175.207993F)); + builder.AddCubicBezier(new Vector2(439.532013F, -175.207993F), new Vector2(440.791992F, -175.514008F), new Vector2(441.895996F, -176.126007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0476() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(415.273987F, -179.546005F)); + builder.AddCubicBezier(new Vector2(414.446014F, -180.014008F), new Vector2(413.798004F, -180.667999F), new Vector2(413.329987F, -181.507996F)); + builder.AddCubicBezier(new Vector2(412.862F, -182.348007F), new Vector2(412.627991F, -183.307999F), new Vector2(412.627991F, -184.388F)); + builder.AddCubicBezier(new Vector2(412.627991F, -185.468002F), new Vector2(412.862F, -186.421997F), new Vector2(413.329987F, -187.25F)); + builder.AddCubicBezier(new Vector2(413.798004F, -188.078003F), new Vector2(414.440002F, -188.725998F), new Vector2(415.256012F, -189.194F)); + builder.AddCubicBezier(new Vector2(416.071991F, -189.662003F), new Vector2(417.019989F, -189.895996F), new Vector2(418.100006F, -189.895996F)); + builder.AddCubicBezier(new Vector2(419.156006F, -189.895996F), new Vector2(420.085999F, -189.662003F), new Vector2(420.890015F, -189.194F)); + builder.AddCubicBezier(new Vector2(421.694F, -188.725998F), new Vector2(422.317993F, -188.078003F), new Vector2(422.761993F, -187.25F)); + builder.AddCubicBezier(new Vector2(423.205994F, -186.421997F), new Vector2(423.428009F, -185.455994F), new Vector2(423.428009F, -184.352005F)); + builder.AddCubicBezier(new Vector2(423.428009F, -183.248001F), new Vector2(423.205994F, -182.281998F), new Vector2(422.761993F, -181.453995F)); + builder.AddCubicBezier(new Vector2(422.317993F, -180.626007F), new Vector2(421.700012F, -179.983994F), new Vector2(420.90799F, -179.528F)); + builder.AddCubicBezier(new Vector2(420.115997F, -179.072006F), new Vector2(419.179993F, -178.843994F), new Vector2(418.100006F, -178.843994F)); + builder.AddCubicBezier(new Vector2(417.044006F, -178.843994F), new Vector2(416.10199F, -179.078003F), new Vector2(415.273987F, -179.546005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(421.015991F, -176.576004F)); + builder.AddCubicBezier(new Vector2(422.048004F, -177.104004F), new Vector2(422.869995F, -177.841995F), new Vector2(423.481995F, -178.789993F)); + builder.AddCubicBezier(new Vector2(424.093994F, -179.738007F), new Vector2(424.436005F, -180.835999F), new Vector2(424.507996F, -182.084F)); + builder.AddLine(new Vector2(424.507996F, -186.619995F)); + builder.AddCubicBezier(new Vector2(424.436005F, -187.891998F), new Vector2(424.100006F, -189.001999F), new Vector2(423.5F, -189.949997F)); + builder.AddCubicBezier(new Vector2(422.899994F, -190.897995F), new Vector2(422.078003F, -191.636002F), new Vector2(421.033997F, -192.164001F)); + builder.AddCubicBezier(new Vector2(419.98999F, -192.692001F), new Vector2(418.79599F, -192.955994F), new Vector2(417.451996F, -192.955994F)); + builder.AddCubicBezier(new Vector2(415.915985F, -192.955994F), new Vector2(414.523987F, -192.578003F), new Vector2(413.276001F, -191.822006F)); + builder.AddCubicBezier(new Vector2(412.028015F, -191.065994F), new Vector2(411.049988F, -190.046005F), new Vector2(410.34201F, -188.761993F)); + builder.AddCubicBezier(new Vector2(409.634003F, -187.477997F), new Vector2(409.279999F, -186.020004F), new Vector2(409.279999F, -184.388F)); + builder.AddCubicBezier(new Vector2(409.279999F, -182.755997F), new Vector2(409.640015F, -181.285995F), new Vector2(410.359985F, -179.977997F)); + builder.AddCubicBezier(new Vector2(411.079987F, -178.669998F), new Vector2(412.058014F, -177.643997F), new Vector2(413.294006F, -176.899994F)); + builder.AddCubicBezier(new Vector2(414.529999F, -176.156006F), new Vector2(415.928009F, -175.783997F), new Vector2(417.488007F, -175.783997F)); + builder.AddCubicBezier(new Vector2(418.808014F, -175.783997F), new Vector2(419.984009F, -176.048004F), new Vector2(421.015991F, -176.576004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(422.186005F, -168.998001F)); + builder.AddCubicBezier(new Vector2(423.541992F, -169.682007F), new Vector2(424.597992F, -170.641998F), new Vector2(425.354004F, -171.878006F)); + builder.AddCubicBezier(new Vector2(426.109985F, -173.113998F), new Vector2(426.488007F, -174.548004F), new Vector2(426.488007F, -176.179993F)); + builder.AddLine(new Vector2(426.488007F, -192.595993F)); + builder.AddLine(new Vector2(423.247986F, -192.595993F)); + builder.AddLine(new Vector2(423.247986F, -188.095993F)); + builder.AddLine(new Vector2(423.824005F, -184.279999F)); + builder.AddLine(new Vector2(423.247986F, -180.427994F)); + builder.AddLine(new Vector2(423.247986F, -176.179993F)); + builder.AddCubicBezier(new Vector2(423.247986F, -174.619995F), new Vector2(422.731995F, -173.378006F), new Vector2(421.700012F, -172.453995F)); + builder.AddCubicBezier(new Vector2(420.667999F, -171.529999F), new Vector2(419.287994F, -171.067993F), new Vector2(417.559998F, -171.067993F)); + builder.AddCubicBezier(new Vector2(416.23999F, -171.067993F), new Vector2(415.100006F, -171.302002F), new Vector2(414.140015F, -171.770004F)); + builder.AddCubicBezier(new Vector2(413.179993F, -172.238007F), new Vector2(412.35199F, -172.916F), new Vector2(411.656006F, -173.804001F)); + builder.AddLine(new Vector2(409.532013F, -171.679993F)); + builder.AddCubicBezier(new Vector2(410.372009F, -170.503998F), new Vector2(411.463989F, -169.591995F), new Vector2(412.808014F, -168.944F)); + builder.AddCubicBezier(new Vector2(414.152008F, -168.296005F), new Vector2(415.712006F, -167.972F), new Vector2(417.488007F, -167.972F)); + builder.AddCubicBezier(new Vector2(419.264008F, -167.972F), new Vector2(420.829987F, -168.313995F), new Vector2(422.186005F, -168.998001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0477() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(402.511993F, -176.126007F)); + builder.AddCubicBezier(new Vector2(403.615997F, -176.738007F), new Vector2(404.480011F, -177.608002F), new Vector2(405.104004F, -178.735992F)); + builder.AddCubicBezier(new Vector2(405.727997F, -179.863998F), new Vector2(406.040009F, -181.171997F), new Vector2(406.040009F, -182.660004F)); + builder.AddLine(new Vector2(406.040009F, -192.595993F)); + builder.AddLine(new Vector2(402.799988F, -192.595993F)); + builder.AddLine(new Vector2(402.799988F, -182.804001F)); + builder.AddCubicBezier(new Vector2(402.799988F, -181.388F), new Vector2(402.440002F, -180.278F), new Vector2(401.720001F, -179.473999F)); + builder.AddCubicBezier(new Vector2(401F, -178.669998F), new Vector2(400.003998F, -178.268005F), new Vector2(398.731995F, -178.268005F)); + builder.AddCubicBezier(new Vector2(397.891998F, -178.268005F), new Vector2(397.160004F, -178.447998F), new Vector2(396.536011F, -178.807999F)); + builder.AddCubicBezier(new Vector2(395.911987F, -179.167999F), new Vector2(395.437988F, -179.690002F), new Vector2(395.114014F, -180.373993F)); + builder.AddCubicBezier(new Vector2(394.790009F, -181.057999F), new Vector2(394.627991F, -181.867996F), new Vector2(394.627991F, -182.804001F)); + builder.AddLine(new Vector2(394.627991F, -192.595993F)); + builder.AddLine(new Vector2(391.388F, -192.595993F)); + builder.AddLine(new Vector2(391.388F, -182.660004F)); + builder.AddCubicBezier(new Vector2(391.388F, -181.171997F), new Vector2(391.700012F, -179.863998F), new Vector2(392.324005F, -178.735992F)); + builder.AddCubicBezier(new Vector2(392.947998F, -177.608002F), new Vector2(393.817993F, -176.738007F), new Vector2(394.93399F, -176.126007F)); + builder.AddCubicBezier(new Vector2(396.049988F, -175.514008F), new Vector2(397.31601F, -175.207993F), new Vector2(398.731995F, -175.207993F)); + builder.AddCubicBezier(new Vector2(400.14801F, -175.207993F), new Vector2(401.40799F, -175.514008F), new Vector2(402.511993F, -176.126007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0478() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(384.152008F, -181.147995F)); + builder.AddLine(new Vector2(384.152008F, -184.100006F)); + builder.AddLine(new Vector2(371.011993F, -184.100006F)); + builder.AddLine(new Vector2(371.011993F, -181.147995F)); + builder.AddLine(new Vector2(384.152008F, -181.147995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(369.752014F, -175.496002F)); + builder.AddLine(new Vector2(378.212006F, -196.628006F)); + builder.AddLine(new Vector2(376.915985F, -196.628006F)); + builder.AddLine(new Vector2(385.339996F, -175.496002F)); + builder.AddLine(new Vector2(389.011993F, -175.496002F)); + builder.AddLine(new Vector2(378.824005F, -200.479996F)); + builder.AddLine(new Vector2(376.376007F, -200.479996F)); + builder.AddLine(new Vector2(366.115997F, -175.496002F)); + builder.AddLine(new Vector2(369.752014F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0479() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(357.727997F, -189.643997F)); + builder.AddLine(new Vector2(357.727997F, -192.595993F)); + builder.AddLine(new Vector2(344.839996F, -192.595993F)); + builder.AddLine(new Vector2(344.839996F, -189.643997F)); + builder.AddLine(new Vector2(357.727997F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(352.291992F, -175.496002F)); + builder.AddLine(new Vector2(352.291992F, -195.151993F)); + builder.AddCubicBezier(new Vector2(352.291992F, -196.207993F), new Vector2(352.574005F, -197.029999F), new Vector2(353.138F, -197.617996F)); + builder.AddCubicBezier(new Vector2(353.701996F, -198.205994F), new Vector2(354.5F, -198.5F), new Vector2(355.532013F, -198.5F)); + builder.AddCubicBezier(new Vector2(356.084015F, -198.5F), new Vector2(356.552002F, -198.416F), new Vector2(356.936005F, -198.248001F)); + builder.AddCubicBezier(new Vector2(357.320007F, -198.080002F), new Vector2(357.667999F, -197.828003F), new Vector2(357.980011F, -197.492004F)); + builder.AddLine(new Vector2(360.104004F, -199.580002F)); + builder.AddCubicBezier(new Vector2(359.503998F, -200.227997F), new Vector2(358.843994F, -200.720001F), new Vector2(358.123993F, -201.056F)); + builder.AddCubicBezier(new Vector2(357.403992F, -201.391998F), new Vector2(356.552002F, -201.559998F), new Vector2(355.567993F, -201.559998F)); + builder.AddCubicBezier(new Vector2(354.272003F, -201.559998F), new Vector2(353.131989F, -201.283997F), new Vector2(352.14801F, -200.731995F)); + builder.AddCubicBezier(new Vector2(351.164001F, -200.179993F), new Vector2(350.395996F, -199.423996F), new Vector2(349.843994F, -198.464005F)); + builder.AddCubicBezier(new Vector2(349.291992F, -197.503998F), new Vector2(349.015991F, -196.399994F), new Vector2(349.015991F, -195.151993F)); + builder.AddLine(new Vector2(349.015991F, -175.496002F)); + builder.AddLine(new Vector2(352.291992F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0480() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(331.735992F, -179.024002F)); + builder.AddCubicBezier(new Vector2(330.895996F, -179.528F), new Vector2(330.235992F, -180.218002F), new Vector2(329.756012F, -181.093994F)); + builder.AddCubicBezier(new Vector2(329.276001F, -181.970001F), new Vector2(329.036011F, -182.972F), new Vector2(329.036011F, -184.100006F)); + builder.AddCubicBezier(new Vector2(329.036011F, -185.203995F), new Vector2(329.276001F, -186.188004F), new Vector2(329.756012F, -187.052002F)); + builder.AddCubicBezier(new Vector2(330.235992F, -187.916F), new Vector2(330.895996F, -188.593994F), new Vector2(331.735992F, -189.085999F)); + builder.AddCubicBezier(new Vector2(332.575989F, -189.578003F), new Vector2(333.523987F, -189.824005F), new Vector2(334.579987F, -189.824005F)); + builder.AddCubicBezier(new Vector2(335.68399F, -189.824005F), new Vector2(336.649994F, -189.578003F), new Vector2(337.477997F, -189.085999F)); + builder.AddCubicBezier(new Vector2(338.306F, -188.593994F), new Vector2(338.966003F, -187.916F), new Vector2(339.458008F, -187.052002F)); + builder.AddCubicBezier(new Vector2(339.950012F, -186.188004F), new Vector2(340.196014F, -185.203995F), new Vector2(340.196014F, -184.100006F)); + builder.AddCubicBezier(new Vector2(340.196014F, -182.972F), new Vector2(339.955994F, -181.970001F), new Vector2(339.476013F, -181.093994F)); + builder.AddCubicBezier(new Vector2(338.996002F, -180.218002F), new Vector2(338.335999F, -179.528F), new Vector2(337.496002F, -179.024002F)); + builder.AddCubicBezier(new Vector2(336.656006F, -178.520004F), new Vector2(335.68399F, -178.268005F), new Vector2(334.579987F, -178.268005F)); + builder.AddCubicBezier(new Vector2(333.523987F, -178.268005F), new Vector2(332.575989F, -178.520004F), new Vector2(331.735992F, -179.024002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(339.134003F, -176.324005F)); + builder.AddCubicBezier(new Vector2(340.48999F, -177.115997F), new Vector2(341.563995F, -178.190002F), new Vector2(342.355988F, -179.546005F)); + builder.AddCubicBezier(new Vector2(343.14801F, -180.901993F), new Vector2(343.544006F, -182.419998F), new Vector2(343.544006F, -184.100006F)); + builder.AddCubicBezier(new Vector2(343.544006F, -185.755997F), new Vector2(343.14801F, -187.255997F), new Vector2(342.355988F, -188.600006F)); + builder.AddCubicBezier(new Vector2(341.563995F, -189.944F), new Vector2(340.48999F, -191.005997F), new Vector2(339.134003F, -191.785995F)); + builder.AddCubicBezier(new Vector2(337.778015F, -192.565994F), new Vector2(336.26001F, -192.955994F), new Vector2(334.579987F, -192.955994F)); + builder.AddCubicBezier(new Vector2(332.924011F, -192.955994F), new Vector2(331.424011F, -192.559998F), new Vector2(330.079987F, -191.768005F)); + builder.AddCubicBezier(new Vector2(328.735992F, -190.975998F), new Vector2(327.667999F, -189.914001F), new Vector2(326.876007F, -188.582001F)); + builder.AddCubicBezier(new Vector2(326.084015F, -187.25F), new Vector2(325.687988F, -185.755997F), new Vector2(325.687988F, -184.100006F)); + builder.AddCubicBezier(new Vector2(325.687988F, -182.419998F), new Vector2(326.084015F, -180.901993F), new Vector2(326.876007F, -179.546005F)); + builder.AddCubicBezier(new Vector2(327.667999F, -178.190002F), new Vector2(328.735992F, -177.115997F), new Vector2(330.079987F, -176.324005F)); + builder.AddCubicBezier(new Vector2(331.424011F, -175.531998F), new Vector2(332.924011F, -175.136002F), new Vector2(334.579987F, -175.136002F)); + builder.AddCubicBezier(new Vector2(336.26001F, -175.136002F), new Vector2(337.778015F, -175.531998F), new Vector2(339.134003F, -176.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0481() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(314.006012F, -176.539993F)); + builder.AddCubicBezier(new Vector2(315.145996F, -177.475998F), new Vector2(315.716003F, -178.748001F), new Vector2(315.716003F, -180.356003F)); + builder.AddCubicBezier(new Vector2(315.716003F, -181.412003F), new Vector2(315.493988F, -182.264008F), new Vector2(315.049988F, -182.912003F)); + builder.AddCubicBezier(new Vector2(314.605988F, -183.559998F), new Vector2(314.036011F, -184.076004F), new Vector2(313.339996F, -184.460007F)); + builder.AddCubicBezier(new Vector2(312.644012F, -184.843994F), new Vector2(311.911987F, -185.149994F), new Vector2(311.144012F, -185.378006F)); + builder.AddCubicBezier(new Vector2(310.376007F, -185.606003F), new Vector2(309.638F, -185.828003F), new Vector2(308.929993F, -186.044006F)); + builder.AddCubicBezier(new Vector2(308.221985F, -186.259995F), new Vector2(307.652008F, -186.524002F), new Vector2(307.220001F, -186.835999F)); + builder.AddCubicBezier(new Vector2(306.787994F, -187.147995F), new Vector2(306.571991F, -187.591995F), new Vector2(306.571991F, -188.167999F)); + builder.AddCubicBezier(new Vector2(306.571991F, -188.720001F), new Vector2(306.817993F, -189.164001F), new Vector2(307.309998F, -189.5F)); + builder.AddCubicBezier(new Vector2(307.802002F, -189.835999F), new Vector2(308.515991F, -190.003998F), new Vector2(309.451996F, -190.003998F)); + builder.AddCubicBezier(new Vector2(310.339996F, -190.003998F), new Vector2(311.131989F, -189.835999F), new Vector2(311.828003F, -189.5F)); + builder.AddCubicBezier(new Vector2(312.523987F, -189.164001F), new Vector2(313.123993F, -188.684006F), new Vector2(313.627991F, -188.059998F)); + builder.AddLine(new Vector2(315.716003F, -190.147995F)); + builder.AddCubicBezier(new Vector2(315.044006F, -191.084F), new Vector2(314.186005F, -191.785995F), new Vector2(313.141998F, -192.253998F)); + builder.AddCubicBezier(new Vector2(312.097992F, -192.722F), new Vector2(310.903992F, -192.955994F), new Vector2(309.559998F, -192.955994F)); + builder.AddCubicBezier(new Vector2(308.287994F, -192.955994F), new Vector2(307.196014F, -192.751999F), new Vector2(306.283997F, -192.343994F)); + builder.AddCubicBezier(new Vector2(305.372009F, -191.936005F), new Vector2(304.670013F, -191.354004F), new Vector2(304.178009F, -190.598007F)); + builder.AddCubicBezier(new Vector2(303.686005F, -189.841995F), new Vector2(303.440002F, -188.947998F), new Vector2(303.440002F, -187.916F)); + builder.AddCubicBezier(new Vector2(303.440002F, -186.884003F), new Vector2(303.661987F, -186.050003F), new Vector2(304.105988F, -185.414001F)); + builder.AddCubicBezier(new Vector2(304.549988F, -184.778F), new Vector2(305.119995F, -184.279999F), new Vector2(305.81601F, -183.919998F)); + builder.AddCubicBezier(new Vector2(306.511993F, -183.559998F), new Vector2(307.25F, -183.272003F), new Vector2(308.029999F, -183.056F)); + builder.AddCubicBezier(new Vector2(308.809998F, -182.839996F), new Vector2(309.548004F, -182.617996F), new Vector2(310.243988F, -182.389999F)); + builder.AddCubicBezier(new Vector2(310.940002F, -182.162003F), new Vector2(311.51001F, -181.873993F), new Vector2(311.95401F, -181.526001F)); + builder.AddCubicBezier(new Vector2(312.39801F, -181.177994F), new Vector2(312.619995F, -180.692001F), new Vector2(312.619995F, -180.067993F)); + builder.AddCubicBezier(new Vector2(312.619995F, -179.444F), new Vector2(312.343994F, -178.957993F), new Vector2(311.791992F, -178.610001F)); + builder.AddCubicBezier(new Vector2(311.23999F, -178.261993F), new Vector2(310.459991F, -178.087997F), new Vector2(309.451996F, -178.087997F)); + builder.AddCubicBezier(new Vector2(308.444F, -178.087997F), new Vector2(307.532013F, -178.274002F), new Vector2(306.716003F, -178.645996F)); + builder.AddCubicBezier(new Vector2(305.899994F, -179.018005F), new Vector2(305.179993F, -179.587997F), new Vector2(304.556F, -180.356003F)); + builder.AddLine(new Vector2(302.467987F, -178.268005F)); + builder.AddCubicBezier(new Vector2(302.996002F, -177.619995F), new Vector2(303.614014F, -177.061996F), new Vector2(304.321991F, -176.593994F)); + builder.AddCubicBezier(new Vector2(305.029999F, -176.126007F), new Vector2(305.81601F, -175.766006F), new Vector2(306.679993F, -175.514008F)); + builder.AddCubicBezier(new Vector2(307.544006F, -175.261993F), new Vector2(308.455994F, -175.136002F), new Vector2(309.415985F, -175.136002F)); + builder.AddCubicBezier(new Vector2(311.335999F, -175.136002F), new Vector2(312.865997F, -175.604004F), new Vector2(314.006012F, -176.539993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0482() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(299.264008F, -175.496002F)); + builder.AddLine(new Vector2(299.264008F, -192.595993F)); + builder.AddLine(new Vector2(295.988007F, -192.595993F)); + builder.AddLine(new Vector2(295.988007F, -188.419998F)); + builder.AddLine(new Vector2(296.600006F, -184.279999F)); + builder.AddLine(new Vector2(295.988007F, -180.104004F)); + builder.AddLine(new Vector2(295.988007F, -175.496002F)); + builder.AddLine(new Vector2(299.264008F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(287.959991F, -178.951996F)); + builder.AddCubicBezier(new Vector2(287.119995F, -179.455994F), new Vector2(286.466003F, -180.145996F), new Vector2(285.997986F, -181.022003F)); + builder.AddCubicBezier(new Vector2(285.529999F, -181.897995F), new Vector2(285.29599F, -182.912003F), new Vector2(285.29599F, -184.063995F)); + builder.AddCubicBezier(new Vector2(285.29599F, -185.192001F), new Vector2(285.529999F, -186.194F), new Vector2(285.997986F, -187.070007F)); + builder.AddCubicBezier(new Vector2(286.466003F, -187.945999F), new Vector2(287.114014F, -188.636002F), new Vector2(287.941986F, -189.139999F)); + builder.AddCubicBezier(new Vector2(288.769989F, -189.643997F), new Vector2(289.723999F, -189.895996F), new Vector2(290.803986F, -189.895996F)); + builder.AddCubicBezier(new Vector2(291.884003F, -189.895996F), new Vector2(292.825989F, -189.649994F), new Vector2(293.630005F, -189.158005F)); + builder.AddCubicBezier(new Vector2(294.43399F, -188.666F), new Vector2(295.063995F, -187.975998F), new Vector2(295.519989F, -187.087997F)); + builder.AddCubicBezier(new Vector2(295.976013F, -186.199997F), new Vector2(296.20401F, -185.179993F), new Vector2(296.20401F, -184.028F)); + builder.AddCubicBezier(new Vector2(296.20401F, -182.324005F), new Vector2(295.712006F, -180.925995F), new Vector2(294.727997F, -179.834F)); + builder.AddCubicBezier(new Vector2(293.743988F, -178.742004F), new Vector2(292.447998F, -178.195999F), new Vector2(290.839996F, -178.195999F)); + builder.AddCubicBezier(new Vector2(289.76001F, -178.195999F), new Vector2(288.799988F, -178.447998F), new Vector2(287.959991F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(293.791992F, -175.945999F)); + builder.AddCubicBezier(new Vector2(294.824005F, -176.485992F), new Vector2(295.645996F, -177.235992F), new Vector2(296.257996F, -178.195999F)); + builder.AddCubicBezier(new Vector2(296.869995F, -179.156006F), new Vector2(297.212006F, -180.248001F), new Vector2(297.283997F, -181.472F)); + builder.AddLine(new Vector2(297.283997F, -186.619995F)); + builder.AddCubicBezier(new Vector2(297.212006F, -187.867996F), new Vector2(296.864014F, -188.966003F), new Vector2(296.23999F, -189.914001F)); + builder.AddCubicBezier(new Vector2(295.615997F, -190.862F), new Vector2(294.794006F, -191.606003F), new Vector2(293.773987F, -192.145996F)); + builder.AddCubicBezier(new Vector2(292.753998F, -192.686005F), new Vector2(291.596008F, -192.955994F), new Vector2(290.299988F, -192.955994F)); + builder.AddCubicBezier(new Vector2(288.716003F, -192.955994F), new Vector2(287.294006F, -192.559998F), new Vector2(286.033997F, -191.768005F)); + builder.AddCubicBezier(new Vector2(284.773987F, -190.975998F), new Vector2(283.778015F, -189.908005F), new Vector2(283.04599F, -188.563995F)); + builder.AddCubicBezier(new Vector2(282.313995F, -187.220001F), new Vector2(281.947998F, -185.707993F), new Vector2(281.947998F, -184.028F)); + builder.AddCubicBezier(new Vector2(281.947998F, -182.348007F), new Vector2(282.313995F, -180.835999F), new Vector2(283.04599F, -179.492004F)); + builder.AddCubicBezier(new Vector2(283.778015F, -178.147995F), new Vector2(284.773987F, -177.085999F), new Vector2(286.033997F, -176.306F)); + builder.AddCubicBezier(new Vector2(287.294006F, -175.526001F), new Vector2(288.716003F, -175.136002F), new Vector2(290.299988F, -175.136002F)); + builder.AddCubicBezier(new Vector2(291.596008F, -175.136002F), new Vector2(292.76001F, -175.406006F), new Vector2(293.791992F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0483() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(261.391998F, -168.332001F)); + builder.AddLine(new Vector2(264.631989F, -175.352005F)); + builder.AddLine(new Vector2(262.79599F, -178.664001F)); + builder.AddLine(new Vector2(257.791992F, -168.332001F)); + builder.AddLine(new Vector2(261.391998F, -168.332001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(264.631989F, -175.352005F)); + builder.AddLine(new Vector2(272.623993F, -192.595993F)); + builder.AddLine(new Vector2(269.023987F, -192.595993F)); + builder.AddLine(new Vector2(263.227997F, -179.095993F)); + builder.AddLine(new Vector2(264.380005F, -179.095993F)); + builder.AddLine(new Vector2(258.872009F, -192.595993F)); + builder.AddLine(new Vector2(255.272003F, -192.595993F)); + builder.AddLine(new Vector2(262.687988F, -175.352005F)); + builder.AddLine(new Vector2(264.631989F, -175.352005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0484() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(252.320007F, -175.496002F)); + builder.AddLine(new Vector2(252.320007F, -201.199997F)); + builder.AddLine(new Vector2(249.080002F, -201.199997F)); + builder.AddLine(new Vector2(249.080002F, -175.496002F)); + builder.AddLine(new Vector2(252.320007F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0485() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(244.363998F, -201.199997F)); + builder.AddLine(new Vector2(241.087997F, -201.199997F)); + builder.AddLine(new Vector2(241.087997F, -188.419998F)); + builder.AddLine(new Vector2(241.699997F, -184.279999F)); + builder.AddLine(new Vector2(241.087997F, -180.104004F)); + builder.AddLine(new Vector2(241.087997F, -175.496002F)); + builder.AddLine(new Vector2(244.363998F, -175.496002F)); + builder.AddLine(new Vector2(244.363998F, -201.199997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(233.042007F, -178.934006F)); + builder.AddCubicBezier(new Vector2(232.214005F, -179.425995F), new Vector2(231.565994F, -180.115997F), new Vector2(231.098007F, -181.003998F)); + builder.AddCubicBezier(new Vector2(230.630005F, -181.891998F), new Vector2(230.395996F, -182.912003F), new Vector2(230.395996F, -184.063995F)); + builder.AddCubicBezier(new Vector2(230.395996F, -185.216003F), new Vector2(230.630005F, -186.229996F), new Vector2(231.098007F, -187.106003F)); + builder.AddCubicBezier(new Vector2(231.565994F, -187.981995F), new Vector2(232.207993F, -188.666F), new Vector2(233.024002F, -189.158005F)); + builder.AddCubicBezier(new Vector2(233.839996F, -189.649994F), new Vector2(234.787994F, -189.895996F), new Vector2(235.867996F, -189.895996F)); + builder.AddCubicBezier(new Vector2(236.947998F, -189.895996F), new Vector2(237.895996F, -189.643997F), new Vector2(238.712006F, -189.139999F)); + builder.AddCubicBezier(new Vector2(239.528F, -188.636002F), new Vector2(240.164001F, -187.945999F), new Vector2(240.619995F, -187.070007F)); + builder.AddCubicBezier(new Vector2(241.076004F, -186.194F), new Vector2(241.304001F, -185.179993F), new Vector2(241.304001F, -184.028F)); + builder.AddCubicBezier(new Vector2(241.304001F, -182.899994F), new Vector2(241.076004F, -181.897995F), new Vector2(240.619995F, -181.022003F)); + builder.AddCubicBezier(new Vector2(240.164001F, -180.145996F), new Vector2(239.528F, -179.455994F), new Vector2(238.712006F, -178.951996F)); + builder.AddCubicBezier(new Vector2(237.895996F, -178.447998F), new Vector2(236.947998F, -178.195999F), new Vector2(235.867996F, -178.195999F)); + builder.AddCubicBezier(new Vector2(234.811996F, -178.195999F), new Vector2(233.869995F, -178.442001F), new Vector2(233.042007F, -178.934006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(238.856003F, -175.945999F)); + builder.AddCubicBezier(new Vector2(239.888F, -176.485992F), new Vector2(240.716003F, -177.235992F), new Vector2(241.339996F, -178.195999F)); + builder.AddCubicBezier(new Vector2(241.964005F, -179.156006F), new Vector2(242.311996F, -180.248001F), new Vector2(242.384003F, -181.472F)); + builder.AddLine(new Vector2(242.384003F, -186.619995F)); + builder.AddCubicBezier(new Vector2(242.311996F, -187.867996F), new Vector2(241.957993F, -188.966003F), new Vector2(241.322006F, -189.914001F)); + builder.AddCubicBezier(new Vector2(240.686005F, -190.862F), new Vector2(239.852005F, -191.606003F), new Vector2(238.820007F, -192.145996F)); + builder.AddCubicBezier(new Vector2(237.787994F, -192.686005F), new Vector2(236.623993F, -192.955994F), new Vector2(235.328003F, -192.955994F)); + builder.AddCubicBezier(new Vector2(233.768005F, -192.955994F), new Vector2(232.363998F, -192.559998F), new Vector2(231.115997F, -191.768005F)); + builder.AddCubicBezier(new Vector2(229.867996F, -190.975998F), new Vector2(228.878006F, -189.908005F), new Vector2(228.145996F, -188.563995F)); + builder.AddCubicBezier(new Vector2(227.414001F, -187.220001F), new Vector2(227.048004F, -185.707993F), new Vector2(227.048004F, -184.028F)); + builder.AddCubicBezier(new Vector2(227.048004F, -182.348007F), new Vector2(227.414001F, -180.835999F), new Vector2(228.145996F, -179.492004F)); + builder.AddCubicBezier(new Vector2(228.878006F, -178.147995F), new Vector2(229.867996F, -177.085999F), new Vector2(231.115997F, -176.306F)); + builder.AddCubicBezier(new Vector2(232.363998F, -175.526001F), new Vector2(233.768005F, -175.136002F), new Vector2(235.328003F, -175.136002F)); + builder.AddCubicBezier(new Vector2(236.647995F, -175.136002F), new Vector2(237.824005F, -175.406006F), new Vector2(238.856003F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0486() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(220.531998F, -175.891998F)); + builder.AddCubicBezier(new Vector2(221.707993F, -176.395996F), new Vector2(222.716003F, -177.128006F), new Vector2(223.556F, -178.087997F)); + builder.AddLine(new Vector2(221.468002F, -180.212006F)); + builder.AddCubicBezier(new Vector2(220.891998F, -179.539993F), new Vector2(220.201996F, -179.035995F), new Vector2(219.397995F, -178.699997F)); + builder.AddCubicBezier(new Vector2(218.593994F, -178.363998F), new Vector2(217.712006F, -178.195999F), new Vector2(216.751999F, -178.195999F)); + builder.AddCubicBezier(new Vector2(215.600006F, -178.195999F), new Vector2(214.580002F, -178.442001F), new Vector2(213.692001F, -178.934006F)); + builder.AddCubicBezier(new Vector2(212.804001F, -179.425995F), new Vector2(212.119995F, -180.121994F), new Vector2(211.639999F, -181.022003F)); + builder.AddCubicBezier(new Vector2(211.160004F, -181.921997F), new Vector2(210.919998F, -182.972F), new Vector2(210.919998F, -184.171997F)); + builder.AddCubicBezier(new Vector2(210.919998F, -185.348007F), new Vector2(211.147995F, -186.367996F), new Vector2(211.604004F, -187.231995F)); + builder.AddCubicBezier(new Vector2(212.059998F, -188.095993F), new Vector2(212.707993F, -188.768005F), new Vector2(213.548004F, -189.248001F)); + builder.AddCubicBezier(new Vector2(214.388F, -189.727997F), new Vector2(215.360001F, -189.968002F), new Vector2(216.464005F, -189.968002F)); + builder.AddCubicBezier(new Vector2(217.520004F, -189.968002F), new Vector2(218.419998F, -189.746002F), new Vector2(219.164001F, -189.302002F)); + builder.AddCubicBezier(new Vector2(219.908005F, -188.858002F), new Vector2(220.483994F, -188.233994F), new Vector2(220.891998F, -187.429993F)); + builder.AddCubicBezier(new Vector2(221.300003F, -186.626007F), new Vector2(221.503998F, -185.647995F), new Vector2(221.503998F, -184.496002F)); + builder.AddLine(new Vector2(222.692001F, -185.539993F)); + builder.AddLine(new Vector2(209.983994F, -185.539993F)); + builder.AddLine(new Vector2(209.983994F, -182.839996F)); + builder.AddLine(new Vector2(224.419998F, -182.839996F)); + builder.AddCubicBezier(new Vector2(224.492004F, -183.175995F), new Vector2(224.539993F, -183.481995F), new Vector2(224.563995F, -183.757996F)); + builder.AddCubicBezier(new Vector2(224.587997F, -184.033997F), new Vector2(224.600006F, -184.292007F), new Vector2(224.600006F, -184.531998F)); + builder.AddCubicBezier(new Vector2(224.600006F, -186.164001F), new Vector2(224.257996F, -187.615997F), new Vector2(223.574005F, -188.888F)); + builder.AddCubicBezier(new Vector2(222.889999F, -190.160004F), new Vector2(221.936005F, -191.156006F), new Vector2(220.712006F, -191.876007F)); + builder.AddCubicBezier(new Vector2(219.488007F, -192.595993F), new Vector2(218.095993F, -192.955994F), new Vector2(216.535995F, -192.955994F)); + builder.AddCubicBezier(new Vector2(214.880005F, -192.955994F), new Vector2(213.386002F, -192.565994F), new Vector2(212.054001F, -191.785995F)); + builder.AddCubicBezier(new Vector2(210.722F, -191.005997F), new Vector2(209.666F, -189.944F), new Vector2(208.886002F, -188.600006F)); + builder.AddCubicBezier(new Vector2(208.106003F, -187.255997F), new Vector2(207.716003F, -185.744003F), new Vector2(207.716003F, -184.063995F)); + builder.AddCubicBezier(new Vector2(207.716003F, -182.360001F), new Vector2(208.112F, -180.835999F), new Vector2(208.904007F, -179.492004F)); + builder.AddCubicBezier(new Vector2(209.695999F, -178.147995F), new Vector2(210.770004F, -177.085999F), new Vector2(212.126007F, -176.306F)); + builder.AddCubicBezier(new Vector2(213.481995F, -175.526001F), new Vector2(215.024002F, -175.136002F), new Vector2(216.751999F, -175.136002F)); + builder.AddCubicBezier(new Vector2(218.095993F, -175.136002F), new Vector2(219.356003F, -175.388F), new Vector2(220.531998F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0487() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(206.203995F, -189.643997F)); + builder.AddLine(new Vector2(206.203995F, -192.595993F)); + builder.AddLine(new Vector2(194.539993F, -192.595993F)); + builder.AddLine(new Vector2(194.539993F, -189.643997F)); + builder.AddLine(new Vector2(206.203995F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(201.992004F, -175.496002F)); + builder.AddLine(new Vector2(201.992004F, -199.759995F)); + builder.AddLine(new Vector2(198.751999F, -199.759995F)); + builder.AddLine(new Vector2(198.751999F, -175.496002F)); + builder.AddLine(new Vector2(201.992004F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0488() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(186.115997F, -188.744003F)); + builder.AddCubicBezier(new Vector2(186.884003F, -189.511993F), new Vector2(187.867996F, -189.895996F), new Vector2(189.067993F, -189.895996F)); + builder.AddCubicBezier(new Vector2(189.643997F, -189.895996F), new Vector2(190.147995F, -189.811996F), new Vector2(190.580002F, -189.643997F)); + builder.AddCubicBezier(new Vector2(191.011993F, -189.475998F), new Vector2(191.408005F, -189.199997F), new Vector2(191.768005F, -188.815994F)); + builder.AddLine(new Vector2(193.891998F, -191.011993F)); + builder.AddCubicBezier(new Vector2(193.292007F, -191.707993F), new Vector2(192.643997F, -192.205994F), new Vector2(191.947998F, -192.505997F)); + builder.AddCubicBezier(new Vector2(191.251999F, -192.806F), new Vector2(190.472F, -192.955994F), new Vector2(189.608002F, -192.955994F)); + builder.AddCubicBezier(new Vector2(187.712006F, -192.955994F), new Vector2(186.259995F, -192.307999F), new Vector2(185.251999F, -191.011993F)); + builder.AddCubicBezier(new Vector2(184.244003F, -189.716003F), new Vector2(183.740005F, -187.975998F), new Vector2(183.740005F, -185.792007F)); + builder.AddLine(new Vector2(184.964005F, -185.216003F)); + builder.AddCubicBezier(new Vector2(184.964005F, -186.800003F), new Vector2(185.348007F, -187.975998F), new Vector2(186.115997F, -188.744003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(184.964005F, -175.496002F)); + builder.AddLine(new Vector2(184.964005F, -192.595993F)); + builder.AddLine(new Vector2(181.723999F, -192.595993F)); + builder.AddLine(new Vector2(181.723999F, -175.496002F)); + builder.AddLine(new Vector2(184.964005F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0489() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(166.315994F, -179.024002F)); + builder.AddCubicBezier(new Vector2(165.475998F, -179.528F), new Vector2(164.815994F, -180.218002F), new Vector2(164.335999F, -181.093994F)); + builder.AddCubicBezier(new Vector2(163.856003F, -181.970001F), new Vector2(163.615997F, -182.972F), new Vector2(163.615997F, -184.100006F)); + builder.AddCubicBezier(new Vector2(163.615997F, -185.203995F), new Vector2(163.856003F, -186.188004F), new Vector2(164.335999F, -187.052002F)); + builder.AddCubicBezier(new Vector2(164.815994F, -187.916F), new Vector2(165.475998F, -188.593994F), new Vector2(166.315994F, -189.085999F)); + builder.AddCubicBezier(new Vector2(167.156006F, -189.578003F), new Vector2(168.104004F, -189.824005F), new Vector2(169.160004F, -189.824005F)); + builder.AddCubicBezier(new Vector2(170.264008F, -189.824005F), new Vector2(171.229996F, -189.578003F), new Vector2(172.057999F, -189.085999F)); + builder.AddCubicBezier(new Vector2(172.886002F, -188.593994F), new Vector2(173.546005F, -187.916F), new Vector2(174.037994F, -187.052002F)); + builder.AddCubicBezier(new Vector2(174.529999F, -186.188004F), new Vector2(174.776001F, -185.203995F), new Vector2(174.776001F, -184.100006F)); + builder.AddCubicBezier(new Vector2(174.776001F, -182.972F), new Vector2(174.535995F, -181.970001F), new Vector2(174.056F, -181.093994F)); + builder.AddCubicBezier(new Vector2(173.576004F, -180.218002F), new Vector2(172.916F, -179.528F), new Vector2(172.076004F, -179.024002F)); + builder.AddCubicBezier(new Vector2(171.235992F, -178.520004F), new Vector2(170.264008F, -178.268005F), new Vector2(169.160004F, -178.268005F)); + builder.AddCubicBezier(new Vector2(168.104004F, -178.268005F), new Vector2(167.156006F, -178.520004F), new Vector2(166.315994F, -179.024002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(173.714005F, -176.324005F)); + builder.AddCubicBezier(new Vector2(175.070007F, -177.115997F), new Vector2(176.143997F, -178.190002F), new Vector2(176.936005F, -179.546005F)); + builder.AddCubicBezier(new Vector2(177.727997F, -180.901993F), new Vector2(178.123993F, -182.419998F), new Vector2(178.123993F, -184.100006F)); + builder.AddCubicBezier(new Vector2(178.123993F, -185.755997F), new Vector2(177.727997F, -187.255997F), new Vector2(176.936005F, -188.600006F)); + builder.AddCubicBezier(new Vector2(176.143997F, -189.944F), new Vector2(175.070007F, -191.005997F), new Vector2(173.714005F, -191.785995F)); + builder.AddCubicBezier(new Vector2(172.358002F, -192.565994F), new Vector2(170.839996F, -192.955994F), new Vector2(169.160004F, -192.955994F)); + builder.AddCubicBezier(new Vector2(167.503998F, -192.955994F), new Vector2(166.003998F, -192.559998F), new Vector2(164.660004F, -191.768005F)); + builder.AddCubicBezier(new Vector2(163.315994F, -190.975998F), new Vector2(162.248001F, -189.914001F), new Vector2(161.455994F, -188.582001F)); + builder.AddCubicBezier(new Vector2(160.664001F, -187.25F), new Vector2(160.268005F, -185.755997F), new Vector2(160.268005F, -184.100006F)); + builder.AddCubicBezier(new Vector2(160.268005F, -182.419998F), new Vector2(160.664001F, -180.901993F), new Vector2(161.455994F, -179.546005F)); + builder.AddCubicBezier(new Vector2(162.248001F, -178.190002F), new Vector2(163.315994F, -177.115997F), new Vector2(164.660004F, -176.324005F)); + builder.AddCubicBezier(new Vector2(166.003998F, -175.531998F), new Vector2(167.503998F, -175.136002F), new Vector2(169.160004F, -175.136002F)); + builder.AddCubicBezier(new Vector2(170.839996F, -175.136002F), new Vector2(172.358002F, -175.531998F), new Vector2(173.714005F, -176.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0490() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(146.065994F, -178.951996F)); + builder.AddCubicBezier(new Vector2(145.238007F, -179.455994F), new Vector2(144.602005F, -180.145996F), new Vector2(144.158005F, -181.022003F)); + builder.AddCubicBezier(new Vector2(143.714005F, -181.897995F), new Vector2(143.492004F, -182.899994F), new Vector2(143.492004F, -184.028F)); + builder.AddCubicBezier(new Vector2(143.492004F, -185.179993F), new Vector2(143.720001F, -186.194F), new Vector2(144.175995F, -187.070007F)); + builder.AddCubicBezier(new Vector2(144.632004F, -187.945999F), new Vector2(145.268005F, -188.636002F), new Vector2(146.084F, -189.139999F)); + builder.AddCubicBezier(new Vector2(146.899994F, -189.643997F), new Vector2(147.835999F, -189.895996F), new Vector2(148.891998F, -189.895996F)); + builder.AddCubicBezier(new Vector2(149.972F, -189.895996F), new Vector2(150.919998F, -189.643997F), new Vector2(151.735992F, -189.139999F)); + builder.AddCubicBezier(new Vector2(152.552002F, -188.636002F), new Vector2(153.194F, -187.945999F), new Vector2(153.662003F, -187.070007F)); + builder.AddCubicBezier(new Vector2(154.130005F, -186.194F), new Vector2(154.363998F, -185.192001F), new Vector2(154.363998F, -184.063995F)); + builder.AddCubicBezier(new Vector2(154.363998F, -182.912003F), new Vector2(154.130005F, -181.897995F), new Vector2(153.662003F, -181.022003F)); + builder.AddCubicBezier(new Vector2(153.194F, -180.145996F), new Vector2(152.552002F, -179.455994F), new Vector2(151.735992F, -178.951996F)); + builder.AddCubicBezier(new Vector2(150.919998F, -178.447998F), new Vector2(149.972F, -178.195999F), new Vector2(148.891998F, -178.195999F)); + builder.AddCubicBezier(new Vector2(147.835999F, -178.195999F), new Vector2(146.893997F, -178.447998F), new Vector2(146.065994F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(143.671997F, -168.332001F)); + builder.AddLine(new Vector2(143.671997F, -179.779999F)); + builder.AddLine(new Vector2(143.059998F, -183.955994F)); + builder.AddLine(new Vector2(143.671997F, -188.095993F)); + builder.AddLine(new Vector2(143.671997F, -192.595993F)); + builder.AddLine(new Vector2(140.432007F, -192.595993F)); + builder.AddLine(new Vector2(140.432007F, -168.332001F)); + builder.AddLine(new Vector2(143.671997F, -168.332001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(153.662003F, -176.306F)); + builder.AddCubicBezier(new Vector2(154.921997F, -177.085999F), new Vector2(155.912003F, -178.147995F), new Vector2(156.632004F, -179.492004F)); + builder.AddCubicBezier(new Vector2(157.352005F, -180.835999F), new Vector2(157.712006F, -182.348007F), new Vector2(157.712006F, -184.028F)); + builder.AddCubicBezier(new Vector2(157.712006F, -185.707993F), new Vector2(157.352005F, -187.220001F), new Vector2(156.632004F, -188.563995F)); + builder.AddCubicBezier(new Vector2(155.912003F, -189.908005F), new Vector2(154.921997F, -190.975998F), new Vector2(153.662003F, -191.768005F)); + builder.AddCubicBezier(new Vector2(152.401993F, -192.559998F), new Vector2(150.992004F, -192.955994F), new Vector2(149.432007F, -192.955994F)); + builder.AddCubicBezier(new Vector2(148.160004F, -192.955994F), new Vector2(147.001999F, -192.686005F), new Vector2(145.957993F, -192.145996F)); + builder.AddCubicBezier(new Vector2(144.914001F, -191.606003F), new Vector2(144.074005F, -190.862F), new Vector2(143.438004F, -189.914001F)); + builder.AddCubicBezier(new Vector2(142.802002F, -188.966003F), new Vector2(142.447998F, -187.867996F), new Vector2(142.376007F, -186.619995F)); + builder.AddLine(new Vector2(142.376007F, -181.472F)); + builder.AddCubicBezier(new Vector2(142.447998F, -180.248001F), new Vector2(142.796005F, -179.156006F), new Vector2(143.419998F, -178.195999F)); + builder.AddCubicBezier(new Vector2(144.044006F, -177.235992F), new Vector2(144.878006F, -176.485992F), new Vector2(145.921997F, -175.945999F)); + builder.AddCubicBezier(new Vector2(146.966003F, -175.406006F), new Vector2(148.136002F, -175.136002F), new Vector2(149.432007F, -175.136002F)); + builder.AddCubicBezier(new Vector2(150.992004F, -175.136002F), new Vector2(152.401993F, -175.526001F), new Vector2(153.662003F, -176.306F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0491() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(132.835999F, -175.891998F)); + builder.AddCubicBezier(new Vector2(134.011993F, -176.395996F), new Vector2(135.020004F, -177.128006F), new Vector2(135.860001F, -178.087997F)); + builder.AddLine(new Vector2(133.772003F, -180.212006F)); + builder.AddCubicBezier(new Vector2(133.195999F, -179.539993F), new Vector2(132.505997F, -179.035995F), new Vector2(131.701996F, -178.699997F)); + builder.AddCubicBezier(new Vector2(130.897995F, -178.363998F), new Vector2(130.016006F, -178.195999F), new Vector2(129.056F, -178.195999F)); + builder.AddCubicBezier(new Vector2(127.903999F, -178.195999F), new Vector2(126.884003F, -178.442001F), new Vector2(125.996002F, -178.934006F)); + builder.AddCubicBezier(new Vector2(125.108002F, -179.425995F), new Vector2(124.424004F, -180.121994F), new Vector2(123.944F, -181.022003F)); + builder.AddCubicBezier(new Vector2(123.463997F, -181.921997F), new Vector2(123.223999F, -182.972F), new Vector2(123.223999F, -184.171997F)); + builder.AddCubicBezier(new Vector2(123.223999F, -185.348007F), new Vector2(123.452003F, -186.367996F), new Vector2(123.907997F, -187.231995F)); + builder.AddCubicBezier(new Vector2(124.363998F, -188.095993F), new Vector2(125.012001F, -188.768005F), new Vector2(125.851997F, -189.248001F)); + builder.AddCubicBezier(new Vector2(126.692001F, -189.727997F), new Vector2(127.664001F, -189.968002F), new Vector2(128.768005F, -189.968002F)); + builder.AddCubicBezier(new Vector2(129.824005F, -189.968002F), new Vector2(130.723999F, -189.746002F), new Vector2(131.468002F, -189.302002F)); + builder.AddCubicBezier(new Vector2(132.212006F, -188.858002F), new Vector2(132.787994F, -188.233994F), new Vector2(133.195999F, -187.429993F)); + builder.AddCubicBezier(new Vector2(133.604004F, -186.626007F), new Vector2(133.807999F, -185.647995F), new Vector2(133.807999F, -184.496002F)); + builder.AddLine(new Vector2(134.996002F, -185.539993F)); + builder.AddLine(new Vector2(122.288002F, -185.539993F)); + builder.AddLine(new Vector2(122.288002F, -182.839996F)); + builder.AddLine(new Vector2(136.723999F, -182.839996F)); + builder.AddCubicBezier(new Vector2(136.796005F, -183.175995F), new Vector2(136.843994F, -183.481995F), new Vector2(136.867996F, -183.757996F)); + builder.AddCubicBezier(new Vector2(136.891998F, -184.033997F), new Vector2(136.904007F, -184.292007F), new Vector2(136.904007F, -184.531998F)); + builder.AddCubicBezier(new Vector2(136.904007F, -186.164001F), new Vector2(136.561996F, -187.615997F), new Vector2(135.878006F, -188.888F)); + builder.AddCubicBezier(new Vector2(135.194F, -190.160004F), new Vector2(134.240005F, -191.156006F), new Vector2(133.016006F, -191.876007F)); + builder.AddCubicBezier(new Vector2(131.792007F, -192.595993F), new Vector2(130.399994F, -192.955994F), new Vector2(128.839996F, -192.955994F)); + builder.AddCubicBezier(new Vector2(127.183998F, -192.955994F), new Vector2(125.690002F, -192.565994F), new Vector2(124.358002F, -191.785995F)); + builder.AddCubicBezier(new Vector2(123.026001F, -191.005997F), new Vector2(121.970001F, -189.944F), new Vector2(121.190002F, -188.600006F)); + builder.AddCubicBezier(new Vector2(120.410004F, -187.255997F), new Vector2(120.019997F, -185.744003F), new Vector2(120.019997F, -184.063995F)); + builder.AddCubicBezier(new Vector2(120.019997F, -182.360001F), new Vector2(120.416F, -180.835999F), new Vector2(121.208F, -179.492004F)); + builder.AddCubicBezier(new Vector2(122F, -178.147995F), new Vector2(123.073997F, -177.085999F), new Vector2(124.43F, -176.306F)); + builder.AddCubicBezier(new Vector2(125.786003F, -175.526001F), new Vector2(127.328003F, -175.136002F), new Vector2(129.056F, -175.136002F)); + builder.AddCubicBezier(new Vector2(130.399994F, -175.136002F), new Vector2(131.660004F, -175.388F), new Vector2(132.835999F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0492() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(118.760002F, -175.496002F)); + builder.AddLine(new Vector2(108.608002F, -187.807999F)); + builder.AddLine(new Vector2(105.403999F, -186.692001F)); + builder.AddLine(new Vector2(114.475998F, -175.496002F)); + builder.AddLine(new Vector2(118.760002F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(103.459999F, -175.496002F)); + builder.AddLine(new Vector2(103.459999F, -200.479996F)); + builder.AddLine(new Vector2(100.075996F, -200.479996F)); + builder.AddLine(new Vector2(100.075996F, -175.496002F)); + builder.AddLine(new Vector2(103.459999F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(109.255997F, -186.367996F)); + builder.AddCubicBezier(new Vector2(110.839996F, -186.367996F), new Vector2(112.220001F, -186.662003F), new Vector2(113.396004F, -187.25F)); + builder.AddCubicBezier(new Vector2(114.571999F, -187.837997F), new Vector2(115.477997F, -188.660004F), new Vector2(116.113998F, -189.716003F)); + builder.AddCubicBezier(new Vector2(116.75F, -190.772003F), new Vector2(117.068001F, -192.007996F), new Vector2(117.068001F, -193.423996F)); + builder.AddCubicBezier(new Vector2(117.068001F, -194.792007F), new Vector2(116.75F, -196.003998F), new Vector2(116.113998F, -197.059998F)); + builder.AddCubicBezier(new Vector2(115.477997F, -198.115997F), new Vector2(114.571999F, -198.949997F), new Vector2(113.396004F, -199.561996F)); + builder.AddCubicBezier(new Vector2(112.220001F, -200.173996F), new Vector2(110.839996F, -200.479996F), new Vector2(109.255997F, -200.479996F)); + builder.AddLine(new Vector2(102.344002F, -200.479996F)); + builder.AddLine(new Vector2(102.344002F, -197.528F)); + builder.AddLine(new Vector2(109.148003F, -197.528F)); + builder.AddCubicBezier(new Vector2(110.587997F, -197.528F), new Vector2(111.697998F, -197.132004F), new Vector2(112.477997F, -196.339996F)); + builder.AddCubicBezier(new Vector2(113.258003F, -195.548004F), new Vector2(113.648003F, -194.552002F), new Vector2(113.648003F, -193.352005F)); + builder.AddCubicBezier(new Vector2(113.648003F, -192.080002F), new Vector2(113.258003F, -191.072006F), new Vector2(112.477997F, -190.328003F)); + builder.AddCubicBezier(new Vector2(111.697998F, -189.584F), new Vector2(110.575996F, -189.212006F), new Vector2(109.112F, -189.212006F)); + builder.AddLine(new Vector2(102.344002F, -189.212006F)); + builder.AddLine(new Vector2(102.344002F, -186.367996F)); + builder.AddLine(new Vector2(109.255997F, -186.367996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0493() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(86.1259995F, -175.837997F)); + builder.AddCubicBezier(new Vector2(86.5699997F, -176.306F), new Vector2(86.7919998F, -176.863998F), new Vector2(86.7919998F, -177.511993F)); + builder.AddCubicBezier(new Vector2(86.7919998F, -178.184006F), new Vector2(86.5699997F, -178.742004F), new Vector2(86.1259995F, -179.186005F)); + builder.AddCubicBezier(new Vector2(85.6819992F, -179.630005F), new Vector2(85.1240005F, -179.852005F), new Vector2(84.4520035F, -179.852005F)); + builder.AddCubicBezier(new Vector2(83.7559967F, -179.852005F), new Vector2(83.1920013F, -179.630005F), new Vector2(82.7600021F, -179.186005F)); + builder.AddCubicBezier(new Vector2(82.3280029F, -178.742004F), new Vector2(82.1119995F, -178.184006F), new Vector2(82.1119995F, -177.511993F)); + builder.AddCubicBezier(new Vector2(82.1119995F, -176.863998F), new Vector2(82.3280029F, -176.306F), new Vector2(82.7600021F, -175.837997F)); + builder.AddCubicBezier(new Vector2(83.1920013F, -175.369995F), new Vector2(83.7559967F, -175.136002F), new Vector2(84.4520035F, -175.136002F)); + builder.AddCubicBezier(new Vector2(85.1240005F, -175.136002F), new Vector2(85.6819992F, -175.369995F), new Vector2(86.1259995F, -175.837997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0494() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(65.1200027F, -175.496002F)); + builder.AddLine(new Vector2(65.1200027F, -192.595993F)); + builder.AddLine(new Vector2(61.8800011F, -192.595993F)); + builder.AddLine(new Vector2(61.8800011F, -175.496002F)); + builder.AddLine(new Vector2(65.1200027F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(77.2160034F, -175.496002F)); + builder.AddLine(new Vector2(77.2160034F, -186.115997F)); + builder.AddCubicBezier(new Vector2(77.2160034F, -187.292007F), new Vector2(76.9280014F, -188.401993F), new Vector2(76.3519974F, -189.445999F)); + builder.AddCubicBezier(new Vector2(75.776001F, -190.490005F), new Vector2(74.9899979F, -191.335999F), new Vector2(73.9940033F, -191.983994F)); + builder.AddCubicBezier(new Vector2(72.9980011F, -192.632004F), new Vector2(71.8519974F, -192.955994F), new Vector2(70.5559998F, -192.955994F)); + builder.AddCubicBezier(new Vector2(69.2600021F, -192.955994F), new Vector2(68.0960007F, -192.662003F), new Vector2(67.064003F, -192.074005F)); + builder.AddCubicBezier(new Vector2(66.0319977F, -191.485992F), new Vector2(65.2279968F, -190.688004F), new Vector2(64.6520004F, -189.679993F)); + builder.AddCubicBezier(new Vector2(64.0759964F, -188.671997F), new Vector2(63.7879982F, -187.520004F), new Vector2(63.7879982F, -186.223999F)); + builder.AddLine(new Vector2(65.1200027F, -185.468002F)); + builder.AddCubicBezier(new Vector2(65.1200027F, -186.332001F), new Vector2(65.3119965F, -187.100006F), new Vector2(65.6959991F, -187.772003F)); + builder.AddCubicBezier(new Vector2(66.0800018F, -188.444F), new Vector2(66.6080017F, -188.972F), new Vector2(67.2799988F, -189.356003F)); + builder.AddCubicBezier(new Vector2(67.9520035F, -189.740005F), new Vector2(68.7200012F, -189.932007F), new Vector2(69.5839996F, -189.932007F)); + builder.AddCubicBezier(new Vector2(70.8799973F, -189.932007F), new Vector2(71.9300003F, -189.511993F), new Vector2(72.7340012F, -188.671997F)); + builder.AddCubicBezier(new Vector2(73.538002F, -187.832001F), new Vector2(73.9400024F, -186.764008F), new Vector2(73.9400024F, -185.468002F)); + builder.AddLine(new Vector2(73.9400024F, -175.496002F)); + builder.AddLine(new Vector2(77.2160034F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0495() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(46.4720001F, -179.024002F)); + builder.AddCubicBezier(new Vector2(45.632F, -179.528F), new Vector2(44.9720001F, -180.218002F), new Vector2(44.4920006F, -181.093994F)); + builder.AddCubicBezier(new Vector2(44.012001F, -181.970001F), new Vector2(43.7719994F, -182.972F), new Vector2(43.7719994F, -184.100006F)); + builder.AddCubicBezier(new Vector2(43.7719994F, -185.203995F), new Vector2(44.012001F, -186.188004F), new Vector2(44.4920006F, -187.052002F)); + builder.AddCubicBezier(new Vector2(44.9720001F, -187.916F), new Vector2(45.632F, -188.593994F), new Vector2(46.4720001F, -189.085999F)); + builder.AddCubicBezier(new Vector2(47.3120003F, -189.578003F), new Vector2(48.2599983F, -189.824005F), new Vector2(49.3160019F, -189.824005F)); + builder.AddCubicBezier(new Vector2(50.4199982F, -189.824005F), new Vector2(51.3860016F, -189.578003F), new Vector2(52.2140007F, -189.085999F)); + builder.AddCubicBezier(new Vector2(53.0419998F, -188.593994F), new Vector2(53.7019997F, -187.916F), new Vector2(54.1940002F, -187.052002F)); + builder.AddCubicBezier(new Vector2(54.6860008F, -186.188004F), new Vector2(54.9319992F, -185.203995F), new Vector2(54.9319992F, -184.100006F)); + builder.AddCubicBezier(new Vector2(54.9319992F, -182.972F), new Vector2(54.6920013F, -181.970001F), new Vector2(54.2120018F, -181.093994F)); + builder.AddCubicBezier(new Vector2(53.7319984F, -180.218002F), new Vector2(53.0719986F, -179.528F), new Vector2(52.2319984F, -179.024002F)); + builder.AddCubicBezier(new Vector2(51.3919983F, -178.520004F), new Vector2(50.4199982F, -178.268005F), new Vector2(49.3160019F, -178.268005F)); + builder.AddCubicBezier(new Vector2(48.2599983F, -178.268005F), new Vector2(47.3120003F, -178.520004F), new Vector2(46.4720001F, -179.024002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(53.8699989F, -176.324005F)); + builder.AddCubicBezier(new Vector2(55.2260017F, -177.115997F), new Vector2(56.2999992F, -178.190002F), new Vector2(57.0919991F, -179.546005F)); + builder.AddCubicBezier(new Vector2(57.8839989F, -180.901993F), new Vector2(58.2799988F, -182.419998F), new Vector2(58.2799988F, -184.100006F)); + builder.AddCubicBezier(new Vector2(58.2799988F, -185.755997F), new Vector2(57.8839989F, -187.255997F), new Vector2(57.0919991F, -188.600006F)); + builder.AddCubicBezier(new Vector2(56.2999992F, -189.944F), new Vector2(55.2260017F, -191.005997F), new Vector2(53.8699989F, -191.785995F)); + builder.AddCubicBezier(new Vector2(52.5139999F, -192.565994F), new Vector2(50.9959984F, -192.955994F), new Vector2(49.3160019F, -192.955994F)); + builder.AddCubicBezier(new Vector2(47.6599998F, -192.955994F), new Vector2(46.1599998F, -192.559998F), new Vector2(44.8160019F, -191.768005F)); + builder.AddCubicBezier(new Vector2(43.4720001F, -190.975998F), new Vector2(42.4039993F, -189.914001F), new Vector2(41.6119995F, -188.582001F)); + builder.AddCubicBezier(new Vector2(40.8199997F, -187.25F), new Vector2(40.4239998F, -185.755997F), new Vector2(40.4239998F, -184.100006F)); + builder.AddCubicBezier(new Vector2(40.4239998F, -182.419998F), new Vector2(40.8199997F, -180.901993F), new Vector2(41.6119995F, -179.546005F)); + builder.AddCubicBezier(new Vector2(42.4039993F, -178.190002F), new Vector2(43.4720001F, -177.115997F), new Vector2(44.8160019F, -176.324005F)); + builder.AddCubicBezier(new Vector2(46.1599998F, -175.531998F), new Vector2(47.6599998F, -175.136002F), new Vector2(49.3160019F, -175.136002F)); + builder.AddCubicBezier(new Vector2(50.9959984F, -175.136002F), new Vector2(52.5139999F, -175.531998F), new Vector2(53.8699989F, -176.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0496() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(36.6080017F, -196.610001F)); + builder.AddCubicBezier(new Vector2(36.9920006F, -197.005997F), new Vector2(37.1839981F, -197.503998F), new Vector2(37.1839981F, -198.104004F)); + builder.AddCubicBezier(new Vector2(37.1839981F, -198.679993F), new Vector2(36.9920006F, -199.166F), new Vector2(36.6080017F, -199.561996F)); + builder.AddCubicBezier(new Vector2(36.223999F, -199.957993F), new Vector2(35.7319984F, -200.156006F), new Vector2(35.132F, -200.156006F)); + builder.AddCubicBezier(new Vector2(34.5320015F, -200.156006F), new Vector2(34.0400009F, -199.957993F), new Vector2(33.6559982F, -199.561996F)); + builder.AddCubicBezier(new Vector2(33.2719994F, -199.166F), new Vector2(33.0800018F, -198.679993F), new Vector2(33.0800018F, -198.104004F)); + builder.AddCubicBezier(new Vector2(33.0800018F, -197.503998F), new Vector2(33.2719994F, -197.005997F), new Vector2(33.6559982F, -196.610001F)); + builder.AddCubicBezier(new Vector2(34.0400009F, -196.214005F), new Vector2(34.5320015F, -196.016006F), new Vector2(35.132F, -196.016006F)); + builder.AddCubicBezier(new Vector2(35.7319984F, -196.016006F), new Vector2(36.223999F, -196.214005F), new Vector2(36.6080017F, -196.610001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(36.7519989F, -175.496002F)); + builder.AddLine(new Vector2(36.7519989F, -192.595993F)); + builder.AddLine(new Vector2(33.4760017F, -192.595993F)); + builder.AddLine(new Vector2(33.4760017F, -175.496002F)); + builder.AddLine(new Vector2(36.7519989F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0497() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(30.3080006F, -189.643997F)); + builder.AddLine(new Vector2(30.3080006F, -192.595993F)); + builder.AddLine(new Vector2(18.6439991F, -192.595993F)); + builder.AddLine(new Vector2(18.6439991F, -189.643997F)); + builder.AddLine(new Vector2(30.3080006F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(26.0960007F, -175.496002F)); + builder.AddLine(new Vector2(26.0960007F, -199.759995F)); + builder.AddLine(new Vector2(22.8560009F, -199.759995F)); + builder.AddLine(new Vector2(22.8560009F, -175.496002F)); + builder.AddLine(new Vector2(26.0960007F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0498() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(15.5839996F, -175.496002F)); + builder.AddLine(new Vector2(15.5839996F, -192.595993F)); + builder.AddLine(new Vector2(12.3079996F, -192.595993F)); + builder.AddLine(new Vector2(12.3079996F, -188.419998F)); + builder.AddLine(new Vector2(12.9200001F, -184.279999F)); + builder.AddLine(new Vector2(12.3079996F, -180.104004F)); + builder.AddLine(new Vector2(12.3079996F, -175.496002F)); + builder.AddLine(new Vector2(15.5839996F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(4.28000021F, -178.951996F)); + builder.AddCubicBezier(new Vector2(3.44000006F, -179.455994F), new Vector2(2.78600001F, -180.145996F), new Vector2(2.31800008F, -181.022003F)); + builder.AddCubicBezier(new Vector2(1.85000002F, -181.897995F), new Vector2(1.61600006F, -182.912003F), new Vector2(1.61600006F, -184.063995F)); + builder.AddCubicBezier(new Vector2(1.61600006F, -185.192001F), new Vector2(1.85000002F, -186.194F), new Vector2(2.31800008F, -187.070007F)); + builder.AddCubicBezier(new Vector2(2.78600001F, -187.945999F), new Vector2(3.43400002F, -188.636002F), new Vector2(4.26200008F, -189.139999F)); + builder.AddCubicBezier(new Vector2(5.09000015F, -189.643997F), new Vector2(6.04400015F, -189.895996F), new Vector2(7.12400007F, -189.895996F)); + builder.AddCubicBezier(new Vector2(8.20400047F, -189.895996F), new Vector2(9.14599991F, -189.649994F), new Vector2(9.94999981F, -189.158005F)); + builder.AddCubicBezier(new Vector2(10.7539997F, -188.666F), new Vector2(11.3839998F, -187.975998F), new Vector2(11.8400002F, -187.087997F)); + builder.AddCubicBezier(new Vector2(12.2959995F, -186.199997F), new Vector2(12.5240002F, -185.179993F), new Vector2(12.5240002F, -184.028F)); + builder.AddCubicBezier(new Vector2(12.5240002F, -182.324005F), new Vector2(12.0319996F, -180.925995F), new Vector2(11.0480003F, -179.834F)); + builder.AddCubicBezier(new Vector2(10.0640001F, -178.742004F), new Vector2(8.76799965F, -178.195999F), new Vector2(7.15999985F, -178.195999F)); + builder.AddCubicBezier(new Vector2(6.07999992F, -178.195999F), new Vector2(5.11999989F, -178.447998F), new Vector2(4.28000021F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(10.1120005F, -175.945999F)); + builder.AddCubicBezier(new Vector2(11.1440001F, -176.485992F), new Vector2(11.9659996F, -177.235992F), new Vector2(12.5780001F, -178.195999F)); + builder.AddCubicBezier(new Vector2(13.1899996F, -179.156006F), new Vector2(13.5319996F, -180.248001F), new Vector2(13.6040001F, -181.472F)); + builder.AddLine(new Vector2(13.6040001F, -186.619995F)); + builder.AddCubicBezier(new Vector2(13.5319996F, -187.867996F), new Vector2(13.184F, -188.966003F), new Vector2(12.5600004F, -189.914001F)); + builder.AddCubicBezier(new Vector2(11.9359999F, -190.862F), new Vector2(11.1140003F, -191.606003F), new Vector2(10.0939999F, -192.145996F)); + builder.AddCubicBezier(new Vector2(9.07400036F, -192.686005F), new Vector2(7.91599989F, -192.955994F), new Vector2(6.61999989F, -192.955994F)); + builder.AddCubicBezier(new Vector2(5.03599977F, -192.955994F), new Vector2(3.61400008F, -192.559998F), new Vector2(2.35400009F, -191.768005F)); + builder.AddCubicBezier(new Vector2(1.09399998F, -190.975998F), new Vector2(0.0979999974F, -189.908005F), new Vector2(-0.634000003F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-1.36600006F, -187.220001F), new Vector2(-1.73199999F, -185.707993F), new Vector2(-1.73199999F, -184.028F)); + builder.AddCubicBezier(new Vector2(-1.73199999F, -182.348007F), new Vector2(-1.36600006F, -180.835999F), new Vector2(-0.634000003F, -179.492004F)); + builder.AddCubicBezier(new Vector2(0.0979999974F, -178.147995F), new Vector2(1.09399998F, -177.085999F), new Vector2(2.35400009F, -176.306F)); + builder.AddCubicBezier(new Vector2(3.61400008F, -175.526001F), new Vector2(5.03599977F, -175.136002F), new Vector2(6.61999989F, -175.136002F)); + builder.AddCubicBezier(new Vector2(7.91599989F, -175.136002F), new Vector2(9.07999992F, -175.406006F), new Vector2(10.1120005F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0499() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-10.1560001F, -188.744003F)); + builder.AddCubicBezier(new Vector2(-9.38799953F, -189.511993F), new Vector2(-8.40400028F, -189.895996F), new Vector2(-7.204F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-6.62799978F, -189.895996F), new Vector2(-6.12400007F, -189.811996F), new Vector2(-5.69199991F, -189.643997F)); + builder.AddCubicBezier(new Vector2(-5.26000023F, -189.475998F), new Vector2(-4.86399984F, -189.199997F), new Vector2(-4.50400019F, -188.815994F)); + builder.AddLine(new Vector2(-2.38000011F, -191.011993F)); + builder.AddCubicBezier(new Vector2(-2.98000002F, -191.707993F), new Vector2(-3.62800002F, -192.205994F), new Vector2(-4.32399988F, -192.505997F)); + builder.AddCubicBezier(new Vector2(-5.01999998F, -192.806F), new Vector2(-5.80000019F, -192.955994F), new Vector2(-6.66400003F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-8.56000042F, -192.955994F), new Vector2(-10.0120001F, -192.307999F), new Vector2(-11.0200005F, -191.011993F)); + builder.AddCubicBezier(new Vector2(-12.0279999F, -189.716003F), new Vector2(-12.5319996F, -187.975998F), new Vector2(-12.5319996F, -185.792007F)); + builder.AddLine(new Vector2(-11.3079996F, -185.216003F)); + builder.AddCubicBezier(new Vector2(-11.3079996F, -186.800003F), new Vector2(-10.9239998F, -187.975998F), new Vector2(-10.1560001F, -188.744003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-11.3079996F, -175.496002F)); + builder.AddLine(new Vector2(-11.3079996F, -192.595993F)); + builder.AddLine(new Vector2(-14.5480003F, -192.595993F)); + builder.AddLine(new Vector2(-14.5480003F, -175.496002F)); + builder.AddLine(new Vector2(-11.3079996F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0500() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-17.7159996F, -189.643997F)); + builder.AddLine(new Vector2(-17.7159996F, -192.595993F)); + builder.AddLine(new Vector2(-29.3799992F, -192.595993F)); + builder.AddLine(new Vector2(-29.3799992F, -189.643997F)); + builder.AddLine(new Vector2(-17.7159996F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-21.9279995F, -175.496002F)); + builder.AddLine(new Vector2(-21.9279995F, -199.759995F)); + builder.AddLine(new Vector2(-25.1679993F, -199.759995F)); + builder.AddLine(new Vector2(-25.1679993F, -175.496002F)); + builder.AddLine(new Vector2(-21.9279995F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0501() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-33.1419983F, -176.539993F)); + builder.AddCubicBezier(new Vector2(-32.0019989F, -177.475998F), new Vector2(-31.4319992F, -178.748001F), new Vector2(-31.4319992F, -180.356003F)); + builder.AddCubicBezier(new Vector2(-31.4319992F, -181.412003F), new Vector2(-31.6539993F, -182.264008F), new Vector2(-32.0979996F, -182.912003F)); + builder.AddCubicBezier(new Vector2(-32.5419998F, -183.559998F), new Vector2(-33.1119995F, -184.076004F), new Vector2(-33.8079987F, -184.460007F)); + builder.AddCubicBezier(new Vector2(-34.5040016F, -184.843994F), new Vector2(-35.2360001F, -185.149994F), new Vector2(-36.0040016F, -185.378006F)); + builder.AddCubicBezier(new Vector2(-36.7719994F, -185.606003F), new Vector2(-37.5099983F, -185.828003F), new Vector2(-38.2179985F, -186.044006F)); + builder.AddCubicBezier(new Vector2(-38.9259987F, -186.259995F), new Vector2(-39.4959984F, -186.524002F), new Vector2(-39.9280014F, -186.835999F)); + builder.AddCubicBezier(new Vector2(-40.3600006F, -187.147995F), new Vector2(-40.5760002F, -187.591995F), new Vector2(-40.5760002F, -188.167999F)); + builder.AddCubicBezier(new Vector2(-40.5760002F, -188.720001F), new Vector2(-40.3300018F, -189.164001F), new Vector2(-39.8380013F, -189.5F)); + builder.AddCubicBezier(new Vector2(-39.3460007F, -189.835999F), new Vector2(-38.632F, -190.003998F), new Vector2(-37.6959991F, -190.003998F)); + builder.AddCubicBezier(new Vector2(-36.8079987F, -190.003998F), new Vector2(-36.0159988F, -189.835999F), new Vector2(-35.3199997F, -189.5F)); + builder.AddCubicBezier(new Vector2(-34.6240005F, -189.164001F), new Vector2(-34.0239983F, -188.684006F), new Vector2(-33.5200005F, -188.059998F)); + builder.AddLine(new Vector2(-31.4319992F, -190.147995F)); + builder.AddCubicBezier(new Vector2(-32.1040001F, -191.084F), new Vector2(-32.9620018F, -191.785995F), new Vector2(-34.0060005F, -192.253998F)); + builder.AddCubicBezier(new Vector2(-35.0499992F, -192.722F), new Vector2(-36.2439995F, -192.955994F), new Vector2(-37.5880013F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-38.8600006F, -192.955994F), new Vector2(-39.9519997F, -192.751999F), new Vector2(-40.8639984F, -192.343994F)); + builder.AddCubicBezier(new Vector2(-41.776001F, -191.936005F), new Vector2(-42.4780006F, -191.354004F), new Vector2(-42.9700012F, -190.598007F)); + builder.AddCubicBezier(new Vector2(-43.4620018F, -189.841995F), new Vector2(-43.7080002F, -188.947998F), new Vector2(-43.7080002F, -187.916F)); + builder.AddCubicBezier(new Vector2(-43.7080002F, -186.884003F), new Vector2(-43.4860001F, -186.050003F), new Vector2(-43.0419998F, -185.414001F)); + builder.AddCubicBezier(new Vector2(-42.5979996F, -184.778F), new Vector2(-42.0279999F, -184.279999F), new Vector2(-41.3320007F, -183.919998F)); + builder.AddCubicBezier(new Vector2(-40.6360016F, -183.559998F), new Vector2(-39.8979988F, -183.272003F), new Vector2(-39.118F, -183.056F)); + builder.AddCubicBezier(new Vector2(-38.3380013F, -182.839996F), new Vector2(-37.5999985F, -182.617996F), new Vector2(-36.9039993F, -182.389999F)); + builder.AddCubicBezier(new Vector2(-36.2080002F, -182.162003F), new Vector2(-35.6380005F, -181.873993F), new Vector2(-35.1940002F, -181.526001F)); + builder.AddCubicBezier(new Vector2(-34.75F, -181.177994F), new Vector2(-34.5279999F, -180.692001F), new Vector2(-34.5279999F, -180.067993F)); + builder.AddCubicBezier(new Vector2(-34.5279999F, -179.444F), new Vector2(-34.8040009F, -178.957993F), new Vector2(-35.355999F, -178.610001F)); + builder.AddCubicBezier(new Vector2(-35.9080009F, -178.261993F), new Vector2(-36.6879997F, -178.087997F), new Vector2(-37.6959991F, -178.087997F)); + builder.AddCubicBezier(new Vector2(-38.7039986F, -178.087997F), new Vector2(-39.6160011F, -178.274002F), new Vector2(-40.4319992F, -178.645996F)); + builder.AddCubicBezier(new Vector2(-41.2480011F, -179.018005F), new Vector2(-41.9679985F, -179.587997F), new Vector2(-42.5919991F, -180.356003F)); + builder.AddLine(new Vector2(-44.6800003F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-44.1520004F, -177.619995F), new Vector2(-43.5340004F, -177.061996F), new Vector2(-42.8260002F, -176.593994F)); + builder.AddCubicBezier(new Vector2(-42.118F, -176.126007F), new Vector2(-41.3320007F, -175.766006F), new Vector2(-40.4679985F, -175.514008F)); + builder.AddCubicBezier(new Vector2(-39.6040001F, -175.261993F), new Vector2(-38.6920013F, -175.136002F), new Vector2(-37.7319984F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-35.8120003F, -175.136002F), new Vector2(-34.2820015F, -175.604004F), new Vector2(-33.1419983F, -176.539993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0502() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-59.6559982F, -175.496002F)); + builder.AddLine(new Vector2(-59.6559982F, -192.595993F)); + builder.AddLine(new Vector2(-62.8959999F, -192.595993F)); + builder.AddLine(new Vector2(-62.8959999F, -175.496002F)); + builder.AddLine(new Vector2(-59.6559982F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-47.5600014F, -175.496002F)); + builder.AddLine(new Vector2(-47.5600014F, -186.115997F)); + builder.AddCubicBezier(new Vector2(-47.5600014F, -187.292007F), new Vector2(-47.8479996F, -188.401993F), new Vector2(-48.4239998F, -189.445999F)); + builder.AddCubicBezier(new Vector2(-49F, -190.490005F), new Vector2(-49.7859993F, -191.335999F), new Vector2(-50.7820015F, -191.983994F)); + builder.AddCubicBezier(new Vector2(-51.7779999F, -192.632004F), new Vector2(-52.9239998F, -192.955994F), new Vector2(-54.2200012F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-55.5159988F, -192.955994F), new Vector2(-56.6800003F, -192.662003F), new Vector2(-57.7120018F, -192.074005F)); + builder.AddCubicBezier(new Vector2(-58.7439995F, -191.485992F), new Vector2(-59.5480003F, -190.688004F), new Vector2(-60.1240005F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-60.7000008F, -188.671997F), new Vector2(-60.987999F, -187.520004F), new Vector2(-60.987999F, -186.223999F)); + builder.AddLine(new Vector2(-59.6559982F, -185.468002F)); + builder.AddCubicBezier(new Vector2(-59.6559982F, -186.332001F), new Vector2(-59.4640007F, -187.100006F), new Vector2(-59.0800018F, -187.772003F)); + builder.AddCubicBezier(new Vector2(-58.6959991F, -188.444F), new Vector2(-58.1679993F, -188.972F), new Vector2(-57.4959984F, -189.356003F)); + builder.AddCubicBezier(new Vector2(-56.8240013F, -189.740005F), new Vector2(-56.0559998F, -189.932007F), new Vector2(-55.1920013F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-53.8959999F, -189.932007F), new Vector2(-52.8460007F, -189.511993F), new Vector2(-52.0419998F, -188.671997F)); + builder.AddCubicBezier(new Vector2(-51.237999F, -187.832001F), new Vector2(-50.8359985F, -186.764008F), new Vector2(-50.8359985F, -185.468002F)); + builder.AddLine(new Vector2(-50.8359985F, -175.496002F)); + builder.AddLine(new Vector2(-47.5600014F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0503() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-78.3040009F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-79.1439972F, -179.528F), new Vector2(-79.8040009F, -180.218002F), new Vector2(-80.2839966F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-80.7639999F, -181.970001F), new Vector2(-81.0039978F, -182.972F), new Vector2(-81.0039978F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-81.0039978F, -185.203995F), new Vector2(-80.7639999F, -186.188004F), new Vector2(-80.2839966F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-79.8040009F, -187.916F), new Vector2(-79.1439972F, -188.593994F), new Vector2(-78.3040009F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-77.4639969F, -189.578003F), new Vector2(-76.5159988F, -189.824005F), new Vector2(-75.4599991F, -189.824005F)); + builder.AddCubicBezier(new Vector2(-74.3560028F, -189.824005F), new Vector2(-73.3899994F, -189.578003F), new Vector2(-72.5619965F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-71.7340012F, -188.593994F), new Vector2(-71.0739975F, -187.916F), new Vector2(-70.5820007F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-70.0899963F, -186.188004F), new Vector2(-69.8440018F, -185.203995F), new Vector2(-69.8440018F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-69.8440018F, -182.972F), new Vector2(-70.0839996F, -181.970001F), new Vector2(-70.564003F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-71.0439987F, -180.218002F), new Vector2(-71.7040024F, -179.528F), new Vector2(-72.5439987F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-73.3840027F, -178.520004F), new Vector2(-74.3560028F, -178.268005F), new Vector2(-75.4599991F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-76.5159988F, -178.268005F), new Vector2(-77.4639969F, -178.520004F), new Vector2(-78.3040009F, -179.024002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-70.9059982F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-69.5500031F, -177.115997F), new Vector2(-68.4759979F, -178.190002F), new Vector2(-67.6839981F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-66.8919983F, -180.901993F), new Vector2(-66.4960022F, -182.419998F), new Vector2(-66.4960022F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-66.4960022F, -185.755997F), new Vector2(-66.8919983F, -187.255997F), new Vector2(-67.6839981F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-68.4759979F, -189.944F), new Vector2(-69.5500031F, -191.005997F), new Vector2(-70.9059982F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-72.262001F, -192.565994F), new Vector2(-73.7799988F, -192.955994F), new Vector2(-75.4599991F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-77.1159973F, -192.955994F), new Vector2(-78.6159973F, -192.559998F), new Vector2(-79.9599991F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-81.3040009F, -190.975998F), new Vector2(-82.3720016F, -189.914001F), new Vector2(-83.1640015F, -188.582001F)); + builder.AddCubicBezier(new Vector2(-83.9560013F, -187.25F), new Vector2(-84.3519974F, -185.755997F), new Vector2(-84.3519974F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-84.3519974F, -182.419998F), new Vector2(-83.9560013F, -180.901993F), new Vector2(-83.1640015F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-82.3720016F, -178.190002F), new Vector2(-81.3040009F, -177.115997F), new Vector2(-79.9599991F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-78.6159973F, -175.531998F), new Vector2(-77.1159973F, -175.136002F), new Vector2(-75.4599991F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-73.7799988F, -175.136002F), new Vector2(-72.262001F, -175.531998F), new Vector2(-70.9059982F, -176.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0504() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-87.6279984F, -175.496002F)); + builder.AddLine(new Vector2(-87.6279984F, -186.475998F)); + builder.AddCubicBezier(new Vector2(-87.6279984F, -187.820007F), new Vector2(-87.9219971F, -188.972F), new Vector2(-88.5100021F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-89.0979996F, -190.891998F), new Vector2(-89.8840027F, -191.636002F), new Vector2(-90.8679962F, -192.164001F)); + builder.AddCubicBezier(new Vector2(-91.8519974F, -192.692001F), new Vector2(-92.9680023F, -192.955994F), new Vector2(-94.2160034F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-95.4160004F, -192.955994F), new Vector2(-96.5199966F, -192.686005F), new Vector2(-97.5279999F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-98.5360031F, -191.606003F), new Vector2(-99.3580017F, -190.862F), new Vector2(-99.9940033F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-100.629997F, -188.966003F), new Vector2(-100.984001F, -187.832001F), new Vector2(-101.056F, -186.511993F)); + builder.AddLine(new Vector2(-99.2200012F, -185.828003F)); + builder.AddCubicBezier(new Vector2(-99.2200012F, -186.692001F), new Vector2(-99.0279999F, -187.423996F), new Vector2(-98.6439972F, -188.024002F)); + builder.AddCubicBezier(new Vector2(-98.2600021F, -188.623993F), new Vector2(-97.75F, -189.091995F), new Vector2(-97.1139984F, -189.427994F)); + builder.AddCubicBezier(new Vector2(-96.4779968F, -189.764008F), new Vector2(-95.7639999F, -189.932007F), new Vector2(-94.9720001F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-93.8199997F, -189.932007F), new Vector2(-92.8539963F, -189.565994F), new Vector2(-92.0739975F, -188.834F)); + builder.AddCubicBezier(new Vector2(-91.2939987F, -188.102005F), new Vector2(-90.9039993F, -187.100006F), new Vector2(-90.9039993F, -185.828003F)); + builder.AddLine(new Vector2(-90.9039993F, -175.496002F)); + builder.AddLine(new Vector2(-87.6279984F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-99.2200012F, -175.496002F)); + builder.AddLine(new Vector2(-99.2200012F, -186.511993F)); + builder.AddCubicBezier(new Vector2(-99.2200012F, -187.832001F), new Vector2(-99.5019989F, -188.972F), new Vector2(-100.066002F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-100.629997F, -190.891998F), new Vector2(-101.398003F, -191.636002F), new Vector2(-102.370003F, -192.164001F)); + builder.AddCubicBezier(new Vector2(-103.342003F, -192.692001F), new Vector2(-104.428001F, -192.955994F), new Vector2(-105.627998F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-106.851997F, -192.955994F), new Vector2(-107.956001F, -192.686005F), new Vector2(-108.940002F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-109.924004F, -191.606003F), new Vector2(-110.697998F, -190.856003F), new Vector2(-111.262001F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-111.825996F, -188.936005F), new Vector2(-112.108002F, -187.807999F), new Vector2(-112.108002F, -186.511993F)); + builder.AddLine(new Vector2(-110.776001F, -185.828003F)); + builder.AddCubicBezier(new Vector2(-110.776001F, -186.692001F), new Vector2(-110.584F, -187.423996F), new Vector2(-110.199997F, -188.024002F)); + builder.AddCubicBezier(new Vector2(-109.816002F, -188.623993F), new Vector2(-109.311996F, -189.091995F), new Vector2(-108.688004F, -189.427994F)); + builder.AddCubicBezier(new Vector2(-108.064003F, -189.764008F), new Vector2(-107.356003F, -189.932007F), new Vector2(-106.564003F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-105.388F, -189.932007F), new Vector2(-104.410004F, -189.565994F), new Vector2(-103.629997F, -188.834F)); + builder.AddCubicBezier(new Vector2(-102.849998F, -188.102005F), new Vector2(-102.459999F, -187.100006F), new Vector2(-102.459999F, -185.828003F)); + builder.AddLine(new Vector2(-102.459999F, -175.496002F)); + builder.AddLine(new Vector2(-99.2200012F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-110.776001F, -175.496002F)); + builder.AddLine(new Vector2(-110.776001F, -192.595993F)); + builder.AddLine(new Vector2(-114.015999F, -192.595993F)); + builder.AddLine(new Vector2(-114.015999F, -175.496002F)); + builder.AddLine(new Vector2(-110.776001F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0505() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-121.612F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-120.435997F, -176.395996F), new Vector2(-119.428001F, -177.128006F), new Vector2(-118.587997F, -178.087997F)); + builder.AddLine(new Vector2(-120.676003F, -180.212006F)); + builder.AddCubicBezier(new Vector2(-121.251999F, -179.539993F), new Vector2(-121.942001F, -179.035995F), new Vector2(-122.746002F, -178.699997F)); + builder.AddCubicBezier(new Vector2(-123.550003F, -178.363998F), new Vector2(-124.431999F, -178.195999F), new Vector2(-125.391998F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-126.543999F, -178.195999F), new Vector2(-127.564003F, -178.442001F), new Vector2(-128.451996F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-129.339996F, -179.425995F), new Vector2(-130.024002F, -180.121994F), new Vector2(-130.503998F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-130.983994F, -181.921997F), new Vector2(-131.223999F, -182.972F), new Vector2(-131.223999F, -184.171997F)); + builder.AddCubicBezier(new Vector2(-131.223999F, -185.348007F), new Vector2(-130.996002F, -186.367996F), new Vector2(-130.539993F, -187.231995F)); + builder.AddCubicBezier(new Vector2(-130.084F, -188.095993F), new Vector2(-129.436005F, -188.768005F), new Vector2(-128.595993F, -189.248001F)); + builder.AddCubicBezier(new Vector2(-127.755997F, -189.727997F), new Vector2(-126.783997F, -189.968002F), new Vector2(-125.68F, -189.968002F)); + builder.AddCubicBezier(new Vector2(-124.624001F, -189.968002F), new Vector2(-123.723999F, -189.746002F), new Vector2(-122.980003F, -189.302002F)); + builder.AddCubicBezier(new Vector2(-122.236F, -188.858002F), new Vector2(-121.660004F, -188.233994F), new Vector2(-121.251999F, -187.429993F)); + builder.AddCubicBezier(new Vector2(-120.844002F, -186.626007F), new Vector2(-120.639999F, -185.647995F), new Vector2(-120.639999F, -184.496002F)); + builder.AddLine(new Vector2(-119.452003F, -185.539993F)); + builder.AddLine(new Vector2(-132.160004F, -185.539993F)); + builder.AddLine(new Vector2(-132.160004F, -182.839996F)); + builder.AddLine(new Vector2(-117.723999F, -182.839996F)); + builder.AddCubicBezier(new Vector2(-117.652F, -183.175995F), new Vector2(-117.603996F, -183.481995F), new Vector2(-117.580002F, -183.757996F)); + builder.AddCubicBezier(new Vector2(-117.556F, -184.033997F), new Vector2(-117.543999F, -184.292007F), new Vector2(-117.543999F, -184.531998F)); + builder.AddCubicBezier(new Vector2(-117.543999F, -186.164001F), new Vector2(-117.886002F, -187.615997F), new Vector2(-118.57F, -188.888F)); + builder.AddCubicBezier(new Vector2(-119.253998F, -190.160004F), new Vector2(-120.208F, -191.156006F), new Vector2(-121.431999F, -191.876007F)); + builder.AddCubicBezier(new Vector2(-122.655998F, -192.595993F), new Vector2(-124.047997F, -192.955994F), new Vector2(-125.608002F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-127.264F, -192.955994F), new Vector2(-128.757996F, -192.565994F), new Vector2(-130.089996F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-131.421997F, -191.005997F), new Vector2(-132.477997F, -189.944F), new Vector2(-133.257996F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-134.037994F, -187.255997F), new Vector2(-134.427994F, -185.744003F), new Vector2(-134.427994F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-134.427994F, -182.360001F), new Vector2(-134.031998F, -180.835999F), new Vector2(-133.240005F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-132.447998F, -178.147995F), new Vector2(-131.373993F, -177.085999F), new Vector2(-130.018005F, -176.306F)); + builder.AddCubicBezier(new Vector2(-128.662003F, -175.526001F), new Vector2(-127.120003F, -175.136002F), new Vector2(-125.391998F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-124.047997F, -175.136002F), new Vector2(-122.788002F, -175.388F), new Vector2(-121.612F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0506() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-138.028F, -201.199997F)); + builder.AddLine(new Vector2(-141.304001F, -201.199997F)); + builder.AddLine(new Vector2(-141.304001F, -188.419998F)); + builder.AddLine(new Vector2(-140.692001F, -184.279999F)); + builder.AddLine(new Vector2(-141.304001F, -180.104004F)); + builder.AddLine(new Vector2(-141.304001F, -175.496002F)); + builder.AddLine(new Vector2(-138.028F, -175.496002F)); + builder.AddLine(new Vector2(-138.028F, -201.199997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-149.350006F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-150.177994F, -179.425995F), new Vector2(-150.826004F, -180.115997F), new Vector2(-151.294006F, -181.003998F)); + builder.AddCubicBezier(new Vector2(-151.761993F, -181.891998F), new Vector2(-151.996002F, -182.912003F), new Vector2(-151.996002F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-151.996002F, -185.216003F), new Vector2(-151.761993F, -186.229996F), new Vector2(-151.294006F, -187.106003F)); + builder.AddCubicBezier(new Vector2(-150.826004F, -187.981995F), new Vector2(-150.184006F, -188.666F), new Vector2(-149.367996F, -189.158005F)); + builder.AddCubicBezier(new Vector2(-148.552002F, -189.649994F), new Vector2(-147.604004F, -189.895996F), new Vector2(-146.524002F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-145.444F, -189.895996F), new Vector2(-144.496002F, -189.643997F), new Vector2(-143.679993F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-142.863998F, -188.636002F), new Vector2(-142.227997F, -187.945999F), new Vector2(-141.772003F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-141.315994F, -186.194F), new Vector2(-141.087997F, -185.179993F), new Vector2(-141.087997F, -184.028F)); + builder.AddCubicBezier(new Vector2(-141.087997F, -182.899994F), new Vector2(-141.315994F, -181.897995F), new Vector2(-141.772003F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-142.227997F, -180.145996F), new Vector2(-142.863998F, -179.455994F), new Vector2(-143.679993F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-144.496002F, -178.447998F), new Vector2(-145.444F, -178.195999F), new Vector2(-146.524002F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-147.580002F, -178.195999F), new Vector2(-148.522003F, -178.442001F), new Vector2(-149.350006F, -178.934006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-143.535995F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-142.503998F, -176.485992F), new Vector2(-141.675995F, -177.235992F), new Vector2(-141.052002F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-140.427994F, -179.156006F), new Vector2(-140.080002F, -180.248001F), new Vector2(-140.007996F, -181.472F)); + builder.AddLine(new Vector2(-140.007996F, -186.619995F)); + builder.AddCubicBezier(new Vector2(-140.080002F, -187.867996F), new Vector2(-140.434006F, -188.966003F), new Vector2(-141.070007F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-141.705994F, -190.862F), new Vector2(-142.539993F, -191.606003F), new Vector2(-143.572006F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-144.604004F, -192.686005F), new Vector2(-145.768005F, -192.955994F), new Vector2(-147.063995F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-148.623993F, -192.955994F), new Vector2(-150.028F, -192.559998F), new Vector2(-151.276001F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-152.524002F, -190.975998F), new Vector2(-153.514008F, -189.908005F), new Vector2(-154.246002F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-154.977997F, -187.220001F), new Vector2(-155.343994F, -185.707993F), new Vector2(-155.343994F, -184.028F)); + builder.AddCubicBezier(new Vector2(-155.343994F, -182.348007F), new Vector2(-154.977997F, -180.835999F), new Vector2(-154.246002F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-153.514008F, -178.147995F), new Vector2(-152.524002F, -177.085999F), new Vector2(-151.276001F, -176.306F)); + builder.AddCubicBezier(new Vector2(-150.028F, -175.526001F), new Vector2(-148.623993F, -175.136002F), new Vector2(-147.063995F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-145.744003F, -175.136002F), new Vector2(-144.567993F, -175.406006F), new Vector2(-143.535995F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0507() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-169.311996F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-168.136002F, -176.395996F), new Vector2(-167.128006F, -177.128006F), new Vector2(-166.287994F, -178.087997F)); + builder.AddLine(new Vector2(-168.376007F, -180.212006F)); + builder.AddCubicBezier(new Vector2(-168.951996F, -179.539993F), new Vector2(-169.641998F, -179.035995F), new Vector2(-170.445999F, -178.699997F)); + builder.AddCubicBezier(new Vector2(-171.25F, -178.363998F), new Vector2(-172.132004F, -178.195999F), new Vector2(-173.091995F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-174.244003F, -178.195999F), new Vector2(-175.264008F, -178.442001F), new Vector2(-176.151993F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-177.039993F, -179.425995F), new Vector2(-177.723999F, -180.121994F), new Vector2(-178.203995F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-178.684006F, -181.921997F), new Vector2(-178.923996F, -182.972F), new Vector2(-178.923996F, -184.171997F)); + builder.AddCubicBezier(new Vector2(-178.923996F, -185.348007F), new Vector2(-178.695999F, -186.367996F), new Vector2(-178.240005F, -187.231995F)); + builder.AddCubicBezier(new Vector2(-177.783997F, -188.095993F), new Vector2(-177.136002F, -188.768005F), new Vector2(-176.296005F, -189.248001F)); + builder.AddCubicBezier(new Vector2(-175.455994F, -189.727997F), new Vector2(-174.483994F, -189.968002F), new Vector2(-173.380005F, -189.968002F)); + builder.AddCubicBezier(new Vector2(-172.324005F, -189.968002F), new Vector2(-171.423996F, -189.746002F), new Vector2(-170.679993F, -189.302002F)); + builder.AddCubicBezier(new Vector2(-169.936005F, -188.858002F), new Vector2(-169.360001F, -188.233994F), new Vector2(-168.951996F, -187.429993F)); + builder.AddCubicBezier(new Vector2(-168.544006F, -186.626007F), new Vector2(-168.339996F, -185.647995F), new Vector2(-168.339996F, -184.496002F)); + builder.AddLine(new Vector2(-167.151993F, -185.539993F)); + builder.AddLine(new Vector2(-179.860001F, -185.539993F)); + builder.AddLine(new Vector2(-179.860001F, -182.839996F)); + builder.AddLine(new Vector2(-165.423996F, -182.839996F)); + builder.AddCubicBezier(new Vector2(-165.352005F, -183.175995F), new Vector2(-165.304001F, -183.481995F), new Vector2(-165.279999F, -183.757996F)); + builder.AddCubicBezier(new Vector2(-165.255997F, -184.033997F), new Vector2(-165.244003F, -184.292007F), new Vector2(-165.244003F, -184.531998F)); + builder.AddCubicBezier(new Vector2(-165.244003F, -186.164001F), new Vector2(-165.585999F, -187.615997F), new Vector2(-166.270004F, -188.888F)); + builder.AddCubicBezier(new Vector2(-166.953995F, -190.160004F), new Vector2(-167.908005F, -191.156006F), new Vector2(-169.132004F, -191.876007F)); + builder.AddCubicBezier(new Vector2(-170.356003F, -192.595993F), new Vector2(-171.748001F, -192.955994F), new Vector2(-173.307999F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-174.964005F, -192.955994F), new Vector2(-176.457993F, -192.565994F), new Vector2(-177.789993F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-179.121994F, -191.005997F), new Vector2(-180.177994F, -189.944F), new Vector2(-180.957993F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-181.738007F, -187.255997F), new Vector2(-182.128006F, -185.744003F), new Vector2(-182.128006F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-182.128006F, -182.360001F), new Vector2(-181.731995F, -180.835999F), new Vector2(-180.940002F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-180.147995F, -178.147995F), new Vector2(-179.074005F, -177.085999F), new Vector2(-177.718002F, -176.306F)); + builder.AddCubicBezier(new Vector2(-176.362F, -175.526001F), new Vector2(-174.820007F, -175.136002F), new Vector2(-173.091995F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-171.748001F, -175.136002F), new Vector2(-170.488007F, -175.388F), new Vector2(-169.311996F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0508() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-197.5F, -175.496002F)); + builder.AddLine(new Vector2(-197.5F, -201.199997F)); + builder.AddLine(new Vector2(-200.740005F, -201.199997F)); + builder.AddLine(new Vector2(-200.740005F, -175.496002F)); + builder.AddLine(new Vector2(-197.5F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-185.404007F, -175.496002F)); + builder.AddLine(new Vector2(-185.404007F, -186.115997F)); + builder.AddCubicBezier(new Vector2(-185.404007F, -187.460007F), new Vector2(-185.692001F, -188.647995F), new Vector2(-186.268005F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-186.843994F, -190.712006F), new Vector2(-187.630005F, -191.516006F), new Vector2(-188.626007F, -192.091995F)); + builder.AddCubicBezier(new Vector2(-189.621994F, -192.667999F), new Vector2(-190.768005F, -192.955994F), new Vector2(-192.063995F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-193.360001F, -192.955994F), new Vector2(-194.524002F, -192.662003F), new Vector2(-195.556F, -192.074005F)); + builder.AddCubicBezier(new Vector2(-196.587997F, -191.485992F), new Vector2(-197.391998F, -190.688004F), new Vector2(-197.968002F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-198.544006F, -188.671997F), new Vector2(-198.832001F, -187.520004F), new Vector2(-198.832001F, -186.223999F)); + builder.AddLine(new Vector2(-197.5F, -185.468002F)); + builder.AddCubicBezier(new Vector2(-197.5F, -186.332001F), new Vector2(-197.307999F, -187.100006F), new Vector2(-196.923996F, -187.772003F)); + builder.AddCubicBezier(new Vector2(-196.539993F, -188.444F), new Vector2(-196.011993F, -188.972F), new Vector2(-195.339996F, -189.356003F)); + builder.AddCubicBezier(new Vector2(-194.667999F, -189.740005F), new Vector2(-193.899994F, -189.932007F), new Vector2(-193.035995F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-191.740005F, -189.932007F), new Vector2(-190.690002F, -189.511993F), new Vector2(-189.886002F, -188.671997F)); + builder.AddCubicBezier(new Vector2(-189.082001F, -187.832001F), new Vector2(-188.679993F, -186.764008F), new Vector2(-188.679993F, -185.468002F)); + builder.AddLine(new Vector2(-188.679993F, -175.496002F)); + builder.AddLine(new Vector2(-185.404007F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0509() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-203.908005F, -189.643997F)); + builder.AddLine(new Vector2(-203.908005F, -192.595993F)); + builder.AddLine(new Vector2(-215.572006F, -192.595993F)); + builder.AddLine(new Vector2(-215.572006F, -189.643997F)); + builder.AddLine(new Vector2(-203.908005F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-208.119995F, -175.496002F)); + builder.AddLine(new Vector2(-208.119995F, -199.759995F)); + builder.AddLine(new Vector2(-211.360001F, -199.759995F)); + builder.AddLine(new Vector2(-211.360001F, -175.496002F)); + builder.AddLine(new Vector2(-208.119995F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0510() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-224.679993F, -189.643997F)); + builder.AddLine(new Vector2(-224.679993F, -192.595993F)); + builder.AddLine(new Vector2(-237.567993F, -192.595993F)); + builder.AddLine(new Vector2(-237.567993F, -189.643997F)); + builder.AddLine(new Vector2(-224.679993F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-230.115997F, -175.496002F)); + builder.AddLine(new Vector2(-230.115997F, -195.151993F)); + builder.AddCubicBezier(new Vector2(-230.115997F, -196.207993F), new Vector2(-229.834F, -197.029999F), new Vector2(-229.270004F, -197.617996F)); + builder.AddCubicBezier(new Vector2(-228.705994F, -198.205994F), new Vector2(-227.908005F, -198.5F), new Vector2(-226.876007F, -198.5F)); + builder.AddCubicBezier(new Vector2(-226.324005F, -198.5F), new Vector2(-225.856003F, -198.416F), new Vector2(-225.472F, -198.248001F)); + builder.AddCubicBezier(new Vector2(-225.087997F, -198.080002F), new Vector2(-224.740005F, -197.828003F), new Vector2(-224.427994F, -197.492004F)); + builder.AddLine(new Vector2(-222.304001F, -199.580002F)); + builder.AddCubicBezier(new Vector2(-222.904007F, -200.227997F), new Vector2(-223.563995F, -200.720001F), new Vector2(-224.283997F, -201.056F)); + builder.AddCubicBezier(new Vector2(-225.003998F, -201.391998F), new Vector2(-225.856003F, -201.559998F), new Vector2(-226.839996F, -201.559998F)); + builder.AddCubicBezier(new Vector2(-228.136002F, -201.559998F), new Vector2(-229.276001F, -201.283997F), new Vector2(-230.259995F, -200.731995F)); + builder.AddCubicBezier(new Vector2(-231.244003F, -200.179993F), new Vector2(-232.011993F, -199.423996F), new Vector2(-232.563995F, -198.464005F)); + builder.AddCubicBezier(new Vector2(-233.115997F, -197.503998F), new Vector2(-233.391998F, -196.399994F), new Vector2(-233.391998F, -195.151993F)); + builder.AddLine(new Vector2(-233.391998F, -175.496002F)); + builder.AddLine(new Vector2(-230.115997F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0511() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-250.671997F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-251.511993F, -179.528F), new Vector2(-252.171997F, -180.218002F), new Vector2(-252.651993F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-253.132004F, -181.970001F), new Vector2(-253.371994F, -182.972F), new Vector2(-253.371994F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-253.371994F, -185.203995F), new Vector2(-253.132004F, -186.188004F), new Vector2(-252.651993F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-252.171997F, -187.916F), new Vector2(-251.511993F, -188.593994F), new Vector2(-250.671997F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-249.832001F, -189.578003F), new Vector2(-248.884003F, -189.824005F), new Vector2(-247.828003F, -189.824005F)); + builder.AddCubicBezier(new Vector2(-246.723999F, -189.824005F), new Vector2(-245.757996F, -189.578003F), new Vector2(-244.929993F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-244.102005F, -188.593994F), new Vector2(-243.442001F, -187.916F), new Vector2(-242.949997F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-242.457993F, -186.188004F), new Vector2(-242.212006F, -185.203995F), new Vector2(-242.212006F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-242.212006F, -182.972F), new Vector2(-242.451996F, -181.970001F), new Vector2(-242.932007F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-243.412003F, -180.218002F), new Vector2(-244.072006F, -179.528F), new Vector2(-244.912003F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-245.751999F, -178.520004F), new Vector2(-246.723999F, -178.268005F), new Vector2(-247.828003F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-248.884003F, -178.268005F), new Vector2(-249.832001F, -178.520004F), new Vector2(-250.671997F, -179.024002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-243.274002F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-241.917999F, -177.115997F), new Vector2(-240.843994F, -178.190002F), new Vector2(-240.052002F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-239.259995F, -180.901993F), new Vector2(-238.863998F, -182.419998F), new Vector2(-238.863998F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-238.863998F, -185.755997F), new Vector2(-239.259995F, -187.255997F), new Vector2(-240.052002F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-240.843994F, -189.944F), new Vector2(-241.917999F, -191.005997F), new Vector2(-243.274002F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-244.630005F, -192.565994F), new Vector2(-246.147995F, -192.955994F), new Vector2(-247.828003F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-249.483994F, -192.955994F), new Vector2(-250.983994F, -192.559998F), new Vector2(-252.328003F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-253.671997F, -190.975998F), new Vector2(-254.740005F, -189.914001F), new Vector2(-255.531998F, -188.582001F)); + builder.AddCubicBezier(new Vector2(-256.324005F, -187.25F), new Vector2(-256.720001F, -185.755997F), new Vector2(-256.720001F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-256.720001F, -182.419998F), new Vector2(-256.324005F, -180.901993F), new Vector2(-255.531998F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-254.740005F, -178.190002F), new Vector2(-253.671997F, -177.115997F), new Vector2(-252.328003F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-250.983994F, -175.531998F), new Vector2(-249.483994F, -175.136002F), new Vector2(-247.828003F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-246.147995F, -175.136002F), new Vector2(-244.630005F, -175.531998F), new Vector2(-243.274002F, -176.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0512() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-266.223999F, -189.643997F)); + builder.AddLine(new Vector2(-266.223999F, -192.595993F)); + builder.AddLine(new Vector2(-277.888F, -192.595993F)); + builder.AddLine(new Vector2(-277.888F, -189.643997F)); + builder.AddLine(new Vector2(-266.223999F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-270.436005F, -175.496002F)); + builder.AddLine(new Vector2(-270.436005F, -199.759995F)); + builder.AddLine(new Vector2(-273.675995F, -199.759995F)); + builder.AddLine(new Vector2(-273.675995F, -175.496002F)); + builder.AddLine(new Vector2(-270.436005F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0513() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-286.312012F, -188.744003F)); + builder.AddCubicBezier(new Vector2(-285.544006F, -189.511993F), new Vector2(-284.559998F, -189.895996F), new Vector2(-283.359985F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-282.783997F, -189.895996F), new Vector2(-282.279999F, -189.811996F), new Vector2(-281.847992F, -189.643997F)); + builder.AddCubicBezier(new Vector2(-281.415985F, -189.475998F), new Vector2(-281.019989F, -189.199997F), new Vector2(-280.660004F, -188.815994F)); + builder.AddLine(new Vector2(-278.536011F, -191.011993F)); + builder.AddCubicBezier(new Vector2(-279.135986F, -191.707993F), new Vector2(-279.783997F, -192.205994F), new Vector2(-280.480011F, -192.505997F)); + builder.AddCubicBezier(new Vector2(-281.175995F, -192.806F), new Vector2(-281.955994F, -192.955994F), new Vector2(-282.820007F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-284.716003F, -192.955994F), new Vector2(-286.167999F, -192.307999F), new Vector2(-287.175995F, -191.011993F)); + builder.AddCubicBezier(new Vector2(-288.18399F, -189.716003F), new Vector2(-288.687988F, -187.975998F), new Vector2(-288.687988F, -185.792007F)); + builder.AddLine(new Vector2(-287.463989F, -185.216003F)); + builder.AddCubicBezier(new Vector2(-287.463989F, -186.800003F), new Vector2(-287.079987F, -187.975998F), new Vector2(-286.312012F, -188.744003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-287.463989F, -175.496002F)); + builder.AddLine(new Vector2(-287.463989F, -192.595993F)); + builder.AddLine(new Vector2(-290.70401F, -192.595993F)); + builder.AddLine(new Vector2(-290.70401F, -175.496002F)); + builder.AddLine(new Vector2(-287.463989F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0514() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-295.420013F, -175.496002F)); + builder.AddLine(new Vector2(-295.420013F, -192.595993F)); + builder.AddLine(new Vector2(-298.696014F, -192.595993F)); + builder.AddLine(new Vector2(-298.696014F, -188.419998F)); + builder.AddLine(new Vector2(-298.084015F, -184.279999F)); + builder.AddLine(new Vector2(-298.696014F, -180.104004F)); + builder.AddLine(new Vector2(-298.696014F, -175.496002F)); + builder.AddLine(new Vector2(-295.420013F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-306.723999F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-307.563995F, -179.455994F), new Vector2(-308.217987F, -180.145996F), new Vector2(-308.686005F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-309.153992F, -181.897995F), new Vector2(-309.388F, -182.912003F), new Vector2(-309.388F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-309.388F, -185.192001F), new Vector2(-309.153992F, -186.194F), new Vector2(-308.686005F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-308.217987F, -187.945999F), new Vector2(-307.570007F, -188.636002F), new Vector2(-306.742004F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-305.914001F, -189.643997F), new Vector2(-304.959991F, -189.895996F), new Vector2(-303.880005F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-302.799988F, -189.895996F), new Vector2(-301.858002F, -189.649994F), new Vector2(-301.053986F, -189.158005F)); + builder.AddCubicBezier(new Vector2(-300.25F, -188.666F), new Vector2(-299.619995F, -187.975998F), new Vector2(-299.164001F, -187.087997F)); + builder.AddCubicBezier(new Vector2(-298.708008F, -186.199997F), new Vector2(-298.480011F, -185.179993F), new Vector2(-298.480011F, -184.028F)); + builder.AddCubicBezier(new Vector2(-298.480011F, -182.324005F), new Vector2(-298.971985F, -180.925995F), new Vector2(-299.955994F, -179.834F)); + builder.AddCubicBezier(new Vector2(-300.940002F, -178.742004F), new Vector2(-302.235992F, -178.195999F), new Vector2(-303.843994F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-304.924011F, -178.195999F), new Vector2(-305.884003F, -178.447998F), new Vector2(-306.723999F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-300.891998F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-299.859985F, -176.485992F), new Vector2(-299.037994F, -177.235992F), new Vector2(-298.425995F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-297.813995F, -179.156006F), new Vector2(-297.471985F, -180.248001F), new Vector2(-297.399994F, -181.472F)); + builder.AddLine(new Vector2(-297.399994F, -186.619995F)); + builder.AddCubicBezier(new Vector2(-297.471985F, -187.867996F), new Vector2(-297.820007F, -188.966003F), new Vector2(-298.444F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-299.067993F, -190.862F), new Vector2(-299.890015F, -191.606003F), new Vector2(-300.910004F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-301.929993F, -192.686005F), new Vector2(-303.088013F, -192.955994F), new Vector2(-304.384003F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-305.967987F, -192.955994F), new Vector2(-307.390015F, -192.559998F), new Vector2(-308.649994F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-309.910004F, -190.975998F), new Vector2(-310.906006F, -189.908005F), new Vector2(-311.638F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-312.369995F, -187.220001F), new Vector2(-312.735992F, -185.707993F), new Vector2(-312.735992F, -184.028F)); + builder.AddCubicBezier(new Vector2(-312.735992F, -182.348007F), new Vector2(-312.369995F, -180.835999F), new Vector2(-311.638F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-310.906006F, -178.147995F), new Vector2(-309.910004F, -177.085999F), new Vector2(-308.649994F, -176.306F)); + builder.AddCubicBezier(new Vector2(-307.390015F, -175.526001F), new Vector2(-305.967987F, -175.136002F), new Vector2(-304.384003F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-303.088013F, -175.136002F), new Vector2(-301.924011F, -175.406006F), new Vector2(-300.891998F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0515() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-326.973999F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-327.802002F, -179.455994F), new Vector2(-328.437988F, -180.145996F), new Vector2(-328.881989F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-329.325989F, -181.897995F), new Vector2(-329.548004F, -182.899994F), new Vector2(-329.548004F, -184.028F)); + builder.AddCubicBezier(new Vector2(-329.548004F, -185.179993F), new Vector2(-329.320007F, -186.194F), new Vector2(-328.864014F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-328.40799F, -187.945999F), new Vector2(-327.772003F, -188.636002F), new Vector2(-326.955994F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-326.140015F, -189.643997F), new Vector2(-325.20401F, -189.895996F), new Vector2(-324.14801F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-323.067993F, -189.895996F), new Vector2(-322.119995F, -189.643997F), new Vector2(-321.303986F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-320.488007F, -188.636002F), new Vector2(-319.846008F, -187.945999F), new Vector2(-319.377991F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-318.910004F, -186.194F), new Vector2(-318.675995F, -185.192001F), new Vector2(-318.675995F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-318.675995F, -182.912003F), new Vector2(-318.910004F, -181.897995F), new Vector2(-319.377991F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-319.846008F, -180.145996F), new Vector2(-320.488007F, -179.455994F), new Vector2(-321.303986F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-322.119995F, -178.447998F), new Vector2(-323.067993F, -178.195999F), new Vector2(-324.14801F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-325.20401F, -178.195999F), new Vector2(-326.145996F, -178.447998F), new Vector2(-326.973999F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-329.368011F, -168.332001F)); + builder.AddLine(new Vector2(-329.368011F, -179.779999F)); + builder.AddLine(new Vector2(-329.980011F, -183.955994F)); + builder.AddLine(new Vector2(-329.368011F, -188.095993F)); + builder.AddLine(new Vector2(-329.368011F, -192.595993F)); + builder.AddLine(new Vector2(-332.608002F, -192.595993F)); + builder.AddLine(new Vector2(-332.608002F, -168.332001F)); + builder.AddLine(new Vector2(-329.368011F, -168.332001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-319.377991F, -176.306F)); + builder.AddCubicBezier(new Vector2(-318.118011F, -177.085999F), new Vector2(-317.127991F, -178.147995F), new Vector2(-316.40799F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-315.687988F, -180.835999F), new Vector2(-315.328003F, -182.348007F), new Vector2(-315.328003F, -184.028F)); + builder.AddCubicBezier(new Vector2(-315.328003F, -185.707993F), new Vector2(-315.687988F, -187.220001F), new Vector2(-316.40799F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-317.127991F, -189.908005F), new Vector2(-318.118011F, -190.975998F), new Vector2(-319.377991F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-320.638F, -192.559998F), new Vector2(-322.048004F, -192.955994F), new Vector2(-323.608002F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-324.880005F, -192.955994F), new Vector2(-326.037994F, -192.686005F), new Vector2(-327.082001F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-328.126007F, -191.606003F), new Vector2(-328.966003F, -190.862F), new Vector2(-329.60199F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-330.238007F, -188.966003F), new Vector2(-330.59201F, -187.867996F), new Vector2(-330.664001F, -186.619995F)); + builder.AddLine(new Vector2(-330.664001F, -181.472F)); + builder.AddCubicBezier(new Vector2(-330.59201F, -180.248001F), new Vector2(-330.243988F, -179.156006F), new Vector2(-329.619995F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-328.996002F, -177.235992F), new Vector2(-328.161987F, -176.485992F), new Vector2(-327.118011F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-326.074005F, -175.406006F), new Vector2(-324.903992F, -175.136002F), new Vector2(-323.608002F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-322.048004F, -175.136002F), new Vector2(-320.638F, -175.526001F), new Vector2(-319.377991F, -176.306F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0516() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-344.776001F, -175.496002F)); + builder.AddLine(new Vector2(-344.776001F, -192.595993F)); + builder.AddLine(new Vector2(-348.052002F, -192.595993F)); + builder.AddLine(new Vector2(-348.052002F, -188.419998F)); + builder.AddLine(new Vector2(-347.440002F, -184.279999F)); + builder.AddLine(new Vector2(-348.052002F, -180.104004F)); + builder.AddLine(new Vector2(-348.052002F, -175.496002F)); + builder.AddLine(new Vector2(-344.776001F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-356.079987F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-356.920013F, -179.455994F), new Vector2(-357.574005F, -180.145996F), new Vector2(-358.041992F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-358.51001F, -181.897995F), new Vector2(-358.743988F, -182.912003F), new Vector2(-358.743988F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-358.743988F, -185.192001F), new Vector2(-358.51001F, -186.194F), new Vector2(-358.041992F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-357.574005F, -187.945999F), new Vector2(-356.925995F, -188.636002F), new Vector2(-356.097992F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-355.269989F, -189.643997F), new Vector2(-354.31601F, -189.895996F), new Vector2(-353.235992F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-352.156006F, -189.895996F), new Vector2(-351.213989F, -189.649994F), new Vector2(-350.410004F, -189.158005F)); + builder.AddCubicBezier(new Vector2(-349.605988F, -188.666F), new Vector2(-348.976013F, -187.975998F), new Vector2(-348.519989F, -187.087997F)); + builder.AddCubicBezier(new Vector2(-348.063995F, -186.199997F), new Vector2(-347.835999F, -185.179993F), new Vector2(-347.835999F, -184.028F)); + builder.AddCubicBezier(new Vector2(-347.835999F, -182.324005F), new Vector2(-348.328003F, -180.925995F), new Vector2(-349.312012F, -179.834F)); + builder.AddCubicBezier(new Vector2(-350.29599F, -178.742004F), new Vector2(-351.59201F, -178.195999F), new Vector2(-353.200012F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-354.279999F, -178.195999F), new Vector2(-355.23999F, -178.447998F), new Vector2(-356.079987F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-350.247986F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-349.216003F, -176.485992F), new Vector2(-348.394012F, -177.235992F), new Vector2(-347.782013F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-347.170013F, -179.156006F), new Vector2(-346.828003F, -180.248001F), new Vector2(-346.756012F, -181.472F)); + builder.AddLine(new Vector2(-346.756012F, -186.619995F)); + builder.AddCubicBezier(new Vector2(-346.828003F, -187.867996F), new Vector2(-347.175995F, -188.966003F), new Vector2(-347.799988F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-348.424011F, -190.862F), new Vector2(-349.246002F, -191.606003F), new Vector2(-350.265991F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-351.286011F, -192.686005F), new Vector2(-352.444F, -192.955994F), new Vector2(-353.73999F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-355.324005F, -192.955994F), new Vector2(-356.746002F, -192.559998F), new Vector2(-358.006012F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-359.265991F, -190.975998F), new Vector2(-360.261993F, -189.908005F), new Vector2(-360.993988F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-361.726013F, -187.220001F), new Vector2(-362.09201F, -185.707993F), new Vector2(-362.09201F, -184.028F)); + builder.AddCubicBezier(new Vector2(-362.09201F, -182.348007F), new Vector2(-361.726013F, -180.835999F), new Vector2(-360.993988F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-360.261993F, -178.147995F), new Vector2(-359.265991F, -177.085999F), new Vector2(-358.006012F, -176.306F)); + builder.AddCubicBezier(new Vector2(-356.746002F, -175.526001F), new Vector2(-355.324005F, -175.136002F), new Vector2(-353.73999F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-352.444F, -175.136002F), new Vector2(-351.279999F, -175.406006F), new Vector2(-350.247986F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0517() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-371.631989F, -189.643997F)); + builder.AddLine(new Vector2(-371.631989F, -192.595993F)); + builder.AddLine(new Vector2(-383.29599F, -192.595993F)); + builder.AddLine(new Vector2(-383.29599F, -189.643997F)); + builder.AddLine(new Vector2(-371.631989F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-375.843994F, -175.496002F)); + builder.AddLine(new Vector2(-375.843994F, -199.759995F)); + builder.AddLine(new Vector2(-379.084015F, -199.759995F)); + builder.AddLine(new Vector2(-379.084015F, -175.496002F)); + builder.AddLine(new Vector2(-375.843994F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0518() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-396.579987F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-397.420013F, -179.528F), new Vector2(-398.079987F, -180.218002F), new Vector2(-398.559998F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-399.040009F, -181.970001F), new Vector2(-399.279999F, -182.972F), new Vector2(-399.279999F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-399.279999F, -185.203995F), new Vector2(-399.040009F, -186.188004F), new Vector2(-398.559998F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-398.079987F, -187.916F), new Vector2(-397.420013F, -188.593994F), new Vector2(-396.579987F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-395.73999F, -189.578003F), new Vector2(-394.791992F, -189.824005F), new Vector2(-393.735992F, -189.824005F)); + builder.AddCubicBezier(new Vector2(-392.631989F, -189.824005F), new Vector2(-391.665985F, -189.578003F), new Vector2(-390.838013F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-390.01001F, -188.593994F), new Vector2(-389.350006F, -187.916F), new Vector2(-388.858002F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-388.365997F, -186.188004F), new Vector2(-388.119995F, -185.203995F), new Vector2(-388.119995F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-388.119995F, -182.972F), new Vector2(-388.359985F, -181.970001F), new Vector2(-388.839996F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-389.320007F, -180.218002F), new Vector2(-389.980011F, -179.528F), new Vector2(-390.820007F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-391.660004F, -178.520004F), new Vector2(-392.631989F, -178.268005F), new Vector2(-393.735992F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-394.791992F, -178.268005F), new Vector2(-395.73999F, -178.520004F), new Vector2(-396.579987F, -179.024002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-389.182007F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-387.825989F, -177.115997F), new Vector2(-386.752014F, -178.190002F), new Vector2(-385.959991F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-385.167999F, -180.901993F), new Vector2(-384.772003F, -182.419998F), new Vector2(-384.772003F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-384.772003F, -185.755997F), new Vector2(-385.167999F, -187.255997F), new Vector2(-385.959991F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-386.752014F, -189.944F), new Vector2(-387.825989F, -191.005997F), new Vector2(-389.182007F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-390.537994F, -192.565994F), new Vector2(-392.056F, -192.955994F), new Vector2(-393.735992F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-395.391998F, -192.955994F), new Vector2(-396.891998F, -192.559998F), new Vector2(-398.235992F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-399.579987F, -190.975998F), new Vector2(-400.64801F, -189.914001F), new Vector2(-401.440002F, -188.582001F)); + builder.AddCubicBezier(new Vector2(-402.231995F, -187.25F), new Vector2(-402.627991F, -185.755997F), new Vector2(-402.627991F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-402.627991F, -182.419998F), new Vector2(-402.231995F, -180.901993F), new Vector2(-401.440002F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-400.64801F, -178.190002F), new Vector2(-399.579987F, -177.115997F), new Vector2(-398.235992F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-396.891998F, -175.531998F), new Vector2(-395.391998F, -175.136002F), new Vector2(-393.735992F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-392.056F, -175.136002F), new Vector2(-390.537994F, -175.531998F), new Vector2(-389.182007F, -176.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0519() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-418F, -175.496002F)); + builder.AddLine(new Vector2(-418F, -192.595993F)); + builder.AddLine(new Vector2(-421.23999F, -192.595993F)); + builder.AddLine(new Vector2(-421.23999F, -175.496002F)); + builder.AddLine(new Vector2(-418F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-405.903992F, -175.496002F)); + builder.AddLine(new Vector2(-405.903992F, -186.115997F)); + builder.AddCubicBezier(new Vector2(-405.903992F, -187.292007F), new Vector2(-406.191986F, -188.401993F), new Vector2(-406.768005F, -189.445999F)); + builder.AddCubicBezier(new Vector2(-407.343994F, -190.490005F), new Vector2(-408.130005F, -191.335999F), new Vector2(-409.126007F, -191.983994F)); + builder.AddCubicBezier(new Vector2(-410.122009F, -192.632004F), new Vector2(-411.268005F, -192.955994F), new Vector2(-412.563995F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-413.859985F, -192.955994F), new Vector2(-415.023987F, -192.662003F), new Vector2(-416.056F, -192.074005F)); + builder.AddCubicBezier(new Vector2(-417.088013F, -191.485992F), new Vector2(-417.891998F, -190.688004F), new Vector2(-418.467987F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-419.044006F, -188.671997F), new Vector2(-419.332001F, -187.520004F), new Vector2(-419.332001F, -186.223999F)); + builder.AddLine(new Vector2(-418F, -185.468002F)); + builder.AddCubicBezier(new Vector2(-418F, -186.332001F), new Vector2(-417.808014F, -187.100006F), new Vector2(-417.424011F, -187.772003F)); + builder.AddCubicBezier(new Vector2(-417.040009F, -188.444F), new Vector2(-416.511993F, -188.972F), new Vector2(-415.839996F, -189.356003F)); + builder.AddCubicBezier(new Vector2(-415.167999F, -189.740005F), new Vector2(-414.399994F, -189.932007F), new Vector2(-413.536011F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-412.23999F, -189.932007F), new Vector2(-411.190002F, -189.511993F), new Vector2(-410.385986F, -188.671997F)); + builder.AddCubicBezier(new Vector2(-409.582001F, -187.832001F), new Vector2(-409.179993F, -186.764008F), new Vector2(-409.179993F, -185.468002F)); + builder.AddLine(new Vector2(-409.179993F, -175.496002F)); + builder.AddLine(new Vector2(-405.903992F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0520() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-434.037994F, -176.539993F)); + builder.AddCubicBezier(new Vector2(-432.89801F, -177.475998F), new Vector2(-432.328003F, -178.748001F), new Vector2(-432.328003F, -180.356003F)); + builder.AddCubicBezier(new Vector2(-432.328003F, -181.412003F), new Vector2(-432.549988F, -182.264008F), new Vector2(-432.993988F, -182.912003F)); + builder.AddCubicBezier(new Vector2(-433.437988F, -183.559998F), new Vector2(-434.007996F, -184.076004F), new Vector2(-434.70401F, -184.460007F)); + builder.AddCubicBezier(new Vector2(-435.399994F, -184.843994F), new Vector2(-436.131989F, -185.149994F), new Vector2(-436.899994F, -185.378006F)); + builder.AddCubicBezier(new Vector2(-437.667999F, -185.606003F), new Vector2(-438.406006F, -185.828003F), new Vector2(-439.114014F, -186.044006F)); + builder.AddCubicBezier(new Vector2(-439.821991F, -186.259995F), new Vector2(-440.391998F, -186.524002F), new Vector2(-440.824005F, -186.835999F)); + builder.AddCubicBezier(new Vector2(-441.256012F, -187.147995F), new Vector2(-441.471985F, -187.591995F), new Vector2(-441.471985F, -188.167999F)); + builder.AddCubicBezier(new Vector2(-441.471985F, -188.720001F), new Vector2(-441.226013F, -189.164001F), new Vector2(-440.734009F, -189.5F)); + builder.AddCubicBezier(new Vector2(-440.242004F, -189.835999F), new Vector2(-439.528015F, -190.003998F), new Vector2(-438.59201F, -190.003998F)); + builder.AddCubicBezier(new Vector2(-437.70401F, -190.003998F), new Vector2(-436.911987F, -189.835999F), new Vector2(-436.216003F, -189.5F)); + builder.AddCubicBezier(new Vector2(-435.519989F, -189.164001F), new Vector2(-434.920013F, -188.684006F), new Vector2(-434.415985F, -188.059998F)); + builder.AddLine(new Vector2(-432.328003F, -190.147995F)); + builder.AddCubicBezier(new Vector2(-433F, -191.084F), new Vector2(-433.858002F, -191.785995F), new Vector2(-434.902008F, -192.253998F)); + builder.AddCubicBezier(new Vector2(-435.946014F, -192.722F), new Vector2(-437.140015F, -192.955994F), new Vector2(-438.484009F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-439.756012F, -192.955994F), new Vector2(-440.847992F, -192.751999F), new Vector2(-441.76001F, -192.343994F)); + builder.AddCubicBezier(new Vector2(-442.671997F, -191.936005F), new Vector2(-443.373993F, -191.354004F), new Vector2(-443.865997F, -190.598007F)); + builder.AddCubicBezier(new Vector2(-444.358002F, -189.841995F), new Vector2(-444.604004F, -188.947998F), new Vector2(-444.604004F, -187.916F)); + builder.AddCubicBezier(new Vector2(-444.604004F, -186.884003F), new Vector2(-444.381989F, -186.050003F), new Vector2(-443.937988F, -185.414001F)); + builder.AddCubicBezier(new Vector2(-443.493988F, -184.778F), new Vector2(-442.924011F, -184.279999F), new Vector2(-442.227997F, -183.919998F)); + builder.AddCubicBezier(new Vector2(-441.532013F, -183.559998F), new Vector2(-440.794006F, -183.272003F), new Vector2(-440.014008F, -183.056F)); + builder.AddCubicBezier(new Vector2(-439.234009F, -182.839996F), new Vector2(-438.496002F, -182.617996F), new Vector2(-437.799988F, -182.389999F)); + builder.AddCubicBezier(new Vector2(-437.104004F, -182.162003F), new Vector2(-436.533997F, -181.873993F), new Vector2(-436.089996F, -181.526001F)); + builder.AddCubicBezier(new Vector2(-435.645996F, -181.177994F), new Vector2(-435.424011F, -180.692001F), new Vector2(-435.424011F, -180.067993F)); + builder.AddCubicBezier(new Vector2(-435.424011F, -179.444F), new Vector2(-435.700012F, -178.957993F), new Vector2(-436.252014F, -178.610001F)); + builder.AddCubicBezier(new Vector2(-436.803986F, -178.261993F), new Vector2(-437.584015F, -178.087997F), new Vector2(-438.59201F, -178.087997F)); + builder.AddCubicBezier(new Vector2(-439.600006F, -178.087997F), new Vector2(-440.511993F, -178.274002F), new Vector2(-441.328003F, -178.645996F)); + builder.AddCubicBezier(new Vector2(-442.144012F, -179.018005F), new Vector2(-442.864014F, -179.587997F), new Vector2(-443.488007F, -180.356003F)); + builder.AddLine(new Vector2(-445.575989F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-445.048004F, -177.619995F), new Vector2(-444.429993F, -177.061996F), new Vector2(-443.721985F, -176.593994F)); + builder.AddCubicBezier(new Vector2(-443.014008F, -176.126007F), new Vector2(-442.227997F, -175.766006F), new Vector2(-441.364014F, -175.514008F)); + builder.AddCubicBezier(new Vector2(-440.5F, -175.261993F), new Vector2(-439.588013F, -175.136002F), new Vector2(-438.627991F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-436.708008F, -175.136002F), new Vector2(-435.178009F, -175.604004F), new Vector2(-434.037994F, -176.539993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0521() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-448.779999F, -175.496002F)); + builder.AddLine(new Vector2(-448.779999F, -192.595993F)); + builder.AddLine(new Vector2(-452.056F, -192.595993F)); + builder.AddLine(new Vector2(-452.056F, -188.419998F)); + builder.AddLine(new Vector2(-451.444F, -184.279999F)); + builder.AddLine(new Vector2(-452.056F, -180.104004F)); + builder.AddLine(new Vector2(-452.056F, -175.496002F)); + builder.AddLine(new Vector2(-448.779999F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-460.084015F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-460.924011F, -179.455994F), new Vector2(-461.578003F, -180.145996F), new Vector2(-462.04599F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-462.514008F, -181.897995F), new Vector2(-462.747986F, -182.912003F), new Vector2(-462.747986F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-462.747986F, -185.192001F), new Vector2(-462.514008F, -186.194F), new Vector2(-462.04599F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-461.578003F, -187.945999F), new Vector2(-460.929993F, -188.636002F), new Vector2(-460.10199F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-459.273987F, -189.643997F), new Vector2(-458.320007F, -189.895996F), new Vector2(-457.23999F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-456.160004F, -189.895996F), new Vector2(-455.217987F, -189.649994F), new Vector2(-454.414001F, -189.158005F)); + builder.AddCubicBezier(new Vector2(-453.609985F, -188.666F), new Vector2(-452.980011F, -187.975998F), new Vector2(-452.523987F, -187.087997F)); + builder.AddCubicBezier(new Vector2(-452.067993F, -186.199997F), new Vector2(-451.839996F, -185.179993F), new Vector2(-451.839996F, -184.028F)); + builder.AddCubicBezier(new Vector2(-451.839996F, -182.324005F), new Vector2(-452.332001F, -180.925995F), new Vector2(-453.31601F, -179.834F)); + builder.AddCubicBezier(new Vector2(-454.299988F, -178.742004F), new Vector2(-455.596008F, -178.195999F), new Vector2(-457.20401F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-458.283997F, -178.195999F), new Vector2(-459.243988F, -178.447998F), new Vector2(-460.084015F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-454.252014F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-453.220001F, -176.485992F), new Vector2(-452.39801F, -177.235992F), new Vector2(-451.786011F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-451.174011F, -179.156006F), new Vector2(-450.832001F, -180.248001F), new Vector2(-450.76001F, -181.472F)); + builder.AddLine(new Vector2(-450.76001F, -186.619995F)); + builder.AddCubicBezier(new Vector2(-450.832001F, -187.867996F), new Vector2(-451.179993F, -188.966003F), new Vector2(-451.803986F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-452.428009F, -190.862F), new Vector2(-453.25F, -191.606003F), new Vector2(-454.269989F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-455.290009F, -192.686005F), new Vector2(-456.447998F, -192.955994F), new Vector2(-457.743988F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-459.328003F, -192.955994F), new Vector2(-460.75F, -192.559998F), new Vector2(-462.01001F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-463.269989F, -190.975998F), new Vector2(-464.265991F, -189.908005F), new Vector2(-464.997986F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-465.730011F, -187.220001F), new Vector2(-466.096008F, -185.707993F), new Vector2(-466.096008F, -184.028F)); + builder.AddCubicBezier(new Vector2(-466.096008F, -182.348007F), new Vector2(-465.730011F, -180.835999F), new Vector2(-464.997986F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-464.265991F, -178.147995F), new Vector2(-463.269989F, -177.085999F), new Vector2(-462.01001F, -176.306F)); + builder.AddCubicBezier(new Vector2(-460.75F, -175.526001F), new Vector2(-459.328003F, -175.136002F), new Vector2(-457.743988F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-456.447998F, -175.136002F), new Vector2(-455.283997F, -175.406006F), new Vector2(-454.252014F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0522() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-484.743988F, -175.496002F)); + builder.AddLine(new Vector2(-479.776001F, -188.384003F)); + builder.AddLine(new Vector2(-480.963989F, -188.384003F)); + builder.AddLine(new Vector2(-476.032013F, -175.496002F)); + builder.AddLine(new Vector2(-474.123993F, -175.496002F)); + builder.AddLine(new Vector2(-467.391998F, -192.595993F)); + builder.AddLine(new Vector2(-470.776001F, -192.595993F)); + builder.AddLine(new Vector2(-475.671997F, -179.276001F)); + builder.AddLine(new Vector2(-474.59201F, -179.276001F)); + builder.AddLine(new Vector2(-479.451996F, -192.595993F)); + builder.AddLine(new Vector2(-481.324005F, -192.595993F)); + builder.AddLine(new Vector2(-486.18399F, -179.276001F)); + builder.AddLine(new Vector2(-485.104004F, -179.276001F)); + builder.AddLine(new Vector2(-490F, -192.595993F)); + builder.AddLine(new Vector2(-493.384003F, -192.595993F)); + builder.AddLine(new Vector2(-486.652008F, -175.496002F)); + builder.AddLine(new Vector2(-484.743988F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0523() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-506.559998F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-505.384003F, -176.395996F), new Vector2(-504.376007F, -177.128006F), new Vector2(-503.536011F, -178.087997F)); + builder.AddLine(new Vector2(-505.623993F, -180.212006F)); + builder.AddCubicBezier(new Vector2(-506.200012F, -179.539993F), new Vector2(-506.890015F, -179.035995F), new Vector2(-507.694F, -178.699997F)); + builder.AddCubicBezier(new Vector2(-508.497986F, -178.363998F), new Vector2(-509.380005F, -178.195999F), new Vector2(-510.339996F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-511.492004F, -178.195999F), new Vector2(-512.512024F, -178.442001F), new Vector2(-513.400024F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-514.288025F, -179.425995F), new Vector2(-514.971985F, -180.121994F), new Vector2(-515.452026F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-515.932007F, -181.921997F), new Vector2(-516.171997F, -182.972F), new Vector2(-516.171997F, -184.171997F)); + builder.AddCubicBezier(new Vector2(-516.171997F, -185.348007F), new Vector2(-515.94397F, -186.367996F), new Vector2(-515.487976F, -187.231995F)); + builder.AddCubicBezier(new Vector2(-515.031982F, -188.095993F), new Vector2(-514.383972F, -188.768005F), new Vector2(-513.544006F, -189.248001F)); + builder.AddCubicBezier(new Vector2(-512.703979F, -189.727997F), new Vector2(-511.731995F, -189.968002F), new Vector2(-510.627991F, -189.968002F)); + builder.AddCubicBezier(new Vector2(-509.571991F, -189.968002F), new Vector2(-508.671997F, -189.746002F), new Vector2(-507.928009F, -189.302002F)); + builder.AddCubicBezier(new Vector2(-507.18399F, -188.858002F), new Vector2(-506.608002F, -188.233994F), new Vector2(-506.200012F, -187.429993F)); + builder.AddCubicBezier(new Vector2(-505.791992F, -186.626007F), new Vector2(-505.588013F, -185.647995F), new Vector2(-505.588013F, -184.496002F)); + builder.AddLine(new Vector2(-504.399994F, -185.539993F)); + builder.AddLine(new Vector2(-517.107971F, -185.539993F)); + builder.AddLine(new Vector2(-517.107971F, -182.839996F)); + builder.AddLine(new Vector2(-502.671997F, -182.839996F)); + builder.AddCubicBezier(new Vector2(-502.600006F, -183.175995F), new Vector2(-502.552002F, -183.481995F), new Vector2(-502.528015F, -183.757996F)); + builder.AddCubicBezier(new Vector2(-502.503998F, -184.033997F), new Vector2(-502.492004F, -184.292007F), new Vector2(-502.492004F, -184.531998F)); + builder.AddCubicBezier(new Vector2(-502.492004F, -186.164001F), new Vector2(-502.834015F, -187.615997F), new Vector2(-503.518005F, -188.888F)); + builder.AddCubicBezier(new Vector2(-504.201996F, -190.160004F), new Vector2(-505.156006F, -191.156006F), new Vector2(-506.380005F, -191.876007F)); + builder.AddCubicBezier(new Vector2(-507.604004F, -192.595993F), new Vector2(-508.996002F, -192.955994F), new Vector2(-510.556F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-512.211975F, -192.955994F), new Vector2(-513.705994F, -192.565994F), new Vector2(-515.038025F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-516.369995F, -191.005997F), new Vector2(-517.426025F, -189.944F), new Vector2(-518.205994F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-518.986023F, -187.255997F), new Vector2(-519.375977F, -185.744003F), new Vector2(-519.375977F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-519.375977F, -182.360001F), new Vector2(-518.97998F, -180.835999F), new Vector2(-518.187988F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-517.395996F, -178.147995F), new Vector2(-516.322021F, -177.085999F), new Vector2(-514.966003F, -176.306F)); + builder.AddCubicBezier(new Vector2(-513.609985F, -175.526001F), new Vector2(-512.067993F, -175.136002F), new Vector2(-510.339996F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-508.996002F, -175.136002F), new Vector2(-507.735992F, -175.388F), new Vector2(-506.559998F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0524() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-534.747986F, -175.496002F)); + builder.AddLine(new Vector2(-534.747986F, -201.199997F)); + builder.AddLine(new Vector2(-537.987976F, -201.199997F)); + builder.AddLine(new Vector2(-537.987976F, -175.496002F)); + builder.AddLine(new Vector2(-534.747986F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-522.651978F, -175.496002F)); + builder.AddLine(new Vector2(-522.651978F, -186.115997F)); + builder.AddCubicBezier(new Vector2(-522.651978F, -187.460007F), new Vector2(-522.940002F, -188.647995F), new Vector2(-523.515991F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-524.09198F, -190.712006F), new Vector2(-524.877991F, -191.516006F), new Vector2(-525.874023F, -192.091995F)); + builder.AddCubicBezier(new Vector2(-526.869995F, -192.667999F), new Vector2(-528.015991F, -192.955994F), new Vector2(-529.312012F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-530.607971F, -192.955994F), new Vector2(-531.771973F, -192.662003F), new Vector2(-532.804016F, -192.074005F)); + builder.AddCubicBezier(new Vector2(-533.835999F, -191.485992F), new Vector2(-534.640015F, -190.688004F), new Vector2(-535.216003F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-535.791992F, -188.671997F), new Vector2(-536.080017F, -187.520004F), new Vector2(-536.080017F, -186.223999F)); + builder.AddLine(new Vector2(-534.747986F, -185.468002F)); + builder.AddCubicBezier(new Vector2(-534.747986F, -186.332001F), new Vector2(-534.55603F, -187.100006F), new Vector2(-534.171997F, -187.772003F)); + builder.AddCubicBezier(new Vector2(-533.788025F, -188.444F), new Vector2(-533.26001F, -188.972F), new Vector2(-532.588013F, -189.356003F)); + builder.AddCubicBezier(new Vector2(-531.916016F, -189.740005F), new Vector2(-531.14801F, -189.932007F), new Vector2(-530.283997F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-528.987976F, -189.932007F), new Vector2(-527.937988F, -189.511993F), new Vector2(-527.133972F, -188.671997F)); + builder.AddCubicBezier(new Vector2(-526.330017F, -187.832001F), new Vector2(-525.927979F, -186.764008F), new Vector2(-525.927979F, -185.468002F)); + builder.AddLine(new Vector2(-525.927979F, -175.496002F)); + builder.AddLine(new Vector2(-522.651978F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0525() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-561.927979F, -175.496002F)); + builder.AddLine(new Vector2(-561.927979F, -192.595993F)); + builder.AddLine(new Vector2(-565.16803F, -192.595993F)); + builder.AddLine(new Vector2(-565.16803F, -175.496002F)); + builder.AddLine(new Vector2(-561.927979F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-549.83197F, -175.496002F)); + builder.AddLine(new Vector2(-549.83197F, -186.115997F)); + builder.AddCubicBezier(new Vector2(-549.83197F, -187.292007F), new Vector2(-550.119995F, -188.401993F), new Vector2(-550.695984F, -189.445999F)); + builder.AddCubicBezier(new Vector2(-551.271973F, -190.490005F), new Vector2(-552.057983F, -191.335999F), new Vector2(-553.054016F, -191.983994F)); + builder.AddCubicBezier(new Vector2(-554.049988F, -192.632004F), new Vector2(-555.195984F, -192.955994F), new Vector2(-556.492004F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-557.788025F, -192.955994F), new Vector2(-558.952026F, -192.662003F), new Vector2(-559.984009F, -192.074005F)); + builder.AddCubicBezier(new Vector2(-561.015991F, -191.485992F), new Vector2(-561.820007F, -190.688004F), new Vector2(-562.395996F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-562.971985F, -188.671997F), new Vector2(-563.26001F, -187.520004F), new Vector2(-563.26001F, -186.223999F)); + builder.AddLine(new Vector2(-561.927979F, -185.468002F)); + builder.AddCubicBezier(new Vector2(-561.927979F, -186.332001F), new Vector2(-561.736023F, -187.100006F), new Vector2(-561.35199F, -187.772003F)); + builder.AddCubicBezier(new Vector2(-560.968018F, -188.444F), new Vector2(-560.440002F, -188.972F), new Vector2(-559.768005F, -189.356003F)); + builder.AddCubicBezier(new Vector2(-559.096008F, -189.740005F), new Vector2(-558.328003F, -189.932007F), new Vector2(-557.463989F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-556.16803F, -189.932007F), new Vector2(-555.117981F, -189.511993F), new Vector2(-554.314026F, -188.671997F)); + builder.AddCubicBezier(new Vector2(-553.51001F, -187.832001F), new Vector2(-553.107971F, -186.764008F), new Vector2(-553.107971F, -185.468002F)); + builder.AddLine(new Vector2(-553.107971F, -175.496002F)); + builder.AddLine(new Vector2(-549.83197F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0526() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-572.763977F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-571.588013F, -176.395996F), new Vector2(-570.580017F, -177.128006F), new Vector2(-569.73999F, -178.087997F)); + builder.AddLine(new Vector2(-571.828003F, -180.212006F)); + builder.AddCubicBezier(new Vector2(-572.403992F, -179.539993F), new Vector2(-573.093994F, -179.035995F), new Vector2(-573.89801F, -178.699997F)); + builder.AddCubicBezier(new Vector2(-574.702026F, -178.363998F), new Vector2(-575.583984F, -178.195999F), new Vector2(-576.544006F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-577.695984F, -178.195999F), new Vector2(-578.716003F, -178.442001F), new Vector2(-579.604004F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-580.492004F, -179.425995F), new Vector2(-581.176025F, -180.121994F), new Vector2(-581.656006F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-582.135986F, -181.921997F), new Vector2(-582.375977F, -182.972F), new Vector2(-582.375977F, -184.171997F)); + builder.AddCubicBezier(new Vector2(-582.375977F, -185.348007F), new Vector2(-582.14801F, -186.367996F), new Vector2(-581.692017F, -187.231995F)); + builder.AddCubicBezier(new Vector2(-581.236023F, -188.095993F), new Vector2(-580.588013F, -188.768005F), new Vector2(-579.747986F, -189.248001F)); + builder.AddCubicBezier(new Vector2(-578.90802F, -189.727997F), new Vector2(-577.935974F, -189.968002F), new Vector2(-576.83197F, -189.968002F)); + builder.AddCubicBezier(new Vector2(-575.776001F, -189.968002F), new Vector2(-574.875977F, -189.746002F), new Vector2(-574.132019F, -189.302002F)); + builder.AddCubicBezier(new Vector2(-573.388F, -188.858002F), new Vector2(-572.812012F, -188.233994F), new Vector2(-572.403992F, -187.429993F)); + builder.AddCubicBezier(new Vector2(-571.995972F, -186.626007F), new Vector2(-571.791992F, -185.647995F), new Vector2(-571.791992F, -184.496002F)); + builder.AddLine(new Vector2(-570.604004F, -185.539993F)); + builder.AddLine(new Vector2(-583.312012F, -185.539993F)); + builder.AddLine(new Vector2(-583.312012F, -182.839996F)); + builder.AddLine(new Vector2(-568.875977F, -182.839996F)); + builder.AddCubicBezier(new Vector2(-568.804016F, -183.175995F), new Vector2(-568.755981F, -183.481995F), new Vector2(-568.731995F, -183.757996F)); + builder.AddCubicBezier(new Vector2(-568.708008F, -184.033997F), new Vector2(-568.695984F, -184.292007F), new Vector2(-568.695984F, -184.531998F)); + builder.AddCubicBezier(new Vector2(-568.695984F, -186.164001F), new Vector2(-569.038025F, -187.615997F), new Vector2(-569.721985F, -188.888F)); + builder.AddCubicBezier(new Vector2(-570.406006F, -190.160004F), new Vector2(-571.359985F, -191.156006F), new Vector2(-572.583984F, -191.876007F)); + builder.AddCubicBezier(new Vector2(-573.807983F, -192.595993F), new Vector2(-575.200012F, -192.955994F), new Vector2(-576.76001F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-578.416016F, -192.955994F), new Vector2(-579.909973F, -192.565994F), new Vector2(-581.242004F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-582.573975F, -191.005997F), new Vector2(-583.630005F, -189.944F), new Vector2(-584.409973F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-585.190002F, -187.255997F), new Vector2(-585.580017F, -185.744003F), new Vector2(-585.580017F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-585.580017F, -182.360001F), new Vector2(-585.184021F, -180.835999F), new Vector2(-584.392029F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-583.599976F, -178.147995F), new Vector2(-582.526001F, -177.085999F), new Vector2(-581.169983F, -176.306F)); + builder.AddCubicBezier(new Vector2(-579.814026F, -175.526001F), new Vector2(-578.271973F, -175.136002F), new Vector2(-576.544006F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-575.200012F, -175.136002F), new Vector2(-573.940002F, -175.388F), new Vector2(-572.763977F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0527() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-594.435974F, -175.496002F)); + builder.AddLine(new Vector2(-586.588013F, -192.595993F)); + builder.AddLine(new Vector2(-590.044006F, -192.595993F)); + builder.AddLine(new Vector2(-596.380005F, -178.160004F)); + builder.AddLine(new Vector2(-594.291992F, -178.160004F)); + builder.AddLine(new Vector2(-600.59198F, -192.595993F)); + builder.AddLine(new Vector2(-604.192017F, -192.595993F)); + builder.AddLine(new Vector2(-596.343994F, -175.496002F)); + builder.AddLine(new Vector2(-594.435974F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0528() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-609.52002F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-608.343994F, -176.395996F), new Vector2(-607.335999F, -177.128006F), new Vector2(-606.495972F, -178.087997F)); + builder.AddLine(new Vector2(-608.583984F, -180.212006F)); + builder.AddCubicBezier(new Vector2(-609.159973F, -179.539993F), new Vector2(-609.849976F, -179.035995F), new Vector2(-610.653992F, -178.699997F)); + builder.AddCubicBezier(new Vector2(-611.458008F, -178.363998F), new Vector2(-612.340027F, -178.195999F), new Vector2(-613.299988F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-614.452026F, -178.195999F), new Vector2(-615.471985F, -178.442001F), new Vector2(-616.359985F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-617.247986F, -179.425995F), new Vector2(-617.932007F, -180.121994F), new Vector2(-618.411987F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-618.892029F, -181.921997F), new Vector2(-619.132019F, -182.972F), new Vector2(-619.132019F, -184.171997F)); + builder.AddCubicBezier(new Vector2(-619.132019F, -185.348007F), new Vector2(-618.903992F, -186.367996F), new Vector2(-618.447998F, -187.231995F)); + builder.AddCubicBezier(new Vector2(-617.992004F, -188.095993F), new Vector2(-617.343994F, -188.768005F), new Vector2(-616.504028F, -189.248001F)); + builder.AddCubicBezier(new Vector2(-615.664001F, -189.727997F), new Vector2(-614.692017F, -189.968002F), new Vector2(-613.588013F, -189.968002F)); + builder.AddCubicBezier(new Vector2(-612.531982F, -189.968002F), new Vector2(-611.632019F, -189.746002F), new Vector2(-610.888F, -189.302002F)); + builder.AddCubicBezier(new Vector2(-610.143982F, -188.858002F), new Vector2(-609.567993F, -188.233994F), new Vector2(-609.159973F, -187.429993F)); + builder.AddCubicBezier(new Vector2(-608.752014F, -186.626007F), new Vector2(-608.547974F, -185.647995F), new Vector2(-608.547974F, -184.496002F)); + builder.AddLine(new Vector2(-607.359985F, -185.539993F)); + builder.AddLine(new Vector2(-620.067993F, -185.539993F)); + builder.AddLine(new Vector2(-620.067993F, -182.839996F)); + builder.AddLine(new Vector2(-605.632019F, -182.839996F)); + builder.AddCubicBezier(new Vector2(-605.559998F, -183.175995F), new Vector2(-605.512024F, -183.481995F), new Vector2(-605.487976F, -183.757996F)); + builder.AddCubicBezier(new Vector2(-605.463989F, -184.033997F), new Vector2(-605.452026F, -184.292007F), new Vector2(-605.452026F, -184.531998F)); + builder.AddCubicBezier(new Vector2(-605.452026F, -186.164001F), new Vector2(-605.794006F, -187.615997F), new Vector2(-606.478027F, -188.888F)); + builder.AddCubicBezier(new Vector2(-607.161987F, -190.160004F), new Vector2(-608.116028F, -191.156006F), new Vector2(-609.340027F, -191.876007F)); + builder.AddCubicBezier(new Vector2(-610.564026F, -192.595993F), new Vector2(-611.955994F, -192.955994F), new Vector2(-613.515991F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-615.171997F, -192.955994F), new Vector2(-616.666016F, -192.565994F), new Vector2(-617.997986F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-619.330017F, -191.005997F), new Vector2(-620.385986F, -189.944F), new Vector2(-621.166016F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-621.945984F, -187.255997F), new Vector2(-622.335999F, -185.744003F), new Vector2(-622.335999F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-622.335999F, -182.360001F), new Vector2(-621.940002F, -180.835999F), new Vector2(-621.14801F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-620.356018F, -178.147995F), new Vector2(-619.281982F, -177.085999F), new Vector2(-617.926025F, -176.306F)); + builder.AddCubicBezier(new Vector2(-616.570007F, -175.526001F), new Vector2(-615.028015F, -175.136002F), new Vector2(-613.299988F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-611.955994F, -175.136002F), new Vector2(-610.695984F, -175.388F), new Vector2(-609.52002F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0529() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-634.018005F, -176.539993F)); + builder.AddCubicBezier(new Vector2(-632.877991F, -177.475998F), new Vector2(-632.307983F, -178.748001F), new Vector2(-632.307983F, -180.356003F)); + builder.AddCubicBezier(new Vector2(-632.307983F, -181.412003F), new Vector2(-632.530029F, -182.264008F), new Vector2(-632.973999F, -182.912003F)); + builder.AddCubicBezier(new Vector2(-633.41803F, -183.559998F), new Vector2(-633.987976F, -184.076004F), new Vector2(-634.684021F, -184.460007F)); + builder.AddCubicBezier(new Vector2(-635.380005F, -184.843994F), new Vector2(-636.112F, -185.149994F), new Vector2(-636.880005F, -185.378006F)); + builder.AddCubicBezier(new Vector2(-637.64801F, -185.606003F), new Vector2(-638.385986F, -185.828003F), new Vector2(-639.093994F, -186.044006F)); + builder.AddCubicBezier(new Vector2(-639.802002F, -186.259995F), new Vector2(-640.372009F, -186.524002F), new Vector2(-640.804016F, -186.835999F)); + builder.AddCubicBezier(new Vector2(-641.236023F, -187.147995F), new Vector2(-641.452026F, -187.591995F), new Vector2(-641.452026F, -188.167999F)); + builder.AddCubicBezier(new Vector2(-641.452026F, -188.720001F), new Vector2(-641.205994F, -189.164001F), new Vector2(-640.713989F, -189.5F)); + builder.AddCubicBezier(new Vector2(-640.221985F, -189.835999F), new Vector2(-639.507996F, -190.003998F), new Vector2(-638.572021F, -190.003998F)); + builder.AddCubicBezier(new Vector2(-637.684021F, -190.003998F), new Vector2(-636.892029F, -189.835999F), new Vector2(-636.195984F, -189.5F)); + builder.AddCubicBezier(new Vector2(-635.5F, -189.164001F), new Vector2(-634.900024F, -188.684006F), new Vector2(-634.395996F, -188.059998F)); + builder.AddLine(new Vector2(-632.307983F, -190.147995F)); + builder.AddCubicBezier(new Vector2(-632.97998F, -191.084F), new Vector2(-633.838013F, -191.785995F), new Vector2(-634.882019F, -192.253998F)); + builder.AddCubicBezier(new Vector2(-635.926025F, -192.722F), new Vector2(-637.119995F, -192.955994F), new Vector2(-638.463989F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-639.736023F, -192.955994F), new Vector2(-640.828003F, -192.751999F), new Vector2(-641.73999F, -192.343994F)); + builder.AddCubicBezier(new Vector2(-642.651978F, -191.936005F), new Vector2(-643.354004F, -191.354004F), new Vector2(-643.846008F, -190.598007F)); + builder.AddCubicBezier(new Vector2(-644.338013F, -189.841995F), new Vector2(-644.583984F, -188.947998F), new Vector2(-644.583984F, -187.916F)); + builder.AddCubicBezier(new Vector2(-644.583984F, -186.884003F), new Vector2(-644.362F, -186.050003F), new Vector2(-643.91803F, -185.414001F)); + builder.AddCubicBezier(new Vector2(-643.473999F, -184.778F), new Vector2(-642.903992F, -184.279999F), new Vector2(-642.208008F, -183.919998F)); + builder.AddCubicBezier(new Vector2(-641.512024F, -183.559998F), new Vector2(-640.773987F, -183.272003F), new Vector2(-639.994019F, -183.056F)); + builder.AddCubicBezier(new Vector2(-639.213989F, -182.839996F), new Vector2(-638.476013F, -182.617996F), new Vector2(-637.780029F, -182.389999F)); + builder.AddCubicBezier(new Vector2(-637.083984F, -182.162003F), new Vector2(-636.513977F, -181.873993F), new Vector2(-636.070007F, -181.526001F)); + builder.AddCubicBezier(new Vector2(-635.625977F, -181.177994F), new Vector2(-635.403992F, -180.692001F), new Vector2(-635.403992F, -180.067993F)); + builder.AddCubicBezier(new Vector2(-635.403992F, -179.444F), new Vector2(-635.679993F, -178.957993F), new Vector2(-636.231995F, -178.610001F)); + builder.AddCubicBezier(new Vector2(-636.783997F, -178.261993F), new Vector2(-637.564026F, -178.087997F), new Vector2(-638.572021F, -178.087997F)); + builder.AddCubicBezier(new Vector2(-639.580017F, -178.087997F), new Vector2(-640.492004F, -178.274002F), new Vector2(-641.307983F, -178.645996F)); + builder.AddCubicBezier(new Vector2(-642.124023F, -179.018005F), new Vector2(-642.843994F, -179.587997F), new Vector2(-643.468018F, -180.356003F)); + builder.AddLine(new Vector2(-645.55603F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-645.028015F, -177.619995F), new Vector2(-644.409973F, -177.061996F), new Vector2(-643.702026F, -176.593994F)); + builder.AddCubicBezier(new Vector2(-642.994019F, -176.126007F), new Vector2(-642.208008F, -175.766006F), new Vector2(-641.343994F, -175.514008F)); + builder.AddCubicBezier(new Vector2(-640.47998F, -175.261993F), new Vector2(-639.567993F, -175.136002F), new Vector2(-638.607971F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-636.687988F, -175.136002F), new Vector2(-635.15802F, -175.604004F), new Vector2(-634.018005F, -176.539993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0530() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-651.640015F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-650.463989F, -176.395996F), new Vector2(-649.455994F, -177.128006F), new Vector2(-648.616028F, -178.087997F)); + builder.AddLine(new Vector2(-650.703979F, -180.212006F)); + builder.AddCubicBezier(new Vector2(-651.280029F, -179.539993F), new Vector2(-651.969971F, -179.035995F), new Vector2(-652.773987F, -178.699997F)); + builder.AddCubicBezier(new Vector2(-653.578003F, -178.363998F), new Vector2(-654.460022F, -178.195999F), new Vector2(-655.419983F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-656.572021F, -178.195999F), new Vector2(-657.59198F, -178.442001F), new Vector2(-658.47998F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-659.367981F, -179.425995F), new Vector2(-660.052002F, -180.121994F), new Vector2(-660.531982F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-661.012024F, -181.921997F), new Vector2(-661.252014F, -182.972F), new Vector2(-661.252014F, -184.171997F)); + builder.AddCubicBezier(new Vector2(-661.252014F, -185.348007F), new Vector2(-661.023987F, -186.367996F), new Vector2(-660.567993F, -187.231995F)); + builder.AddCubicBezier(new Vector2(-660.112F, -188.095993F), new Vector2(-659.463989F, -188.768005F), new Vector2(-658.624023F, -189.248001F)); + builder.AddCubicBezier(new Vector2(-657.783997F, -189.727997F), new Vector2(-656.812012F, -189.968002F), new Vector2(-655.708008F, -189.968002F)); + builder.AddCubicBezier(new Vector2(-654.651978F, -189.968002F), new Vector2(-653.752014F, -189.746002F), new Vector2(-653.007996F, -189.302002F)); + builder.AddCubicBezier(new Vector2(-652.263977F, -188.858002F), new Vector2(-651.687988F, -188.233994F), new Vector2(-651.280029F, -187.429993F)); + builder.AddCubicBezier(new Vector2(-650.872009F, -186.626007F), new Vector2(-650.66803F, -185.647995F), new Vector2(-650.66803F, -184.496002F)); + builder.AddLine(new Vector2(-649.47998F, -185.539993F)); + builder.AddLine(new Vector2(-662.187988F, -185.539993F)); + builder.AddLine(new Vector2(-662.187988F, -182.839996F)); + builder.AddLine(new Vector2(-647.752014F, -182.839996F)); + builder.AddCubicBezier(new Vector2(-647.679993F, -183.175995F), new Vector2(-647.632019F, -183.481995F), new Vector2(-647.607971F, -183.757996F)); + builder.AddCubicBezier(new Vector2(-647.583984F, -184.033997F), new Vector2(-647.572021F, -184.292007F), new Vector2(-647.572021F, -184.531998F)); + builder.AddCubicBezier(new Vector2(-647.572021F, -186.164001F), new Vector2(-647.914001F, -187.615997F), new Vector2(-648.598022F, -188.888F)); + builder.AddCubicBezier(new Vector2(-649.281982F, -190.160004F), new Vector2(-650.236023F, -191.156006F), new Vector2(-651.460022F, -191.876007F)); + builder.AddCubicBezier(new Vector2(-652.684021F, -192.595993F), new Vector2(-654.075989F, -192.955994F), new Vector2(-655.635986F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-657.291992F, -192.955994F), new Vector2(-658.786011F, -192.565994F), new Vector2(-660.117981F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-661.450012F, -191.005997F), new Vector2(-662.505981F, -189.944F), new Vector2(-663.286011F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-664.065979F, -187.255997F), new Vector2(-664.455994F, -185.744003F), new Vector2(-664.455994F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-664.455994F, -182.360001F), new Vector2(-664.059998F, -180.835999F), new Vector2(-663.268005F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-662.476013F, -178.147995F), new Vector2(-661.401978F, -177.085999F), new Vector2(-660.046021F, -176.306F)); + builder.AddCubicBezier(new Vector2(-658.690002F, -175.526001F), new Vector2(-657.14801F, -175.136002F), new Vector2(-655.419983F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-654.075989F, -175.136002F), new Vector2(-652.815979F, -175.388F), new Vector2(-651.640015F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0531() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-669.117981F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-667.978027F, -176.395996F), new Vector2(-667.012024F, -177.104004F), new Vector2(-666.219971F, -178.016006F)); + builder.AddLine(new Vector2(-668.343994F, -180.175995F)); + builder.AddCubicBezier(new Vector2(-668.895996F, -179.552002F), new Vector2(-669.549988F, -179.078003F), new Vector2(-670.30603F, -178.753998F)); + builder.AddCubicBezier(new Vector2(-671.062012F, -178.429993F), new Vector2(-671.895996F, -178.268005F), new Vector2(-672.807983F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-673.888F, -178.268005F), new Vector2(-674.848022F, -178.520004F), new Vector2(-675.687988F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-676.528015F, -179.528F), new Vector2(-677.187988F, -180.212006F), new Vector2(-677.66803F, -181.076004F)); + builder.AddCubicBezier(new Vector2(-678.14801F, -181.940002F), new Vector2(-678.388F, -182.936005F), new Vector2(-678.388F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-678.388F, -185.192001F), new Vector2(-678.14801F, -186.188004F), new Vector2(-677.66803F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-677.187988F, -187.916F), new Vector2(-676.528015F, -188.593994F), new Vector2(-675.687988F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-674.848022F, -189.578003F), new Vector2(-673.888F, -189.824005F), new Vector2(-672.807983F, -189.824005F)); + builder.AddCubicBezier(new Vector2(-671.919983F, -189.824005F), new Vector2(-671.09198F, -189.662003F), new Vector2(-670.323975F, -189.337997F)); + builder.AddCubicBezier(new Vector2(-669.55603F, -189.014008F), new Vector2(-668.90802F, -188.539993F), new Vector2(-668.380005F, -187.916F)); + builder.AddLine(new Vector2(-666.219971F, -190.076004F)); + builder.AddCubicBezier(new Vector2(-667.036011F, -191.011993F), new Vector2(-668.007996F, -191.725998F), new Vector2(-669.135986F, -192.218002F)); + builder.AddCubicBezier(new Vector2(-670.263977F, -192.710007F), new Vector2(-671.487976F, -192.955994F), new Vector2(-672.807983F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-674.487976F, -192.955994F), new Vector2(-676.005981F, -192.565994F), new Vector2(-677.362F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-678.718018F, -191.005997F), new Vector2(-679.786011F, -189.944F), new Vector2(-680.565979F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-681.346008F, -187.255997F), new Vector2(-681.736023F, -185.744003F), new Vector2(-681.736023F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-681.736023F, -182.408005F), new Vector2(-681.346008F, -180.901993F), new Vector2(-680.565979F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-679.786011F, -178.190002F), new Vector2(-678.718018F, -177.115997F), new Vector2(-677.362F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-676.005981F, -175.531998F), new Vector2(-674.487976F, -175.136002F), new Vector2(-672.807983F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-671.487976F, -175.136002F), new Vector2(-670.257996F, -175.388F), new Vector2(-669.117981F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0532() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-690.124023F, -188.744003F)); + builder.AddCubicBezier(new Vector2(-689.356018F, -189.511993F), new Vector2(-688.372009F, -189.895996F), new Vector2(-687.171997F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-686.596008F, -189.895996F), new Vector2(-686.09198F, -189.811996F), new Vector2(-685.659973F, -189.643997F)); + builder.AddCubicBezier(new Vector2(-685.228027F, -189.475998F), new Vector2(-684.83197F, -189.199997F), new Vector2(-684.471985F, -188.815994F)); + builder.AddLine(new Vector2(-682.348022F, -191.011993F)); + builder.AddCubicBezier(new Vector2(-682.947998F, -191.707993F), new Vector2(-683.596008F, -192.205994F), new Vector2(-684.291992F, -192.505997F)); + builder.AddCubicBezier(new Vector2(-684.987976F, -192.806F), new Vector2(-685.768005F, -192.955994F), new Vector2(-686.632019F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-688.528015F, -192.955994F), new Vector2(-689.97998F, -192.307999F), new Vector2(-690.987976F, -191.011993F)); + builder.AddCubicBezier(new Vector2(-691.995972F, -189.716003F), new Vector2(-692.5F, -187.975998F), new Vector2(-692.5F, -185.792007F)); + builder.AddLine(new Vector2(-691.276001F, -185.216003F)); + builder.AddCubicBezier(new Vector2(-691.276001F, -186.800003F), new Vector2(-690.892029F, -187.975998F), new Vector2(-690.124023F, -188.744003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-691.276001F, -175.496002F)); + builder.AddLine(new Vector2(-691.276001F, -192.595993F)); + builder.AddLine(new Vector2(-694.515991F, -192.595993F)); + builder.AddLine(new Vector2(-694.515991F, -175.496002F)); + builder.AddLine(new Vector2(-691.276001F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0533() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-709.924011F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-710.763977F, -179.528F), new Vector2(-711.424011F, -180.218002F), new Vector2(-711.903992F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-712.383972F, -181.970001F), new Vector2(-712.624023F, -182.972F), new Vector2(-712.624023F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-712.624023F, -185.203995F), new Vector2(-712.383972F, -186.188004F), new Vector2(-711.903992F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-711.424011F, -187.916F), new Vector2(-710.763977F, -188.593994F), new Vector2(-709.924011F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-709.083984F, -189.578003F), new Vector2(-708.135986F, -189.824005F), new Vector2(-707.080017F, -189.824005F)); + builder.AddCubicBezier(new Vector2(-705.976013F, -189.824005F), new Vector2(-705.01001F, -189.578003F), new Vector2(-704.182007F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-703.354004F, -188.593994F), new Vector2(-702.69397F, -187.916F), new Vector2(-702.202026F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-701.710022F, -186.188004F), new Vector2(-701.463989F, -185.203995F), new Vector2(-701.463989F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-701.463989F, -182.972F), new Vector2(-701.703979F, -181.970001F), new Vector2(-702.184021F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-702.664001F, -180.218002F), new Vector2(-703.323975F, -179.528F), new Vector2(-704.164001F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-705.004028F, -178.520004F), new Vector2(-705.976013F, -178.268005F), new Vector2(-707.080017F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-708.135986F, -178.268005F), new Vector2(-709.083984F, -178.520004F), new Vector2(-709.924011F, -179.024002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-702.526001F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-701.169983F, -177.115997F), new Vector2(-700.096008F, -178.190002F), new Vector2(-699.304016F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-698.512024F, -180.901993F), new Vector2(-698.116028F, -182.419998F), new Vector2(-698.116028F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-698.116028F, -185.755997F), new Vector2(-698.512024F, -187.255997F), new Vector2(-699.304016F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-700.096008F, -189.944F), new Vector2(-701.169983F, -191.005997F), new Vector2(-702.526001F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-703.882019F, -192.565994F), new Vector2(-705.400024F, -192.955994F), new Vector2(-707.080017F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-708.736023F, -192.955994F), new Vector2(-710.236023F, -192.559998F), new Vector2(-711.580017F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-712.924011F, -190.975998F), new Vector2(-713.992004F, -189.914001F), new Vector2(-714.783997F, -188.582001F)); + builder.AddCubicBezier(new Vector2(-715.575989F, -187.25F), new Vector2(-715.971985F, -185.755997F), new Vector2(-715.971985F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-715.971985F, -182.419998F), new Vector2(-715.575989F, -180.901993F), new Vector2(-714.783997F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-713.992004F, -178.190002F), new Vector2(-712.924011F, -177.115997F), new Vector2(-711.580017F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-710.236023F, -175.531998F), new Vector2(-708.736023F, -175.136002F), new Vector2(-707.080017F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-705.400024F, -175.136002F), new Vector2(-703.882019F, -175.531998F), new Vector2(-702.526001F, -176.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0534() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-717.124023F, -189.643997F)); + builder.AddLine(new Vector2(-717.124023F, -192.595993F)); + builder.AddLine(new Vector2(-730.012024F, -192.595993F)); + builder.AddLine(new Vector2(-730.012024F, -189.643997F)); + builder.AddLine(new Vector2(-717.124023F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-722.559998F, -175.496002F)); + builder.AddLine(new Vector2(-722.559998F, -195.151993F)); + builder.AddCubicBezier(new Vector2(-722.559998F, -196.207993F), new Vector2(-722.278015F, -197.029999F), new Vector2(-721.713989F, -197.617996F)); + builder.AddCubicBezier(new Vector2(-721.150024F, -198.205994F), new Vector2(-720.35199F, -198.5F), new Vector2(-719.320007F, -198.5F)); + builder.AddCubicBezier(new Vector2(-718.768005F, -198.5F), new Vector2(-718.299988F, -198.416F), new Vector2(-717.916016F, -198.248001F)); + builder.AddCubicBezier(new Vector2(-717.531982F, -198.080002F), new Vector2(-717.184021F, -197.828003F), new Vector2(-716.872009F, -197.492004F)); + builder.AddLine(new Vector2(-714.747986F, -199.580002F)); + builder.AddCubicBezier(new Vector2(-715.348022F, -200.227997F), new Vector2(-716.007996F, -200.720001F), new Vector2(-716.728027F, -201.056F)); + builder.AddCubicBezier(new Vector2(-717.447998F, -201.391998F), new Vector2(-718.299988F, -201.559998F), new Vector2(-719.283997F, -201.559998F)); + builder.AddCubicBezier(new Vector2(-720.580017F, -201.559998F), new Vector2(-721.719971F, -201.283997F), new Vector2(-722.703979F, -200.731995F)); + builder.AddCubicBezier(new Vector2(-723.687988F, -200.179993F), new Vector2(-724.455994F, -199.423996F), new Vector2(-725.007996F, -198.464005F)); + builder.AddCubicBezier(new Vector2(-725.559998F, -197.503998F), new Vector2(-725.835999F, -196.399994F), new Vector2(-725.835999F, -195.151993F)); + builder.AddLine(new Vector2(-725.835999F, -175.496002F)); + builder.AddLine(new Vector2(-722.559998F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0535() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-743.296021F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-742.119995F, -176.395996F), new Vector2(-741.112F, -177.128006F), new Vector2(-740.271973F, -178.087997F)); + builder.AddLine(new Vector2(-742.359985F, -180.212006F)); + builder.AddCubicBezier(new Vector2(-742.935974F, -179.539993F), new Vector2(-743.625977F, -179.035995F), new Vector2(-744.429993F, -178.699997F)); + builder.AddCubicBezier(new Vector2(-745.234009F, -178.363998F), new Vector2(-746.116028F, -178.195999F), new Vector2(-747.075989F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-748.228027F, -178.195999F), new Vector2(-749.247986F, -178.442001F), new Vector2(-750.135986F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-751.023987F, -179.425995F), new Vector2(-751.708008F, -180.121994F), new Vector2(-752.187988F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-752.66803F, -181.921997F), new Vector2(-752.90802F, -182.972F), new Vector2(-752.90802F, -184.171997F)); + builder.AddCubicBezier(new Vector2(-752.90802F, -185.348007F), new Vector2(-752.679993F, -186.367996F), new Vector2(-752.223999F, -187.231995F)); + builder.AddCubicBezier(new Vector2(-751.768005F, -188.095993F), new Vector2(-751.119995F, -188.768005F), new Vector2(-750.280029F, -189.248001F)); + builder.AddCubicBezier(new Vector2(-749.440002F, -189.727997F), new Vector2(-748.468018F, -189.968002F), new Vector2(-747.364014F, -189.968002F)); + builder.AddCubicBezier(new Vector2(-746.307983F, -189.968002F), new Vector2(-745.40802F, -189.746002F), new Vector2(-744.664001F, -189.302002F)); + builder.AddCubicBezier(new Vector2(-743.919983F, -188.858002F), new Vector2(-743.343994F, -188.233994F), new Vector2(-742.935974F, -187.429993F)); + builder.AddCubicBezier(new Vector2(-742.528015F, -186.626007F), new Vector2(-742.323975F, -185.647995F), new Vector2(-742.323975F, -184.496002F)); + builder.AddLine(new Vector2(-741.135986F, -185.539993F)); + builder.AddLine(new Vector2(-753.843994F, -185.539993F)); + builder.AddLine(new Vector2(-753.843994F, -182.839996F)); + builder.AddLine(new Vector2(-739.40802F, -182.839996F)); + builder.AddCubicBezier(new Vector2(-739.335999F, -183.175995F), new Vector2(-739.288025F, -183.481995F), new Vector2(-739.263977F, -183.757996F)); + builder.AddCubicBezier(new Vector2(-739.23999F, -184.033997F), new Vector2(-739.228027F, -184.292007F), new Vector2(-739.228027F, -184.531998F)); + builder.AddCubicBezier(new Vector2(-739.228027F, -186.164001F), new Vector2(-739.570007F, -187.615997F), new Vector2(-740.254028F, -188.888F)); + builder.AddCubicBezier(new Vector2(-740.937988F, -190.160004F), new Vector2(-741.892029F, -191.156006F), new Vector2(-743.116028F, -191.876007F)); + builder.AddCubicBezier(new Vector2(-744.340027F, -192.595993F), new Vector2(-745.731995F, -192.955994F), new Vector2(-747.291992F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-748.947998F, -192.955994F), new Vector2(-750.442017F, -192.565994F), new Vector2(-751.773987F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-753.106018F, -191.005997F), new Vector2(-754.161987F, -189.944F), new Vector2(-754.942017F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-755.721985F, -187.255997F), new Vector2(-756.112F, -185.744003F), new Vector2(-756.112F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-756.112F, -182.360001F), new Vector2(-755.716003F, -180.835999F), new Vector2(-754.924011F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-754.132019F, -178.147995F), new Vector2(-753.057983F, -177.085999F), new Vector2(-751.702026F, -176.306F)); + builder.AddCubicBezier(new Vector2(-750.346008F, -175.526001F), new Vector2(-748.804016F, -175.136002F), new Vector2(-747.075989F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-745.731995F, -175.136002F), new Vector2(-744.471985F, -175.388F), new Vector2(-743.296021F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0536() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-760.773987F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-759.633972F, -176.395996F), new Vector2(-758.66803F, -177.104004F), new Vector2(-757.875977F, -178.016006F)); + builder.AddLine(new Vector2(-760F, -180.175995F)); + builder.AddCubicBezier(new Vector2(-760.552002F, -179.552002F), new Vector2(-761.205994F, -179.078003F), new Vector2(-761.961975F, -178.753998F)); + builder.AddCubicBezier(new Vector2(-762.718018F, -178.429993F), new Vector2(-763.552002F, -178.268005F), new Vector2(-764.463989F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-765.544006F, -178.268005F), new Vector2(-766.504028F, -178.520004F), new Vector2(-767.343994F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-768.184021F, -179.528F), new Vector2(-768.843994F, -180.212006F), new Vector2(-769.323975F, -181.076004F)); + builder.AddCubicBezier(new Vector2(-769.804016F, -181.940002F), new Vector2(-770.044006F, -182.936005F), new Vector2(-770.044006F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-770.044006F, -185.192001F), new Vector2(-769.804016F, -186.188004F), new Vector2(-769.323975F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-768.843994F, -187.916F), new Vector2(-768.184021F, -188.593994F), new Vector2(-767.343994F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-766.504028F, -189.578003F), new Vector2(-765.544006F, -189.824005F), new Vector2(-764.463989F, -189.824005F)); + builder.AddCubicBezier(new Vector2(-763.575989F, -189.824005F), new Vector2(-762.747986F, -189.662003F), new Vector2(-761.97998F, -189.337997F)); + builder.AddCubicBezier(new Vector2(-761.211975F, -189.014008F), new Vector2(-760.564026F, -188.539993F), new Vector2(-760.036011F, -187.916F)); + builder.AddLine(new Vector2(-757.875977F, -190.076004F)); + builder.AddCubicBezier(new Vector2(-758.692017F, -191.011993F), new Vector2(-759.664001F, -191.725998F), new Vector2(-760.791992F, -192.218002F)); + builder.AddCubicBezier(new Vector2(-761.919983F, -192.710007F), new Vector2(-763.143982F, -192.955994F), new Vector2(-764.463989F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-766.143982F, -192.955994F), new Vector2(-767.661987F, -192.565994F), new Vector2(-769.018005F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-770.374023F, -191.005997F), new Vector2(-771.442017F, -189.944F), new Vector2(-772.221985F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-773.002014F, -187.255997F), new Vector2(-773.392029F, -185.744003F), new Vector2(-773.392029F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-773.392029F, -182.408005F), new Vector2(-773.002014F, -180.901993F), new Vector2(-772.221985F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-771.442017F, -178.190002F), new Vector2(-770.374023F, -177.115997F), new Vector2(-769.018005F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-767.661987F, -175.531998F), new Vector2(-766.143982F, -175.136002F), new Vector2(-764.463989F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-763.143982F, -175.136002F), new Vector2(-761.914001F, -175.388F), new Vector2(-760.773987F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0537() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-777.208008F, -196.610001F)); + builder.AddCubicBezier(new Vector2(-776.823975F, -197.005997F), new Vector2(-776.632019F, -197.503998F), new Vector2(-776.632019F, -198.104004F)); + builder.AddCubicBezier(new Vector2(-776.632019F, -198.679993F), new Vector2(-776.823975F, -199.166F), new Vector2(-777.208008F, -199.561996F)); + builder.AddCubicBezier(new Vector2(-777.59198F, -199.957993F), new Vector2(-778.083984F, -200.156006F), new Vector2(-778.684021F, -200.156006F)); + builder.AddCubicBezier(new Vector2(-779.283997F, -200.156006F), new Vector2(-779.776001F, -199.957993F), new Vector2(-780.159973F, -199.561996F)); + builder.AddCubicBezier(new Vector2(-780.544006F, -199.166F), new Vector2(-780.736023F, -198.679993F), new Vector2(-780.736023F, -198.104004F)); + builder.AddCubicBezier(new Vector2(-780.736023F, -197.503998F), new Vector2(-780.544006F, -197.005997F), new Vector2(-780.159973F, -196.610001F)); + builder.AddCubicBezier(new Vector2(-779.776001F, -196.214005F), new Vector2(-779.283997F, -196.016006F), new Vector2(-778.684021F, -196.016006F)); + builder.AddCubicBezier(new Vector2(-778.083984F, -196.016006F), new Vector2(-777.59198F, -196.214005F), new Vector2(-777.208008F, -196.610001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-777.064026F, -175.496002F)); + builder.AddLine(new Vector2(-777.064026F, -192.595993F)); + builder.AddLine(new Vector2(-780.340027F, -192.595993F)); + builder.AddLine(new Vector2(-780.340027F, -175.496002F)); + builder.AddLine(new Vector2(-777.064026F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0538() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-785.09198F, -175.496002F)); + builder.AddLine(new Vector2(-785.09198F, -201.199997F)); + builder.AddLine(new Vector2(-788.33197F, -201.199997F)); + builder.AddLine(new Vector2(-788.33197F, -175.496002F)); + builder.AddLine(new Vector2(-785.09198F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0539() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-803.73999F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-804.580017F, -179.528F), new Vector2(-805.23999F, -180.218002F), new Vector2(-805.719971F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-806.200012F, -181.970001F), new Vector2(-806.440002F, -182.972F), new Vector2(-806.440002F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-806.440002F, -185.203995F), new Vector2(-806.200012F, -186.188004F), new Vector2(-805.719971F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-805.23999F, -187.916F), new Vector2(-804.580017F, -188.593994F), new Vector2(-803.73999F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-802.900024F, -189.578003F), new Vector2(-801.952026F, -189.824005F), new Vector2(-800.895996F, -189.824005F)); + builder.AddCubicBezier(new Vector2(-799.791992F, -189.824005F), new Vector2(-798.825989F, -189.578003F), new Vector2(-797.997986F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-797.169983F, -188.593994F), new Vector2(-796.51001F, -187.916F), new Vector2(-796.018005F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-795.526001F, -186.188004F), new Vector2(-795.280029F, -185.203995F), new Vector2(-795.280029F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-795.280029F, -182.972F), new Vector2(-795.52002F, -181.970001F), new Vector2(-796F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-796.47998F, -180.218002F), new Vector2(-797.140015F, -179.528F), new Vector2(-797.97998F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-798.820007F, -178.520004F), new Vector2(-799.791992F, -178.268005F), new Vector2(-800.895996F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-801.952026F, -178.268005F), new Vector2(-802.900024F, -178.520004F), new Vector2(-803.73999F, -179.024002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-796.34198F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-794.986023F, -177.115997F), new Vector2(-793.911987F, -178.190002F), new Vector2(-793.119995F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-792.328003F, -180.901993F), new Vector2(-791.932007F, -182.419998F), new Vector2(-791.932007F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-791.932007F, -185.755997F), new Vector2(-792.328003F, -187.255997F), new Vector2(-793.119995F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-793.911987F, -189.944F), new Vector2(-794.986023F, -191.005997F), new Vector2(-796.34198F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-797.697998F, -192.565994F), new Vector2(-799.216003F, -192.955994F), new Vector2(-800.895996F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-802.552002F, -192.955994F), new Vector2(-804.052002F, -192.559998F), new Vector2(-805.395996F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-806.73999F, -190.975998F), new Vector2(-807.807983F, -189.914001F), new Vector2(-808.599976F, -188.582001F)); + builder.AddCubicBezier(new Vector2(-809.392029F, -187.25F), new Vector2(-809.788025F, -185.755997F), new Vector2(-809.788025F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-809.788025F, -182.419998F), new Vector2(-809.392029F, -180.901993F), new Vector2(-808.599976F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-807.807983F, -178.190002F), new Vector2(-806.73999F, -177.115997F), new Vector2(-805.395996F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-804.052002F, -175.531998F), new Vector2(-802.552002F, -175.136002F), new Vector2(-800.895996F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-799.216003F, -175.136002F), new Vector2(-797.697998F, -175.531998F), new Vector2(-796.34198F, -176.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0540() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-823.98999F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-824.817993F, -179.455994F), new Vector2(-825.453979F, -180.145996F), new Vector2(-825.89801F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-826.34198F, -181.897995F), new Vector2(-826.564026F, -182.899994F), new Vector2(-826.564026F, -184.028F)); + builder.AddCubicBezier(new Vector2(-826.564026F, -185.179993F), new Vector2(-826.335999F, -186.194F), new Vector2(-825.880005F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-825.424011F, -187.945999F), new Vector2(-824.788025F, -188.636002F), new Vector2(-823.971985F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-823.156006F, -189.643997F), new Vector2(-822.219971F, -189.895996F), new Vector2(-821.164001F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-820.083984F, -189.895996F), new Vector2(-819.135986F, -189.643997F), new Vector2(-818.320007F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-817.504028F, -188.636002F), new Vector2(-816.862F, -187.945999F), new Vector2(-816.393982F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-815.926025F, -186.194F), new Vector2(-815.692017F, -185.192001F), new Vector2(-815.692017F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-815.692017F, -182.912003F), new Vector2(-815.926025F, -181.897995F), new Vector2(-816.393982F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-816.862F, -180.145996F), new Vector2(-817.504028F, -179.455994F), new Vector2(-818.320007F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-819.135986F, -178.447998F), new Vector2(-820.083984F, -178.195999F), new Vector2(-821.164001F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-822.219971F, -178.195999F), new Vector2(-823.161987F, -178.447998F), new Vector2(-823.98999F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-826.383972F, -168.332001F)); + builder.AddLine(new Vector2(-826.383972F, -179.779999F)); + builder.AddLine(new Vector2(-826.995972F, -183.955994F)); + builder.AddLine(new Vector2(-826.383972F, -188.095993F)); + builder.AddLine(new Vector2(-826.383972F, -192.595993F)); + builder.AddLine(new Vector2(-829.624023F, -192.595993F)); + builder.AddLine(new Vector2(-829.624023F, -168.332001F)); + builder.AddLine(new Vector2(-826.383972F, -168.332001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-816.393982F, -176.306F)); + builder.AddCubicBezier(new Vector2(-815.133972F, -177.085999F), new Vector2(-814.143982F, -178.147995F), new Vector2(-813.424011F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-812.703979F, -180.835999F), new Vector2(-812.343994F, -182.348007F), new Vector2(-812.343994F, -184.028F)); + builder.AddCubicBezier(new Vector2(-812.343994F, -185.707993F), new Vector2(-812.703979F, -187.220001F), new Vector2(-813.424011F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-814.143982F, -189.908005F), new Vector2(-815.133972F, -190.975998F), new Vector2(-816.393982F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-817.653992F, -192.559998F), new Vector2(-819.064026F, -192.955994F), new Vector2(-820.624023F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-821.895996F, -192.955994F), new Vector2(-823.054016F, -192.686005F), new Vector2(-824.098022F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-825.142029F, -191.606003F), new Vector2(-825.981995F, -190.862F), new Vector2(-826.617981F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-827.254028F, -188.966003F), new Vector2(-827.607971F, -187.867996F), new Vector2(-827.679993F, -186.619995F)); + builder.AddLine(new Vector2(-827.679993F, -181.472F)); + builder.AddCubicBezier(new Vector2(-827.607971F, -180.248001F), new Vector2(-827.26001F, -179.156006F), new Vector2(-826.635986F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-826.012024F, -177.235992F), new Vector2(-825.177979F, -176.485992F), new Vector2(-824.133972F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-823.090027F, -175.406006F), new Vector2(-821.919983F, -175.136002F), new Vector2(-820.624023F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-819.064026F, -175.136002F), new Vector2(-817.653992F, -175.526001F), new Vector2(-816.393982F, -176.306F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0541() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(751.892029F, -232.843994F)); + builder.AddLine(new Vector2(751.892029F, -235.796005F)); + builder.AddLine(new Vector2(740.228027F, -235.796005F)); + builder.AddLine(new Vector2(740.228027F, -232.843994F)); + builder.AddLine(new Vector2(751.892029F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(747.679993F, -218.695999F)); + builder.AddLine(new Vector2(747.679993F, -242.960007F)); + builder.AddLine(new Vector2(744.440002F, -242.960007F)); + builder.AddLine(new Vector2(744.440002F, -218.695999F)); + builder.AddLine(new Vector2(747.679993F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0542() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(736.466003F, -219.740005F)); + builder.AddCubicBezier(new Vector2(737.606018F, -220.675995F), new Vector2(738.176025F, -221.947998F), new Vector2(738.176025F, -223.556F)); + builder.AddCubicBezier(new Vector2(738.176025F, -224.612F), new Vector2(737.953979F, -225.464005F), new Vector2(737.51001F, -226.112F)); + builder.AddCubicBezier(new Vector2(737.065979F, -226.759995F), new Vector2(736.495972F, -227.276001F), new Vector2(735.799988F, -227.660004F)); + builder.AddCubicBezier(new Vector2(735.104004F, -228.044006F), new Vector2(734.372009F, -228.350006F), new Vector2(733.604004F, -228.578003F)); + builder.AddCubicBezier(new Vector2(732.835999F, -228.806F), new Vector2(732.098022F, -229.028F), new Vector2(731.390015F, -229.244003F)); + builder.AddCubicBezier(new Vector2(730.682007F, -229.460007F), new Vector2(730.112F, -229.723999F), new Vector2(729.679993F, -230.035995F)); + builder.AddCubicBezier(new Vector2(729.247986F, -230.348007F), new Vector2(729.031982F, -230.792007F), new Vector2(729.031982F, -231.367996F)); + builder.AddCubicBezier(new Vector2(729.031982F, -231.919998F), new Vector2(729.278015F, -232.363998F), new Vector2(729.77002F, -232.699997F)); + builder.AddCubicBezier(new Vector2(730.262024F, -233.035995F), new Vector2(730.976013F, -233.203995F), new Vector2(731.911987F, -233.203995F)); + builder.AddCubicBezier(new Vector2(732.799988F, -233.203995F), new Vector2(733.59198F, -233.035995F), new Vector2(734.288025F, -232.699997F)); + builder.AddCubicBezier(new Vector2(734.984009F, -232.363998F), new Vector2(735.583984F, -231.884003F), new Vector2(736.088013F, -231.259995F)); + builder.AddLine(new Vector2(738.176025F, -233.348007F)); + builder.AddCubicBezier(new Vector2(737.504028F, -234.283997F), new Vector2(736.645996F, -234.985992F), new Vector2(735.60199F, -235.453995F)); + builder.AddCubicBezier(new Vector2(734.557983F, -235.921997F), new Vector2(733.364014F, -236.156006F), new Vector2(732.02002F, -236.156006F)); + builder.AddCubicBezier(new Vector2(730.747986F, -236.156006F), new Vector2(729.656006F, -235.951996F), new Vector2(728.744019F, -235.544006F)); + builder.AddCubicBezier(new Vector2(727.83197F, -235.136002F), new Vector2(727.130005F, -234.554001F), new Vector2(726.638F, -233.798004F)); + builder.AddCubicBezier(new Vector2(726.145996F, -233.042007F), new Vector2(725.900024F, -232.147995F), new Vector2(725.900024F, -231.115997F)); + builder.AddCubicBezier(new Vector2(725.900024F, -230.084F), new Vector2(726.122009F, -229.25F), new Vector2(726.565979F, -228.613998F)); + builder.AddCubicBezier(new Vector2(727.01001F, -227.977997F), new Vector2(727.580017F, -227.479996F), new Vector2(728.276001F, -227.119995F)); + builder.AddCubicBezier(new Vector2(728.971985F, -226.759995F), new Vector2(729.710022F, -226.472F), new Vector2(730.48999F, -226.255997F)); + builder.AddCubicBezier(new Vector2(731.27002F, -226.039993F), new Vector2(732.007996F, -225.817993F), new Vector2(732.703979F, -225.589996F)); + builder.AddCubicBezier(new Vector2(733.400024F, -225.362F), new Vector2(733.969971F, -225.074005F), new Vector2(734.414001F, -224.725998F)); + builder.AddCubicBezier(new Vector2(734.857971F, -224.378006F), new Vector2(735.080017F, -223.891998F), new Vector2(735.080017F, -223.268005F)); + builder.AddCubicBezier(new Vector2(735.080017F, -222.643997F), new Vector2(734.804016F, -222.158005F), new Vector2(734.252014F, -221.809998F)); + builder.AddCubicBezier(new Vector2(733.700012F, -221.462006F), new Vector2(732.919983F, -221.287994F), new Vector2(731.911987F, -221.287994F)); + builder.AddCubicBezier(new Vector2(730.903992F, -221.287994F), new Vector2(729.992004F, -221.473999F), new Vector2(729.176025F, -221.845993F)); + builder.AddCubicBezier(new Vector2(728.359985F, -222.218002F), new Vector2(727.640015F, -222.787994F), new Vector2(727.015991F, -223.556F)); + builder.AddLine(new Vector2(724.927979F, -221.468002F)); + builder.AddCubicBezier(new Vector2(725.455994F, -220.820007F), new Vector2(726.073975F, -220.261993F), new Vector2(726.781982F, -219.794006F)); + builder.AddCubicBezier(new Vector2(727.48999F, -219.326004F), new Vector2(728.276001F, -218.966003F), new Vector2(729.140015F, -218.714005F)); + builder.AddCubicBezier(new Vector2(730.004028F, -218.462006F), new Vector2(730.916016F, -218.335999F), new Vector2(731.875977F, -218.335999F)); + builder.AddCubicBezier(new Vector2(733.796021F, -218.335999F), new Vector2(735.325989F, -218.804001F), new Vector2(736.466003F, -219.740005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0543() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(718.843994F, -219.091995F)); + builder.AddCubicBezier(new Vector2(720.02002F, -219.595993F), new Vector2(721.028015F, -220.328003F), new Vector2(721.867981F, -221.287994F)); + builder.AddLine(new Vector2(719.780029F, -223.412003F)); + builder.AddCubicBezier(new Vector2(719.203979F, -222.740005F), new Vector2(718.513977F, -222.235992F), new Vector2(717.710022F, -221.899994F)); + builder.AddCubicBezier(new Vector2(716.906006F, -221.563995F), new Vector2(716.023987F, -221.395996F), new Vector2(715.064026F, -221.395996F)); + builder.AddCubicBezier(new Vector2(713.911987F, -221.395996F), new Vector2(712.892029F, -221.641998F), new Vector2(712.004028F, -222.134003F)); + builder.AddCubicBezier(new Vector2(711.116028F, -222.626007F), new Vector2(710.432007F, -223.322006F), new Vector2(709.952026F, -224.222F)); + builder.AddCubicBezier(new Vector2(709.471985F, -225.121994F), new Vector2(709.231995F, -226.171997F), new Vector2(709.231995F, -227.371994F)); + builder.AddCubicBezier(new Vector2(709.231995F, -228.548004F), new Vector2(709.460022F, -229.567993F), new Vector2(709.916016F, -230.432007F)); + builder.AddCubicBezier(new Vector2(710.372009F, -231.296005F), new Vector2(711.02002F, -231.968002F), new Vector2(711.859985F, -232.447998F)); + builder.AddCubicBezier(new Vector2(712.700012F, -232.927994F), new Vector2(713.671997F, -233.167999F), new Vector2(714.776001F, -233.167999F)); + builder.AddCubicBezier(new Vector2(715.83197F, -233.167999F), new Vector2(716.731995F, -232.945999F), new Vector2(717.476013F, -232.501999F)); + builder.AddCubicBezier(new Vector2(718.219971F, -232.057999F), new Vector2(718.796021F, -231.434006F), new Vector2(719.203979F, -230.630005F)); + builder.AddCubicBezier(new Vector2(719.612F, -229.826004F), new Vector2(719.815979F, -228.848007F), new Vector2(719.815979F, -227.695999F)); + builder.AddLine(new Vector2(721.004028F, -228.740005F)); + builder.AddLine(new Vector2(708.296021F, -228.740005F)); + builder.AddLine(new Vector2(708.296021F, -226.039993F)); + builder.AddLine(new Vector2(722.731995F, -226.039993F)); + builder.AddCubicBezier(new Vector2(722.804016F, -226.376007F), new Vector2(722.85199F, -226.682007F), new Vector2(722.875977F, -226.957993F)); + builder.AddCubicBezier(new Vector2(722.900024F, -227.233994F), new Vector2(722.911987F, -227.492004F), new Vector2(722.911987F, -227.731995F)); + builder.AddCubicBezier(new Vector2(722.911987F, -229.363998F), new Vector2(722.570007F, -230.815994F), new Vector2(721.885986F, -232.087997F)); + builder.AddCubicBezier(new Vector2(721.202026F, -233.360001F), new Vector2(720.247986F, -234.356003F), new Vector2(719.023987F, -235.076004F)); + builder.AddCubicBezier(new Vector2(717.799988F, -235.796005F), new Vector2(716.40802F, -236.156006F), new Vector2(714.848022F, -236.156006F)); + builder.AddCubicBezier(new Vector2(713.192017F, -236.156006F), new Vector2(711.697998F, -235.766006F), new Vector2(710.366028F, -234.985992F)); + builder.AddCubicBezier(new Vector2(709.033997F, -234.205994F), new Vector2(707.978027F, -233.143997F), new Vector2(707.197998F, -231.800003F)); + builder.AddCubicBezier(new Vector2(706.41803F, -230.455994F), new Vector2(706.028015F, -228.944F), new Vector2(706.028015F, -227.264008F)); + builder.AddCubicBezier(new Vector2(706.028015F, -225.559998F), new Vector2(706.424011F, -224.035995F), new Vector2(707.216003F, -222.692001F)); + builder.AddCubicBezier(new Vector2(708.007996F, -221.348007F), new Vector2(709.08197F, -220.285995F), new Vector2(710.437988F, -219.505997F)); + builder.AddCubicBezier(new Vector2(711.794006F, -218.725998F), new Vector2(713.335999F, -218.335999F), new Vector2(715.064026F, -218.335999F)); + builder.AddCubicBezier(new Vector2(716.40802F, -218.335999F), new Vector2(717.66803F, -218.587997F), new Vector2(718.843994F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0544() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(704.515991F, -232.843994F)); + builder.AddLine(new Vector2(704.515991F, -235.796005F)); + builder.AddLine(new Vector2(692.85199F, -235.796005F)); + builder.AddLine(new Vector2(692.85199F, -232.843994F)); + builder.AddLine(new Vector2(704.515991F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(700.304016F, -218.695999F)); + builder.AddLine(new Vector2(700.304016F, -242.960007F)); + builder.AddLine(new Vector2(697.064026F, -242.960007F)); + builder.AddLine(new Vector2(697.064026F, -218.695999F)); + builder.AddLine(new Vector2(700.304016F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0545() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(679.567993F, -222.223999F)); + builder.AddCubicBezier(new Vector2(678.728027F, -222.727997F), new Vector2(678.067993F, -223.417999F), new Vector2(677.588013F, -224.294006F)); + builder.AddCubicBezier(new Vector2(677.107971F, -225.169998F), new Vector2(676.867981F, -226.171997F), new Vector2(676.867981F, -227.300003F)); + builder.AddCubicBezier(new Vector2(676.867981F, -228.404007F), new Vector2(677.107971F, -229.388F), new Vector2(677.588013F, -230.251999F)); + builder.AddCubicBezier(new Vector2(678.067993F, -231.115997F), new Vector2(678.728027F, -231.794006F), new Vector2(679.567993F, -232.285995F)); + builder.AddCubicBezier(new Vector2(680.40802F, -232.778F), new Vector2(681.356018F, -233.024002F), new Vector2(682.411987F, -233.024002F)); + builder.AddCubicBezier(new Vector2(683.515991F, -233.024002F), new Vector2(684.481995F, -232.778F), new Vector2(685.309998F, -232.285995F)); + builder.AddCubicBezier(new Vector2(686.138F, -231.794006F), new Vector2(686.797974F, -231.115997F), new Vector2(687.289978F, -230.251999F)); + builder.AddCubicBezier(new Vector2(687.781982F, -229.388F), new Vector2(688.028015F, -228.404007F), new Vector2(688.028015F, -227.300003F)); + builder.AddCubicBezier(new Vector2(688.028015F, -226.171997F), new Vector2(687.788025F, -225.169998F), new Vector2(687.307983F, -224.294006F)); + builder.AddCubicBezier(new Vector2(686.828003F, -223.417999F), new Vector2(686.16803F, -222.727997F), new Vector2(685.328003F, -222.223999F)); + builder.AddCubicBezier(new Vector2(684.487976F, -221.720001F), new Vector2(683.515991F, -221.468002F), new Vector2(682.411987F, -221.468002F)); + builder.AddCubicBezier(new Vector2(681.356018F, -221.468002F), new Vector2(680.40802F, -221.720001F), new Vector2(679.567993F, -222.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(686.966003F, -219.524002F)); + builder.AddCubicBezier(new Vector2(688.322021F, -220.315994F), new Vector2(689.395996F, -221.389999F), new Vector2(690.187988F, -222.746002F)); + builder.AddCubicBezier(new Vector2(690.97998F, -224.102005F), new Vector2(691.375977F, -225.619995F), new Vector2(691.375977F, -227.300003F)); + builder.AddCubicBezier(new Vector2(691.375977F, -228.955994F), new Vector2(690.97998F, -230.455994F), new Vector2(690.187988F, -231.800003F)); + builder.AddCubicBezier(new Vector2(689.395996F, -233.143997F), new Vector2(688.322021F, -234.205994F), new Vector2(686.966003F, -234.985992F)); + builder.AddCubicBezier(new Vector2(685.609985F, -235.766006F), new Vector2(684.09198F, -236.156006F), new Vector2(682.411987F, -236.156006F)); + builder.AddCubicBezier(new Vector2(680.755981F, -236.156006F), new Vector2(679.255981F, -235.759995F), new Vector2(677.911987F, -234.968002F)); + builder.AddCubicBezier(new Vector2(676.567993F, -234.175995F), new Vector2(675.5F, -233.113998F), new Vector2(674.708008F, -231.781998F)); + builder.AddCubicBezier(new Vector2(673.916016F, -230.449997F), new Vector2(673.52002F, -228.955994F), new Vector2(673.52002F, -227.300003F)); + builder.AddCubicBezier(new Vector2(673.52002F, -225.619995F), new Vector2(673.916016F, -224.102005F), new Vector2(674.708008F, -222.746002F)); + builder.AddCubicBezier(new Vector2(675.5F, -221.389999F), new Vector2(676.567993F, -220.315994F), new Vector2(677.911987F, -219.524002F)); + builder.AddCubicBezier(new Vector2(679.255981F, -218.731995F), new Vector2(680.755981F, -218.335999F), new Vector2(682.411987F, -218.335999F)); + builder.AddCubicBezier(new Vector2(684.09198F, -218.335999F), new Vector2(685.609985F, -218.731995F), new Vector2(686.966003F, -219.524002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0546() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(665.132019F, -231.944F)); + builder.AddCubicBezier(new Vector2(665.900024F, -232.712006F), new Vector2(666.883972F, -233.095993F), new Vector2(668.083984F, -233.095993F)); + builder.AddCubicBezier(new Vector2(668.659973F, -233.095993F), new Vector2(669.164001F, -233.011993F), new Vector2(669.596008F, -232.843994F)); + builder.AddCubicBezier(new Vector2(670.028015F, -232.675995F), new Vector2(670.424011F, -232.399994F), new Vector2(670.783997F, -232.016006F)); + builder.AddLine(new Vector2(672.90802F, -234.212006F)); + builder.AddCubicBezier(new Vector2(672.307983F, -234.908005F), new Vector2(671.659973F, -235.406006F), new Vector2(670.963989F, -235.705994F)); + builder.AddCubicBezier(new Vector2(670.268005F, -236.005997F), new Vector2(669.487976F, -236.156006F), new Vector2(668.624023F, -236.156006F)); + builder.AddCubicBezier(new Vector2(666.728027F, -236.156006F), new Vector2(665.276001F, -235.507996F), new Vector2(664.268005F, -234.212006F)); + builder.AddCubicBezier(new Vector2(663.26001F, -232.916F), new Vector2(662.755981F, -231.175995F), new Vector2(662.755981F, -228.992004F)); + builder.AddLine(new Vector2(663.97998F, -228.416F)); + builder.AddCubicBezier(new Vector2(663.97998F, -230F), new Vector2(664.364014F, -231.175995F), new Vector2(665.132019F, -231.944F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(663.97998F, -218.695999F)); + builder.AddLine(new Vector2(663.97998F, -235.796005F)); + builder.AddLine(new Vector2(660.73999F, -235.796005F)); + builder.AddLine(new Vector2(660.73999F, -218.695999F)); + builder.AddLine(new Vector2(663.97998F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0547() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(645.421997F, -222.151993F)); + builder.AddCubicBezier(new Vector2(644.593994F, -222.656006F), new Vector2(643.958008F, -223.345993F), new Vector2(643.513977F, -224.222F)); + builder.AddCubicBezier(new Vector2(643.070007F, -225.098007F), new Vector2(642.848022F, -226.100006F), new Vector2(642.848022F, -227.227997F)); + builder.AddCubicBezier(new Vector2(642.848022F, -228.380005F), new Vector2(643.075989F, -229.393997F), new Vector2(643.531982F, -230.270004F)); + builder.AddCubicBezier(new Vector2(643.987976F, -231.145996F), new Vector2(644.624023F, -231.835999F), new Vector2(645.440002F, -232.339996F)); + builder.AddCubicBezier(new Vector2(646.255981F, -232.843994F), new Vector2(647.192017F, -233.095993F), new Vector2(648.247986F, -233.095993F)); + builder.AddCubicBezier(new Vector2(649.328003F, -233.095993F), new Vector2(650.276001F, -232.843994F), new Vector2(651.09198F, -232.339996F)); + builder.AddCubicBezier(new Vector2(651.90802F, -231.835999F), new Vector2(652.549988F, -231.145996F), new Vector2(653.018005F, -230.270004F)); + builder.AddCubicBezier(new Vector2(653.486023F, -229.393997F), new Vector2(653.719971F, -228.391998F), new Vector2(653.719971F, -227.264008F)); + builder.AddCubicBezier(new Vector2(653.719971F, -226.112F), new Vector2(653.486023F, -225.098007F), new Vector2(653.018005F, -224.222F)); + builder.AddCubicBezier(new Vector2(652.549988F, -223.345993F), new Vector2(651.90802F, -222.656006F), new Vector2(651.09198F, -222.151993F)); + builder.AddCubicBezier(new Vector2(650.276001F, -221.647995F), new Vector2(649.328003F, -221.395996F), new Vector2(648.247986F, -221.395996F)); + builder.AddCubicBezier(new Vector2(647.192017F, -221.395996F), new Vector2(646.25F, -221.647995F), new Vector2(645.421997F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(643.028015F, -211.531998F)); + builder.AddLine(new Vector2(643.028015F, -222.979996F)); + builder.AddLine(new Vector2(642.416016F, -227.156006F)); + builder.AddLine(new Vector2(643.028015F, -231.296005F)); + builder.AddLine(new Vector2(643.028015F, -235.796005F)); + builder.AddLine(new Vector2(639.788025F, -235.796005F)); + builder.AddLine(new Vector2(639.788025F, -211.531998F)); + builder.AddLine(new Vector2(643.028015F, -211.531998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(653.018005F, -219.505997F)); + builder.AddCubicBezier(new Vector2(654.278015F, -220.285995F), new Vector2(655.268005F, -221.348007F), new Vector2(655.987976F, -222.692001F)); + builder.AddCubicBezier(new Vector2(656.708008F, -224.035995F), new Vector2(657.067993F, -225.548004F), new Vector2(657.067993F, -227.227997F)); + builder.AddCubicBezier(new Vector2(657.067993F, -228.908005F), new Vector2(656.708008F, -230.419998F), new Vector2(655.987976F, -231.764008F)); + builder.AddCubicBezier(new Vector2(655.268005F, -233.108002F), new Vector2(654.278015F, -234.175995F), new Vector2(653.018005F, -234.968002F)); + builder.AddCubicBezier(new Vector2(651.757996F, -235.759995F), new Vector2(650.348022F, -236.156006F), new Vector2(648.788025F, -236.156006F)); + builder.AddCubicBezier(new Vector2(647.515991F, -236.156006F), new Vector2(646.357971F, -235.886002F), new Vector2(645.314026F, -235.345993F)); + builder.AddCubicBezier(new Vector2(644.27002F, -234.806F), new Vector2(643.429993F, -234.061996F), new Vector2(642.794006F, -233.113998F)); + builder.AddCubicBezier(new Vector2(642.15802F, -232.166F), new Vector2(641.804016F, -231.067993F), new Vector2(641.731995F, -229.820007F)); + builder.AddLine(new Vector2(641.731995F, -224.671997F)); + builder.AddCubicBezier(new Vector2(641.804016F, -223.447998F), new Vector2(642.151978F, -222.356003F), new Vector2(642.776001F, -221.395996F)); + builder.AddCubicBezier(new Vector2(643.400024F, -220.436005F), new Vector2(644.234009F, -219.686005F), new Vector2(645.278015F, -219.145996F)); + builder.AddCubicBezier(new Vector2(646.322021F, -218.606003F), new Vector2(647.492004F, -218.335999F), new Vector2(648.788025F, -218.335999F)); + builder.AddCubicBezier(new Vector2(650.348022F, -218.335999F), new Vector2(651.757996F, -218.725998F), new Vector2(653.018005F, -219.505997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0548() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(635.036011F, -226.292007F)); + builder.AddLine(new Vector2(635.036011F, -229.388F)); + builder.AddLine(new Vector2(623.192017F, -229.388F)); + builder.AddLine(new Vector2(623.192017F, -226.292007F)); + builder.AddLine(new Vector2(635.036011F, -226.292007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0549() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(618.26001F, -239.809998F)); + builder.AddCubicBezier(new Vector2(618.643982F, -240.205994F), new Vector2(618.835999F, -240.703995F), new Vector2(618.835999F, -241.304001F)); + builder.AddCubicBezier(new Vector2(618.835999F, -241.880005F), new Vector2(618.643982F, -242.365997F), new Vector2(618.26001F, -242.761993F)); + builder.AddCubicBezier(new Vector2(617.875977F, -243.158005F), new Vector2(617.383972F, -243.356003F), new Vector2(616.783997F, -243.356003F)); + builder.AddCubicBezier(new Vector2(616.184021F, -243.356003F), new Vector2(615.692017F, -243.158005F), new Vector2(615.307983F, -242.761993F)); + builder.AddCubicBezier(new Vector2(614.924011F, -242.365997F), new Vector2(614.731995F, -241.880005F), new Vector2(614.731995F, -241.304001F)); + builder.AddCubicBezier(new Vector2(614.731995F, -240.703995F), new Vector2(614.924011F, -240.205994F), new Vector2(615.307983F, -239.809998F)); + builder.AddCubicBezier(new Vector2(615.692017F, -239.414001F), new Vector2(616.184021F, -239.216003F), new Vector2(616.783997F, -239.216003F)); + builder.AddCubicBezier(new Vector2(617.383972F, -239.216003F), new Vector2(617.875977F, -239.414001F), new Vector2(618.26001F, -239.809998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(618.403992F, -218.695999F)); + builder.AddLine(new Vector2(618.403992F, -235.796005F)); + builder.AddLine(new Vector2(615.127991F, -235.796005F)); + builder.AddLine(new Vector2(615.127991F, -218.695999F)); + builder.AddLine(new Vector2(618.403992F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0550() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(611.960022F, -232.843994F)); + builder.AddLine(new Vector2(611.960022F, -235.796005F)); + builder.AddLine(new Vector2(600.296021F, -235.796005F)); + builder.AddLine(new Vector2(600.296021F, -232.843994F)); + builder.AddLine(new Vector2(611.960022F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(607.747986F, -218.695999F)); + builder.AddLine(new Vector2(607.747986F, -242.960007F)); + builder.AddLine(new Vector2(604.507996F, -242.960007F)); + builder.AddLine(new Vector2(604.507996F, -218.695999F)); + builder.AddLine(new Vector2(607.747986F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0551() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(585.607971F, -218.695999F)); + builder.AddLine(new Vector2(585.607971F, -235.796005F)); + builder.AddLine(new Vector2(582.367981F, -235.796005F)); + builder.AddLine(new Vector2(582.367981F, -218.695999F)); + builder.AddLine(new Vector2(585.607971F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(597.703979F, -218.695999F)); + builder.AddLine(new Vector2(597.703979F, -229.315994F)); + builder.AddCubicBezier(new Vector2(597.703979F, -230.492004F), new Vector2(597.416016F, -231.602005F), new Vector2(596.840027F, -232.645996F)); + builder.AddCubicBezier(new Vector2(596.263977F, -233.690002F), new Vector2(595.478027F, -234.535995F), new Vector2(594.481995F, -235.184006F)); + builder.AddCubicBezier(new Vector2(593.486023F, -235.832001F), new Vector2(592.340027F, -236.156006F), new Vector2(591.044006F, -236.156006F)); + builder.AddCubicBezier(new Vector2(589.747986F, -236.156006F), new Vector2(588.583984F, -235.862F), new Vector2(587.552002F, -235.274002F)); + builder.AddCubicBezier(new Vector2(586.52002F, -234.686005F), new Vector2(585.716003F, -233.888F), new Vector2(585.140015F, -232.880005F)); + builder.AddCubicBezier(new Vector2(584.564026F, -231.871994F), new Vector2(584.276001F, -230.720001F), new Vector2(584.276001F, -229.423996F)); + builder.AddLine(new Vector2(585.607971F, -228.667999F)); + builder.AddCubicBezier(new Vector2(585.607971F, -229.531998F), new Vector2(585.799988F, -230.300003F), new Vector2(586.184021F, -230.972F)); + builder.AddCubicBezier(new Vector2(586.567993F, -231.643997F), new Vector2(587.096008F, -232.171997F), new Vector2(587.768005F, -232.556F)); + builder.AddCubicBezier(new Vector2(588.440002F, -232.940002F), new Vector2(589.208008F, -233.132004F), new Vector2(590.072021F, -233.132004F)); + builder.AddCubicBezier(new Vector2(591.367981F, -233.132004F), new Vector2(592.41803F, -232.712006F), new Vector2(593.221985F, -231.871994F)); + builder.AddCubicBezier(new Vector2(594.026001F, -231.031998F), new Vector2(594.427979F, -229.964005F), new Vector2(594.427979F, -228.667999F)); + builder.AddLine(new Vector2(594.427979F, -218.695999F)); + builder.AddLine(new Vector2(597.703979F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0552() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(577.651978F, -218.695999F)); + builder.AddLine(new Vector2(577.651978F, -235.796005F)); + builder.AddLine(new Vector2(574.375977F, -235.796005F)); + builder.AddLine(new Vector2(574.375977F, -231.619995F)); + builder.AddLine(new Vector2(574.987976F, -227.479996F)); + builder.AddLine(new Vector2(574.375977F, -223.304001F)); + builder.AddLine(new Vector2(574.375977F, -218.695999F)); + builder.AddLine(new Vector2(577.651978F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(566.348022F, -222.151993F)); + builder.AddCubicBezier(new Vector2(565.507996F, -222.656006F), new Vector2(564.854004F, -223.345993F), new Vector2(564.385986F, -224.222F)); + builder.AddCubicBezier(new Vector2(563.91803F, -225.098007F), new Vector2(563.684021F, -226.112F), new Vector2(563.684021F, -227.264008F)); + builder.AddCubicBezier(new Vector2(563.684021F, -228.391998F), new Vector2(563.91803F, -229.393997F), new Vector2(564.385986F, -230.270004F)); + builder.AddCubicBezier(new Vector2(564.854004F, -231.145996F), new Vector2(565.502014F, -231.835999F), new Vector2(566.330017F, -232.339996F)); + builder.AddCubicBezier(new Vector2(567.15802F, -232.843994F), new Vector2(568.112F, -233.095993F), new Vector2(569.192017F, -233.095993F)); + builder.AddCubicBezier(new Vector2(570.271973F, -233.095993F), new Vector2(571.213989F, -232.850006F), new Vector2(572.018005F, -232.358002F)); + builder.AddCubicBezier(new Vector2(572.822021F, -231.865997F), new Vector2(573.452026F, -231.175995F), new Vector2(573.90802F, -230.287994F)); + builder.AddCubicBezier(new Vector2(574.364014F, -229.399994F), new Vector2(574.59198F, -228.380005F), new Vector2(574.59198F, -227.227997F)); + builder.AddCubicBezier(new Vector2(574.59198F, -225.524002F), new Vector2(574.099976F, -224.126007F), new Vector2(573.116028F, -223.033997F)); + builder.AddCubicBezier(new Vector2(572.132019F, -221.942001F), new Vector2(570.835999F, -221.395996F), new Vector2(569.228027F, -221.395996F)); + builder.AddCubicBezier(new Vector2(568.14801F, -221.395996F), new Vector2(567.187988F, -221.647995F), new Vector2(566.348022F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(572.179993F, -219.145996F)); + builder.AddCubicBezier(new Vector2(573.211975F, -219.686005F), new Vector2(574.033997F, -220.436005F), new Vector2(574.645996F, -221.395996F)); + builder.AddCubicBezier(new Vector2(575.257996F, -222.356003F), new Vector2(575.599976F, -223.447998F), new Vector2(575.671997F, -224.671997F)); + builder.AddLine(new Vector2(575.671997F, -229.820007F)); + builder.AddCubicBezier(new Vector2(575.599976F, -231.067993F), new Vector2(575.252014F, -232.166F), new Vector2(574.627991F, -233.113998F)); + builder.AddCubicBezier(new Vector2(574.004028F, -234.061996F), new Vector2(573.182007F, -234.806F), new Vector2(572.161987F, -235.345993F)); + builder.AddCubicBezier(new Vector2(571.142029F, -235.886002F), new Vector2(569.984009F, -236.156006F), new Vector2(568.687988F, -236.156006F)); + builder.AddCubicBezier(new Vector2(567.104004F, -236.156006F), new Vector2(565.682007F, -235.759995F), new Vector2(564.421997F, -234.968002F)); + builder.AddCubicBezier(new Vector2(563.161987F, -234.175995F), new Vector2(562.166016F, -233.108002F), new Vector2(561.434021F, -231.764008F)); + builder.AddCubicBezier(new Vector2(560.702026F, -230.419998F), new Vector2(560.335999F, -228.908005F), new Vector2(560.335999F, -227.227997F)); + builder.AddCubicBezier(new Vector2(560.335999F, -225.548004F), new Vector2(560.702026F, -224.035995F), new Vector2(561.434021F, -222.692001F)); + builder.AddCubicBezier(new Vector2(562.166016F, -221.348007F), new Vector2(563.161987F, -220.285995F), new Vector2(564.421997F, -219.505997F)); + builder.AddCubicBezier(new Vector2(565.682007F, -218.725998F), new Vector2(567.104004F, -218.335999F), new Vector2(568.687988F, -218.335999F)); + builder.AddCubicBezier(new Vector2(569.984009F, -218.335999F), new Vector2(571.14801F, -218.606003F), new Vector2(572.179993F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0553() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(546.367981F, -219.091995F)); + builder.AddCubicBezier(new Vector2(547.544006F, -219.595993F), new Vector2(548.552002F, -220.328003F), new Vector2(549.392029F, -221.287994F)); + builder.AddLine(new Vector2(547.304016F, -223.412003F)); + builder.AddCubicBezier(new Vector2(546.728027F, -222.740005F), new Vector2(546.038025F, -222.235992F), new Vector2(545.234009F, -221.899994F)); + builder.AddCubicBezier(new Vector2(544.429993F, -221.563995F), new Vector2(543.547974F, -221.395996F), new Vector2(542.588013F, -221.395996F)); + builder.AddCubicBezier(new Vector2(541.435974F, -221.395996F), new Vector2(540.416016F, -221.641998F), new Vector2(539.528015F, -222.134003F)); + builder.AddCubicBezier(new Vector2(538.640015F, -222.626007F), new Vector2(537.955994F, -223.322006F), new Vector2(537.476013F, -224.222F)); + builder.AddCubicBezier(new Vector2(536.995972F, -225.121994F), new Vector2(536.755981F, -226.171997F), new Vector2(536.755981F, -227.371994F)); + builder.AddCubicBezier(new Vector2(536.755981F, -228.548004F), new Vector2(536.984009F, -229.567993F), new Vector2(537.440002F, -230.432007F)); + builder.AddCubicBezier(new Vector2(537.895996F, -231.296005F), new Vector2(538.544006F, -231.968002F), new Vector2(539.383972F, -232.447998F)); + builder.AddCubicBezier(new Vector2(540.223999F, -232.927994F), new Vector2(541.195984F, -233.167999F), new Vector2(542.299988F, -233.167999F)); + builder.AddCubicBezier(new Vector2(543.356018F, -233.167999F), new Vector2(544.255981F, -232.945999F), new Vector2(545F, -232.501999F)); + builder.AddCubicBezier(new Vector2(545.744019F, -232.057999F), new Vector2(546.320007F, -231.434006F), new Vector2(546.728027F, -230.630005F)); + builder.AddCubicBezier(new Vector2(547.135986F, -229.826004F), new Vector2(547.340027F, -228.848007F), new Vector2(547.340027F, -227.695999F)); + builder.AddLine(new Vector2(548.528015F, -228.740005F)); + builder.AddLine(new Vector2(535.820007F, -228.740005F)); + builder.AddLine(new Vector2(535.820007F, -226.039993F)); + builder.AddLine(new Vector2(550.255981F, -226.039993F)); + builder.AddCubicBezier(new Vector2(550.328003F, -226.376007F), new Vector2(550.375977F, -226.682007F), new Vector2(550.400024F, -226.957993F)); + builder.AddCubicBezier(new Vector2(550.424011F, -227.233994F), new Vector2(550.435974F, -227.492004F), new Vector2(550.435974F, -227.731995F)); + builder.AddCubicBezier(new Vector2(550.435974F, -229.363998F), new Vector2(550.093994F, -230.815994F), new Vector2(549.409973F, -232.087997F)); + builder.AddCubicBezier(new Vector2(548.726013F, -233.360001F), new Vector2(547.771973F, -234.356003F), new Vector2(546.547974F, -235.076004F)); + builder.AddCubicBezier(new Vector2(545.323975F, -235.796005F), new Vector2(543.932007F, -236.156006F), new Vector2(542.372009F, -236.156006F)); + builder.AddCubicBezier(new Vector2(540.716003F, -236.156006F), new Vector2(539.221985F, -235.766006F), new Vector2(537.890015F, -234.985992F)); + builder.AddCubicBezier(new Vector2(536.557983F, -234.205994F), new Vector2(535.502014F, -233.143997F), new Vector2(534.721985F, -231.800003F)); + builder.AddCubicBezier(new Vector2(533.942017F, -230.455994F), new Vector2(533.552002F, -228.944F), new Vector2(533.552002F, -227.264008F)); + builder.AddCubicBezier(new Vector2(533.552002F, -225.559998F), new Vector2(533.947998F, -224.035995F), new Vector2(534.73999F, -222.692001F)); + builder.AddCubicBezier(new Vector2(535.531982F, -221.348007F), new Vector2(536.606018F, -220.285995F), new Vector2(537.961975F, -219.505997F)); + builder.AddCubicBezier(new Vector2(539.317993F, -218.725998F), new Vector2(540.859985F, -218.335999F), new Vector2(542.588013F, -218.335999F)); + builder.AddCubicBezier(new Vector2(543.932007F, -218.335999F), new Vector2(545.192017F, -218.587997F), new Vector2(546.367981F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0554() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(518.179993F, -218.695999F)); + builder.AddLine(new Vector2(518.179993F, -244.399994F)); + builder.AddLine(new Vector2(514.940002F, -244.399994F)); + builder.AddLine(new Vector2(514.940002F, -218.695999F)); + builder.AddLine(new Vector2(518.179993F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(530.276001F, -218.695999F)); + builder.AddLine(new Vector2(530.276001F, -229.315994F)); + builder.AddCubicBezier(new Vector2(530.276001F, -230.660004F), new Vector2(529.987976F, -231.848007F), new Vector2(529.411987F, -232.880005F)); + builder.AddCubicBezier(new Vector2(528.835999F, -233.912003F), new Vector2(528.049988F, -234.716003F), new Vector2(527.054016F, -235.292007F)); + builder.AddCubicBezier(new Vector2(526.057983F, -235.867996F), new Vector2(524.911987F, -236.156006F), new Vector2(523.616028F, -236.156006F)); + builder.AddCubicBezier(new Vector2(522.320007F, -236.156006F), new Vector2(521.156006F, -235.862F), new Vector2(520.124023F, -235.274002F)); + builder.AddCubicBezier(new Vector2(519.09198F, -234.686005F), new Vector2(518.288025F, -233.888F), new Vector2(517.711975F, -232.880005F)); + builder.AddCubicBezier(new Vector2(517.135986F, -231.871994F), new Vector2(516.848022F, -230.720001F), new Vector2(516.848022F, -229.423996F)); + builder.AddLine(new Vector2(518.179993F, -228.667999F)); + builder.AddCubicBezier(new Vector2(518.179993F, -229.531998F), new Vector2(518.372009F, -230.300003F), new Vector2(518.755981F, -230.972F)); + builder.AddCubicBezier(new Vector2(519.140015F, -231.643997F), new Vector2(519.66803F, -232.171997F), new Vector2(520.340027F, -232.556F)); + builder.AddCubicBezier(new Vector2(521.012024F, -232.940002F), new Vector2(521.780029F, -233.132004F), new Vector2(522.643982F, -233.132004F)); + builder.AddCubicBezier(new Vector2(523.940002F, -233.132004F), new Vector2(524.98999F, -232.712006F), new Vector2(525.794006F, -231.871994F)); + builder.AddCubicBezier(new Vector2(526.598022F, -231.031998F), new Vector2(527F, -229.964005F), new Vector2(527F, -228.667999F)); + builder.AddLine(new Vector2(527F, -218.695999F)); + builder.AddLine(new Vector2(530.276001F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0555() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(511.772003F, -232.843994F)); + builder.AddLine(new Vector2(511.772003F, -235.796005F)); + builder.AddLine(new Vector2(500.108002F, -235.796005F)); + builder.AddLine(new Vector2(500.108002F, -232.843994F)); + builder.AddLine(new Vector2(511.772003F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(507.559998F, -218.695999F)); + builder.AddLine(new Vector2(507.559998F, -242.960007F)); + builder.AddLine(new Vector2(504.320007F, -242.960007F)); + builder.AddLine(new Vector2(504.320007F, -218.695999F)); + builder.AddLine(new Vector2(507.559998F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0556() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(480.056F, -211.531998F)); + builder.AddLine(new Vector2(483.29599F, -218.552002F)); + builder.AddLine(new Vector2(481.459991F, -221.863998F)); + builder.AddLine(new Vector2(476.455994F, -211.531998F)); + builder.AddLine(new Vector2(480.056F, -211.531998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(483.29599F, -218.552002F)); + builder.AddLine(new Vector2(491.287994F, -235.796005F)); + builder.AddLine(new Vector2(487.687988F, -235.796005F)); + builder.AddLine(new Vector2(481.891998F, -222.296005F)); + builder.AddLine(new Vector2(483.044006F, -222.296005F)); + builder.AddLine(new Vector2(477.536011F, -235.796005F)); + builder.AddLine(new Vector2(473.936005F, -235.796005F)); + builder.AddLine(new Vector2(481.35199F, -218.552002F)); + builder.AddLine(new Vector2(483.29599F, -218.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0557() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(461.06601F, -222.151993F)); + builder.AddCubicBezier(new Vector2(460.238007F, -222.656006F), new Vector2(459.60199F, -223.345993F), new Vector2(459.15799F, -224.222F)); + builder.AddCubicBezier(new Vector2(458.713989F, -225.098007F), new Vector2(458.492004F, -226.100006F), new Vector2(458.492004F, -227.227997F)); + builder.AddCubicBezier(new Vector2(458.492004F, -228.380005F), new Vector2(458.720001F, -229.393997F), new Vector2(459.175995F, -230.270004F)); + builder.AddCubicBezier(new Vector2(459.631989F, -231.145996F), new Vector2(460.268005F, -231.835999F), new Vector2(461.084015F, -232.339996F)); + builder.AddCubicBezier(new Vector2(461.899994F, -232.843994F), new Vector2(462.835999F, -233.095993F), new Vector2(463.891998F, -233.095993F)); + builder.AddCubicBezier(new Vector2(464.971985F, -233.095993F), new Vector2(465.920013F, -232.843994F), new Vector2(466.735992F, -232.339996F)); + builder.AddCubicBezier(new Vector2(467.552002F, -231.835999F), new Vector2(468.194F, -231.145996F), new Vector2(468.661987F, -230.270004F)); + builder.AddCubicBezier(new Vector2(469.130005F, -229.393997F), new Vector2(469.364014F, -228.391998F), new Vector2(469.364014F, -227.264008F)); + builder.AddCubicBezier(new Vector2(469.364014F, -226.112F), new Vector2(469.130005F, -225.098007F), new Vector2(468.661987F, -224.222F)); + builder.AddCubicBezier(new Vector2(468.194F, -223.345993F), new Vector2(467.552002F, -222.656006F), new Vector2(466.735992F, -222.151993F)); + builder.AddCubicBezier(new Vector2(465.920013F, -221.647995F), new Vector2(464.971985F, -221.395996F), new Vector2(463.891998F, -221.395996F)); + builder.AddCubicBezier(new Vector2(462.835999F, -221.395996F), new Vector2(461.894012F, -221.647995F), new Vector2(461.06601F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(458.671997F, -218.695999F)); + builder.AddLine(new Vector2(458.671997F, -223.304001F)); + builder.AddLine(new Vector2(458.059998F, -227.479996F)); + builder.AddLine(new Vector2(458.671997F, -231.619995F)); + builder.AddLine(new Vector2(458.671997F, -244.399994F)); + builder.AddLine(new Vector2(455.432007F, -244.399994F)); + builder.AddLine(new Vector2(455.432007F, -218.695999F)); + builder.AddLine(new Vector2(458.671997F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(468.661987F, -219.505997F)); + builder.AddCubicBezier(new Vector2(469.921997F, -220.285995F), new Vector2(470.911987F, -221.348007F), new Vector2(471.631989F, -222.692001F)); + builder.AddCubicBezier(new Vector2(472.35199F, -224.035995F), new Vector2(472.712006F, -225.548004F), new Vector2(472.712006F, -227.227997F)); + builder.AddCubicBezier(new Vector2(472.712006F, -228.908005F), new Vector2(472.35199F, -230.419998F), new Vector2(471.631989F, -231.764008F)); + builder.AddCubicBezier(new Vector2(470.911987F, -233.108002F), new Vector2(469.921997F, -234.175995F), new Vector2(468.661987F, -234.968002F)); + builder.AddCubicBezier(new Vector2(467.402008F, -235.759995F), new Vector2(465.992004F, -236.156006F), new Vector2(464.432007F, -236.156006F)); + builder.AddCubicBezier(new Vector2(463.160004F, -236.156006F), new Vector2(462.002014F, -235.886002F), new Vector2(460.958008F, -235.345993F)); + builder.AddCubicBezier(new Vector2(459.914001F, -234.806F), new Vector2(459.074005F, -234.061996F), new Vector2(458.437988F, -233.113998F)); + builder.AddCubicBezier(new Vector2(457.802002F, -232.166F), new Vector2(457.447998F, -231.067993F), new Vector2(457.376007F, -229.820007F)); + builder.AddLine(new Vector2(457.376007F, -224.671997F)); + builder.AddCubicBezier(new Vector2(457.447998F, -223.447998F), new Vector2(457.79599F, -222.356003F), new Vector2(458.420013F, -221.395996F)); + builder.AddCubicBezier(new Vector2(459.044006F, -220.436005F), new Vector2(459.877991F, -219.686005F), new Vector2(460.921997F, -219.145996F)); + builder.AddCubicBezier(new Vector2(461.966003F, -218.606003F), new Vector2(463.135986F, -218.335999F), new Vector2(464.432007F, -218.335999F)); + builder.AddCubicBezier(new Vector2(465.992004F, -218.335999F), new Vector2(467.402008F, -218.725998F), new Vector2(468.661987F, -219.505997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0558() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(440.384003F, -219.091995F)); + builder.AddCubicBezier(new Vector2(441.559998F, -219.595993F), new Vector2(442.567993F, -220.328003F), new Vector2(443.40799F, -221.287994F)); + builder.AddLine(new Vector2(441.320007F, -223.412003F)); + builder.AddCubicBezier(new Vector2(440.743988F, -222.740005F), new Vector2(440.053986F, -222.235992F), new Vector2(439.25F, -221.899994F)); + builder.AddCubicBezier(new Vector2(438.446014F, -221.563995F), new Vector2(437.563995F, -221.395996F), new Vector2(436.604004F, -221.395996F)); + builder.AddCubicBezier(new Vector2(435.451996F, -221.395996F), new Vector2(434.432007F, -221.641998F), new Vector2(433.544006F, -222.134003F)); + builder.AddCubicBezier(new Vector2(432.656006F, -222.626007F), new Vector2(431.971985F, -223.322006F), new Vector2(431.492004F, -224.222F)); + builder.AddCubicBezier(new Vector2(431.011993F, -225.121994F), new Vector2(430.772003F, -226.171997F), new Vector2(430.772003F, -227.371994F)); + builder.AddCubicBezier(new Vector2(430.772003F, -228.548004F), new Vector2(431F, -229.567993F), new Vector2(431.455994F, -230.432007F)); + builder.AddCubicBezier(new Vector2(431.911987F, -231.296005F), new Vector2(432.559998F, -231.968002F), new Vector2(433.399994F, -232.447998F)); + builder.AddCubicBezier(new Vector2(434.23999F, -232.927994F), new Vector2(435.212006F, -233.167999F), new Vector2(436.31601F, -233.167999F)); + builder.AddCubicBezier(new Vector2(437.372009F, -233.167999F), new Vector2(438.272003F, -232.945999F), new Vector2(439.015991F, -232.501999F)); + builder.AddCubicBezier(new Vector2(439.76001F, -232.057999F), new Vector2(440.335999F, -231.434006F), new Vector2(440.743988F, -230.630005F)); + builder.AddCubicBezier(new Vector2(441.152008F, -229.826004F), new Vector2(441.355988F, -228.848007F), new Vector2(441.355988F, -227.695999F)); + builder.AddLine(new Vector2(442.544006F, -228.740005F)); + builder.AddLine(new Vector2(429.835999F, -228.740005F)); + builder.AddLine(new Vector2(429.835999F, -226.039993F)); + builder.AddLine(new Vector2(444.272003F, -226.039993F)); + builder.AddCubicBezier(new Vector2(444.343994F, -226.376007F), new Vector2(444.391998F, -226.682007F), new Vector2(444.415985F, -226.957993F)); + builder.AddCubicBezier(new Vector2(444.440002F, -227.233994F), new Vector2(444.451996F, -227.492004F), new Vector2(444.451996F, -227.731995F)); + builder.AddCubicBezier(new Vector2(444.451996F, -229.363998F), new Vector2(444.109985F, -230.815994F), new Vector2(443.425995F, -232.087997F)); + builder.AddCubicBezier(new Vector2(442.742004F, -233.360001F), new Vector2(441.787994F, -234.356003F), new Vector2(440.563995F, -235.076004F)); + builder.AddCubicBezier(new Vector2(439.339996F, -235.796005F), new Vector2(437.947998F, -236.156006F), new Vector2(436.388F, -236.156006F)); + builder.AddCubicBezier(new Vector2(434.731995F, -236.156006F), new Vector2(433.238007F, -235.766006F), new Vector2(431.906006F, -234.985992F)); + builder.AddCubicBezier(new Vector2(430.574005F, -234.205994F), new Vector2(429.518005F, -233.143997F), new Vector2(428.738007F, -231.800003F)); + builder.AddCubicBezier(new Vector2(427.958008F, -230.455994F), new Vector2(427.567993F, -228.944F), new Vector2(427.567993F, -227.264008F)); + builder.AddCubicBezier(new Vector2(427.567993F, -225.559998F), new Vector2(427.963989F, -224.035995F), new Vector2(428.756012F, -222.692001F)); + builder.AddCubicBezier(new Vector2(429.548004F, -221.348007F), new Vector2(430.622009F, -220.285995F), new Vector2(431.977997F, -219.505997F)); + builder.AddCubicBezier(new Vector2(433.334015F, -218.725998F), new Vector2(434.876007F, -218.335999F), new Vector2(436.604004F, -218.335999F)); + builder.AddCubicBezier(new Vector2(437.947998F, -218.335999F), new Vector2(439.208008F, -218.587997F), new Vector2(440.384003F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0559() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(418.712006F, -218.695999F)); + builder.AddLine(new Vector2(426.559998F, -235.796005F)); + builder.AddLine(new Vector2(423.104004F, -235.796005F)); + builder.AddLine(new Vector2(416.768005F, -221.360001F)); + builder.AddLine(new Vector2(418.855988F, -221.360001F)); + builder.AddLine(new Vector2(412.556F, -235.796005F)); + builder.AddLine(new Vector2(408.955994F, -235.796005F)); + builder.AddLine(new Vector2(416.803986F, -218.695999F)); + builder.AddLine(new Vector2(418.712006F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0560() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(396.175995F, -222.223999F)); + builder.AddCubicBezier(new Vector2(395.335999F, -222.727997F), new Vector2(394.675995F, -223.417999F), new Vector2(394.196014F, -224.294006F)); + builder.AddCubicBezier(new Vector2(393.716003F, -225.169998F), new Vector2(393.476013F, -226.171997F), new Vector2(393.476013F, -227.300003F)); + builder.AddCubicBezier(new Vector2(393.476013F, -228.404007F), new Vector2(393.716003F, -229.388F), new Vector2(394.196014F, -230.251999F)); + builder.AddCubicBezier(new Vector2(394.675995F, -231.115997F), new Vector2(395.335999F, -231.794006F), new Vector2(396.175995F, -232.285995F)); + builder.AddCubicBezier(new Vector2(397.015991F, -232.778F), new Vector2(397.963989F, -233.024002F), new Vector2(399.019989F, -233.024002F)); + builder.AddCubicBezier(new Vector2(400.123993F, -233.024002F), new Vector2(401.089996F, -232.778F), new Vector2(401.917999F, -232.285995F)); + builder.AddCubicBezier(new Vector2(402.746002F, -231.794006F), new Vector2(403.406006F, -231.115997F), new Vector2(403.89801F, -230.251999F)); + builder.AddCubicBezier(new Vector2(404.390015F, -229.388F), new Vector2(404.635986F, -228.404007F), new Vector2(404.635986F, -227.300003F)); + builder.AddCubicBezier(new Vector2(404.635986F, -226.171997F), new Vector2(404.395996F, -225.169998F), new Vector2(403.915985F, -224.294006F)); + builder.AddCubicBezier(new Vector2(403.436005F, -223.417999F), new Vector2(402.776001F, -222.727997F), new Vector2(401.936005F, -222.223999F)); + builder.AddCubicBezier(new Vector2(401.096008F, -221.720001F), new Vector2(400.123993F, -221.468002F), new Vector2(399.019989F, -221.468002F)); + builder.AddCubicBezier(new Vector2(397.963989F, -221.468002F), new Vector2(397.015991F, -221.720001F), new Vector2(396.175995F, -222.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(403.574005F, -219.524002F)); + builder.AddCubicBezier(new Vector2(404.929993F, -220.315994F), new Vector2(406.003998F, -221.389999F), new Vector2(406.79599F, -222.746002F)); + builder.AddCubicBezier(new Vector2(407.588013F, -224.102005F), new Vector2(407.984009F, -225.619995F), new Vector2(407.984009F, -227.300003F)); + builder.AddCubicBezier(new Vector2(407.984009F, -228.955994F), new Vector2(407.588013F, -230.455994F), new Vector2(406.79599F, -231.800003F)); + builder.AddCubicBezier(new Vector2(406.003998F, -233.143997F), new Vector2(404.929993F, -234.205994F), new Vector2(403.574005F, -234.985992F)); + builder.AddCubicBezier(new Vector2(402.217987F, -235.766006F), new Vector2(400.700012F, -236.156006F), new Vector2(399.019989F, -236.156006F)); + builder.AddCubicBezier(new Vector2(397.364014F, -236.156006F), new Vector2(395.864014F, -235.759995F), new Vector2(394.519989F, -234.968002F)); + builder.AddCubicBezier(new Vector2(393.175995F, -234.175995F), new Vector2(392.108002F, -233.113998F), new Vector2(391.31601F, -231.781998F)); + builder.AddCubicBezier(new Vector2(390.523987F, -230.449997F), new Vector2(390.127991F, -228.955994F), new Vector2(390.127991F, -227.300003F)); + builder.AddCubicBezier(new Vector2(390.127991F, -225.619995F), new Vector2(390.523987F, -224.102005F), new Vector2(391.31601F, -222.746002F)); + builder.AddCubicBezier(new Vector2(392.108002F, -221.389999F), new Vector2(393.175995F, -220.315994F), new Vector2(394.519989F, -219.524002F)); + builder.AddCubicBezier(new Vector2(395.864014F, -218.731995F), new Vector2(397.364014F, -218.335999F), new Vector2(399.019989F, -218.335999F)); + builder.AddCubicBezier(new Vector2(400.700012F, -218.335999F), new Vector2(402.217987F, -218.731995F), new Vector2(403.574005F, -219.524002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0561() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(381.73999F, -231.944F)); + builder.AddCubicBezier(new Vector2(382.507996F, -232.712006F), new Vector2(383.492004F, -233.095993F), new Vector2(384.691986F, -233.095993F)); + builder.AddCubicBezier(new Vector2(385.268005F, -233.095993F), new Vector2(385.772003F, -233.011993F), new Vector2(386.20401F, -232.843994F)); + builder.AddCubicBezier(new Vector2(386.635986F, -232.675995F), new Vector2(387.032013F, -232.399994F), new Vector2(387.391998F, -232.016006F)); + builder.AddLine(new Vector2(389.515991F, -234.212006F)); + builder.AddCubicBezier(new Vector2(388.915985F, -234.908005F), new Vector2(388.268005F, -235.406006F), new Vector2(387.571991F, -235.705994F)); + builder.AddCubicBezier(new Vector2(386.876007F, -236.005997F), new Vector2(386.096008F, -236.156006F), new Vector2(385.231995F, -236.156006F)); + builder.AddCubicBezier(new Vector2(383.335999F, -236.156006F), new Vector2(381.884003F, -235.507996F), new Vector2(380.876007F, -234.212006F)); + builder.AddCubicBezier(new Vector2(379.868011F, -232.916F), new Vector2(379.364014F, -231.175995F), new Vector2(379.364014F, -228.992004F)); + builder.AddLine(new Vector2(380.588013F, -228.416F)); + builder.AddCubicBezier(new Vector2(380.588013F, -230F), new Vector2(380.971985F, -231.175995F), new Vector2(381.73999F, -231.944F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(380.588013F, -218.695999F)); + builder.AddLine(new Vector2(380.588013F, -235.796005F)); + builder.AddLine(new Vector2(377.347992F, -235.796005F)); + builder.AddLine(new Vector2(377.347992F, -218.695999F)); + builder.AddLine(new Vector2(380.588013F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0562() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(372.631989F, -244.399994F)); + builder.AddLine(new Vector2(369.355988F, -244.399994F)); + builder.AddLine(new Vector2(369.355988F, -231.619995F)); + builder.AddLine(new Vector2(369.967987F, -227.479996F)); + builder.AddLine(new Vector2(369.355988F, -223.304001F)); + builder.AddLine(new Vector2(369.355988F, -218.695999F)); + builder.AddLine(new Vector2(372.631989F, -218.695999F)); + builder.AddLine(new Vector2(372.631989F, -244.399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(361.309998F, -222.134003F)); + builder.AddCubicBezier(new Vector2(360.481995F, -222.626007F), new Vector2(359.834015F, -223.315994F), new Vector2(359.365997F, -224.203995F)); + builder.AddCubicBezier(new Vector2(358.89801F, -225.091995F), new Vector2(358.664001F, -226.112F), new Vector2(358.664001F, -227.264008F)); + builder.AddCubicBezier(new Vector2(358.664001F, -228.416F), new Vector2(358.89801F, -229.429993F), new Vector2(359.365997F, -230.306F)); + builder.AddCubicBezier(new Vector2(359.834015F, -231.182007F), new Vector2(360.476013F, -231.865997F), new Vector2(361.291992F, -232.358002F)); + builder.AddCubicBezier(new Vector2(362.108002F, -232.850006F), new Vector2(363.056F, -233.095993F), new Vector2(364.135986F, -233.095993F)); + builder.AddCubicBezier(new Vector2(365.216003F, -233.095993F), new Vector2(366.164001F, -232.843994F), new Vector2(366.980011F, -232.339996F)); + builder.AddCubicBezier(new Vector2(367.79599F, -231.835999F), new Vector2(368.432007F, -231.145996F), new Vector2(368.888F, -230.270004F)); + builder.AddCubicBezier(new Vector2(369.343994F, -229.393997F), new Vector2(369.571991F, -228.380005F), new Vector2(369.571991F, -227.227997F)); + builder.AddCubicBezier(new Vector2(369.571991F, -226.100006F), new Vector2(369.343994F, -225.098007F), new Vector2(368.888F, -224.222F)); + builder.AddCubicBezier(new Vector2(368.432007F, -223.345993F), new Vector2(367.79599F, -222.656006F), new Vector2(366.980011F, -222.151993F)); + builder.AddCubicBezier(new Vector2(366.164001F, -221.647995F), new Vector2(365.216003F, -221.395996F), new Vector2(364.135986F, -221.395996F)); + builder.AddCubicBezier(new Vector2(363.079987F, -221.395996F), new Vector2(362.138F, -221.641998F), new Vector2(361.309998F, -222.134003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(367.123993F, -219.145996F)); + builder.AddCubicBezier(new Vector2(368.156006F, -219.686005F), new Vector2(368.984009F, -220.436005F), new Vector2(369.608002F, -221.395996F)); + builder.AddCubicBezier(new Vector2(370.231995F, -222.356003F), new Vector2(370.579987F, -223.447998F), new Vector2(370.652008F, -224.671997F)); + builder.AddLine(new Vector2(370.652008F, -229.820007F)); + builder.AddCubicBezier(new Vector2(370.579987F, -231.067993F), new Vector2(370.226013F, -232.166F), new Vector2(369.589996F, -233.113998F)); + builder.AddCubicBezier(new Vector2(368.95401F, -234.061996F), new Vector2(368.119995F, -234.806F), new Vector2(367.088013F, -235.345993F)); + builder.AddCubicBezier(new Vector2(366.056F, -235.886002F), new Vector2(364.891998F, -236.156006F), new Vector2(363.596008F, -236.156006F)); + builder.AddCubicBezier(new Vector2(362.036011F, -236.156006F), new Vector2(360.631989F, -235.759995F), new Vector2(359.384003F, -234.968002F)); + builder.AddCubicBezier(new Vector2(358.135986F, -234.175995F), new Vector2(357.145996F, -233.108002F), new Vector2(356.414001F, -231.764008F)); + builder.AddCubicBezier(new Vector2(355.682007F, -230.419998F), new Vector2(355.31601F, -228.908005F), new Vector2(355.31601F, -227.227997F)); + builder.AddCubicBezier(new Vector2(355.31601F, -225.548004F), new Vector2(355.682007F, -224.035995F), new Vector2(356.414001F, -222.692001F)); + builder.AddCubicBezier(new Vector2(357.145996F, -221.348007F), new Vector2(358.135986F, -220.285995F), new Vector2(359.384003F, -219.505997F)); + builder.AddCubicBezier(new Vector2(360.631989F, -218.725998F), new Vector2(362.036011F, -218.335999F), new Vector2(363.596008F, -218.335999F)); + builder.AddCubicBezier(new Vector2(364.915985F, -218.335999F), new Vector2(366.09201F, -218.606003F), new Vector2(367.123993F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0563() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(341.059998F, -213.727997F)); + builder.AddLine(new Vector2(343.471985F, -218.192001F)); + builder.AddCubicBezier(new Vector2(343.783997F, -218.792007F), new Vector2(343.993988F, -219.278F), new Vector2(344.10199F, -219.649994F)); + builder.AddCubicBezier(new Vector2(344.209991F, -220.022003F), new Vector2(344.264008F, -220.339996F), new Vector2(344.264008F, -220.604004F)); + builder.AddCubicBezier(new Vector2(344.264008F, -221.300003F), new Vector2(344.023987F, -221.882004F), new Vector2(343.544006F, -222.350006F)); + builder.AddCubicBezier(new Vector2(343.063995F, -222.817993F), new Vector2(342.511993F, -223.052002F), new Vector2(341.888F, -223.052002F)); + builder.AddCubicBezier(new Vector2(341.191986F, -223.052002F), new Vector2(340.615997F, -222.817993F), new Vector2(340.160004F, -222.350006F)); + builder.AddCubicBezier(new Vector2(339.70401F, -221.882004F), new Vector2(339.476013F, -221.300003F), new Vector2(339.476013F, -220.604004F)); + builder.AddCubicBezier(new Vector2(339.476013F, -219.979996F), new Vector2(339.686005F, -219.457993F), new Vector2(340.105988F, -219.037994F)); + builder.AddCubicBezier(new Vector2(340.526001F, -218.617996F), new Vector2(340.988007F, -218.408005F), new Vector2(341.492004F, -218.408005F)); + builder.AddCubicBezier(new Vector2(341.731995F, -218.408005F), new Vector2(341.947998F, -218.492004F), new Vector2(342.140015F, -218.660004F)); + builder.AddCubicBezier(new Vector2(342.332001F, -218.828003F), new Vector2(342.488007F, -219.044006F), new Vector2(342.608002F, -219.307999F)); + builder.AddLine(new Vector2(341.455994F, -219.020004F)); + builder.AddLine(new Vector2(339.223999F, -214.735992F)); + builder.AddLine(new Vector2(341.059998F, -213.727997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0564() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(331.123993F, -231.944F)); + builder.AddCubicBezier(new Vector2(331.891998F, -232.712006F), new Vector2(332.876007F, -233.095993F), new Vector2(334.075989F, -233.095993F)); + builder.AddCubicBezier(new Vector2(334.652008F, -233.095993F), new Vector2(335.156006F, -233.011993F), new Vector2(335.588013F, -232.843994F)); + builder.AddCubicBezier(new Vector2(336.019989F, -232.675995F), new Vector2(336.415985F, -232.399994F), new Vector2(336.776001F, -232.016006F)); + builder.AddLine(new Vector2(338.899994F, -234.212006F)); + builder.AddCubicBezier(new Vector2(338.299988F, -234.908005F), new Vector2(337.652008F, -235.406006F), new Vector2(336.955994F, -235.705994F)); + builder.AddCubicBezier(new Vector2(336.26001F, -236.005997F), new Vector2(335.480011F, -236.156006F), new Vector2(334.615997F, -236.156006F)); + builder.AddCubicBezier(new Vector2(332.720001F, -236.156006F), new Vector2(331.268005F, -235.507996F), new Vector2(330.26001F, -234.212006F)); + builder.AddCubicBezier(new Vector2(329.252014F, -232.916F), new Vector2(328.747986F, -231.175995F), new Vector2(328.747986F, -228.992004F)); + builder.AddLine(new Vector2(329.971985F, -228.416F)); + builder.AddCubicBezier(new Vector2(329.971985F, -230F), new Vector2(330.355988F, -231.175995F), new Vector2(331.123993F, -231.944F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(329.971985F, -218.695999F)); + builder.AddLine(new Vector2(329.971985F, -235.796005F)); + builder.AddLine(new Vector2(326.731995F, -235.796005F)); + builder.AddLine(new Vector2(326.731995F, -218.695999F)); + builder.AddLine(new Vector2(329.971985F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0565() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(319.135986F, -219.091995F)); + builder.AddCubicBezier(new Vector2(320.312012F, -219.595993F), new Vector2(321.320007F, -220.328003F), new Vector2(322.160004F, -221.287994F)); + builder.AddLine(new Vector2(320.071991F, -223.412003F)); + builder.AddCubicBezier(new Vector2(319.496002F, -222.740005F), new Vector2(318.806F, -222.235992F), new Vector2(318.002014F, -221.899994F)); + builder.AddCubicBezier(new Vector2(317.197998F, -221.563995F), new Vector2(316.31601F, -221.395996F), new Vector2(315.355988F, -221.395996F)); + builder.AddCubicBezier(new Vector2(314.20401F, -221.395996F), new Vector2(313.18399F, -221.641998F), new Vector2(312.29599F, -222.134003F)); + builder.AddCubicBezier(new Vector2(311.40799F, -222.626007F), new Vector2(310.723999F, -223.322006F), new Vector2(310.243988F, -224.222F)); + builder.AddCubicBezier(new Vector2(309.764008F, -225.121994F), new Vector2(309.523987F, -226.171997F), new Vector2(309.523987F, -227.371994F)); + builder.AddCubicBezier(new Vector2(309.523987F, -228.548004F), new Vector2(309.752014F, -229.567993F), new Vector2(310.208008F, -230.432007F)); + builder.AddCubicBezier(new Vector2(310.664001F, -231.296005F), new Vector2(311.312012F, -231.968002F), new Vector2(312.152008F, -232.447998F)); + builder.AddCubicBezier(new Vector2(312.992004F, -232.927994F), new Vector2(313.963989F, -233.167999F), new Vector2(315.067993F, -233.167999F)); + builder.AddCubicBezier(new Vector2(316.123993F, -233.167999F), new Vector2(317.023987F, -232.945999F), new Vector2(317.768005F, -232.501999F)); + builder.AddCubicBezier(new Vector2(318.511993F, -232.057999F), new Vector2(319.088013F, -231.434006F), new Vector2(319.496002F, -230.630005F)); + builder.AddCubicBezier(new Vector2(319.903992F, -229.826004F), new Vector2(320.108002F, -228.848007F), new Vector2(320.108002F, -227.695999F)); + builder.AddLine(new Vector2(321.29599F, -228.740005F)); + builder.AddLine(new Vector2(308.588013F, -228.740005F)); + builder.AddLine(new Vector2(308.588013F, -226.039993F)); + builder.AddLine(new Vector2(323.023987F, -226.039993F)); + builder.AddCubicBezier(new Vector2(323.096008F, -226.376007F), new Vector2(323.144012F, -226.682007F), new Vector2(323.167999F, -226.957993F)); + builder.AddCubicBezier(new Vector2(323.191986F, -227.233994F), new Vector2(323.20401F, -227.492004F), new Vector2(323.20401F, -227.731995F)); + builder.AddCubicBezier(new Vector2(323.20401F, -229.363998F), new Vector2(322.862F, -230.815994F), new Vector2(322.178009F, -232.087997F)); + builder.AddCubicBezier(new Vector2(321.493988F, -233.360001F), new Vector2(320.540009F, -234.356003F), new Vector2(319.31601F, -235.076004F)); + builder.AddCubicBezier(new Vector2(318.09201F, -235.796005F), new Vector2(316.700012F, -236.156006F), new Vector2(315.140015F, -236.156006F)); + builder.AddCubicBezier(new Vector2(313.484009F, -236.156006F), new Vector2(311.98999F, -235.766006F), new Vector2(310.65799F, -234.985992F)); + builder.AddCubicBezier(new Vector2(309.325989F, -234.205994F), new Vector2(308.269989F, -233.143997F), new Vector2(307.48999F, -231.800003F)); + builder.AddCubicBezier(new Vector2(306.709991F, -230.455994F), new Vector2(306.320007F, -228.944F), new Vector2(306.320007F, -227.264008F)); + builder.AddCubicBezier(new Vector2(306.320007F, -225.559998F), new Vector2(306.716003F, -224.035995F), new Vector2(307.507996F, -222.692001F)); + builder.AddCubicBezier(new Vector2(308.299988F, -221.348007F), new Vector2(309.373993F, -220.285995F), new Vector2(310.730011F, -219.505997F)); + builder.AddCubicBezier(new Vector2(312.085999F, -218.725998F), new Vector2(313.627991F, -218.335999F), new Vector2(315.355988F, -218.335999F)); + builder.AddCubicBezier(new Vector2(316.700012F, -218.335999F), new Vector2(317.959991F, -218.587997F), new Vector2(319.135986F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0566() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(297.463989F, -218.695999F)); + builder.AddLine(new Vector2(305.312012F, -235.796005F)); + builder.AddLine(new Vector2(301.855988F, -235.796005F)); + builder.AddLine(new Vector2(295.519989F, -221.360001F)); + builder.AddLine(new Vector2(297.608002F, -221.360001F)); + builder.AddLine(new Vector2(291.308014F, -235.796005F)); + builder.AddLine(new Vector2(287.708008F, -235.796005F)); + builder.AddLine(new Vector2(295.556F, -218.695999F)); + builder.AddLine(new Vector2(297.463989F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0567() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(274.928009F, -222.223999F)); + builder.AddCubicBezier(new Vector2(274.088013F, -222.727997F), new Vector2(273.428009F, -223.417999F), new Vector2(272.947998F, -224.294006F)); + builder.AddCubicBezier(new Vector2(272.467987F, -225.169998F), new Vector2(272.227997F, -226.171997F), new Vector2(272.227997F, -227.300003F)); + builder.AddCubicBezier(new Vector2(272.227997F, -228.404007F), new Vector2(272.467987F, -229.388F), new Vector2(272.947998F, -230.251999F)); + builder.AddCubicBezier(new Vector2(273.428009F, -231.115997F), new Vector2(274.088013F, -231.794006F), new Vector2(274.928009F, -232.285995F)); + builder.AddCubicBezier(new Vector2(275.768005F, -232.778F), new Vector2(276.716003F, -233.024002F), new Vector2(277.772003F, -233.024002F)); + builder.AddCubicBezier(new Vector2(278.876007F, -233.024002F), new Vector2(279.84201F, -232.778F), new Vector2(280.670013F, -232.285995F)); + builder.AddCubicBezier(new Vector2(281.497986F, -231.794006F), new Vector2(282.15799F, -231.115997F), new Vector2(282.649994F, -230.251999F)); + builder.AddCubicBezier(new Vector2(283.141998F, -229.388F), new Vector2(283.388F, -228.404007F), new Vector2(283.388F, -227.300003F)); + builder.AddCubicBezier(new Vector2(283.388F, -226.171997F), new Vector2(283.14801F, -225.169998F), new Vector2(282.667999F, -224.294006F)); + builder.AddCubicBezier(new Vector2(282.187988F, -223.417999F), new Vector2(281.528015F, -222.727997F), new Vector2(280.687988F, -222.223999F)); + builder.AddCubicBezier(new Vector2(279.847992F, -221.720001F), new Vector2(278.876007F, -221.468002F), new Vector2(277.772003F, -221.468002F)); + builder.AddCubicBezier(new Vector2(276.716003F, -221.468002F), new Vector2(275.768005F, -221.720001F), new Vector2(274.928009F, -222.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(282.325989F, -219.524002F)); + builder.AddCubicBezier(new Vector2(283.682007F, -220.315994F), new Vector2(284.756012F, -221.389999F), new Vector2(285.548004F, -222.746002F)); + builder.AddCubicBezier(new Vector2(286.339996F, -224.102005F), new Vector2(286.735992F, -225.619995F), new Vector2(286.735992F, -227.300003F)); + builder.AddCubicBezier(new Vector2(286.735992F, -228.955994F), new Vector2(286.339996F, -230.455994F), new Vector2(285.548004F, -231.800003F)); + builder.AddCubicBezier(new Vector2(284.756012F, -233.143997F), new Vector2(283.682007F, -234.205994F), new Vector2(282.325989F, -234.985992F)); + builder.AddCubicBezier(new Vector2(280.970001F, -235.766006F), new Vector2(279.451996F, -236.156006F), new Vector2(277.772003F, -236.156006F)); + builder.AddCubicBezier(new Vector2(276.115997F, -236.156006F), new Vector2(274.615997F, -235.759995F), new Vector2(273.272003F, -234.968002F)); + builder.AddCubicBezier(new Vector2(271.928009F, -234.175995F), new Vector2(270.859985F, -233.113998F), new Vector2(270.067993F, -231.781998F)); + builder.AddCubicBezier(new Vector2(269.276001F, -230.449997F), new Vector2(268.880005F, -228.955994F), new Vector2(268.880005F, -227.300003F)); + builder.AddCubicBezier(new Vector2(268.880005F, -225.619995F), new Vector2(269.276001F, -224.102005F), new Vector2(270.067993F, -222.746002F)); + builder.AddCubicBezier(new Vector2(270.859985F, -221.389999F), new Vector2(271.928009F, -220.315994F), new Vector2(273.272003F, -219.524002F)); + builder.AddCubicBezier(new Vector2(274.615997F, -218.731995F), new Vector2(276.115997F, -218.335999F), new Vector2(277.772003F, -218.335999F)); + builder.AddCubicBezier(new Vector2(279.451996F, -218.335999F), new Vector2(280.970001F, -218.731995F), new Vector2(282.325989F, -219.524002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0568() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(264.667999F, -226.292007F)); + builder.AddLine(new Vector2(264.667999F, -229.388F)); + builder.AddLine(new Vector2(252.824005F, -229.388F)); + builder.AddLine(new Vector2(252.824005F, -226.292007F)); + builder.AddLine(new Vector2(264.667999F, -226.292007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0569() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(236.335999F, -218.695999F)); + builder.AddLine(new Vector2(236.335999F, -235.796005F)); + builder.AddLine(new Vector2(233.095993F, -235.796005F)); + builder.AddLine(new Vector2(233.095993F, -218.695999F)); + builder.AddLine(new Vector2(236.335999F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(248.432007F, -218.695999F)); + builder.AddLine(new Vector2(248.432007F, -229.315994F)); + builder.AddCubicBezier(new Vector2(248.432007F, -230.492004F), new Vector2(248.143997F, -231.602005F), new Vector2(247.567993F, -232.645996F)); + builder.AddCubicBezier(new Vector2(246.992004F, -233.690002F), new Vector2(246.205994F, -234.535995F), new Vector2(245.210007F, -235.184006F)); + builder.AddCubicBezier(new Vector2(244.214005F, -235.832001F), new Vector2(243.067993F, -236.156006F), new Vector2(241.772003F, -236.156006F)); + builder.AddCubicBezier(new Vector2(240.475998F, -236.156006F), new Vector2(239.311996F, -235.862F), new Vector2(238.279999F, -235.274002F)); + builder.AddCubicBezier(new Vector2(237.248001F, -234.686005F), new Vector2(236.444F, -233.888F), new Vector2(235.867996F, -232.880005F)); + builder.AddCubicBezier(new Vector2(235.292007F, -231.871994F), new Vector2(235.003998F, -230.720001F), new Vector2(235.003998F, -229.423996F)); + builder.AddLine(new Vector2(236.335999F, -228.667999F)); + builder.AddCubicBezier(new Vector2(236.335999F, -229.531998F), new Vector2(236.528F, -230.300003F), new Vector2(236.912003F, -230.972F)); + builder.AddCubicBezier(new Vector2(237.296005F, -231.643997F), new Vector2(237.824005F, -232.171997F), new Vector2(238.496002F, -232.556F)); + builder.AddCubicBezier(new Vector2(239.167999F, -232.940002F), new Vector2(239.936005F, -233.132004F), new Vector2(240.800003F, -233.132004F)); + builder.AddCubicBezier(new Vector2(242.095993F, -233.132004F), new Vector2(243.145996F, -232.712006F), new Vector2(243.949997F, -231.871994F)); + builder.AddCubicBezier(new Vector2(244.753998F, -231.031998F), new Vector2(245.156006F, -229.964005F), new Vector2(245.156006F, -228.667999F)); + builder.AddLine(new Vector2(245.156006F, -218.695999F)); + builder.AddLine(new Vector2(248.432007F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0570() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(228.380005F, -218.695999F)); + builder.AddLine(new Vector2(228.380005F, -235.796005F)); + builder.AddLine(new Vector2(225.104004F, -235.796005F)); + builder.AddLine(new Vector2(225.104004F, -231.619995F)); + builder.AddLine(new Vector2(225.716003F, -227.479996F)); + builder.AddLine(new Vector2(225.104004F, -223.304001F)); + builder.AddLine(new Vector2(225.104004F, -218.695999F)); + builder.AddLine(new Vector2(228.380005F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(217.076004F, -222.151993F)); + builder.AddCubicBezier(new Vector2(216.235992F, -222.656006F), new Vector2(215.582001F, -223.345993F), new Vector2(215.113998F, -224.222F)); + builder.AddCubicBezier(new Vector2(214.645996F, -225.098007F), new Vector2(214.412003F, -226.112F), new Vector2(214.412003F, -227.264008F)); + builder.AddCubicBezier(new Vector2(214.412003F, -228.391998F), new Vector2(214.645996F, -229.393997F), new Vector2(215.113998F, -230.270004F)); + builder.AddCubicBezier(new Vector2(215.582001F, -231.145996F), new Vector2(216.229996F, -231.835999F), new Vector2(217.057999F, -232.339996F)); + builder.AddCubicBezier(new Vector2(217.886002F, -232.843994F), new Vector2(218.839996F, -233.095993F), new Vector2(219.919998F, -233.095993F)); + builder.AddCubicBezier(new Vector2(221F, -233.095993F), new Vector2(221.942001F, -232.850006F), new Vector2(222.746002F, -232.358002F)); + builder.AddCubicBezier(new Vector2(223.550003F, -231.865997F), new Vector2(224.179993F, -231.175995F), new Vector2(224.636002F, -230.287994F)); + builder.AddCubicBezier(new Vector2(225.091995F, -229.399994F), new Vector2(225.320007F, -228.380005F), new Vector2(225.320007F, -227.227997F)); + builder.AddCubicBezier(new Vector2(225.320007F, -225.524002F), new Vector2(224.828003F, -224.126007F), new Vector2(223.843994F, -223.033997F)); + builder.AddCubicBezier(new Vector2(222.860001F, -221.942001F), new Vector2(221.563995F, -221.395996F), new Vector2(219.955994F, -221.395996F)); + builder.AddCubicBezier(new Vector2(218.876007F, -221.395996F), new Vector2(217.916F, -221.647995F), new Vector2(217.076004F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(222.908005F, -219.145996F)); + builder.AddCubicBezier(new Vector2(223.940002F, -219.686005F), new Vector2(224.761993F, -220.436005F), new Vector2(225.373993F, -221.395996F)); + builder.AddCubicBezier(new Vector2(225.985992F, -222.356003F), new Vector2(226.328003F, -223.447998F), new Vector2(226.399994F, -224.671997F)); + builder.AddLine(new Vector2(226.399994F, -229.820007F)); + builder.AddCubicBezier(new Vector2(226.328003F, -231.067993F), new Vector2(225.979996F, -232.166F), new Vector2(225.356003F, -233.113998F)); + builder.AddCubicBezier(new Vector2(224.731995F, -234.061996F), new Vector2(223.910004F, -234.806F), new Vector2(222.889999F, -235.345993F)); + builder.AddCubicBezier(new Vector2(221.869995F, -235.886002F), new Vector2(220.712006F, -236.156006F), new Vector2(219.416F, -236.156006F)); + builder.AddCubicBezier(new Vector2(217.832001F, -236.156006F), new Vector2(216.410004F, -235.759995F), new Vector2(215.149994F, -234.968002F)); + builder.AddCubicBezier(new Vector2(213.889999F, -234.175995F), new Vector2(212.893997F, -233.108002F), new Vector2(212.162003F, -231.764008F)); + builder.AddCubicBezier(new Vector2(211.429993F, -230.419998F), new Vector2(211.063995F, -228.908005F), new Vector2(211.063995F, -227.227997F)); + builder.AddCubicBezier(new Vector2(211.063995F, -225.548004F), new Vector2(211.429993F, -224.035995F), new Vector2(212.162003F, -222.692001F)); + builder.AddCubicBezier(new Vector2(212.893997F, -221.348007F), new Vector2(213.889999F, -220.285995F), new Vector2(215.149994F, -219.505997F)); + builder.AddCubicBezier(new Vector2(216.410004F, -218.725998F), new Vector2(217.832001F, -218.335999F), new Vector2(219.416F, -218.335999F)); + builder.AddCubicBezier(new Vector2(220.712006F, -218.335999F), new Vector2(221.876007F, -218.606003F), new Vector2(222.908005F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0571() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(202.639999F, -231.944F)); + builder.AddCubicBezier(new Vector2(203.408005F, -232.712006F), new Vector2(204.391998F, -233.095993F), new Vector2(205.591995F, -233.095993F)); + builder.AddCubicBezier(new Vector2(206.167999F, -233.095993F), new Vector2(206.671997F, -233.011993F), new Vector2(207.104004F, -232.843994F)); + builder.AddCubicBezier(new Vector2(207.535995F, -232.675995F), new Vector2(207.932007F, -232.399994F), new Vector2(208.292007F, -232.016006F)); + builder.AddLine(new Vector2(210.416F, -234.212006F)); + builder.AddCubicBezier(new Vector2(209.815994F, -234.908005F), new Vector2(209.167999F, -235.406006F), new Vector2(208.472F, -235.705994F)); + builder.AddCubicBezier(new Vector2(207.776001F, -236.005997F), new Vector2(206.996002F, -236.156006F), new Vector2(206.132004F, -236.156006F)); + builder.AddCubicBezier(new Vector2(204.235992F, -236.156006F), new Vector2(202.783997F, -235.507996F), new Vector2(201.776001F, -234.212006F)); + builder.AddCubicBezier(new Vector2(200.768005F, -232.916F), new Vector2(200.264008F, -231.175995F), new Vector2(200.264008F, -228.992004F)); + builder.AddLine(new Vector2(201.488007F, -228.416F)); + builder.AddCubicBezier(new Vector2(201.488007F, -230F), new Vector2(201.871994F, -231.175995F), new Vector2(202.639999F, -231.944F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(201.488007F, -218.695999F)); + builder.AddLine(new Vector2(201.488007F, -235.796005F)); + builder.AddLine(new Vector2(198.248001F, -235.796005F)); + builder.AddLine(new Vector2(198.248001F, -218.695999F)); + builder.AddLine(new Vector2(201.488007F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0572() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(183.199997F, -219.091995F)); + builder.AddCubicBezier(new Vector2(184.376007F, -219.595993F), new Vector2(185.384003F, -220.328003F), new Vector2(186.223999F, -221.287994F)); + builder.AddLine(new Vector2(184.136002F, -223.412003F)); + builder.AddCubicBezier(new Vector2(183.559998F, -222.740005F), new Vector2(182.869995F, -222.235992F), new Vector2(182.065994F, -221.899994F)); + builder.AddCubicBezier(new Vector2(181.261993F, -221.563995F), new Vector2(180.380005F, -221.395996F), new Vector2(179.419998F, -221.395996F)); + builder.AddCubicBezier(new Vector2(178.268005F, -221.395996F), new Vector2(177.248001F, -221.641998F), new Vector2(176.360001F, -222.134003F)); + builder.AddCubicBezier(new Vector2(175.472F, -222.626007F), new Vector2(174.787994F, -223.322006F), new Vector2(174.307999F, -224.222F)); + builder.AddCubicBezier(new Vector2(173.828003F, -225.121994F), new Vector2(173.587997F, -226.171997F), new Vector2(173.587997F, -227.371994F)); + builder.AddCubicBezier(new Vector2(173.587997F, -228.548004F), new Vector2(173.815994F, -229.567993F), new Vector2(174.272003F, -230.432007F)); + builder.AddCubicBezier(new Vector2(174.727997F, -231.296005F), new Vector2(175.376007F, -231.968002F), new Vector2(176.216003F, -232.447998F)); + builder.AddCubicBezier(new Vector2(177.056F, -232.927994F), new Vector2(178.028F, -233.167999F), new Vector2(179.132004F, -233.167999F)); + builder.AddCubicBezier(new Vector2(180.188004F, -233.167999F), new Vector2(181.087997F, -232.945999F), new Vector2(181.832001F, -232.501999F)); + builder.AddCubicBezier(new Vector2(182.576004F, -232.057999F), new Vector2(183.151993F, -231.434006F), new Vector2(183.559998F, -230.630005F)); + builder.AddCubicBezier(new Vector2(183.968002F, -229.826004F), new Vector2(184.171997F, -228.848007F), new Vector2(184.171997F, -227.695999F)); + builder.AddLine(new Vector2(185.360001F, -228.740005F)); + builder.AddLine(new Vector2(172.651993F, -228.740005F)); + builder.AddLine(new Vector2(172.651993F, -226.039993F)); + builder.AddLine(new Vector2(187.087997F, -226.039993F)); + builder.AddCubicBezier(new Vector2(187.160004F, -226.376007F), new Vector2(187.207993F, -226.682007F), new Vector2(187.231995F, -226.957993F)); + builder.AddCubicBezier(new Vector2(187.255997F, -227.233994F), new Vector2(187.268005F, -227.492004F), new Vector2(187.268005F, -227.731995F)); + builder.AddCubicBezier(new Vector2(187.268005F, -229.363998F), new Vector2(186.925995F, -230.815994F), new Vector2(186.242004F, -232.087997F)); + builder.AddCubicBezier(new Vector2(185.557999F, -233.360001F), new Vector2(184.604004F, -234.356003F), new Vector2(183.380005F, -235.076004F)); + builder.AddCubicBezier(new Vector2(182.156006F, -235.796005F), new Vector2(180.764008F, -236.156006F), new Vector2(179.203995F, -236.156006F)); + builder.AddCubicBezier(new Vector2(177.548004F, -236.156006F), new Vector2(176.054001F, -235.766006F), new Vector2(174.722F, -234.985992F)); + builder.AddCubicBezier(new Vector2(173.389999F, -234.205994F), new Vector2(172.334F, -233.143997F), new Vector2(171.554001F, -231.800003F)); + builder.AddCubicBezier(new Vector2(170.774002F, -230.455994F), new Vector2(170.384003F, -228.944F), new Vector2(170.384003F, -227.264008F)); + builder.AddCubicBezier(new Vector2(170.384003F, -225.559998F), new Vector2(170.779999F, -224.035995F), new Vector2(171.572006F, -222.692001F)); + builder.AddCubicBezier(new Vector2(172.363998F, -221.348007F), new Vector2(173.438004F, -220.285995F), new Vector2(174.794006F, -219.505997F)); + builder.AddCubicBezier(new Vector2(176.149994F, -218.725998F), new Vector2(177.692001F, -218.335999F), new Vector2(179.419998F, -218.335999F)); + builder.AddCubicBezier(new Vector2(180.764008F, -218.335999F), new Vector2(182.024002F, -218.587997F), new Vector2(183.199997F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0573() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(166.748001F, -218.695999F)); + builder.AddLine(new Vector2(166.748001F, -244.399994F)); + builder.AddLine(new Vector2(163.507996F, -244.399994F)); + builder.AddLine(new Vector2(163.507996F, -218.695999F)); + builder.AddLine(new Vector2(166.748001F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0574() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(157.406006F, -219.091995F)); + builder.AddCubicBezier(new Vector2(158.546005F, -219.595993F), new Vector2(159.511993F, -220.304001F), new Vector2(160.304001F, -221.216003F)); + builder.AddLine(new Vector2(158.179993F, -223.376007F)); + builder.AddCubicBezier(new Vector2(157.628006F, -222.751999F), new Vector2(156.973999F, -222.278F), new Vector2(156.218002F, -221.953995F)); + builder.AddCubicBezier(new Vector2(155.462006F, -221.630005F), new Vector2(154.628006F, -221.468002F), new Vector2(153.716003F, -221.468002F)); + builder.AddCubicBezier(new Vector2(152.636002F, -221.468002F), new Vector2(151.675995F, -221.720001F), new Vector2(150.835999F, -222.223999F)); + builder.AddCubicBezier(new Vector2(149.996002F, -222.727997F), new Vector2(149.335999F, -223.412003F), new Vector2(148.856003F, -224.276001F)); + builder.AddCubicBezier(new Vector2(148.376007F, -225.139999F), new Vector2(148.136002F, -226.136002F), new Vector2(148.136002F, -227.264008F)); + builder.AddCubicBezier(new Vector2(148.136002F, -228.391998F), new Vector2(148.376007F, -229.388F), new Vector2(148.856003F, -230.251999F)); + builder.AddCubicBezier(new Vector2(149.335999F, -231.115997F), new Vector2(149.996002F, -231.794006F), new Vector2(150.835999F, -232.285995F)); + builder.AddCubicBezier(new Vector2(151.675995F, -232.778F), new Vector2(152.636002F, -233.024002F), new Vector2(153.716003F, -233.024002F)); + builder.AddCubicBezier(new Vector2(154.604004F, -233.024002F), new Vector2(155.432007F, -232.862F), new Vector2(156.199997F, -232.537994F)); + builder.AddCubicBezier(new Vector2(156.968002F, -232.214005F), new Vector2(157.615997F, -231.740005F), new Vector2(158.143997F, -231.115997F)); + builder.AddLine(new Vector2(160.304001F, -233.276001F)); + builder.AddCubicBezier(new Vector2(159.488007F, -234.212006F), new Vector2(158.516006F, -234.925995F), new Vector2(157.388F, -235.417999F)); + builder.AddCubicBezier(new Vector2(156.259995F, -235.910004F), new Vector2(155.035995F, -236.156006F), new Vector2(153.716003F, -236.156006F)); + builder.AddCubicBezier(new Vector2(152.035995F, -236.156006F), new Vector2(150.518005F, -235.766006F), new Vector2(149.162003F, -234.985992F)); + builder.AddCubicBezier(new Vector2(147.806F, -234.205994F), new Vector2(146.738007F, -233.143997F), new Vector2(145.957993F, -231.800003F)); + builder.AddCubicBezier(new Vector2(145.177994F, -230.455994F), new Vector2(144.787994F, -228.944F), new Vector2(144.787994F, -227.264008F)); + builder.AddCubicBezier(new Vector2(144.787994F, -225.608002F), new Vector2(145.177994F, -224.102005F), new Vector2(145.957993F, -222.746002F)); + builder.AddCubicBezier(new Vector2(146.738007F, -221.389999F), new Vector2(147.806F, -220.315994F), new Vector2(149.162003F, -219.524002F)); + builder.AddCubicBezier(new Vector2(150.518005F, -218.731995F), new Vector2(152.035995F, -218.335999F), new Vector2(153.716003F, -218.335999F)); + builder.AddCubicBezier(new Vector2(155.035995F, -218.335999F), new Vector2(156.266006F, -218.587997F), new Vector2(157.406006F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0575() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(140.972F, -239.809998F)); + builder.AddCubicBezier(new Vector2(141.356003F, -240.205994F), new Vector2(141.548004F, -240.703995F), new Vector2(141.548004F, -241.304001F)); + builder.AddCubicBezier(new Vector2(141.548004F, -241.880005F), new Vector2(141.356003F, -242.365997F), new Vector2(140.972F, -242.761993F)); + builder.AddCubicBezier(new Vector2(140.587997F, -243.158005F), new Vector2(140.095993F, -243.356003F), new Vector2(139.496002F, -243.356003F)); + builder.AddCubicBezier(new Vector2(138.895996F, -243.356003F), new Vector2(138.404007F, -243.158005F), new Vector2(138.020004F, -242.761993F)); + builder.AddCubicBezier(new Vector2(137.636002F, -242.365997F), new Vector2(137.444F, -241.880005F), new Vector2(137.444F, -241.304001F)); + builder.AddCubicBezier(new Vector2(137.444F, -240.703995F), new Vector2(137.636002F, -240.205994F), new Vector2(138.020004F, -239.809998F)); + builder.AddCubicBezier(new Vector2(138.404007F, -239.414001F), new Vector2(138.895996F, -239.216003F), new Vector2(139.496002F, -239.216003F)); + builder.AddCubicBezier(new Vector2(140.095993F, -239.216003F), new Vector2(140.587997F, -239.414001F), new Vector2(140.972F, -239.809998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(141.115997F, -218.695999F)); + builder.AddLine(new Vector2(141.115997F, -235.796005F)); + builder.AddLine(new Vector2(137.839996F, -235.796005F)); + builder.AddLine(new Vector2(137.839996F, -218.695999F)); + builder.AddLine(new Vector2(141.115997F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0576() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(121.351997F, -218.695999F)); + builder.AddLine(new Vector2(121.351997F, -244.399994F)); + builder.AddLine(new Vector2(118.112F, -244.399994F)); + builder.AddLine(new Vector2(118.112F, -218.695999F)); + builder.AddLine(new Vector2(121.351997F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(133.447998F, -218.695999F)); + builder.AddLine(new Vector2(133.447998F, -229.315994F)); + builder.AddCubicBezier(new Vector2(133.447998F, -230.660004F), new Vector2(133.160004F, -231.848007F), new Vector2(132.584F, -232.880005F)); + builder.AddCubicBezier(new Vector2(132.007996F, -233.912003F), new Vector2(131.222F, -234.716003F), new Vector2(130.225998F, -235.292007F)); + builder.AddCubicBezier(new Vector2(129.229996F, -235.867996F), new Vector2(128.084F, -236.156006F), new Vector2(126.788002F, -236.156006F)); + builder.AddCubicBezier(new Vector2(125.491997F, -236.156006F), new Vector2(124.328003F, -235.862F), new Vector2(123.295998F, -235.274002F)); + builder.AddCubicBezier(new Vector2(122.264F, -234.686005F), new Vector2(121.459999F, -233.888F), new Vector2(120.884003F, -232.880005F)); + builder.AddCubicBezier(new Vector2(120.307999F, -231.871994F), new Vector2(120.019997F, -230.720001F), new Vector2(120.019997F, -229.423996F)); + builder.AddLine(new Vector2(121.351997F, -228.667999F)); + builder.AddCubicBezier(new Vector2(121.351997F, -229.531998F), new Vector2(121.543999F, -230.300003F), new Vector2(121.928001F, -230.972F)); + builder.AddCubicBezier(new Vector2(122.311996F, -231.643997F), new Vector2(122.839996F, -232.171997F), new Vector2(123.512001F, -232.556F)); + builder.AddCubicBezier(new Vector2(124.183998F, -232.940002F), new Vector2(124.952003F, -233.132004F), new Vector2(125.816002F, -233.132004F)); + builder.AddCubicBezier(new Vector2(127.112F, -233.132004F), new Vector2(128.162003F, -232.712006F), new Vector2(128.966003F, -231.871994F)); + builder.AddCubicBezier(new Vector2(129.770004F, -231.031998F), new Vector2(130.171997F, -229.964005F), new Vector2(130.171997F, -228.667999F)); + builder.AddLine(new Vector2(130.171997F, -218.695999F)); + builder.AddLine(new Vector2(133.447998F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0577() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(110.515999F, -219.091995F)); + builder.AddCubicBezier(new Vector2(111.692001F, -219.595993F), new Vector2(112.699997F, -220.328003F), new Vector2(113.540001F, -221.287994F)); + builder.AddLine(new Vector2(111.452003F, -223.412003F)); + builder.AddCubicBezier(new Vector2(110.875999F, -222.740005F), new Vector2(110.185997F, -222.235992F), new Vector2(109.382004F, -221.899994F)); + builder.AddCubicBezier(new Vector2(108.578003F, -221.563995F), new Vector2(107.695999F, -221.395996F), new Vector2(106.736F, -221.395996F)); + builder.AddCubicBezier(new Vector2(105.584F, -221.395996F), new Vector2(104.564003F, -221.641998F), new Vector2(103.676003F, -222.134003F)); + builder.AddCubicBezier(new Vector2(102.788002F, -222.626007F), new Vector2(102.103996F, -223.322006F), new Vector2(101.624001F, -224.222F)); + builder.AddCubicBezier(new Vector2(101.143997F, -225.121994F), new Vector2(100.903999F, -226.171997F), new Vector2(100.903999F, -227.371994F)); + builder.AddCubicBezier(new Vector2(100.903999F, -228.548004F), new Vector2(101.132004F, -229.567993F), new Vector2(101.587997F, -230.432007F)); + builder.AddCubicBezier(new Vector2(102.043999F, -231.296005F), new Vector2(102.692001F, -231.968002F), new Vector2(103.531998F, -232.447998F)); + builder.AddCubicBezier(new Vector2(104.372002F, -232.927994F), new Vector2(105.344002F, -233.167999F), new Vector2(106.447998F, -233.167999F)); + builder.AddCubicBezier(new Vector2(107.503998F, -233.167999F), new Vector2(108.403999F, -232.945999F), new Vector2(109.148003F, -232.501999F)); + builder.AddCubicBezier(new Vector2(109.891998F, -232.057999F), new Vector2(110.468002F, -231.434006F), new Vector2(110.875999F, -230.630005F)); + builder.AddCubicBezier(new Vector2(111.283997F, -229.826004F), new Vector2(111.487999F, -228.848007F), new Vector2(111.487999F, -227.695999F)); + builder.AddLine(new Vector2(112.676003F, -228.740005F)); + builder.AddLine(new Vector2(99.9680023F, -228.740005F)); + builder.AddLine(new Vector2(99.9680023F, -226.039993F)); + builder.AddLine(new Vector2(114.403999F, -226.039993F)); + builder.AddCubicBezier(new Vector2(114.475998F, -226.376007F), new Vector2(114.524002F, -226.682007F), new Vector2(114.547997F, -226.957993F)); + builder.AddCubicBezier(new Vector2(114.571999F, -227.233994F), new Vector2(114.584F, -227.492004F), new Vector2(114.584F, -227.731995F)); + builder.AddCubicBezier(new Vector2(114.584F, -229.363998F), new Vector2(114.241997F, -230.815994F), new Vector2(113.557999F, -232.087997F)); + builder.AddCubicBezier(new Vector2(112.874001F, -233.360001F), new Vector2(111.919998F, -234.356003F), new Vector2(110.695999F, -235.076004F)); + builder.AddCubicBezier(new Vector2(109.472F, -235.796005F), new Vector2(108.080002F, -236.156006F), new Vector2(106.519997F, -236.156006F)); + builder.AddCubicBezier(new Vector2(104.863998F, -236.156006F), new Vector2(103.370003F, -235.766006F), new Vector2(102.038002F, -234.985992F)); + builder.AddCubicBezier(new Vector2(100.706001F, -234.205994F), new Vector2(99.6500015F, -233.143997F), new Vector2(98.8700027F, -231.800003F)); + builder.AddCubicBezier(new Vector2(98.0899963F, -230.455994F), new Vector2(97.6999969F, -228.944F), new Vector2(97.6999969F, -227.264008F)); + builder.AddCubicBezier(new Vector2(97.6999969F, -225.559998F), new Vector2(98.0960007F, -224.035995F), new Vector2(98.8880005F, -222.692001F)); + builder.AddCubicBezier(new Vector2(99.6800003F, -221.348007F), new Vector2(100.753998F, -220.285995F), new Vector2(102.110001F, -219.505997F)); + builder.AddCubicBezier(new Vector2(103.466003F, -218.725998F), new Vector2(105.008003F, -218.335999F), new Vector2(106.736F, -218.335999F)); + builder.AddCubicBezier(new Vector2(108.080002F, -218.335999F), new Vector2(109.339996F, -218.587997F), new Vector2(110.515999F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0578() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(88.8440018F, -218.695999F)); + builder.AddLine(new Vector2(96.6920013F, -235.796005F)); + builder.AddLine(new Vector2(93.2360001F, -235.796005F)); + builder.AddLine(new Vector2(86.9000015F, -221.360001F)); + builder.AddLine(new Vector2(88.987999F, -221.360001F)); + builder.AddLine(new Vector2(82.6880035F, -235.796005F)); + builder.AddLine(new Vector2(79.0879974F, -235.796005F)); + builder.AddLine(new Vector2(86.935997F, -218.695999F)); + builder.AddLine(new Vector2(88.8440018F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0579() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(66.0199966F, -219.091995F)); + builder.AddCubicBezier(new Vector2(67.1959991F, -219.595993F), new Vector2(68.2040024F, -220.328003F), new Vector2(69.0439987F, -221.287994F)); + builder.AddLine(new Vector2(66.9560013F, -223.412003F)); + builder.AddCubicBezier(new Vector2(66.3799973F, -222.740005F), new Vector2(65.6900024F, -222.235992F), new Vector2(64.8860016F, -221.899994F)); + builder.AddCubicBezier(new Vector2(64.0820007F, -221.563995F), new Vector2(63.2000008F, -221.395996F), new Vector2(62.2400017F, -221.395996F)); + builder.AddCubicBezier(new Vector2(61.0880013F, -221.395996F), new Vector2(60.0680008F, -221.641998F), new Vector2(59.1800003F, -222.134003F)); + builder.AddCubicBezier(new Vector2(58.2919998F, -222.626007F), new Vector2(57.6080017F, -223.322006F), new Vector2(57.1279984F, -224.222F)); + builder.AddCubicBezier(new Vector2(56.6479988F, -225.121994F), new Vector2(56.4080009F, -226.171997F), new Vector2(56.4080009F, -227.371994F)); + builder.AddCubicBezier(new Vector2(56.4080009F, -228.548004F), new Vector2(56.6360016F, -229.567993F), new Vector2(57.0919991F, -230.432007F)); + builder.AddCubicBezier(new Vector2(57.5480003F, -231.296005F), new Vector2(58.1959991F, -231.968002F), new Vector2(59.0359993F, -232.447998F)); + builder.AddCubicBezier(new Vector2(59.8759995F, -232.927994F), new Vector2(60.8479996F, -233.167999F), new Vector2(61.9519997F, -233.167999F)); + builder.AddCubicBezier(new Vector2(63.0079994F, -233.167999F), new Vector2(63.9080009F, -232.945999F), new Vector2(64.6520004F, -232.501999F)); + builder.AddCubicBezier(new Vector2(65.3960037F, -232.057999F), new Vector2(65.9720001F, -231.434006F), new Vector2(66.3799973F, -230.630005F)); + builder.AddCubicBezier(new Vector2(66.788002F, -229.826004F), new Vector2(66.9919968F, -228.848007F), new Vector2(66.9919968F, -227.695999F)); + builder.AddLine(new Vector2(68.1800003F, -228.740005F)); + builder.AddLine(new Vector2(55.4720001F, -228.740005F)); + builder.AddLine(new Vector2(55.4720001F, -226.039993F)); + builder.AddLine(new Vector2(69.9079971F, -226.039993F)); + builder.AddCubicBezier(new Vector2(69.9800034F, -226.376007F), new Vector2(70.0279999F, -226.682007F), new Vector2(70.052002F, -226.957993F)); + builder.AddCubicBezier(new Vector2(70.0759964F, -227.233994F), new Vector2(70.0879974F, -227.492004F), new Vector2(70.0879974F, -227.731995F)); + builder.AddCubicBezier(new Vector2(70.0879974F, -229.363998F), new Vector2(69.7460022F, -230.815994F), new Vector2(69.0619965F, -232.087997F)); + builder.AddCubicBezier(new Vector2(68.3779984F, -233.360001F), new Vector2(67.4240036F, -234.356003F), new Vector2(66.1999969F, -235.076004F)); + builder.AddCubicBezier(new Vector2(64.9759979F, -235.796005F), new Vector2(63.5839996F, -236.156006F), new Vector2(62.0239983F, -236.156006F)); + builder.AddCubicBezier(new Vector2(60.368F, -236.156006F), new Vector2(58.8740005F, -235.766006F), new Vector2(57.5419998F, -234.985992F)); + builder.AddCubicBezier(new Vector2(56.2099991F, -234.205994F), new Vector2(55.1539993F, -233.143997F), new Vector2(54.3740005F, -231.800003F)); + builder.AddCubicBezier(new Vector2(53.5940018F, -230.455994F), new Vector2(53.2039986F, -228.944F), new Vector2(53.2039986F, -227.264008F)); + builder.AddCubicBezier(new Vector2(53.2039986F, -225.559998F), new Vector2(53.5999985F, -224.035995F), new Vector2(54.3919983F, -222.692001F)); + builder.AddCubicBezier(new Vector2(55.1839981F, -221.348007F), new Vector2(56.2579994F, -220.285995F), new Vector2(57.6139984F, -219.505997F)); + builder.AddCubicBezier(new Vector2(58.9700012F, -218.725998F), new Vector2(60.512001F, -218.335999F), new Vector2(62.2400017F, -218.335999F)); + builder.AddCubicBezier(new Vector2(63.5839996F, -218.335999F), new Vector2(64.8440018F, -218.587997F), new Vector2(66.0199966F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0580() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(49.6040001F, -244.399994F)); + builder.AddLine(new Vector2(46.3279991F, -244.399994F)); + builder.AddLine(new Vector2(46.3279991F, -231.619995F)); + builder.AddLine(new Vector2(46.9399986F, -227.479996F)); + builder.AddLine(new Vector2(46.3279991F, -223.304001F)); + builder.AddLine(new Vector2(46.3279991F, -218.695999F)); + builder.AddLine(new Vector2(49.6040001F, -218.695999F)); + builder.AddLine(new Vector2(49.6040001F, -244.399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(38.2820015F, -222.134003F)); + builder.AddCubicBezier(new Vector2(37.4539986F, -222.626007F), new Vector2(36.8059998F, -223.315994F), new Vector2(36.3380013F, -224.203995F)); + builder.AddCubicBezier(new Vector2(35.8699989F, -225.091995F), new Vector2(35.6360016F, -226.112F), new Vector2(35.6360016F, -227.264008F)); + builder.AddCubicBezier(new Vector2(35.6360016F, -228.416F), new Vector2(35.8699989F, -229.429993F), new Vector2(36.3380013F, -230.306F)); + builder.AddCubicBezier(new Vector2(36.8059998F, -231.182007F), new Vector2(37.4480019F, -231.865997F), new Vector2(38.2639999F, -232.358002F)); + builder.AddCubicBezier(new Vector2(39.0800018F, -232.850006F), new Vector2(40.0279999F, -233.095993F), new Vector2(41.1080017F, -233.095993F)); + builder.AddCubicBezier(new Vector2(42.1879997F, -233.095993F), new Vector2(43.1360016F, -232.843994F), new Vector2(43.9519997F, -232.339996F)); + builder.AddCubicBezier(new Vector2(44.7680016F, -231.835999F), new Vector2(45.4039993F, -231.145996F), new Vector2(45.8600006F, -230.270004F)); + builder.AddCubicBezier(new Vector2(46.3160019F, -229.393997F), new Vector2(46.5439987F, -228.380005F), new Vector2(46.5439987F, -227.227997F)); + builder.AddCubicBezier(new Vector2(46.5439987F, -226.100006F), new Vector2(46.3160019F, -225.098007F), new Vector2(45.8600006F, -224.222F)); + builder.AddCubicBezier(new Vector2(45.4039993F, -223.345993F), new Vector2(44.7680016F, -222.656006F), new Vector2(43.9519997F, -222.151993F)); + builder.AddCubicBezier(new Vector2(43.1360016F, -221.647995F), new Vector2(42.1879997F, -221.395996F), new Vector2(41.1080017F, -221.395996F)); + builder.AddCubicBezier(new Vector2(40.0519981F, -221.395996F), new Vector2(39.1100006F, -221.641998F), new Vector2(38.2820015F, -222.134003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(44.0960007F, -219.145996F)); + builder.AddCubicBezier(new Vector2(45.1279984F, -219.686005F), new Vector2(45.9560013F, -220.436005F), new Vector2(46.5800018F, -221.395996F)); + builder.AddCubicBezier(new Vector2(47.2039986F, -222.356003F), new Vector2(47.5519981F, -223.447998F), new Vector2(47.6240005F, -224.671997F)); + builder.AddLine(new Vector2(47.6240005F, -229.820007F)); + builder.AddCubicBezier(new Vector2(47.5519981F, -231.067993F), new Vector2(47.1980019F, -232.166F), new Vector2(46.5620003F, -233.113998F)); + builder.AddCubicBezier(new Vector2(45.9259987F, -234.061996F), new Vector2(45.0919991F, -234.806F), new Vector2(44.0600014F, -235.345993F)); + builder.AddCubicBezier(new Vector2(43.0279999F, -235.886002F), new Vector2(41.8639984F, -236.156006F), new Vector2(40.5680008F, -236.156006F)); + builder.AddCubicBezier(new Vector2(39.0079994F, -236.156006F), new Vector2(37.6040001F, -235.759995F), new Vector2(36.355999F, -234.968002F)); + builder.AddCubicBezier(new Vector2(35.1080017F, -234.175995F), new Vector2(34.118F, -233.108002F), new Vector2(33.3860016F, -231.764008F)); + builder.AddCubicBezier(new Vector2(32.6539993F, -230.419998F), new Vector2(32.2879982F, -228.908005F), new Vector2(32.2879982F, -227.227997F)); + builder.AddCubicBezier(new Vector2(32.2879982F, -225.548004F), new Vector2(32.6539993F, -224.035995F), new Vector2(33.3860016F, -222.692001F)); + builder.AddCubicBezier(new Vector2(34.118F, -221.348007F), new Vector2(35.1080017F, -220.285995F), new Vector2(36.355999F, -219.505997F)); + builder.AddCubicBezier(new Vector2(37.6040001F, -218.725998F), new Vector2(39.0079994F, -218.335999F), new Vector2(40.5680008F, -218.335999F)); + builder.AddCubicBezier(new Vector2(41.8880005F, -218.335999F), new Vector2(43.0639992F, -218.606003F), new Vector2(44.0960007F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0581() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(28.6520004F, -218.695999F)); + builder.AddLine(new Vector2(28.6520004F, -235.796005F)); + builder.AddLine(new Vector2(25.3759995F, -235.796005F)); + builder.AddLine(new Vector2(25.3759995F, -231.619995F)); + builder.AddLine(new Vector2(25.9880009F, -227.479996F)); + builder.AddLine(new Vector2(25.3759995F, -223.304001F)); + builder.AddLine(new Vector2(25.3759995F, -218.695999F)); + builder.AddLine(new Vector2(28.6520004F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(17.3479996F, -222.151993F)); + builder.AddCubicBezier(new Vector2(16.5079994F, -222.656006F), new Vector2(15.8540001F, -223.345993F), new Vector2(15.3859997F, -224.222F)); + builder.AddCubicBezier(new Vector2(14.9180002F, -225.098007F), new Vector2(14.684F, -226.112F), new Vector2(14.684F, -227.264008F)); + builder.AddCubicBezier(new Vector2(14.684F, -228.391998F), new Vector2(14.9180002F, -229.393997F), new Vector2(15.3859997F, -230.270004F)); + builder.AddCubicBezier(new Vector2(15.8540001F, -231.145996F), new Vector2(16.5020008F, -231.835999F), new Vector2(17.3299999F, -232.339996F)); + builder.AddCubicBezier(new Vector2(18.1580009F, -232.843994F), new Vector2(19.1119995F, -233.095993F), new Vector2(20.1919994F, -233.095993F)); + builder.AddCubicBezier(new Vector2(21.2719994F, -233.095993F), new Vector2(22.2140007F, -232.850006F), new Vector2(23.0179996F, -232.358002F)); + builder.AddCubicBezier(new Vector2(23.8220005F, -231.865997F), new Vector2(24.4519997F, -231.175995F), new Vector2(24.9080009F, -230.287994F)); + builder.AddCubicBezier(new Vector2(25.3640003F, -229.399994F), new Vector2(25.5919991F, -228.380005F), new Vector2(25.5919991F, -227.227997F)); + builder.AddCubicBezier(new Vector2(25.5919991F, -225.524002F), new Vector2(25.1000004F, -224.126007F), new Vector2(24.1159992F, -223.033997F)); + builder.AddCubicBezier(new Vector2(23.132F, -221.942001F), new Vector2(21.8360004F, -221.395996F), new Vector2(20.2280006F, -221.395996F)); + builder.AddCubicBezier(new Vector2(19.1480007F, -221.395996F), new Vector2(18.1879997F, -221.647995F), new Vector2(17.3479996F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(23.1800003F, -219.145996F)); + builder.AddCubicBezier(new Vector2(24.2119999F, -219.686005F), new Vector2(25.0340004F, -220.436005F), new Vector2(25.6459999F, -221.395996F)); + builder.AddCubicBezier(new Vector2(26.2579994F, -222.356003F), new Vector2(26.6000004F, -223.447998F), new Vector2(26.6720009F, -224.671997F)); + builder.AddLine(new Vector2(26.6720009F, -229.820007F)); + builder.AddCubicBezier(new Vector2(26.6000004F, -231.067993F), new Vector2(26.2520008F, -232.166F), new Vector2(25.6280003F, -233.113998F)); + builder.AddCubicBezier(new Vector2(25.0039997F, -234.061996F), new Vector2(24.1819992F, -234.806F), new Vector2(23.1620007F, -235.345993F)); + builder.AddCubicBezier(new Vector2(22.1420002F, -235.886002F), new Vector2(20.9839993F, -236.156006F), new Vector2(19.6879997F, -236.156006F)); + builder.AddCubicBezier(new Vector2(18.1040001F, -236.156006F), new Vector2(16.6819992F, -235.759995F), new Vector2(15.4219999F, -234.968002F)); + builder.AddCubicBezier(new Vector2(14.1619997F, -234.175995F), new Vector2(13.1660004F, -233.108002F), new Vector2(12.434F, -231.764008F)); + builder.AddCubicBezier(new Vector2(11.7019997F, -230.419998F), new Vector2(11.3360004F, -228.908005F), new Vector2(11.3360004F, -227.227997F)); + builder.AddCubicBezier(new Vector2(11.3360004F, -225.548004F), new Vector2(11.7019997F, -224.035995F), new Vector2(12.434F, -222.692001F)); + builder.AddCubicBezier(new Vector2(13.1660004F, -221.348007F), new Vector2(14.1619997F, -220.285995F), new Vector2(15.4219999F, -219.505997F)); + builder.AddCubicBezier(new Vector2(16.6819992F, -218.725998F), new Vector2(18.1040001F, -218.335999F), new Vector2(19.6879997F, -218.335999F)); + builder.AddCubicBezier(new Vector2(20.9839993F, -218.335999F), new Vector2(22.1480007F, -218.606003F), new Vector2(23.1800003F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0582() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(6.63800001F, -219.091995F)); + builder.AddCubicBezier(new Vector2(7.77799988F, -219.595993F), new Vector2(8.74400043F, -220.304001F), new Vector2(9.53600025F, -221.216003F)); + builder.AddLine(new Vector2(7.41200018F, -223.376007F)); + builder.AddCubicBezier(new Vector2(6.86000013F, -222.751999F), new Vector2(6.20599985F, -222.278F), new Vector2(5.44999981F, -221.953995F)); + builder.AddCubicBezier(new Vector2(4.69399977F, -221.630005F), new Vector2(3.8599999F, -221.468002F), new Vector2(2.94799995F, -221.468002F)); + builder.AddCubicBezier(new Vector2(1.86800003F, -221.468002F), new Vector2(0.907999992F, -221.720001F), new Vector2(0.0680000037F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-0.772000015F, -222.727997F), new Vector2(-1.43200004F, -223.412003F), new Vector2(-1.91199994F, -224.276001F)); + builder.AddCubicBezier(new Vector2(-2.39199996F, -225.139999F), new Vector2(-2.63199997F, -226.136002F), new Vector2(-2.63199997F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-2.63199997F, -228.391998F), new Vector2(-2.39199996F, -229.388F), new Vector2(-1.91199994F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-1.43200004F, -231.115997F), new Vector2(-0.772000015F, -231.794006F), new Vector2(0.0680000037F, -232.285995F)); + builder.AddCubicBezier(new Vector2(0.907999992F, -232.778F), new Vector2(1.86800003F, -233.024002F), new Vector2(2.94799995F, -233.024002F)); + builder.AddCubicBezier(new Vector2(3.83599997F, -233.024002F), new Vector2(4.66400003F, -232.862F), new Vector2(5.43200016F, -232.537994F)); + builder.AddCubicBezier(new Vector2(6.19999981F, -232.214005F), new Vector2(6.84800005F, -231.740005F), new Vector2(7.37599993F, -231.115997F)); + builder.AddLine(new Vector2(9.53600025F, -233.276001F)); + builder.AddCubicBezier(new Vector2(8.72000027F, -234.212006F), new Vector2(7.74800014F, -234.925995F), new Vector2(6.61999989F, -235.417999F)); + builder.AddCubicBezier(new Vector2(5.4920001F, -235.910004F), new Vector2(4.26800013F, -236.156006F), new Vector2(2.94799995F, -236.156006F)); + builder.AddCubicBezier(new Vector2(1.26800001F, -236.156006F), new Vector2(-0.25F, -235.766006F), new Vector2(-1.60599995F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-2.96199989F, -234.205994F), new Vector2(-4.03000021F, -233.143997F), new Vector2(-4.80999994F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-5.59000015F, -230.455994F), new Vector2(-5.98000002F, -228.944F), new Vector2(-5.98000002F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-5.98000002F, -225.608002F), new Vector2(-5.59000015F, -224.102005F), new Vector2(-4.80999994F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-4.03000021F, -221.389999F), new Vector2(-2.96199989F, -220.315994F), new Vector2(-1.60599995F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-0.25F, -218.731995F), new Vector2(1.26800001F, -218.335999F), new Vector2(2.94799995F, -218.335999F)); + builder.AddCubicBezier(new Vector2(4.26800013F, -218.335999F), new Vector2(5.49800014F, -218.587997F), new Vector2(6.63800001F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0583() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-9.79599953F, -239.809998F)); + builder.AddCubicBezier(new Vector2(-9.4119997F, -240.205994F), new Vector2(-9.22000027F, -240.703995F), new Vector2(-9.22000027F, -241.304001F)); + builder.AddCubicBezier(new Vector2(-9.22000027F, -241.880005F), new Vector2(-9.4119997F, -242.365997F), new Vector2(-9.79599953F, -242.761993F)); + builder.AddCubicBezier(new Vector2(-10.1800003F, -243.158005F), new Vector2(-10.6719999F, -243.356003F), new Vector2(-11.2720003F, -243.356003F)); + builder.AddCubicBezier(new Vector2(-11.8719997F, -243.356003F), new Vector2(-12.3640003F, -243.158005F), new Vector2(-12.7480001F, -242.761993F)); + builder.AddCubicBezier(new Vector2(-13.132F, -242.365997F), new Vector2(-13.3240004F, -241.880005F), new Vector2(-13.3240004F, -241.304001F)); + builder.AddCubicBezier(new Vector2(-13.3240004F, -240.703995F), new Vector2(-13.132F, -240.205994F), new Vector2(-12.7480001F, -239.809998F)); + builder.AddCubicBezier(new Vector2(-12.3640003F, -239.414001F), new Vector2(-11.8719997F, -239.216003F), new Vector2(-11.2720003F, -239.216003F)); + builder.AddCubicBezier(new Vector2(-10.6719999F, -239.216003F), new Vector2(-10.1800003F, -239.414001F), new Vector2(-9.79599953F, -239.809998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-9.65200043F, -218.695999F)); + builder.AddLine(new Vector2(-9.65200043F, -235.796005F)); + builder.AddLine(new Vector2(-12.9280005F, -235.796005F)); + builder.AddLine(new Vector2(-12.9280005F, -218.695999F)); + builder.AddLine(new Vector2(-9.65200043F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0584() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-22.9720001F, -231.944F)); + builder.AddCubicBezier(new Vector2(-22.2040005F, -232.712006F), new Vector2(-21.2199993F, -233.095993F), new Vector2(-20.0200005F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-19.4440002F, -233.095993F), new Vector2(-18.9400005F, -233.011993F), new Vector2(-18.5079994F, -232.843994F)); + builder.AddCubicBezier(new Vector2(-18.0760002F, -232.675995F), new Vector2(-17.6800003F, -232.399994F), new Vector2(-17.3199997F, -232.016006F)); + builder.AddLine(new Vector2(-15.1960001F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-15.7959995F, -234.908005F), new Vector2(-16.4440002F, -235.406006F), new Vector2(-17.1399994F, -235.705994F)); + builder.AddCubicBezier(new Vector2(-17.8360004F, -236.005997F), new Vector2(-18.6159992F, -236.156006F), new Vector2(-19.4799995F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-21.3759995F, -236.156006F), new Vector2(-22.8279991F, -235.507996F), new Vector2(-23.8360004F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-24.8439999F, -232.916F), new Vector2(-25.3479996F, -231.175995F), new Vector2(-25.3479996F, -228.992004F)); + builder.AddLine(new Vector2(-24.1240005F, -228.416F)); + builder.AddCubicBezier(new Vector2(-24.1240005F, -230F), new Vector2(-23.7399998F, -231.175995F), new Vector2(-22.9720001F, -231.944F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-24.1240005F, -218.695999F)); + builder.AddLine(new Vector2(-24.1240005F, -235.796005F)); + builder.AddLine(new Vector2(-27.3640003F, -235.796005F)); + builder.AddLine(new Vector2(-27.3640003F, -218.695999F)); + builder.AddLine(new Vector2(-24.1240005F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0585() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-37.4799995F, -231.944F)); + builder.AddCubicBezier(new Vector2(-36.7120018F, -232.712006F), new Vector2(-35.7280006F, -233.095993F), new Vector2(-34.5279999F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-33.9519997F, -233.095993F), new Vector2(-33.4480019F, -233.011993F), new Vector2(-33.0159988F, -232.843994F)); + builder.AddCubicBezier(new Vector2(-32.5839996F, -232.675995F), new Vector2(-32.1879997F, -232.399994F), new Vector2(-31.8279991F, -232.016006F)); + builder.AddLine(new Vector2(-29.7040005F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-30.3040009F, -234.908005F), new Vector2(-30.9519997F, -235.406006F), new Vector2(-31.6480007F, -235.705994F)); + builder.AddCubicBezier(new Vector2(-32.3440018F, -236.005997F), new Vector2(-33.1240005F, -236.156006F), new Vector2(-33.987999F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-35.8839989F, -236.156006F), new Vector2(-37.3359985F, -235.507996F), new Vector2(-38.3440018F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-39.3520012F, -232.916F), new Vector2(-39.855999F, -231.175995F), new Vector2(-39.855999F, -228.992004F)); + builder.AddLine(new Vector2(-38.632F, -228.416F)); + builder.AddCubicBezier(new Vector2(-38.632F, -230F), new Vector2(-38.2480011F, -231.175995F), new Vector2(-37.4799995F, -231.944F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-38.632F, -218.695999F)); + builder.AddLine(new Vector2(-38.632F, -235.796005F)); + builder.AddLine(new Vector2(-41.8720016F, -235.796005F)); + builder.AddLine(new Vector2(-41.8720016F, -218.695999F)); + builder.AddLine(new Vector2(-38.632F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0586() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-46.5880013F, -218.695999F)); + builder.AddLine(new Vector2(-46.5880013F, -235.796005F)); + builder.AddLine(new Vector2(-49.8639984F, -235.796005F)); + builder.AddLine(new Vector2(-49.8639984F, -231.619995F)); + builder.AddLine(new Vector2(-49.2519989F, -227.479996F)); + builder.AddLine(new Vector2(-49.8639984F, -223.304001F)); + builder.AddLine(new Vector2(-49.8639984F, -218.695999F)); + builder.AddLine(new Vector2(-46.5880013F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-57.8919983F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-58.7319984F, -222.656006F), new Vector2(-59.3860016F, -223.345993F), new Vector2(-59.8540001F, -224.222F)); + builder.AddCubicBezier(new Vector2(-60.3219986F, -225.098007F), new Vector2(-60.5559998F, -226.112F), new Vector2(-60.5559998F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-60.5559998F, -228.391998F), new Vector2(-60.3219986F, -229.393997F), new Vector2(-59.8540001F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-59.3860016F, -231.145996F), new Vector2(-58.737999F, -231.835999F), new Vector2(-57.9099998F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-57.0820007F, -232.843994F), new Vector2(-56.1279984F, -233.095993F), new Vector2(-55.0480003F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-53.9679985F, -233.095993F), new Vector2(-53.026001F, -232.850006F), new Vector2(-52.2220001F, -232.358002F)); + builder.AddCubicBezier(new Vector2(-51.4179993F, -231.865997F), new Vector2(-50.7879982F, -231.175995F), new Vector2(-50.3320007F, -230.287994F)); + builder.AddCubicBezier(new Vector2(-49.8759995F, -229.399994F), new Vector2(-49.6479988F, -228.380005F), new Vector2(-49.6479988F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-49.6479988F, -225.524002F), new Vector2(-50.1399994F, -224.126007F), new Vector2(-51.1240005F, -223.033997F)); + builder.AddCubicBezier(new Vector2(-52.1080017F, -221.942001F), new Vector2(-53.4039993F, -221.395996F), new Vector2(-55.012001F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-56.0919991F, -221.395996F), new Vector2(-57.0519981F, -221.647995F), new Vector2(-57.8919983F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-52.0600014F, -219.145996F)); + builder.AddCubicBezier(new Vector2(-51.0279999F, -219.686005F), new Vector2(-50.2060013F, -220.436005F), new Vector2(-49.5940018F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-48.9819984F, -222.356003F), new Vector2(-48.6399994F, -223.447998F), new Vector2(-48.5680008F, -224.671997F)); + builder.AddLine(new Vector2(-48.5680008F, -229.820007F)); + builder.AddCubicBezier(new Vector2(-48.6399994F, -231.067993F), new Vector2(-48.987999F, -232.166F), new Vector2(-49.6119995F, -233.113998F)); + builder.AddCubicBezier(new Vector2(-50.2360001F, -234.061996F), new Vector2(-51.0579987F, -234.806F), new Vector2(-52.0779991F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-53.0979996F, -235.886002F), new Vector2(-54.2560005F, -236.156006F), new Vector2(-55.5519981F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-57.1360016F, -236.156006F), new Vector2(-58.5579987F, -235.759995F), new Vector2(-59.8180008F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-61.0779991F, -234.175995F), new Vector2(-62.0740013F, -233.108002F), new Vector2(-62.8059998F, -231.764008F)); + builder.AddCubicBezier(new Vector2(-63.5379982F, -230.419998F), new Vector2(-63.9039993F, -228.908005F), new Vector2(-63.9039993F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-63.9039993F, -225.548004F), new Vector2(-63.5379982F, -224.035995F), new Vector2(-62.8059998F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-62.0740013F, -221.348007F), new Vector2(-61.0779991F, -220.285995F), new Vector2(-59.8180008F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-58.5579987F, -218.725998F), new Vector2(-57.1360016F, -218.335999F), new Vector2(-55.5519981F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-54.2560005F, -218.335999F), new Vector2(-53.0919991F, -218.606003F), new Vector2(-52.0600014F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0587() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-78.1419983F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-78.9700012F, -222.656006F), new Vector2(-79.6060028F, -223.345993F), new Vector2(-80.0500031F, -224.222F)); + builder.AddCubicBezier(new Vector2(-80.4940033F, -225.098007F), new Vector2(-80.7160034F, -226.100006F), new Vector2(-80.7160034F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-80.7160034F, -228.380005F), new Vector2(-80.487999F, -229.393997F), new Vector2(-80.0319977F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-79.5759964F, -231.145996F), new Vector2(-78.9400024F, -231.835999F), new Vector2(-78.1240005F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-77.3079987F, -232.843994F), new Vector2(-76.3720016F, -233.095993F), new Vector2(-75.3160019F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-74.2360001F, -233.095993F), new Vector2(-73.288002F, -232.843994F), new Vector2(-72.4720001F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-71.6559982F, -231.835999F), new Vector2(-71.0139999F, -231.145996F), new Vector2(-70.5459976F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-70.0780029F, -229.393997F), new Vector2(-69.8440018F, -228.391998F), new Vector2(-69.8440018F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-69.8440018F, -226.112F), new Vector2(-70.0780029F, -225.098007F), new Vector2(-70.5459976F, -224.222F)); + builder.AddCubicBezier(new Vector2(-71.0139999F, -223.345993F), new Vector2(-71.6559982F, -222.656006F), new Vector2(-72.4720001F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-73.288002F, -221.647995F), new Vector2(-74.2360001F, -221.395996F), new Vector2(-75.3160019F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-76.3720016F, -221.395996F), new Vector2(-77.314003F, -221.647995F), new Vector2(-78.1419983F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-80.5360031F, -218.695999F)); + builder.AddLine(new Vector2(-80.5360031F, -223.304001F)); + builder.AddLine(new Vector2(-81.1480026F, -227.479996F)); + builder.AddLine(new Vector2(-80.5360031F, -231.619995F)); + builder.AddLine(new Vector2(-80.5360031F, -244.399994F)); + builder.AddLine(new Vector2(-83.776001F, -244.399994F)); + builder.AddLine(new Vector2(-83.776001F, -218.695999F)); + builder.AddLine(new Vector2(-80.5360031F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-70.5459976F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-69.2860031F, -220.285995F), new Vector2(-68.2959976F, -221.348007F), new Vector2(-67.5759964F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-66.8560028F, -224.035995F), new Vector2(-66.4960022F, -225.548004F), new Vector2(-66.4960022F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-66.4960022F, -228.908005F), new Vector2(-66.8560028F, -230.419998F), new Vector2(-67.5759964F, -231.764008F)); + builder.AddCubicBezier(new Vector2(-68.2959976F, -233.108002F), new Vector2(-69.2860031F, -234.175995F), new Vector2(-70.5459976F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-71.8059998F, -235.759995F), new Vector2(-73.2160034F, -236.156006F), new Vector2(-74.776001F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-76.0479965F, -236.156006F), new Vector2(-77.2060013F, -235.886002F), new Vector2(-78.25F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-79.2939987F, -234.806F), new Vector2(-80.1340027F, -234.061996F), new Vector2(-80.7699966F, -233.113998F)); + builder.AddCubicBezier(new Vector2(-81.4059982F, -232.166F), new Vector2(-81.7600021F, -231.067993F), new Vector2(-81.8320007F, -229.820007F)); + builder.AddLine(new Vector2(-81.8320007F, -224.671997F)); + builder.AddCubicBezier(new Vector2(-81.7600021F, -223.447998F), new Vector2(-81.4120026F, -222.356003F), new Vector2(-80.788002F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-80.1640015F, -220.436005F), new Vector2(-79.3300018F, -219.686005F), new Vector2(-78.2860031F, -219.145996F)); + builder.AddCubicBezier(new Vector2(-77.2419968F, -218.606003F), new Vector2(-76.0719986F, -218.335999F), new Vector2(-74.776001F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-73.2160034F, -218.335999F), new Vector2(-71.8059998F, -218.725998F), new Vector2(-70.5459976F, -219.505997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0588() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-94.3960037F, -232.843994F)); + builder.AddLine(new Vector2(-94.3960037F, -235.796005F)); + builder.AddLine(new Vector2(-106.059998F, -235.796005F)); + builder.AddLine(new Vector2(-106.059998F, -232.843994F)); + builder.AddLine(new Vector2(-94.3960037F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-98.6080017F, -218.695999F)); + builder.AddLine(new Vector2(-98.6080017F, -242.960007F)); + builder.AddLine(new Vector2(-101.848F, -242.960007F)); + builder.AddLine(new Vector2(-101.848F, -218.695999F)); + builder.AddLine(new Vector2(-98.6080017F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0589() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-109.821999F, -219.740005F)); + builder.AddCubicBezier(new Vector2(-108.681999F, -220.675995F), new Vector2(-108.112F, -221.947998F), new Vector2(-108.112F, -223.556F)); + builder.AddCubicBezier(new Vector2(-108.112F, -224.612F), new Vector2(-108.334F, -225.464005F), new Vector2(-108.778F, -226.112F)); + builder.AddCubicBezier(new Vector2(-109.222F, -226.759995F), new Vector2(-109.792F, -227.276001F), new Vector2(-110.487999F, -227.660004F)); + builder.AddCubicBezier(new Vector2(-111.183998F, -228.044006F), new Vector2(-111.916F, -228.350006F), new Vector2(-112.683998F, -228.578003F)); + builder.AddCubicBezier(new Vector2(-113.452003F, -228.806F), new Vector2(-114.190002F, -229.028F), new Vector2(-114.898003F, -229.244003F)); + builder.AddCubicBezier(new Vector2(-115.606003F, -229.460007F), new Vector2(-116.176003F, -229.723999F), new Vector2(-116.608002F, -230.035995F)); + builder.AddCubicBezier(new Vector2(-117.040001F, -230.348007F), new Vector2(-117.255997F, -230.792007F), new Vector2(-117.255997F, -231.367996F)); + builder.AddCubicBezier(new Vector2(-117.255997F, -231.919998F), new Vector2(-117.010002F, -232.363998F), new Vector2(-116.517998F, -232.699997F)); + builder.AddCubicBezier(new Vector2(-116.026001F, -233.035995F), new Vector2(-115.311996F, -233.203995F), new Vector2(-114.375999F, -233.203995F)); + builder.AddCubicBezier(new Vector2(-113.487999F, -233.203995F), new Vector2(-112.695999F, -233.035995F), new Vector2(-112F, -232.699997F)); + builder.AddCubicBezier(new Vector2(-111.304001F, -232.363998F), new Vector2(-110.704002F, -231.884003F), new Vector2(-110.199997F, -231.259995F)); + builder.AddLine(new Vector2(-108.112F, -233.348007F)); + builder.AddCubicBezier(new Vector2(-108.783997F, -234.283997F), new Vector2(-109.641998F, -234.985992F), new Vector2(-110.685997F, -235.453995F)); + builder.AddCubicBezier(new Vector2(-111.730003F, -235.921997F), new Vector2(-112.924004F, -236.156006F), new Vector2(-114.267998F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-115.540001F, -236.156006F), new Vector2(-116.632004F, -235.951996F), new Vector2(-117.543999F, -235.544006F)); + builder.AddCubicBezier(new Vector2(-118.456001F, -235.136002F), new Vector2(-119.157997F, -234.554001F), new Vector2(-119.650002F, -233.798004F)); + builder.AddCubicBezier(new Vector2(-120.141998F, -233.042007F), new Vector2(-120.388F, -232.147995F), new Vector2(-120.388F, -231.115997F)); + builder.AddCubicBezier(new Vector2(-120.388F, -230.084F), new Vector2(-120.166F, -229.25F), new Vector2(-119.722F, -228.613998F)); + builder.AddCubicBezier(new Vector2(-119.278F, -227.977997F), new Vector2(-118.708F, -227.479996F), new Vector2(-118.012001F, -227.119995F)); + builder.AddCubicBezier(new Vector2(-117.316002F, -226.759995F), new Vector2(-116.578003F, -226.472F), new Vector2(-115.797997F, -226.255997F)); + builder.AddCubicBezier(new Vector2(-115.017998F, -226.039993F), new Vector2(-114.279999F, -225.817993F), new Vector2(-113.584F, -225.589996F)); + builder.AddCubicBezier(new Vector2(-112.888F, -225.362F), new Vector2(-112.318001F, -225.074005F), new Vector2(-111.874001F, -224.725998F)); + builder.AddCubicBezier(new Vector2(-111.43F, -224.378006F), new Vector2(-111.208F, -223.891998F), new Vector2(-111.208F, -223.268005F)); + builder.AddCubicBezier(new Vector2(-111.208F, -222.643997F), new Vector2(-111.484001F, -222.158005F), new Vector2(-112.036003F, -221.809998F)); + builder.AddCubicBezier(new Vector2(-112.587997F, -221.462006F), new Vector2(-113.367996F, -221.287994F), new Vector2(-114.375999F, -221.287994F)); + builder.AddCubicBezier(new Vector2(-115.384003F, -221.287994F), new Vector2(-116.295998F, -221.473999F), new Vector2(-117.112F, -221.845993F)); + builder.AddCubicBezier(new Vector2(-117.928001F, -222.218002F), new Vector2(-118.648003F, -222.787994F), new Vector2(-119.272003F, -223.556F)); + builder.AddLine(new Vector2(-121.360001F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-120.832001F, -220.820007F), new Vector2(-120.213997F, -220.261993F), new Vector2(-119.505997F, -219.794006F)); + builder.AddCubicBezier(new Vector2(-118.797997F, -219.326004F), new Vector2(-118.012001F, -218.966003F), new Vector2(-117.148003F, -218.714005F)); + builder.AddCubicBezier(new Vector2(-116.283997F, -218.462006F), new Vector2(-115.372002F, -218.335999F), new Vector2(-114.412003F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-112.491997F, -218.335999F), new Vector2(-110.961998F, -218.804001F), new Vector2(-109.821999F, -219.740005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0590() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-127.444F, -219.091995F)); + builder.AddCubicBezier(new Vector2(-126.267998F, -219.595993F), new Vector2(-125.260002F, -220.328003F), new Vector2(-124.419998F, -221.287994F)); + builder.AddLine(new Vector2(-126.508003F, -223.412003F)); + builder.AddCubicBezier(new Vector2(-127.084F, -222.740005F), new Vector2(-127.774002F, -222.235992F), new Vector2(-128.578003F, -221.899994F)); + builder.AddCubicBezier(new Vector2(-129.382004F, -221.563995F), new Vector2(-130.264008F, -221.395996F), new Vector2(-131.223999F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-132.376007F, -221.395996F), new Vector2(-133.395996F, -221.641998F), new Vector2(-134.283997F, -222.134003F)); + builder.AddCubicBezier(new Vector2(-135.171997F, -222.626007F), new Vector2(-135.856003F, -223.322006F), new Vector2(-136.335999F, -224.222F)); + builder.AddCubicBezier(new Vector2(-136.815994F, -225.121994F), new Vector2(-137.056F, -226.171997F), new Vector2(-137.056F, -227.371994F)); + builder.AddCubicBezier(new Vector2(-137.056F, -228.548004F), new Vector2(-136.828003F, -229.567993F), new Vector2(-136.371994F, -230.432007F)); + builder.AddCubicBezier(new Vector2(-135.916F, -231.296005F), new Vector2(-135.268005F, -231.968002F), new Vector2(-134.427994F, -232.447998F)); + builder.AddCubicBezier(new Vector2(-133.587997F, -232.927994F), new Vector2(-132.615997F, -233.167999F), new Vector2(-131.511993F, -233.167999F)); + builder.AddCubicBezier(new Vector2(-130.455994F, -233.167999F), new Vector2(-129.556F, -232.945999F), new Vector2(-128.811996F, -232.501999F)); + builder.AddCubicBezier(new Vector2(-128.067993F, -232.057999F), new Vector2(-127.491997F, -231.434006F), new Vector2(-127.084F, -230.630005F)); + builder.AddCubicBezier(new Vector2(-126.676003F, -229.826004F), new Vector2(-126.472F, -228.848007F), new Vector2(-126.472F, -227.695999F)); + builder.AddLine(new Vector2(-125.283997F, -228.740005F)); + builder.AddLine(new Vector2(-137.992004F, -228.740005F)); + builder.AddLine(new Vector2(-137.992004F, -226.039993F)); + builder.AddLine(new Vector2(-123.556F, -226.039993F)); + builder.AddCubicBezier(new Vector2(-123.484001F, -226.376007F), new Vector2(-123.435997F, -226.682007F), new Vector2(-123.412003F, -226.957993F)); + builder.AddCubicBezier(new Vector2(-123.388F, -227.233994F), new Vector2(-123.375999F, -227.492004F), new Vector2(-123.375999F, -227.731995F)); + builder.AddCubicBezier(new Vector2(-123.375999F, -229.363998F), new Vector2(-123.718002F, -230.815994F), new Vector2(-124.402F, -232.087997F)); + builder.AddCubicBezier(new Vector2(-125.085999F, -233.360001F), new Vector2(-126.040001F, -234.356003F), new Vector2(-127.264F, -235.076004F)); + builder.AddCubicBezier(new Vector2(-128.488007F, -235.796005F), new Vector2(-129.880005F, -236.156006F), new Vector2(-131.440002F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-133.095993F, -236.156006F), new Vector2(-134.589996F, -235.766006F), new Vector2(-135.921997F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-137.253998F, -234.205994F), new Vector2(-138.309998F, -233.143997F), new Vector2(-139.089996F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-139.869995F, -230.455994F), new Vector2(-140.259995F, -228.944F), new Vector2(-140.259995F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-140.259995F, -225.559998F), new Vector2(-139.863998F, -224.035995F), new Vector2(-139.072006F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-138.279999F, -221.348007F), new Vector2(-137.205994F, -220.285995F), new Vector2(-135.850006F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-134.494003F, -218.725998F), new Vector2(-132.951996F, -218.335999F), new Vector2(-131.223999F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-129.880005F, -218.335999F), new Vector2(-128.619995F, -218.587997F), new Vector2(-127.444F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0591() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-141.772003F, -232.843994F)); + builder.AddLine(new Vector2(-141.772003F, -235.796005F)); + builder.AddLine(new Vector2(-153.436005F, -235.796005F)); + builder.AddLine(new Vector2(-153.436005F, -232.843994F)); + builder.AddLine(new Vector2(-141.772003F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-145.983994F, -218.695999F)); + builder.AddLine(new Vector2(-145.983994F, -242.960007F)); + builder.AddLine(new Vector2(-149.223999F, -242.960007F)); + builder.AddLine(new Vector2(-149.223999F, -218.695999F)); + builder.AddLine(new Vector2(-145.983994F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0592() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-166.720001F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-167.559998F, -222.727997F), new Vector2(-168.220001F, -223.417999F), new Vector2(-168.699997F, -224.294006F)); + builder.AddCubicBezier(new Vector2(-169.179993F, -225.169998F), new Vector2(-169.419998F, -226.171997F), new Vector2(-169.419998F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-169.419998F, -228.404007F), new Vector2(-169.179993F, -229.388F), new Vector2(-168.699997F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-168.220001F, -231.115997F), new Vector2(-167.559998F, -231.794006F), new Vector2(-166.720001F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-165.880005F, -232.778F), new Vector2(-164.932007F, -233.024002F), new Vector2(-163.876007F, -233.024002F)); + builder.AddCubicBezier(new Vector2(-162.772003F, -233.024002F), new Vector2(-161.806F, -232.778F), new Vector2(-160.977997F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-160.149994F, -231.794006F), new Vector2(-159.490005F, -231.115997F), new Vector2(-158.998001F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-158.505997F, -229.388F), new Vector2(-158.259995F, -228.404007F), new Vector2(-158.259995F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-158.259995F, -226.171997F), new Vector2(-158.5F, -225.169998F), new Vector2(-158.979996F, -224.294006F)); + builder.AddCubicBezier(new Vector2(-159.460007F, -223.417999F), new Vector2(-160.119995F, -222.727997F), new Vector2(-160.960007F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-161.800003F, -221.720001F), new Vector2(-162.772003F, -221.468002F), new Vector2(-163.876007F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-164.932007F, -221.468002F), new Vector2(-165.880005F, -221.720001F), new Vector2(-166.720001F, -222.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-159.322006F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-157.966003F, -220.315994F), new Vector2(-156.891998F, -221.389999F), new Vector2(-156.100006F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-155.307999F, -224.102005F), new Vector2(-154.912003F, -225.619995F), new Vector2(-154.912003F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-154.912003F, -228.955994F), new Vector2(-155.307999F, -230.455994F), new Vector2(-156.100006F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-156.891998F, -233.143997F), new Vector2(-157.966003F, -234.205994F), new Vector2(-159.322006F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-160.677994F, -235.766006F), new Vector2(-162.195999F, -236.156006F), new Vector2(-163.876007F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-165.531998F, -236.156006F), new Vector2(-167.031998F, -235.759995F), new Vector2(-168.376007F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-169.720001F, -234.175995F), new Vector2(-170.787994F, -233.113998F), new Vector2(-171.580002F, -231.781998F)); + builder.AddCubicBezier(new Vector2(-172.371994F, -230.449997F), new Vector2(-172.768005F, -228.955994F), new Vector2(-172.768005F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-172.768005F, -225.619995F), new Vector2(-172.371994F, -224.102005F), new Vector2(-171.580002F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-170.787994F, -221.389999F), new Vector2(-169.720001F, -220.315994F), new Vector2(-168.376007F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-167.031998F, -218.731995F), new Vector2(-165.531998F, -218.335999F), new Vector2(-163.876007F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-162.195999F, -218.335999F), new Vector2(-160.677994F, -218.731995F), new Vector2(-159.322006F, -219.524002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0593() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-181.156006F, -231.944F)); + builder.AddCubicBezier(new Vector2(-180.388F, -232.712006F), new Vector2(-179.404007F, -233.095993F), new Vector2(-178.203995F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-177.628006F, -233.095993F), new Vector2(-177.123993F, -233.011993F), new Vector2(-176.692001F, -232.843994F)); + builder.AddCubicBezier(new Vector2(-176.259995F, -232.675995F), new Vector2(-175.863998F, -232.399994F), new Vector2(-175.503998F, -232.016006F)); + builder.AddLine(new Vector2(-173.380005F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-173.979996F, -234.908005F), new Vector2(-174.628006F, -235.406006F), new Vector2(-175.324005F, -235.705994F)); + builder.AddCubicBezier(new Vector2(-176.020004F, -236.005997F), new Vector2(-176.800003F, -236.156006F), new Vector2(-177.664001F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-179.559998F, -236.156006F), new Vector2(-181.011993F, -235.507996F), new Vector2(-182.020004F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-183.028F, -232.916F), new Vector2(-183.531998F, -231.175995F), new Vector2(-183.531998F, -228.992004F)); + builder.AddLine(new Vector2(-182.307999F, -228.416F)); + builder.AddCubicBezier(new Vector2(-182.307999F, -230F), new Vector2(-181.923996F, -231.175995F), new Vector2(-181.156006F, -231.944F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-182.307999F, -218.695999F)); + builder.AddLine(new Vector2(-182.307999F, -235.796005F)); + builder.AddLine(new Vector2(-185.548004F, -235.796005F)); + builder.AddLine(new Vector2(-185.548004F, -218.695999F)); + builder.AddLine(new Vector2(-182.307999F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0594() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-200.865997F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-201.694F, -222.656006F), new Vector2(-202.330002F, -223.345993F), new Vector2(-202.774002F, -224.222F)); + builder.AddCubicBezier(new Vector2(-203.218002F, -225.098007F), new Vector2(-203.440002F, -226.100006F), new Vector2(-203.440002F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-203.440002F, -228.380005F), new Vector2(-203.212006F, -229.393997F), new Vector2(-202.755997F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-202.300003F, -231.145996F), new Vector2(-201.664001F, -231.835999F), new Vector2(-200.848007F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-200.031998F, -232.843994F), new Vector2(-199.095993F, -233.095993F), new Vector2(-198.039993F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-196.960007F, -233.095993F), new Vector2(-196.011993F, -232.843994F), new Vector2(-195.195999F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-194.380005F, -231.835999F), new Vector2(-193.738007F, -231.145996F), new Vector2(-193.270004F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-192.802002F, -229.393997F), new Vector2(-192.567993F, -228.391998F), new Vector2(-192.567993F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-192.567993F, -226.112F), new Vector2(-192.802002F, -225.098007F), new Vector2(-193.270004F, -224.222F)); + builder.AddCubicBezier(new Vector2(-193.738007F, -223.345993F), new Vector2(-194.380005F, -222.656006F), new Vector2(-195.195999F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-196.011993F, -221.647995F), new Vector2(-196.960007F, -221.395996F), new Vector2(-198.039993F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-199.095993F, -221.395996F), new Vector2(-200.037994F, -221.647995F), new Vector2(-200.865997F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-203.259995F, -211.531998F)); + builder.AddLine(new Vector2(-203.259995F, -222.979996F)); + builder.AddLine(new Vector2(-203.871994F, -227.156006F)); + builder.AddLine(new Vector2(-203.259995F, -231.296005F)); + builder.AddLine(new Vector2(-203.259995F, -235.796005F)); + builder.AddLine(new Vector2(-206.5F, -235.796005F)); + builder.AddLine(new Vector2(-206.5F, -211.531998F)); + builder.AddLine(new Vector2(-203.259995F, -211.531998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-193.270004F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-192.009995F, -220.285995F), new Vector2(-191.020004F, -221.348007F), new Vector2(-190.300003F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-189.580002F, -224.035995F), new Vector2(-189.220001F, -225.548004F), new Vector2(-189.220001F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-189.220001F, -228.908005F), new Vector2(-189.580002F, -230.419998F), new Vector2(-190.300003F, -231.764008F)); + builder.AddCubicBezier(new Vector2(-191.020004F, -233.108002F), new Vector2(-192.009995F, -234.175995F), new Vector2(-193.270004F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-194.529999F, -235.759995F), new Vector2(-195.940002F, -236.156006F), new Vector2(-197.5F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-198.772003F, -236.156006F), new Vector2(-199.929993F, -235.886002F), new Vector2(-200.973999F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-202.018005F, -234.806F), new Vector2(-202.858002F, -234.061996F), new Vector2(-203.494003F, -233.113998F)); + builder.AddCubicBezier(new Vector2(-204.130005F, -232.166F), new Vector2(-204.483994F, -231.067993F), new Vector2(-204.556F, -229.820007F)); + builder.AddLine(new Vector2(-204.556F, -224.671997F)); + builder.AddCubicBezier(new Vector2(-204.483994F, -223.447998F), new Vector2(-204.136002F, -222.356003F), new Vector2(-203.511993F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-202.888F, -220.436005F), new Vector2(-202.054001F, -219.686005F), new Vector2(-201.009995F, -219.145996F)); + builder.AddCubicBezier(new Vector2(-199.966003F, -218.606003F), new Vector2(-198.796005F, -218.335999F), new Vector2(-197.5F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-195.940002F, -218.335999F), new Vector2(-194.529999F, -218.725998F), new Vector2(-193.270004F, -219.505997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0595() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-211.251999F, -226.292007F)); + builder.AddLine(new Vector2(-211.251999F, -229.388F)); + builder.AddLine(new Vector2(-223.095993F, -229.388F)); + builder.AddLine(new Vector2(-223.095993F, -226.292007F)); + builder.AddLine(new Vector2(-211.251999F, -226.292007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0596() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-228.028F, -239.809998F)); + builder.AddCubicBezier(new Vector2(-227.643997F, -240.205994F), new Vector2(-227.451996F, -240.703995F), new Vector2(-227.451996F, -241.304001F)); + builder.AddCubicBezier(new Vector2(-227.451996F, -241.880005F), new Vector2(-227.643997F, -242.365997F), new Vector2(-228.028F, -242.761993F)); + builder.AddCubicBezier(new Vector2(-228.412003F, -243.158005F), new Vector2(-228.904007F, -243.356003F), new Vector2(-229.503998F, -243.356003F)); + builder.AddCubicBezier(new Vector2(-230.104004F, -243.356003F), new Vector2(-230.595993F, -243.158005F), new Vector2(-230.979996F, -242.761993F)); + builder.AddCubicBezier(new Vector2(-231.363998F, -242.365997F), new Vector2(-231.556F, -241.880005F), new Vector2(-231.556F, -241.304001F)); + builder.AddCubicBezier(new Vector2(-231.556F, -240.703995F), new Vector2(-231.363998F, -240.205994F), new Vector2(-230.979996F, -239.809998F)); + builder.AddCubicBezier(new Vector2(-230.595993F, -239.414001F), new Vector2(-230.104004F, -239.216003F), new Vector2(-229.503998F, -239.216003F)); + builder.AddCubicBezier(new Vector2(-228.904007F, -239.216003F), new Vector2(-228.412003F, -239.414001F), new Vector2(-228.028F, -239.809998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-227.884003F, -218.695999F)); + builder.AddLine(new Vector2(-227.884003F, -235.796005F)); + builder.AddLine(new Vector2(-231.160004F, -235.796005F)); + builder.AddLine(new Vector2(-231.160004F, -218.695999F)); + builder.AddLine(new Vector2(-227.884003F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0597() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-234.328003F, -232.843994F)); + builder.AddLine(new Vector2(-234.328003F, -235.796005F)); + builder.AddLine(new Vector2(-245.992004F, -235.796005F)); + builder.AddLine(new Vector2(-245.992004F, -232.843994F)); + builder.AddLine(new Vector2(-234.328003F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-238.539993F, -218.695999F)); + builder.AddLine(new Vector2(-238.539993F, -242.960007F)); + builder.AddLine(new Vector2(-241.779999F, -242.960007F)); + builder.AddLine(new Vector2(-241.779999F, -218.695999F)); + builder.AddLine(new Vector2(-238.539993F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0598() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-260.679993F, -218.695999F)); + builder.AddLine(new Vector2(-260.679993F, -235.796005F)); + builder.AddLine(new Vector2(-263.920013F, -235.796005F)); + builder.AddLine(new Vector2(-263.920013F, -218.695999F)); + builder.AddLine(new Vector2(-260.679993F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-248.584F, -218.695999F)); + builder.AddLine(new Vector2(-248.584F, -229.315994F)); + builder.AddCubicBezier(new Vector2(-248.584F, -230.492004F), new Vector2(-248.871994F, -231.602005F), new Vector2(-249.447998F, -232.645996F)); + builder.AddCubicBezier(new Vector2(-250.024002F, -233.690002F), new Vector2(-250.809998F, -234.535995F), new Vector2(-251.806F, -235.184006F)); + builder.AddCubicBezier(new Vector2(-252.802002F, -235.832001F), new Vector2(-253.947998F, -236.156006F), new Vector2(-255.244003F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-256.540009F, -236.156006F), new Vector2(-257.70401F, -235.862F), new Vector2(-258.735992F, -235.274002F)); + builder.AddCubicBezier(new Vector2(-259.768005F, -234.686005F), new Vector2(-260.571991F, -233.888F), new Vector2(-261.14801F, -232.880005F)); + builder.AddCubicBezier(new Vector2(-261.723999F, -231.871994F), new Vector2(-262.011993F, -230.720001F), new Vector2(-262.011993F, -229.423996F)); + builder.AddLine(new Vector2(-260.679993F, -228.667999F)); + builder.AddCubicBezier(new Vector2(-260.679993F, -229.531998F), new Vector2(-260.488007F, -230.300003F), new Vector2(-260.104004F, -230.972F)); + builder.AddCubicBezier(new Vector2(-259.720001F, -231.643997F), new Vector2(-259.191986F, -232.171997F), new Vector2(-258.519989F, -232.556F)); + builder.AddCubicBezier(new Vector2(-257.847992F, -232.940002F), new Vector2(-257.079987F, -233.132004F), new Vector2(-256.216003F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-254.919998F, -233.132004F), new Vector2(-253.869995F, -232.712006F), new Vector2(-253.065994F, -231.871994F)); + builder.AddCubicBezier(new Vector2(-252.261993F, -231.031998F), new Vector2(-251.860001F, -229.964005F), new Vector2(-251.860001F, -228.667999F)); + builder.AddLine(new Vector2(-251.860001F, -218.695999F)); + builder.AddLine(new Vector2(-248.584F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0599() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-268.635986F, -218.695999F)); + builder.AddLine(new Vector2(-268.635986F, -235.796005F)); + builder.AddLine(new Vector2(-271.911987F, -235.796005F)); + builder.AddLine(new Vector2(-271.911987F, -231.619995F)); + builder.AddLine(new Vector2(-271.299988F, -227.479996F)); + builder.AddLine(new Vector2(-271.911987F, -223.304001F)); + builder.AddLine(new Vector2(-271.911987F, -218.695999F)); + builder.AddLine(new Vector2(-268.635986F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-279.940002F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-280.779999F, -222.656006F), new Vector2(-281.43399F, -223.345993F), new Vector2(-281.902008F, -224.222F)); + builder.AddCubicBezier(new Vector2(-282.369995F, -225.098007F), new Vector2(-282.604004F, -226.112F), new Vector2(-282.604004F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-282.604004F, -228.391998F), new Vector2(-282.369995F, -229.393997F), new Vector2(-281.902008F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-281.43399F, -231.145996F), new Vector2(-280.786011F, -231.835999F), new Vector2(-279.958008F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-279.130005F, -232.843994F), new Vector2(-278.175995F, -233.095993F), new Vector2(-277.096008F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-276.015991F, -233.095993F), new Vector2(-275.074005F, -232.850006F), new Vector2(-274.269989F, -232.358002F)); + builder.AddCubicBezier(new Vector2(-273.466003F, -231.865997F), new Vector2(-272.835999F, -231.175995F), new Vector2(-272.380005F, -230.287994F)); + builder.AddCubicBezier(new Vector2(-271.924011F, -229.399994F), new Vector2(-271.696014F, -228.380005F), new Vector2(-271.696014F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-271.696014F, -225.524002F), new Vector2(-272.187988F, -224.126007F), new Vector2(-273.171997F, -223.033997F)); + builder.AddCubicBezier(new Vector2(-274.156006F, -221.942001F), new Vector2(-275.451996F, -221.395996F), new Vector2(-277.059998F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-278.140015F, -221.395996F), new Vector2(-279.100006F, -221.647995F), new Vector2(-279.940002F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-274.108002F, -219.145996F)); + builder.AddCubicBezier(new Vector2(-273.075989F, -219.686005F), new Vector2(-272.253998F, -220.436005F), new Vector2(-271.641998F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-271.029999F, -222.356003F), new Vector2(-270.687988F, -223.447998F), new Vector2(-270.615997F, -224.671997F)); + builder.AddLine(new Vector2(-270.615997F, -229.820007F)); + builder.AddCubicBezier(new Vector2(-270.687988F, -231.067993F), new Vector2(-271.036011F, -232.166F), new Vector2(-271.660004F, -233.113998F)); + builder.AddCubicBezier(new Vector2(-272.283997F, -234.061996F), new Vector2(-273.105988F, -234.806F), new Vector2(-274.126007F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-275.145996F, -235.886002F), new Vector2(-276.303986F, -236.156006F), new Vector2(-277.600006F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-279.18399F, -236.156006F), new Vector2(-280.605988F, -235.759995F), new Vector2(-281.865997F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-283.126007F, -234.175995F), new Vector2(-284.122009F, -233.108002F), new Vector2(-284.854004F, -231.764008F)); + builder.AddCubicBezier(new Vector2(-285.585999F, -230.419998F), new Vector2(-285.951996F, -228.908005F), new Vector2(-285.951996F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-285.951996F, -225.548004F), new Vector2(-285.585999F, -224.035995F), new Vector2(-284.854004F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-284.122009F, -221.348007F), new Vector2(-283.126007F, -220.285995F), new Vector2(-281.865997F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-280.605988F, -218.725998F), new Vector2(-279.18399F, -218.335999F), new Vector2(-277.600006F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-276.303986F, -218.335999F), new Vector2(-275.140015F, -218.606003F), new Vector2(-274.108002F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0600() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-299.920013F, -219.091995F)); + builder.AddCubicBezier(new Vector2(-298.743988F, -219.595993F), new Vector2(-297.735992F, -220.328003F), new Vector2(-296.895996F, -221.287994F)); + builder.AddLine(new Vector2(-298.984009F, -223.412003F)); + builder.AddCubicBezier(new Vector2(-299.559998F, -222.740005F), new Vector2(-300.25F, -222.235992F), new Vector2(-301.053986F, -221.899994F)); + builder.AddCubicBezier(new Vector2(-301.858002F, -221.563995F), new Vector2(-302.73999F, -221.395996F), new Vector2(-303.700012F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-304.85199F, -221.395996F), new Vector2(-305.872009F, -221.641998F), new Vector2(-306.76001F, -222.134003F)); + builder.AddCubicBezier(new Vector2(-307.64801F, -222.626007F), new Vector2(-308.332001F, -223.322006F), new Vector2(-308.812012F, -224.222F)); + builder.AddCubicBezier(new Vector2(-309.291992F, -225.121994F), new Vector2(-309.532013F, -226.171997F), new Vector2(-309.532013F, -227.371994F)); + builder.AddCubicBezier(new Vector2(-309.532013F, -228.548004F), new Vector2(-309.303986F, -229.567993F), new Vector2(-308.847992F, -230.432007F)); + builder.AddCubicBezier(new Vector2(-308.391998F, -231.296005F), new Vector2(-307.743988F, -231.968002F), new Vector2(-306.903992F, -232.447998F)); + builder.AddCubicBezier(new Vector2(-306.063995F, -232.927994F), new Vector2(-305.09201F, -233.167999F), new Vector2(-303.988007F, -233.167999F)); + builder.AddCubicBezier(new Vector2(-302.932007F, -233.167999F), new Vector2(-302.032013F, -232.945999F), new Vector2(-301.287994F, -232.501999F)); + builder.AddCubicBezier(new Vector2(-300.544006F, -232.057999F), new Vector2(-299.967987F, -231.434006F), new Vector2(-299.559998F, -230.630005F)); + builder.AddCubicBezier(new Vector2(-299.152008F, -229.826004F), new Vector2(-298.947998F, -228.848007F), new Vector2(-298.947998F, -227.695999F)); + builder.AddLine(new Vector2(-297.76001F, -228.740005F)); + builder.AddLine(new Vector2(-310.467987F, -228.740005F)); + builder.AddLine(new Vector2(-310.467987F, -226.039993F)); + builder.AddLine(new Vector2(-296.032013F, -226.039993F)); + builder.AddCubicBezier(new Vector2(-295.959991F, -226.376007F), new Vector2(-295.911987F, -226.682007F), new Vector2(-295.888F, -226.957993F)); + builder.AddCubicBezier(new Vector2(-295.864014F, -227.233994F), new Vector2(-295.85199F, -227.492004F), new Vector2(-295.85199F, -227.731995F)); + builder.AddCubicBezier(new Vector2(-295.85199F, -229.363998F), new Vector2(-296.194F, -230.815994F), new Vector2(-296.877991F, -232.087997F)); + builder.AddCubicBezier(new Vector2(-297.562012F, -233.360001F), new Vector2(-298.515991F, -234.356003F), new Vector2(-299.73999F, -235.076004F)); + builder.AddCubicBezier(new Vector2(-300.963989F, -235.796005F), new Vector2(-302.355988F, -236.156006F), new Vector2(-303.915985F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-305.571991F, -236.156006F), new Vector2(-307.06601F, -235.766006F), new Vector2(-308.39801F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-309.730011F, -234.205994F), new Vector2(-310.786011F, -233.143997F), new Vector2(-311.56601F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-312.346008F, -230.455994F), new Vector2(-312.735992F, -228.944F), new Vector2(-312.735992F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-312.735992F, -225.559998F), new Vector2(-312.339996F, -224.035995F), new Vector2(-311.548004F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-310.756012F, -221.348007F), new Vector2(-309.682007F, -220.285995F), new Vector2(-308.325989F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-306.970001F, -218.725998F), new Vector2(-305.428009F, -218.335999F), new Vector2(-303.700012F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-302.355988F, -218.335999F), new Vector2(-301.096008F, -218.587997F), new Vector2(-299.920013F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0601() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-328.108002F, -218.695999F)); + builder.AddLine(new Vector2(-328.108002F, -244.399994F)); + builder.AddLine(new Vector2(-331.347992F, -244.399994F)); + builder.AddLine(new Vector2(-331.347992F, -218.695999F)); + builder.AddLine(new Vector2(-328.108002F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-316.011993F, -218.695999F)); + builder.AddLine(new Vector2(-316.011993F, -229.315994F)); + builder.AddCubicBezier(new Vector2(-316.011993F, -230.660004F), new Vector2(-316.299988F, -231.848007F), new Vector2(-316.876007F, -232.880005F)); + builder.AddCubicBezier(new Vector2(-317.451996F, -233.912003F), new Vector2(-318.238007F, -234.716003F), new Vector2(-319.234009F, -235.292007F)); + builder.AddCubicBezier(new Vector2(-320.230011F, -235.867996F), new Vector2(-321.376007F, -236.156006F), new Vector2(-322.671997F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-323.967987F, -236.156006F), new Vector2(-325.131989F, -235.862F), new Vector2(-326.164001F, -235.274002F)); + builder.AddCubicBezier(new Vector2(-327.196014F, -234.686005F), new Vector2(-328F, -233.888F), new Vector2(-328.575989F, -232.880005F)); + builder.AddCubicBezier(new Vector2(-329.152008F, -231.871994F), new Vector2(-329.440002F, -230.720001F), new Vector2(-329.440002F, -229.423996F)); + builder.AddLine(new Vector2(-328.108002F, -228.667999F)); + builder.AddCubicBezier(new Vector2(-328.108002F, -229.531998F), new Vector2(-327.915985F, -230.300003F), new Vector2(-327.532013F, -230.972F)); + builder.AddCubicBezier(new Vector2(-327.14801F, -231.643997F), new Vector2(-326.619995F, -232.171997F), new Vector2(-325.947998F, -232.556F)); + builder.AddCubicBezier(new Vector2(-325.276001F, -232.940002F), new Vector2(-324.507996F, -233.132004F), new Vector2(-323.644012F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-322.347992F, -233.132004F), new Vector2(-321.298004F, -232.712006F), new Vector2(-320.493988F, -231.871994F)); + builder.AddCubicBezier(new Vector2(-319.690002F, -231.031998F), new Vector2(-319.287994F, -229.964005F), new Vector2(-319.287994F, -228.667999F)); + builder.AddLine(new Vector2(-319.287994F, -218.695999F)); + builder.AddLine(new Vector2(-316.011993F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0602() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-334.515991F, -232.843994F)); + builder.AddLine(new Vector2(-334.515991F, -235.796005F)); + builder.AddLine(new Vector2(-346.179993F, -235.796005F)); + builder.AddLine(new Vector2(-346.179993F, -232.843994F)); + builder.AddLine(new Vector2(-334.515991F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-338.727997F, -218.695999F)); + builder.AddLine(new Vector2(-338.727997F, -242.960007F)); + builder.AddLine(new Vector2(-341.967987F, -242.960007F)); + builder.AddLine(new Vector2(-341.967987F, -218.695999F)); + builder.AddLine(new Vector2(-338.727997F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0603() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-366.231995F, -211.531998F)); + builder.AddLine(new Vector2(-362.992004F, -218.552002F)); + builder.AddLine(new Vector2(-364.828003F, -221.863998F)); + builder.AddLine(new Vector2(-369.832001F, -211.531998F)); + builder.AddLine(new Vector2(-366.231995F, -211.531998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-362.992004F, -218.552002F)); + builder.AddLine(new Vector2(-355F, -235.796005F)); + builder.AddLine(new Vector2(-358.600006F, -235.796005F)); + builder.AddLine(new Vector2(-364.395996F, -222.296005F)); + builder.AddLine(new Vector2(-363.243988F, -222.296005F)); + builder.AddLine(new Vector2(-368.752014F, -235.796005F)); + builder.AddLine(new Vector2(-372.35199F, -235.796005F)); + builder.AddLine(new Vector2(-364.936005F, -218.552002F)); + builder.AddLine(new Vector2(-362.992004F, -218.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0604() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-385.221985F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-386.049988F, -222.656006F), new Vector2(-386.686005F, -223.345993F), new Vector2(-387.130005F, -224.222F)); + builder.AddCubicBezier(new Vector2(-387.574005F, -225.098007F), new Vector2(-387.79599F, -226.100006F), new Vector2(-387.79599F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-387.79599F, -228.380005F), new Vector2(-387.567993F, -229.393997F), new Vector2(-387.112F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-386.656006F, -231.145996F), new Vector2(-386.019989F, -231.835999F), new Vector2(-385.20401F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-384.388F, -232.843994F), new Vector2(-383.451996F, -233.095993F), new Vector2(-382.395996F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-381.31601F, -233.095993F), new Vector2(-380.368011F, -232.843994F), new Vector2(-379.552002F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-378.735992F, -231.835999F), new Vector2(-378.093994F, -231.145996F), new Vector2(-377.626007F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-377.15799F, -229.393997F), new Vector2(-376.924011F, -228.391998F), new Vector2(-376.924011F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-376.924011F, -226.112F), new Vector2(-377.15799F, -225.098007F), new Vector2(-377.626007F, -224.222F)); + builder.AddCubicBezier(new Vector2(-378.093994F, -223.345993F), new Vector2(-378.735992F, -222.656006F), new Vector2(-379.552002F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-380.368011F, -221.647995F), new Vector2(-381.31601F, -221.395996F), new Vector2(-382.395996F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-383.451996F, -221.395996F), new Vector2(-384.394012F, -221.647995F), new Vector2(-385.221985F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-387.615997F, -218.695999F)); + builder.AddLine(new Vector2(-387.615997F, -223.304001F)); + builder.AddLine(new Vector2(-388.227997F, -227.479996F)); + builder.AddLine(new Vector2(-387.615997F, -231.619995F)); + builder.AddLine(new Vector2(-387.615997F, -244.399994F)); + builder.AddLine(new Vector2(-390.855988F, -244.399994F)); + builder.AddLine(new Vector2(-390.855988F, -218.695999F)); + builder.AddLine(new Vector2(-387.615997F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-377.626007F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-376.365997F, -220.285995F), new Vector2(-375.376007F, -221.348007F), new Vector2(-374.656006F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-373.936005F, -224.035995F), new Vector2(-373.575989F, -225.548004F), new Vector2(-373.575989F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-373.575989F, -228.908005F), new Vector2(-373.936005F, -230.419998F), new Vector2(-374.656006F, -231.764008F)); + builder.AddCubicBezier(new Vector2(-375.376007F, -233.108002F), new Vector2(-376.365997F, -234.175995F), new Vector2(-377.626007F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-378.885986F, -235.759995F), new Vector2(-380.29599F, -236.156006F), new Vector2(-381.855988F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-383.127991F, -236.156006F), new Vector2(-384.286011F, -235.886002F), new Vector2(-385.329987F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-386.373993F, -234.806F), new Vector2(-387.213989F, -234.061996F), new Vector2(-387.850006F, -233.113998F)); + builder.AddCubicBezier(new Vector2(-388.485992F, -232.166F), new Vector2(-388.839996F, -231.067993F), new Vector2(-388.911987F, -229.820007F)); + builder.AddLine(new Vector2(-388.911987F, -224.671997F)); + builder.AddCubicBezier(new Vector2(-388.839996F, -223.447998F), new Vector2(-388.492004F, -222.356003F), new Vector2(-387.868011F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-387.243988F, -220.436005F), new Vector2(-386.410004F, -219.686005F), new Vector2(-385.365997F, -219.145996F)); + builder.AddCubicBezier(new Vector2(-384.321991F, -218.606003F), new Vector2(-383.152008F, -218.335999F), new Vector2(-381.855988F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-380.29599F, -218.335999F), new Vector2(-378.885986F, -218.725998F), new Vector2(-377.626007F, -219.505997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0605() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-403.420013F, -240.656006F)); + builder.AddLine(new Vector2(-403.420013F, -243.679993F)); + builder.AddLine(new Vector2(-416.559998F, -243.679993F)); + builder.AddLine(new Vector2(-415.876007F, -240.656006F)); + builder.AddLine(new Vector2(-403.420013F, -240.656006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-414.723999F, -231.835999F)); + builder.AddLine(new Vector2(-413.463989F, -243.679993F)); + builder.AddLine(new Vector2(-416.559998F, -243.679993F)); + builder.AddLine(new Vector2(-417.675995F, -232.160004F)); + builder.AddLine(new Vector2(-415.839996F, -230.324005F)); + builder.AddLine(new Vector2(-414.723999F, -231.835999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-406.552002F, -219.397995F)); + builder.AddCubicBezier(new Vector2(-405.18399F, -220.106003F), new Vector2(-404.109985F, -221.084F), new Vector2(-403.329987F, -222.332001F)); + builder.AddCubicBezier(new Vector2(-402.549988F, -223.580002F), new Vector2(-402.160004F, -224.996002F), new Vector2(-402.160004F, -226.580002F)); + builder.AddCubicBezier(new Vector2(-402.160004F, -228.091995F), new Vector2(-402.477997F, -229.460007F), new Vector2(-403.114014F, -230.684006F)); + builder.AddCubicBezier(new Vector2(-403.75F, -231.908005F), new Vector2(-404.667999F, -232.880005F), new Vector2(-405.868011F, -233.600006F)); + builder.AddCubicBezier(new Vector2(-407.067993F, -234.320007F), new Vector2(-408.532013F, -234.679993F), new Vector2(-410.26001F, -234.679993F)); + builder.AddCubicBezier(new Vector2(-411.14801F, -234.679993F), new Vector2(-411.928009F, -234.595993F), new Vector2(-412.600006F, -234.427994F)); + builder.AddCubicBezier(new Vector2(-413.272003F, -234.259995F), new Vector2(-413.872009F, -234.020004F), new Vector2(-414.399994F, -233.707993F)); + builder.AddCubicBezier(new Vector2(-414.928009F, -233.395996F), new Vector2(-415.395996F, -232.988007F), new Vector2(-415.803986F, -232.483994F)); + builder.AddLine(new Vector2(-415.839996F, -230.324005F)); + builder.AddCubicBezier(new Vector2(-415.119995F, -230.899994F), new Vector2(-414.358002F, -231.307999F), new Vector2(-413.553986F, -231.548004F)); + builder.AddCubicBezier(new Vector2(-412.75F, -231.787994F), new Vector2(-411.855988F, -231.908005F), new Vector2(-410.872009F, -231.908005F)); + builder.AddCubicBezier(new Vector2(-409.911987F, -231.908005F), new Vector2(-409.029999F, -231.710007F), new Vector2(-408.226013F, -231.313995F)); + builder.AddCubicBezier(new Vector2(-407.421997F, -230.917999F), new Vector2(-406.786011F, -230.335999F), new Vector2(-406.317993F, -229.567993F)); + builder.AddCubicBezier(new Vector2(-405.850006F, -228.800003F), new Vector2(-405.615997F, -227.863998F), new Vector2(-405.615997F, -226.759995F)); + builder.AddCubicBezier(new Vector2(-405.615997F, -225.679993F), new Vector2(-405.855988F, -224.75F), new Vector2(-406.335999F, -223.970001F)); + builder.AddCubicBezier(new Vector2(-406.81601F, -223.190002F), new Vector2(-407.481995F, -222.584F), new Vector2(-408.334015F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-409.186005F, -221.720001F), new Vector2(-410.175995F, -221.503998F), new Vector2(-411.303986F, -221.503998F)); + builder.AddCubicBezier(new Vector2(-412.503998F, -221.503998F), new Vector2(-413.589996F, -221.75F), new Vector2(-414.562012F, -222.242004F)); + builder.AddCubicBezier(new Vector2(-415.533997F, -222.733994F), new Vector2(-416.29599F, -223.399994F), new Vector2(-416.847992F, -224.240005F)); + builder.AddLine(new Vector2(-419.152008F, -221.936005F)); + builder.AddCubicBezier(new Vector2(-418.23999F, -220.759995F), new Vector2(-417.118011F, -219.865997F), new Vector2(-415.786011F, -219.253998F)); + builder.AddCubicBezier(new Vector2(-414.45401F, -218.641998F), new Vector2(-412.947998F, -218.335999F), new Vector2(-411.268005F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-409.492004F, -218.335999F), new Vector2(-407.920013F, -218.690002F), new Vector2(-406.552002F, -219.397995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0606() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-421.671997F, -218.695999F)); + builder.AddLine(new Vector2(-421.671997F, -221.720001F)); + builder.AddLine(new Vector2(-435.567993F, -221.720001F)); + builder.AddLine(new Vector2(-438.447998F, -220.748001F)); + builder.AddLine(new Vector2(-438.447998F, -218.695999F)); + builder.AddLine(new Vector2(-421.671997F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-434.056F, -220.856003F)); + builder.AddLine(new Vector2(-426.604004F, -228.524002F)); + builder.AddCubicBezier(new Vector2(-425.476013F, -229.699997F), new Vector2(-424.593994F, -230.714005F), new Vector2(-423.958008F, -231.565994F)); + builder.AddCubicBezier(new Vector2(-423.321991F, -232.417999F), new Vector2(-422.877991F, -233.251999F), new Vector2(-422.626007F, -234.067993F)); + builder.AddCubicBezier(new Vector2(-422.373993F, -234.884003F), new Vector2(-422.247986F, -235.807999F), new Vector2(-422.247986F, -236.839996F)); + builder.AddCubicBezier(new Vector2(-422.247986F, -238.279999F), new Vector2(-422.559998F, -239.539993F), new Vector2(-423.18399F, -240.619995F)); + builder.AddCubicBezier(new Vector2(-423.808014F, -241.699997F), new Vector2(-424.690002F, -242.539993F), new Vector2(-425.829987F, -243.139999F)); + builder.AddCubicBezier(new Vector2(-426.970001F, -243.740005F), new Vector2(-428.308014F, -244.039993F), new Vector2(-429.843994F, -244.039993F)); + builder.AddCubicBezier(new Vector2(-431.691986F, -244.039993F), new Vector2(-433.312012F, -243.626007F), new Vector2(-434.70401F, -242.798004F)); + builder.AddCubicBezier(new Vector2(-436.096008F, -241.970001F), new Vector2(-437.272003F, -240.740005F), new Vector2(-438.231995F, -239.108002F)); + builder.AddLine(new Vector2(-435.855988F, -237.128006F)); + builder.AddCubicBezier(new Vector2(-435.112F, -238.399994F), new Vector2(-434.26001F, -239.341995F), new Vector2(-433.299988F, -239.953995F)); + builder.AddCubicBezier(new Vector2(-432.339996F, -240.565994F), new Vector2(-431.223999F, -240.871994F), new Vector2(-429.951996F, -240.871994F)); + builder.AddCubicBezier(new Vector2(-428.656006F, -240.871994F), new Vector2(-427.605988F, -240.511993F), new Vector2(-426.802002F, -239.792007F)); + builder.AddCubicBezier(new Vector2(-425.997986F, -239.072006F), new Vector2(-425.596008F, -238.076004F), new Vector2(-425.596008F, -236.804001F)); + builder.AddCubicBezier(new Vector2(-425.596008F, -236.156006F), new Vector2(-425.70401F, -235.531998F), new Vector2(-425.920013F, -234.932007F)); + builder.AddCubicBezier(new Vector2(-426.135986F, -234.332001F), new Vector2(-426.514008F, -233.677994F), new Vector2(-427.053986F, -232.970001F)); + builder.AddCubicBezier(new Vector2(-427.593994F, -232.261993F), new Vector2(-428.320007F, -231.427994F), new Vector2(-429.231995F, -230.468002F)); + builder.AddLine(new Vector2(-438.447998F, -220.748001F)); + builder.AddLine(new Vector2(-434.056F, -220.856003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0607() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-454.864014F, -222.638F)); + builder.AddCubicBezier(new Vector2(-455.872009F, -223.369995F), new Vector2(-456.65799F, -224.455994F), new Vector2(-457.221985F, -225.895996F)); + builder.AddCubicBezier(new Vector2(-457.786011F, -227.335999F), new Vector2(-458.067993F, -229.112F), new Vector2(-458.067993F, -231.223999F)); + builder.AddCubicBezier(new Vector2(-458.067993F, -233.335999F), new Vector2(-457.786011F, -235.106003F), new Vector2(-457.221985F, -236.533997F)); + builder.AddCubicBezier(new Vector2(-456.65799F, -237.962006F), new Vector2(-455.872009F, -239.035995F), new Vector2(-454.864014F, -239.755997F)); + builder.AddCubicBezier(new Vector2(-453.855988F, -240.475998F), new Vector2(-452.70401F, -240.835999F), new Vector2(-451.40799F, -240.835999F)); + builder.AddCubicBezier(new Vector2(-450.088013F, -240.835999F), new Vector2(-448.924011F, -240.475998F), new Vector2(-447.915985F, -239.755997F)); + builder.AddCubicBezier(new Vector2(-446.90799F, -239.035995F), new Vector2(-446.115997F, -237.955994F), new Vector2(-445.540009F, -236.516006F)); + builder.AddCubicBezier(new Vector2(-444.963989F, -235.076004F), new Vector2(-444.675995F, -233.311996F), new Vector2(-444.675995F, -231.223999F)); + builder.AddCubicBezier(new Vector2(-444.675995F, -229.112F), new Vector2(-444.963989F, -227.335999F), new Vector2(-445.540009F, -225.895996F)); + builder.AddCubicBezier(new Vector2(-446.115997F, -224.455994F), new Vector2(-446.902008F, -223.369995F), new Vector2(-447.89801F, -222.638F)); + builder.AddCubicBezier(new Vector2(-448.894012F, -221.906006F), new Vector2(-450.052002F, -221.539993F), new Vector2(-451.372009F, -221.539993F)); + builder.AddCubicBezier(new Vector2(-452.691986F, -221.539993F), new Vector2(-453.855988F, -221.906006F), new Vector2(-454.864014F, -222.638F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-446.242004F, -219.901993F)); + builder.AddCubicBezier(new Vector2(-444.717987F, -220.945999F), new Vector2(-443.506012F, -222.434006F), new Vector2(-442.605988F, -224.365997F)); + builder.AddCubicBezier(new Vector2(-441.705994F, -226.298004F), new Vector2(-441.256012F, -228.572006F), new Vector2(-441.256012F, -231.188004F)); + builder.AddCubicBezier(new Vector2(-441.256012F, -233.828003F), new Vector2(-441.705994F, -236.108002F), new Vector2(-442.605988F, -238.028F)); + builder.AddCubicBezier(new Vector2(-443.506012F, -239.947998F), new Vector2(-444.723999F, -241.429993F), new Vector2(-446.26001F, -242.473999F)); + builder.AddCubicBezier(new Vector2(-447.79599F, -243.518005F), new Vector2(-449.511993F, -244.039993F), new Vector2(-451.40799F, -244.039993F)); + builder.AddCubicBezier(new Vector2(-453.256012F, -244.039993F), new Vector2(-454.947998F, -243.518005F), new Vector2(-456.484009F, -242.473999F)); + builder.AddCubicBezier(new Vector2(-458.019989F, -241.429993F), new Vector2(-459.238007F, -239.947998F), new Vector2(-460.138F, -238.028F)); + builder.AddCubicBezier(new Vector2(-461.037994F, -236.108002F), new Vector2(-461.488007F, -233.839996F), new Vector2(-461.488007F, -231.223999F)); + builder.AddCubicBezier(new Vector2(-461.488007F, -228.608002F), new Vector2(-461.032013F, -226.334F), new Vector2(-460.119995F, -224.401993F)); + builder.AddCubicBezier(new Vector2(-459.208008F, -222.470001F), new Vector2(-457.977997F, -220.975998F), new Vector2(-456.429993F, -219.919998F)); + builder.AddCubicBezier(new Vector2(-454.881989F, -218.863998F), new Vector2(-453.171997F, -218.335999F), new Vector2(-451.299988F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-449.451996F, -218.335999F), new Vector2(-447.765991F, -218.858002F), new Vector2(-446.242004F, -219.901993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0608() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-464.691986F, -218.695999F)); + builder.AddLine(new Vector2(-464.691986F, -221.720001F)); + builder.AddLine(new Vector2(-478.588013F, -221.720001F)); + builder.AddLine(new Vector2(-481.467987F, -220.748001F)); + builder.AddLine(new Vector2(-481.467987F, -218.695999F)); + builder.AddLine(new Vector2(-464.691986F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-477.075989F, -220.856003F)); + builder.AddLine(new Vector2(-469.623993F, -228.524002F)); + builder.AddCubicBezier(new Vector2(-468.496002F, -229.699997F), new Vector2(-467.614014F, -230.714005F), new Vector2(-466.977997F, -231.565994F)); + builder.AddCubicBezier(new Vector2(-466.34201F, -232.417999F), new Vector2(-465.89801F, -233.251999F), new Vector2(-465.645996F, -234.067993F)); + builder.AddCubicBezier(new Vector2(-465.394012F, -234.884003F), new Vector2(-465.268005F, -235.807999F), new Vector2(-465.268005F, -236.839996F)); + builder.AddCubicBezier(new Vector2(-465.268005F, -238.279999F), new Vector2(-465.579987F, -239.539993F), new Vector2(-466.20401F, -240.619995F)); + builder.AddCubicBezier(new Vector2(-466.828003F, -241.699997F), new Vector2(-467.709991F, -242.539993F), new Vector2(-468.850006F, -243.139999F)); + builder.AddCubicBezier(new Vector2(-469.98999F, -243.740005F), new Vector2(-471.328003F, -244.039993F), new Vector2(-472.864014F, -244.039993F)); + builder.AddCubicBezier(new Vector2(-474.712006F, -244.039993F), new Vector2(-476.332001F, -243.626007F), new Vector2(-477.723999F, -242.798004F)); + builder.AddCubicBezier(new Vector2(-479.115997F, -241.970001F), new Vector2(-480.291992F, -240.740005F), new Vector2(-481.252014F, -239.108002F)); + builder.AddLine(new Vector2(-478.876007F, -237.128006F)); + builder.AddCubicBezier(new Vector2(-478.131989F, -238.399994F), new Vector2(-477.279999F, -239.341995F), new Vector2(-476.320007F, -239.953995F)); + builder.AddCubicBezier(new Vector2(-475.359985F, -240.565994F), new Vector2(-474.243988F, -240.871994F), new Vector2(-472.971985F, -240.871994F)); + builder.AddCubicBezier(new Vector2(-471.675995F, -240.871994F), new Vector2(-470.626007F, -240.511993F), new Vector2(-469.821991F, -239.792007F)); + builder.AddCubicBezier(new Vector2(-469.018005F, -239.072006F), new Vector2(-468.615997F, -238.076004F), new Vector2(-468.615997F, -236.804001F)); + builder.AddCubicBezier(new Vector2(-468.615997F, -236.156006F), new Vector2(-468.723999F, -235.531998F), new Vector2(-468.940002F, -234.932007F)); + builder.AddCubicBezier(new Vector2(-469.156006F, -234.332001F), new Vector2(-469.533997F, -233.677994F), new Vector2(-470.074005F, -232.970001F)); + builder.AddCubicBezier(new Vector2(-470.614014F, -232.261993F), new Vector2(-471.339996F, -231.427994F), new Vector2(-472.252014F, -230.468002F)); + builder.AddLine(new Vector2(-481.467987F, -220.748001F)); + builder.AddLine(new Vector2(-477.075989F, -220.856003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0609() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-504.220001F, -218.695999F)); + builder.AddLine(new Vector2(-504.220001F, -244.399994F)); + builder.AddLine(new Vector2(-507.459991F, -244.399994F)); + builder.AddLine(new Vector2(-507.459991F, -218.695999F)); + builder.AddLine(new Vector2(-504.220001F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-492.123993F, -218.695999F)); + builder.AddLine(new Vector2(-492.123993F, -229.315994F)); + builder.AddCubicBezier(new Vector2(-492.123993F, -230.660004F), new Vector2(-492.411987F, -231.848007F), new Vector2(-492.988007F, -232.880005F)); + builder.AddCubicBezier(new Vector2(-493.563995F, -233.912003F), new Vector2(-494.350006F, -234.716003F), new Vector2(-495.346008F, -235.292007F)); + builder.AddCubicBezier(new Vector2(-496.34201F, -235.867996F), new Vector2(-497.488007F, -236.156006F), new Vector2(-498.783997F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-500.079987F, -236.156006F), new Vector2(-501.243988F, -235.862F), new Vector2(-502.276001F, -235.274002F)); + builder.AddCubicBezier(new Vector2(-503.308014F, -234.686005F), new Vector2(-504.112F, -233.888F), new Vector2(-504.687988F, -232.880005F)); + builder.AddCubicBezier(new Vector2(-505.264008F, -231.871994F), new Vector2(-505.552002F, -230.720001F), new Vector2(-505.552002F, -229.423996F)); + builder.AddLine(new Vector2(-504.220001F, -228.667999F)); + builder.AddCubicBezier(new Vector2(-504.220001F, -229.531998F), new Vector2(-504.028015F, -230.300003F), new Vector2(-503.644012F, -230.972F)); + builder.AddCubicBezier(new Vector2(-503.26001F, -231.643997F), new Vector2(-502.731995F, -232.171997F), new Vector2(-502.059998F, -232.556F)); + builder.AddCubicBezier(new Vector2(-501.388F, -232.940002F), new Vector2(-500.619995F, -233.132004F), new Vector2(-499.756012F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-498.459991F, -233.132004F), new Vector2(-497.410004F, -232.712006F), new Vector2(-496.605988F, -231.871994F)); + builder.AddCubicBezier(new Vector2(-495.802002F, -231.031998F), new Vector2(-495.399994F, -229.964005F), new Vector2(-495.399994F, -228.667999F)); + builder.AddLine(new Vector2(-495.399994F, -218.695999F)); + builder.AddLine(new Vector2(-492.123993F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0610() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-510.627991F, -232.843994F)); + builder.AddLine(new Vector2(-510.627991F, -235.796005F)); + builder.AddLine(new Vector2(-522.291992F, -235.796005F)); + builder.AddLine(new Vector2(-522.291992F, -232.843994F)); + builder.AddLine(new Vector2(-510.627991F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-514.840027F, -218.695999F)); + builder.AddLine(new Vector2(-514.840027F, -242.960007F)); + builder.AddLine(new Vector2(-518.080017F, -242.960007F)); + builder.AddLine(new Vector2(-518.080017F, -218.695999F)); + builder.AddLine(new Vector2(-514.840027F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0611() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-525.711975F, -240.656006F)); + builder.AddLine(new Vector2(-524.236023F, -241.591995F)); + builder.AddLine(new Vector2(-524.236023F, -243.679993F)); + builder.AddLine(new Vector2(-540.867981F, -243.679993F)); + builder.AddLine(new Vector2(-540.867981F, -240.656006F)); + builder.AddLine(new Vector2(-525.711975F, -240.656006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-533.380005F, -218.695999F)); + builder.AddLine(new Vector2(-524.236023F, -241.591995F)); + builder.AddLine(new Vector2(-527.583984F, -241.664001F)); + builder.AddLine(new Vector2(-536.94397F, -218.695999F)); + builder.AddLine(new Vector2(-533.380005F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0612() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-542.559998F, -218.695999F)); + builder.AddLine(new Vector2(-542.559998F, -221.720001F)); + builder.AddLine(new Vector2(-556.455994F, -221.720001F)); + builder.AddLine(new Vector2(-559.335999F, -220.748001F)); + builder.AddLine(new Vector2(-559.335999F, -218.695999F)); + builder.AddLine(new Vector2(-542.559998F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-554.94397F, -220.856003F)); + builder.AddLine(new Vector2(-547.492004F, -228.524002F)); + builder.AddCubicBezier(new Vector2(-546.364014F, -229.699997F), new Vector2(-545.481995F, -230.714005F), new Vector2(-544.846008F, -231.565994F)); + builder.AddCubicBezier(new Vector2(-544.210022F, -232.417999F), new Vector2(-543.765991F, -233.251999F), new Vector2(-543.513977F, -234.067993F)); + builder.AddCubicBezier(new Vector2(-543.262024F, -234.884003F), new Vector2(-543.135986F, -235.807999F), new Vector2(-543.135986F, -236.839996F)); + builder.AddCubicBezier(new Vector2(-543.135986F, -238.279999F), new Vector2(-543.447998F, -239.539993F), new Vector2(-544.072021F, -240.619995F)); + builder.AddCubicBezier(new Vector2(-544.695984F, -241.699997F), new Vector2(-545.578003F, -242.539993F), new Vector2(-546.718018F, -243.139999F)); + builder.AddCubicBezier(new Vector2(-547.857971F, -243.740005F), new Vector2(-549.195984F, -244.039993F), new Vector2(-550.731995F, -244.039993F)); + builder.AddCubicBezier(new Vector2(-552.580017F, -244.039993F), new Vector2(-554.200012F, -243.626007F), new Vector2(-555.59198F, -242.798004F)); + builder.AddCubicBezier(new Vector2(-556.984009F, -241.970001F), new Vector2(-558.159973F, -240.740005F), new Vector2(-559.119995F, -239.108002F)); + builder.AddLine(new Vector2(-556.744019F, -237.128006F)); + builder.AddCubicBezier(new Vector2(-556F, -238.399994F), new Vector2(-555.14801F, -239.341995F), new Vector2(-554.187988F, -239.953995F)); + builder.AddCubicBezier(new Vector2(-553.228027F, -240.565994F), new Vector2(-552.112F, -240.871994F), new Vector2(-550.840027F, -240.871994F)); + builder.AddCubicBezier(new Vector2(-549.544006F, -240.871994F), new Vector2(-548.494019F, -240.511993F), new Vector2(-547.690002F, -239.792007F)); + builder.AddCubicBezier(new Vector2(-546.885986F, -239.072006F), new Vector2(-546.484009F, -238.076004F), new Vector2(-546.484009F, -236.804001F)); + builder.AddCubicBezier(new Vector2(-546.484009F, -236.156006F), new Vector2(-546.59198F, -235.531998F), new Vector2(-546.807983F, -234.932007F)); + builder.AddCubicBezier(new Vector2(-547.023987F, -234.332001F), new Vector2(-547.401978F, -233.677994F), new Vector2(-547.942017F, -232.970001F)); + builder.AddCubicBezier(new Vector2(-548.481995F, -232.261993F), new Vector2(-549.208008F, -231.427994F), new Vector2(-550.119995F, -230.468002F)); + builder.AddLine(new Vector2(-559.335999F, -220.748001F)); + builder.AddLine(new Vector2(-554.94397F, -220.856003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0613() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-568.768005F, -232.843994F)); + builder.AddLine(new Vector2(-568.768005F, -235.796005F)); + builder.AddLine(new Vector2(-580.432007F, -235.796005F)); + builder.AddLine(new Vector2(-580.432007F, -232.843994F)); + builder.AddLine(new Vector2(-568.768005F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-572.97998F, -218.695999F)); + builder.AddLine(new Vector2(-572.97998F, -242.960007F)); + builder.AddLine(new Vector2(-576.219971F, -242.960007F)); + builder.AddLine(new Vector2(-576.219971F, -218.695999F)); + builder.AddLine(new Vector2(-572.97998F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0614() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-584.19397F, -219.740005F)); + builder.AddCubicBezier(new Vector2(-583.054016F, -220.675995F), new Vector2(-582.484009F, -221.947998F), new Vector2(-582.484009F, -223.556F)); + builder.AddCubicBezier(new Vector2(-582.484009F, -224.612F), new Vector2(-582.705994F, -225.464005F), new Vector2(-583.150024F, -226.112F)); + builder.AddCubicBezier(new Vector2(-583.593994F, -226.759995F), new Vector2(-584.164001F, -227.276001F), new Vector2(-584.859985F, -227.660004F)); + builder.AddCubicBezier(new Vector2(-585.55603F, -228.044006F), new Vector2(-586.288025F, -228.350006F), new Vector2(-587.05603F, -228.578003F)); + builder.AddCubicBezier(new Vector2(-587.823975F, -228.806F), new Vector2(-588.562012F, -229.028F), new Vector2(-589.27002F, -229.244003F)); + builder.AddCubicBezier(new Vector2(-589.978027F, -229.460007F), new Vector2(-590.547974F, -229.723999F), new Vector2(-590.97998F, -230.035995F)); + builder.AddCubicBezier(new Vector2(-591.411987F, -230.348007F), new Vector2(-591.627991F, -230.792007F), new Vector2(-591.627991F, -231.367996F)); + builder.AddCubicBezier(new Vector2(-591.627991F, -231.919998F), new Vector2(-591.382019F, -232.363998F), new Vector2(-590.890015F, -232.699997F)); + builder.AddCubicBezier(new Vector2(-590.39801F, -233.035995F), new Vector2(-589.684021F, -233.203995F), new Vector2(-588.747986F, -233.203995F)); + builder.AddCubicBezier(new Vector2(-587.859985F, -233.203995F), new Vector2(-587.067993F, -233.035995F), new Vector2(-586.372009F, -232.699997F)); + builder.AddCubicBezier(new Vector2(-585.676025F, -232.363998F), new Vector2(-585.075989F, -231.884003F), new Vector2(-584.572021F, -231.259995F)); + builder.AddLine(new Vector2(-582.484009F, -233.348007F)); + builder.AddCubicBezier(new Vector2(-583.156006F, -234.283997F), new Vector2(-584.013977F, -234.985992F), new Vector2(-585.057983F, -235.453995F)); + builder.AddCubicBezier(new Vector2(-586.10199F, -235.921997F), new Vector2(-587.296021F, -236.156006F), new Vector2(-588.640015F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-589.911987F, -236.156006F), new Vector2(-591.004028F, -235.951996F), new Vector2(-591.916016F, -235.544006F)); + builder.AddCubicBezier(new Vector2(-592.828003F, -235.136002F), new Vector2(-593.530029F, -234.554001F), new Vector2(-594.021973F, -233.798004F)); + builder.AddCubicBezier(new Vector2(-594.513977F, -233.042007F), new Vector2(-594.76001F, -232.147995F), new Vector2(-594.76001F, -231.115997F)); + builder.AddCubicBezier(new Vector2(-594.76001F, -230.084F), new Vector2(-594.538025F, -229.25F), new Vector2(-594.093994F, -228.613998F)); + builder.AddCubicBezier(new Vector2(-593.650024F, -227.977997F), new Vector2(-593.080017F, -227.479996F), new Vector2(-592.383972F, -227.119995F)); + builder.AddCubicBezier(new Vector2(-591.687988F, -226.759995F), new Vector2(-590.950012F, -226.472F), new Vector2(-590.169983F, -226.255997F)); + builder.AddCubicBezier(new Vector2(-589.390015F, -226.039993F), new Vector2(-588.651978F, -225.817993F), new Vector2(-587.955994F, -225.589996F)); + builder.AddCubicBezier(new Vector2(-587.26001F, -225.362F), new Vector2(-586.690002F, -225.074005F), new Vector2(-586.245972F, -224.725998F)); + builder.AddCubicBezier(new Vector2(-585.802002F, -224.378006F), new Vector2(-585.580017F, -223.891998F), new Vector2(-585.580017F, -223.268005F)); + builder.AddCubicBezier(new Vector2(-585.580017F, -222.643997F), new Vector2(-585.856018F, -222.158005F), new Vector2(-586.40802F, -221.809998F)); + builder.AddCubicBezier(new Vector2(-586.960022F, -221.462006F), new Vector2(-587.73999F, -221.287994F), new Vector2(-588.747986F, -221.287994F)); + builder.AddCubicBezier(new Vector2(-589.755981F, -221.287994F), new Vector2(-590.66803F, -221.473999F), new Vector2(-591.484009F, -221.845993F)); + builder.AddCubicBezier(new Vector2(-592.299988F, -222.218002F), new Vector2(-593.02002F, -222.787994F), new Vector2(-593.643982F, -223.556F)); + builder.AddLine(new Vector2(-595.731995F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-595.203979F, -220.820007F), new Vector2(-594.585999F, -220.261993F), new Vector2(-593.877991F, -219.794006F)); + builder.AddCubicBezier(new Vector2(-593.169983F, -219.326004F), new Vector2(-592.383972F, -218.966003F), new Vector2(-591.52002F, -218.714005F)); + builder.AddCubicBezier(new Vector2(-590.656006F, -218.462006F), new Vector2(-589.744019F, -218.335999F), new Vector2(-588.783997F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-586.864014F, -218.335999F), new Vector2(-585.333984F, -218.804001F), new Vector2(-584.19397F, -219.740005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0615() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-602.104004F, -219.326004F)); + builder.AddCubicBezier(new Vector2(-601F, -219.938004F), new Vector2(-600.135986F, -220.807999F), new Vector2(-599.512024F, -221.936005F)); + builder.AddCubicBezier(new Vector2(-598.888F, -223.063995F), new Vector2(-598.575989F, -224.371994F), new Vector2(-598.575989F, -225.860001F)); + builder.AddLine(new Vector2(-598.575989F, -235.796005F)); + builder.AddLine(new Vector2(-601.815979F, -235.796005F)); + builder.AddLine(new Vector2(-601.815979F, -226.003998F)); + builder.AddCubicBezier(new Vector2(-601.815979F, -224.587997F), new Vector2(-602.176025F, -223.477997F), new Vector2(-602.895996F, -222.673996F)); + builder.AddCubicBezier(new Vector2(-603.616028F, -221.869995F), new Vector2(-604.612F, -221.468002F), new Vector2(-605.883972F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-606.723999F, -221.468002F), new Vector2(-607.455994F, -221.647995F), new Vector2(-608.080017F, -222.007996F)); + builder.AddCubicBezier(new Vector2(-608.703979F, -222.367996F), new Vector2(-609.177979F, -222.889999F), new Vector2(-609.502014F, -223.574005F)); + builder.AddCubicBezier(new Vector2(-609.825989F, -224.257996F), new Vector2(-609.987976F, -225.067993F), new Vector2(-609.987976F, -226.003998F)); + builder.AddLine(new Vector2(-609.987976F, -235.796005F)); + builder.AddLine(new Vector2(-613.228027F, -235.796005F)); + builder.AddLine(new Vector2(-613.228027F, -225.860001F)); + builder.AddCubicBezier(new Vector2(-613.228027F, -224.371994F), new Vector2(-612.916016F, -223.063995F), new Vector2(-612.291992F, -221.936005F)); + builder.AddCubicBezier(new Vector2(-611.66803F, -220.807999F), new Vector2(-610.797974F, -219.938004F), new Vector2(-609.682007F, -219.326004F)); + builder.AddCubicBezier(new Vector2(-608.565979F, -218.714005F), new Vector2(-607.299988F, -218.408005F), new Vector2(-605.883972F, -218.408005F)); + builder.AddCubicBezier(new Vector2(-604.468018F, -218.408005F), new Vector2(-603.208008F, -218.714005F), new Vector2(-602.104004F, -219.326004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0616() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-628.726013F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-629.554016F, -223.214005F), new Vector2(-630.202026F, -223.867996F), new Vector2(-630.669983F, -224.707993F)); + builder.AddCubicBezier(new Vector2(-631.138F, -225.548004F), new Vector2(-631.372009F, -226.507996F), new Vector2(-631.372009F, -227.587997F)); + builder.AddCubicBezier(new Vector2(-631.372009F, -228.667999F), new Vector2(-631.138F, -229.621994F), new Vector2(-630.669983F, -230.449997F)); + builder.AddCubicBezier(new Vector2(-630.202026F, -231.278F), new Vector2(-629.559998F, -231.925995F), new Vector2(-628.744019F, -232.393997F)); + builder.AddCubicBezier(new Vector2(-627.927979F, -232.862F), new Vector2(-626.97998F, -233.095993F), new Vector2(-625.900024F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-624.843994F, -233.095993F), new Vector2(-623.914001F, -232.862F), new Vector2(-623.109985F, -232.393997F)); + builder.AddCubicBezier(new Vector2(-622.30603F, -231.925995F), new Vector2(-621.682007F, -231.278F), new Vector2(-621.237976F, -230.449997F)); + builder.AddCubicBezier(new Vector2(-620.794006F, -229.621994F), new Vector2(-620.572021F, -228.656006F), new Vector2(-620.572021F, -227.552002F)); + builder.AddCubicBezier(new Vector2(-620.572021F, -226.447998F), new Vector2(-620.794006F, -225.481995F), new Vector2(-621.237976F, -224.654007F)); + builder.AddCubicBezier(new Vector2(-621.682007F, -223.826004F), new Vector2(-622.299988F, -223.184006F), new Vector2(-623.09198F, -222.727997F)); + builder.AddCubicBezier(new Vector2(-623.883972F, -222.272003F), new Vector2(-624.820007F, -222.044006F), new Vector2(-625.900024F, -222.044006F)); + builder.AddCubicBezier(new Vector2(-626.955994F, -222.044006F), new Vector2(-627.89801F, -222.278F), new Vector2(-628.726013F, -222.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-622.984009F, -219.776001F)); + builder.AddCubicBezier(new Vector2(-621.952026F, -220.304001F), new Vector2(-621.130005F, -221.042007F), new Vector2(-620.518005F, -221.990005F)); + builder.AddCubicBezier(new Vector2(-619.906006F, -222.938004F), new Vector2(-619.564026F, -224.035995F), new Vector2(-619.492004F, -225.283997F)); + builder.AddLine(new Vector2(-619.492004F, -229.820007F)); + builder.AddCubicBezier(new Vector2(-619.564026F, -231.091995F), new Vector2(-619.900024F, -232.201996F), new Vector2(-620.5F, -233.149994F)); + builder.AddCubicBezier(new Vector2(-621.099976F, -234.098007F), new Vector2(-621.921997F, -234.835999F), new Vector2(-622.966003F, -235.363998F)); + builder.AddCubicBezier(new Vector2(-624.01001F, -235.891998F), new Vector2(-625.203979F, -236.156006F), new Vector2(-626.547974F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-628.083984F, -236.156006F), new Vector2(-629.476013F, -235.778F), new Vector2(-630.723999F, -235.022003F)); + builder.AddCubicBezier(new Vector2(-631.971985F, -234.266006F), new Vector2(-632.950012F, -233.246002F), new Vector2(-633.65802F, -231.962006F)); + builder.AddCubicBezier(new Vector2(-634.366028F, -230.677994F), new Vector2(-634.719971F, -229.220001F), new Vector2(-634.719971F, -227.587997F)); + builder.AddCubicBezier(new Vector2(-634.719971F, -225.955994F), new Vector2(-634.359985F, -224.485992F), new Vector2(-633.640015F, -223.177994F)); + builder.AddCubicBezier(new Vector2(-632.919983F, -221.869995F), new Vector2(-631.942017F, -220.843994F), new Vector2(-630.705994F, -220.100006F)); + builder.AddCubicBezier(new Vector2(-629.469971F, -219.356003F), new Vector2(-628.072021F, -218.983994F), new Vector2(-626.512024F, -218.983994F)); + builder.AddCubicBezier(new Vector2(-625.192017F, -218.983994F), new Vector2(-624.015991F, -219.248001F), new Vector2(-622.984009F, -219.776001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-621.814026F, -212.197998F)); + builder.AddCubicBezier(new Vector2(-620.458008F, -212.882004F), new Vector2(-619.401978F, -213.841995F), new Vector2(-618.645996F, -215.078003F)); + builder.AddCubicBezier(new Vector2(-617.890015F, -216.313995F), new Vector2(-617.512024F, -217.748001F), new Vector2(-617.512024F, -219.380005F)); + builder.AddLine(new Vector2(-617.512024F, -235.796005F)); + builder.AddLine(new Vector2(-620.752014F, -235.796005F)); + builder.AddLine(new Vector2(-620.752014F, -231.296005F)); + builder.AddLine(new Vector2(-620.176025F, -227.479996F)); + builder.AddLine(new Vector2(-620.752014F, -223.628006F)); + builder.AddLine(new Vector2(-620.752014F, -219.380005F)); + builder.AddCubicBezier(new Vector2(-620.752014F, -217.820007F), new Vector2(-621.268005F, -216.578003F), new Vector2(-622.299988F, -215.654007F)); + builder.AddCubicBezier(new Vector2(-623.33197F, -214.729996F), new Vector2(-624.711975F, -214.268005F), new Vector2(-626.440002F, -214.268005F)); + builder.AddCubicBezier(new Vector2(-627.76001F, -214.268005F), new Vector2(-628.900024F, -214.501999F), new Vector2(-629.859985F, -214.970001F)); + builder.AddCubicBezier(new Vector2(-630.820007F, -215.438004F), new Vector2(-631.64801F, -216.115997F), new Vector2(-632.343994F, -217.003998F)); + builder.AddLine(new Vector2(-634.468018F, -214.880005F)); + builder.AddCubicBezier(new Vector2(-633.627991F, -213.703995F), new Vector2(-632.536011F, -212.792007F), new Vector2(-631.192017F, -212.143997F)); + builder.AddCubicBezier(new Vector2(-629.848022F, -211.496002F), new Vector2(-628.288025F, -211.171997F), new Vector2(-626.512024F, -211.171997F)); + builder.AddCubicBezier(new Vector2(-624.736023F, -211.171997F), new Vector2(-623.169983F, -211.514008F), new Vector2(-621.814026F, -212.197998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0617() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-641.487976F, -219.326004F)); + builder.AddCubicBezier(new Vector2(-640.383972F, -219.938004F), new Vector2(-639.52002F, -220.807999F), new Vector2(-638.895996F, -221.936005F)); + builder.AddCubicBezier(new Vector2(-638.271973F, -223.063995F), new Vector2(-637.960022F, -224.371994F), new Vector2(-637.960022F, -225.860001F)); + builder.AddLine(new Vector2(-637.960022F, -235.796005F)); + builder.AddLine(new Vector2(-641.200012F, -235.796005F)); + builder.AddLine(new Vector2(-641.200012F, -226.003998F)); + builder.AddCubicBezier(new Vector2(-641.200012F, -224.587997F), new Vector2(-641.559998F, -223.477997F), new Vector2(-642.280029F, -222.673996F)); + builder.AddCubicBezier(new Vector2(-643F, -221.869995F), new Vector2(-643.995972F, -221.468002F), new Vector2(-645.268005F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-646.107971F, -221.468002F), new Vector2(-646.840027F, -221.647995F), new Vector2(-647.463989F, -222.007996F)); + builder.AddCubicBezier(new Vector2(-648.088013F, -222.367996F), new Vector2(-648.562012F, -222.889999F), new Vector2(-648.885986F, -223.574005F)); + builder.AddCubicBezier(new Vector2(-649.210022F, -224.257996F), new Vector2(-649.372009F, -225.067993F), new Vector2(-649.372009F, -226.003998F)); + builder.AddLine(new Vector2(-649.372009F, -235.796005F)); + builder.AddLine(new Vector2(-652.612F, -235.796005F)); + builder.AddLine(new Vector2(-652.612F, -225.860001F)); + builder.AddCubicBezier(new Vector2(-652.612F, -224.371994F), new Vector2(-652.299988F, -223.063995F), new Vector2(-651.676025F, -221.936005F)); + builder.AddCubicBezier(new Vector2(-651.052002F, -220.807999F), new Vector2(-650.182007F, -219.938004F), new Vector2(-649.065979F, -219.326004F)); + builder.AddCubicBezier(new Vector2(-647.950012F, -218.714005F), new Vector2(-646.684021F, -218.408005F), new Vector2(-645.268005F, -218.408005F)); + builder.AddCubicBezier(new Vector2(-643.85199F, -218.408005F), new Vector2(-642.59198F, -218.714005F), new Vector2(-641.487976F, -219.326004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0618() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-659.848022F, -224.348007F)); + builder.AddLine(new Vector2(-659.848022F, -227.300003F)); + builder.AddLine(new Vector2(-672.987976F, -227.300003F)); + builder.AddLine(new Vector2(-672.987976F, -224.348007F)); + builder.AddLine(new Vector2(-659.848022F, -224.348007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-674.247986F, -218.695999F)); + builder.AddLine(new Vector2(-665.788025F, -239.828003F)); + builder.AddLine(new Vector2(-667.083984F, -239.828003F)); + builder.AddLine(new Vector2(-658.659973F, -218.695999F)); + builder.AddLine(new Vector2(-654.987976F, -218.695999F)); + builder.AddLine(new Vector2(-665.176025F, -243.679993F)); + builder.AddLine(new Vector2(-667.624023F, -243.679993F)); + builder.AddLine(new Vector2(-677.883972F, -218.695999F)); + builder.AddLine(new Vector2(-674.247986F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0619() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-699.52002F, -218.695999F)); + builder.AddLine(new Vector2(-699.52002F, -235.796005F)); + builder.AddLine(new Vector2(-702.76001F, -235.796005F)); + builder.AddLine(new Vector2(-702.76001F, -218.695999F)); + builder.AddLine(new Vector2(-699.52002F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-687.424011F, -218.695999F)); + builder.AddLine(new Vector2(-687.424011F, -229.315994F)); + builder.AddCubicBezier(new Vector2(-687.424011F, -230.492004F), new Vector2(-687.711975F, -231.602005F), new Vector2(-688.288025F, -232.645996F)); + builder.AddCubicBezier(new Vector2(-688.864014F, -233.690002F), new Vector2(-689.650024F, -234.535995F), new Vector2(-690.645996F, -235.184006F)); + builder.AddCubicBezier(new Vector2(-691.642029F, -235.832001F), new Vector2(-692.788025F, -236.156006F), new Vector2(-694.083984F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-695.380005F, -236.156006F), new Vector2(-696.544006F, -235.862F), new Vector2(-697.575989F, -235.274002F)); + builder.AddCubicBezier(new Vector2(-698.607971F, -234.686005F), new Vector2(-699.411987F, -233.888F), new Vector2(-699.987976F, -232.880005F)); + builder.AddCubicBezier(new Vector2(-700.564026F, -231.871994F), new Vector2(-700.85199F, -230.720001F), new Vector2(-700.85199F, -229.423996F)); + builder.AddLine(new Vector2(-699.52002F, -228.667999F)); + builder.AddCubicBezier(new Vector2(-699.52002F, -229.531998F), new Vector2(-699.328003F, -230.300003F), new Vector2(-698.94397F, -230.972F)); + builder.AddCubicBezier(new Vector2(-698.559998F, -231.643997F), new Vector2(-698.031982F, -232.171997F), new Vector2(-697.359985F, -232.556F)); + builder.AddCubicBezier(new Vector2(-696.687988F, -232.940002F), new Vector2(-695.919983F, -233.132004F), new Vector2(-695.05603F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-693.76001F, -233.132004F), new Vector2(-692.710022F, -232.712006F), new Vector2(-691.906006F, -231.871994F)); + builder.AddCubicBezier(new Vector2(-691.10199F, -231.031998F), new Vector2(-690.700012F, -229.964005F), new Vector2(-690.700012F, -228.667999F)); + builder.AddLine(new Vector2(-690.700012F, -218.695999F)); + builder.AddLine(new Vector2(-687.424011F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0620() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-718.16803F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-719.007996F, -222.727997F), new Vector2(-719.66803F, -223.417999F), new Vector2(-720.14801F, -224.294006F)); + builder.AddCubicBezier(new Vector2(-720.627991F, -225.169998F), new Vector2(-720.867981F, -226.171997F), new Vector2(-720.867981F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-720.867981F, -228.404007F), new Vector2(-720.627991F, -229.388F), new Vector2(-720.14801F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-719.66803F, -231.115997F), new Vector2(-719.007996F, -231.794006F), new Vector2(-718.16803F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-717.328003F, -232.778F), new Vector2(-716.380005F, -233.024002F), new Vector2(-715.323975F, -233.024002F)); + builder.AddCubicBezier(new Vector2(-714.219971F, -233.024002F), new Vector2(-713.254028F, -232.778F), new Vector2(-712.426025F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-711.598022F, -231.794006F), new Vector2(-710.937988F, -231.115997F), new Vector2(-710.445984F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-709.953979F, -229.388F), new Vector2(-709.708008F, -228.404007F), new Vector2(-709.708008F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-709.708008F, -226.171997F), new Vector2(-709.947998F, -225.169998F), new Vector2(-710.427979F, -224.294006F)); + builder.AddCubicBezier(new Vector2(-710.90802F, -223.417999F), new Vector2(-711.567993F, -222.727997F), new Vector2(-712.40802F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-713.247986F, -221.720001F), new Vector2(-714.219971F, -221.468002F), new Vector2(-715.323975F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-716.380005F, -221.468002F), new Vector2(-717.328003F, -221.720001F), new Vector2(-718.16803F, -222.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-710.77002F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-709.414001F, -220.315994F), new Vector2(-708.340027F, -221.389999F), new Vector2(-707.547974F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-706.755981F, -224.102005F), new Vector2(-706.359985F, -225.619995F), new Vector2(-706.359985F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-706.359985F, -228.955994F), new Vector2(-706.755981F, -230.455994F), new Vector2(-707.547974F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-708.340027F, -233.143997F), new Vector2(-709.414001F, -234.205994F), new Vector2(-710.77002F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-712.125977F, -235.766006F), new Vector2(-713.643982F, -236.156006F), new Vector2(-715.323975F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-716.97998F, -236.156006F), new Vector2(-718.47998F, -235.759995F), new Vector2(-719.823975F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-721.16803F, -234.175995F), new Vector2(-722.236023F, -233.113998F), new Vector2(-723.028015F, -231.781998F)); + builder.AddCubicBezier(new Vector2(-723.820007F, -230.449997F), new Vector2(-724.216003F, -228.955994F), new Vector2(-724.216003F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-724.216003F, -225.619995F), new Vector2(-723.820007F, -224.102005F), new Vector2(-723.028015F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-722.236023F, -221.389999F), new Vector2(-721.16803F, -220.315994F), new Vector2(-719.823975F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-718.47998F, -218.731995F), new Vector2(-716.97998F, -218.335999F), new Vector2(-715.323975F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-713.643982F, -218.335999F), new Vector2(-712.125977F, -218.731995F), new Vector2(-710.77002F, -219.524002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0621() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-737.463989F, -218.606003F)); + builder.AddCubicBezier(new Vector2(-736.528015F, -220.225998F), new Vector2(-735.807983F, -221.996002F), new Vector2(-735.304016F, -223.916F)); + builder.AddCubicBezier(new Vector2(-734.799988F, -225.835999F), new Vector2(-734.547974F, -227.828003F), new Vector2(-734.547974F, -229.891998F)); + builder.AddCubicBezier(new Vector2(-734.547974F, -231.955994F), new Vector2(-734.799988F, -233.947998F), new Vector2(-735.304016F, -235.867996F)); + builder.AddCubicBezier(new Vector2(-735.807983F, -237.787994F), new Vector2(-736.528015F, -239.557999F), new Vector2(-737.463989F, -241.177994F)); + builder.AddCubicBezier(new Vector2(-738.400024F, -242.798004F), new Vector2(-739.528015F, -244.160004F), new Vector2(-740.848022F, -245.264008F)); + builder.AddLine(new Vector2(-742.755981F, -243.572006F)); + builder.AddCubicBezier(new Vector2(-741.028015F, -242.084F), new Vector2(-739.708008F, -240.164001F), new Vector2(-738.796021F, -237.811996F)); + builder.AddCubicBezier(new Vector2(-737.883972F, -235.460007F), new Vector2(-737.427979F, -232.820007F), new Vector2(-737.427979F, -229.891998F)); + builder.AddCubicBezier(new Vector2(-737.427979F, -226.988007F), new Vector2(-737.883972F, -224.360001F), new Vector2(-738.796021F, -222.007996F)); + builder.AddCubicBezier(new Vector2(-739.708008F, -219.656006F), new Vector2(-741.028015F, -217.723999F), new Vector2(-742.755981F, -216.212006F)); + builder.AddLine(new Vector2(-740.848022F, -214.520004F)); + builder.AddCubicBezier(new Vector2(-739.528015F, -215.623993F), new Vector2(-738.400024F, -216.985992F), new Vector2(-737.463989F, -218.606003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0622() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-756.83197F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-757.671997F, -222.727997F), new Vector2(-758.33197F, -223.417999F), new Vector2(-758.812012F, -224.294006F)); + builder.AddCubicBezier(new Vector2(-759.291992F, -225.169998F), new Vector2(-759.531982F, -226.171997F), new Vector2(-759.531982F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-759.531982F, -228.404007F), new Vector2(-759.291992F, -229.388F), new Vector2(-758.812012F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-758.33197F, -231.115997F), new Vector2(-757.671997F, -231.794006F), new Vector2(-756.83197F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-755.992004F, -232.778F), new Vector2(-755.044006F, -233.024002F), new Vector2(-753.987976F, -233.024002F)); + builder.AddCubicBezier(new Vector2(-752.883972F, -233.024002F), new Vector2(-751.91803F, -232.778F), new Vector2(-751.090027F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-750.262024F, -231.794006F), new Vector2(-749.60199F, -231.115997F), new Vector2(-749.109985F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-748.617981F, -229.388F), new Vector2(-748.372009F, -228.404007F), new Vector2(-748.372009F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-748.372009F, -226.171997F), new Vector2(-748.612F, -225.169998F), new Vector2(-749.09198F, -224.294006F)); + builder.AddCubicBezier(new Vector2(-749.572021F, -223.417999F), new Vector2(-750.231995F, -222.727997F), new Vector2(-751.072021F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-751.911987F, -221.720001F), new Vector2(-752.883972F, -221.468002F), new Vector2(-753.987976F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-755.044006F, -221.468002F), new Vector2(-755.992004F, -221.720001F), new Vector2(-756.83197F, -222.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-749.434021F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-748.078003F, -220.315994F), new Vector2(-747.004028F, -221.389999F), new Vector2(-746.211975F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-745.419983F, -224.102005F), new Vector2(-745.023987F, -225.619995F), new Vector2(-745.023987F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-745.023987F, -228.955994F), new Vector2(-745.419983F, -230.455994F), new Vector2(-746.211975F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-747.004028F, -233.143997F), new Vector2(-748.078003F, -234.205994F), new Vector2(-749.434021F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-750.789978F, -235.766006F), new Vector2(-752.307983F, -236.156006F), new Vector2(-753.987976F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-755.643982F, -236.156006F), new Vector2(-757.143982F, -235.759995F), new Vector2(-758.487976F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-759.83197F, -234.175995F), new Vector2(-760.900024F, -233.113998F), new Vector2(-761.692017F, -231.781998F)); + builder.AddCubicBezier(new Vector2(-762.484009F, -230.449997F), new Vector2(-762.880005F, -228.955994F), new Vector2(-762.880005F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-762.880005F, -225.619995F), new Vector2(-762.484009F, -224.102005F), new Vector2(-761.692017F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-760.900024F, -221.389999F), new Vector2(-759.83197F, -220.315994F), new Vector2(-758.487976F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-757.143982F, -218.731995F), new Vector2(-755.643982F, -218.335999F), new Vector2(-753.987976F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-752.307983F, -218.335999F), new Vector2(-750.789978F, -218.731995F), new Vector2(-749.434021F, -219.524002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0623() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-775.012024F, -211.531998F)); + builder.AddLine(new Vector2(-771.771973F, -218.552002F)); + builder.AddLine(new Vector2(-773.607971F, -221.863998F)); + builder.AddLine(new Vector2(-778.612F, -211.531998F)); + builder.AddLine(new Vector2(-775.012024F, -211.531998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-771.771973F, -218.552002F)); + builder.AddLine(new Vector2(-763.780029F, -235.796005F)); + builder.AddLine(new Vector2(-767.380005F, -235.796005F)); + builder.AddLine(new Vector2(-773.176025F, -222.296005F)); + builder.AddLine(new Vector2(-772.023987F, -222.296005F)); + builder.AddLine(new Vector2(-777.531982F, -235.796005F)); + builder.AddLine(new Vector2(-781.132019F, -235.796005F)); + builder.AddLine(new Vector2(-773.716003F, -218.552002F)); + builder.AddLine(new Vector2(-771.771973F, -218.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0624() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-792.435974F, -240.656006F)); + builder.AddLine(new Vector2(-792.435974F, -243.679993F)); + builder.AddLine(new Vector2(-800.536011F, -243.679993F)); + builder.AddLine(new Vector2(-800.536011F, -240.656006F)); + builder.AddLine(new Vector2(-792.435974F, -240.656006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-792.075989F, -218.695999F)); + builder.AddLine(new Vector2(-792.075989F, -243.679993F)); + builder.AddLine(new Vector2(-795.424011F, -243.679993F)); + builder.AddLine(new Vector2(-795.424011F, -218.695999F)); + builder.AddLine(new Vector2(-792.075989F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0625() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-803.164001F, -218.695999F)); + builder.AddLine(new Vector2(-803.164001F, -221.720001F)); + builder.AddLine(new Vector2(-817.059998F, -221.720001F)); + builder.AddLine(new Vector2(-819.940002F, -220.748001F)); + builder.AddLine(new Vector2(-819.940002F, -218.695999F)); + builder.AddLine(new Vector2(-803.164001F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-815.547974F, -220.856003F)); + builder.AddLine(new Vector2(-808.096008F, -228.524002F)); + builder.AddCubicBezier(new Vector2(-806.968018F, -229.699997F), new Vector2(-806.085999F, -230.714005F), new Vector2(-805.450012F, -231.565994F)); + builder.AddCubicBezier(new Vector2(-804.814026F, -232.417999F), new Vector2(-804.369995F, -233.251999F), new Vector2(-804.117981F, -234.067993F)); + builder.AddCubicBezier(new Vector2(-803.866028F, -234.884003F), new Vector2(-803.73999F, -235.807999F), new Vector2(-803.73999F, -236.839996F)); + builder.AddCubicBezier(new Vector2(-803.73999F, -238.279999F), new Vector2(-804.052002F, -239.539993F), new Vector2(-804.676025F, -240.619995F)); + builder.AddCubicBezier(new Vector2(-805.299988F, -241.699997F), new Vector2(-806.182007F, -242.539993F), new Vector2(-807.322021F, -243.139999F)); + builder.AddCubicBezier(new Vector2(-808.461975F, -243.740005F), new Vector2(-809.799988F, -244.039993F), new Vector2(-811.335999F, -244.039993F)); + builder.AddCubicBezier(new Vector2(-813.184021F, -244.039993F), new Vector2(-814.804016F, -243.626007F), new Vector2(-816.195984F, -242.798004F)); + builder.AddCubicBezier(new Vector2(-817.588013F, -241.970001F), new Vector2(-818.763977F, -240.740005F), new Vector2(-819.723999F, -239.108002F)); + builder.AddLine(new Vector2(-817.348022F, -237.128006F)); + builder.AddCubicBezier(new Vector2(-816.604004F, -238.399994F), new Vector2(-815.752014F, -239.341995F), new Vector2(-814.791992F, -239.953995F)); + builder.AddCubicBezier(new Vector2(-813.83197F, -240.565994F), new Vector2(-812.716003F, -240.871994F), new Vector2(-811.44397F, -240.871994F)); + builder.AddCubicBezier(new Vector2(-810.14801F, -240.871994F), new Vector2(-809.098022F, -240.511993F), new Vector2(-808.294006F, -239.792007F)); + builder.AddCubicBezier(new Vector2(-807.48999F, -239.072006F), new Vector2(-807.088013F, -238.076004F), new Vector2(-807.088013F, -236.804001F)); + builder.AddCubicBezier(new Vector2(-807.088013F, -236.156006F), new Vector2(-807.195984F, -235.531998F), new Vector2(-807.411987F, -234.932007F)); + builder.AddCubicBezier(new Vector2(-807.627991F, -234.332001F), new Vector2(-808.005981F, -233.677994F), new Vector2(-808.546021F, -232.970001F)); + builder.AddCubicBezier(new Vector2(-809.085999F, -232.261993F), new Vector2(-809.812012F, -231.427994F), new Vector2(-810.723999F, -230.468002F)); + builder.AddLine(new Vector2(-819.940002F, -220.748001F)); + builder.AddLine(new Vector2(-815.547974F, -220.856003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0626() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-822.171997F, -216.212006F)); + builder.AddCubicBezier(new Vector2(-823.875977F, -217.723999F), new Vector2(-825.190002F, -219.656006F), new Vector2(-826.114014F, -222.007996F)); + builder.AddCubicBezier(new Vector2(-827.038025F, -224.360001F), new Vector2(-827.5F, -226.988007F), new Vector2(-827.5F, -229.891998F)); + builder.AddCubicBezier(new Vector2(-827.5F, -232.820007F), new Vector2(-827.038025F, -235.460007F), new Vector2(-826.114014F, -237.811996F)); + builder.AddCubicBezier(new Vector2(-825.190002F, -240.164001F), new Vector2(-823.875977F, -242.084F), new Vector2(-822.171997F, -243.572006F)); + builder.AddLine(new Vector2(-824.044006F, -245.264008F)); + builder.AddCubicBezier(new Vector2(-825.364014F, -244.160004F), new Vector2(-826.492004F, -242.798004F), new Vector2(-827.427979F, -241.177994F)); + builder.AddCubicBezier(new Vector2(-828.364014F, -239.557999F), new Vector2(-829.083984F, -237.787994F), new Vector2(-829.588013F, -235.867996F)); + builder.AddCubicBezier(new Vector2(-830.09198F, -233.947998F), new Vector2(-830.343994F, -231.955994F), new Vector2(-830.343994F, -229.891998F)); + builder.AddCubicBezier(new Vector2(-830.343994F, -227.828003F), new Vector2(-830.09198F, -225.835999F), new Vector2(-829.588013F, -223.916F)); + builder.AddCubicBezier(new Vector2(-829.083984F, -221.996002F), new Vector2(-828.364014F, -220.225998F), new Vector2(-827.427979F, -218.606003F)); + builder.AddCubicBezier(new Vector2(-826.492004F, -216.985992F), new Vector2(-825.364014F, -215.623993F), new Vector2(-824.044006F, -214.520004F)); + builder.AddLine(new Vector2(-822.171997F, -216.212006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0627() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(806.64801F, -261.895996F)); + builder.AddLine(new Vector2(806.64801F, -279.608002F)); + builder.AddLine(new Vector2(799.59198F, -279.608002F)); + builder.AddLine(new Vector2(799.59198F, -261.895996F)); + builder.AddLine(new Vector2(806.64801F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(817.916016F, -261.895996F)); + builder.AddLine(new Vector2(817.916016F, -273.451996F)); + builder.AddCubicBezier(new Vector2(817.916016F, -274.723999F), new Vector2(817.627991F, -275.846008F), new Vector2(817.052002F, -276.817993F)); + builder.AddCubicBezier(new Vector2(816.476013F, -277.790009F), new Vector2(815.690002F, -278.558014F), new Vector2(814.69397F, -279.122009F)); + builder.AddCubicBezier(new Vector2(813.697998F, -279.686005F), new Vector2(812.564026F, -279.967987F), new Vector2(811.291992F, -279.967987F)); + builder.AddCubicBezier(new Vector2(809.875977F, -279.967987F), new Vector2(808.609985F, -279.691986F), new Vector2(807.494019F, -279.140015F)); + builder.AddCubicBezier(new Vector2(806.377991F, -278.588013F), new Vector2(805.502014F, -277.79599F), new Vector2(804.866028F, -276.764008F)); + builder.AddCubicBezier(new Vector2(804.22998F, -275.731995F), new Vector2(803.911987F, -274.496002F), new Vector2(803.911987F, -273.056F)); + builder.AddLine(new Vector2(806.64801F, -271.832001F)); + builder.AddCubicBezier(new Vector2(806.64801F, -272.287994F), new Vector2(806.737976F, -272.678009F), new Vector2(806.91803F, -273.002014F)); + builder.AddCubicBezier(new Vector2(807.098022F, -273.325989F), new Vector2(807.349976F, -273.571991F), new Vector2(807.674011F, -273.73999F)); + builder.AddCubicBezier(new Vector2(807.997986F, -273.90799F), new Vector2(808.364014F, -273.992004F), new Vector2(808.771973F, -273.992004F)); + builder.AddCubicBezier(new Vector2(809.372009F, -273.992004F), new Vector2(809.869995F, -273.806F), new Vector2(810.265991F, -273.43399F)); + builder.AddCubicBezier(new Vector2(810.661987F, -273.062012F), new Vector2(810.859985F, -272.528015F), new Vector2(810.859985F, -271.832001F)); + builder.AddLine(new Vector2(810.859985F, -261.895996F)); + builder.AddLine(new Vector2(817.916016F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0628() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(796.208008F, -261.895996F)); + builder.AddLine(new Vector2(796.208008F, -279.608002F)); + builder.AddLine(new Vector2(789.33197F, -279.608002F)); + builder.AddLine(new Vector2(789.33197F, -275.252014F)); + builder.AddLine(new Vector2(790.304016F, -270.967987F)); + builder.AddLine(new Vector2(789.33197F, -266.64801F)); + builder.AddLine(new Vector2(789.33197F, -261.895996F)); + builder.AddLine(new Vector2(796.208008F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(785.083984F, -268.123993F)); + builder.AddCubicBezier(new Vector2(784.627991F, -268.388F), new Vector2(784.273987F, -268.747986F), new Vector2(784.021973F, -269.20401F)); + builder.AddCubicBezier(new Vector2(783.77002F, -269.660004F), new Vector2(783.643982F, -270.175995F), new Vector2(783.643982F, -270.752014F)); + builder.AddCubicBezier(new Vector2(783.643982F, -271.328003F), new Vector2(783.776001F, -271.843994F), new Vector2(784.039978F, -272.299988F)); + builder.AddCubicBezier(new Vector2(784.304016F, -272.756012F), new Vector2(784.65802F, -273.115997F), new Vector2(785.10199F, -273.380005F)); + builder.AddCubicBezier(new Vector2(785.546021F, -273.644012F), new Vector2(786.05603F, -273.776001F), new Vector2(786.632019F, -273.776001F)); + builder.AddCubicBezier(new Vector2(787.208008F, -273.776001F), new Vector2(787.718018F, -273.644012F), new Vector2(788.161987F, -273.380005F)); + builder.AddCubicBezier(new Vector2(788.606018F, -273.115997F), new Vector2(788.947998F, -272.761993F), new Vector2(789.187988F, -272.317993F)); + builder.AddCubicBezier(new Vector2(789.427979F, -271.873993F), new Vector2(789.547974F, -271.35199F), new Vector2(789.547974F, -270.752014F)); + builder.AddCubicBezier(new Vector2(789.547974F, -269.864014F), new Vector2(789.278015F, -269.138F), new Vector2(788.737976F, -268.574005F)); + builder.AddCubicBezier(new Vector2(788.197998F, -268.01001F), new Vector2(787.484009F, -267.727997F), new Vector2(786.596008F, -267.727997F)); + builder.AddCubicBezier(new Vector2(786.044006F, -267.727997F), new Vector2(785.539978F, -267.859985F), new Vector2(785.083984F, -268.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(787.874023F, -262.058014F)); + builder.AddCubicBezier(new Vector2(788.75F, -262.406006F), new Vector2(789.481995F, -262.891998F), new Vector2(790.070007F, -263.515991F)); + builder.AddCubicBezier(new Vector2(790.65802F, -264.140015F), new Vector2(791.036011F, -264.859985F), new Vector2(791.203979F, -265.675995F)); + builder.AddLine(new Vector2(791.203979F, -275.828003F)); + builder.AddCubicBezier(new Vector2(791.036011F, -276.644012F), new Vector2(790.65802F, -277.364014F), new Vector2(790.070007F, -277.988007F)); + builder.AddCubicBezier(new Vector2(789.481995F, -278.612F), new Vector2(788.75F, -279.097992F), new Vector2(787.874023F, -279.446014F)); + builder.AddCubicBezier(new Vector2(786.997986F, -279.794006F), new Vector2(786.044006F, -279.967987F), new Vector2(785.012024F, -279.967987F)); + builder.AddCubicBezier(new Vector2(783.356018F, -279.967987F), new Vector2(781.892029F, -279.578003F), new Vector2(780.619995F, -278.798004F)); + builder.AddCubicBezier(new Vector2(779.348022F, -278.018005F), new Vector2(778.35199F, -276.932007F), new Vector2(777.632019F, -275.540009F)); + builder.AddCubicBezier(new Vector2(776.911987F, -274.14801F), new Vector2(776.552002F, -272.552002F), new Vector2(776.552002F, -270.752014F)); + builder.AddCubicBezier(new Vector2(776.552002F, -268.951996F), new Vector2(776.911987F, -267.362F), new Vector2(777.632019F, -265.981995F)); + builder.AddCubicBezier(new Vector2(778.35199F, -264.60199F), new Vector2(779.348022F, -263.515991F), new Vector2(780.619995F, -262.723999F)); + builder.AddCubicBezier(new Vector2(781.892029F, -261.932007F), new Vector2(783.356018F, -261.536011F), new Vector2(785.012024F, -261.536011F)); + builder.AddCubicBezier(new Vector2(786.044006F, -261.536011F), new Vector2(786.997986F, -261.709991F), new Vector2(787.874023F, -262.058014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0629() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(758.731995F, -261.895996F)); + builder.AddLine(new Vector2(762.296021F, -274.135986F)); + builder.AddLine(new Vector2(760.856018F, -274.135986F)); + builder.AddLine(new Vector2(764.312012F, -261.895996F)); + builder.AddLine(new Vector2(771.044006F, -261.895996F)); + builder.AddLine(new Vector2(776.192017F, -279.608002F)); + builder.AddLine(new Vector2(769.495972F, -279.608002F)); + builder.AddLine(new Vector2(766.580017F, -266.720001F)); + builder.AddLine(new Vector2(768.596008F, -266.68399F)); + builder.AddLine(new Vector2(764.85199F, -279.608002F)); + builder.AddLine(new Vector2(758.192017F, -279.608002F)); + builder.AddLine(new Vector2(754.484009F, -266.68399F)); + builder.AddLine(new Vector2(756.463989F, -266.720001F)); + builder.AddLine(new Vector2(753.619995F, -279.608002F)); + builder.AddLine(new Vector2(746.924011F, -279.608002F)); + builder.AddLine(new Vector2(752.072021F, -261.895996F)); + builder.AddLine(new Vector2(758.731995F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0630() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(745.195984F, -261.895996F)); + builder.AddLine(new Vector2(745.195984F, -279.608002F)); + builder.AddLine(new Vector2(738.320007F, -279.608002F)); + builder.AddLine(new Vector2(738.320007F, -275.252014F)); + builder.AddLine(new Vector2(739.291992F, -270.967987F)); + builder.AddLine(new Vector2(738.320007F, -266.64801F)); + builder.AddLine(new Vector2(738.320007F, -261.895996F)); + builder.AddLine(new Vector2(745.195984F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(734.072021F, -268.123993F)); + builder.AddCubicBezier(new Vector2(733.616028F, -268.388F), new Vector2(733.262024F, -268.747986F), new Vector2(733.01001F, -269.20401F)); + builder.AddCubicBezier(new Vector2(732.757996F, -269.660004F), new Vector2(732.632019F, -270.175995F), new Vector2(732.632019F, -270.752014F)); + builder.AddCubicBezier(new Vector2(732.632019F, -271.328003F), new Vector2(732.763977F, -271.843994F), new Vector2(733.028015F, -272.299988F)); + builder.AddCubicBezier(new Vector2(733.291992F, -272.756012F), new Vector2(733.645996F, -273.115997F), new Vector2(734.090027F, -273.380005F)); + builder.AddCubicBezier(new Vector2(734.533997F, -273.644012F), new Vector2(735.044006F, -273.776001F), new Vector2(735.619995F, -273.776001F)); + builder.AddCubicBezier(new Vector2(736.195984F, -273.776001F), new Vector2(736.705994F, -273.644012F), new Vector2(737.150024F, -273.380005F)); + builder.AddCubicBezier(new Vector2(737.593994F, -273.115997F), new Vector2(737.935974F, -272.761993F), new Vector2(738.176025F, -272.317993F)); + builder.AddCubicBezier(new Vector2(738.416016F, -271.873993F), new Vector2(738.536011F, -271.35199F), new Vector2(738.536011F, -270.752014F)); + builder.AddCubicBezier(new Vector2(738.536011F, -269.864014F), new Vector2(738.265991F, -269.138F), new Vector2(737.726013F, -268.574005F)); + builder.AddCubicBezier(new Vector2(737.185974F, -268.01001F), new Vector2(736.471985F, -267.727997F), new Vector2(735.583984F, -267.727997F)); + builder.AddCubicBezier(new Vector2(735.031982F, -267.727997F), new Vector2(734.528015F, -267.859985F), new Vector2(734.072021F, -268.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(736.862F, -262.058014F)); + builder.AddCubicBezier(new Vector2(737.737976F, -262.406006F), new Vector2(738.469971F, -262.891998F), new Vector2(739.057983F, -263.515991F)); + builder.AddCubicBezier(new Vector2(739.645996F, -264.140015F), new Vector2(740.023987F, -264.859985F), new Vector2(740.192017F, -265.675995F)); + builder.AddLine(new Vector2(740.192017F, -275.828003F)); + builder.AddCubicBezier(new Vector2(740.023987F, -276.644012F), new Vector2(739.645996F, -277.364014F), new Vector2(739.057983F, -277.988007F)); + builder.AddCubicBezier(new Vector2(738.469971F, -278.612F), new Vector2(737.737976F, -279.097992F), new Vector2(736.862F, -279.446014F)); + builder.AddCubicBezier(new Vector2(735.986023F, -279.794006F), new Vector2(735.031982F, -279.967987F), new Vector2(734F, -279.967987F)); + builder.AddCubicBezier(new Vector2(732.343994F, -279.967987F), new Vector2(730.880005F, -279.578003F), new Vector2(729.607971F, -278.798004F)); + builder.AddCubicBezier(new Vector2(728.335999F, -278.018005F), new Vector2(727.340027F, -276.932007F), new Vector2(726.619995F, -275.540009F)); + builder.AddCubicBezier(new Vector2(725.900024F, -274.14801F), new Vector2(725.539978F, -272.552002F), new Vector2(725.539978F, -270.752014F)); + builder.AddCubicBezier(new Vector2(725.539978F, -268.951996F), new Vector2(725.900024F, -267.362F), new Vector2(726.619995F, -265.981995F)); + builder.AddCubicBezier(new Vector2(727.340027F, -264.60199F), new Vector2(728.335999F, -263.515991F), new Vector2(729.607971F, -262.723999F)); + builder.AddCubicBezier(new Vector2(730.880005F, -261.932007F), new Vector2(732.343994F, -261.536011F), new Vector2(734F, -261.536011F)); + builder.AddCubicBezier(new Vector2(735.031982F, -261.536011F), new Vector2(735.986023F, -261.709991F), new Vector2(736.862F, -262.058014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0631() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(722.335999F, -282.325989F)); + builder.AddCubicBezier(new Vector2(723.007996F, -283.033997F), new Vector2(723.343994F, -283.903992F), new Vector2(723.343994F, -284.936005F)); + builder.AddCubicBezier(new Vector2(723.343994F, -285.967987F), new Vector2(723.007996F, -286.838013F), new Vector2(722.335999F, -287.54599F)); + builder.AddCubicBezier(new Vector2(721.664001F, -288.253998F), new Vector2(720.799988F, -288.608002F), new Vector2(719.744019F, -288.608002F)); + builder.AddCubicBezier(new Vector2(718.711975F, -288.608002F), new Vector2(717.854004F, -288.253998F), new Vector2(717.169983F, -287.54599F)); + builder.AddCubicBezier(new Vector2(716.486023F, -286.838013F), new Vector2(716.143982F, -285.967987F), new Vector2(716.143982F, -284.936005F)); + builder.AddCubicBezier(new Vector2(716.143982F, -283.903992F), new Vector2(716.486023F, -283.033997F), new Vector2(717.169983F, -282.325989F)); + builder.AddCubicBezier(new Vector2(717.854004F, -281.618011F), new Vector2(718.711975F, -281.264008F), new Vector2(719.744019F, -281.264008F)); + builder.AddCubicBezier(new Vector2(720.799988F, -281.264008F), new Vector2(721.664001F, -281.618011F), new Vector2(722.335999F, -282.325989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(723.271973F, -261.895996F)); + builder.AddLine(new Vector2(723.271973F, -279.608002F)); + builder.AddLine(new Vector2(716.216003F, -279.608002F)); + builder.AddLine(new Vector2(716.216003F, -261.895996F)); + builder.AddLine(new Vector2(723.271973F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0632() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(701.960022F, -261.895996F)); + builder.AddLine(new Vector2(701.960022F, -279.608002F)); + builder.AddLine(new Vector2(694.903992F, -279.608002F)); + builder.AddLine(new Vector2(694.903992F, -261.895996F)); + builder.AddLine(new Vector2(701.960022F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(713.228027F, -261.895996F)); + builder.AddLine(new Vector2(713.228027F, -273.451996F)); + builder.AddCubicBezier(new Vector2(713.228027F, -274.723999F), new Vector2(712.940002F, -275.846008F), new Vector2(712.364014F, -276.817993F)); + builder.AddCubicBezier(new Vector2(711.788025F, -277.790009F), new Vector2(711.002014F, -278.558014F), new Vector2(710.005981F, -279.122009F)); + builder.AddCubicBezier(new Vector2(709.01001F, -279.686005F), new Vector2(707.875977F, -279.967987F), new Vector2(706.604004F, -279.967987F)); + builder.AddCubicBezier(new Vector2(705.187988F, -279.967987F), new Vector2(703.921997F, -279.691986F), new Vector2(702.80603F, -279.140015F)); + builder.AddCubicBezier(new Vector2(701.690002F, -278.588013F), new Vector2(700.814026F, -277.79599F), new Vector2(700.177979F, -276.764008F)); + builder.AddCubicBezier(new Vector2(699.541992F, -275.731995F), new Vector2(699.223999F, -274.496002F), new Vector2(699.223999F, -273.056F)); + builder.AddLine(new Vector2(701.960022F, -271.832001F)); + builder.AddCubicBezier(new Vector2(701.960022F, -272.287994F), new Vector2(702.049988F, -272.678009F), new Vector2(702.22998F, -273.002014F)); + builder.AddCubicBezier(new Vector2(702.409973F, -273.325989F), new Vector2(702.661987F, -273.571991F), new Vector2(702.986023F, -273.73999F)); + builder.AddCubicBezier(new Vector2(703.309998F, -273.90799F), new Vector2(703.676025F, -273.992004F), new Vector2(704.083984F, -273.992004F)); + builder.AddCubicBezier(new Vector2(704.684021F, -273.992004F), new Vector2(705.182007F, -273.806F), new Vector2(705.578003F, -273.43399F)); + builder.AddCubicBezier(new Vector2(705.973999F, -273.062012F), new Vector2(706.171997F, -272.528015F), new Vector2(706.171997F, -271.832001F)); + builder.AddLine(new Vector2(706.171997F, -261.895996F)); + builder.AddLine(new Vector2(713.228027F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0633() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(686.731995F, -273.290009F)); + builder.AddCubicBezier(new Vector2(687.09198F, -273.709991F), new Vector2(687.632019F, -273.920013F), new Vector2(688.35199F, -273.920013F)); + builder.AddCubicBezier(new Vector2(688.783997F, -273.920013F), new Vector2(689.161987F, -273.854004F), new Vector2(689.486023F, -273.721985F)); + builder.AddCubicBezier(new Vector2(689.809998F, -273.589996F), new Vector2(690.05603F, -273.428009F), new Vector2(690.223999F, -273.235992F)); + builder.AddLine(new Vector2(694.184021F, -278.85199F)); + builder.AddCubicBezier(new Vector2(693.823975F, -279.212006F), new Vector2(693.349976F, -279.488007F), new Vector2(692.762024F, -279.679993F)); + builder.AddCubicBezier(new Vector2(692.174011F, -279.872009F), new Vector2(691.471985F, -279.967987F), new Vector2(690.656006F, -279.967987F)); + builder.AddCubicBezier(new Vector2(688.83197F, -279.967987F), new Vector2(687.314026F, -279.518005F), new Vector2(686.10199F, -278.618011F)); + builder.AddCubicBezier(new Vector2(684.890015F, -277.717987F), new Vector2(683.828003F, -276.308014F), new Vector2(682.916016F, -274.388F)); + builder.AddLine(new Vector2(686.192017F, -271.471985F)); + builder.AddCubicBezier(new Vector2(686.192017F, -272.264008F), new Vector2(686.372009F, -272.869995F), new Vector2(686.731995F, -273.290009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(686.192017F, -261.895996F)); + builder.AddLine(new Vector2(686.192017F, -279.608002F)); + builder.AddLine(new Vector2(679.135986F, -279.608002F)); + builder.AddLine(new Vector2(679.135986F, -261.895996F)); + builder.AddLine(new Vector2(686.192017F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0634() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(671.953979F, -262.471985F)); + builder.AddCubicBezier(new Vector2(673.286011F, -263.144012F), new Vector2(674.330017F, -264.074005F), new Vector2(675.085999F, -265.261993F)); + builder.AddCubicBezier(new Vector2(675.84198F, -266.450012F), new Vector2(676.219971F, -267.824005F), new Vector2(676.219971F, -269.384003F)); + builder.AddLine(new Vector2(676.219971F, -279.608002F)); + builder.AddLine(new Vector2(669.164001F, -279.608002F)); + builder.AddLine(new Vector2(669.164001F, -269.312012F)); + builder.AddCubicBezier(new Vector2(669.164001F, -268.76001F), new Vector2(668.98999F, -268.309998F), new Vector2(668.642029F, -267.962006F)); + builder.AddCubicBezier(new Vector2(668.294006F, -267.614014F), new Vector2(667.867981F, -267.440002F), new Vector2(667.364014F, -267.440002F)); + builder.AddCubicBezier(new Vector2(667.004028F, -267.440002F), new Vector2(666.685974F, -267.518005F), new Vector2(666.409973F, -267.674011F)); + builder.AddCubicBezier(new Vector2(666.133972F, -267.829987F), new Vector2(665.91803F, -268.052002F), new Vector2(665.762024F, -268.339996F)); + builder.AddCubicBezier(new Vector2(665.606018F, -268.627991F), new Vector2(665.528015F, -268.951996F), new Vector2(665.528015F, -269.312012F)); + builder.AddLine(new Vector2(665.528015F, -279.608002F)); + builder.AddLine(new Vector2(658.471985F, -279.608002F)); + builder.AddLine(new Vector2(658.471985F, -269.384003F)); + builder.AddCubicBezier(new Vector2(658.471985F, -267.847992F), new Vector2(658.856018F, -266.480011F), new Vector2(659.624023F, -265.279999F)); + builder.AddCubicBezier(new Vector2(660.392029F, -264.079987F), new Vector2(661.442017F, -263.144012F), new Vector2(662.773987F, -262.471985F)); + builder.AddCubicBezier(new Vector2(664.106018F, -261.799988F), new Vector2(665.635986F, -261.463989F), new Vector2(667.364014F, -261.463989F)); + builder.AddCubicBezier(new Vector2(669.09198F, -261.463989F), new Vector2(670.622009F, -261.799988F), new Vector2(671.953979F, -262.471985F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0635() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(641.768005F, -261.895996F)); + builder.AddLine(new Vector2(641.768005F, -287.528015F)); + builder.AddLine(new Vector2(634.567993F, -287.528015F)); + builder.AddLine(new Vector2(634.567993F, -261.895996F)); + builder.AddLine(new Vector2(641.768005F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(658.76001F, -261.895996F)); + builder.AddLine(new Vector2(648.5F, -276.511993F)); + builder.AddLine(new Vector2(648.5F, -274.208008F)); + builder.AddLine(new Vector2(658.364014F, -287.528015F)); + builder.AddLine(new Vector2(649.687988F, -287.528015F)); + builder.AddLine(new Vector2(641.156006F, -275.252014F)); + builder.AddLine(new Vector2(650.119995F, -261.895996F)); + builder.AddLine(new Vector2(658.76001F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0636() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(613.364014F, -261.895996F)); + builder.AddLine(new Vector2(613.364014F, -279.608002F)); + builder.AddLine(new Vector2(606.307983F, -279.608002F)); + builder.AddLine(new Vector2(606.307983F, -261.895996F)); + builder.AddLine(new Vector2(613.364014F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(624.632019F, -261.895996F)); + builder.AddLine(new Vector2(624.632019F, -273.451996F)); + builder.AddCubicBezier(new Vector2(624.632019F, -274.723999F), new Vector2(624.343994F, -275.846008F), new Vector2(623.768005F, -276.817993F)); + builder.AddCubicBezier(new Vector2(623.192017F, -277.790009F), new Vector2(622.406006F, -278.558014F), new Vector2(621.409973F, -279.122009F)); + builder.AddCubicBezier(new Vector2(620.414001F, -279.686005F), new Vector2(619.280029F, -279.967987F), new Vector2(618.007996F, -279.967987F)); + builder.AddCubicBezier(new Vector2(616.59198F, -279.967987F), new Vector2(615.325989F, -279.691986F), new Vector2(614.210022F, -279.140015F)); + builder.AddCubicBezier(new Vector2(613.093994F, -278.588013F), new Vector2(612.218018F, -277.79599F), new Vector2(611.58197F, -276.764008F)); + builder.AddCubicBezier(new Vector2(610.945984F, -275.731995F), new Vector2(610.627991F, -274.496002F), new Vector2(610.627991F, -273.056F)); + builder.AddLine(new Vector2(613.364014F, -271.832001F)); + builder.AddCubicBezier(new Vector2(613.364014F, -272.287994F), new Vector2(613.453979F, -272.678009F), new Vector2(613.633972F, -273.002014F)); + builder.AddCubicBezier(new Vector2(613.814026F, -273.325989F), new Vector2(614.065979F, -273.571991F), new Vector2(614.390015F, -273.73999F)); + builder.AddCubicBezier(new Vector2(614.713989F, -273.90799F), new Vector2(615.080017F, -273.992004F), new Vector2(615.487976F, -273.992004F)); + builder.AddCubicBezier(new Vector2(616.088013F, -273.992004F), new Vector2(616.585999F, -273.806F), new Vector2(616.981995F, -273.43399F)); + builder.AddCubicBezier(new Vector2(617.377991F, -273.062012F), new Vector2(617.575989F, -272.528015F), new Vector2(617.575989F, -271.832001F)); + builder.AddLine(new Vector2(617.575989F, -261.895996F)); + builder.AddLine(new Vector2(624.632019F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0637() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(602.924011F, -261.895996F)); + builder.AddLine(new Vector2(602.924011F, -279.608002F)); + builder.AddLine(new Vector2(596.047974F, -279.608002F)); + builder.AddLine(new Vector2(596.047974F, -275.252014F)); + builder.AddLine(new Vector2(597.02002F, -270.967987F)); + builder.AddLine(new Vector2(596.047974F, -266.64801F)); + builder.AddLine(new Vector2(596.047974F, -261.895996F)); + builder.AddLine(new Vector2(602.924011F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(591.799988F, -268.123993F)); + builder.AddCubicBezier(new Vector2(591.343994F, -268.388F), new Vector2(590.98999F, -268.747986F), new Vector2(590.737976F, -269.20401F)); + builder.AddCubicBezier(new Vector2(590.486023F, -269.660004F), new Vector2(590.359985F, -270.175995F), new Vector2(590.359985F, -270.752014F)); + builder.AddCubicBezier(new Vector2(590.359985F, -271.328003F), new Vector2(590.492004F, -271.843994F), new Vector2(590.755981F, -272.299988F)); + builder.AddCubicBezier(new Vector2(591.02002F, -272.756012F), new Vector2(591.374023F, -273.115997F), new Vector2(591.817993F, -273.380005F)); + builder.AddCubicBezier(new Vector2(592.262024F, -273.644012F), new Vector2(592.771973F, -273.776001F), new Vector2(593.348022F, -273.776001F)); + builder.AddCubicBezier(new Vector2(593.924011F, -273.776001F), new Vector2(594.434021F, -273.644012F), new Vector2(594.877991F, -273.380005F)); + builder.AddCubicBezier(new Vector2(595.322021F, -273.115997F), new Vector2(595.664001F, -272.761993F), new Vector2(595.903992F, -272.317993F)); + builder.AddCubicBezier(new Vector2(596.143982F, -271.873993F), new Vector2(596.263977F, -271.35199F), new Vector2(596.263977F, -270.752014F)); + builder.AddCubicBezier(new Vector2(596.263977F, -269.864014F), new Vector2(595.994019F, -269.138F), new Vector2(595.453979F, -268.574005F)); + builder.AddCubicBezier(new Vector2(594.914001F, -268.01001F), new Vector2(594.200012F, -267.727997F), new Vector2(593.312012F, -267.727997F)); + builder.AddCubicBezier(new Vector2(592.76001F, -267.727997F), new Vector2(592.255981F, -267.859985F), new Vector2(591.799988F, -268.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(594.590027F, -262.058014F)); + builder.AddCubicBezier(new Vector2(595.466003F, -262.406006F), new Vector2(596.197998F, -262.891998F), new Vector2(596.786011F, -263.515991F)); + builder.AddCubicBezier(new Vector2(597.374023F, -264.140015F), new Vector2(597.752014F, -264.859985F), new Vector2(597.919983F, -265.675995F)); + builder.AddLine(new Vector2(597.919983F, -275.828003F)); + builder.AddCubicBezier(new Vector2(597.752014F, -276.644012F), new Vector2(597.374023F, -277.364014F), new Vector2(596.786011F, -277.988007F)); + builder.AddCubicBezier(new Vector2(596.197998F, -278.612F), new Vector2(595.466003F, -279.097992F), new Vector2(594.590027F, -279.446014F)); + builder.AddCubicBezier(new Vector2(593.713989F, -279.794006F), new Vector2(592.76001F, -279.967987F), new Vector2(591.728027F, -279.967987F)); + builder.AddCubicBezier(new Vector2(590.072021F, -279.967987F), new Vector2(588.607971F, -279.578003F), new Vector2(587.335999F, -278.798004F)); + builder.AddCubicBezier(new Vector2(586.064026F, -278.018005F), new Vector2(585.067993F, -276.932007F), new Vector2(584.348022F, -275.540009F)); + builder.AddCubicBezier(new Vector2(583.627991F, -274.14801F), new Vector2(583.268005F, -272.552002F), new Vector2(583.268005F, -270.752014F)); + builder.AddCubicBezier(new Vector2(583.268005F, -268.951996F), new Vector2(583.627991F, -267.362F), new Vector2(584.348022F, -265.981995F)); + builder.AddCubicBezier(new Vector2(585.067993F, -264.60199F), new Vector2(586.064026F, -263.515991F), new Vector2(587.335999F, -262.723999F)); + builder.AddCubicBezier(new Vector2(588.607971F, -261.932007F), new Vector2(590.072021F, -261.536011F), new Vector2(591.728027F, -261.536011F)); + builder.AddCubicBezier(new Vector2(592.76001F, -261.536011F), new Vector2(593.713989F, -261.709991F), new Vector2(594.590027F, -262.058014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0638() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(582.151978F, -273.847992F)); + builder.AddLine(new Vector2(582.151978F, -279.608002F)); + builder.AddLine(new Vector2(566.635986F, -279.608002F)); + builder.AddLine(new Vector2(566.635986F, -273.847992F)); + builder.AddLine(new Vector2(582.151978F, -273.847992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(577.291992F, -261.895996F)); + builder.AddLine(new Vector2(577.291992F, -280.652008F)); + builder.AddCubicBezier(new Vector2(577.291992F, -281.20401F), new Vector2(577.460022F, -281.64801F), new Vector2(577.796021F, -281.984009F)); + builder.AddCubicBezier(new Vector2(578.132019F, -282.320007F), new Vector2(578.575989F, -282.488007F), new Vector2(579.127991F, -282.488007F)); + builder.AddCubicBezier(new Vector2(579.416016F, -282.488007F), new Vector2(579.692017F, -282.446014F), new Vector2(579.955994F, -282.362F)); + builder.AddCubicBezier(new Vector2(580.219971F, -282.278015F), new Vector2(580.435974F, -282.140015F), new Vector2(580.604004F, -281.947998F)); + builder.AddLine(new Vector2(584.960022F, -286.303986F)); + builder.AddCubicBezier(new Vector2(584.263977F, -287.023987F), new Vector2(583.393982F, -287.600006F), new Vector2(582.349976F, -288.032013F)); + builder.AddCubicBezier(new Vector2(581.30603F, -288.463989F), new Vector2(580.112F, -288.679993F), new Vector2(578.768005F, -288.679993F)); + builder.AddCubicBezier(new Vector2(576.968018F, -288.679993F), new Vector2(575.432007F, -288.302002F), new Vector2(574.159973F, -287.54599F)); + builder.AddCubicBezier(new Vector2(572.888F, -286.790009F), new Vector2(571.916016F, -285.782013F), new Vector2(571.244019F, -284.522003F)); + builder.AddCubicBezier(new Vector2(570.572021F, -283.261993F), new Vector2(570.236023F, -281.864014F), new Vector2(570.236023F, -280.328003F)); + builder.AddLine(new Vector2(570.236023F, -261.895996F)); + builder.AddLine(new Vector2(577.291992F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0639() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(566.312012F, -273.847992F)); + builder.AddLine(new Vector2(566.312012F, -279.608002F)); + builder.AddLine(new Vector2(550.796021F, -279.608002F)); + builder.AddLine(new Vector2(550.796021F, -273.847992F)); + builder.AddLine(new Vector2(566.312012F, -273.847992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(561.452026F, -261.895996F)); + builder.AddLine(new Vector2(561.452026F, -280.652008F)); + builder.AddCubicBezier(new Vector2(561.452026F, -281.20401F), new Vector2(561.619995F, -281.64801F), new Vector2(561.955994F, -281.984009F)); + builder.AddCubicBezier(new Vector2(562.291992F, -282.320007F), new Vector2(562.736023F, -282.488007F), new Vector2(563.288025F, -282.488007F)); + builder.AddCubicBezier(new Vector2(563.575989F, -282.488007F), new Vector2(563.85199F, -282.446014F), new Vector2(564.116028F, -282.362F)); + builder.AddCubicBezier(new Vector2(564.380005F, -282.278015F), new Vector2(564.596008F, -282.140015F), new Vector2(564.763977F, -281.947998F)); + builder.AddLine(new Vector2(569.119995F, -286.303986F)); + builder.AddCubicBezier(new Vector2(568.424011F, -287.023987F), new Vector2(567.554016F, -287.600006F), new Vector2(566.51001F, -288.032013F)); + builder.AddCubicBezier(new Vector2(565.466003F, -288.463989F), new Vector2(564.271973F, -288.679993F), new Vector2(562.927979F, -288.679993F)); + builder.AddCubicBezier(new Vector2(561.127991F, -288.679993F), new Vector2(559.59198F, -288.302002F), new Vector2(558.320007F, -287.54599F)); + builder.AddCubicBezier(new Vector2(557.047974F, -286.790009F), new Vector2(556.075989F, -285.782013F), new Vector2(555.403992F, -284.522003F)); + builder.AddCubicBezier(new Vector2(554.731995F, -283.261993F), new Vector2(554.395996F, -281.864014F), new Vector2(554.395996F, -280.328003F)); + builder.AddLine(new Vector2(554.395996F, -261.895996F)); + builder.AddLine(new Vector2(561.452026F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0640() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(545.539978F, -266.216003F)); + builder.AddLine(new Vector2(545.539978F, -271.832001F)); + builder.AddLine(new Vector2(531.211975F, -271.832001F)); + builder.AddLine(new Vector2(531.211975F, -266.216003F)); + builder.AddLine(new Vector2(545.539978F, -266.216003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(532.219971F, -261.895996F)); + builder.AddLine(new Vector2(539.564026F, -283.675995F)); + builder.AddLine(new Vector2(536.971985F, -283.675995F)); + builder.AddLine(new Vector2(544.135986F, -261.895996F)); + builder.AddLine(new Vector2(551.624023F, -261.895996F)); + builder.AddLine(new Vector2(541.976013F, -287.528015F)); + builder.AddLine(new Vector2(534.632019F, -287.528015F)); + builder.AddLine(new Vector2(524.875977F, -261.895996F)); + builder.AddLine(new Vector2(532.219971F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0641() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(511.700012F, -256.928009F)); + builder.AddLine(new Vector2(514.112F, -261.391998F)); + builder.AddCubicBezier(new Vector2(514.424011F, -261.992004F), new Vector2(514.633972F, -262.477997F), new Vector2(514.742004F, -262.850006F)); + builder.AddCubicBezier(new Vector2(514.849976F, -263.221985F), new Vector2(514.903992F, -263.540009F), new Vector2(514.903992F, -263.803986F)); + builder.AddCubicBezier(new Vector2(514.903992F, -264.5F), new Vector2(514.664001F, -265.082001F), new Vector2(514.184021F, -265.549988F)); + builder.AddCubicBezier(new Vector2(513.703979F, -266.018005F), new Vector2(513.151978F, -266.252014F), new Vector2(512.528015F, -266.252014F)); + builder.AddCubicBezier(new Vector2(511.832001F, -266.252014F), new Vector2(511.256012F, -266.018005F), new Vector2(510.799988F, -265.549988F)); + builder.AddCubicBezier(new Vector2(510.343994F, -265.082001F), new Vector2(510.115997F, -264.5F), new Vector2(510.115997F, -263.803986F)); + builder.AddCubicBezier(new Vector2(510.115997F, -263.179993F), new Vector2(510.325989F, -262.65799F), new Vector2(510.746002F, -262.238007F)); + builder.AddCubicBezier(new Vector2(511.165985F, -261.817993F), new Vector2(511.627991F, -261.608002F), new Vector2(512.132019F, -261.608002F)); + builder.AddCubicBezier(new Vector2(512.372009F, -261.608002F), new Vector2(512.588013F, -261.691986F), new Vector2(512.780029F, -261.859985F)); + builder.AddCubicBezier(new Vector2(512.971985F, -262.028015F), new Vector2(513.127991F, -262.243988F), new Vector2(513.247986F, -262.507996F)); + builder.AddLine(new Vector2(512.096008F, -262.220001F)); + builder.AddLine(new Vector2(509.864014F, -257.936005F)); + builder.AddLine(new Vector2(511.700012F, -256.928009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0642() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(501.764008F, -275.144012F)); + builder.AddCubicBezier(new Vector2(502.532013F, -275.911987F), new Vector2(503.515991F, -276.29599F), new Vector2(504.716003F, -276.29599F)); + builder.AddCubicBezier(new Vector2(505.291992F, -276.29599F), new Vector2(505.79599F, -276.212006F), new Vector2(506.227997F, -276.044006F)); + builder.AddCubicBezier(new Vector2(506.660004F, -275.876007F), new Vector2(507.056F, -275.600006F), new Vector2(507.415985F, -275.216003F)); + builder.AddLine(new Vector2(509.540009F, -277.411987F)); + builder.AddCubicBezier(new Vector2(508.940002F, -278.108002F), new Vector2(508.291992F, -278.605988F), new Vector2(507.596008F, -278.906006F)); + builder.AddCubicBezier(new Vector2(506.899994F, -279.205994F), new Vector2(506.119995F, -279.355988F), new Vector2(505.256012F, -279.355988F)); + builder.AddCubicBezier(new Vector2(503.359985F, -279.355988F), new Vector2(501.90799F, -278.708008F), new Vector2(500.899994F, -277.411987F)); + builder.AddCubicBezier(new Vector2(499.891998F, -276.115997F), new Vector2(499.388F, -274.376007F), new Vector2(499.388F, -272.191986F)); + builder.AddLine(new Vector2(500.612F, -271.615997F)); + builder.AddCubicBezier(new Vector2(500.612F, -273.200012F), new Vector2(500.996002F, -274.376007F), new Vector2(501.764008F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(500.612F, -261.895996F)); + builder.AddLine(new Vector2(500.612F, -278.996002F)); + builder.AddLine(new Vector2(497.372009F, -278.996002F)); + builder.AddLine(new Vector2(497.372009F, -261.895996F)); + builder.AddLine(new Vector2(500.612F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0643() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(489.776001F, -262.291992F)); + builder.AddCubicBezier(new Vector2(490.951996F, -262.79599F), new Vector2(491.959991F, -263.528015F), new Vector2(492.799988F, -264.488007F)); + builder.AddLine(new Vector2(490.712006F, -266.612F)); + builder.AddCubicBezier(new Vector2(490.135986F, -265.940002F), new Vector2(489.446014F, -265.436005F), new Vector2(488.641998F, -265.100006F)); + builder.AddCubicBezier(new Vector2(487.838013F, -264.764008F), new Vector2(486.955994F, -264.596008F), new Vector2(485.996002F, -264.596008F)); + builder.AddCubicBezier(new Vector2(484.843994F, -264.596008F), new Vector2(483.824005F, -264.84201F), new Vector2(482.936005F, -265.334015F)); + builder.AddCubicBezier(new Vector2(482.048004F, -265.825989F), new Vector2(481.364014F, -266.522003F), new Vector2(480.884003F, -267.421997F)); + builder.AddCubicBezier(new Vector2(480.403992F, -268.321991F), new Vector2(480.164001F, -269.372009F), new Vector2(480.164001F, -270.571991F)); + builder.AddCubicBezier(new Vector2(480.164001F, -271.747986F), new Vector2(480.391998F, -272.768005F), new Vector2(480.847992F, -273.631989F)); + builder.AddCubicBezier(new Vector2(481.303986F, -274.496002F), new Vector2(481.951996F, -275.167999F), new Vector2(482.791992F, -275.64801F)); + builder.AddCubicBezier(new Vector2(483.631989F, -276.127991F), new Vector2(484.604004F, -276.368011F), new Vector2(485.708008F, -276.368011F)); + builder.AddCubicBezier(new Vector2(486.764008F, -276.368011F), new Vector2(487.664001F, -276.145996F), new Vector2(488.40799F, -275.701996F)); + builder.AddCubicBezier(new Vector2(489.152008F, -275.257996F), new Vector2(489.727997F, -274.634003F), new Vector2(490.135986F, -273.829987F)); + builder.AddCubicBezier(new Vector2(490.544006F, -273.026001F), new Vector2(490.747986F, -272.048004F), new Vector2(490.747986F, -270.895996F)); + builder.AddLine(new Vector2(491.936005F, -271.940002F)); + builder.AddLine(new Vector2(479.227997F, -271.940002F)); + builder.AddLine(new Vector2(479.227997F, -269.23999F)); + builder.AddLine(new Vector2(493.664001F, -269.23999F)); + builder.AddCubicBezier(new Vector2(493.735992F, -269.575989F), new Vector2(493.783997F, -269.881989F), new Vector2(493.808014F, -270.15799F)); + builder.AddCubicBezier(new Vector2(493.832001F, -270.43399F), new Vector2(493.843994F, -270.691986F), new Vector2(493.843994F, -270.932007F)); + builder.AddCubicBezier(new Vector2(493.843994F, -272.563995F), new Vector2(493.502014F, -274.015991F), new Vector2(492.817993F, -275.287994F)); + builder.AddCubicBezier(new Vector2(492.134003F, -276.559998F), new Vector2(491.179993F, -277.556F), new Vector2(489.955994F, -278.276001F)); + builder.AddCubicBezier(new Vector2(488.731995F, -278.996002F), new Vector2(487.339996F, -279.355988F), new Vector2(485.779999F, -279.355988F)); + builder.AddCubicBezier(new Vector2(484.123993F, -279.355988F), new Vector2(482.630005F, -278.966003F), new Vector2(481.298004F, -278.186005F)); + builder.AddCubicBezier(new Vector2(479.966003F, -277.406006F), new Vector2(478.910004F, -276.343994F), new Vector2(478.130005F, -275F)); + builder.AddCubicBezier(new Vector2(477.350006F, -273.656006F), new Vector2(476.959991F, -272.144012F), new Vector2(476.959991F, -270.463989F)); + builder.AddCubicBezier(new Vector2(476.959991F, -268.76001F), new Vector2(477.355988F, -267.235992F), new Vector2(478.14801F, -265.891998F)); + builder.AddCubicBezier(new Vector2(478.940002F, -264.548004F), new Vector2(480.014008F, -263.485992F), new Vector2(481.369995F, -262.705994F)); + builder.AddCubicBezier(new Vector2(482.726013F, -261.925995F), new Vector2(484.268005F, -261.536011F), new Vector2(485.996002F, -261.536011F)); + builder.AddCubicBezier(new Vector2(487.339996F, -261.536011F), new Vector2(488.600006F, -261.787994F), new Vector2(489.776001F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0644() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(468.104004F, -261.895996F)); + builder.AddLine(new Vector2(475.951996F, -278.996002F)); + builder.AddLine(new Vector2(472.496002F, -278.996002F)); + builder.AddLine(new Vector2(466.160004F, -264.559998F)); + builder.AddLine(new Vector2(468.247986F, -264.559998F)); + builder.AddLine(new Vector2(461.947998F, -278.996002F)); + builder.AddLine(new Vector2(458.347992F, -278.996002F)); + builder.AddLine(new Vector2(466.196014F, -261.895996F)); + builder.AddLine(new Vector2(468.104004F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0645() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(455.395996F, -283.01001F)); + builder.AddCubicBezier(new Vector2(455.779999F, -283.406006F), new Vector2(455.971985F, -283.903992F), new Vector2(455.971985F, -284.503998F)); + builder.AddCubicBezier(new Vector2(455.971985F, -285.079987F), new Vector2(455.779999F, -285.56601F), new Vector2(455.395996F, -285.962006F)); + builder.AddCubicBezier(new Vector2(455.011993F, -286.358002F), new Vector2(454.519989F, -286.556F), new Vector2(453.920013F, -286.556F)); + builder.AddCubicBezier(new Vector2(453.320007F, -286.556F), new Vector2(452.828003F, -286.358002F), new Vector2(452.444F, -285.962006F)); + builder.AddCubicBezier(new Vector2(452.059998F, -285.56601F), new Vector2(451.868011F, -285.079987F), new Vector2(451.868011F, -284.503998F)); + builder.AddCubicBezier(new Vector2(451.868011F, -283.903992F), new Vector2(452.059998F, -283.406006F), new Vector2(452.444F, -283.01001F)); + builder.AddCubicBezier(new Vector2(452.828003F, -282.614014F), new Vector2(453.320007F, -282.415985F), new Vector2(453.920013F, -282.415985F)); + builder.AddCubicBezier(new Vector2(454.519989F, -282.415985F), new Vector2(455.011993F, -282.614014F), new Vector2(455.395996F, -283.01001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(455.540009F, -261.895996F)); + builder.AddLine(new Vector2(455.540009F, -278.996002F)); + builder.AddLine(new Vector2(452.264008F, -278.996002F)); + builder.AddLine(new Vector2(452.264008F, -261.895996F)); + builder.AddLine(new Vector2(455.540009F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0646() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(442.220001F, -275.144012F)); + builder.AddCubicBezier(new Vector2(442.988007F, -275.911987F), new Vector2(443.971985F, -276.29599F), new Vector2(445.171997F, -276.29599F)); + builder.AddCubicBezier(new Vector2(445.747986F, -276.29599F), new Vector2(446.252014F, -276.212006F), new Vector2(446.68399F, -276.044006F)); + builder.AddCubicBezier(new Vector2(447.115997F, -275.876007F), new Vector2(447.511993F, -275.600006F), new Vector2(447.872009F, -275.216003F)); + builder.AddLine(new Vector2(449.996002F, -277.411987F)); + builder.AddCubicBezier(new Vector2(449.395996F, -278.108002F), new Vector2(448.747986F, -278.605988F), new Vector2(448.052002F, -278.906006F)); + builder.AddCubicBezier(new Vector2(447.355988F, -279.205994F), new Vector2(446.575989F, -279.355988F), new Vector2(445.712006F, -279.355988F)); + builder.AddCubicBezier(new Vector2(443.81601F, -279.355988F), new Vector2(442.364014F, -278.708008F), new Vector2(441.355988F, -277.411987F)); + builder.AddCubicBezier(new Vector2(440.347992F, -276.115997F), new Vector2(439.843994F, -274.376007F), new Vector2(439.843994F, -272.191986F)); + builder.AddLine(new Vector2(441.067993F, -271.615997F)); + builder.AddCubicBezier(new Vector2(441.067993F, -273.200012F), new Vector2(441.451996F, -274.376007F), new Vector2(442.220001F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(441.067993F, -261.895996F)); + builder.AddLine(new Vector2(441.067993F, -278.996002F)); + builder.AddLine(new Vector2(437.828003F, -278.996002F)); + builder.AddLine(new Vector2(437.828003F, -261.895996F)); + builder.AddLine(new Vector2(441.067993F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0647() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(433.112F, -287.600006F)); + builder.AddLine(new Vector2(429.835999F, -287.600006F)); + builder.AddLine(new Vector2(429.835999F, -274.820007F)); + builder.AddLine(new Vector2(430.447998F, -270.679993F)); + builder.AddLine(new Vector2(429.835999F, -266.503998F)); + builder.AddLine(new Vector2(429.835999F, -261.895996F)); + builder.AddLine(new Vector2(433.112F, -261.895996F)); + builder.AddLine(new Vector2(433.112F, -287.600006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(421.790009F, -265.334015F)); + builder.AddCubicBezier(new Vector2(420.962006F, -265.825989F), new Vector2(420.313995F, -266.515991F), new Vector2(419.846008F, -267.403992F)); + builder.AddCubicBezier(new Vector2(419.377991F, -268.291992F), new Vector2(419.144012F, -269.312012F), new Vector2(419.144012F, -270.463989F)); + builder.AddCubicBezier(new Vector2(419.144012F, -271.615997F), new Vector2(419.377991F, -272.630005F), new Vector2(419.846008F, -273.506012F)); + builder.AddCubicBezier(new Vector2(420.313995F, -274.381989F), new Vector2(420.955994F, -275.06601F), new Vector2(421.772003F, -275.558014F)); + builder.AddCubicBezier(new Vector2(422.588013F, -276.049988F), new Vector2(423.536011F, -276.29599F), new Vector2(424.615997F, -276.29599F)); + builder.AddCubicBezier(new Vector2(425.696014F, -276.29599F), new Vector2(426.644012F, -276.044006F), new Vector2(427.459991F, -275.540009F)); + builder.AddCubicBezier(new Vector2(428.276001F, -275.036011F), new Vector2(428.911987F, -274.346008F), new Vector2(429.368011F, -273.470001F)); + builder.AddCubicBezier(new Vector2(429.824005F, -272.593994F), new Vector2(430.052002F, -271.579987F), new Vector2(430.052002F, -270.428009F)); + builder.AddCubicBezier(new Vector2(430.052002F, -269.299988F), new Vector2(429.824005F, -268.298004F), new Vector2(429.368011F, -267.421997F)); + builder.AddCubicBezier(new Vector2(428.911987F, -266.54599F), new Vector2(428.276001F, -265.855988F), new Vector2(427.459991F, -265.35199F)); + builder.AddCubicBezier(new Vector2(426.644012F, -264.847992F), new Vector2(425.696014F, -264.596008F), new Vector2(424.615997F, -264.596008F)); + builder.AddCubicBezier(new Vector2(423.559998F, -264.596008F), new Vector2(422.618011F, -264.84201F), new Vector2(421.790009F, -265.334015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(427.604004F, -262.346008F)); + builder.AddCubicBezier(new Vector2(428.635986F, -262.885986F), new Vector2(429.463989F, -263.635986F), new Vector2(430.088013F, -264.596008F)); + builder.AddCubicBezier(new Vector2(430.712006F, -265.556F), new Vector2(431.059998F, -266.64801F), new Vector2(431.131989F, -267.872009F)); + builder.AddLine(new Vector2(431.131989F, -273.019989F)); + builder.AddCubicBezier(new Vector2(431.059998F, -274.268005F), new Vector2(430.705994F, -275.365997F), new Vector2(430.070007F, -276.313995F)); + builder.AddCubicBezier(new Vector2(429.43399F, -277.261993F), new Vector2(428.600006F, -278.006012F), new Vector2(427.567993F, -278.54599F)); + builder.AddCubicBezier(new Vector2(426.536011F, -279.085999F), new Vector2(425.372009F, -279.355988F), new Vector2(424.075989F, -279.355988F)); + builder.AddCubicBezier(new Vector2(422.515991F, -279.355988F), new Vector2(421.112F, -278.959991F), new Vector2(419.864014F, -278.167999F)); + builder.AddCubicBezier(new Vector2(418.615997F, -277.376007F), new Vector2(417.626007F, -276.308014F), new Vector2(416.894012F, -274.963989F)); + builder.AddCubicBezier(new Vector2(416.161987F, -273.619995F), new Vector2(415.79599F, -272.108002F), new Vector2(415.79599F, -270.428009F)); + builder.AddCubicBezier(new Vector2(415.79599F, -268.747986F), new Vector2(416.161987F, -267.235992F), new Vector2(416.894012F, -265.891998F)); + builder.AddCubicBezier(new Vector2(417.626007F, -264.548004F), new Vector2(418.615997F, -263.485992F), new Vector2(419.864014F, -262.705994F)); + builder.AddCubicBezier(new Vector2(421.112F, -261.925995F), new Vector2(422.515991F, -261.536011F), new Vector2(424.075989F, -261.536011F)); + builder.AddCubicBezier(new Vector2(425.395996F, -261.536011F), new Vector2(426.571991F, -261.806F), new Vector2(427.604004F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0648() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(404.492004F, -283.01001F)); + builder.AddCubicBezier(new Vector2(404.876007F, -283.406006F), new Vector2(405.067993F, -283.903992F), new Vector2(405.067993F, -284.503998F)); + builder.AddCubicBezier(new Vector2(405.067993F, -285.079987F), new Vector2(404.876007F, -285.56601F), new Vector2(404.492004F, -285.962006F)); + builder.AddCubicBezier(new Vector2(404.108002F, -286.358002F), new Vector2(403.615997F, -286.556F), new Vector2(403.015991F, -286.556F)); + builder.AddCubicBezier(new Vector2(402.415985F, -286.556F), new Vector2(401.924011F, -286.358002F), new Vector2(401.540009F, -285.962006F)); + builder.AddCubicBezier(new Vector2(401.156006F, -285.56601F), new Vector2(400.963989F, -285.079987F), new Vector2(400.963989F, -284.503998F)); + builder.AddCubicBezier(new Vector2(400.963989F, -283.903992F), new Vector2(401.156006F, -283.406006F), new Vector2(401.540009F, -283.01001F)); + builder.AddCubicBezier(new Vector2(401.924011F, -282.614014F), new Vector2(402.415985F, -282.415985F), new Vector2(403.015991F, -282.415985F)); + builder.AddCubicBezier(new Vector2(403.615997F, -282.415985F), new Vector2(404.108002F, -282.614014F), new Vector2(404.492004F, -283.01001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(404.635986F, -261.895996F)); + builder.AddLine(new Vector2(404.635986F, -278.996002F)); + builder.AddLine(new Vector2(401.359985F, -278.996002F)); + builder.AddLine(new Vector2(401.359985F, -261.895996F)); + builder.AddLine(new Vector2(404.635986F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0649() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(398.048004F, -278.996002F)); + builder.AddLine(new Vector2(394.268005F, -278.996002F)); + builder.AddLine(new Vector2(389.515991F, -272.299988F)); + builder.AddLine(new Vector2(391.424011F, -269.996002F)); + builder.AddLine(new Vector2(398.048004F, -278.996002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(385.268005F, -261.895996F)); + builder.AddLine(new Vector2(390.343994F, -269.023987F)); + builder.AddLine(new Vector2(388.507996F, -271.399994F)); + builder.AddLine(new Vector2(381.451996F, -261.895996F)); + builder.AddLine(new Vector2(385.268005F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(398.372009F, -261.895996F)); + builder.AddLine(new Vector2(391.171997F, -271.832001F)); + builder.AddLine(new Vector2(390.559998F, -272.335999F)); + builder.AddLine(new Vector2(385.700012F, -278.996002F)); + builder.AddLine(new Vector2(381.73999F, -278.996002F)); + builder.AddLine(new Vector2(388.507996F, -269.924011F)); + builder.AddLine(new Vector2(389.119995F, -269.384003F)); + builder.AddLine(new Vector2(394.447998F, -261.895996F)); + builder.AddLine(new Vector2(398.372009F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0650() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(378.5F, -261.895996F)); + builder.AddLine(new Vector2(378.5F, -278.996002F)); + builder.AddLine(new Vector2(375.223999F, -278.996002F)); + builder.AddLine(new Vector2(375.223999F, -274.820007F)); + builder.AddLine(new Vector2(375.835999F, -270.679993F)); + builder.AddLine(new Vector2(375.223999F, -266.503998F)); + builder.AddLine(new Vector2(375.223999F, -261.895996F)); + builder.AddLine(new Vector2(378.5F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(367.196014F, -265.35199F)); + builder.AddCubicBezier(new Vector2(366.355988F, -265.855988F), new Vector2(365.701996F, -266.54599F), new Vector2(365.234009F, -267.421997F)); + builder.AddCubicBezier(new Vector2(364.765991F, -268.298004F), new Vector2(364.532013F, -269.312012F), new Vector2(364.532013F, -270.463989F)); + builder.AddCubicBezier(new Vector2(364.532013F, -271.59201F), new Vector2(364.765991F, -272.593994F), new Vector2(365.234009F, -273.470001F)); + builder.AddCubicBezier(new Vector2(365.701996F, -274.346008F), new Vector2(366.350006F, -275.036011F), new Vector2(367.178009F, -275.540009F)); + builder.AddCubicBezier(new Vector2(368.006012F, -276.044006F), new Vector2(368.959991F, -276.29599F), new Vector2(370.040009F, -276.29599F)); + builder.AddCubicBezier(new Vector2(371.119995F, -276.29599F), new Vector2(372.062012F, -276.049988F), new Vector2(372.865997F, -275.558014F)); + builder.AddCubicBezier(new Vector2(373.670013F, -275.06601F), new Vector2(374.299988F, -274.376007F), new Vector2(374.756012F, -273.488007F)); + builder.AddCubicBezier(new Vector2(375.212006F, -272.600006F), new Vector2(375.440002F, -271.579987F), new Vector2(375.440002F, -270.428009F)); + builder.AddCubicBezier(new Vector2(375.440002F, -268.723999F), new Vector2(374.947998F, -267.325989F), new Vector2(373.963989F, -266.234009F)); + builder.AddCubicBezier(new Vector2(372.980011F, -265.141998F), new Vector2(371.68399F, -264.596008F), new Vector2(370.075989F, -264.596008F)); + builder.AddCubicBezier(new Vector2(368.996002F, -264.596008F), new Vector2(368.036011F, -264.847992F), new Vector2(367.196014F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(373.028015F, -262.346008F)); + builder.AddCubicBezier(new Vector2(374.059998F, -262.885986F), new Vector2(374.881989F, -263.635986F), new Vector2(375.493988F, -264.596008F)); + builder.AddCubicBezier(new Vector2(376.105988F, -265.556F), new Vector2(376.447998F, -266.64801F), new Vector2(376.519989F, -267.872009F)); + builder.AddLine(new Vector2(376.519989F, -273.019989F)); + builder.AddCubicBezier(new Vector2(376.447998F, -274.268005F), new Vector2(376.100006F, -275.365997F), new Vector2(375.476013F, -276.313995F)); + builder.AddCubicBezier(new Vector2(374.85199F, -277.261993F), new Vector2(374.029999F, -278.006012F), new Vector2(373.01001F, -278.54599F)); + builder.AddCubicBezier(new Vector2(371.98999F, -279.085999F), new Vector2(370.832001F, -279.355988F), new Vector2(369.536011F, -279.355988F)); + builder.AddCubicBezier(new Vector2(367.951996F, -279.355988F), new Vector2(366.529999F, -278.959991F), new Vector2(365.269989F, -278.167999F)); + builder.AddCubicBezier(new Vector2(364.01001F, -277.376007F), new Vector2(363.014008F, -276.308014F), new Vector2(362.282013F, -274.963989F)); + builder.AddCubicBezier(new Vector2(361.549988F, -273.619995F), new Vector2(361.18399F, -272.108002F), new Vector2(361.18399F, -270.428009F)); + builder.AddCubicBezier(new Vector2(361.18399F, -268.747986F), new Vector2(361.549988F, -267.235992F), new Vector2(362.282013F, -265.891998F)); + builder.AddCubicBezier(new Vector2(363.014008F, -264.548004F), new Vector2(364.01001F, -263.485992F), new Vector2(365.269989F, -262.705994F)); + builder.AddCubicBezier(new Vector2(366.529999F, -261.925995F), new Vector2(367.951996F, -261.536011F), new Vector2(369.536011F, -261.536011F)); + builder.AddCubicBezier(new Vector2(370.832001F, -261.536011F), new Vector2(371.996002F, -261.806F), new Vector2(373.028015F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0651() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(359.635986F, -276.044006F)); + builder.AddLine(new Vector2(359.635986F, -278.996002F)); + builder.AddLine(new Vector2(347.971985F, -278.996002F)); + builder.AddLine(new Vector2(347.971985F, -276.044006F)); + builder.AddLine(new Vector2(359.635986F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(355.424011F, -261.895996F)); + builder.AddLine(new Vector2(355.424011F, -286.160004F)); + builder.AddLine(new Vector2(352.18399F, -286.160004F)); + builder.AddLine(new Vector2(352.18399F, -261.895996F)); + builder.AddLine(new Vector2(355.424011F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0652() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(345.488007F, -269.492004F)); + builder.AddLine(new Vector2(345.488007F, -272.588013F)); + builder.AddLine(new Vector2(333.644012F, -272.588013F)); + builder.AddLine(new Vector2(333.644012F, -269.492004F)); + builder.AddLine(new Vector2(345.488007F, -269.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0653() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(325.471985F, -262.291992F)); + builder.AddCubicBezier(new Vector2(326.64801F, -262.79599F), new Vector2(327.656006F, -263.528015F), new Vector2(328.496002F, -264.488007F)); + builder.AddLine(new Vector2(326.40799F, -266.612F)); + builder.AddCubicBezier(new Vector2(325.832001F, -265.940002F), new Vector2(325.141998F, -265.436005F), new Vector2(324.338013F, -265.100006F)); + builder.AddCubicBezier(new Vector2(323.533997F, -264.764008F), new Vector2(322.652008F, -264.596008F), new Vector2(321.691986F, -264.596008F)); + builder.AddCubicBezier(new Vector2(320.540009F, -264.596008F), new Vector2(319.519989F, -264.84201F), new Vector2(318.631989F, -265.334015F)); + builder.AddCubicBezier(new Vector2(317.743988F, -265.825989F), new Vector2(317.059998F, -266.522003F), new Vector2(316.579987F, -267.421997F)); + builder.AddCubicBezier(new Vector2(316.100006F, -268.321991F), new Vector2(315.859985F, -269.372009F), new Vector2(315.859985F, -270.571991F)); + builder.AddCubicBezier(new Vector2(315.859985F, -271.747986F), new Vector2(316.088013F, -272.768005F), new Vector2(316.544006F, -273.631989F)); + builder.AddCubicBezier(new Vector2(317F, -274.496002F), new Vector2(317.64801F, -275.167999F), new Vector2(318.488007F, -275.64801F)); + builder.AddCubicBezier(new Vector2(319.328003F, -276.127991F), new Vector2(320.299988F, -276.368011F), new Vector2(321.403992F, -276.368011F)); + builder.AddCubicBezier(new Vector2(322.459991F, -276.368011F), new Vector2(323.359985F, -276.145996F), new Vector2(324.104004F, -275.701996F)); + builder.AddCubicBezier(new Vector2(324.847992F, -275.257996F), new Vector2(325.424011F, -274.634003F), new Vector2(325.832001F, -273.829987F)); + builder.AddCubicBezier(new Vector2(326.23999F, -273.026001F), new Vector2(326.444F, -272.048004F), new Vector2(326.444F, -270.895996F)); + builder.AddLine(new Vector2(327.631989F, -271.940002F)); + builder.AddLine(new Vector2(314.924011F, -271.940002F)); + builder.AddLine(new Vector2(314.924011F, -269.23999F)); + builder.AddLine(new Vector2(329.359985F, -269.23999F)); + builder.AddCubicBezier(new Vector2(329.432007F, -269.575989F), new Vector2(329.480011F, -269.881989F), new Vector2(329.503998F, -270.15799F)); + builder.AddCubicBezier(new Vector2(329.528015F, -270.43399F), new Vector2(329.540009F, -270.691986F), new Vector2(329.540009F, -270.932007F)); + builder.AddCubicBezier(new Vector2(329.540009F, -272.563995F), new Vector2(329.197998F, -274.015991F), new Vector2(328.514008F, -275.287994F)); + builder.AddCubicBezier(new Vector2(327.829987F, -276.559998F), new Vector2(326.876007F, -277.556F), new Vector2(325.652008F, -278.276001F)); + builder.AddCubicBezier(new Vector2(324.428009F, -278.996002F), new Vector2(323.036011F, -279.355988F), new Vector2(321.476013F, -279.355988F)); + builder.AddCubicBezier(new Vector2(319.820007F, -279.355988F), new Vector2(318.325989F, -278.966003F), new Vector2(316.993988F, -278.186005F)); + builder.AddCubicBezier(new Vector2(315.661987F, -277.406006F), new Vector2(314.605988F, -276.343994F), new Vector2(313.825989F, -275F)); + builder.AddCubicBezier(new Vector2(313.04599F, -273.656006F), new Vector2(312.656006F, -272.144012F), new Vector2(312.656006F, -270.463989F)); + builder.AddCubicBezier(new Vector2(312.656006F, -268.76001F), new Vector2(313.052002F, -267.235992F), new Vector2(313.843994F, -265.891998F)); + builder.AddCubicBezier(new Vector2(314.635986F, -264.548004F), new Vector2(315.709991F, -263.485992F), new Vector2(317.06601F, -262.705994F)); + builder.AddCubicBezier(new Vector2(318.421997F, -261.925995F), new Vector2(319.963989F, -261.536011F), new Vector2(321.691986F, -261.536011F)); + builder.AddCubicBezier(new Vector2(323.036011F, -261.536011F), new Vector2(324.29599F, -261.787994F), new Vector2(325.471985F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0654() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(300.056F, -261.895996F)); + builder.AddLine(new Vector2(300.056F, -287.600006F)); + builder.AddLine(new Vector2(296.81601F, -287.600006F)); + builder.AddLine(new Vector2(296.81601F, -261.895996F)); + builder.AddLine(new Vector2(300.056F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(311.936005F, -261.895996F)); + builder.AddLine(new Vector2(302.936005F, -271.652008F)); + builder.AddLine(new Vector2(302.791992F, -269.779999F)); + builder.AddLine(new Vector2(311.612F, -278.996002F)); + builder.AddLine(new Vector2(307.652008F, -278.996002F)); + builder.AddLine(new Vector2(299.768005F, -270.644012F)); + builder.AddLine(new Vector2(307.76001F, -261.895996F)); + builder.AddLine(new Vector2(311.936005F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0655() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(291.884003F, -283.01001F)); + builder.AddCubicBezier(new Vector2(292.268005F, -283.406006F), new Vector2(292.459991F, -283.903992F), new Vector2(292.459991F, -284.503998F)); + builder.AddCubicBezier(new Vector2(292.459991F, -285.079987F), new Vector2(292.268005F, -285.56601F), new Vector2(291.884003F, -285.962006F)); + builder.AddCubicBezier(new Vector2(291.5F, -286.358002F), new Vector2(291.007996F, -286.556F), new Vector2(290.40799F, -286.556F)); + builder.AddCubicBezier(new Vector2(289.808014F, -286.556F), new Vector2(289.31601F, -286.358002F), new Vector2(288.932007F, -285.962006F)); + builder.AddCubicBezier(new Vector2(288.548004F, -285.56601F), new Vector2(288.355988F, -285.079987F), new Vector2(288.355988F, -284.503998F)); + builder.AddCubicBezier(new Vector2(288.355988F, -283.903992F), new Vector2(288.548004F, -283.406006F), new Vector2(288.932007F, -283.01001F)); + builder.AddCubicBezier(new Vector2(289.31601F, -282.614014F), new Vector2(289.808014F, -282.415985F), new Vector2(290.40799F, -282.415985F)); + builder.AddCubicBezier(new Vector2(291.007996F, -282.415985F), new Vector2(291.5F, -282.614014F), new Vector2(291.884003F, -283.01001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(292.028015F, -261.895996F)); + builder.AddLine(new Vector2(292.028015F, -278.996002F)); + builder.AddLine(new Vector2(288.752014F, -278.996002F)); + builder.AddLine(new Vector2(288.752014F, -261.895996F)); + builder.AddLine(new Vector2(292.028015F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0656() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(273.43399F, -265.35199F)); + builder.AddCubicBezier(new Vector2(272.605988F, -265.855988F), new Vector2(271.970001F, -266.54599F), new Vector2(271.526001F, -267.421997F)); + builder.AddCubicBezier(new Vector2(271.082001F, -268.298004F), new Vector2(270.859985F, -269.299988F), new Vector2(270.859985F, -270.428009F)); + builder.AddCubicBezier(new Vector2(270.859985F, -271.579987F), new Vector2(271.088013F, -272.593994F), new Vector2(271.544006F, -273.470001F)); + builder.AddCubicBezier(new Vector2(272F, -274.346008F), new Vector2(272.635986F, -275.036011F), new Vector2(273.451996F, -275.540009F)); + builder.AddCubicBezier(new Vector2(274.268005F, -276.044006F), new Vector2(275.20401F, -276.29599F), new Vector2(276.26001F, -276.29599F)); + builder.AddCubicBezier(new Vector2(277.339996F, -276.29599F), new Vector2(278.287994F, -276.044006F), new Vector2(279.104004F, -275.540009F)); + builder.AddCubicBezier(new Vector2(279.920013F, -275.036011F), new Vector2(280.562012F, -274.346008F), new Vector2(281.029999F, -273.470001F)); + builder.AddCubicBezier(new Vector2(281.497986F, -272.593994F), new Vector2(281.731995F, -271.59201F), new Vector2(281.731995F, -270.463989F)); + builder.AddCubicBezier(new Vector2(281.731995F, -269.312012F), new Vector2(281.497986F, -268.298004F), new Vector2(281.029999F, -267.421997F)); + builder.AddCubicBezier(new Vector2(280.562012F, -266.54599F), new Vector2(279.920013F, -265.855988F), new Vector2(279.104004F, -265.35199F)); + builder.AddCubicBezier(new Vector2(278.287994F, -264.847992F), new Vector2(277.339996F, -264.596008F), new Vector2(276.26001F, -264.596008F)); + builder.AddCubicBezier(new Vector2(275.20401F, -264.596008F), new Vector2(274.261993F, -264.847992F), new Vector2(273.43399F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(271.040009F, -261.895996F)); + builder.AddLine(new Vector2(271.040009F, -266.503998F)); + builder.AddLine(new Vector2(270.428009F, -270.679993F)); + builder.AddLine(new Vector2(271.040009F, -274.820007F)); + builder.AddLine(new Vector2(271.040009F, -287.600006F)); + builder.AddLine(new Vector2(267.799988F, -287.600006F)); + builder.AddLine(new Vector2(267.799988F, -261.895996F)); + builder.AddLine(new Vector2(271.040009F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(281.029999F, -262.705994F)); + builder.AddCubicBezier(new Vector2(282.290009F, -263.485992F), new Vector2(283.279999F, -264.548004F), new Vector2(284F, -265.891998F)); + builder.AddCubicBezier(new Vector2(284.720001F, -267.235992F), new Vector2(285.079987F, -268.747986F), new Vector2(285.079987F, -270.428009F)); + builder.AddCubicBezier(new Vector2(285.079987F, -272.108002F), new Vector2(284.720001F, -273.619995F), new Vector2(284F, -274.963989F)); + builder.AddCubicBezier(new Vector2(283.279999F, -276.308014F), new Vector2(282.290009F, -277.376007F), new Vector2(281.029999F, -278.167999F)); + builder.AddCubicBezier(new Vector2(279.769989F, -278.959991F), new Vector2(278.359985F, -279.355988F), new Vector2(276.799988F, -279.355988F)); + builder.AddCubicBezier(new Vector2(275.528015F, -279.355988F), new Vector2(274.369995F, -279.085999F), new Vector2(273.325989F, -278.54599F)); + builder.AddCubicBezier(new Vector2(272.282013F, -278.006012F), new Vector2(271.441986F, -277.261993F), new Vector2(270.806F, -276.313995F)); + builder.AddCubicBezier(new Vector2(270.170013F, -275.365997F), new Vector2(269.81601F, -274.268005F), new Vector2(269.743988F, -273.019989F)); + builder.AddLine(new Vector2(269.743988F, -267.872009F)); + builder.AddCubicBezier(new Vector2(269.81601F, -266.64801F), new Vector2(270.164001F, -265.556F), new Vector2(270.787994F, -264.596008F)); + builder.AddCubicBezier(new Vector2(271.411987F, -263.635986F), new Vector2(272.246002F, -262.885986F), new Vector2(273.290009F, -262.346008F)); + builder.AddCubicBezier(new Vector2(274.334015F, -261.806F), new Vector2(275.503998F, -261.536011F), new Vector2(276.799988F, -261.536011F)); + builder.AddCubicBezier(new Vector2(278.359985F, -261.536011F), new Vector2(279.769989F, -261.925995F), new Vector2(281.029999F, -262.705994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0657() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(252.751999F, -262.291992F)); + builder.AddCubicBezier(new Vector2(253.927994F, -262.79599F), new Vector2(254.936005F, -263.528015F), new Vector2(255.776001F, -264.488007F)); + builder.AddLine(new Vector2(253.688004F, -266.612F)); + builder.AddCubicBezier(new Vector2(253.112F, -265.940002F), new Vector2(252.421997F, -265.436005F), new Vector2(251.617996F, -265.100006F)); + builder.AddCubicBezier(new Vector2(250.813995F, -264.764008F), new Vector2(249.932007F, -264.596008F), new Vector2(248.972F, -264.596008F)); + builder.AddCubicBezier(new Vector2(247.820007F, -264.596008F), new Vector2(246.800003F, -264.84201F), new Vector2(245.912003F, -265.334015F)); + builder.AddCubicBezier(new Vector2(245.024002F, -265.825989F), new Vector2(244.339996F, -266.522003F), new Vector2(243.860001F, -267.421997F)); + builder.AddCubicBezier(new Vector2(243.380005F, -268.321991F), new Vector2(243.139999F, -269.372009F), new Vector2(243.139999F, -270.571991F)); + builder.AddCubicBezier(new Vector2(243.139999F, -271.747986F), new Vector2(243.367996F, -272.768005F), new Vector2(243.824005F, -273.631989F)); + builder.AddCubicBezier(new Vector2(244.279999F, -274.496002F), new Vector2(244.927994F, -275.167999F), new Vector2(245.768005F, -275.64801F)); + builder.AddCubicBezier(new Vector2(246.608002F, -276.127991F), new Vector2(247.580002F, -276.368011F), new Vector2(248.684006F, -276.368011F)); + builder.AddCubicBezier(new Vector2(249.740005F, -276.368011F), new Vector2(250.639999F, -276.145996F), new Vector2(251.384003F, -275.701996F)); + builder.AddCubicBezier(new Vector2(252.128006F, -275.257996F), new Vector2(252.703995F, -274.634003F), new Vector2(253.112F, -273.829987F)); + builder.AddCubicBezier(new Vector2(253.520004F, -273.026001F), new Vector2(253.723999F, -272.048004F), new Vector2(253.723999F, -270.895996F)); + builder.AddLine(new Vector2(254.912003F, -271.940002F)); + builder.AddLine(new Vector2(242.203995F, -271.940002F)); + builder.AddLine(new Vector2(242.203995F, -269.23999F)); + builder.AddLine(new Vector2(256.640015F, -269.23999F)); + builder.AddCubicBezier(new Vector2(256.712006F, -269.575989F), new Vector2(256.76001F, -269.881989F), new Vector2(256.783997F, -270.15799F)); + builder.AddCubicBezier(new Vector2(256.808014F, -270.43399F), new Vector2(256.820007F, -270.691986F), new Vector2(256.820007F, -270.932007F)); + builder.AddCubicBezier(new Vector2(256.820007F, -272.563995F), new Vector2(256.477997F, -274.015991F), new Vector2(255.794006F, -275.287994F)); + builder.AddCubicBezier(new Vector2(255.110001F, -276.559998F), new Vector2(254.156006F, -277.556F), new Vector2(252.932007F, -278.276001F)); + builder.AddCubicBezier(new Vector2(251.707993F, -278.996002F), new Vector2(250.315994F, -279.355988F), new Vector2(248.755997F, -279.355988F)); + builder.AddCubicBezier(new Vector2(247.100006F, -279.355988F), new Vector2(245.606003F, -278.966003F), new Vector2(244.274002F, -278.186005F)); + builder.AddCubicBezier(new Vector2(242.942001F, -277.406006F), new Vector2(241.886002F, -276.343994F), new Vector2(241.106003F, -275F)); + builder.AddCubicBezier(new Vector2(240.326004F, -273.656006F), new Vector2(239.936005F, -272.144012F), new Vector2(239.936005F, -270.463989F)); + builder.AddCubicBezier(new Vector2(239.936005F, -268.76001F), new Vector2(240.332001F, -267.235992F), new Vector2(241.123993F, -265.891998F)); + builder.AddCubicBezier(new Vector2(241.916F, -264.548004F), new Vector2(242.990005F, -263.485992F), new Vector2(244.345993F, -262.705994F)); + builder.AddCubicBezier(new Vector2(245.701996F, -261.925995F), new Vector2(247.244003F, -261.536011F), new Vector2(248.972F, -261.536011F)); + builder.AddCubicBezier(new Vector2(250.315994F, -261.536011F), new Vector2(251.576004F, -261.787994F), new Vector2(252.751999F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0658() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(224.563995F, -261.895996F)); + builder.AddLine(new Vector2(224.563995F, -278.996002F)); + builder.AddLine(new Vector2(221.324005F, -278.996002F)); + builder.AddLine(new Vector2(221.324005F, -261.895996F)); + builder.AddLine(new Vector2(224.563995F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(236.660004F, -261.895996F)); + builder.AddLine(new Vector2(236.660004F, -272.515991F)); + builder.AddCubicBezier(new Vector2(236.660004F, -273.691986F), new Vector2(236.371994F, -274.802002F), new Vector2(235.796005F, -275.846008F)); + builder.AddCubicBezier(new Vector2(235.220001F, -276.890015F), new Vector2(234.434006F, -277.735992F), new Vector2(233.438004F, -278.384003F)); + builder.AddCubicBezier(new Vector2(232.442001F, -279.032013F), new Vector2(231.296005F, -279.355988F), new Vector2(230F, -279.355988F)); + builder.AddCubicBezier(new Vector2(228.703995F, -279.355988F), new Vector2(227.539993F, -279.062012F), new Vector2(226.507996F, -278.473999F)); + builder.AddCubicBezier(new Vector2(225.475998F, -277.885986F), new Vector2(224.671997F, -277.088013F), new Vector2(224.095993F, -276.079987F)); + builder.AddCubicBezier(new Vector2(223.520004F, -275.071991F), new Vector2(223.231995F, -273.920013F), new Vector2(223.231995F, -272.623993F)); + builder.AddLine(new Vector2(224.563995F, -271.868011F)); + builder.AddCubicBezier(new Vector2(224.563995F, -272.731995F), new Vector2(224.755997F, -273.5F), new Vector2(225.139999F, -274.171997F)); + builder.AddCubicBezier(new Vector2(225.524002F, -274.843994F), new Vector2(226.052002F, -275.372009F), new Vector2(226.723999F, -275.756012F)); + builder.AddCubicBezier(new Vector2(227.395996F, -276.140015F), new Vector2(228.164001F, -276.332001F), new Vector2(229.028F, -276.332001F)); + builder.AddCubicBezier(new Vector2(230.324005F, -276.332001F), new Vector2(231.373993F, -275.911987F), new Vector2(232.177994F, -275.071991F)); + builder.AddCubicBezier(new Vector2(232.981995F, -274.231995F), new Vector2(233.384003F, -273.164001F), new Vector2(233.384003F, -271.868011F)); + builder.AddLine(new Vector2(233.384003F, -261.895996F)); + builder.AddLine(new Vector2(236.660004F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0659() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(216.391998F, -283.01001F)); + builder.AddCubicBezier(new Vector2(216.776001F, -283.406006F), new Vector2(216.968002F, -283.903992F), new Vector2(216.968002F, -284.503998F)); + builder.AddCubicBezier(new Vector2(216.968002F, -285.079987F), new Vector2(216.776001F, -285.56601F), new Vector2(216.391998F, -285.962006F)); + builder.AddCubicBezier(new Vector2(216.007996F, -286.358002F), new Vector2(215.516006F, -286.556F), new Vector2(214.916F, -286.556F)); + builder.AddCubicBezier(new Vector2(214.315994F, -286.556F), new Vector2(213.824005F, -286.358002F), new Vector2(213.440002F, -285.962006F)); + builder.AddCubicBezier(new Vector2(213.056F, -285.56601F), new Vector2(212.863998F, -285.079987F), new Vector2(212.863998F, -284.503998F)); + builder.AddCubicBezier(new Vector2(212.863998F, -283.903992F), new Vector2(213.056F, -283.406006F), new Vector2(213.440002F, -283.01001F)); + builder.AddCubicBezier(new Vector2(213.824005F, -282.614014F), new Vector2(214.315994F, -282.415985F), new Vector2(214.916F, -282.415985F)); + builder.AddCubicBezier(new Vector2(215.516006F, -282.415985F), new Vector2(216.007996F, -282.614014F), new Vector2(216.391998F, -283.01001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(216.535995F, -261.895996F)); + builder.AddLine(new Vector2(216.535995F, -278.996002F)); + builder.AddLine(new Vector2(213.259995F, -278.996002F)); + builder.AddLine(new Vector2(213.259995F, -261.895996F)); + builder.AddLine(new Vector2(216.535995F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0660() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(208.507996F, -261.895996F)); + builder.AddLine(new Vector2(208.507996F, -287.600006F)); + builder.AddLine(new Vector2(205.268005F, -287.600006F)); + builder.AddLine(new Vector2(205.268005F, -261.895996F)); + builder.AddLine(new Vector2(208.507996F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0661() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(188.779999F, -261.895996F)); + builder.AddLine(new Vector2(188.779999F, -278.996002F)); + builder.AddLine(new Vector2(185.539993F, -278.996002F)); + builder.AddLine(new Vector2(185.539993F, -261.895996F)); + builder.AddLine(new Vector2(188.779999F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(200.876007F, -261.895996F)); + builder.AddLine(new Vector2(200.876007F, -272.515991F)); + builder.AddCubicBezier(new Vector2(200.876007F, -273.691986F), new Vector2(200.587997F, -274.802002F), new Vector2(200.011993F, -275.846008F)); + builder.AddCubicBezier(new Vector2(199.436005F, -276.890015F), new Vector2(198.649994F, -277.735992F), new Vector2(197.654007F, -278.384003F)); + builder.AddCubicBezier(new Vector2(196.658005F, -279.032013F), new Vector2(195.511993F, -279.355988F), new Vector2(194.216003F, -279.355988F)); + builder.AddCubicBezier(new Vector2(192.919998F, -279.355988F), new Vector2(191.755997F, -279.062012F), new Vector2(190.723999F, -278.473999F)); + builder.AddCubicBezier(new Vector2(189.692001F, -277.885986F), new Vector2(188.888F, -277.088013F), new Vector2(188.311996F, -276.079987F)); + builder.AddCubicBezier(new Vector2(187.735992F, -275.071991F), new Vector2(187.447998F, -273.920013F), new Vector2(187.447998F, -272.623993F)); + builder.AddLine(new Vector2(188.779999F, -271.868011F)); + builder.AddCubicBezier(new Vector2(188.779999F, -272.731995F), new Vector2(188.972F, -273.5F), new Vector2(189.356003F, -274.171997F)); + builder.AddCubicBezier(new Vector2(189.740005F, -274.843994F), new Vector2(190.268005F, -275.372009F), new Vector2(190.940002F, -275.756012F)); + builder.AddCubicBezier(new Vector2(191.612F, -276.140015F), new Vector2(192.380005F, -276.332001F), new Vector2(193.244003F, -276.332001F)); + builder.AddCubicBezier(new Vector2(194.539993F, -276.332001F), new Vector2(195.589996F, -275.911987F), new Vector2(196.393997F, -275.071991F)); + builder.AddCubicBezier(new Vector2(197.197998F, -274.231995F), new Vector2(197.600006F, -273.164001F), new Vector2(197.600006F, -271.868011F)); + builder.AddLine(new Vector2(197.600006F, -261.895996F)); + builder.AddLine(new Vector2(200.876007F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0662() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(170.132004F, -265.424011F)); + builder.AddCubicBezier(new Vector2(169.292007F, -265.928009F), new Vector2(168.632004F, -266.618011F), new Vector2(168.151993F, -267.493988F)); + builder.AddCubicBezier(new Vector2(167.671997F, -268.369995F), new Vector2(167.432007F, -269.372009F), new Vector2(167.432007F, -270.5F)); + builder.AddCubicBezier(new Vector2(167.432007F, -271.604004F), new Vector2(167.671997F, -272.588013F), new Vector2(168.151993F, -273.451996F)); + builder.AddCubicBezier(new Vector2(168.632004F, -274.31601F), new Vector2(169.292007F, -274.993988F), new Vector2(170.132004F, -275.485992F)); + builder.AddCubicBezier(new Vector2(170.972F, -275.977997F), new Vector2(171.919998F, -276.223999F), new Vector2(172.975998F, -276.223999F)); + builder.AddCubicBezier(new Vector2(174.080002F, -276.223999F), new Vector2(175.046005F, -275.977997F), new Vector2(175.873993F, -275.485992F)); + builder.AddCubicBezier(new Vector2(176.701996F, -274.993988F), new Vector2(177.362F, -274.31601F), new Vector2(177.854004F, -273.451996F)); + builder.AddCubicBezier(new Vector2(178.345993F, -272.588013F), new Vector2(178.591995F, -271.604004F), new Vector2(178.591995F, -270.5F)); + builder.AddCubicBezier(new Vector2(178.591995F, -269.372009F), new Vector2(178.352005F, -268.369995F), new Vector2(177.871994F, -267.493988F)); + builder.AddCubicBezier(new Vector2(177.391998F, -266.618011F), new Vector2(176.731995F, -265.928009F), new Vector2(175.891998F, -265.424011F)); + builder.AddCubicBezier(new Vector2(175.052002F, -264.920013F), new Vector2(174.080002F, -264.667999F), new Vector2(172.975998F, -264.667999F)); + builder.AddCubicBezier(new Vector2(171.919998F, -264.667999F), new Vector2(170.972F, -264.920013F), new Vector2(170.132004F, -265.424011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(177.529999F, -262.723999F)); + builder.AddCubicBezier(new Vector2(178.886002F, -263.515991F), new Vector2(179.960007F, -264.589996F), new Vector2(180.751999F, -265.946014F)); + builder.AddCubicBezier(new Vector2(181.544006F, -267.302002F), new Vector2(181.940002F, -268.820007F), new Vector2(181.940002F, -270.5F)); + builder.AddCubicBezier(new Vector2(181.940002F, -272.156006F), new Vector2(181.544006F, -273.656006F), new Vector2(180.751999F, -275F)); + builder.AddCubicBezier(new Vector2(179.960007F, -276.343994F), new Vector2(178.886002F, -277.406006F), new Vector2(177.529999F, -278.186005F)); + builder.AddCubicBezier(new Vector2(176.173996F, -278.966003F), new Vector2(174.656006F, -279.355988F), new Vector2(172.975998F, -279.355988F)); + builder.AddCubicBezier(new Vector2(171.320007F, -279.355988F), new Vector2(169.820007F, -278.959991F), new Vector2(168.475998F, -278.167999F)); + builder.AddCubicBezier(new Vector2(167.132004F, -277.376007F), new Vector2(166.063995F, -276.313995F), new Vector2(165.272003F, -274.981995F)); + builder.AddCubicBezier(new Vector2(164.479996F, -273.649994F), new Vector2(164.084F, -272.156006F), new Vector2(164.084F, -270.5F)); + builder.AddCubicBezier(new Vector2(164.084F, -268.820007F), new Vector2(164.479996F, -267.302002F), new Vector2(165.272003F, -265.946014F)); + builder.AddCubicBezier(new Vector2(166.063995F, -264.589996F), new Vector2(167.132004F, -263.515991F), new Vector2(168.475998F, -262.723999F)); + builder.AddCubicBezier(new Vector2(169.820007F, -261.932007F), new Vector2(171.320007F, -261.536011F), new Vector2(172.975998F, -261.536011F)); + builder.AddCubicBezier(new Vector2(174.656006F, -261.536011F), new Vector2(176.173996F, -261.932007F), new Vector2(177.529999F, -262.723999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0663() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(141.817993F, -265.946014F)); + builder.AddCubicBezier(new Vector2(140.990005F, -266.414001F), new Vector2(140.341995F, -267.067993F), new Vector2(139.873993F, -267.90799F)); + builder.AddCubicBezier(new Vector2(139.406006F, -268.747986F), new Vector2(139.171997F, -269.708008F), new Vector2(139.171997F, -270.787994F)); + builder.AddCubicBezier(new Vector2(139.171997F, -271.868011F), new Vector2(139.406006F, -272.821991F), new Vector2(139.873993F, -273.649994F)); + builder.AddCubicBezier(new Vector2(140.341995F, -274.477997F), new Vector2(140.983994F, -275.126007F), new Vector2(141.800003F, -275.593994F)); + builder.AddCubicBezier(new Vector2(142.615997F, -276.062012F), new Vector2(143.563995F, -276.29599F), new Vector2(144.643997F, -276.29599F)); + builder.AddCubicBezier(new Vector2(145.699997F, -276.29599F), new Vector2(146.630005F, -276.062012F), new Vector2(147.434006F, -275.593994F)); + builder.AddCubicBezier(new Vector2(148.238007F, -275.126007F), new Vector2(148.862F, -274.477997F), new Vector2(149.306F, -273.649994F)); + builder.AddCubicBezier(new Vector2(149.75F, -272.821991F), new Vector2(149.972F, -271.855988F), new Vector2(149.972F, -270.752014F)); + builder.AddCubicBezier(new Vector2(149.972F, -269.64801F), new Vector2(149.75F, -268.682007F), new Vector2(149.306F, -267.854004F)); + builder.AddCubicBezier(new Vector2(148.862F, -267.026001F), new Vector2(148.244003F, -266.384003F), new Vector2(147.451996F, -265.928009F)); + builder.AddCubicBezier(new Vector2(146.660004F, -265.471985F), new Vector2(145.723999F, -265.243988F), new Vector2(144.643997F, -265.243988F)); + builder.AddCubicBezier(new Vector2(143.587997F, -265.243988F), new Vector2(142.645996F, -265.477997F), new Vector2(141.817993F, -265.946014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(147.559998F, -262.976013F)); + builder.AddCubicBezier(new Vector2(148.591995F, -263.503998F), new Vector2(149.414001F, -264.242004F), new Vector2(150.026001F, -265.190002F)); + builder.AddCubicBezier(new Vector2(150.638F, -266.138F), new Vector2(150.979996F, -267.235992F), new Vector2(151.052002F, -268.484009F)); + builder.AddLine(new Vector2(151.052002F, -273.019989F)); + builder.AddCubicBezier(new Vector2(150.979996F, -274.291992F), new Vector2(150.643997F, -275.402008F), new Vector2(150.044006F, -276.350006F)); + builder.AddCubicBezier(new Vector2(149.444F, -277.298004F), new Vector2(148.621994F, -278.036011F), new Vector2(147.578003F, -278.563995F)); + builder.AddCubicBezier(new Vector2(146.533997F, -279.09201F), new Vector2(145.339996F, -279.355988F), new Vector2(143.996002F, -279.355988F)); + builder.AddCubicBezier(new Vector2(142.460007F, -279.355988F), new Vector2(141.067993F, -278.977997F), new Vector2(139.820007F, -278.221985F)); + builder.AddCubicBezier(new Vector2(138.572006F, -277.466003F), new Vector2(137.593994F, -276.446014F), new Vector2(136.886002F, -275.161987F)); + builder.AddCubicBezier(new Vector2(136.177994F, -273.877991F), new Vector2(135.824005F, -272.420013F), new Vector2(135.824005F, -270.787994F)); + builder.AddCubicBezier(new Vector2(135.824005F, -269.156006F), new Vector2(136.184006F, -267.686005F), new Vector2(136.904007F, -266.377991F)); + builder.AddCubicBezier(new Vector2(137.623993F, -265.070007F), new Vector2(138.602005F, -264.044006F), new Vector2(139.837997F, -263.299988F)); + builder.AddCubicBezier(new Vector2(141.074005F, -262.556F), new Vector2(142.472F, -262.18399F), new Vector2(144.031998F, -262.18399F)); + builder.AddCubicBezier(new Vector2(145.352005F, -262.18399F), new Vector2(146.528F, -262.447998F), new Vector2(147.559998F, -262.976013F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(148.729996F, -255.397995F)); + builder.AddCubicBezier(new Vector2(150.085999F, -256.082001F), new Vector2(151.141998F, -257.041992F), new Vector2(151.897995F, -258.278015F)); + builder.AddCubicBezier(new Vector2(152.654007F, -259.514008F), new Vector2(153.031998F, -260.947998F), new Vector2(153.031998F, -262.579987F)); + builder.AddLine(new Vector2(153.031998F, -278.996002F)); + builder.AddLine(new Vector2(149.792007F, -278.996002F)); + builder.AddLine(new Vector2(149.792007F, -274.496002F)); + builder.AddLine(new Vector2(150.367996F, -270.679993F)); + builder.AddLine(new Vector2(149.792007F, -266.828003F)); + builder.AddLine(new Vector2(149.792007F, -262.579987F)); + builder.AddCubicBezier(new Vector2(149.792007F, -261.019989F), new Vector2(149.276001F, -259.778015F), new Vector2(148.244003F, -258.854004F)); + builder.AddCubicBezier(new Vector2(147.212006F, -257.929993F), new Vector2(145.832001F, -257.467987F), new Vector2(144.104004F, -257.467987F)); + builder.AddCubicBezier(new Vector2(142.783997F, -257.467987F), new Vector2(141.643997F, -257.701996F), new Vector2(140.684006F, -258.170013F)); + builder.AddCubicBezier(new Vector2(139.723999F, -258.638F), new Vector2(138.895996F, -259.31601F), new Vector2(138.199997F, -260.20401F)); + builder.AddLine(new Vector2(136.076004F, -258.079987F)); + builder.AddCubicBezier(new Vector2(136.916F, -256.903992F), new Vector2(138.007996F, -255.992004F), new Vector2(139.352005F, -255.343994F)); + builder.AddCubicBezier(new Vector2(140.695999F, -254.695999F), new Vector2(142.255997F, -254.371994F), new Vector2(144.031998F, -254.371994F)); + builder.AddCubicBezier(new Vector2(145.807999F, -254.371994F), new Vector2(147.373993F, -254.714005F), new Vector2(148.729996F, -255.397995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0664() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(120.452003F, -261.895996F)); + builder.AddLine(new Vector2(120.452003F, -278.996002F)); + builder.AddLine(new Vector2(117.211998F, -278.996002F)); + builder.AddLine(new Vector2(117.211998F, -261.895996F)); + builder.AddLine(new Vector2(120.452003F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(132.548004F, -261.895996F)); + builder.AddLine(new Vector2(132.548004F, -272.515991F)); + builder.AddCubicBezier(new Vector2(132.548004F, -273.691986F), new Vector2(132.259995F, -274.802002F), new Vector2(131.684006F, -275.846008F)); + builder.AddCubicBezier(new Vector2(131.108002F, -276.890015F), new Vector2(130.322006F, -277.735992F), new Vector2(129.326004F, -278.384003F)); + builder.AddCubicBezier(new Vector2(128.330002F, -279.032013F), new Vector2(127.183998F, -279.355988F), new Vector2(125.888F, -279.355988F)); + builder.AddCubicBezier(new Vector2(124.592003F, -279.355988F), new Vector2(123.428001F, -279.062012F), new Vector2(122.396004F, -278.473999F)); + builder.AddCubicBezier(new Vector2(121.363998F, -277.885986F), new Vector2(120.559998F, -277.088013F), new Vector2(119.984001F, -276.079987F)); + builder.AddCubicBezier(new Vector2(119.407997F, -275.071991F), new Vector2(119.120003F, -273.920013F), new Vector2(119.120003F, -272.623993F)); + builder.AddLine(new Vector2(120.452003F, -271.868011F)); + builder.AddCubicBezier(new Vector2(120.452003F, -272.731995F), new Vector2(120.643997F, -273.5F), new Vector2(121.028F, -274.171997F)); + builder.AddCubicBezier(new Vector2(121.412003F, -274.843994F), new Vector2(121.940002F, -275.372009F), new Vector2(122.612F, -275.756012F)); + builder.AddCubicBezier(new Vector2(123.283997F, -276.140015F), new Vector2(124.052002F, -276.332001F), new Vector2(124.916F, -276.332001F)); + builder.AddCubicBezier(new Vector2(126.211998F, -276.332001F), new Vector2(127.262001F, -275.911987F), new Vector2(128.065994F, -275.071991F)); + builder.AddCubicBezier(new Vector2(128.869995F, -274.231995F), new Vector2(129.272003F, -273.164001F), new Vector2(129.272003F, -271.868011F)); + builder.AddLine(new Vector2(129.272003F, -261.895996F)); + builder.AddLine(new Vector2(132.548004F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0665() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(109.328003F, -262.526001F)); + builder.AddCubicBezier(new Vector2(110.431999F, -263.138F), new Vector2(111.295998F, -264.007996F), new Vector2(111.919998F, -265.135986F)); + builder.AddCubicBezier(new Vector2(112.543999F, -266.264008F), new Vector2(112.856003F, -267.571991F), new Vector2(112.856003F, -269.059998F)); + builder.AddLine(new Vector2(112.856003F, -278.996002F)); + builder.AddLine(new Vector2(109.615997F, -278.996002F)); + builder.AddLine(new Vector2(109.615997F, -269.20401F)); + builder.AddCubicBezier(new Vector2(109.615997F, -267.787994F), new Vector2(109.255997F, -266.678009F), new Vector2(108.536003F, -265.873993F)); + builder.AddCubicBezier(new Vector2(107.816002F, -265.070007F), new Vector2(106.82F, -264.667999F), new Vector2(105.547997F, -264.667999F)); + builder.AddCubicBezier(new Vector2(104.708F, -264.667999F), new Vector2(103.975998F, -264.847992F), new Vector2(103.351997F, -265.208008F)); + builder.AddCubicBezier(new Vector2(102.727997F, -265.567993F), new Vector2(102.253998F, -266.089996F), new Vector2(101.93F, -266.773987F)); + builder.AddCubicBezier(new Vector2(101.606003F, -267.458008F), new Vector2(101.444F, -268.268005F), new Vector2(101.444F, -269.20401F)); + builder.AddLine(new Vector2(101.444F, -278.996002F)); + builder.AddLine(new Vector2(98.2040024F, -278.996002F)); + builder.AddLine(new Vector2(98.2040024F, -269.059998F)); + builder.AddCubicBezier(new Vector2(98.2040024F, -267.571991F), new Vector2(98.5159988F, -266.264008F), new Vector2(99.1399994F, -265.135986F)); + builder.AddCubicBezier(new Vector2(99.7639999F, -264.007996F), new Vector2(100.634003F, -263.138F), new Vector2(101.75F, -262.526001F)); + builder.AddCubicBezier(new Vector2(102.865997F, -261.914001F), new Vector2(104.132004F, -261.608002F), new Vector2(105.547997F, -261.608002F)); + builder.AddCubicBezier(new Vector2(106.963997F, -261.608002F), new Vector2(108.223999F, -261.914001F), new Vector2(109.328003F, -262.526001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0666() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(83.2279968F, -265.424011F)); + builder.AddCubicBezier(new Vector2(82.3880005F, -265.928009F), new Vector2(81.7279968F, -266.618011F), new Vector2(81.2480011F, -267.493988F)); + builder.AddCubicBezier(new Vector2(80.7679977F, -268.369995F), new Vector2(80.5279999F, -269.372009F), new Vector2(80.5279999F, -270.5F)); + builder.AddCubicBezier(new Vector2(80.5279999F, -271.604004F), new Vector2(80.7679977F, -272.588013F), new Vector2(81.2480011F, -273.451996F)); + builder.AddCubicBezier(new Vector2(81.7279968F, -274.31601F), new Vector2(82.3880005F, -274.993988F), new Vector2(83.2279968F, -275.485992F)); + builder.AddCubicBezier(new Vector2(84.0680008F, -275.977997F), new Vector2(85.0159988F, -276.223999F), new Vector2(86.0719986F, -276.223999F)); + builder.AddCubicBezier(new Vector2(87.1760025F, -276.223999F), new Vector2(88.1419983F, -275.977997F), new Vector2(88.9700012F, -275.485992F)); + builder.AddCubicBezier(new Vector2(89.7979965F, -274.993988F), new Vector2(90.4580002F, -274.31601F), new Vector2(90.9499969F, -273.451996F)); + builder.AddCubicBezier(new Vector2(91.4420013F, -272.588013F), new Vector2(91.6880035F, -271.604004F), new Vector2(91.6880035F, -270.5F)); + builder.AddCubicBezier(new Vector2(91.6880035F, -269.372009F), new Vector2(91.447998F, -268.369995F), new Vector2(90.9680023F, -267.493988F)); + builder.AddCubicBezier(new Vector2(90.487999F, -266.618011F), new Vector2(89.8280029F, -265.928009F), new Vector2(88.987999F, -265.424011F)); + builder.AddCubicBezier(new Vector2(88.1480026F, -264.920013F), new Vector2(87.1760025F, -264.667999F), new Vector2(86.0719986F, -264.667999F)); + builder.AddCubicBezier(new Vector2(85.0159988F, -264.667999F), new Vector2(84.0680008F, -264.920013F), new Vector2(83.2279968F, -265.424011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(90.6259995F, -262.723999F)); + builder.AddCubicBezier(new Vector2(91.9820023F, -263.515991F), new Vector2(93.0559998F, -264.589996F), new Vector2(93.8479996F, -265.946014F)); + builder.AddCubicBezier(new Vector2(94.6399994F, -267.302002F), new Vector2(95.0360031F, -268.820007F), new Vector2(95.0360031F, -270.5F)); + builder.AddCubicBezier(new Vector2(95.0360031F, -272.156006F), new Vector2(94.6399994F, -273.656006F), new Vector2(93.8479996F, -275F)); + builder.AddCubicBezier(new Vector2(93.0559998F, -276.343994F), new Vector2(91.9820023F, -277.406006F), new Vector2(90.6259995F, -278.186005F)); + builder.AddCubicBezier(new Vector2(89.2699966F, -278.966003F), new Vector2(87.7519989F, -279.355988F), new Vector2(86.0719986F, -279.355988F)); + builder.AddCubicBezier(new Vector2(84.4160004F, -279.355988F), new Vector2(82.9160004F, -278.959991F), new Vector2(81.5719986F, -278.167999F)); + builder.AddCubicBezier(new Vector2(80.2279968F, -277.376007F), new Vector2(79.1600037F, -276.313995F), new Vector2(78.3679962F, -274.981995F)); + builder.AddCubicBezier(new Vector2(77.5759964F, -273.649994F), new Vector2(77.1800003F, -272.156006F), new Vector2(77.1800003F, -270.5F)); + builder.AddCubicBezier(new Vector2(77.1800003F, -268.820007F), new Vector2(77.5759964F, -267.302002F), new Vector2(78.3679962F, -265.946014F)); + builder.AddCubicBezier(new Vector2(79.1600037F, -264.589996F), new Vector2(80.2279968F, -263.515991F), new Vector2(81.5719986F, -262.723999F)); + builder.AddCubicBezier(new Vector2(82.9160004F, -261.932007F), new Vector2(84.4160004F, -261.536011F), new Vector2(86.0719986F, -261.536011F)); + builder.AddCubicBezier(new Vector2(87.7519989F, -261.536011F), new Vector2(89.2699966F, -261.932007F), new Vector2(90.6259995F, -262.723999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0667() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(65.0479965F, -254.731995F)); + builder.AddLine(new Vector2(68.288002F, -261.752014F)); + builder.AddLine(new Vector2(66.4520035F, -265.063995F)); + builder.AddLine(new Vector2(61.4480019F, -254.731995F)); + builder.AddLine(new Vector2(65.0479965F, -254.731995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(68.288002F, -261.752014F)); + builder.AddLine(new Vector2(76.2799988F, -278.996002F)); + builder.AddLine(new Vector2(72.6800003F, -278.996002F)); + builder.AddLine(new Vector2(66.8840027F, -265.496002F)); + builder.AddLine(new Vector2(68.0360031F, -265.496002F)); + builder.AddLine(new Vector2(62.5279999F, -278.996002F)); + builder.AddLine(new Vector2(58.9280014F, -278.996002F)); + builder.AddLine(new Vector2(66.3440018F, -261.752014F)); + builder.AddLine(new Vector2(68.288002F, -261.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0668() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(48.5600014F, -261.895996F)); + builder.AddLine(new Vector2(48.5600014F, -278.996002F)); + builder.AddLine(new Vector2(45.2840004F, -278.996002F)); + builder.AddLine(new Vector2(45.2840004F, -274.820007F)); + builder.AddLine(new Vector2(45.8959999F, -270.679993F)); + builder.AddLine(new Vector2(45.2840004F, -266.503998F)); + builder.AddLine(new Vector2(45.2840004F, -261.895996F)); + builder.AddLine(new Vector2(48.5600014F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(37.2560005F, -265.35199F)); + builder.AddCubicBezier(new Vector2(36.4160004F, -265.855988F), new Vector2(35.762001F, -266.54599F), new Vector2(35.2939987F, -267.421997F)); + builder.AddCubicBezier(new Vector2(34.8260002F, -268.298004F), new Vector2(34.5919991F, -269.312012F), new Vector2(34.5919991F, -270.463989F)); + builder.AddCubicBezier(new Vector2(34.5919991F, -271.59201F), new Vector2(34.8260002F, -272.593994F), new Vector2(35.2939987F, -273.470001F)); + builder.AddCubicBezier(new Vector2(35.762001F, -274.346008F), new Vector2(36.4099998F, -275.036011F), new Vector2(37.237999F, -275.540009F)); + builder.AddCubicBezier(new Vector2(38.0660019F, -276.044006F), new Vector2(39.0200005F, -276.29599F), new Vector2(40.0999985F, -276.29599F)); + builder.AddCubicBezier(new Vector2(41.1800003F, -276.29599F), new Vector2(42.1220016F, -276.049988F), new Vector2(42.9259987F, -275.558014F)); + builder.AddCubicBezier(new Vector2(43.7299995F, -275.06601F), new Vector2(44.3600006F, -274.376007F), new Vector2(44.8160019F, -273.488007F)); + builder.AddCubicBezier(new Vector2(45.2719994F, -272.600006F), new Vector2(45.5F, -271.579987F), new Vector2(45.5F, -270.428009F)); + builder.AddCubicBezier(new Vector2(45.5F, -268.723999F), new Vector2(45.0079994F, -267.325989F), new Vector2(44.0239983F, -266.234009F)); + builder.AddCubicBezier(new Vector2(43.0400009F, -265.141998F), new Vector2(41.7439995F, -264.596008F), new Vector2(40.1360016F, -264.596008F)); + builder.AddCubicBezier(new Vector2(39.0559998F, -264.596008F), new Vector2(38.0960007F, -264.847992F), new Vector2(37.2560005F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(43.0880013F, -262.346008F)); + builder.AddCubicBezier(new Vector2(44.1199989F, -262.885986F), new Vector2(44.9420013F, -263.635986F), new Vector2(45.5540009F, -264.596008F)); + builder.AddCubicBezier(new Vector2(46.1660004F, -265.556F), new Vector2(46.5079994F, -266.64801F), new Vector2(46.5800018F, -267.872009F)); + builder.AddLine(new Vector2(46.5800018F, -273.019989F)); + builder.AddCubicBezier(new Vector2(46.5079994F, -274.268005F), new Vector2(46.1599998F, -275.365997F), new Vector2(45.5359993F, -276.313995F)); + builder.AddCubicBezier(new Vector2(44.9119987F, -277.261993F), new Vector2(44.0900002F, -278.006012F), new Vector2(43.0699997F, -278.54599F)); + builder.AddCubicBezier(new Vector2(42.0499992F, -279.085999F), new Vector2(40.8919983F, -279.355988F), new Vector2(39.5960007F, -279.355988F)); + builder.AddCubicBezier(new Vector2(38.012001F, -279.355988F), new Vector2(36.5900002F, -278.959991F), new Vector2(35.3300018F, -278.167999F)); + builder.AddCubicBezier(new Vector2(34.0699997F, -277.376007F), new Vector2(33.0740013F, -276.308014F), new Vector2(32.3419991F, -274.963989F)); + builder.AddCubicBezier(new Vector2(31.6100006F, -273.619995F), new Vector2(31.2439995F, -272.108002F), new Vector2(31.2439995F, -270.428009F)); + builder.AddCubicBezier(new Vector2(31.2439995F, -268.747986F), new Vector2(31.6100006F, -267.235992F), new Vector2(32.3419991F, -265.891998F)); + builder.AddCubicBezier(new Vector2(33.0740013F, -264.548004F), new Vector2(34.0699997F, -263.485992F), new Vector2(35.3300018F, -262.705994F)); + builder.AddCubicBezier(new Vector2(36.5900002F, -261.925995F), new Vector2(38.012001F, -261.536011F), new Vector2(39.5960007F, -261.536011F)); + builder.AddCubicBezier(new Vector2(40.8919983F, -261.536011F), new Vector2(42.0559998F, -261.806F), new Vector2(43.0880013F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0669() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(21.632F, -276.044006F)); + builder.AddLine(new Vector2(21.632F, -278.996002F)); + builder.AddLine(new Vector2(8.74400043F, -278.996002F)); + builder.AddLine(new Vector2(8.74400043F, -276.044006F)); + builder.AddLine(new Vector2(21.632F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(16.1959991F, -261.895996F)); + builder.AddLine(new Vector2(16.1959991F, -281.552002F)); + builder.AddCubicBezier(new Vector2(16.1959991F, -282.608002F), new Vector2(16.4780006F, -283.429993F), new Vector2(17.0419998F, -284.018005F)); + builder.AddCubicBezier(new Vector2(17.6060009F, -284.605988F), new Vector2(18.4039993F, -284.899994F), new Vector2(19.4360008F, -284.899994F)); + builder.AddCubicBezier(new Vector2(19.9880009F, -284.899994F), new Vector2(20.4559994F, -284.81601F), new Vector2(20.8400002F, -284.64801F)); + builder.AddCubicBezier(new Vector2(21.2240009F, -284.480011F), new Vector2(21.5720005F, -284.227997F), new Vector2(21.8840008F, -283.891998F)); + builder.AddLine(new Vector2(24.0079994F, -285.980011F)); + builder.AddCubicBezier(new Vector2(23.4080009F, -286.627991F), new Vector2(22.7479992F, -287.119995F), new Vector2(22.0279999F, -287.455994F)); + builder.AddCubicBezier(new Vector2(21.3080006F, -287.791992F), new Vector2(20.4559994F, -287.959991F), new Vector2(19.4720001F, -287.959991F)); + builder.AddCubicBezier(new Vector2(18.1760006F, -287.959991F), new Vector2(17.0359993F, -287.68399F), new Vector2(16.052F, -287.131989F)); + builder.AddCubicBezier(new Vector2(15.0679998F, -286.579987F), new Vector2(14.3000002F, -285.824005F), new Vector2(13.7480001F, -284.864014F)); + builder.AddCubicBezier(new Vector2(13.1960001F, -283.903992F), new Vector2(12.9200001F, -282.799988F), new Vector2(12.9200001F, -281.552002F)); + builder.AddLine(new Vector2(12.9200001F, -261.895996F)); + builder.AddLine(new Vector2(16.1959991F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0670() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-4.36000013F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-5.19999981F, -265.928009F), new Vector2(-5.86000013F, -266.618011F), new Vector2(-6.34000015F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-6.82000017F, -268.369995F), new Vector2(-7.05999994F, -269.372009F), new Vector2(-7.05999994F, -270.5F)); + builder.AddCubicBezier(new Vector2(-7.05999994F, -271.604004F), new Vector2(-6.82000017F, -272.588013F), new Vector2(-6.34000015F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-5.86000013F, -274.31601F), new Vector2(-5.19999981F, -274.993988F), new Vector2(-4.36000013F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-3.51999998F, -275.977997F), new Vector2(-2.57200003F, -276.223999F), new Vector2(-1.51600003F, -276.223999F)); + builder.AddCubicBezier(new Vector2(-0.412F, -276.223999F), new Vector2(0.55400002F, -275.977997F), new Vector2(1.38199997F, -275.485992F)); + builder.AddCubicBezier(new Vector2(2.21000004F, -274.993988F), new Vector2(2.86999989F, -274.31601F), new Vector2(3.36199999F, -273.451996F)); + builder.AddCubicBezier(new Vector2(3.85400009F, -272.588013F), new Vector2(4.0999999F, -271.604004F), new Vector2(4.0999999F, -270.5F)); + builder.AddCubicBezier(new Vector2(4.0999999F, -269.372009F), new Vector2(3.8599999F, -268.369995F), new Vector2(3.38000011F, -267.493988F)); + builder.AddCubicBezier(new Vector2(2.9000001F, -266.618011F), new Vector2(2.24000001F, -265.928009F), new Vector2(1.39999998F, -265.424011F)); + builder.AddCubicBezier(new Vector2(0.560000002F, -264.920013F), new Vector2(-0.412F, -264.667999F), new Vector2(-1.51600003F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-2.57200003F, -264.667999F), new Vector2(-3.51999998F, -264.920013F), new Vector2(-4.36000013F, -265.424011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(3.03800011F, -262.723999F)); + builder.AddCubicBezier(new Vector2(4.39400005F, -263.515991F), new Vector2(5.46799994F, -264.589996F), new Vector2(6.26000023F, -265.946014F)); + builder.AddCubicBezier(new Vector2(7.05200005F, -267.302002F), new Vector2(7.44799995F, -268.820007F), new Vector2(7.44799995F, -270.5F)); + builder.AddCubicBezier(new Vector2(7.44799995F, -272.156006F), new Vector2(7.05200005F, -273.656006F), new Vector2(6.26000023F, -275F)); + builder.AddCubicBezier(new Vector2(5.46799994F, -276.343994F), new Vector2(4.39400005F, -277.406006F), new Vector2(3.03800011F, -278.186005F)); + builder.AddCubicBezier(new Vector2(1.68200004F, -278.966003F), new Vector2(0.164000005F, -279.355988F), new Vector2(-1.51600003F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-3.17199993F, -279.355988F), new Vector2(-4.67199993F, -278.959991F), new Vector2(-6.01599979F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-7.36000013F, -277.376007F), new Vector2(-8.42800045F, -276.313995F), new Vector2(-9.22000027F, -274.981995F)); + builder.AddCubicBezier(new Vector2(-10.0120001F, -273.649994F), new Vector2(-10.408F, -272.156006F), new Vector2(-10.408F, -270.5F)); + builder.AddCubicBezier(new Vector2(-10.408F, -268.820007F), new Vector2(-10.0120001F, -267.302002F), new Vector2(-9.22000027F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-8.42800045F, -264.589996F), new Vector2(-7.36000013F, -263.515991F), new Vector2(-6.01599979F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-4.67199993F, -261.932007F), new Vector2(-3.17199993F, -261.536011F), new Vector2(-1.51600003F, -261.536011F)); + builder.AddCubicBezier(new Vector2(0.164000005F, -261.536011F), new Vector2(1.68200004F, -261.932007F), new Vector2(3.03800011F, -262.723999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0671() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-32.6739998F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-33.5019989F, -266.414001F), new Vector2(-34.1500015F, -267.067993F), new Vector2(-34.618F, -267.90799F)); + builder.AddCubicBezier(new Vector2(-35.0859985F, -268.747986F), new Vector2(-35.3199997F, -269.708008F), new Vector2(-35.3199997F, -270.787994F)); + builder.AddCubicBezier(new Vector2(-35.3199997F, -271.868011F), new Vector2(-35.0859985F, -272.821991F), new Vector2(-34.618F, -273.649994F)); + builder.AddCubicBezier(new Vector2(-34.1500015F, -274.477997F), new Vector2(-33.5079994F, -275.126007F), new Vector2(-32.6920013F, -275.593994F)); + builder.AddCubicBezier(new Vector2(-31.8759995F, -276.062012F), new Vector2(-30.9279995F, -276.29599F), new Vector2(-29.8479996F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-28.7919998F, -276.29599F), new Vector2(-27.8619995F, -276.062012F), new Vector2(-27.0580006F, -275.593994F)); + builder.AddCubicBezier(new Vector2(-26.2539997F, -275.126007F), new Vector2(-25.6299992F, -274.477997F), new Vector2(-25.1860008F, -273.649994F)); + builder.AddCubicBezier(new Vector2(-24.7420006F, -272.821991F), new Vector2(-24.5200005F, -271.855988F), new Vector2(-24.5200005F, -270.752014F)); + builder.AddCubicBezier(new Vector2(-24.5200005F, -269.64801F), new Vector2(-24.7420006F, -268.682007F), new Vector2(-25.1860008F, -267.854004F)); + builder.AddCubicBezier(new Vector2(-25.6299992F, -267.026001F), new Vector2(-26.2479992F, -266.384003F), new Vector2(-27.0400009F, -265.928009F)); + builder.AddCubicBezier(new Vector2(-27.8320007F, -265.471985F), new Vector2(-28.7679996F, -265.243988F), new Vector2(-29.8479996F, -265.243988F)); + builder.AddCubicBezier(new Vector2(-30.9039993F, -265.243988F), new Vector2(-31.8460007F, -265.477997F), new Vector2(-32.6739998F, -265.946014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-26.9319992F, -262.976013F)); + builder.AddCubicBezier(new Vector2(-25.8999996F, -263.503998F), new Vector2(-25.0779991F, -264.242004F), new Vector2(-24.4659996F, -265.190002F)); + builder.AddCubicBezier(new Vector2(-23.8540001F, -266.138F), new Vector2(-23.5119991F, -267.235992F), new Vector2(-23.4400005F, -268.484009F)); + builder.AddLine(new Vector2(-23.4400005F, -273.019989F)); + builder.AddCubicBezier(new Vector2(-23.5119991F, -274.291992F), new Vector2(-23.8479996F, -275.402008F), new Vector2(-24.448F, -276.350006F)); + builder.AddCubicBezier(new Vector2(-25.0480003F, -277.298004F), new Vector2(-25.8700008F, -278.036011F), new Vector2(-26.9139996F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-27.9580002F, -279.09201F), new Vector2(-29.1520004F, -279.355988F), new Vector2(-30.4960003F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-32.0320015F, -279.355988F), new Vector2(-33.4239998F, -278.977997F), new Vector2(-34.6720009F, -278.221985F)); + builder.AddCubicBezier(new Vector2(-35.9199982F, -277.466003F), new Vector2(-36.8979988F, -276.446014F), new Vector2(-37.605999F, -275.161987F)); + builder.AddCubicBezier(new Vector2(-38.3139992F, -273.877991F), new Vector2(-38.6679993F, -272.420013F), new Vector2(-38.6679993F, -270.787994F)); + builder.AddCubicBezier(new Vector2(-38.6679993F, -269.156006F), new Vector2(-38.3079987F, -267.686005F), new Vector2(-37.5880013F, -266.377991F)); + builder.AddCubicBezier(new Vector2(-36.868F, -265.070007F), new Vector2(-35.8899994F, -264.044006F), new Vector2(-34.6539993F, -263.299988F)); + builder.AddCubicBezier(new Vector2(-33.4179993F, -262.556F), new Vector2(-32.0200005F, -262.18399F), new Vector2(-30.4599991F, -262.18399F)); + builder.AddCubicBezier(new Vector2(-29.1399994F, -262.18399F), new Vector2(-27.9640007F, -262.447998F), new Vector2(-26.9319992F, -262.976013F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-25.7619991F, -255.397995F)); + builder.AddCubicBezier(new Vector2(-24.4060001F, -256.082001F), new Vector2(-23.3500004F, -257.041992F), new Vector2(-22.5939999F, -258.278015F)); + builder.AddCubicBezier(new Vector2(-21.8379993F, -259.514008F), new Vector2(-21.4599991F, -260.947998F), new Vector2(-21.4599991F, -262.579987F)); + builder.AddLine(new Vector2(-21.4599991F, -278.996002F)); + builder.AddLine(new Vector2(-24.7000008F, -278.996002F)); + builder.AddLine(new Vector2(-24.7000008F, -274.496002F)); + builder.AddLine(new Vector2(-24.1240005F, -270.679993F)); + builder.AddLine(new Vector2(-24.7000008F, -266.828003F)); + builder.AddLine(new Vector2(-24.7000008F, -262.579987F)); + builder.AddCubicBezier(new Vector2(-24.7000008F, -261.019989F), new Vector2(-25.2159996F, -259.778015F), new Vector2(-26.2479992F, -258.854004F)); + builder.AddCubicBezier(new Vector2(-27.2800007F, -257.929993F), new Vector2(-28.6599998F, -257.467987F), new Vector2(-30.3880005F, -257.467987F)); + builder.AddCubicBezier(new Vector2(-31.7080002F, -257.467987F), new Vector2(-32.8479996F, -257.701996F), new Vector2(-33.8079987F, -258.170013F)); + builder.AddCubicBezier(new Vector2(-34.7680016F, -258.638F), new Vector2(-35.5960007F, -259.31601F), new Vector2(-36.2919998F, -260.20401F)); + builder.AddLine(new Vector2(-38.4160004F, -258.079987F)); + builder.AddCubicBezier(new Vector2(-37.5760002F, -256.903992F), new Vector2(-36.4840012F, -255.992004F), new Vector2(-35.1399994F, -255.343994F)); + builder.AddCubicBezier(new Vector2(-33.7960014F, -254.695999F), new Vector2(-32.2360001F, -254.371994F), new Vector2(-30.4599991F, -254.371994F)); + builder.AddCubicBezier(new Vector2(-28.684F, -254.371994F), new Vector2(-27.118F, -254.714005F), new Vector2(-25.7619991F, -255.397995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0672() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-54.0400009F, -261.895996F)); + builder.AddLine(new Vector2(-54.0400009F, -278.996002F)); + builder.AddLine(new Vector2(-57.2799988F, -278.996002F)); + builder.AddLine(new Vector2(-57.2799988F, -261.895996F)); + builder.AddLine(new Vector2(-54.0400009F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-41.9440002F, -261.895996F)); + builder.AddLine(new Vector2(-41.9440002F, -272.515991F)); + builder.AddCubicBezier(new Vector2(-41.9440002F, -273.691986F), new Vector2(-42.2319984F, -274.802002F), new Vector2(-42.8079987F, -275.846008F)); + builder.AddCubicBezier(new Vector2(-43.3839989F, -276.890015F), new Vector2(-44.1699982F, -277.735992F), new Vector2(-45.1660004F, -278.384003F)); + builder.AddCubicBezier(new Vector2(-46.1619987F, -279.032013F), new Vector2(-47.3079987F, -279.355988F), new Vector2(-48.6040001F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-49.9000015F, -279.355988F), new Vector2(-51.0639992F, -279.062012F), new Vector2(-52.0960007F, -278.473999F)); + builder.AddCubicBezier(new Vector2(-53.1279984F, -277.885986F), new Vector2(-53.9319992F, -277.088013F), new Vector2(-54.5079994F, -276.079987F)); + builder.AddCubicBezier(new Vector2(-55.0839996F, -275.071991F), new Vector2(-55.3720016F, -273.920013F), new Vector2(-55.3720016F, -272.623993F)); + builder.AddLine(new Vector2(-54.0400009F, -271.868011F)); + builder.AddCubicBezier(new Vector2(-54.0400009F, -272.731995F), new Vector2(-53.8479996F, -273.5F), new Vector2(-53.4640007F, -274.171997F)); + builder.AddCubicBezier(new Vector2(-53.0800018F, -274.843994F), new Vector2(-52.5519981F, -275.372009F), new Vector2(-51.8800011F, -275.756012F)); + builder.AddCubicBezier(new Vector2(-51.2080002F, -276.140015F), new Vector2(-50.4399986F, -276.332001F), new Vector2(-49.5760002F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-48.2799988F, -276.332001F), new Vector2(-47.2299995F, -275.911987F), new Vector2(-46.4259987F, -275.071991F)); + builder.AddCubicBezier(new Vector2(-45.6220016F, -274.231995F), new Vector2(-45.2200012F, -273.164001F), new Vector2(-45.2200012F, -271.868011F)); + builder.AddLine(new Vector2(-45.2200012F, -261.895996F)); + builder.AddLine(new Vector2(-41.9440002F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0673() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-62.2120018F, -283.01001F)); + builder.AddCubicBezier(new Vector2(-61.8279991F, -283.406006F), new Vector2(-61.6360016F, -283.903992F), new Vector2(-61.6360016F, -284.503998F)); + builder.AddCubicBezier(new Vector2(-61.6360016F, -285.079987F), new Vector2(-61.8279991F, -285.56601F), new Vector2(-62.2120018F, -285.962006F)); + builder.AddCubicBezier(new Vector2(-62.5960007F, -286.358002F), new Vector2(-63.0880013F, -286.556F), new Vector2(-63.6879997F, -286.556F)); + builder.AddCubicBezier(new Vector2(-64.288002F, -286.556F), new Vector2(-64.7799988F, -286.358002F), new Vector2(-65.1640015F, -285.962006F)); + builder.AddCubicBezier(new Vector2(-65.5479965F, -285.56601F), new Vector2(-65.7399979F, -285.079987F), new Vector2(-65.7399979F, -284.503998F)); + builder.AddCubicBezier(new Vector2(-65.7399979F, -283.903992F), new Vector2(-65.5479965F, -283.406006F), new Vector2(-65.1640015F, -283.01001F)); + builder.AddCubicBezier(new Vector2(-64.7799988F, -282.614014F), new Vector2(-64.288002F, -282.415985F), new Vector2(-63.6879997F, -282.415985F)); + builder.AddCubicBezier(new Vector2(-63.0880013F, -282.415985F), new Vector2(-62.5960007F, -282.614014F), new Vector2(-62.2120018F, -283.01001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-62.0680008F, -261.895996F)); + builder.AddLine(new Vector2(-62.0680008F, -278.996002F)); + builder.AddLine(new Vector2(-65.3440018F, -278.996002F)); + builder.AddLine(new Vector2(-65.3440018F, -261.895996F)); + builder.AddLine(new Vector2(-62.0680008F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0674() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-70.0960007F, -261.895996F)); + builder.AddLine(new Vector2(-70.0960007F, -287.600006F)); + builder.AddLine(new Vector2(-73.3359985F, -287.600006F)); + builder.AddLine(new Vector2(-73.3359985F, -261.895996F)); + builder.AddLine(new Vector2(-70.0960007F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0675() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-78.0879974F, -261.895996F)); + builder.AddLine(new Vector2(-78.0879974F, -287.600006F)); + builder.AddLine(new Vector2(-81.3280029F, -287.600006F)); + builder.AddLine(new Vector2(-81.3280029F, -261.895996F)); + builder.AddLine(new Vector2(-78.0879974F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0676() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-86.2600021F, -283.01001F)); + builder.AddCubicBezier(new Vector2(-85.8759995F, -283.406006F), new Vector2(-85.6839981F, -283.903992F), new Vector2(-85.6839981F, -284.503998F)); + builder.AddCubicBezier(new Vector2(-85.6839981F, -285.079987F), new Vector2(-85.8759995F, -285.56601F), new Vector2(-86.2600021F, -285.962006F)); + builder.AddCubicBezier(new Vector2(-86.6439972F, -286.358002F), new Vector2(-87.1360016F, -286.556F), new Vector2(-87.7360001F, -286.556F)); + builder.AddCubicBezier(new Vector2(-88.3359985F, -286.556F), new Vector2(-88.8280029F, -286.358002F), new Vector2(-89.211998F, -285.962006F)); + builder.AddCubicBezier(new Vector2(-89.5960007F, -285.56601F), new Vector2(-89.788002F, -285.079987F), new Vector2(-89.788002F, -284.503998F)); + builder.AddCubicBezier(new Vector2(-89.788002F, -283.903992F), new Vector2(-89.5960007F, -283.406006F), new Vector2(-89.211998F, -283.01001F)); + builder.AddCubicBezier(new Vector2(-88.8280029F, -282.614014F), new Vector2(-88.3359985F, -282.415985F), new Vector2(-87.7360001F, -282.415985F)); + builder.AddCubicBezier(new Vector2(-87.1360016F, -282.415985F), new Vector2(-86.6439972F, -282.614014F), new Vector2(-86.2600021F, -283.01001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-86.1159973F, -261.895996F)); + builder.AddLine(new Vector2(-86.1159973F, -278.996002F)); + builder.AddLine(new Vector2(-89.3919983F, -278.996002F)); + builder.AddLine(new Vector2(-89.3919983F, -261.895996F)); + builder.AddLine(new Vector2(-86.1159973F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0677() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-103.431999F, -261.895996F)); + builder.AddLine(new Vector2(-103.431999F, -287.600006F)); + builder.AddLine(new Vector2(-106.671997F, -287.600006F)); + builder.AddLine(new Vector2(-106.671997F, -261.895996F)); + builder.AddLine(new Vector2(-103.431999F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-91.552002F, -261.895996F)); + builder.AddLine(new Vector2(-100.552002F, -271.652008F)); + builder.AddLine(new Vector2(-100.695999F, -269.779999F)); + builder.AddLine(new Vector2(-91.8759995F, -278.996002F)); + builder.AddLine(new Vector2(-95.8359985F, -278.996002F)); + builder.AddLine(new Vector2(-103.720001F, -270.644012F)); + builder.AddLine(new Vector2(-95.7279968F, -261.895996F)); + builder.AddLine(new Vector2(-91.552002F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0678() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-121.720001F, -262.291992F)); + builder.AddCubicBezier(new Vector2(-120.543999F, -262.79599F), new Vector2(-119.536003F, -263.528015F), new Vector2(-118.695999F, -264.488007F)); + builder.AddLine(new Vector2(-120.783997F, -266.612F)); + builder.AddCubicBezier(new Vector2(-121.360001F, -265.940002F), new Vector2(-122.050003F, -265.436005F), new Vector2(-122.853996F, -265.100006F)); + builder.AddCubicBezier(new Vector2(-123.657997F, -264.764008F), new Vector2(-124.540001F, -264.596008F), new Vector2(-125.5F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-126.652F, -264.596008F), new Vector2(-127.671997F, -264.84201F), new Vector2(-128.559998F, -265.334015F)); + builder.AddCubicBezier(new Vector2(-129.447998F, -265.825989F), new Vector2(-130.132004F, -266.522003F), new Vector2(-130.612F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-131.091995F, -268.321991F), new Vector2(-131.332001F, -269.372009F), new Vector2(-131.332001F, -270.571991F)); + builder.AddCubicBezier(new Vector2(-131.332001F, -271.747986F), new Vector2(-131.104004F, -272.768005F), new Vector2(-130.647995F, -273.631989F)); + builder.AddCubicBezier(new Vector2(-130.192001F, -274.496002F), new Vector2(-129.544006F, -275.167999F), new Vector2(-128.703995F, -275.64801F)); + builder.AddCubicBezier(new Vector2(-127.863998F, -276.127991F), new Vector2(-126.891998F, -276.368011F), new Vector2(-125.788002F, -276.368011F)); + builder.AddCubicBezier(new Vector2(-124.732002F, -276.368011F), new Vector2(-123.832001F, -276.145996F), new Vector2(-123.087997F, -275.701996F)); + builder.AddCubicBezier(new Vector2(-122.344002F, -275.257996F), new Vector2(-121.767998F, -274.634003F), new Vector2(-121.360001F, -273.829987F)); + builder.AddCubicBezier(new Vector2(-120.952003F, -273.026001F), new Vector2(-120.748001F, -272.048004F), new Vector2(-120.748001F, -270.895996F)); + builder.AddLine(new Vector2(-119.559998F, -271.940002F)); + builder.AddLine(new Vector2(-132.268005F, -271.940002F)); + builder.AddLine(new Vector2(-132.268005F, -269.23999F)); + builder.AddLine(new Vector2(-117.832001F, -269.23999F)); + builder.AddCubicBezier(new Vector2(-117.760002F, -269.575989F), new Vector2(-117.711998F, -269.881989F), new Vector2(-117.688004F, -270.15799F)); + builder.AddCubicBezier(new Vector2(-117.664001F, -270.43399F), new Vector2(-117.652F, -270.691986F), new Vector2(-117.652F, -270.932007F)); + builder.AddCubicBezier(new Vector2(-117.652F, -272.563995F), new Vector2(-117.994003F, -274.015991F), new Vector2(-118.678001F, -275.287994F)); + builder.AddCubicBezier(new Vector2(-119.362F, -276.559998F), new Vector2(-120.316002F, -277.556F), new Vector2(-121.540001F, -278.276001F)); + builder.AddCubicBezier(new Vector2(-122.764F, -278.996002F), new Vector2(-124.155998F, -279.355988F), new Vector2(-125.716003F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-127.372002F, -279.355988F), new Vector2(-128.865997F, -278.966003F), new Vector2(-130.197998F, -278.186005F)); + builder.AddCubicBezier(new Vector2(-131.529999F, -277.406006F), new Vector2(-132.585999F, -276.343994F), new Vector2(-133.365997F, -275F)); + builder.AddCubicBezier(new Vector2(-134.145996F, -273.656006F), new Vector2(-134.535995F, -272.144012F), new Vector2(-134.535995F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-134.535995F, -268.76001F), new Vector2(-134.139999F, -267.235992F), new Vector2(-133.348007F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-132.556F, -264.548004F), new Vector2(-131.481995F, -263.485992F), new Vector2(-130.126007F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-128.770004F, -261.925995F), new Vector2(-127.227997F, -261.536011F), new Vector2(-125.5F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-124.155998F, -261.536011F), new Vector2(-122.896004F, -261.787994F), new Vector2(-121.720001F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0679() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-149.908005F, -261.895996F)); + builder.AddLine(new Vector2(-149.908005F, -287.600006F)); + builder.AddLine(new Vector2(-153.147995F, -287.600006F)); + builder.AddLine(new Vector2(-153.147995F, -261.895996F)); + builder.AddLine(new Vector2(-149.908005F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-137.811996F, -261.895996F)); + builder.AddLine(new Vector2(-137.811996F, -272.515991F)); + builder.AddCubicBezier(new Vector2(-137.811996F, -273.859985F), new Vector2(-138.100006F, -275.048004F), new Vector2(-138.675995F, -276.079987F)); + builder.AddCubicBezier(new Vector2(-139.251999F, -277.112F), new Vector2(-140.037994F, -277.915985F), new Vector2(-141.033997F, -278.492004F)); + builder.AddCubicBezier(new Vector2(-142.029999F, -279.067993F), new Vector2(-143.175995F, -279.355988F), new Vector2(-144.472F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-145.768005F, -279.355988F), new Vector2(-146.932007F, -279.062012F), new Vector2(-147.964005F, -278.473999F)); + builder.AddCubicBezier(new Vector2(-148.996002F, -277.885986F), new Vector2(-149.800003F, -277.088013F), new Vector2(-150.376007F, -276.079987F)); + builder.AddCubicBezier(new Vector2(-150.951996F, -275.071991F), new Vector2(-151.240005F, -273.920013F), new Vector2(-151.240005F, -272.623993F)); + builder.AddLine(new Vector2(-149.908005F, -271.868011F)); + builder.AddCubicBezier(new Vector2(-149.908005F, -272.731995F), new Vector2(-149.716003F, -273.5F), new Vector2(-149.332001F, -274.171997F)); + builder.AddCubicBezier(new Vector2(-148.947998F, -274.843994F), new Vector2(-148.419998F, -275.372009F), new Vector2(-147.748001F, -275.756012F)); + builder.AddCubicBezier(new Vector2(-147.076004F, -276.140015F), new Vector2(-146.307999F, -276.332001F), new Vector2(-145.444F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-144.147995F, -276.332001F), new Vector2(-143.098007F, -275.911987F), new Vector2(-142.294006F, -275.071991F)); + builder.AddCubicBezier(new Vector2(-141.490005F, -274.231995F), new Vector2(-141.087997F, -273.164001F), new Vector2(-141.087997F, -271.868011F)); + builder.AddLine(new Vector2(-141.087997F, -261.895996F)); + builder.AddLine(new Vector2(-137.811996F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0680() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-156.315994F, -276.044006F)); + builder.AddLine(new Vector2(-156.315994F, -278.996002F)); + builder.AddLine(new Vector2(-167.979996F, -278.996002F)); + builder.AddLine(new Vector2(-167.979996F, -276.044006F)); + builder.AddLine(new Vector2(-156.315994F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-160.528F, -261.895996F)); + builder.AddLine(new Vector2(-160.528F, -286.160004F)); + builder.AddLine(new Vector2(-163.768005F, -286.160004F)); + builder.AddLine(new Vector2(-163.768005F, -261.895996F)); + builder.AddLine(new Vector2(-160.528F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0681() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-178.563995F, -287.600006F)); + builder.AddLine(new Vector2(-181.839996F, -287.600006F)); + builder.AddLine(new Vector2(-181.839996F, -274.820007F)); + builder.AddLine(new Vector2(-181.227997F, -270.679993F)); + builder.AddLine(new Vector2(-181.839996F, -266.503998F)); + builder.AddLine(new Vector2(-181.839996F, -261.895996F)); + builder.AddLine(new Vector2(-178.563995F, -261.895996F)); + builder.AddLine(new Vector2(-178.563995F, -287.600006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-189.886002F, -265.334015F)); + builder.AddCubicBezier(new Vector2(-190.714005F, -265.825989F), new Vector2(-191.362F, -266.515991F), new Vector2(-191.830002F, -267.403992F)); + builder.AddCubicBezier(new Vector2(-192.298004F, -268.291992F), new Vector2(-192.531998F, -269.312012F), new Vector2(-192.531998F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-192.531998F, -271.615997F), new Vector2(-192.298004F, -272.630005F), new Vector2(-191.830002F, -273.506012F)); + builder.AddCubicBezier(new Vector2(-191.362F, -274.381989F), new Vector2(-190.720001F, -275.06601F), new Vector2(-189.904007F, -275.558014F)); + builder.AddCubicBezier(new Vector2(-189.087997F, -276.049988F), new Vector2(-188.139999F, -276.29599F), new Vector2(-187.059998F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-185.979996F, -276.29599F), new Vector2(-185.031998F, -276.044006F), new Vector2(-184.216003F, -275.540009F)); + builder.AddCubicBezier(new Vector2(-183.399994F, -275.036011F), new Vector2(-182.764008F, -274.346008F), new Vector2(-182.307999F, -273.470001F)); + builder.AddCubicBezier(new Vector2(-181.852005F, -272.593994F), new Vector2(-181.623993F, -271.579987F), new Vector2(-181.623993F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-181.623993F, -269.299988F), new Vector2(-181.852005F, -268.298004F), new Vector2(-182.307999F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-182.764008F, -266.54599F), new Vector2(-183.399994F, -265.855988F), new Vector2(-184.216003F, -265.35199F)); + builder.AddCubicBezier(new Vector2(-185.031998F, -264.847992F), new Vector2(-185.979996F, -264.596008F), new Vector2(-187.059998F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-188.115997F, -264.596008F), new Vector2(-189.057999F, -264.84201F), new Vector2(-189.886002F, -265.334015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-184.072006F, -262.346008F)); + builder.AddCubicBezier(new Vector2(-183.039993F, -262.885986F), new Vector2(-182.212006F, -263.635986F), new Vector2(-181.587997F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-180.964005F, -265.556F), new Vector2(-180.615997F, -266.64801F), new Vector2(-180.544006F, -267.872009F)); + builder.AddLine(new Vector2(-180.544006F, -273.019989F)); + builder.AddCubicBezier(new Vector2(-180.615997F, -274.268005F), new Vector2(-180.970001F, -275.365997F), new Vector2(-181.606003F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-182.242004F, -277.261993F), new Vector2(-183.076004F, -278.006012F), new Vector2(-184.108002F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-185.139999F, -279.085999F), new Vector2(-186.304001F, -279.355988F), new Vector2(-187.600006F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-189.160004F, -279.355988F), new Vector2(-190.563995F, -278.959991F), new Vector2(-191.811996F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-193.059998F, -277.376007F), new Vector2(-194.050003F, -276.308014F), new Vector2(-194.781998F, -274.963989F)); + builder.AddCubicBezier(new Vector2(-195.514008F, -273.619995F), new Vector2(-195.880005F, -272.108002F), new Vector2(-195.880005F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-195.880005F, -268.747986F), new Vector2(-195.514008F, -267.235992F), new Vector2(-194.781998F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-194.050003F, -264.548004F), new Vector2(-193.059998F, -263.485992F), new Vector2(-191.811996F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-190.563995F, -261.925995F), new Vector2(-189.160004F, -261.536011F), new Vector2(-187.600006F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-186.279999F, -261.536011F), new Vector2(-185.104004F, -261.806F), new Vector2(-184.072006F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0682() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-199.731995F, -283.01001F)); + builder.AddCubicBezier(new Vector2(-199.348007F, -283.406006F), new Vector2(-199.156006F, -283.903992F), new Vector2(-199.156006F, -284.503998F)); + builder.AddCubicBezier(new Vector2(-199.156006F, -285.079987F), new Vector2(-199.348007F, -285.56601F), new Vector2(-199.731995F, -285.962006F)); + builder.AddCubicBezier(new Vector2(-200.115997F, -286.358002F), new Vector2(-200.608002F, -286.556F), new Vector2(-201.207993F, -286.556F)); + builder.AddCubicBezier(new Vector2(-201.807999F, -286.556F), new Vector2(-202.300003F, -286.358002F), new Vector2(-202.684006F, -285.962006F)); + builder.AddCubicBezier(new Vector2(-203.067993F, -285.56601F), new Vector2(-203.259995F, -285.079987F), new Vector2(-203.259995F, -284.503998F)); + builder.AddCubicBezier(new Vector2(-203.259995F, -283.903992F), new Vector2(-203.067993F, -283.406006F), new Vector2(-202.684006F, -283.01001F)); + builder.AddCubicBezier(new Vector2(-202.300003F, -282.614014F), new Vector2(-201.807999F, -282.415985F), new Vector2(-201.207993F, -282.415985F)); + builder.AddCubicBezier(new Vector2(-200.608002F, -282.415985F), new Vector2(-200.115997F, -282.614014F), new Vector2(-199.731995F, -283.01001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-199.587997F, -261.895996F)); + builder.AddLine(new Vector2(-199.587997F, -278.996002F)); + builder.AddLine(new Vector2(-202.863998F, -278.996002F)); + builder.AddLine(new Vector2(-202.863998F, -261.895996F)); + builder.AddLine(new Vector2(-199.587997F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0683() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-207.255997F, -261.895996F)); + builder.AddLine(new Vector2(-207.255997F, -272.876007F)); + builder.AddCubicBezier(new Vector2(-207.255997F, -274.220001F), new Vector2(-207.550003F, -275.372009F), new Vector2(-208.138F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-208.725998F, -277.291992F), new Vector2(-209.511993F, -278.036011F), new Vector2(-210.496002F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-211.479996F, -279.09201F), new Vector2(-212.595993F, -279.355988F), new Vector2(-213.843994F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-215.044006F, -279.355988F), new Vector2(-216.147995F, -279.085999F), new Vector2(-217.156006F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-218.164001F, -278.006012F), new Vector2(-218.985992F, -277.261993F), new Vector2(-219.621994F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-220.257996F, -275.365997F), new Vector2(-220.612F, -274.231995F), new Vector2(-220.684006F, -272.911987F)); + builder.AddLine(new Vector2(-218.848007F, -272.227997F)); + builder.AddCubicBezier(new Vector2(-218.848007F, -273.09201F), new Vector2(-218.656006F, -273.824005F), new Vector2(-218.272003F, -274.424011F)); + builder.AddCubicBezier(new Vector2(-217.888F, -275.023987F), new Vector2(-217.378006F, -275.492004F), new Vector2(-216.742004F, -275.828003F)); + builder.AddCubicBezier(new Vector2(-216.106003F, -276.164001F), new Vector2(-215.391998F, -276.332001F), new Vector2(-214.600006F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-213.447998F, -276.332001F), new Vector2(-212.481995F, -275.966003F), new Vector2(-211.701996F, -275.234009F)); + builder.AddCubicBezier(new Vector2(-210.921997F, -274.502014F), new Vector2(-210.531998F, -273.5F), new Vector2(-210.531998F, -272.227997F)); + builder.AddLine(new Vector2(-210.531998F, -261.895996F)); + builder.AddLine(new Vector2(-207.255997F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-218.848007F, -261.895996F)); + builder.AddLine(new Vector2(-218.848007F, -272.911987F)); + builder.AddCubicBezier(new Vector2(-218.848007F, -274.231995F), new Vector2(-219.130005F, -275.372009F), new Vector2(-219.694F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-220.257996F, -277.291992F), new Vector2(-221.026001F, -278.036011F), new Vector2(-221.998001F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-222.970001F, -279.09201F), new Vector2(-224.056F, -279.355988F), new Vector2(-225.255997F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-226.479996F, -279.355988F), new Vector2(-227.584F, -279.085999F), new Vector2(-228.567993F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-229.552002F, -278.006012F), new Vector2(-230.326004F, -277.256012F), new Vector2(-230.889999F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-231.453995F, -275.335999F), new Vector2(-231.735992F, -274.208008F), new Vector2(-231.735992F, -272.911987F)); + builder.AddLine(new Vector2(-230.404007F, -272.227997F)); + builder.AddCubicBezier(new Vector2(-230.404007F, -273.09201F), new Vector2(-230.212006F, -273.824005F), new Vector2(-229.828003F, -274.424011F)); + builder.AddCubicBezier(new Vector2(-229.444F, -275.023987F), new Vector2(-228.940002F, -275.492004F), new Vector2(-228.315994F, -275.828003F)); + builder.AddCubicBezier(new Vector2(-227.692001F, -276.164001F), new Vector2(-226.983994F, -276.332001F), new Vector2(-226.192001F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-225.016006F, -276.332001F), new Vector2(-224.037994F, -275.966003F), new Vector2(-223.257996F, -275.234009F)); + builder.AddCubicBezier(new Vector2(-222.477997F, -274.502014F), new Vector2(-222.087997F, -273.5F), new Vector2(-222.087997F, -272.227997F)); + builder.AddLine(new Vector2(-222.087997F, -261.895996F)); + builder.AddLine(new Vector2(-218.848007F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-230.404007F, -261.895996F)); + builder.AddLine(new Vector2(-230.404007F, -278.996002F)); + builder.AddLine(new Vector2(-233.643997F, -278.996002F)); + builder.AddLine(new Vector2(-233.643997F, -261.895996F)); + builder.AddLine(new Vector2(-230.404007F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0684() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-238.360001F, -261.895996F)); + builder.AddLine(new Vector2(-238.360001F, -278.996002F)); + builder.AddLine(new Vector2(-241.636002F, -278.996002F)); + builder.AddLine(new Vector2(-241.636002F, -274.820007F)); + builder.AddLine(new Vector2(-241.024002F, -270.679993F)); + builder.AddLine(new Vector2(-241.636002F, -266.503998F)); + builder.AddLine(new Vector2(-241.636002F, -261.895996F)); + builder.AddLine(new Vector2(-238.360001F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-249.664001F, -265.35199F)); + builder.AddCubicBezier(new Vector2(-250.503998F, -265.855988F), new Vector2(-251.158005F, -266.54599F), new Vector2(-251.626007F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-252.093994F, -268.298004F), new Vector2(-252.328003F, -269.312012F), new Vector2(-252.328003F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-252.328003F, -271.59201F), new Vector2(-252.093994F, -272.593994F), new Vector2(-251.626007F, -273.470001F)); + builder.AddCubicBezier(new Vector2(-251.158005F, -274.346008F), new Vector2(-250.509995F, -275.036011F), new Vector2(-249.682007F, -275.540009F)); + builder.AddCubicBezier(new Vector2(-248.854004F, -276.044006F), new Vector2(-247.899994F, -276.29599F), new Vector2(-246.820007F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-245.740005F, -276.29599F), new Vector2(-244.798004F, -276.049988F), new Vector2(-243.994003F, -275.558014F)); + builder.AddCubicBezier(new Vector2(-243.190002F, -275.06601F), new Vector2(-242.559998F, -274.376007F), new Vector2(-242.104004F, -273.488007F)); + builder.AddCubicBezier(new Vector2(-241.647995F, -272.600006F), new Vector2(-241.419998F, -271.579987F), new Vector2(-241.419998F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-241.419998F, -268.723999F), new Vector2(-241.912003F, -267.325989F), new Vector2(-242.895996F, -266.234009F)); + builder.AddCubicBezier(new Vector2(-243.880005F, -265.141998F), new Vector2(-245.175995F, -264.596008F), new Vector2(-246.783997F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-247.863998F, -264.596008F), new Vector2(-248.824005F, -264.847992F), new Vector2(-249.664001F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-243.832001F, -262.346008F)); + builder.AddCubicBezier(new Vector2(-242.800003F, -262.885986F), new Vector2(-241.977997F, -263.635986F), new Vector2(-241.365997F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-240.753998F, -265.556F), new Vector2(-240.412003F, -266.64801F), new Vector2(-240.339996F, -267.872009F)); + builder.AddLine(new Vector2(-240.339996F, -273.019989F)); + builder.AddCubicBezier(new Vector2(-240.412003F, -274.268005F), new Vector2(-240.759995F, -275.365997F), new Vector2(-241.384003F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-242.007996F, -277.261993F), new Vector2(-242.830002F, -278.006012F), new Vector2(-243.850006F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-244.869995F, -279.085999F), new Vector2(-246.028F, -279.355988F), new Vector2(-247.324005F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-248.908005F, -279.355988F), new Vector2(-250.330002F, -278.959991F), new Vector2(-251.589996F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-252.850006F, -277.376007F), new Vector2(-253.845993F, -276.308014F), new Vector2(-254.578003F, -274.963989F)); + builder.AddCubicBezier(new Vector2(-255.309998F, -273.619995F), new Vector2(-255.675995F, -272.108002F), new Vector2(-255.675995F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-255.675995F, -268.747986F), new Vector2(-255.309998F, -267.235992F), new Vector2(-254.578003F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-253.845993F, -264.548004F), new Vector2(-252.850006F, -263.485992F), new Vector2(-251.589996F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-250.330002F, -261.925995F), new Vector2(-248.908005F, -261.536011F), new Vector2(-247.324005F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-246.028F, -261.536011F), new Vector2(-244.863998F, -261.806F), new Vector2(-243.832001F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0685() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-269.932007F, -256.928009F)); + builder.AddLine(new Vector2(-267.519989F, -261.391998F)); + builder.AddCubicBezier(new Vector2(-267.208008F, -261.992004F), new Vector2(-266.997986F, -262.477997F), new Vector2(-266.890015F, -262.850006F)); + builder.AddCubicBezier(new Vector2(-266.782013F, -263.221985F), new Vector2(-266.727997F, -263.540009F), new Vector2(-266.727997F, -263.803986F)); + builder.AddCubicBezier(new Vector2(-266.727997F, -264.5F), new Vector2(-266.967987F, -265.082001F), new Vector2(-267.447998F, -265.549988F)); + builder.AddCubicBezier(new Vector2(-267.928009F, -266.018005F), new Vector2(-268.480011F, -266.252014F), new Vector2(-269.104004F, -266.252014F)); + builder.AddCubicBezier(new Vector2(-269.799988F, -266.252014F), new Vector2(-270.376007F, -266.018005F), new Vector2(-270.832001F, -265.549988F)); + builder.AddCubicBezier(new Vector2(-271.287994F, -265.082001F), new Vector2(-271.515991F, -264.5F), new Vector2(-271.515991F, -263.803986F)); + builder.AddCubicBezier(new Vector2(-271.515991F, -263.179993F), new Vector2(-271.306F, -262.65799F), new Vector2(-270.885986F, -262.238007F)); + builder.AddCubicBezier(new Vector2(-270.466003F, -261.817993F), new Vector2(-270.003998F, -261.608002F), new Vector2(-269.5F, -261.608002F)); + builder.AddCubicBezier(new Vector2(-269.26001F, -261.608002F), new Vector2(-269.044006F, -261.691986F), new Vector2(-268.85199F, -261.859985F)); + builder.AddCubicBezier(new Vector2(-268.660004F, -262.028015F), new Vector2(-268.503998F, -262.243988F), new Vector2(-268.384003F, -262.507996F)); + builder.AddLine(new Vector2(-269.536011F, -262.220001F)); + builder.AddLine(new Vector2(-271.768005F, -257.936005F)); + builder.AddLine(new Vector2(-269.932007F, -256.928009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0686() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-273.891998F, -276.044006F)); + builder.AddLine(new Vector2(-273.891998F, -278.996002F)); + builder.AddLine(new Vector2(-285.556F, -278.996002F)); + builder.AddLine(new Vector2(-285.556F, -276.044006F)); + builder.AddLine(new Vector2(-273.891998F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-278.104004F, -261.895996F)); + builder.AddLine(new Vector2(-278.104004F, -286.160004F)); + builder.AddLine(new Vector2(-281.343994F, -286.160004F)); + builder.AddLine(new Vector2(-281.343994F, -261.895996F)); + builder.AddLine(new Vector2(-278.104004F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0687() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-300.243988F, -261.895996F)); + builder.AddLine(new Vector2(-300.243988F, -278.996002F)); + builder.AddLine(new Vector2(-303.484009F, -278.996002F)); + builder.AddLine(new Vector2(-303.484009F, -261.895996F)); + builder.AddLine(new Vector2(-300.243988F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-288.14801F, -261.895996F)); + builder.AddLine(new Vector2(-288.14801F, -272.515991F)); + builder.AddCubicBezier(new Vector2(-288.14801F, -273.691986F), new Vector2(-288.436005F, -274.802002F), new Vector2(-289.011993F, -275.846008F)); + builder.AddCubicBezier(new Vector2(-289.588013F, -276.890015F), new Vector2(-290.373993F, -277.735992F), new Vector2(-291.369995F, -278.384003F)); + builder.AddCubicBezier(new Vector2(-292.365997F, -279.032013F), new Vector2(-293.511993F, -279.355988F), new Vector2(-294.808014F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-296.104004F, -279.355988F), new Vector2(-297.268005F, -279.062012F), new Vector2(-298.299988F, -278.473999F)); + builder.AddCubicBezier(new Vector2(-299.332001F, -277.885986F), new Vector2(-300.135986F, -277.088013F), new Vector2(-300.712006F, -276.079987F)); + builder.AddCubicBezier(new Vector2(-301.287994F, -275.071991F), new Vector2(-301.575989F, -273.920013F), new Vector2(-301.575989F, -272.623993F)); + builder.AddLine(new Vector2(-300.243988F, -271.868011F)); + builder.AddCubicBezier(new Vector2(-300.243988F, -272.731995F), new Vector2(-300.052002F, -273.5F), new Vector2(-299.667999F, -274.171997F)); + builder.AddCubicBezier(new Vector2(-299.283997F, -274.843994F), new Vector2(-298.756012F, -275.372009F), new Vector2(-298.084015F, -275.756012F)); + builder.AddCubicBezier(new Vector2(-297.411987F, -276.140015F), new Vector2(-296.644012F, -276.332001F), new Vector2(-295.779999F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-294.484009F, -276.332001F), new Vector2(-293.43399F, -275.911987F), new Vector2(-292.630005F, -275.071991F)); + builder.AddCubicBezier(new Vector2(-291.825989F, -274.231995F), new Vector2(-291.424011F, -273.164001F), new Vector2(-291.424011F, -271.868011F)); + builder.AddLine(new Vector2(-291.424011F, -261.895996F)); + builder.AddLine(new Vector2(-288.14801F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0688() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-311.079987F, -262.291992F)); + builder.AddCubicBezier(new Vector2(-309.903992F, -262.79599F), new Vector2(-308.895996F, -263.528015F), new Vector2(-308.056F, -264.488007F)); + builder.AddLine(new Vector2(-310.144012F, -266.612F)); + builder.AddCubicBezier(new Vector2(-310.720001F, -265.940002F), new Vector2(-311.410004F, -265.436005F), new Vector2(-312.213989F, -265.100006F)); + builder.AddCubicBezier(new Vector2(-313.018005F, -264.764008F), new Vector2(-313.899994F, -264.596008F), new Vector2(-314.859985F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-316.011993F, -264.596008F), new Vector2(-317.032013F, -264.84201F), new Vector2(-317.920013F, -265.334015F)); + builder.AddCubicBezier(new Vector2(-318.808014F, -265.825989F), new Vector2(-319.492004F, -266.522003F), new Vector2(-319.971985F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-320.451996F, -268.321991F), new Vector2(-320.691986F, -269.372009F), new Vector2(-320.691986F, -270.571991F)); + builder.AddCubicBezier(new Vector2(-320.691986F, -271.747986F), new Vector2(-320.463989F, -272.768005F), new Vector2(-320.007996F, -273.631989F)); + builder.AddCubicBezier(new Vector2(-319.552002F, -274.496002F), new Vector2(-318.903992F, -275.167999F), new Vector2(-318.063995F, -275.64801F)); + builder.AddCubicBezier(new Vector2(-317.223999F, -276.127991F), new Vector2(-316.252014F, -276.368011F), new Vector2(-315.14801F, -276.368011F)); + builder.AddCubicBezier(new Vector2(-314.09201F, -276.368011F), new Vector2(-313.191986F, -276.145996F), new Vector2(-312.447998F, -275.701996F)); + builder.AddCubicBezier(new Vector2(-311.70401F, -275.257996F), new Vector2(-311.127991F, -274.634003F), new Vector2(-310.720001F, -273.829987F)); + builder.AddCubicBezier(new Vector2(-310.312012F, -273.026001F), new Vector2(-310.108002F, -272.048004F), new Vector2(-310.108002F, -270.895996F)); + builder.AddLine(new Vector2(-308.920013F, -271.940002F)); + builder.AddLine(new Vector2(-321.627991F, -271.940002F)); + builder.AddLine(new Vector2(-321.627991F, -269.23999F)); + builder.AddLine(new Vector2(-307.191986F, -269.23999F)); + builder.AddCubicBezier(new Vector2(-307.119995F, -269.575989F), new Vector2(-307.071991F, -269.881989F), new Vector2(-307.048004F, -270.15799F)); + builder.AddCubicBezier(new Vector2(-307.023987F, -270.43399F), new Vector2(-307.011993F, -270.691986F), new Vector2(-307.011993F, -270.932007F)); + builder.AddCubicBezier(new Vector2(-307.011993F, -272.563995F), new Vector2(-307.354004F, -274.015991F), new Vector2(-308.037994F, -275.287994F)); + builder.AddCubicBezier(new Vector2(-308.721985F, -276.559998F), new Vector2(-309.675995F, -277.556F), new Vector2(-310.899994F, -278.276001F)); + builder.AddCubicBezier(new Vector2(-312.123993F, -278.996002F), new Vector2(-313.515991F, -279.355988F), new Vector2(-315.075989F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-316.731995F, -279.355988F), new Vector2(-318.226013F, -278.966003F), new Vector2(-319.558014F, -278.186005F)); + builder.AddCubicBezier(new Vector2(-320.890015F, -277.406006F), new Vector2(-321.946014F, -276.343994F), new Vector2(-322.726013F, -275F)); + builder.AddCubicBezier(new Vector2(-323.506012F, -273.656006F), new Vector2(-323.895996F, -272.144012F), new Vector2(-323.895996F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-323.895996F, -268.76001F), new Vector2(-323.5F, -267.235992F), new Vector2(-322.708008F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-321.915985F, -264.548004F), new Vector2(-320.84201F, -263.485992F), new Vector2(-319.485992F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-318.130005F, -261.925995F), new Vector2(-316.588013F, -261.536011F), new Vector2(-314.859985F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-313.515991F, -261.536011F), new Vector2(-312.256012F, -261.787994F), new Vector2(-311.079987F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0689() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-327.171997F, -261.895996F)); + builder.AddLine(new Vector2(-327.171997F, -272.876007F)); + builder.AddCubicBezier(new Vector2(-327.171997F, -274.220001F), new Vector2(-327.466003F, -275.372009F), new Vector2(-328.053986F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-328.641998F, -277.291992F), new Vector2(-329.428009F, -278.036011F), new Vector2(-330.411987F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-331.395996F, -279.09201F), new Vector2(-332.511993F, -279.355988F), new Vector2(-333.76001F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-334.959991F, -279.355988F), new Vector2(-336.063995F, -279.085999F), new Vector2(-337.071991F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-338.079987F, -278.006012F), new Vector2(-338.902008F, -277.261993F), new Vector2(-339.537994F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-340.174011F, -275.365997F), new Vector2(-340.528015F, -274.231995F), new Vector2(-340.600006F, -272.911987F)); + builder.AddLine(new Vector2(-338.764008F, -272.227997F)); + builder.AddCubicBezier(new Vector2(-338.764008F, -273.09201F), new Vector2(-338.571991F, -273.824005F), new Vector2(-338.187988F, -274.424011F)); + builder.AddCubicBezier(new Vector2(-337.803986F, -275.023987F), new Vector2(-337.294006F, -275.492004F), new Vector2(-336.65799F, -275.828003F)); + builder.AddCubicBezier(new Vector2(-336.022003F, -276.164001F), new Vector2(-335.308014F, -276.332001F), new Vector2(-334.515991F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-333.364014F, -276.332001F), new Vector2(-332.39801F, -275.966003F), new Vector2(-331.618011F, -275.234009F)); + builder.AddCubicBezier(new Vector2(-330.838013F, -274.502014F), new Vector2(-330.447998F, -273.5F), new Vector2(-330.447998F, -272.227997F)); + builder.AddLine(new Vector2(-330.447998F, -261.895996F)); + builder.AddLine(new Vector2(-327.171997F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-338.764008F, -261.895996F)); + builder.AddLine(new Vector2(-338.764008F, -272.911987F)); + builder.AddCubicBezier(new Vector2(-338.764008F, -274.231995F), new Vector2(-339.04599F, -275.372009F), new Vector2(-339.609985F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-340.174011F, -277.291992F), new Vector2(-340.941986F, -278.036011F), new Vector2(-341.914001F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-342.885986F, -279.09201F), new Vector2(-343.971985F, -279.355988F), new Vector2(-345.171997F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-346.395996F, -279.355988F), new Vector2(-347.5F, -279.085999F), new Vector2(-348.484009F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-349.467987F, -278.006012F), new Vector2(-350.242004F, -277.256012F), new Vector2(-350.806F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-351.369995F, -275.335999F), new Vector2(-351.652008F, -274.208008F), new Vector2(-351.652008F, -272.911987F)); + builder.AddLine(new Vector2(-350.320007F, -272.227997F)); + builder.AddCubicBezier(new Vector2(-350.320007F, -273.09201F), new Vector2(-350.127991F, -273.824005F), new Vector2(-349.743988F, -274.424011F)); + builder.AddCubicBezier(new Vector2(-349.359985F, -275.023987F), new Vector2(-348.855988F, -275.492004F), new Vector2(-348.231995F, -275.828003F)); + builder.AddCubicBezier(new Vector2(-347.608002F, -276.164001F), new Vector2(-346.899994F, -276.332001F), new Vector2(-346.108002F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-344.932007F, -276.332001F), new Vector2(-343.95401F, -275.966003F), new Vector2(-343.174011F, -275.234009F)); + builder.AddCubicBezier(new Vector2(-342.394012F, -274.502014F), new Vector2(-342.003998F, -273.5F), new Vector2(-342.003998F, -272.227997F)); + builder.AddLine(new Vector2(-342.003998F, -261.895996F)); + builder.AddLine(new Vector2(-338.764008F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-350.320007F, -261.895996F)); + builder.AddLine(new Vector2(-350.320007F, -278.996002F)); + builder.AddLine(new Vector2(-353.559998F, -278.996002F)); + builder.AddLine(new Vector2(-353.559998F, -261.895996F)); + builder.AddLine(new Vector2(-350.320007F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0690() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-370.048004F, -261.895996F)); + builder.AddLine(new Vector2(-370.048004F, -278.996002F)); + builder.AddLine(new Vector2(-373.287994F, -278.996002F)); + builder.AddLine(new Vector2(-373.287994F, -261.895996F)); + builder.AddLine(new Vector2(-370.048004F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-357.951996F, -261.895996F)); + builder.AddLine(new Vector2(-357.951996F, -272.515991F)); + builder.AddCubicBezier(new Vector2(-357.951996F, -273.691986F), new Vector2(-358.23999F, -274.802002F), new Vector2(-358.81601F, -275.846008F)); + builder.AddCubicBezier(new Vector2(-359.391998F, -276.890015F), new Vector2(-360.178009F, -277.735992F), new Vector2(-361.174011F, -278.384003F)); + builder.AddCubicBezier(new Vector2(-362.170013F, -279.032013F), new Vector2(-363.31601F, -279.355988F), new Vector2(-364.612F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-365.90799F, -279.355988F), new Vector2(-367.071991F, -279.062012F), new Vector2(-368.104004F, -278.473999F)); + builder.AddCubicBezier(new Vector2(-369.135986F, -277.885986F), new Vector2(-369.940002F, -277.088013F), new Vector2(-370.515991F, -276.079987F)); + builder.AddCubicBezier(new Vector2(-371.09201F, -275.071991F), new Vector2(-371.380005F, -273.920013F), new Vector2(-371.380005F, -272.623993F)); + builder.AddLine(new Vector2(-370.048004F, -271.868011F)); + builder.AddCubicBezier(new Vector2(-370.048004F, -272.731995F), new Vector2(-369.855988F, -273.5F), new Vector2(-369.471985F, -274.171997F)); + builder.AddCubicBezier(new Vector2(-369.088013F, -274.843994F), new Vector2(-368.559998F, -275.372009F), new Vector2(-367.888F, -275.756012F)); + builder.AddCubicBezier(new Vector2(-367.216003F, -276.140015F), new Vector2(-366.447998F, -276.332001F), new Vector2(-365.584015F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-364.287994F, -276.332001F), new Vector2(-363.238007F, -275.911987F), new Vector2(-362.43399F, -275.071991F)); + builder.AddCubicBezier(new Vector2(-361.630005F, -274.231995F), new Vector2(-361.227997F, -273.164001F), new Vector2(-361.227997F, -271.868011F)); + builder.AddLine(new Vector2(-361.227997F, -261.895996F)); + builder.AddLine(new Vector2(-357.951996F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0691() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-383.403992F, -275.144012F)); + builder.AddCubicBezier(new Vector2(-382.635986F, -275.911987F), new Vector2(-381.652008F, -276.29599F), new Vector2(-380.451996F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-379.876007F, -276.29599F), new Vector2(-379.372009F, -276.212006F), new Vector2(-378.940002F, -276.044006F)); + builder.AddCubicBezier(new Vector2(-378.507996F, -275.876007F), new Vector2(-378.112F, -275.600006F), new Vector2(-377.752014F, -275.216003F)); + builder.AddLine(new Vector2(-375.627991F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-376.227997F, -278.108002F), new Vector2(-376.876007F, -278.605988F), new Vector2(-377.571991F, -278.906006F)); + builder.AddCubicBezier(new Vector2(-378.268005F, -279.205994F), new Vector2(-379.048004F, -279.355988F), new Vector2(-379.911987F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-381.808014F, -279.355988F), new Vector2(-383.26001F, -278.708008F), new Vector2(-384.268005F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-385.276001F, -276.115997F), new Vector2(-385.779999F, -274.376007F), new Vector2(-385.779999F, -272.191986F)); + builder.AddLine(new Vector2(-384.556F, -271.615997F)); + builder.AddCubicBezier(new Vector2(-384.556F, -273.200012F), new Vector2(-384.171997F, -274.376007F), new Vector2(-383.403992F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-384.556F, -261.895996F)); + builder.AddLine(new Vector2(-384.556F, -278.996002F)); + builder.AddLine(new Vector2(-387.79599F, -278.996002F)); + builder.AddLine(new Vector2(-387.79599F, -261.895996F)); + builder.AddLine(new Vector2(-384.556F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0692() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-395.391998F, -262.291992F)); + builder.AddCubicBezier(new Vector2(-394.216003F, -262.79599F), new Vector2(-393.208008F, -263.528015F), new Vector2(-392.368011F, -264.488007F)); + builder.AddLine(new Vector2(-394.455994F, -266.612F)); + builder.AddCubicBezier(new Vector2(-395.032013F, -265.940002F), new Vector2(-395.721985F, -265.436005F), new Vector2(-396.526001F, -265.100006F)); + builder.AddCubicBezier(new Vector2(-397.329987F, -264.764008F), new Vector2(-398.212006F, -264.596008F), new Vector2(-399.171997F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-400.324005F, -264.596008F), new Vector2(-401.343994F, -264.84201F), new Vector2(-402.231995F, -265.334015F)); + builder.AddCubicBezier(new Vector2(-403.119995F, -265.825989F), new Vector2(-403.803986F, -266.522003F), new Vector2(-404.283997F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-404.764008F, -268.321991F), new Vector2(-405.003998F, -269.372009F), new Vector2(-405.003998F, -270.571991F)); + builder.AddCubicBezier(new Vector2(-405.003998F, -271.747986F), new Vector2(-404.776001F, -272.768005F), new Vector2(-404.320007F, -273.631989F)); + builder.AddCubicBezier(new Vector2(-403.864014F, -274.496002F), new Vector2(-403.216003F, -275.167999F), new Vector2(-402.376007F, -275.64801F)); + builder.AddCubicBezier(new Vector2(-401.536011F, -276.127991F), new Vector2(-400.563995F, -276.368011F), new Vector2(-399.459991F, -276.368011F)); + builder.AddCubicBezier(new Vector2(-398.403992F, -276.368011F), new Vector2(-397.503998F, -276.145996F), new Vector2(-396.76001F, -275.701996F)); + builder.AddCubicBezier(new Vector2(-396.015991F, -275.257996F), new Vector2(-395.440002F, -274.634003F), new Vector2(-395.032013F, -273.829987F)); + builder.AddCubicBezier(new Vector2(-394.623993F, -273.026001F), new Vector2(-394.420013F, -272.048004F), new Vector2(-394.420013F, -270.895996F)); + builder.AddLine(new Vector2(-393.231995F, -271.940002F)); + builder.AddLine(new Vector2(-405.940002F, -271.940002F)); + builder.AddLine(new Vector2(-405.940002F, -269.23999F)); + builder.AddLine(new Vector2(-391.503998F, -269.23999F)); + builder.AddCubicBezier(new Vector2(-391.432007F, -269.575989F), new Vector2(-391.384003F, -269.881989F), new Vector2(-391.359985F, -270.15799F)); + builder.AddCubicBezier(new Vector2(-391.335999F, -270.43399F), new Vector2(-391.324005F, -270.691986F), new Vector2(-391.324005F, -270.932007F)); + builder.AddCubicBezier(new Vector2(-391.324005F, -272.563995F), new Vector2(-391.665985F, -274.015991F), new Vector2(-392.350006F, -275.287994F)); + builder.AddCubicBezier(new Vector2(-393.033997F, -276.559998F), new Vector2(-393.988007F, -277.556F), new Vector2(-395.212006F, -278.276001F)); + builder.AddCubicBezier(new Vector2(-396.436005F, -278.996002F), new Vector2(-397.828003F, -279.355988F), new Vector2(-399.388F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-401.044006F, -279.355988F), new Vector2(-402.537994F, -278.966003F), new Vector2(-403.869995F, -278.186005F)); + builder.AddCubicBezier(new Vector2(-405.201996F, -277.406006F), new Vector2(-406.257996F, -276.343994F), new Vector2(-407.037994F, -275F)); + builder.AddCubicBezier(new Vector2(-407.817993F, -273.656006F), new Vector2(-408.208008F, -272.144012F), new Vector2(-408.208008F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-408.208008F, -268.76001F), new Vector2(-407.812012F, -267.235992F), new Vector2(-407.019989F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-406.227997F, -264.548004F), new Vector2(-405.153992F, -263.485992F), new Vector2(-403.798004F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-402.441986F, -261.925995F), new Vector2(-400.899994F, -261.536011F), new Vector2(-399.171997F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-397.828003F, -261.536011F), new Vector2(-396.567993F, -261.787994F), new Vector2(-395.391998F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0693() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-417.063995F, -261.895996F)); + builder.AddLine(new Vector2(-409.216003F, -278.996002F)); + builder.AddLine(new Vector2(-412.671997F, -278.996002F)); + builder.AddLine(new Vector2(-419.007996F, -264.559998F)); + builder.AddLine(new Vector2(-416.920013F, -264.559998F)); + builder.AddLine(new Vector2(-423.220001F, -278.996002F)); + builder.AddLine(new Vector2(-426.820007F, -278.996002F)); + builder.AddLine(new Vector2(-418.971985F, -261.895996F)); + builder.AddLine(new Vector2(-417.063995F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0694() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-439.600006F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-440.440002F, -265.928009F), new Vector2(-441.100006F, -266.618011F), new Vector2(-441.579987F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-442.059998F, -268.369995F), new Vector2(-442.299988F, -269.372009F), new Vector2(-442.299988F, -270.5F)); + builder.AddCubicBezier(new Vector2(-442.299988F, -271.604004F), new Vector2(-442.059998F, -272.588013F), new Vector2(-441.579987F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-441.100006F, -274.31601F), new Vector2(-440.440002F, -274.993988F), new Vector2(-439.600006F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-438.76001F, -275.977997F), new Vector2(-437.812012F, -276.223999F), new Vector2(-436.756012F, -276.223999F)); + builder.AddCubicBezier(new Vector2(-435.652008F, -276.223999F), new Vector2(-434.686005F, -275.977997F), new Vector2(-433.858002F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-433.029999F, -274.993988F), new Vector2(-432.369995F, -274.31601F), new Vector2(-431.877991F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-431.385986F, -272.588013F), new Vector2(-431.140015F, -271.604004F), new Vector2(-431.140015F, -270.5F)); + builder.AddCubicBezier(new Vector2(-431.140015F, -269.372009F), new Vector2(-431.380005F, -268.369995F), new Vector2(-431.859985F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-432.339996F, -266.618011F), new Vector2(-433F, -265.928009F), new Vector2(-433.839996F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-434.679993F, -264.920013F), new Vector2(-435.652008F, -264.667999F), new Vector2(-436.756012F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-437.812012F, -264.667999F), new Vector2(-438.76001F, -264.920013F), new Vector2(-439.600006F, -265.424011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-432.201996F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-430.846008F, -263.515991F), new Vector2(-429.772003F, -264.589996F), new Vector2(-428.980011F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-428.187988F, -267.302002F), new Vector2(-427.791992F, -268.820007F), new Vector2(-427.791992F, -270.5F)); + builder.AddCubicBezier(new Vector2(-427.791992F, -272.156006F), new Vector2(-428.187988F, -273.656006F), new Vector2(-428.980011F, -275F)); + builder.AddCubicBezier(new Vector2(-429.772003F, -276.343994F), new Vector2(-430.846008F, -277.406006F), new Vector2(-432.201996F, -278.186005F)); + builder.AddCubicBezier(new Vector2(-433.558014F, -278.966003F), new Vector2(-435.075989F, -279.355988F), new Vector2(-436.756012F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-438.411987F, -279.355988F), new Vector2(-439.911987F, -278.959991F), new Vector2(-441.256012F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-442.600006F, -277.376007F), new Vector2(-443.667999F, -276.313995F), new Vector2(-444.459991F, -274.981995F)); + builder.AddCubicBezier(new Vector2(-445.252014F, -273.649994F), new Vector2(-445.64801F, -272.156006F), new Vector2(-445.64801F, -270.5F)); + builder.AddCubicBezier(new Vector2(-445.64801F, -268.820007F), new Vector2(-445.252014F, -267.302002F), new Vector2(-444.459991F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-443.667999F, -264.589996F), new Vector2(-442.600006F, -263.515991F), new Vector2(-441.256012F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-439.911987F, -261.932007F), new Vector2(-438.411987F, -261.536011F), new Vector2(-436.756012F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-435.075989F, -261.536011F), new Vector2(-433.558014F, -261.932007F), new Vector2(-432.201996F, -262.723999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0695() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-460.462006F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-461.290009F, -266.414001F), new Vector2(-461.937988F, -267.067993F), new Vector2(-462.406006F, -267.90799F)); + builder.AddCubicBezier(new Vector2(-462.873993F, -268.747986F), new Vector2(-463.108002F, -269.708008F), new Vector2(-463.108002F, -270.787994F)); + builder.AddCubicBezier(new Vector2(-463.108002F, -271.868011F), new Vector2(-462.873993F, -272.821991F), new Vector2(-462.406006F, -273.649994F)); + builder.AddCubicBezier(new Vector2(-461.937988F, -274.477997F), new Vector2(-461.29599F, -275.126007F), new Vector2(-460.480011F, -275.593994F)); + builder.AddCubicBezier(new Vector2(-459.664001F, -276.062012F), new Vector2(-458.716003F, -276.29599F), new Vector2(-457.635986F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-456.579987F, -276.29599F), new Vector2(-455.649994F, -276.062012F), new Vector2(-454.846008F, -275.593994F)); + builder.AddCubicBezier(new Vector2(-454.041992F, -275.126007F), new Vector2(-453.417999F, -274.477997F), new Vector2(-452.973999F, -273.649994F)); + builder.AddCubicBezier(new Vector2(-452.529999F, -272.821991F), new Vector2(-452.308014F, -271.855988F), new Vector2(-452.308014F, -270.752014F)); + builder.AddCubicBezier(new Vector2(-452.308014F, -269.64801F), new Vector2(-452.529999F, -268.682007F), new Vector2(-452.973999F, -267.854004F)); + builder.AddCubicBezier(new Vector2(-453.417999F, -267.026001F), new Vector2(-454.036011F, -266.384003F), new Vector2(-454.828003F, -265.928009F)); + builder.AddCubicBezier(new Vector2(-455.619995F, -265.471985F), new Vector2(-456.556F, -265.243988F), new Vector2(-457.635986F, -265.243988F)); + builder.AddCubicBezier(new Vector2(-458.691986F, -265.243988F), new Vector2(-459.634003F, -265.477997F), new Vector2(-460.462006F, -265.946014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-454.720001F, -262.976013F)); + builder.AddCubicBezier(new Vector2(-453.687988F, -263.503998F), new Vector2(-452.865997F, -264.242004F), new Vector2(-452.253998F, -265.190002F)); + builder.AddCubicBezier(new Vector2(-451.641998F, -266.138F), new Vector2(-451.299988F, -267.235992F), new Vector2(-451.227997F, -268.484009F)); + builder.AddLine(new Vector2(-451.227997F, -273.019989F)); + builder.AddCubicBezier(new Vector2(-451.299988F, -274.291992F), new Vector2(-451.635986F, -275.402008F), new Vector2(-452.235992F, -276.350006F)); + builder.AddCubicBezier(new Vector2(-452.835999F, -277.298004F), new Vector2(-453.65799F, -278.036011F), new Vector2(-454.701996F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-455.746002F, -279.09201F), new Vector2(-456.940002F, -279.355988F), new Vector2(-458.283997F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-459.820007F, -279.355988F), new Vector2(-461.212006F, -278.977997F), new Vector2(-462.459991F, -278.221985F)); + builder.AddCubicBezier(new Vector2(-463.708008F, -277.466003F), new Vector2(-464.686005F, -276.446014F), new Vector2(-465.394012F, -275.161987F)); + builder.AddCubicBezier(new Vector2(-466.10199F, -273.877991F), new Vector2(-466.455994F, -272.420013F), new Vector2(-466.455994F, -270.787994F)); + builder.AddCubicBezier(new Vector2(-466.455994F, -269.156006F), new Vector2(-466.096008F, -267.686005F), new Vector2(-465.376007F, -266.377991F)); + builder.AddCubicBezier(new Vector2(-464.656006F, -265.070007F), new Vector2(-463.678009F, -264.044006F), new Vector2(-462.441986F, -263.299988F)); + builder.AddCubicBezier(new Vector2(-461.205994F, -262.556F), new Vector2(-459.808014F, -262.18399F), new Vector2(-458.247986F, -262.18399F)); + builder.AddCubicBezier(new Vector2(-456.928009F, -262.18399F), new Vector2(-455.752014F, -262.447998F), new Vector2(-454.720001F, -262.976013F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-453.549988F, -255.397995F)); + builder.AddCubicBezier(new Vector2(-452.194F, -256.082001F), new Vector2(-451.138F, -257.041992F), new Vector2(-450.381989F, -258.278015F)); + builder.AddCubicBezier(new Vector2(-449.626007F, -259.514008F), new Vector2(-449.247986F, -260.947998F), new Vector2(-449.247986F, -262.579987F)); + builder.AddLine(new Vector2(-449.247986F, -278.996002F)); + builder.AddLine(new Vector2(-452.488007F, -278.996002F)); + builder.AddLine(new Vector2(-452.488007F, -274.496002F)); + builder.AddLine(new Vector2(-451.911987F, -270.679993F)); + builder.AddLine(new Vector2(-452.488007F, -266.828003F)); + builder.AddLine(new Vector2(-452.488007F, -262.579987F)); + builder.AddCubicBezier(new Vector2(-452.488007F, -261.019989F), new Vector2(-453.003998F, -259.778015F), new Vector2(-454.036011F, -258.854004F)); + builder.AddCubicBezier(new Vector2(-455.067993F, -257.929993F), new Vector2(-456.447998F, -257.467987F), new Vector2(-458.175995F, -257.467987F)); + builder.AddCubicBezier(new Vector2(-459.496002F, -257.467987F), new Vector2(-460.635986F, -257.701996F), new Vector2(-461.596008F, -258.170013F)); + builder.AddCubicBezier(new Vector2(-462.556F, -258.638F), new Vector2(-463.384003F, -259.31601F), new Vector2(-464.079987F, -260.20401F)); + builder.AddLine(new Vector2(-466.20401F, -258.079987F)); + builder.AddCubicBezier(new Vector2(-465.364014F, -256.903992F), new Vector2(-464.272003F, -255.992004F), new Vector2(-462.928009F, -255.343994F)); + builder.AddCubicBezier(new Vector2(-461.584015F, -254.695999F), new Vector2(-460.023987F, -254.371994F), new Vector2(-458.247986F, -254.371994F)); + builder.AddCubicBezier(new Vector2(-456.471985F, -254.371994F), new Vector2(-454.906006F, -254.714005F), new Vector2(-453.549988F, -255.397995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0696() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-480.388F, -262.291992F)); + builder.AddCubicBezier(new Vector2(-479.212006F, -262.79599F), new Vector2(-478.20401F, -263.528015F), new Vector2(-477.364014F, -264.488007F)); + builder.AddLine(new Vector2(-479.451996F, -266.612F)); + builder.AddCubicBezier(new Vector2(-480.028015F, -265.940002F), new Vector2(-480.717987F, -265.436005F), new Vector2(-481.522003F, -265.100006F)); + builder.AddCubicBezier(new Vector2(-482.325989F, -264.764008F), new Vector2(-483.208008F, -264.596008F), new Vector2(-484.167999F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-485.320007F, -264.596008F), new Vector2(-486.339996F, -264.84201F), new Vector2(-487.227997F, -265.334015F)); + builder.AddCubicBezier(new Vector2(-488.115997F, -265.825989F), new Vector2(-488.799988F, -266.522003F), new Vector2(-489.279999F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-489.76001F, -268.321991F), new Vector2(-490F, -269.372009F), new Vector2(-490F, -270.571991F)); + builder.AddCubicBezier(new Vector2(-490F, -271.747986F), new Vector2(-489.772003F, -272.768005F), new Vector2(-489.31601F, -273.631989F)); + builder.AddCubicBezier(new Vector2(-488.859985F, -274.496002F), new Vector2(-488.212006F, -275.167999F), new Vector2(-487.372009F, -275.64801F)); + builder.AddCubicBezier(new Vector2(-486.532013F, -276.127991F), new Vector2(-485.559998F, -276.368011F), new Vector2(-484.455994F, -276.368011F)); + builder.AddCubicBezier(new Vector2(-483.399994F, -276.368011F), new Vector2(-482.5F, -276.145996F), new Vector2(-481.756012F, -275.701996F)); + builder.AddCubicBezier(new Vector2(-481.011993F, -275.257996F), new Vector2(-480.436005F, -274.634003F), new Vector2(-480.028015F, -273.829987F)); + builder.AddCubicBezier(new Vector2(-479.619995F, -273.026001F), new Vector2(-479.415985F, -272.048004F), new Vector2(-479.415985F, -270.895996F)); + builder.AddLine(new Vector2(-478.227997F, -271.940002F)); + builder.AddLine(new Vector2(-490.936005F, -271.940002F)); + builder.AddLine(new Vector2(-490.936005F, -269.23999F)); + builder.AddLine(new Vector2(-476.5F, -269.23999F)); + builder.AddCubicBezier(new Vector2(-476.428009F, -269.575989F), new Vector2(-476.380005F, -269.881989F), new Vector2(-476.355988F, -270.15799F)); + builder.AddCubicBezier(new Vector2(-476.332001F, -270.43399F), new Vector2(-476.320007F, -270.691986F), new Vector2(-476.320007F, -270.932007F)); + builder.AddCubicBezier(new Vector2(-476.320007F, -272.563995F), new Vector2(-476.661987F, -274.015991F), new Vector2(-477.346008F, -275.287994F)); + builder.AddCubicBezier(new Vector2(-478.029999F, -276.559998F), new Vector2(-478.984009F, -277.556F), new Vector2(-480.208008F, -278.276001F)); + builder.AddCubicBezier(new Vector2(-481.432007F, -278.996002F), new Vector2(-482.824005F, -279.355988F), new Vector2(-484.384003F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-486.040009F, -279.355988F), new Vector2(-487.533997F, -278.966003F), new Vector2(-488.865997F, -278.186005F)); + builder.AddCubicBezier(new Vector2(-490.197998F, -277.406006F), new Vector2(-491.253998F, -276.343994F), new Vector2(-492.033997F, -275F)); + builder.AddCubicBezier(new Vector2(-492.813995F, -273.656006F), new Vector2(-493.20401F, -272.144012F), new Vector2(-493.20401F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-493.20401F, -268.76001F), new Vector2(-492.808014F, -267.235992F), new Vector2(-492.015991F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-491.223999F, -264.548004F), new Vector2(-490.149994F, -263.485992F), new Vector2(-488.794006F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-487.437988F, -261.925995F), new Vector2(-485.895996F, -261.536011F), new Vector2(-484.167999F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-482.824005F, -261.536011F), new Vector2(-481.563995F, -261.787994F), new Vector2(-480.388F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0697() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-508.575989F, -261.895996F)); + builder.AddLine(new Vector2(-508.575989F, -287.600006F)); + builder.AddLine(new Vector2(-511.81601F, -287.600006F)); + builder.AddLine(new Vector2(-511.81601F, -261.895996F)); + builder.AddLine(new Vector2(-508.575989F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-496.480011F, -261.895996F)); + builder.AddLine(new Vector2(-496.480011F, -272.515991F)); + builder.AddCubicBezier(new Vector2(-496.480011F, -273.859985F), new Vector2(-496.768005F, -275.048004F), new Vector2(-497.343994F, -276.079987F)); + builder.AddCubicBezier(new Vector2(-497.920013F, -277.112F), new Vector2(-498.705994F, -277.915985F), new Vector2(-499.701996F, -278.492004F)); + builder.AddCubicBezier(new Vector2(-500.697998F, -279.067993F), new Vector2(-501.843994F, -279.355988F), new Vector2(-503.140015F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-504.436005F, -279.355988F), new Vector2(-505.600006F, -279.062012F), new Vector2(-506.631989F, -278.473999F)); + builder.AddCubicBezier(new Vector2(-507.664001F, -277.885986F), new Vector2(-508.467987F, -277.088013F), new Vector2(-509.044006F, -276.079987F)); + builder.AddCubicBezier(new Vector2(-509.619995F, -275.071991F), new Vector2(-509.90799F, -273.920013F), new Vector2(-509.90799F, -272.623993F)); + builder.AddLine(new Vector2(-508.575989F, -271.868011F)); + builder.AddCubicBezier(new Vector2(-508.575989F, -272.731995F), new Vector2(-508.384003F, -273.5F), new Vector2(-508F, -274.171997F)); + builder.AddCubicBezier(new Vector2(-507.615997F, -274.843994F), new Vector2(-507.088013F, -275.372009F), new Vector2(-506.415985F, -275.756012F)); + builder.AddCubicBezier(new Vector2(-505.743988F, -276.140015F), new Vector2(-504.976013F, -276.332001F), new Vector2(-504.112F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-502.81601F, -276.332001F), new Vector2(-501.765991F, -275.911987F), new Vector2(-500.962006F, -275.071991F)); + builder.AddCubicBezier(new Vector2(-500.15799F, -274.231995F), new Vector2(-499.756012F, -273.164001F), new Vector2(-499.756012F, -271.868011F)); + builder.AddLine(new Vector2(-499.756012F, -261.895996F)); + builder.AddLine(new Vector2(-496.480011F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0698() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-514.984009F, -276.044006F)); + builder.AddLine(new Vector2(-514.984009F, -278.996002F)); + builder.AddLine(new Vector2(-526.64801F, -278.996002F)); + builder.AddLine(new Vector2(-526.64801F, -276.044006F)); + builder.AddLine(new Vector2(-514.984009F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-519.195984F, -261.895996F)); + builder.AddLine(new Vector2(-519.195984F, -286.160004F)); + builder.AddLine(new Vector2(-522.435974F, -286.160004F)); + builder.AddLine(new Vector2(-522.435974F, -261.895996F)); + builder.AddLine(new Vector2(-519.195984F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0699() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-547.924011F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-548.763977F, -265.928009F), new Vector2(-549.424011F, -266.618011F), new Vector2(-549.903992F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-550.383972F, -268.369995F), new Vector2(-550.624023F, -269.372009F), new Vector2(-550.624023F, -270.5F)); + builder.AddCubicBezier(new Vector2(-550.624023F, -271.604004F), new Vector2(-550.383972F, -272.588013F), new Vector2(-549.903992F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-549.424011F, -274.31601F), new Vector2(-548.763977F, -274.993988F), new Vector2(-547.924011F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-547.083984F, -275.977997F), new Vector2(-546.135986F, -276.223999F), new Vector2(-545.080017F, -276.223999F)); + builder.AddCubicBezier(new Vector2(-543.976013F, -276.223999F), new Vector2(-543.01001F, -275.977997F), new Vector2(-542.182007F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-541.354004F, -274.993988F), new Vector2(-540.69397F, -274.31601F), new Vector2(-540.202026F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-539.710022F, -272.588013F), new Vector2(-539.463989F, -271.604004F), new Vector2(-539.463989F, -270.5F)); + builder.AddCubicBezier(new Vector2(-539.463989F, -269.372009F), new Vector2(-539.703979F, -268.369995F), new Vector2(-540.184021F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-540.664001F, -266.618011F), new Vector2(-541.323975F, -265.928009F), new Vector2(-542.164001F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-543.004028F, -264.920013F), new Vector2(-543.976013F, -264.667999F), new Vector2(-545.080017F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-546.135986F, -264.667999F), new Vector2(-547.083984F, -264.920013F), new Vector2(-547.924011F, -265.424011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-540.526001F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-539.169983F, -263.515991F), new Vector2(-538.096008F, -264.589996F), new Vector2(-537.304016F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-536.512024F, -267.302002F), new Vector2(-536.116028F, -268.820007F), new Vector2(-536.116028F, -270.5F)); + builder.AddCubicBezier(new Vector2(-536.116028F, -272.156006F), new Vector2(-536.512024F, -273.656006F), new Vector2(-537.304016F, -275F)); + builder.AddCubicBezier(new Vector2(-538.096008F, -276.343994F), new Vector2(-539.169983F, -277.406006F), new Vector2(-540.526001F, -278.186005F)); + builder.AddCubicBezier(new Vector2(-541.882019F, -278.966003F), new Vector2(-543.400024F, -279.355988F), new Vector2(-545.080017F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-546.736023F, -279.355988F), new Vector2(-548.236023F, -278.959991F), new Vector2(-549.580017F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-550.924011F, -277.376007F), new Vector2(-551.992004F, -276.313995F), new Vector2(-552.783997F, -274.981995F)); + builder.AddCubicBezier(new Vector2(-553.575989F, -273.649994F), new Vector2(-553.971985F, -272.156006F), new Vector2(-553.971985F, -270.5F)); + builder.AddCubicBezier(new Vector2(-553.971985F, -268.820007F), new Vector2(-553.575989F, -267.302002F), new Vector2(-552.783997F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-551.992004F, -264.589996F), new Vector2(-550.924011F, -263.515991F), new Vector2(-549.580017F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-548.236023F, -261.932007F), new Vector2(-546.736023F, -261.536011F), new Vector2(-545.080017F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-543.400024F, -261.536011F), new Vector2(-541.882019F, -261.932007F), new Vector2(-540.526001F, -262.723999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0700() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-555.484009F, -276.044006F)); + builder.AddLine(new Vector2(-555.484009F, -278.996002F)); + builder.AddLine(new Vector2(-567.14801F, -278.996002F)); + builder.AddLine(new Vector2(-567.14801F, -276.044006F)); + builder.AddLine(new Vector2(-555.484009F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-559.695984F, -261.895996F)); + builder.AddLine(new Vector2(-559.695984F, -286.160004F)); + builder.AddLine(new Vector2(-562.935974F, -286.160004F)); + builder.AddLine(new Vector2(-562.935974F, -261.895996F)); + builder.AddLine(new Vector2(-559.695984F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0701() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-576.184021F, -276.044006F)); + builder.AddLine(new Vector2(-576.184021F, -278.996002F)); + builder.AddLine(new Vector2(-587.848022F, -278.996002F)); + builder.AddLine(new Vector2(-587.848022F, -276.044006F)); + builder.AddLine(new Vector2(-576.184021F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-580.395996F, -261.895996F)); + builder.AddLine(new Vector2(-580.395996F, -286.160004F)); + builder.AddLine(new Vector2(-583.635986F, -286.160004F)); + builder.AddLine(new Vector2(-583.635986F, -261.895996F)); + builder.AddLine(new Vector2(-580.395996F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0702() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-591.609985F, -262.940002F)); + builder.AddCubicBezier(new Vector2(-590.469971F, -263.876007F), new Vector2(-589.900024F, -265.14801F), new Vector2(-589.900024F, -266.756012F)); + builder.AddCubicBezier(new Vector2(-589.900024F, -267.812012F), new Vector2(-590.122009F, -268.664001F), new Vector2(-590.565979F, -269.312012F)); + builder.AddCubicBezier(new Vector2(-591.01001F, -269.959991F), new Vector2(-591.580017F, -270.476013F), new Vector2(-592.276001F, -270.859985F)); + builder.AddCubicBezier(new Vector2(-592.971985F, -271.243988F), new Vector2(-593.703979F, -271.549988F), new Vector2(-594.471985F, -271.778015F)); + builder.AddCubicBezier(new Vector2(-595.23999F, -272.006012F), new Vector2(-595.978027F, -272.227997F), new Vector2(-596.685974F, -272.444F)); + builder.AddCubicBezier(new Vector2(-597.393982F, -272.660004F), new Vector2(-597.963989F, -272.924011F), new Vector2(-598.395996F, -273.235992F)); + builder.AddCubicBezier(new Vector2(-598.828003F, -273.548004F), new Vector2(-599.044006F, -273.992004F), new Vector2(-599.044006F, -274.567993F)); + builder.AddCubicBezier(new Vector2(-599.044006F, -275.119995F), new Vector2(-598.797974F, -275.563995F), new Vector2(-598.30603F, -275.899994F)); + builder.AddCubicBezier(new Vector2(-597.814026F, -276.235992F), new Vector2(-597.099976F, -276.403992F), new Vector2(-596.164001F, -276.403992F)); + builder.AddCubicBezier(new Vector2(-595.276001F, -276.403992F), new Vector2(-594.484009F, -276.235992F), new Vector2(-593.788025F, -275.899994F)); + builder.AddCubicBezier(new Vector2(-593.09198F, -275.563995F), new Vector2(-592.492004F, -275.084015F), new Vector2(-591.987976F, -274.459991F)); + builder.AddLine(new Vector2(-589.900024F, -276.548004F)); + builder.AddCubicBezier(new Vector2(-590.572021F, -277.484009F), new Vector2(-591.429993F, -278.186005F), new Vector2(-592.473999F, -278.653992F)); + builder.AddCubicBezier(new Vector2(-593.518005F, -279.122009F), new Vector2(-594.711975F, -279.355988F), new Vector2(-596.05603F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-597.328003F, -279.355988F), new Vector2(-598.419983F, -279.152008F), new Vector2(-599.33197F, -278.743988F)); + builder.AddCubicBezier(new Vector2(-600.244019F, -278.335999F), new Vector2(-600.945984F, -277.753998F), new Vector2(-601.437988F, -276.997986F)); + builder.AddCubicBezier(new Vector2(-601.929993F, -276.242004F), new Vector2(-602.176025F, -275.347992F), new Vector2(-602.176025F, -274.31601F)); + builder.AddCubicBezier(new Vector2(-602.176025F, -273.283997F), new Vector2(-601.953979F, -272.450012F), new Vector2(-601.51001F, -271.813995F)); + builder.AddCubicBezier(new Vector2(-601.065979F, -271.178009F), new Vector2(-600.495972F, -270.679993F), new Vector2(-599.799988F, -270.320007F)); + builder.AddCubicBezier(new Vector2(-599.104004F, -269.959991F), new Vector2(-598.366028F, -269.671997F), new Vector2(-597.585999F, -269.455994F)); + builder.AddCubicBezier(new Vector2(-596.80603F, -269.23999F), new Vector2(-596.067993F, -269.018005F), new Vector2(-595.372009F, -268.790009F)); + builder.AddCubicBezier(new Vector2(-594.676025F, -268.562012F), new Vector2(-594.106018F, -268.273987F), new Vector2(-593.661987F, -267.925995F)); + builder.AddCubicBezier(new Vector2(-593.218018F, -267.578003F), new Vector2(-592.995972F, -267.09201F), new Vector2(-592.995972F, -266.467987F)); + builder.AddCubicBezier(new Vector2(-592.995972F, -265.843994F), new Vector2(-593.271973F, -265.358002F), new Vector2(-593.823975F, -265.01001F)); + builder.AddCubicBezier(new Vector2(-594.375977F, -264.661987F), new Vector2(-595.156006F, -264.488007F), new Vector2(-596.164001F, -264.488007F)); + builder.AddCubicBezier(new Vector2(-597.171997F, -264.488007F), new Vector2(-598.083984F, -264.674011F), new Vector2(-598.900024F, -265.04599F)); + builder.AddCubicBezier(new Vector2(-599.716003F, -265.417999F), new Vector2(-600.435974F, -265.988007F), new Vector2(-601.059998F, -266.756012F)); + builder.AddLine(new Vector2(-603.14801F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-602.619995F, -264.019989F), new Vector2(-602.002014F, -263.462006F), new Vector2(-601.294006F, -262.993988F)); + builder.AddCubicBezier(new Vector2(-600.585999F, -262.526001F), new Vector2(-599.799988F, -262.165985F), new Vector2(-598.935974F, -261.914001F)); + builder.AddCubicBezier(new Vector2(-598.072021F, -261.661987F), new Vector2(-597.159973F, -261.536011F), new Vector2(-596.200012F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-594.280029F, -261.536011F), new Vector2(-592.75F, -262.003998F), new Vector2(-591.609985F, -262.940002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0703() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-609.52002F, -262.526001F)); + builder.AddCubicBezier(new Vector2(-608.416016F, -263.138F), new Vector2(-607.552002F, -264.007996F), new Vector2(-606.927979F, -265.135986F)); + builder.AddCubicBezier(new Vector2(-606.304016F, -266.264008F), new Vector2(-605.992004F, -267.571991F), new Vector2(-605.992004F, -269.059998F)); + builder.AddLine(new Vector2(-605.992004F, -278.996002F)); + builder.AddLine(new Vector2(-609.231995F, -278.996002F)); + builder.AddLine(new Vector2(-609.231995F, -269.20401F)); + builder.AddCubicBezier(new Vector2(-609.231995F, -267.787994F), new Vector2(-609.59198F, -266.678009F), new Vector2(-610.312012F, -265.873993F)); + builder.AddCubicBezier(new Vector2(-611.031982F, -265.070007F), new Vector2(-612.028015F, -264.667999F), new Vector2(-613.299988F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-614.140015F, -264.667999F), new Vector2(-614.872009F, -264.847992F), new Vector2(-615.495972F, -265.208008F)); + builder.AddCubicBezier(new Vector2(-616.119995F, -265.567993F), new Vector2(-616.593994F, -266.089996F), new Vector2(-616.91803F, -266.773987F)); + builder.AddCubicBezier(new Vector2(-617.242004F, -267.458008F), new Vector2(-617.403992F, -268.268005F), new Vector2(-617.403992F, -269.20401F)); + builder.AddLine(new Vector2(-617.403992F, -278.996002F)); + builder.AddLine(new Vector2(-620.643982F, -278.996002F)); + builder.AddLine(new Vector2(-620.643982F, -269.059998F)); + builder.AddCubicBezier(new Vector2(-620.643982F, -267.571991F), new Vector2(-620.33197F, -266.264008F), new Vector2(-619.708008F, -265.135986F)); + builder.AddCubicBezier(new Vector2(-619.083984F, -264.007996F), new Vector2(-618.213989F, -263.138F), new Vector2(-617.098022F, -262.526001F)); + builder.AddCubicBezier(new Vector2(-615.981995F, -261.914001F), new Vector2(-614.716003F, -261.608002F), new Vector2(-613.299988F, -261.608002F)); + builder.AddCubicBezier(new Vector2(-611.883972F, -261.608002F), new Vector2(-610.624023F, -261.914001F), new Vector2(-609.52002F, -262.526001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0704() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-630.255981F, -275.144012F)); + builder.AddCubicBezier(new Vector2(-629.487976F, -275.911987F), new Vector2(-628.504028F, -276.29599F), new Vector2(-627.304016F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-626.728027F, -276.29599F), new Vector2(-626.223999F, -276.212006F), new Vector2(-625.791992F, -276.044006F)); + builder.AddCubicBezier(new Vector2(-625.359985F, -275.876007F), new Vector2(-624.963989F, -275.600006F), new Vector2(-624.604004F, -275.216003F)); + builder.AddLine(new Vector2(-622.47998F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-623.080017F, -278.108002F), new Vector2(-623.728027F, -278.605988F), new Vector2(-624.424011F, -278.906006F)); + builder.AddCubicBezier(new Vector2(-625.119995F, -279.205994F), new Vector2(-625.900024F, -279.355988F), new Vector2(-626.763977F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-628.659973F, -279.355988F), new Vector2(-630.112F, -278.708008F), new Vector2(-631.119995F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-632.127991F, -276.115997F), new Vector2(-632.632019F, -274.376007F), new Vector2(-632.632019F, -272.191986F)); + builder.AddLine(new Vector2(-631.40802F, -271.615997F)); + builder.AddCubicBezier(new Vector2(-631.40802F, -273.200012F), new Vector2(-631.023987F, -274.376007F), new Vector2(-630.255981F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-631.40802F, -261.895996F)); + builder.AddLine(new Vector2(-631.40802F, -278.996002F)); + builder.AddLine(new Vector2(-634.64801F, -278.996002F)); + builder.AddLine(new Vector2(-634.64801F, -261.895996F)); + builder.AddLine(new Vector2(-631.40802F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0705() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-637.815979F, -276.044006F)); + builder.AddLine(new Vector2(-637.815979F, -278.996002F)); + builder.AddLine(new Vector2(-649.47998F, -278.996002F)); + builder.AddLine(new Vector2(-649.47998F, -276.044006F)); + builder.AddLine(new Vector2(-637.815979F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-642.028015F, -261.895996F)); + builder.AddLine(new Vector2(-642.028015F, -286.160004F)); + builder.AddLine(new Vector2(-645.268005F, -286.160004F)); + builder.AddLine(new Vector2(-645.268005F, -261.895996F)); + builder.AddLine(new Vector2(-642.028015F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0706() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-664.16803F, -261.895996F)); + builder.AddLine(new Vector2(-664.16803F, -278.996002F)); + builder.AddLine(new Vector2(-667.40802F, -278.996002F)); + builder.AddLine(new Vector2(-667.40802F, -261.895996F)); + builder.AddLine(new Vector2(-664.16803F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-652.072021F, -261.895996F)); + builder.AddLine(new Vector2(-652.072021F, -272.515991F)); + builder.AddCubicBezier(new Vector2(-652.072021F, -273.691986F), new Vector2(-652.359985F, -274.802002F), new Vector2(-652.935974F, -275.846008F)); + builder.AddCubicBezier(new Vector2(-653.512024F, -276.890015F), new Vector2(-654.297974F, -277.735992F), new Vector2(-655.294006F, -278.384003F)); + builder.AddCubicBezier(new Vector2(-656.289978F, -279.032013F), new Vector2(-657.435974F, -279.355988F), new Vector2(-658.731995F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-660.028015F, -279.355988F), new Vector2(-661.192017F, -279.062012F), new Vector2(-662.223999F, -278.473999F)); + builder.AddCubicBezier(new Vector2(-663.255981F, -277.885986F), new Vector2(-664.059998F, -277.088013F), new Vector2(-664.635986F, -276.079987F)); + builder.AddCubicBezier(new Vector2(-665.211975F, -275.071991F), new Vector2(-665.5F, -273.920013F), new Vector2(-665.5F, -272.623993F)); + builder.AddLine(new Vector2(-664.16803F, -271.868011F)); + builder.AddCubicBezier(new Vector2(-664.16803F, -272.731995F), new Vector2(-663.976013F, -273.5F), new Vector2(-663.59198F, -274.171997F)); + builder.AddCubicBezier(new Vector2(-663.208008F, -274.843994F), new Vector2(-662.679993F, -275.372009F), new Vector2(-662.007996F, -275.756012F)); + builder.AddCubicBezier(new Vector2(-661.335999F, -276.140015F), new Vector2(-660.567993F, -276.332001F), new Vector2(-659.703979F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-658.40802F, -276.332001F), new Vector2(-657.357971F, -275.911987F), new Vector2(-656.554016F, -275.071991F)); + builder.AddCubicBezier(new Vector2(-655.75F, -274.231995F), new Vector2(-655.348022F, -273.164001F), new Vector2(-655.348022F, -271.868011F)); + builder.AddLine(new Vector2(-655.348022F, -261.895996F)); + builder.AddLine(new Vector2(-652.072021F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0707() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-675.291992F, -262.526001F)); + builder.AddCubicBezier(new Vector2(-674.187988F, -263.138F), new Vector2(-673.323975F, -264.007996F), new Vector2(-672.700012F, -265.135986F)); + builder.AddCubicBezier(new Vector2(-672.075989F, -266.264008F), new Vector2(-671.763977F, -267.571991F), new Vector2(-671.763977F, -269.059998F)); + builder.AddLine(new Vector2(-671.763977F, -278.996002F)); + builder.AddLine(new Vector2(-675.004028F, -278.996002F)); + builder.AddLine(new Vector2(-675.004028F, -269.20401F)); + builder.AddCubicBezier(new Vector2(-675.004028F, -267.787994F), new Vector2(-675.364014F, -266.678009F), new Vector2(-676.083984F, -265.873993F)); + builder.AddCubicBezier(new Vector2(-676.804016F, -265.070007F), new Vector2(-677.799988F, -264.667999F), new Vector2(-679.072021F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-679.911987F, -264.667999F), new Vector2(-680.643982F, -264.847992F), new Vector2(-681.268005F, -265.208008F)); + builder.AddCubicBezier(new Vector2(-681.892029F, -265.567993F), new Vector2(-682.366028F, -266.089996F), new Vector2(-682.690002F, -266.773987F)); + builder.AddCubicBezier(new Vector2(-683.013977F, -267.458008F), new Vector2(-683.176025F, -268.268005F), new Vector2(-683.176025F, -269.20401F)); + builder.AddLine(new Vector2(-683.176025F, -278.996002F)); + builder.AddLine(new Vector2(-686.416016F, -278.996002F)); + builder.AddLine(new Vector2(-686.416016F, -269.059998F)); + builder.AddCubicBezier(new Vector2(-686.416016F, -267.571991F), new Vector2(-686.104004F, -266.264008F), new Vector2(-685.47998F, -265.135986F)); + builder.AddCubicBezier(new Vector2(-684.856018F, -264.007996F), new Vector2(-683.986023F, -263.138F), new Vector2(-682.869995F, -262.526001F)); + builder.AddCubicBezier(new Vector2(-681.754028F, -261.914001F), new Vector2(-680.487976F, -261.608002F), new Vector2(-679.072021F, -261.608002F)); + builder.AddCubicBezier(new Vector2(-677.656006F, -261.608002F), new Vector2(-676.395996F, -261.914001F), new Vector2(-675.291992F, -262.526001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0708() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-701.031982F, -262.291992F)); + builder.AddCubicBezier(new Vector2(-699.856018F, -262.79599F), new Vector2(-698.848022F, -263.528015F), new Vector2(-698.007996F, -264.488007F)); + builder.AddLine(new Vector2(-700.096008F, -266.612F)); + builder.AddCubicBezier(new Vector2(-700.671997F, -265.940002F), new Vector2(-701.362F, -265.436005F), new Vector2(-702.166016F, -265.100006F)); + builder.AddCubicBezier(new Vector2(-702.969971F, -264.764008F), new Vector2(-703.85199F, -264.596008F), new Vector2(-704.812012F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-705.963989F, -264.596008F), new Vector2(-706.984009F, -264.84201F), new Vector2(-707.872009F, -265.334015F)); + builder.AddCubicBezier(new Vector2(-708.76001F, -265.825989F), new Vector2(-709.44397F, -266.522003F), new Vector2(-709.924011F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-710.403992F, -268.321991F), new Vector2(-710.643982F, -269.372009F), new Vector2(-710.643982F, -270.571991F)); + builder.AddCubicBezier(new Vector2(-710.643982F, -271.747986F), new Vector2(-710.416016F, -272.768005F), new Vector2(-709.960022F, -273.631989F)); + builder.AddCubicBezier(new Vector2(-709.504028F, -274.496002F), new Vector2(-708.856018F, -275.167999F), new Vector2(-708.015991F, -275.64801F)); + builder.AddCubicBezier(new Vector2(-707.176025F, -276.127991F), new Vector2(-706.203979F, -276.368011F), new Vector2(-705.099976F, -276.368011F)); + builder.AddCubicBezier(new Vector2(-704.044006F, -276.368011F), new Vector2(-703.143982F, -276.145996F), new Vector2(-702.400024F, -275.701996F)); + builder.AddCubicBezier(new Vector2(-701.656006F, -275.257996F), new Vector2(-701.080017F, -274.634003F), new Vector2(-700.671997F, -273.829987F)); + builder.AddCubicBezier(new Vector2(-700.263977F, -273.026001F), new Vector2(-700.059998F, -272.048004F), new Vector2(-700.059998F, -270.895996F)); + builder.AddLine(new Vector2(-698.872009F, -271.940002F)); + builder.AddLine(new Vector2(-711.580017F, -271.940002F)); + builder.AddLine(new Vector2(-711.580017F, -269.23999F)); + builder.AddLine(new Vector2(-697.143982F, -269.23999F)); + builder.AddCubicBezier(new Vector2(-697.072021F, -269.575989F), new Vector2(-697.023987F, -269.881989F), new Vector2(-697F, -270.15799F)); + builder.AddCubicBezier(new Vector2(-696.976013F, -270.43399F), new Vector2(-696.963989F, -270.691986F), new Vector2(-696.963989F, -270.932007F)); + builder.AddCubicBezier(new Vector2(-696.963989F, -272.563995F), new Vector2(-697.30603F, -274.015991F), new Vector2(-697.98999F, -275.287994F)); + builder.AddCubicBezier(new Vector2(-698.674011F, -276.559998F), new Vector2(-699.627991F, -277.556F), new Vector2(-700.85199F, -278.276001F)); + builder.AddCubicBezier(new Vector2(-702.075989F, -278.996002F), new Vector2(-703.468018F, -279.355988F), new Vector2(-705.028015F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-706.684021F, -279.355988F), new Vector2(-708.177979F, -278.966003F), new Vector2(-709.51001F, -278.186005F)); + builder.AddCubicBezier(new Vector2(-710.84198F, -277.406006F), new Vector2(-711.89801F, -276.343994F), new Vector2(-712.677979F, -275F)); + builder.AddCubicBezier(new Vector2(-713.458008F, -273.656006F), new Vector2(-713.848022F, -272.144012F), new Vector2(-713.848022F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-713.848022F, -268.76001F), new Vector2(-713.452026F, -267.235992F), new Vector2(-712.659973F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-711.867981F, -264.548004F), new Vector2(-710.794006F, -263.485992F), new Vector2(-709.437988F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-708.08197F, -261.925995F), new Vector2(-706.539978F, -261.536011F), new Vector2(-704.812012F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-703.468018F, -261.536011F), new Vector2(-702.208008F, -261.787994F), new Vector2(-701.031982F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0709() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-715.359985F, -276.044006F)); + builder.AddLine(new Vector2(-715.359985F, -278.996002F)); + builder.AddLine(new Vector2(-727.023987F, -278.996002F)); + builder.AddLine(new Vector2(-727.023987F, -276.044006F)); + builder.AddLine(new Vector2(-715.359985F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-719.572021F, -261.895996F)); + builder.AddLine(new Vector2(-719.572021F, -286.160004F)); + builder.AddLine(new Vector2(-722.812012F, -286.160004F)); + builder.AddLine(new Vector2(-722.812012F, -261.895996F)); + builder.AddLine(new Vector2(-719.572021F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0710() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-733.323975F, -262.526001F)); + builder.AddCubicBezier(new Vector2(-732.219971F, -263.138F), new Vector2(-731.356018F, -264.007996F), new Vector2(-730.731995F, -265.135986F)); + builder.AddCubicBezier(new Vector2(-730.107971F, -266.264008F), new Vector2(-729.796021F, -267.571991F), new Vector2(-729.796021F, -269.059998F)); + builder.AddLine(new Vector2(-729.796021F, -278.996002F)); + builder.AddLine(new Vector2(-733.036011F, -278.996002F)); + builder.AddLine(new Vector2(-733.036011F, -269.20401F)); + builder.AddCubicBezier(new Vector2(-733.036011F, -267.787994F), new Vector2(-733.395996F, -266.678009F), new Vector2(-734.116028F, -265.873993F)); + builder.AddCubicBezier(new Vector2(-734.835999F, -265.070007F), new Vector2(-735.83197F, -264.667999F), new Vector2(-737.104004F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-737.94397F, -264.667999F), new Vector2(-738.676025F, -264.847992F), new Vector2(-739.299988F, -265.208008F)); + builder.AddCubicBezier(new Vector2(-739.924011F, -265.567993F), new Vector2(-740.39801F, -266.089996F), new Vector2(-740.721985F, -266.773987F)); + builder.AddCubicBezier(new Vector2(-741.046021F, -267.458008F), new Vector2(-741.208008F, -268.268005F), new Vector2(-741.208008F, -269.20401F)); + builder.AddLine(new Vector2(-741.208008F, -278.996002F)); + builder.AddLine(new Vector2(-744.447998F, -278.996002F)); + builder.AddLine(new Vector2(-744.447998F, -269.059998F)); + builder.AddCubicBezier(new Vector2(-744.447998F, -267.571991F), new Vector2(-744.135986F, -266.264008F), new Vector2(-743.512024F, -265.135986F)); + builder.AddCubicBezier(new Vector2(-742.888F, -264.007996F), new Vector2(-742.018005F, -263.138F), new Vector2(-740.901978F, -262.526001F)); + builder.AddCubicBezier(new Vector2(-739.786011F, -261.914001F), new Vector2(-738.52002F, -261.608002F), new Vector2(-737.104004F, -261.608002F)); + builder.AddCubicBezier(new Vector2(-735.687988F, -261.608002F), new Vector2(-734.427979F, -261.914001F), new Vector2(-733.323975F, -262.526001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0711() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-748.768005F, -261.895996F)); + builder.AddLine(new Vector2(-748.768005F, -287.600006F)); + builder.AddLine(new Vector2(-752.007996F, -287.600006F)); + builder.AddLine(new Vector2(-752.007996F, -261.895996F)); + builder.AddLine(new Vector2(-748.768005F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0712() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-767.416016F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-768.255981F, -265.928009F), new Vector2(-768.916016F, -266.618011F), new Vector2(-769.395996F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-769.875977F, -268.369995F), new Vector2(-770.116028F, -269.372009F), new Vector2(-770.116028F, -270.5F)); + builder.AddCubicBezier(new Vector2(-770.116028F, -271.604004F), new Vector2(-769.875977F, -272.588013F), new Vector2(-769.395996F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-768.916016F, -274.31601F), new Vector2(-768.255981F, -274.993988F), new Vector2(-767.416016F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-766.575989F, -275.977997F), new Vector2(-765.627991F, -276.223999F), new Vector2(-764.572021F, -276.223999F)); + builder.AddCubicBezier(new Vector2(-763.468018F, -276.223999F), new Vector2(-762.502014F, -275.977997F), new Vector2(-761.674011F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-760.846008F, -274.993988F), new Vector2(-760.185974F, -274.31601F), new Vector2(-759.69397F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-759.202026F, -272.588013F), new Vector2(-758.955994F, -271.604004F), new Vector2(-758.955994F, -270.5F)); + builder.AddCubicBezier(new Vector2(-758.955994F, -269.372009F), new Vector2(-759.195984F, -268.369995F), new Vector2(-759.676025F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-760.156006F, -266.618011F), new Vector2(-760.815979F, -265.928009F), new Vector2(-761.656006F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-762.495972F, -264.920013F), new Vector2(-763.468018F, -264.667999F), new Vector2(-764.572021F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-765.627991F, -264.667999F), new Vector2(-766.575989F, -264.920013F), new Vector2(-767.416016F, -265.424011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-760.018005F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-758.661987F, -263.515991F), new Vector2(-757.588013F, -264.589996F), new Vector2(-756.796021F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-756.004028F, -267.302002F), new Vector2(-755.607971F, -268.820007F), new Vector2(-755.607971F, -270.5F)); + builder.AddCubicBezier(new Vector2(-755.607971F, -272.156006F), new Vector2(-756.004028F, -273.656006F), new Vector2(-756.796021F, -275F)); + builder.AddCubicBezier(new Vector2(-757.588013F, -276.343994F), new Vector2(-758.661987F, -277.406006F), new Vector2(-760.018005F, -278.186005F)); + builder.AddCubicBezier(new Vector2(-761.374023F, -278.966003F), new Vector2(-762.892029F, -279.355988F), new Vector2(-764.572021F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-766.228027F, -279.355988F), new Vector2(-767.728027F, -278.959991F), new Vector2(-769.072021F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-770.416016F, -277.376007F), new Vector2(-771.484009F, -276.313995F), new Vector2(-772.276001F, -274.981995F)); + builder.AddCubicBezier(new Vector2(-773.067993F, -273.649994F), new Vector2(-773.463989F, -272.156006F), new Vector2(-773.463989F, -270.5F)); + builder.AddCubicBezier(new Vector2(-773.463989F, -268.820007F), new Vector2(-773.067993F, -267.302002F), new Vector2(-772.276001F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-771.484009F, -264.589996F), new Vector2(-770.416016F, -263.515991F), new Vector2(-769.072021F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-767.728027F, -261.932007F), new Vector2(-766.228027F, -261.536011F), new Vector2(-764.572021F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-762.892029F, -261.536011F), new Vector2(-761.374023F, -261.932007F), new Vector2(-760.018005F, -262.723999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0713() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-777.69397F, -262.940002F)); + builder.AddCubicBezier(new Vector2(-776.554016F, -263.876007F), new Vector2(-775.984009F, -265.14801F), new Vector2(-775.984009F, -266.756012F)); + builder.AddCubicBezier(new Vector2(-775.984009F, -267.812012F), new Vector2(-776.205994F, -268.664001F), new Vector2(-776.650024F, -269.312012F)); + builder.AddCubicBezier(new Vector2(-777.093994F, -269.959991F), new Vector2(-777.664001F, -270.476013F), new Vector2(-778.359985F, -270.859985F)); + builder.AddCubicBezier(new Vector2(-779.05603F, -271.243988F), new Vector2(-779.788025F, -271.549988F), new Vector2(-780.55603F, -271.778015F)); + builder.AddCubicBezier(new Vector2(-781.323975F, -272.006012F), new Vector2(-782.062012F, -272.227997F), new Vector2(-782.77002F, -272.444F)); + builder.AddCubicBezier(new Vector2(-783.478027F, -272.660004F), new Vector2(-784.047974F, -272.924011F), new Vector2(-784.47998F, -273.235992F)); + builder.AddCubicBezier(new Vector2(-784.911987F, -273.548004F), new Vector2(-785.127991F, -273.992004F), new Vector2(-785.127991F, -274.567993F)); + builder.AddCubicBezier(new Vector2(-785.127991F, -275.119995F), new Vector2(-784.882019F, -275.563995F), new Vector2(-784.390015F, -275.899994F)); + builder.AddCubicBezier(new Vector2(-783.89801F, -276.235992F), new Vector2(-783.184021F, -276.403992F), new Vector2(-782.247986F, -276.403992F)); + builder.AddCubicBezier(new Vector2(-781.359985F, -276.403992F), new Vector2(-780.567993F, -276.235992F), new Vector2(-779.872009F, -275.899994F)); + builder.AddCubicBezier(new Vector2(-779.176025F, -275.563995F), new Vector2(-778.575989F, -275.084015F), new Vector2(-778.072021F, -274.459991F)); + builder.AddLine(new Vector2(-775.984009F, -276.548004F)); + builder.AddCubicBezier(new Vector2(-776.656006F, -277.484009F), new Vector2(-777.513977F, -278.186005F), new Vector2(-778.557983F, -278.653992F)); + builder.AddCubicBezier(new Vector2(-779.60199F, -279.122009F), new Vector2(-780.796021F, -279.355988F), new Vector2(-782.140015F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-783.411987F, -279.355988F), new Vector2(-784.504028F, -279.152008F), new Vector2(-785.416016F, -278.743988F)); + builder.AddCubicBezier(new Vector2(-786.328003F, -278.335999F), new Vector2(-787.030029F, -277.753998F), new Vector2(-787.521973F, -276.997986F)); + builder.AddCubicBezier(new Vector2(-788.013977F, -276.242004F), new Vector2(-788.26001F, -275.347992F), new Vector2(-788.26001F, -274.31601F)); + builder.AddCubicBezier(new Vector2(-788.26001F, -273.283997F), new Vector2(-788.038025F, -272.450012F), new Vector2(-787.593994F, -271.813995F)); + builder.AddCubicBezier(new Vector2(-787.150024F, -271.178009F), new Vector2(-786.580017F, -270.679993F), new Vector2(-785.883972F, -270.320007F)); + builder.AddCubicBezier(new Vector2(-785.187988F, -269.959991F), new Vector2(-784.450012F, -269.671997F), new Vector2(-783.669983F, -269.455994F)); + builder.AddCubicBezier(new Vector2(-782.890015F, -269.23999F), new Vector2(-782.151978F, -269.018005F), new Vector2(-781.455994F, -268.790009F)); + builder.AddCubicBezier(new Vector2(-780.76001F, -268.562012F), new Vector2(-780.190002F, -268.273987F), new Vector2(-779.745972F, -267.925995F)); + builder.AddCubicBezier(new Vector2(-779.302002F, -267.578003F), new Vector2(-779.080017F, -267.09201F), new Vector2(-779.080017F, -266.467987F)); + builder.AddCubicBezier(new Vector2(-779.080017F, -265.843994F), new Vector2(-779.356018F, -265.358002F), new Vector2(-779.90802F, -265.01001F)); + builder.AddCubicBezier(new Vector2(-780.460022F, -264.661987F), new Vector2(-781.23999F, -264.488007F), new Vector2(-782.247986F, -264.488007F)); + builder.AddCubicBezier(new Vector2(-783.255981F, -264.488007F), new Vector2(-784.16803F, -264.674011F), new Vector2(-784.984009F, -265.04599F)); + builder.AddCubicBezier(new Vector2(-785.799988F, -265.417999F), new Vector2(-786.52002F, -265.988007F), new Vector2(-787.143982F, -266.756012F)); + builder.AddLine(new Vector2(-789.231995F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-788.703979F, -264.019989F), new Vector2(-788.085999F, -263.462006F), new Vector2(-787.377991F, -262.993988F)); + builder.AddCubicBezier(new Vector2(-786.669983F, -262.526001F), new Vector2(-785.883972F, -262.165985F), new Vector2(-785.02002F, -261.914001F)); + builder.AddCubicBezier(new Vector2(-784.156006F, -261.661987F), new Vector2(-783.244019F, -261.536011F), new Vector2(-782.283997F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-780.364014F, -261.536011F), new Vector2(-778.833984F, -262.003998F), new Vector2(-777.69397F, -262.940002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0714() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-803.038025F, -265.35199F)); + builder.AddCubicBezier(new Vector2(-803.866028F, -265.855988F), new Vector2(-804.502014F, -266.54599F), new Vector2(-804.945984F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-805.390015F, -268.298004F), new Vector2(-805.612F, -269.299988F), new Vector2(-805.612F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-805.612F, -271.579987F), new Vector2(-805.383972F, -272.593994F), new Vector2(-804.927979F, -273.470001F)); + builder.AddCubicBezier(new Vector2(-804.471985F, -274.346008F), new Vector2(-803.835999F, -275.036011F), new Vector2(-803.02002F, -275.540009F)); + builder.AddCubicBezier(new Vector2(-802.203979F, -276.044006F), new Vector2(-801.268005F, -276.29599F), new Vector2(-800.211975F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-799.132019F, -276.29599F), new Vector2(-798.184021F, -276.044006F), new Vector2(-797.367981F, -275.540009F)); + builder.AddCubicBezier(new Vector2(-796.552002F, -275.036011F), new Vector2(-795.909973F, -274.346008F), new Vector2(-795.442017F, -273.470001F)); + builder.AddCubicBezier(new Vector2(-794.973999F, -272.593994F), new Vector2(-794.73999F, -271.59201F), new Vector2(-794.73999F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-794.73999F, -269.312012F), new Vector2(-794.973999F, -268.298004F), new Vector2(-795.442017F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-795.909973F, -266.54599F), new Vector2(-796.552002F, -265.855988F), new Vector2(-797.367981F, -265.35199F)); + builder.AddCubicBezier(new Vector2(-798.184021F, -264.847992F), new Vector2(-799.132019F, -264.596008F), new Vector2(-800.211975F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-801.268005F, -264.596008F), new Vector2(-802.210022F, -264.847992F), new Vector2(-803.038025F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-805.432007F, -261.895996F)); + builder.AddLine(new Vector2(-805.432007F, -266.503998F)); + builder.AddLine(new Vector2(-806.044006F, -270.679993F)); + builder.AddLine(new Vector2(-805.432007F, -274.820007F)); + builder.AddLine(new Vector2(-805.432007F, -287.600006F)); + builder.AddLine(new Vector2(-808.671997F, -287.600006F)); + builder.AddLine(new Vector2(-808.671997F, -261.895996F)); + builder.AddLine(new Vector2(-805.432007F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-795.442017F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-794.182007F, -263.485992F), new Vector2(-793.192017F, -264.548004F), new Vector2(-792.471985F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-791.752014F, -267.235992F), new Vector2(-791.392029F, -268.747986F), new Vector2(-791.392029F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-791.392029F, -272.108002F), new Vector2(-791.752014F, -273.619995F), new Vector2(-792.471985F, -274.963989F)); + builder.AddCubicBezier(new Vector2(-793.192017F, -276.308014F), new Vector2(-794.182007F, -277.376007F), new Vector2(-795.442017F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-796.702026F, -278.959991F), new Vector2(-798.112F, -279.355988F), new Vector2(-799.671997F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-800.94397F, -279.355988F), new Vector2(-802.10199F, -279.085999F), new Vector2(-803.145996F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-804.190002F, -278.006012F), new Vector2(-805.030029F, -277.261993F), new Vector2(-805.666016F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-806.302002F, -275.365997F), new Vector2(-806.656006F, -274.268005F), new Vector2(-806.728027F, -273.019989F)); + builder.AddLine(new Vector2(-806.728027F, -267.872009F)); + builder.AddCubicBezier(new Vector2(-806.656006F, -266.64801F), new Vector2(-806.307983F, -265.556F), new Vector2(-805.684021F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-805.059998F, -263.635986F), new Vector2(-804.226013F, -262.885986F), new Vector2(-803.182007F, -262.346008F)); + builder.AddCubicBezier(new Vector2(-802.138F, -261.806F), new Vector2(-800.968018F, -261.536011F), new Vector2(-799.671997F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-798.112F, -261.536011F), new Vector2(-796.702026F, -261.925995F), new Vector2(-795.442017F, -262.705994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0715() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-813.388F, -261.895996F)); + builder.AddLine(new Vector2(-813.388F, -278.996002F)); + builder.AddLine(new Vector2(-816.664001F, -278.996002F)); + builder.AddLine(new Vector2(-816.664001F, -274.820007F)); + builder.AddLine(new Vector2(-816.052002F, -270.679993F)); + builder.AddLine(new Vector2(-816.664001F, -266.503998F)); + builder.AddLine(new Vector2(-816.664001F, -261.895996F)); + builder.AddLine(new Vector2(-813.388F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-824.692017F, -265.35199F)); + builder.AddCubicBezier(new Vector2(-825.531982F, -265.855988F), new Vector2(-826.185974F, -266.54599F), new Vector2(-826.653992F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-827.122009F, -268.298004F), new Vector2(-827.356018F, -269.312012F), new Vector2(-827.356018F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-827.356018F, -271.59201F), new Vector2(-827.122009F, -272.593994F), new Vector2(-826.653992F, -273.470001F)); + builder.AddCubicBezier(new Vector2(-826.185974F, -274.346008F), new Vector2(-825.538025F, -275.036011F), new Vector2(-824.710022F, -275.540009F)); + builder.AddCubicBezier(new Vector2(-823.882019F, -276.044006F), new Vector2(-822.927979F, -276.29599F), new Vector2(-821.848022F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-820.768005F, -276.29599F), new Vector2(-819.825989F, -276.049988F), new Vector2(-819.021973F, -275.558014F)); + builder.AddCubicBezier(new Vector2(-818.218018F, -275.06601F), new Vector2(-817.588013F, -274.376007F), new Vector2(-817.132019F, -273.488007F)); + builder.AddCubicBezier(new Vector2(-816.676025F, -272.600006F), new Vector2(-816.447998F, -271.579987F), new Vector2(-816.447998F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-816.447998F, -268.723999F), new Vector2(-816.940002F, -267.325989F), new Vector2(-817.924011F, -266.234009F)); + builder.AddCubicBezier(new Vector2(-818.90802F, -265.141998F), new Vector2(-820.203979F, -264.596008F), new Vector2(-821.812012F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-822.892029F, -264.596008F), new Vector2(-823.85199F, -264.847992F), new Vector2(-824.692017F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-818.859985F, -262.346008F)); + builder.AddCubicBezier(new Vector2(-817.828003F, -262.885986F), new Vector2(-817.005981F, -263.635986F), new Vector2(-816.393982F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-815.781982F, -265.556F), new Vector2(-815.440002F, -266.64801F), new Vector2(-815.367981F, -267.872009F)); + builder.AddLine(new Vector2(-815.367981F, -273.019989F)); + builder.AddCubicBezier(new Vector2(-815.440002F, -274.268005F), new Vector2(-815.788025F, -275.365997F), new Vector2(-816.411987F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-817.036011F, -277.261993F), new Vector2(-817.857971F, -278.006012F), new Vector2(-818.877991F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-819.89801F, -279.085999F), new Vector2(-821.05603F, -279.355988F), new Vector2(-822.35199F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-823.935974F, -279.355988F), new Vector2(-825.357971F, -278.959991F), new Vector2(-826.617981F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-827.877991F, -277.376007F), new Vector2(-828.874023F, -276.308014F), new Vector2(-829.606018F, -274.963989F)); + builder.AddCubicBezier(new Vector2(-830.338013F, -273.619995F), new Vector2(-830.703979F, -272.108002F), new Vector2(-830.703979F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-830.703979F, -268.747986F), new Vector2(-830.338013F, -267.235992F), new Vector2(-829.606018F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-828.874023F, -264.548004F), new Vector2(-827.877991F, -263.485992F), new Vector2(-826.617981F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-825.357971F, -261.925995F), new Vector2(-823.935974F, -261.536011F), new Vector2(-822.35199F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-821.05603F, -261.536011F), new Vector2(-819.892029F, -261.806F), new Vector2(-818.859985F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0716() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(803.192017F, -305.096008F)); + builder.AddLine(new Vector2(803.192017F, -322.196014F)); + builder.AddLine(new Vector2(799.952026F, -322.196014F)); + builder.AddLine(new Vector2(799.952026F, -305.096008F)); + builder.AddLine(new Vector2(803.192017F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(815.288025F, -305.096008F)); + builder.AddLine(new Vector2(815.288025F, -315.716003F)); + builder.AddCubicBezier(new Vector2(815.288025F, -316.891998F), new Vector2(815F, -318.002014F), new Vector2(814.424011F, -319.04599F)); + builder.AddCubicBezier(new Vector2(813.848022F, -320.089996F), new Vector2(813.062012F, -320.936005F), new Vector2(812.065979F, -321.584015F)); + builder.AddCubicBezier(new Vector2(811.070007F, -322.231995F), new Vector2(809.924011F, -322.556F), new Vector2(808.627991F, -322.556F)); + builder.AddCubicBezier(new Vector2(807.33197F, -322.556F), new Vector2(806.16803F, -322.261993F), new Vector2(805.135986F, -321.674011F)); + builder.AddCubicBezier(new Vector2(804.104004F, -321.085999F), new Vector2(803.299988F, -320.287994F), new Vector2(802.723999F, -319.279999F)); + builder.AddCubicBezier(new Vector2(802.14801F, -318.272003F), new Vector2(801.859985F, -317.119995F), new Vector2(801.859985F, -315.824005F)); + builder.AddLine(new Vector2(803.192017F, -315.067993F)); + builder.AddCubicBezier(new Vector2(803.192017F, -315.932007F), new Vector2(803.383972F, -316.700012F), new Vector2(803.768005F, -317.372009F)); + builder.AddCubicBezier(new Vector2(804.151978F, -318.044006F), new Vector2(804.679993F, -318.571991F), new Vector2(805.35199F, -318.955994F)); + builder.AddCubicBezier(new Vector2(806.023987F, -319.339996F), new Vector2(806.791992F, -319.532013F), new Vector2(807.656006F, -319.532013F)); + builder.AddCubicBezier(new Vector2(808.952026F, -319.532013F), new Vector2(810.002014F, -319.112F), new Vector2(810.80603F, -318.272003F)); + builder.AddCubicBezier(new Vector2(811.609985F, -317.432007F), new Vector2(812.012024F, -316.364014F), new Vector2(812.012024F, -315.067993F)); + builder.AddLine(new Vector2(812.012024F, -305.096008F)); + builder.AddLine(new Vector2(815.288025F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0717() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(795.236023F, -305.096008F)); + builder.AddLine(new Vector2(795.236023F, -322.196014F)); + builder.AddLine(new Vector2(791.960022F, -322.196014F)); + builder.AddLine(new Vector2(791.960022F, -318.019989F)); + builder.AddLine(new Vector2(792.572021F, -313.880005F)); + builder.AddLine(new Vector2(791.960022F, -309.70401F)); + builder.AddLine(new Vector2(791.960022F, -305.096008F)); + builder.AddLine(new Vector2(795.236023F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(783.932007F, -308.552002F)); + builder.AddCubicBezier(new Vector2(783.09198F, -309.056F), new Vector2(782.437988F, -309.746002F), new Vector2(781.969971F, -310.622009F)); + builder.AddCubicBezier(new Vector2(781.502014F, -311.497986F), new Vector2(781.268005F, -312.511993F), new Vector2(781.268005F, -313.664001F)); + builder.AddCubicBezier(new Vector2(781.268005F, -314.791992F), new Vector2(781.502014F, -315.794006F), new Vector2(781.969971F, -316.670013F)); + builder.AddCubicBezier(new Vector2(782.437988F, -317.54599F), new Vector2(783.085999F, -318.235992F), new Vector2(783.914001F, -318.73999F)); + builder.AddCubicBezier(new Vector2(784.742004F, -319.243988F), new Vector2(785.695984F, -319.496002F), new Vector2(786.776001F, -319.496002F)); + builder.AddCubicBezier(new Vector2(787.856018F, -319.496002F), new Vector2(788.797974F, -319.25F), new Vector2(789.60199F, -318.757996F)); + builder.AddCubicBezier(new Vector2(790.406006F, -318.265991F), new Vector2(791.036011F, -317.575989F), new Vector2(791.492004F, -316.687988F)); + builder.AddCubicBezier(new Vector2(791.947998F, -315.799988F), new Vector2(792.176025F, -314.779999F), new Vector2(792.176025F, -313.627991F)); + builder.AddCubicBezier(new Vector2(792.176025F, -311.924011F), new Vector2(791.684021F, -310.526001F), new Vector2(790.700012F, -309.43399F)); + builder.AddCubicBezier(new Vector2(789.716003F, -308.34201F), new Vector2(788.419983F, -307.79599F), new Vector2(786.812012F, -307.79599F)); + builder.AddCubicBezier(new Vector2(785.731995F, -307.79599F), new Vector2(784.771973F, -308.048004F), new Vector2(783.932007F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(789.763977F, -305.54599F)); + builder.AddCubicBezier(new Vector2(790.796021F, -306.085999F), new Vector2(791.617981F, -306.835999F), new Vector2(792.22998F, -307.79599F)); + builder.AddCubicBezier(new Vector2(792.84198F, -308.756012F), new Vector2(793.184021F, -309.847992F), new Vector2(793.255981F, -311.071991F)); + builder.AddLine(new Vector2(793.255981F, -316.220001F)); + builder.AddCubicBezier(new Vector2(793.184021F, -317.467987F), new Vector2(792.835999F, -318.56601F), new Vector2(792.211975F, -319.514008F)); + builder.AddCubicBezier(new Vector2(791.588013F, -320.462006F), new Vector2(790.765991F, -321.205994F), new Vector2(789.745972F, -321.746002F)); + builder.AddCubicBezier(new Vector2(788.726013F, -322.286011F), new Vector2(787.567993F, -322.556F), new Vector2(786.271973F, -322.556F)); + builder.AddCubicBezier(new Vector2(784.687988F, -322.556F), new Vector2(783.265991F, -322.160004F), new Vector2(782.005981F, -321.368011F)); + builder.AddCubicBezier(new Vector2(780.745972F, -320.575989F), new Vector2(779.75F, -319.507996F), new Vector2(779.018005F, -318.164001F)); + builder.AddCubicBezier(new Vector2(778.286011F, -316.820007F), new Vector2(777.919983F, -315.308014F), new Vector2(777.919983F, -313.627991F)); + builder.AddCubicBezier(new Vector2(777.919983F, -311.947998F), new Vector2(778.286011F, -310.436005F), new Vector2(779.018005F, -309.09201F)); + builder.AddCubicBezier(new Vector2(779.75F, -307.747986F), new Vector2(780.745972F, -306.686005F), new Vector2(782.005981F, -305.906006F)); + builder.AddCubicBezier(new Vector2(783.265991F, -305.126007F), new Vector2(784.687988F, -304.735992F), new Vector2(786.271973F, -304.735992F)); + builder.AddCubicBezier(new Vector2(787.567993F, -304.735992F), new Vector2(788.731995F, -305.006012F), new Vector2(789.763977F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0718() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(766.83197F, -330.799988F)); + builder.AddLine(new Vector2(763.55603F, -330.799988F)); + builder.AddLine(new Vector2(763.55603F, -318.019989F)); + builder.AddLine(new Vector2(764.16803F, -313.880005F)); + builder.AddLine(new Vector2(763.55603F, -309.70401F)); + builder.AddLine(new Vector2(763.55603F, -305.096008F)); + builder.AddLine(new Vector2(766.83197F, -305.096008F)); + builder.AddLine(new Vector2(766.83197F, -330.799988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(755.51001F, -308.533997F)); + builder.AddCubicBezier(new Vector2(754.682007F, -309.026001F), new Vector2(754.033997F, -309.716003F), new Vector2(753.565979F, -310.604004F)); + builder.AddCubicBezier(new Vector2(753.098022F, -311.492004F), new Vector2(752.864014F, -312.511993F), new Vector2(752.864014F, -313.664001F)); + builder.AddCubicBezier(new Vector2(752.864014F, -314.81601F), new Vector2(753.098022F, -315.829987F), new Vector2(753.565979F, -316.705994F)); + builder.AddCubicBezier(new Vector2(754.033997F, -317.582001F), new Vector2(754.676025F, -318.265991F), new Vector2(755.492004F, -318.757996F)); + builder.AddCubicBezier(new Vector2(756.307983F, -319.25F), new Vector2(757.255981F, -319.496002F), new Vector2(758.335999F, -319.496002F)); + builder.AddCubicBezier(new Vector2(759.416016F, -319.496002F), new Vector2(760.364014F, -319.243988F), new Vector2(761.179993F, -318.73999F)); + builder.AddCubicBezier(new Vector2(761.995972F, -318.235992F), new Vector2(762.632019F, -317.54599F), new Vector2(763.088013F, -316.670013F)); + builder.AddCubicBezier(new Vector2(763.544006F, -315.794006F), new Vector2(763.771973F, -314.779999F), new Vector2(763.771973F, -313.627991F)); + builder.AddCubicBezier(new Vector2(763.771973F, -312.5F), new Vector2(763.544006F, -311.497986F), new Vector2(763.088013F, -310.622009F)); + builder.AddCubicBezier(new Vector2(762.632019F, -309.746002F), new Vector2(761.995972F, -309.056F), new Vector2(761.179993F, -308.552002F)); + builder.AddCubicBezier(new Vector2(760.364014F, -308.048004F), new Vector2(759.416016F, -307.79599F), new Vector2(758.335999F, -307.79599F)); + builder.AddCubicBezier(new Vector2(757.280029F, -307.79599F), new Vector2(756.338013F, -308.041992F), new Vector2(755.51001F, -308.533997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(761.323975F, -305.54599F)); + builder.AddCubicBezier(new Vector2(762.356018F, -306.085999F), new Vector2(763.184021F, -306.835999F), new Vector2(763.807983F, -307.79599F)); + builder.AddCubicBezier(new Vector2(764.432007F, -308.756012F), new Vector2(764.780029F, -309.847992F), new Vector2(764.85199F, -311.071991F)); + builder.AddLine(new Vector2(764.85199F, -316.220001F)); + builder.AddCubicBezier(new Vector2(764.780029F, -317.467987F), new Vector2(764.426025F, -318.56601F), new Vector2(763.789978F, -319.514008F)); + builder.AddCubicBezier(new Vector2(763.153992F, -320.462006F), new Vector2(762.320007F, -321.205994F), new Vector2(761.288025F, -321.746002F)); + builder.AddCubicBezier(new Vector2(760.255981F, -322.286011F), new Vector2(759.09198F, -322.556F), new Vector2(757.796021F, -322.556F)); + builder.AddCubicBezier(new Vector2(756.236023F, -322.556F), new Vector2(754.83197F, -322.160004F), new Vector2(753.583984F, -321.368011F)); + builder.AddCubicBezier(new Vector2(752.335999F, -320.575989F), new Vector2(751.346008F, -319.507996F), new Vector2(750.614014F, -318.164001F)); + builder.AddCubicBezier(new Vector2(749.882019F, -316.820007F), new Vector2(749.515991F, -315.308014F), new Vector2(749.515991F, -313.627991F)); + builder.AddCubicBezier(new Vector2(749.515991F, -311.947998F), new Vector2(749.882019F, -310.436005F), new Vector2(750.614014F, -309.09201F)); + builder.AddCubicBezier(new Vector2(751.346008F, -307.747986F), new Vector2(752.335999F, -306.686005F), new Vector2(753.583984F, -305.906006F)); + builder.AddCubicBezier(new Vector2(754.83197F, -305.126007F), new Vector2(756.236023F, -304.735992F), new Vector2(757.796021F, -304.735992F)); + builder.AddCubicBezier(new Vector2(759.116028F, -304.735992F), new Vector2(760.291992F, -305.006012F), new Vector2(761.323975F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0719() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(734.107971F, -305.096008F)); + builder.AddLine(new Vector2(734.107971F, -322.196014F)); + builder.AddLine(new Vector2(730.867981F, -322.196014F)); + builder.AddLine(new Vector2(730.867981F, -305.096008F)); + builder.AddLine(new Vector2(734.107971F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(746.203979F, -305.096008F)); + builder.AddLine(new Vector2(746.203979F, -315.716003F)); + builder.AddCubicBezier(new Vector2(746.203979F, -316.891998F), new Vector2(745.916016F, -318.002014F), new Vector2(745.340027F, -319.04599F)); + builder.AddCubicBezier(new Vector2(744.763977F, -320.089996F), new Vector2(743.978027F, -320.936005F), new Vector2(742.981995F, -321.584015F)); + builder.AddCubicBezier(new Vector2(741.986023F, -322.231995F), new Vector2(740.840027F, -322.556F), new Vector2(739.544006F, -322.556F)); + builder.AddCubicBezier(new Vector2(738.247986F, -322.556F), new Vector2(737.083984F, -322.261993F), new Vector2(736.052002F, -321.674011F)); + builder.AddCubicBezier(new Vector2(735.02002F, -321.085999F), new Vector2(734.216003F, -320.287994F), new Vector2(733.640015F, -319.279999F)); + builder.AddCubicBezier(new Vector2(733.064026F, -318.272003F), new Vector2(732.776001F, -317.119995F), new Vector2(732.776001F, -315.824005F)); + builder.AddLine(new Vector2(734.107971F, -315.067993F)); + builder.AddCubicBezier(new Vector2(734.107971F, -315.932007F), new Vector2(734.299988F, -316.700012F), new Vector2(734.684021F, -317.372009F)); + builder.AddCubicBezier(new Vector2(735.067993F, -318.044006F), new Vector2(735.596008F, -318.571991F), new Vector2(736.268005F, -318.955994F)); + builder.AddCubicBezier(new Vector2(736.940002F, -319.339996F), new Vector2(737.708008F, -319.532013F), new Vector2(738.572021F, -319.532013F)); + builder.AddCubicBezier(new Vector2(739.867981F, -319.532013F), new Vector2(740.91803F, -319.112F), new Vector2(741.721985F, -318.272003F)); + builder.AddCubicBezier(new Vector2(742.526001F, -317.432007F), new Vector2(742.927979F, -316.364014F), new Vector2(742.927979F, -315.067993F)); + builder.AddLine(new Vector2(742.927979F, -305.096008F)); + builder.AddLine(new Vector2(746.203979F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0720() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(726.151978F, -305.096008F)); + builder.AddLine(new Vector2(726.151978F, -322.196014F)); + builder.AddLine(new Vector2(722.875977F, -322.196014F)); + builder.AddLine(new Vector2(722.875977F, -318.019989F)); + builder.AddLine(new Vector2(723.487976F, -313.880005F)); + builder.AddLine(new Vector2(722.875977F, -309.70401F)); + builder.AddLine(new Vector2(722.875977F, -305.096008F)); + builder.AddLine(new Vector2(726.151978F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(714.848022F, -308.552002F)); + builder.AddCubicBezier(new Vector2(714.007996F, -309.056F), new Vector2(713.354004F, -309.746002F), new Vector2(712.885986F, -310.622009F)); + builder.AddCubicBezier(new Vector2(712.41803F, -311.497986F), new Vector2(712.184021F, -312.511993F), new Vector2(712.184021F, -313.664001F)); + builder.AddCubicBezier(new Vector2(712.184021F, -314.791992F), new Vector2(712.41803F, -315.794006F), new Vector2(712.885986F, -316.670013F)); + builder.AddCubicBezier(new Vector2(713.354004F, -317.54599F), new Vector2(714.002014F, -318.235992F), new Vector2(714.830017F, -318.73999F)); + builder.AddCubicBezier(new Vector2(715.65802F, -319.243988F), new Vector2(716.612F, -319.496002F), new Vector2(717.692017F, -319.496002F)); + builder.AddCubicBezier(new Vector2(718.771973F, -319.496002F), new Vector2(719.713989F, -319.25F), new Vector2(720.518005F, -318.757996F)); + builder.AddCubicBezier(new Vector2(721.322021F, -318.265991F), new Vector2(721.952026F, -317.575989F), new Vector2(722.40802F, -316.687988F)); + builder.AddCubicBezier(new Vector2(722.864014F, -315.799988F), new Vector2(723.09198F, -314.779999F), new Vector2(723.09198F, -313.627991F)); + builder.AddCubicBezier(new Vector2(723.09198F, -311.924011F), new Vector2(722.599976F, -310.526001F), new Vector2(721.616028F, -309.43399F)); + builder.AddCubicBezier(new Vector2(720.632019F, -308.34201F), new Vector2(719.335999F, -307.79599F), new Vector2(717.728027F, -307.79599F)); + builder.AddCubicBezier(new Vector2(716.64801F, -307.79599F), new Vector2(715.687988F, -308.048004F), new Vector2(714.848022F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(720.679993F, -305.54599F)); + builder.AddCubicBezier(new Vector2(721.711975F, -306.085999F), new Vector2(722.533997F, -306.835999F), new Vector2(723.145996F, -307.79599F)); + builder.AddCubicBezier(new Vector2(723.757996F, -308.756012F), new Vector2(724.099976F, -309.847992F), new Vector2(724.171997F, -311.071991F)); + builder.AddLine(new Vector2(724.171997F, -316.220001F)); + builder.AddCubicBezier(new Vector2(724.099976F, -317.467987F), new Vector2(723.752014F, -318.56601F), new Vector2(723.127991F, -319.514008F)); + builder.AddCubicBezier(new Vector2(722.504028F, -320.462006F), new Vector2(721.682007F, -321.205994F), new Vector2(720.661987F, -321.746002F)); + builder.AddCubicBezier(new Vector2(719.642029F, -322.286011F), new Vector2(718.484009F, -322.556F), new Vector2(717.187988F, -322.556F)); + builder.AddCubicBezier(new Vector2(715.604004F, -322.556F), new Vector2(714.182007F, -322.160004F), new Vector2(712.921997F, -321.368011F)); + builder.AddCubicBezier(new Vector2(711.661987F, -320.575989F), new Vector2(710.666016F, -319.507996F), new Vector2(709.934021F, -318.164001F)); + builder.AddCubicBezier(new Vector2(709.202026F, -316.820007F), new Vector2(708.835999F, -315.308014F), new Vector2(708.835999F, -313.627991F)); + builder.AddCubicBezier(new Vector2(708.835999F, -311.947998F), new Vector2(709.202026F, -310.436005F), new Vector2(709.934021F, -309.09201F)); + builder.AddCubicBezier(new Vector2(710.666016F, -307.747986F), new Vector2(711.661987F, -306.686005F), new Vector2(712.921997F, -305.906006F)); + builder.AddCubicBezier(new Vector2(714.182007F, -305.126007F), new Vector2(715.604004F, -304.735992F), new Vector2(717.187988F, -304.735992F)); + builder.AddCubicBezier(new Vector2(718.484009F, -304.735992F), new Vector2(719.64801F, -305.006012F), new Vector2(720.679993F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0721() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(697.117981F, -306.140015F)); + builder.AddCubicBezier(new Vector2(698.257996F, -307.075989F), new Vector2(698.828003F, -308.347992F), new Vector2(698.828003F, -309.955994F)); + builder.AddCubicBezier(new Vector2(698.828003F, -311.011993F), new Vector2(698.606018F, -311.864014F), new Vector2(698.161987F, -312.511993F)); + builder.AddCubicBezier(new Vector2(697.718018F, -313.160004F), new Vector2(697.14801F, -313.675995F), new Vector2(696.452026F, -314.059998F)); + builder.AddCubicBezier(new Vector2(695.755981F, -314.444F), new Vector2(695.023987F, -314.75F), new Vector2(694.255981F, -314.977997F)); + builder.AddCubicBezier(new Vector2(693.487976F, -315.205994F), new Vector2(692.75F, -315.428009F), new Vector2(692.041992F, -315.644012F)); + builder.AddCubicBezier(new Vector2(691.333984F, -315.859985F), new Vector2(690.763977F, -316.123993F), new Vector2(690.33197F, -316.436005F)); + builder.AddCubicBezier(new Vector2(689.900024F, -316.747986F), new Vector2(689.684021F, -317.191986F), new Vector2(689.684021F, -317.768005F)); + builder.AddCubicBezier(new Vector2(689.684021F, -318.320007F), new Vector2(689.929993F, -318.764008F), new Vector2(690.421997F, -319.100006F)); + builder.AddCubicBezier(new Vector2(690.914001F, -319.436005F), new Vector2(691.627991F, -319.604004F), new Vector2(692.564026F, -319.604004F)); + builder.AddCubicBezier(new Vector2(693.452026F, -319.604004F), new Vector2(694.244019F, -319.436005F), new Vector2(694.940002F, -319.100006F)); + builder.AddCubicBezier(new Vector2(695.635986F, -318.764008F), new Vector2(696.236023F, -318.283997F), new Vector2(696.73999F, -317.660004F)); + builder.AddLine(new Vector2(698.828003F, -319.747986F)); + builder.AddCubicBezier(new Vector2(698.156006F, -320.68399F), new Vector2(697.297974F, -321.385986F), new Vector2(696.254028F, -321.854004F)); + builder.AddCubicBezier(new Vector2(695.210022F, -322.321991F), new Vector2(694.015991F, -322.556F), new Vector2(692.671997F, -322.556F)); + builder.AddCubicBezier(new Vector2(691.400024F, -322.556F), new Vector2(690.307983F, -322.35199F), new Vector2(689.395996F, -321.944F)); + builder.AddCubicBezier(new Vector2(688.484009F, -321.536011F), new Vector2(687.781982F, -320.95401F), new Vector2(687.289978F, -320.197998F)); + builder.AddCubicBezier(new Vector2(686.797974F, -319.441986F), new Vector2(686.552002F, -318.548004F), new Vector2(686.552002F, -317.515991F)); + builder.AddCubicBezier(new Vector2(686.552002F, -316.484009F), new Vector2(686.773987F, -315.649994F), new Vector2(687.218018F, -315.014008F)); + builder.AddCubicBezier(new Vector2(687.661987F, -314.377991F), new Vector2(688.231995F, -313.880005F), new Vector2(688.927979F, -313.519989F)); + builder.AddCubicBezier(new Vector2(689.624023F, -313.160004F), new Vector2(690.362F, -312.872009F), new Vector2(691.142029F, -312.656006F)); + builder.AddCubicBezier(new Vector2(691.921997F, -312.440002F), new Vector2(692.659973F, -312.217987F), new Vector2(693.356018F, -311.98999F)); + builder.AddCubicBezier(new Vector2(694.052002F, -311.761993F), new Vector2(694.622009F, -311.473999F), new Vector2(695.065979F, -311.126007F)); + builder.AddCubicBezier(new Vector2(695.51001F, -310.778015F), new Vector2(695.731995F, -310.291992F), new Vector2(695.731995F, -309.667999F)); + builder.AddCubicBezier(new Vector2(695.731995F, -309.044006F), new Vector2(695.455994F, -308.558014F), new Vector2(694.903992F, -308.209991F)); + builder.AddCubicBezier(new Vector2(694.35199F, -307.862F), new Vector2(693.572021F, -307.687988F), new Vector2(692.564026F, -307.687988F)); + builder.AddCubicBezier(new Vector2(691.55603F, -307.687988F), new Vector2(690.643982F, -307.873993F), new Vector2(689.828003F, -308.246002F)); + builder.AddCubicBezier(new Vector2(689.012024F, -308.618011F), new Vector2(688.291992F, -309.187988F), new Vector2(687.66803F, -309.955994F)); + builder.AddLine(new Vector2(685.580017F, -307.868011F)); + builder.AddCubicBezier(new Vector2(686.107971F, -307.220001F), new Vector2(686.726013F, -306.661987F), new Vector2(687.434021F, -306.194F)); + builder.AddCubicBezier(new Vector2(688.142029F, -305.726013F), new Vector2(688.927979F, -305.365997F), new Vector2(689.791992F, -305.114014F)); + builder.AddCubicBezier(new Vector2(690.656006F, -304.862F), new Vector2(691.567993F, -304.735992F), new Vector2(692.528015F, -304.735992F)); + builder.AddCubicBezier(new Vector2(694.447998F, -304.735992F), new Vector2(695.978027F, -305.20401F), new Vector2(697.117981F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0722() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(670.604004F, -305.096008F)); + builder.AddLine(new Vector2(670.604004F, -322.196014F)); + builder.AddLine(new Vector2(667.364014F, -322.196014F)); + builder.AddLine(new Vector2(667.364014F, -305.096008F)); + builder.AddLine(new Vector2(670.604004F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(682.700012F, -305.096008F)); + builder.AddLine(new Vector2(682.700012F, -315.716003F)); + builder.AddCubicBezier(new Vector2(682.700012F, -316.891998F), new Vector2(682.411987F, -318.002014F), new Vector2(681.835999F, -319.04599F)); + builder.AddCubicBezier(new Vector2(681.26001F, -320.089996F), new Vector2(680.473999F, -320.936005F), new Vector2(679.478027F, -321.584015F)); + builder.AddCubicBezier(new Vector2(678.481995F, -322.231995F), new Vector2(677.335999F, -322.556F), new Vector2(676.039978F, -322.556F)); + builder.AddCubicBezier(new Vector2(674.744019F, -322.556F), new Vector2(673.580017F, -322.261993F), new Vector2(672.547974F, -321.674011F)); + builder.AddCubicBezier(new Vector2(671.515991F, -321.085999F), new Vector2(670.711975F, -320.287994F), new Vector2(670.135986F, -319.279999F)); + builder.AddCubicBezier(new Vector2(669.559998F, -318.272003F), new Vector2(669.271973F, -317.119995F), new Vector2(669.271973F, -315.824005F)); + builder.AddLine(new Vector2(670.604004F, -315.067993F)); + builder.AddCubicBezier(new Vector2(670.604004F, -315.932007F), new Vector2(670.796021F, -316.700012F), new Vector2(671.179993F, -317.372009F)); + builder.AddCubicBezier(new Vector2(671.564026F, -318.044006F), new Vector2(672.09198F, -318.571991F), new Vector2(672.763977F, -318.955994F)); + builder.AddCubicBezier(new Vector2(673.435974F, -319.339996F), new Vector2(674.203979F, -319.532013F), new Vector2(675.067993F, -319.532013F)); + builder.AddCubicBezier(new Vector2(676.364014F, -319.532013F), new Vector2(677.414001F, -319.112F), new Vector2(678.218018F, -318.272003F)); + builder.AddCubicBezier(new Vector2(679.021973F, -317.432007F), new Vector2(679.424011F, -316.364014F), new Vector2(679.424011F, -315.067993F)); + builder.AddLine(new Vector2(679.424011F, -305.096008F)); + builder.AddLine(new Vector2(682.700012F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0723() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(659.768005F, -305.492004F)); + builder.AddCubicBezier(new Vector2(660.94397F, -305.996002F), new Vector2(661.952026F, -306.727997F), new Vector2(662.791992F, -307.687988F)); + builder.AddLine(new Vector2(660.703979F, -309.812012F)); + builder.AddCubicBezier(new Vector2(660.127991F, -309.140015F), new Vector2(659.437988F, -308.635986F), new Vector2(658.633972F, -308.299988F)); + builder.AddCubicBezier(new Vector2(657.830017F, -307.963989F), new Vector2(656.947998F, -307.79599F), new Vector2(655.987976F, -307.79599F)); + builder.AddCubicBezier(new Vector2(654.835999F, -307.79599F), new Vector2(653.815979F, -308.041992F), new Vector2(652.927979F, -308.533997F)); + builder.AddCubicBezier(new Vector2(652.039978F, -309.026001F), new Vector2(651.356018F, -309.721985F), new Vector2(650.875977F, -310.622009F)); + builder.AddCubicBezier(new Vector2(650.395996F, -311.522003F), new Vector2(650.156006F, -312.571991F), new Vector2(650.156006F, -313.772003F)); + builder.AddCubicBezier(new Vector2(650.156006F, -314.947998F), new Vector2(650.383972F, -315.967987F), new Vector2(650.840027F, -316.832001F)); + builder.AddCubicBezier(new Vector2(651.296021F, -317.696014F), new Vector2(651.94397F, -318.368011F), new Vector2(652.783997F, -318.847992F)); + builder.AddCubicBezier(new Vector2(653.624023F, -319.328003F), new Vector2(654.596008F, -319.567993F), new Vector2(655.700012F, -319.567993F)); + builder.AddCubicBezier(new Vector2(656.755981F, -319.567993F), new Vector2(657.656006F, -319.346008F), new Vector2(658.400024F, -318.902008F)); + builder.AddCubicBezier(new Vector2(659.143982F, -318.458008F), new Vector2(659.719971F, -317.834015F), new Vector2(660.127991F, -317.029999F)); + builder.AddCubicBezier(new Vector2(660.536011F, -316.226013F), new Vector2(660.73999F, -315.247986F), new Vector2(660.73999F, -314.096008F)); + builder.AddLine(new Vector2(661.927979F, -315.140015F)); + builder.AddLine(new Vector2(649.219971F, -315.140015F)); + builder.AddLine(new Vector2(649.219971F, -312.440002F)); + builder.AddLine(new Vector2(663.656006F, -312.440002F)); + builder.AddCubicBezier(new Vector2(663.728027F, -312.776001F), new Vector2(663.776001F, -313.082001F), new Vector2(663.799988F, -313.358002F)); + builder.AddCubicBezier(new Vector2(663.823975F, -313.634003F), new Vector2(663.835999F, -313.891998F), new Vector2(663.835999F, -314.131989F)); + builder.AddCubicBezier(new Vector2(663.835999F, -315.764008F), new Vector2(663.494019F, -317.216003F), new Vector2(662.809998F, -318.488007F)); + builder.AddCubicBezier(new Vector2(662.125977F, -319.76001F), new Vector2(661.171997F, -320.756012F), new Vector2(659.947998F, -321.476013F)); + builder.AddCubicBezier(new Vector2(658.723999F, -322.196014F), new Vector2(657.33197F, -322.556F), new Vector2(655.771973F, -322.556F)); + builder.AddCubicBezier(new Vector2(654.116028F, -322.556F), new Vector2(652.622009F, -322.165985F), new Vector2(651.289978F, -321.385986F)); + builder.AddCubicBezier(new Vector2(649.958008F, -320.605988F), new Vector2(648.901978F, -319.544006F), new Vector2(648.122009F, -318.200012F)); + builder.AddCubicBezier(new Vector2(647.34198F, -316.855988F), new Vector2(646.952026F, -315.343994F), new Vector2(646.952026F, -313.664001F)); + builder.AddCubicBezier(new Vector2(646.952026F, -311.959991F), new Vector2(647.348022F, -310.436005F), new Vector2(648.140015F, -309.09201F)); + builder.AddCubicBezier(new Vector2(648.932007F, -307.747986F), new Vector2(650.005981F, -306.686005F), new Vector2(651.362F, -305.906006F)); + builder.AddCubicBezier(new Vector2(652.718018F, -305.126007F), new Vector2(654.26001F, -304.735992F), new Vector2(655.987976F, -304.735992F)); + builder.AddCubicBezier(new Vector2(657.33197F, -304.735992F), new Vector2(658.59198F, -304.988007F), new Vector2(659.768005F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0724() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(641.911987F, -319.243988F)); + builder.AddLine(new Vector2(644.900024F, -320.432007F)); + builder.AddLine(new Vector2(644.900024F, -322.196014F)); + builder.AddLine(new Vector2(631.544006F, -322.196014F)); + builder.AddLine(new Vector2(631.544006F, -319.243988F)); + builder.AddLine(new Vector2(641.911987F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(644.684021F, -305.096008F)); + builder.AddLine(new Vector2(644.684021F, -308.048004F)); + builder.AddLine(new Vector2(633.812012F, -308.048004F)); + builder.AddLine(new Vector2(630.895996F, -306.859985F)); + builder.AddLine(new Vector2(630.895996F, -305.096008F)); + builder.AddLine(new Vector2(644.684021F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(634.747986F, -306.859985F)); + builder.AddLine(new Vector2(644.900024F, -320.432007F)); + builder.AddLine(new Vector2(641.083984F, -320.432007F)); + builder.AddLine(new Vector2(630.895996F, -306.859985F)); + builder.AddLine(new Vector2(634.747986F, -306.859985F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0725() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(627.367981F, -326.209991F)); + builder.AddCubicBezier(new Vector2(627.752014F, -326.605988F), new Vector2(627.94397F, -327.104004F), new Vector2(627.94397F, -327.70401F)); + builder.AddCubicBezier(new Vector2(627.94397F, -328.279999F), new Vector2(627.752014F, -328.765991F), new Vector2(627.367981F, -329.161987F)); + builder.AddCubicBezier(new Vector2(626.984009F, -329.558014F), new Vector2(626.492004F, -329.756012F), new Vector2(625.892029F, -329.756012F)); + builder.AddCubicBezier(new Vector2(625.291992F, -329.756012F), new Vector2(624.799988F, -329.558014F), new Vector2(624.416016F, -329.161987F)); + builder.AddCubicBezier(new Vector2(624.031982F, -328.765991F), new Vector2(623.840027F, -328.279999F), new Vector2(623.840027F, -327.70401F)); + builder.AddCubicBezier(new Vector2(623.840027F, -327.104004F), new Vector2(624.031982F, -326.605988F), new Vector2(624.416016F, -326.209991F)); + builder.AddCubicBezier(new Vector2(624.799988F, -325.813995F), new Vector2(625.291992F, -325.615997F), new Vector2(625.892029F, -325.615997F)); + builder.AddCubicBezier(new Vector2(626.492004F, -325.615997F), new Vector2(626.984009F, -325.813995F), new Vector2(627.367981F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(627.512024F, -305.096008F)); + builder.AddLine(new Vector2(627.512024F, -322.196014F)); + builder.AddLine(new Vector2(624.236023F, -322.196014F)); + builder.AddLine(new Vector2(624.236023F, -305.096008F)); + builder.AddLine(new Vector2(627.512024F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0726() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(621.067993F, -319.243988F)); + builder.AddLine(new Vector2(621.067993F, -322.196014F)); + builder.AddLine(new Vector2(609.403992F, -322.196014F)); + builder.AddLine(new Vector2(609.403992F, -319.243988F)); + builder.AddLine(new Vector2(621.067993F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(616.856018F, -305.096008F)); + builder.AddLine(new Vector2(616.856018F, -329.359985F)); + builder.AddLine(new Vector2(613.616028F, -329.359985F)); + builder.AddLine(new Vector2(613.616028F, -305.096008F)); + builder.AddLine(new Vector2(616.856018F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0727() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(606.05603F, -326.209991F)); + builder.AddCubicBezier(new Vector2(606.440002F, -326.605988F), new Vector2(606.632019F, -327.104004F), new Vector2(606.632019F, -327.70401F)); + builder.AddCubicBezier(new Vector2(606.632019F, -328.279999F), new Vector2(606.440002F, -328.765991F), new Vector2(606.05603F, -329.161987F)); + builder.AddCubicBezier(new Vector2(605.671997F, -329.558014F), new Vector2(605.179993F, -329.756012F), new Vector2(604.580017F, -329.756012F)); + builder.AddCubicBezier(new Vector2(603.97998F, -329.756012F), new Vector2(603.487976F, -329.558014F), new Vector2(603.104004F, -329.161987F)); + builder.AddCubicBezier(new Vector2(602.719971F, -328.765991F), new Vector2(602.528015F, -328.279999F), new Vector2(602.528015F, -327.70401F)); + builder.AddCubicBezier(new Vector2(602.528015F, -327.104004F), new Vector2(602.719971F, -326.605988F), new Vector2(603.104004F, -326.209991F)); + builder.AddCubicBezier(new Vector2(603.487976F, -325.813995F), new Vector2(603.97998F, -325.615997F), new Vector2(604.580017F, -325.615997F)); + builder.AddCubicBezier(new Vector2(605.179993F, -325.615997F), new Vector2(605.671997F, -325.813995F), new Vector2(606.05603F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(606.200012F, -305.096008F)); + builder.AddLine(new Vector2(606.200012F, -322.196014F)); + builder.AddLine(new Vector2(602.924011F, -322.196014F)); + builder.AddLine(new Vector2(602.924011F, -305.096008F)); + builder.AddLine(new Vector2(606.200012F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0728() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(596.822021F, -305.492004F)); + builder.AddCubicBezier(new Vector2(597.961975F, -305.996002F), new Vector2(598.927979F, -306.70401F), new Vector2(599.719971F, -307.615997F)); + builder.AddLine(new Vector2(597.596008F, -309.776001F)); + builder.AddCubicBezier(new Vector2(597.044006F, -309.152008F), new Vector2(596.390015F, -308.678009F), new Vector2(595.633972F, -308.354004F)); + builder.AddCubicBezier(new Vector2(594.877991F, -308.029999F), new Vector2(594.044006F, -307.868011F), new Vector2(593.132019F, -307.868011F)); + builder.AddCubicBezier(new Vector2(592.052002F, -307.868011F), new Vector2(591.09198F, -308.119995F), new Vector2(590.252014F, -308.623993F)); + builder.AddCubicBezier(new Vector2(589.411987F, -309.127991F), new Vector2(588.752014F, -309.812012F), new Vector2(588.271973F, -310.675995F)); + builder.AddCubicBezier(new Vector2(587.791992F, -311.540009F), new Vector2(587.552002F, -312.536011F), new Vector2(587.552002F, -313.664001F)); + builder.AddCubicBezier(new Vector2(587.552002F, -314.791992F), new Vector2(587.791992F, -315.787994F), new Vector2(588.271973F, -316.652008F)); + builder.AddCubicBezier(new Vector2(588.752014F, -317.515991F), new Vector2(589.411987F, -318.194F), new Vector2(590.252014F, -318.686005F)); + builder.AddCubicBezier(new Vector2(591.09198F, -319.178009F), new Vector2(592.052002F, -319.424011F), new Vector2(593.132019F, -319.424011F)); + builder.AddCubicBezier(new Vector2(594.02002F, -319.424011F), new Vector2(594.848022F, -319.261993F), new Vector2(595.616028F, -318.937988F)); + builder.AddCubicBezier(new Vector2(596.383972F, -318.614014F), new Vector2(597.031982F, -318.140015F), new Vector2(597.559998F, -317.515991F)); + builder.AddLine(new Vector2(599.719971F, -319.675995F)); + builder.AddCubicBezier(new Vector2(598.903992F, -320.612F), new Vector2(597.932007F, -321.325989F), new Vector2(596.804016F, -321.817993F)); + builder.AddCubicBezier(new Vector2(595.676025F, -322.309998F), new Vector2(594.452026F, -322.556F), new Vector2(593.132019F, -322.556F)); + builder.AddCubicBezier(new Vector2(591.452026F, -322.556F), new Vector2(589.934021F, -322.165985F), new Vector2(588.578003F, -321.385986F)); + builder.AddCubicBezier(new Vector2(587.221985F, -320.605988F), new Vector2(586.153992F, -319.544006F), new Vector2(585.374023F, -318.200012F)); + builder.AddCubicBezier(new Vector2(584.593994F, -316.855988F), new Vector2(584.203979F, -315.343994F), new Vector2(584.203979F, -313.664001F)); + builder.AddCubicBezier(new Vector2(584.203979F, -312.007996F), new Vector2(584.593994F, -310.502014F), new Vector2(585.374023F, -309.145996F)); + builder.AddCubicBezier(new Vector2(586.153992F, -307.790009F), new Vector2(587.221985F, -306.716003F), new Vector2(588.578003F, -305.924011F)); + builder.AddCubicBezier(new Vector2(589.934021F, -305.131989F), new Vector2(591.452026F, -304.735992F), new Vector2(593.132019F, -304.735992F)); + builder.AddCubicBezier(new Vector2(594.452026F, -304.735992F), new Vector2(595.682007F, -304.988007F), new Vector2(596.822021F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0729() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(570.271973F, -305.492004F)); + builder.AddCubicBezier(new Vector2(571.447998F, -305.996002F), new Vector2(572.455994F, -306.727997F), new Vector2(573.296021F, -307.687988F)); + builder.AddLine(new Vector2(571.208008F, -309.812012F)); + builder.AddCubicBezier(new Vector2(570.632019F, -309.140015F), new Vector2(569.942017F, -308.635986F), new Vector2(569.138F, -308.299988F)); + builder.AddCubicBezier(new Vector2(568.333984F, -307.963989F), new Vector2(567.452026F, -307.79599F), new Vector2(566.492004F, -307.79599F)); + builder.AddCubicBezier(new Vector2(565.340027F, -307.79599F), new Vector2(564.320007F, -308.041992F), new Vector2(563.432007F, -308.533997F)); + builder.AddCubicBezier(new Vector2(562.544006F, -309.026001F), new Vector2(561.859985F, -309.721985F), new Vector2(561.380005F, -310.622009F)); + builder.AddCubicBezier(new Vector2(560.900024F, -311.522003F), new Vector2(560.659973F, -312.571991F), new Vector2(560.659973F, -313.772003F)); + builder.AddCubicBezier(new Vector2(560.659973F, -314.947998F), new Vector2(560.888F, -315.967987F), new Vector2(561.343994F, -316.832001F)); + builder.AddCubicBezier(new Vector2(561.799988F, -317.696014F), new Vector2(562.447998F, -318.368011F), new Vector2(563.288025F, -318.847992F)); + builder.AddCubicBezier(new Vector2(564.127991F, -319.328003F), new Vector2(565.099976F, -319.567993F), new Vector2(566.203979F, -319.567993F)); + builder.AddCubicBezier(new Vector2(567.26001F, -319.567993F), new Vector2(568.159973F, -319.346008F), new Vector2(568.903992F, -318.902008F)); + builder.AddCubicBezier(new Vector2(569.64801F, -318.458008F), new Vector2(570.223999F, -317.834015F), new Vector2(570.632019F, -317.029999F)); + builder.AddCubicBezier(new Vector2(571.039978F, -316.226013F), new Vector2(571.244019F, -315.247986F), new Vector2(571.244019F, -314.096008F)); + builder.AddLine(new Vector2(572.432007F, -315.140015F)); + builder.AddLine(new Vector2(559.723999F, -315.140015F)); + builder.AddLine(new Vector2(559.723999F, -312.440002F)); + builder.AddLine(new Vector2(574.159973F, -312.440002F)); + builder.AddCubicBezier(new Vector2(574.231995F, -312.776001F), new Vector2(574.280029F, -313.082001F), new Vector2(574.304016F, -313.358002F)); + builder.AddCubicBezier(new Vector2(574.328003F, -313.634003F), new Vector2(574.340027F, -313.891998F), new Vector2(574.340027F, -314.131989F)); + builder.AddCubicBezier(new Vector2(574.340027F, -315.764008F), new Vector2(573.997986F, -317.216003F), new Vector2(573.314026F, -318.488007F)); + builder.AddCubicBezier(new Vector2(572.630005F, -319.76001F), new Vector2(571.676025F, -320.756012F), new Vector2(570.452026F, -321.476013F)); + builder.AddCubicBezier(new Vector2(569.228027F, -322.196014F), new Vector2(567.835999F, -322.556F), new Vector2(566.276001F, -322.556F)); + builder.AddCubicBezier(new Vector2(564.619995F, -322.556F), new Vector2(563.125977F, -322.165985F), new Vector2(561.794006F, -321.385986F)); + builder.AddCubicBezier(new Vector2(560.461975F, -320.605988F), new Vector2(559.406006F, -319.544006F), new Vector2(558.625977F, -318.200012F)); + builder.AddCubicBezier(new Vector2(557.846008F, -316.855988F), new Vector2(557.455994F, -315.343994F), new Vector2(557.455994F, -313.664001F)); + builder.AddCubicBezier(new Vector2(557.455994F, -311.959991F), new Vector2(557.85199F, -310.436005F), new Vector2(558.643982F, -309.09201F)); + builder.AddCubicBezier(new Vector2(559.435974F, -307.747986F), new Vector2(560.51001F, -306.686005F), new Vector2(561.866028F, -305.906006F)); + builder.AddCubicBezier(new Vector2(563.221985F, -305.126007F), new Vector2(564.763977F, -304.735992F), new Vector2(566.492004F, -304.735992F)); + builder.AddCubicBezier(new Vector2(567.835999F, -304.735992F), new Vector2(569.096008F, -304.988007F), new Vector2(570.271973F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0730() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(542.083984F, -305.096008F)); + builder.AddLine(new Vector2(542.083984F, -330.799988F)); + builder.AddLine(new Vector2(538.843994F, -330.799988F)); + builder.AddLine(new Vector2(538.843994F, -305.096008F)); + builder.AddLine(new Vector2(542.083984F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(554.179993F, -305.096008F)); + builder.AddLine(new Vector2(554.179993F, -315.716003F)); + builder.AddCubicBezier(new Vector2(554.179993F, -317.059998F), new Vector2(553.892029F, -318.247986F), new Vector2(553.315979F, -319.279999F)); + builder.AddCubicBezier(new Vector2(552.73999F, -320.312012F), new Vector2(551.953979F, -321.115997F), new Vector2(550.958008F, -321.691986F)); + builder.AddCubicBezier(new Vector2(549.961975F, -322.268005F), new Vector2(548.815979F, -322.556F), new Vector2(547.52002F, -322.556F)); + builder.AddCubicBezier(new Vector2(546.223999F, -322.556F), new Vector2(545.059998F, -322.261993F), new Vector2(544.028015F, -321.674011F)); + builder.AddCubicBezier(new Vector2(542.995972F, -321.085999F), new Vector2(542.192017F, -320.287994F), new Vector2(541.616028F, -319.279999F)); + builder.AddCubicBezier(new Vector2(541.039978F, -318.272003F), new Vector2(540.752014F, -317.119995F), new Vector2(540.752014F, -315.824005F)); + builder.AddLine(new Vector2(542.083984F, -315.067993F)); + builder.AddCubicBezier(new Vector2(542.083984F, -315.932007F), new Vector2(542.276001F, -316.700012F), new Vector2(542.659973F, -317.372009F)); + builder.AddCubicBezier(new Vector2(543.044006F, -318.044006F), new Vector2(543.572021F, -318.571991F), new Vector2(544.244019F, -318.955994F)); + builder.AddCubicBezier(new Vector2(544.916016F, -319.339996F), new Vector2(545.684021F, -319.532013F), new Vector2(546.547974F, -319.532013F)); + builder.AddCubicBezier(new Vector2(547.843994F, -319.532013F), new Vector2(548.893982F, -319.112F), new Vector2(549.697998F, -318.272003F)); + builder.AddCubicBezier(new Vector2(550.502014F, -317.432007F), new Vector2(550.903992F, -316.364014F), new Vector2(550.903992F, -315.067993F)); + builder.AddLine(new Vector2(550.903992F, -305.096008F)); + builder.AddLine(new Vector2(554.179993F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0731() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(535.676025F, -319.243988F)); + builder.AddLine(new Vector2(535.676025F, -322.196014F)); + builder.AddLine(new Vector2(524.012024F, -322.196014F)); + builder.AddLine(new Vector2(524.012024F, -319.243988F)); + builder.AddLine(new Vector2(535.676025F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(531.463989F, -305.096008F)); + builder.AddLine(new Vector2(531.463989F, -329.359985F)); + builder.AddLine(new Vector2(528.223999F, -329.359985F)); + builder.AddLine(new Vector2(528.223999F, -305.096008F)); + builder.AddLine(new Vector2(531.463989F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0732() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(513.752014F, -305.096008F)); + builder.AddLine(new Vector2(513.752014F, -316.075989F)); + builder.AddCubicBezier(new Vector2(513.752014F, -317.420013F), new Vector2(513.458008F, -318.571991F), new Vector2(512.869995F, -319.532013F)); + builder.AddCubicBezier(new Vector2(512.281982F, -320.492004F), new Vector2(511.496002F, -321.235992F), new Vector2(510.511993F, -321.764008F)); + builder.AddCubicBezier(new Vector2(509.528015F, -322.291992F), new Vector2(508.411987F, -322.556F), new Vector2(507.164001F, -322.556F)); + builder.AddCubicBezier(new Vector2(505.963989F, -322.556F), new Vector2(504.859985F, -322.286011F), new Vector2(503.85199F, -321.746002F)); + builder.AddCubicBezier(new Vector2(502.843994F, -321.205994F), new Vector2(502.022003F, -320.462006F), new Vector2(501.385986F, -319.514008F)); + builder.AddCubicBezier(new Vector2(500.75F, -318.56601F), new Vector2(500.395996F, -317.432007F), new Vector2(500.324005F, -316.112F)); + builder.AddLine(new Vector2(502.160004F, -315.428009F)); + builder.AddCubicBezier(new Vector2(502.160004F, -316.291992F), new Vector2(502.35199F, -317.023987F), new Vector2(502.735992F, -317.623993F)); + builder.AddCubicBezier(new Vector2(503.119995F, -318.223999F), new Vector2(503.630005F, -318.691986F), new Vector2(504.265991F, -319.028015F)); + builder.AddCubicBezier(new Vector2(504.902008F, -319.364014F), new Vector2(505.615997F, -319.532013F), new Vector2(506.40799F, -319.532013F)); + builder.AddCubicBezier(new Vector2(507.559998F, -319.532013F), new Vector2(508.526001F, -319.165985F), new Vector2(509.306F, -318.43399F)); + builder.AddCubicBezier(new Vector2(510.085999F, -317.701996F), new Vector2(510.476013F, -316.700012F), new Vector2(510.476013F, -315.428009F)); + builder.AddLine(new Vector2(510.476013F, -305.096008F)); + builder.AddLine(new Vector2(513.752014F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(502.160004F, -305.096008F)); + builder.AddLine(new Vector2(502.160004F, -316.112F)); + builder.AddCubicBezier(new Vector2(502.160004F, -317.432007F), new Vector2(501.877991F, -318.571991F), new Vector2(501.313995F, -319.532013F)); + builder.AddCubicBezier(new Vector2(500.75F, -320.492004F), new Vector2(499.981995F, -321.235992F), new Vector2(499.01001F, -321.764008F)); + builder.AddCubicBezier(new Vector2(498.037994F, -322.291992F), new Vector2(496.951996F, -322.556F), new Vector2(495.752014F, -322.556F)); + builder.AddCubicBezier(new Vector2(494.528015F, -322.556F), new Vector2(493.424011F, -322.286011F), new Vector2(492.440002F, -321.746002F)); + builder.AddCubicBezier(new Vector2(491.455994F, -321.205994F), new Vector2(490.682007F, -320.455994F), new Vector2(490.118011F, -319.496002F)); + builder.AddCubicBezier(new Vector2(489.553986F, -318.536011F), new Vector2(489.272003F, -317.40799F), new Vector2(489.272003F, -316.112F)); + builder.AddLine(new Vector2(490.604004F, -315.428009F)); + builder.AddCubicBezier(new Vector2(490.604004F, -316.291992F), new Vector2(490.79599F, -317.023987F), new Vector2(491.179993F, -317.623993F)); + builder.AddCubicBezier(new Vector2(491.563995F, -318.223999F), new Vector2(492.067993F, -318.691986F), new Vector2(492.691986F, -319.028015F)); + builder.AddCubicBezier(new Vector2(493.31601F, -319.364014F), new Vector2(494.023987F, -319.532013F), new Vector2(494.81601F, -319.532013F)); + builder.AddCubicBezier(new Vector2(495.992004F, -319.532013F), new Vector2(496.970001F, -319.165985F), new Vector2(497.75F, -318.43399F)); + builder.AddCubicBezier(new Vector2(498.529999F, -317.701996F), new Vector2(498.920013F, -316.700012F), new Vector2(498.920013F, -315.428009F)); + builder.AddLine(new Vector2(498.920013F, -305.096008F)); + builder.AddLine(new Vector2(502.160004F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(490.604004F, -305.096008F)); + builder.AddLine(new Vector2(490.604004F, -322.196014F)); + builder.AddLine(new Vector2(487.364014F, -322.196014F)); + builder.AddLine(new Vector2(487.364014F, -305.096008F)); + builder.AddLine(new Vector2(490.604004F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0733() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(471.955994F, -308.623993F)); + builder.AddCubicBezier(new Vector2(471.115997F, -309.127991F), new Vector2(470.455994F, -309.817993F), new Vector2(469.976013F, -310.694F)); + builder.AddCubicBezier(new Vector2(469.496002F, -311.570007F), new Vector2(469.256012F, -312.571991F), new Vector2(469.256012F, -313.700012F)); + builder.AddCubicBezier(new Vector2(469.256012F, -314.803986F), new Vector2(469.496002F, -315.787994F), new Vector2(469.976013F, -316.652008F)); + builder.AddCubicBezier(new Vector2(470.455994F, -317.515991F), new Vector2(471.115997F, -318.194F), new Vector2(471.955994F, -318.686005F)); + builder.AddCubicBezier(new Vector2(472.79599F, -319.178009F), new Vector2(473.743988F, -319.424011F), new Vector2(474.799988F, -319.424011F)); + builder.AddCubicBezier(new Vector2(475.903992F, -319.424011F), new Vector2(476.869995F, -319.178009F), new Vector2(477.697998F, -318.686005F)); + builder.AddCubicBezier(new Vector2(478.526001F, -318.194F), new Vector2(479.186005F, -317.515991F), new Vector2(479.678009F, -316.652008F)); + builder.AddCubicBezier(new Vector2(480.170013F, -315.787994F), new Vector2(480.415985F, -314.803986F), new Vector2(480.415985F, -313.700012F)); + builder.AddCubicBezier(new Vector2(480.415985F, -312.571991F), new Vector2(480.175995F, -311.570007F), new Vector2(479.696014F, -310.694F)); + builder.AddCubicBezier(new Vector2(479.216003F, -309.817993F), new Vector2(478.556F, -309.127991F), new Vector2(477.716003F, -308.623993F)); + builder.AddCubicBezier(new Vector2(476.876007F, -308.119995F), new Vector2(475.903992F, -307.868011F), new Vector2(474.799988F, -307.868011F)); + builder.AddCubicBezier(new Vector2(473.743988F, -307.868011F), new Vector2(472.79599F, -308.119995F), new Vector2(471.955994F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(479.354004F, -305.924011F)); + builder.AddCubicBezier(new Vector2(480.709991F, -306.716003F), new Vector2(481.783997F, -307.790009F), new Vector2(482.575989F, -309.145996F)); + builder.AddCubicBezier(new Vector2(483.368011F, -310.502014F), new Vector2(483.764008F, -312.019989F), new Vector2(483.764008F, -313.700012F)); + builder.AddCubicBezier(new Vector2(483.764008F, -315.355988F), new Vector2(483.368011F, -316.855988F), new Vector2(482.575989F, -318.200012F)); + builder.AddCubicBezier(new Vector2(481.783997F, -319.544006F), new Vector2(480.709991F, -320.605988F), new Vector2(479.354004F, -321.385986F)); + builder.AddCubicBezier(new Vector2(477.997986F, -322.165985F), new Vector2(476.480011F, -322.556F), new Vector2(474.799988F, -322.556F)); + builder.AddCubicBezier(new Vector2(473.144012F, -322.556F), new Vector2(471.644012F, -322.160004F), new Vector2(470.299988F, -321.368011F)); + builder.AddCubicBezier(new Vector2(468.955994F, -320.575989F), new Vector2(467.888F, -319.514008F), new Vector2(467.096008F, -318.182007F)); + builder.AddCubicBezier(new Vector2(466.303986F, -316.850006F), new Vector2(465.90799F, -315.355988F), new Vector2(465.90799F, -313.700012F)); + builder.AddCubicBezier(new Vector2(465.90799F, -312.019989F), new Vector2(466.303986F, -310.502014F), new Vector2(467.096008F, -309.145996F)); + builder.AddCubicBezier(new Vector2(467.888F, -307.790009F), new Vector2(468.955994F, -306.716003F), new Vector2(470.299988F, -305.924011F)); + builder.AddCubicBezier(new Vector2(471.644012F, -305.131989F), new Vector2(473.144012F, -304.735992F), new Vector2(474.799988F, -304.735992F)); + builder.AddCubicBezier(new Vector2(476.480011F, -304.735992F), new Vector2(477.997986F, -305.131989F), new Vector2(479.354004F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0734() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(457.519989F, -318.343994F)); + builder.AddCubicBezier(new Vector2(458.287994F, -319.112F), new Vector2(459.272003F, -319.496002F), new Vector2(460.471985F, -319.496002F)); + builder.AddCubicBezier(new Vector2(461.048004F, -319.496002F), new Vector2(461.552002F, -319.411987F), new Vector2(461.984009F, -319.243988F)); + builder.AddCubicBezier(new Vector2(462.415985F, -319.075989F), new Vector2(462.812012F, -318.799988F), new Vector2(463.171997F, -318.415985F)); + builder.AddLine(new Vector2(465.29599F, -320.612F)); + builder.AddCubicBezier(new Vector2(464.696014F, -321.308014F), new Vector2(464.048004F, -321.806F), new Vector2(463.35199F, -322.105988F)); + builder.AddCubicBezier(new Vector2(462.656006F, -322.406006F), new Vector2(461.876007F, -322.556F), new Vector2(461.011993F, -322.556F)); + builder.AddCubicBezier(new Vector2(459.115997F, -322.556F), new Vector2(457.664001F, -321.90799F), new Vector2(456.656006F, -320.612F)); + builder.AddCubicBezier(new Vector2(455.64801F, -319.31601F), new Vector2(455.144012F, -317.575989F), new Vector2(455.144012F, -315.391998F)); + builder.AddLine(new Vector2(456.368011F, -314.81601F)); + builder.AddCubicBezier(new Vector2(456.368011F, -316.399994F), new Vector2(456.752014F, -317.575989F), new Vector2(457.519989F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(456.368011F, -305.096008F)); + builder.AddLine(new Vector2(456.368011F, -322.196014F)); + builder.AddLine(new Vector2(453.127991F, -322.196014F)); + builder.AddLine(new Vector2(453.127991F, -305.096008F)); + builder.AddLine(new Vector2(456.368011F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0735() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(450.536011F, -319.243988F)); + builder.AddLine(new Vector2(450.536011F, -322.196014F)); + builder.AddLine(new Vector2(437.64801F, -322.196014F)); + builder.AddLine(new Vector2(437.64801F, -319.243988F)); + builder.AddLine(new Vector2(450.536011F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(445.100006F, -305.096008F)); + builder.AddLine(new Vector2(445.100006F, -324.752014F)); + builder.AddCubicBezier(new Vector2(445.100006F, -325.808014F), new Vector2(445.381989F, -326.630005F), new Vector2(445.946014F, -327.217987F)); + builder.AddCubicBezier(new Vector2(446.51001F, -327.806F), new Vector2(447.308014F, -328.100006F), new Vector2(448.339996F, -328.100006F)); + builder.AddCubicBezier(new Vector2(448.891998F, -328.100006F), new Vector2(449.359985F, -328.015991F), new Vector2(449.743988F, -327.847992F)); + builder.AddCubicBezier(new Vector2(450.127991F, -327.679993F), new Vector2(450.476013F, -327.428009F), new Vector2(450.787994F, -327.09201F)); + builder.AddLine(new Vector2(452.911987F, -329.179993F)); + builder.AddCubicBezier(new Vector2(452.312012F, -329.828003F), new Vector2(451.652008F, -330.320007F), new Vector2(450.932007F, -330.656006F)); + builder.AddCubicBezier(new Vector2(450.212006F, -330.992004F), new Vector2(449.359985F, -331.160004F), new Vector2(448.376007F, -331.160004F)); + builder.AddCubicBezier(new Vector2(447.079987F, -331.160004F), new Vector2(445.940002F, -330.884003F), new Vector2(444.955994F, -330.332001F)); + builder.AddCubicBezier(new Vector2(443.971985F, -329.779999F), new Vector2(443.20401F, -329.023987F), new Vector2(442.652008F, -328.063995F)); + builder.AddCubicBezier(new Vector2(442.100006F, -327.104004F), new Vector2(441.824005F, -326F), new Vector2(441.824005F, -324.752014F)); + builder.AddLine(new Vector2(441.824005F, -305.096008F)); + builder.AddLine(new Vector2(445.100006F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0736() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(421.268005F, -318.343994F)); + builder.AddCubicBezier(new Vector2(422.036011F, -319.112F), new Vector2(423.019989F, -319.496002F), new Vector2(424.220001F, -319.496002F)); + builder.AddCubicBezier(new Vector2(424.79599F, -319.496002F), new Vector2(425.299988F, -319.411987F), new Vector2(425.731995F, -319.243988F)); + builder.AddCubicBezier(new Vector2(426.164001F, -319.075989F), new Vector2(426.559998F, -318.799988F), new Vector2(426.920013F, -318.415985F)); + builder.AddLine(new Vector2(429.044006F, -320.612F)); + builder.AddCubicBezier(new Vector2(428.444F, -321.308014F), new Vector2(427.79599F, -321.806F), new Vector2(427.100006F, -322.105988F)); + builder.AddCubicBezier(new Vector2(426.403992F, -322.406006F), new Vector2(425.623993F, -322.556F), new Vector2(424.76001F, -322.556F)); + builder.AddCubicBezier(new Vector2(422.864014F, -322.556F), new Vector2(421.411987F, -321.90799F), new Vector2(420.403992F, -320.612F)); + builder.AddCubicBezier(new Vector2(419.395996F, -319.31601F), new Vector2(418.891998F, -317.575989F), new Vector2(418.891998F, -315.391998F)); + builder.AddLine(new Vector2(420.115997F, -314.81601F)); + builder.AddCubicBezier(new Vector2(420.115997F, -316.399994F), new Vector2(420.5F, -317.575989F), new Vector2(421.268005F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(420.115997F, -305.096008F)); + builder.AddLine(new Vector2(420.115997F, -322.196014F)); + builder.AddLine(new Vector2(416.876007F, -322.196014F)); + builder.AddLine(new Vector2(416.876007F, -305.096008F)); + builder.AddLine(new Vector2(420.115997F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0737() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(409.279999F, -305.492004F)); + builder.AddCubicBezier(new Vector2(410.455994F, -305.996002F), new Vector2(411.463989F, -306.727997F), new Vector2(412.303986F, -307.687988F)); + builder.AddLine(new Vector2(410.216003F, -309.812012F)); + builder.AddCubicBezier(new Vector2(409.640015F, -309.140015F), new Vector2(408.950012F, -308.635986F), new Vector2(408.145996F, -308.299988F)); + builder.AddCubicBezier(new Vector2(407.34201F, -307.963989F), new Vector2(406.459991F, -307.79599F), new Vector2(405.5F, -307.79599F)); + builder.AddCubicBezier(new Vector2(404.347992F, -307.79599F), new Vector2(403.328003F, -308.041992F), new Vector2(402.440002F, -308.533997F)); + builder.AddCubicBezier(new Vector2(401.552002F, -309.026001F), new Vector2(400.868011F, -309.721985F), new Vector2(400.388F, -310.622009F)); + builder.AddCubicBezier(new Vector2(399.90799F, -311.522003F), new Vector2(399.667999F, -312.571991F), new Vector2(399.667999F, -313.772003F)); + builder.AddCubicBezier(new Vector2(399.667999F, -314.947998F), new Vector2(399.895996F, -315.967987F), new Vector2(400.35199F, -316.832001F)); + builder.AddCubicBezier(new Vector2(400.808014F, -317.696014F), new Vector2(401.455994F, -318.368011F), new Vector2(402.29599F, -318.847992F)); + builder.AddCubicBezier(new Vector2(403.135986F, -319.328003F), new Vector2(404.108002F, -319.567993F), new Vector2(405.212006F, -319.567993F)); + builder.AddCubicBezier(new Vector2(406.268005F, -319.567993F), new Vector2(407.167999F, -319.346008F), new Vector2(407.911987F, -318.902008F)); + builder.AddCubicBezier(new Vector2(408.656006F, -318.458008F), new Vector2(409.231995F, -317.834015F), new Vector2(409.640015F, -317.029999F)); + builder.AddCubicBezier(new Vector2(410.048004F, -316.226013F), new Vector2(410.252014F, -315.247986F), new Vector2(410.252014F, -314.096008F)); + builder.AddLine(new Vector2(411.440002F, -315.140015F)); + builder.AddLine(new Vector2(398.731995F, -315.140015F)); + builder.AddLine(new Vector2(398.731995F, -312.440002F)); + builder.AddLine(new Vector2(413.167999F, -312.440002F)); + builder.AddCubicBezier(new Vector2(413.23999F, -312.776001F), new Vector2(413.287994F, -313.082001F), new Vector2(413.312012F, -313.358002F)); + builder.AddCubicBezier(new Vector2(413.335999F, -313.634003F), new Vector2(413.347992F, -313.891998F), new Vector2(413.347992F, -314.131989F)); + builder.AddCubicBezier(new Vector2(413.347992F, -315.764008F), new Vector2(413.006012F, -317.216003F), new Vector2(412.321991F, -318.488007F)); + builder.AddCubicBezier(new Vector2(411.638F, -319.76001F), new Vector2(410.68399F, -320.756012F), new Vector2(409.459991F, -321.476013F)); + builder.AddCubicBezier(new Vector2(408.235992F, -322.196014F), new Vector2(406.843994F, -322.556F), new Vector2(405.283997F, -322.556F)); + builder.AddCubicBezier(new Vector2(403.627991F, -322.556F), new Vector2(402.134003F, -322.165985F), new Vector2(400.802002F, -321.385986F)); + builder.AddCubicBezier(new Vector2(399.470001F, -320.605988F), new Vector2(398.414001F, -319.544006F), new Vector2(397.634003F, -318.200012F)); + builder.AddCubicBezier(new Vector2(396.854004F, -316.855988F), new Vector2(396.463989F, -315.343994F), new Vector2(396.463989F, -313.664001F)); + builder.AddCubicBezier(new Vector2(396.463989F, -311.959991F), new Vector2(396.859985F, -310.436005F), new Vector2(397.652008F, -309.09201F)); + builder.AddCubicBezier(new Vector2(398.444F, -307.747986F), new Vector2(399.518005F, -306.686005F), new Vector2(400.873993F, -305.906006F)); + builder.AddCubicBezier(new Vector2(402.230011F, -305.126007F), new Vector2(403.772003F, -304.735992F), new Vector2(405.5F, -304.735992F)); + builder.AddCubicBezier(new Vector2(406.843994F, -304.735992F), new Vector2(408.104004F, -304.988007F), new Vector2(409.279999F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0738() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(381.649994F, -309.145996F)); + builder.AddCubicBezier(new Vector2(380.821991F, -309.614014F), new Vector2(380.174011F, -310.268005F), new Vector2(379.705994F, -311.108002F)); + builder.AddCubicBezier(new Vector2(379.238007F, -311.947998F), new Vector2(379.003998F, -312.90799F), new Vector2(379.003998F, -313.988007F)); + builder.AddCubicBezier(new Vector2(379.003998F, -315.067993F), new Vector2(379.238007F, -316.022003F), new Vector2(379.705994F, -316.850006F)); + builder.AddCubicBezier(new Vector2(380.174011F, -317.678009F), new Vector2(380.81601F, -318.325989F), new Vector2(381.631989F, -318.794006F)); + builder.AddCubicBezier(new Vector2(382.447998F, -319.261993F), new Vector2(383.395996F, -319.496002F), new Vector2(384.476013F, -319.496002F)); + builder.AddCubicBezier(new Vector2(385.532013F, -319.496002F), new Vector2(386.462006F, -319.261993F), new Vector2(387.265991F, -318.794006F)); + builder.AddCubicBezier(new Vector2(388.070007F, -318.325989F), new Vector2(388.694F, -317.678009F), new Vector2(389.138F, -316.850006F)); + builder.AddCubicBezier(new Vector2(389.582001F, -316.022003F), new Vector2(389.803986F, -315.056F), new Vector2(389.803986F, -313.951996F)); + builder.AddCubicBezier(new Vector2(389.803986F, -312.847992F), new Vector2(389.582001F, -311.881989F), new Vector2(389.138F, -311.053986F)); + builder.AddCubicBezier(new Vector2(388.694F, -310.226013F), new Vector2(388.075989F, -309.584015F), new Vector2(387.283997F, -309.127991F)); + builder.AddCubicBezier(new Vector2(386.492004F, -308.671997F), new Vector2(385.556F, -308.444F), new Vector2(384.476013F, -308.444F)); + builder.AddCubicBezier(new Vector2(383.420013F, -308.444F), new Vector2(382.477997F, -308.678009F), new Vector2(381.649994F, -309.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(387.391998F, -306.175995F)); + builder.AddCubicBezier(new Vector2(388.424011F, -306.70401F), new Vector2(389.246002F, -307.441986F), new Vector2(389.858002F, -308.390015F)); + builder.AddCubicBezier(new Vector2(390.470001F, -309.338013F), new Vector2(390.812012F, -310.436005F), new Vector2(390.884003F, -311.68399F)); + builder.AddLine(new Vector2(390.884003F, -316.220001F)); + builder.AddCubicBezier(new Vector2(390.812012F, -317.492004F), new Vector2(390.476013F, -318.60199F), new Vector2(389.876007F, -319.549988F)); + builder.AddCubicBezier(new Vector2(389.276001F, -320.497986F), new Vector2(388.45401F, -321.235992F), new Vector2(387.410004F, -321.764008F)); + builder.AddCubicBezier(new Vector2(386.365997F, -322.291992F), new Vector2(385.171997F, -322.556F), new Vector2(383.828003F, -322.556F)); + builder.AddCubicBezier(new Vector2(382.291992F, -322.556F), new Vector2(380.899994F, -322.178009F), new Vector2(379.652008F, -321.421997F)); + builder.AddCubicBezier(new Vector2(378.403992F, -320.665985F), new Vector2(377.425995F, -319.645996F), new Vector2(376.717987F, -318.362F)); + builder.AddCubicBezier(new Vector2(376.01001F, -317.078003F), new Vector2(375.656006F, -315.619995F), new Vector2(375.656006F, -313.988007F)); + builder.AddCubicBezier(new Vector2(375.656006F, -312.355988F), new Vector2(376.015991F, -310.885986F), new Vector2(376.735992F, -309.578003F)); + builder.AddCubicBezier(new Vector2(377.455994F, -308.269989F), new Vector2(378.43399F, -307.243988F), new Vector2(379.670013F, -306.5F)); + builder.AddCubicBezier(new Vector2(380.906006F, -305.756012F), new Vector2(382.303986F, -305.384003F), new Vector2(383.864014F, -305.384003F)); + builder.AddCubicBezier(new Vector2(385.18399F, -305.384003F), new Vector2(386.359985F, -305.64801F), new Vector2(387.391998F, -306.175995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(388.562012F, -298.597992F)); + builder.AddCubicBezier(new Vector2(389.917999F, -299.282013F), new Vector2(390.973999F, -300.242004F), new Vector2(391.730011F, -301.477997F)); + builder.AddCubicBezier(new Vector2(392.485992F, -302.713989F), new Vector2(392.864014F, -304.14801F), new Vector2(392.864014F, -305.779999F)); + builder.AddLine(new Vector2(392.864014F, -322.196014F)); + builder.AddLine(new Vector2(389.623993F, -322.196014F)); + builder.AddLine(new Vector2(389.623993F, -317.696014F)); + builder.AddLine(new Vector2(390.200012F, -313.880005F)); + builder.AddLine(new Vector2(389.623993F, -310.028015F)); + builder.AddLine(new Vector2(389.623993F, -305.779999F)); + builder.AddCubicBezier(new Vector2(389.623993F, -304.220001F), new Vector2(389.108002F, -302.977997F), new Vector2(388.075989F, -302.053986F)); + builder.AddCubicBezier(new Vector2(387.044006F, -301.130005F), new Vector2(385.664001F, -300.667999F), new Vector2(383.936005F, -300.667999F)); + builder.AddCubicBezier(new Vector2(382.615997F, -300.667999F), new Vector2(381.476013F, -300.902008F), new Vector2(380.515991F, -301.369995F)); + builder.AddCubicBezier(new Vector2(379.556F, -301.838013F), new Vector2(378.727997F, -302.515991F), new Vector2(378.032013F, -303.403992F)); + builder.AddLine(new Vector2(375.90799F, -301.279999F)); + builder.AddCubicBezier(new Vector2(376.747986F, -300.104004F), new Vector2(377.839996F, -299.191986F), new Vector2(379.18399F, -298.544006F)); + builder.AddCubicBezier(new Vector2(380.528015F, -297.895996F), new Vector2(382.088013F, -297.571991F), new Vector2(383.864014F, -297.571991F)); + builder.AddCubicBezier(new Vector2(385.640015F, -297.571991F), new Vector2(387.205994F, -297.914001F), new Vector2(388.562012F, -298.597992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0739() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(360.283997F, -305.096008F)); + builder.AddLine(new Vector2(360.283997F, -322.196014F)); + builder.AddLine(new Vector2(357.044006F, -322.196014F)); + builder.AddLine(new Vector2(357.044006F, -305.096008F)); + builder.AddLine(new Vector2(360.283997F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(372.380005F, -305.096008F)); + builder.AddLine(new Vector2(372.380005F, -315.716003F)); + builder.AddCubicBezier(new Vector2(372.380005F, -316.891998F), new Vector2(372.09201F, -318.002014F), new Vector2(371.515991F, -319.04599F)); + builder.AddCubicBezier(new Vector2(370.940002F, -320.089996F), new Vector2(370.153992F, -320.936005F), new Vector2(369.15799F, -321.584015F)); + builder.AddCubicBezier(new Vector2(368.161987F, -322.231995F), new Vector2(367.015991F, -322.556F), new Vector2(365.720001F, -322.556F)); + builder.AddCubicBezier(new Vector2(364.424011F, -322.556F), new Vector2(363.26001F, -322.261993F), new Vector2(362.227997F, -321.674011F)); + builder.AddCubicBezier(new Vector2(361.196014F, -321.085999F), new Vector2(360.391998F, -320.287994F), new Vector2(359.81601F, -319.279999F)); + builder.AddCubicBezier(new Vector2(359.23999F, -318.272003F), new Vector2(358.951996F, -317.119995F), new Vector2(358.951996F, -315.824005F)); + builder.AddLine(new Vector2(360.283997F, -315.067993F)); + builder.AddCubicBezier(new Vector2(360.283997F, -315.932007F), new Vector2(360.476013F, -316.700012F), new Vector2(360.859985F, -317.372009F)); + builder.AddCubicBezier(new Vector2(361.243988F, -318.044006F), new Vector2(361.772003F, -318.571991F), new Vector2(362.444F, -318.955994F)); + builder.AddCubicBezier(new Vector2(363.115997F, -319.339996F), new Vector2(363.884003F, -319.532013F), new Vector2(364.747986F, -319.532013F)); + builder.AddCubicBezier(new Vector2(366.044006F, -319.532013F), new Vector2(367.093994F, -319.112F), new Vector2(367.89801F, -318.272003F)); + builder.AddCubicBezier(new Vector2(368.701996F, -317.432007F), new Vector2(369.104004F, -316.364014F), new Vector2(369.104004F, -315.067993F)); + builder.AddLine(new Vector2(369.104004F, -305.096008F)); + builder.AddLine(new Vector2(372.380005F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0740() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(352.328003F, -305.096008F)); + builder.AddLine(new Vector2(352.328003F, -322.196014F)); + builder.AddLine(new Vector2(349.052002F, -322.196014F)); + builder.AddLine(new Vector2(349.052002F, -318.019989F)); + builder.AddLine(new Vector2(349.664001F, -313.880005F)); + builder.AddLine(new Vector2(349.052002F, -309.70401F)); + builder.AddLine(new Vector2(349.052002F, -305.096008F)); + builder.AddLine(new Vector2(352.328003F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(341.023987F, -308.552002F)); + builder.AddCubicBezier(new Vector2(340.18399F, -309.056F), new Vector2(339.529999F, -309.746002F), new Vector2(339.062012F, -310.622009F)); + builder.AddCubicBezier(new Vector2(338.593994F, -311.497986F), new Vector2(338.359985F, -312.511993F), new Vector2(338.359985F, -313.664001F)); + builder.AddCubicBezier(new Vector2(338.359985F, -314.791992F), new Vector2(338.593994F, -315.794006F), new Vector2(339.062012F, -316.670013F)); + builder.AddCubicBezier(new Vector2(339.529999F, -317.54599F), new Vector2(340.178009F, -318.235992F), new Vector2(341.006012F, -318.73999F)); + builder.AddCubicBezier(new Vector2(341.834015F, -319.243988F), new Vector2(342.787994F, -319.496002F), new Vector2(343.868011F, -319.496002F)); + builder.AddCubicBezier(new Vector2(344.947998F, -319.496002F), new Vector2(345.890015F, -319.25F), new Vector2(346.694F, -318.757996F)); + builder.AddCubicBezier(new Vector2(347.497986F, -318.265991F), new Vector2(348.127991F, -317.575989F), new Vector2(348.584015F, -316.687988F)); + builder.AddCubicBezier(new Vector2(349.040009F, -315.799988F), new Vector2(349.268005F, -314.779999F), new Vector2(349.268005F, -313.627991F)); + builder.AddCubicBezier(new Vector2(349.268005F, -311.924011F), new Vector2(348.776001F, -310.526001F), new Vector2(347.791992F, -309.43399F)); + builder.AddCubicBezier(new Vector2(346.808014F, -308.34201F), new Vector2(345.511993F, -307.79599F), new Vector2(343.903992F, -307.79599F)); + builder.AddCubicBezier(new Vector2(342.824005F, -307.79599F), new Vector2(341.864014F, -308.048004F), new Vector2(341.023987F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(346.855988F, -305.54599F)); + builder.AddCubicBezier(new Vector2(347.888F, -306.085999F), new Vector2(348.709991F, -306.835999F), new Vector2(349.321991F, -307.79599F)); + builder.AddCubicBezier(new Vector2(349.93399F, -308.756012F), new Vector2(350.276001F, -309.847992F), new Vector2(350.347992F, -311.071991F)); + builder.AddLine(new Vector2(350.347992F, -316.220001F)); + builder.AddCubicBezier(new Vector2(350.276001F, -317.467987F), new Vector2(349.928009F, -318.56601F), new Vector2(349.303986F, -319.514008F)); + builder.AddCubicBezier(new Vector2(348.679993F, -320.462006F), new Vector2(347.858002F, -321.205994F), new Vector2(346.838013F, -321.746002F)); + builder.AddCubicBezier(new Vector2(345.817993F, -322.286011F), new Vector2(344.660004F, -322.556F), new Vector2(343.364014F, -322.556F)); + builder.AddCubicBezier(new Vector2(341.779999F, -322.556F), new Vector2(340.358002F, -322.160004F), new Vector2(339.097992F, -321.368011F)); + builder.AddCubicBezier(new Vector2(337.838013F, -320.575989F), new Vector2(336.84201F, -319.507996F), new Vector2(336.109985F, -318.164001F)); + builder.AddCubicBezier(new Vector2(335.377991F, -316.820007F), new Vector2(335.011993F, -315.308014F), new Vector2(335.011993F, -313.627991F)); + builder.AddCubicBezier(new Vector2(335.011993F, -311.947998F), new Vector2(335.377991F, -310.436005F), new Vector2(336.109985F, -309.09201F)); + builder.AddCubicBezier(new Vector2(336.84201F, -307.747986F), new Vector2(337.838013F, -306.686005F), new Vector2(339.097992F, -305.906006F)); + builder.AddCubicBezier(new Vector2(340.358002F, -305.126007F), new Vector2(341.779999F, -304.735992F), new Vector2(343.364014F, -304.735992F)); + builder.AddCubicBezier(new Vector2(344.660004F, -304.735992F), new Vector2(345.824005F, -305.006012F), new Vector2(346.855988F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0741() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(321.044006F, -305.492004F)); + builder.AddCubicBezier(new Vector2(322.220001F, -305.996002F), new Vector2(323.227997F, -306.727997F), new Vector2(324.067993F, -307.687988F)); + builder.AddLine(new Vector2(321.980011F, -309.812012F)); + builder.AddCubicBezier(new Vector2(321.403992F, -309.140015F), new Vector2(320.713989F, -308.635986F), new Vector2(319.910004F, -308.299988F)); + builder.AddCubicBezier(new Vector2(319.105988F, -307.963989F), new Vector2(318.223999F, -307.79599F), new Vector2(317.264008F, -307.79599F)); + builder.AddCubicBezier(new Vector2(316.112F, -307.79599F), new Vector2(315.09201F, -308.041992F), new Vector2(314.20401F, -308.533997F)); + builder.AddCubicBezier(new Vector2(313.31601F, -309.026001F), new Vector2(312.631989F, -309.721985F), new Vector2(312.152008F, -310.622009F)); + builder.AddCubicBezier(new Vector2(311.671997F, -311.522003F), new Vector2(311.432007F, -312.571991F), new Vector2(311.432007F, -313.772003F)); + builder.AddCubicBezier(new Vector2(311.432007F, -314.947998F), new Vector2(311.660004F, -315.967987F), new Vector2(312.115997F, -316.832001F)); + builder.AddCubicBezier(new Vector2(312.571991F, -317.696014F), new Vector2(313.220001F, -318.368011F), new Vector2(314.059998F, -318.847992F)); + builder.AddCubicBezier(new Vector2(314.899994F, -319.328003F), new Vector2(315.872009F, -319.567993F), new Vector2(316.976013F, -319.567993F)); + builder.AddCubicBezier(new Vector2(318.032013F, -319.567993F), new Vector2(318.932007F, -319.346008F), new Vector2(319.675995F, -318.902008F)); + builder.AddCubicBezier(new Vector2(320.420013F, -318.458008F), new Vector2(320.996002F, -317.834015F), new Vector2(321.403992F, -317.029999F)); + builder.AddCubicBezier(new Vector2(321.812012F, -316.226013F), new Vector2(322.015991F, -315.247986F), new Vector2(322.015991F, -314.096008F)); + builder.AddLine(new Vector2(323.20401F, -315.140015F)); + builder.AddLine(new Vector2(310.496002F, -315.140015F)); + builder.AddLine(new Vector2(310.496002F, -312.440002F)); + builder.AddLine(new Vector2(324.932007F, -312.440002F)); + builder.AddCubicBezier(new Vector2(325.003998F, -312.776001F), new Vector2(325.052002F, -313.082001F), new Vector2(325.075989F, -313.358002F)); + builder.AddCubicBezier(new Vector2(325.100006F, -313.634003F), new Vector2(325.112F, -313.891998F), new Vector2(325.112F, -314.131989F)); + builder.AddCubicBezier(new Vector2(325.112F, -315.764008F), new Vector2(324.769989F, -317.216003F), new Vector2(324.085999F, -318.488007F)); + builder.AddCubicBezier(new Vector2(323.402008F, -319.76001F), new Vector2(322.447998F, -320.756012F), new Vector2(321.223999F, -321.476013F)); + builder.AddCubicBezier(new Vector2(320F, -322.196014F), new Vector2(318.608002F, -322.556F), new Vector2(317.048004F, -322.556F)); + builder.AddCubicBezier(new Vector2(315.391998F, -322.556F), new Vector2(313.89801F, -322.165985F), new Vector2(312.56601F, -321.385986F)); + builder.AddCubicBezier(new Vector2(311.234009F, -320.605988F), new Vector2(310.178009F, -319.544006F), new Vector2(309.39801F, -318.200012F)); + builder.AddCubicBezier(new Vector2(308.618011F, -316.855988F), new Vector2(308.227997F, -315.343994F), new Vector2(308.227997F, -313.664001F)); + builder.AddCubicBezier(new Vector2(308.227997F, -311.959991F), new Vector2(308.623993F, -310.436005F), new Vector2(309.415985F, -309.09201F)); + builder.AddCubicBezier(new Vector2(310.208008F, -307.747986F), new Vector2(311.282013F, -306.686005F), new Vector2(312.638F, -305.906006F)); + builder.AddCubicBezier(new Vector2(313.993988F, -305.126007F), new Vector2(315.536011F, -304.735992F), new Vector2(317.264008F, -304.735992F)); + builder.AddCubicBezier(new Vector2(318.608002F, -304.735992F), new Vector2(319.868011F, -304.988007F), new Vector2(321.044006F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0742() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(293.414001F, -309.145996F)); + builder.AddCubicBezier(new Vector2(292.585999F, -309.614014F), new Vector2(291.937988F, -310.268005F), new Vector2(291.470001F, -311.108002F)); + builder.AddCubicBezier(new Vector2(291.002014F, -311.947998F), new Vector2(290.768005F, -312.90799F), new Vector2(290.768005F, -313.988007F)); + builder.AddCubicBezier(new Vector2(290.768005F, -315.067993F), new Vector2(291.002014F, -316.022003F), new Vector2(291.470001F, -316.850006F)); + builder.AddCubicBezier(new Vector2(291.937988F, -317.678009F), new Vector2(292.579987F, -318.325989F), new Vector2(293.395996F, -318.794006F)); + builder.AddCubicBezier(new Vector2(294.212006F, -319.261993F), new Vector2(295.160004F, -319.496002F), new Vector2(296.23999F, -319.496002F)); + builder.AddCubicBezier(new Vector2(297.29599F, -319.496002F), new Vector2(298.226013F, -319.261993F), new Vector2(299.029999F, -318.794006F)); + builder.AddCubicBezier(new Vector2(299.834015F, -318.325989F), new Vector2(300.458008F, -317.678009F), new Vector2(300.902008F, -316.850006F)); + builder.AddCubicBezier(new Vector2(301.346008F, -316.022003F), new Vector2(301.567993F, -315.056F), new Vector2(301.567993F, -313.951996F)); + builder.AddCubicBezier(new Vector2(301.567993F, -312.847992F), new Vector2(301.346008F, -311.881989F), new Vector2(300.902008F, -311.053986F)); + builder.AddCubicBezier(new Vector2(300.458008F, -310.226013F), new Vector2(299.839996F, -309.584015F), new Vector2(299.048004F, -309.127991F)); + builder.AddCubicBezier(new Vector2(298.256012F, -308.671997F), new Vector2(297.320007F, -308.444F), new Vector2(296.23999F, -308.444F)); + builder.AddCubicBezier(new Vector2(295.18399F, -308.444F), new Vector2(294.242004F, -308.678009F), new Vector2(293.414001F, -309.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(299.156006F, -306.175995F)); + builder.AddCubicBezier(new Vector2(300.187988F, -306.70401F), new Vector2(301.01001F, -307.441986F), new Vector2(301.622009F, -308.390015F)); + builder.AddCubicBezier(new Vector2(302.234009F, -309.338013F), new Vector2(302.575989F, -310.436005F), new Vector2(302.64801F, -311.68399F)); + builder.AddLine(new Vector2(302.64801F, -316.220001F)); + builder.AddCubicBezier(new Vector2(302.575989F, -317.492004F), new Vector2(302.23999F, -318.60199F), new Vector2(301.640015F, -319.549988F)); + builder.AddCubicBezier(new Vector2(301.040009F, -320.497986F), new Vector2(300.217987F, -321.235992F), new Vector2(299.174011F, -321.764008F)); + builder.AddCubicBezier(new Vector2(298.130005F, -322.291992F), new Vector2(296.936005F, -322.556F), new Vector2(295.59201F, -322.556F)); + builder.AddCubicBezier(new Vector2(294.056F, -322.556F), new Vector2(292.664001F, -322.178009F), new Vector2(291.415985F, -321.421997F)); + builder.AddCubicBezier(new Vector2(290.167999F, -320.665985F), new Vector2(289.190002F, -319.645996F), new Vector2(288.481995F, -318.362F)); + builder.AddCubicBezier(new Vector2(287.773987F, -317.078003F), new Vector2(287.420013F, -315.619995F), new Vector2(287.420013F, -313.988007F)); + builder.AddCubicBezier(new Vector2(287.420013F, -312.355988F), new Vector2(287.779999F, -310.885986F), new Vector2(288.5F, -309.578003F)); + builder.AddCubicBezier(new Vector2(289.220001F, -308.269989F), new Vector2(290.197998F, -307.243988F), new Vector2(291.43399F, -306.5F)); + builder.AddCubicBezier(new Vector2(292.670013F, -305.756012F), new Vector2(294.067993F, -305.384003F), new Vector2(295.627991F, -305.384003F)); + builder.AddCubicBezier(new Vector2(296.947998F, -305.384003F), new Vector2(298.123993F, -305.64801F), new Vector2(299.156006F, -306.175995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(300.325989F, -298.597992F)); + builder.AddCubicBezier(new Vector2(301.682007F, -299.282013F), new Vector2(302.738007F, -300.242004F), new Vector2(303.493988F, -301.477997F)); + builder.AddCubicBezier(new Vector2(304.25F, -302.713989F), new Vector2(304.627991F, -304.14801F), new Vector2(304.627991F, -305.779999F)); + builder.AddLine(new Vector2(304.627991F, -322.196014F)); + builder.AddLine(new Vector2(301.388F, -322.196014F)); + builder.AddLine(new Vector2(301.388F, -317.696014F)); + builder.AddLine(new Vector2(301.963989F, -313.880005F)); + builder.AddLine(new Vector2(301.388F, -310.028015F)); + builder.AddLine(new Vector2(301.388F, -305.779999F)); + builder.AddCubicBezier(new Vector2(301.388F, -304.220001F), new Vector2(300.872009F, -302.977997F), new Vector2(299.839996F, -302.053986F)); + builder.AddCubicBezier(new Vector2(298.808014F, -301.130005F), new Vector2(297.428009F, -300.667999F), new Vector2(295.700012F, -300.667999F)); + builder.AddCubicBezier(new Vector2(294.380005F, -300.667999F), new Vector2(293.23999F, -300.902008F), new Vector2(292.279999F, -301.369995F)); + builder.AddCubicBezier(new Vector2(291.320007F, -301.838013F), new Vector2(290.492004F, -302.515991F), new Vector2(289.79599F, -303.403992F)); + builder.AddLine(new Vector2(287.671997F, -301.279999F)); + builder.AddCubicBezier(new Vector2(288.511993F, -300.104004F), new Vector2(289.604004F, -299.191986F), new Vector2(290.947998F, -298.544006F)); + builder.AddCubicBezier(new Vector2(292.291992F, -297.895996F), new Vector2(293.85199F, -297.571991F), new Vector2(295.627991F, -297.571991F)); + builder.AddCubicBezier(new Vector2(297.403992F, -297.571991F), new Vector2(298.970001F, -297.914001F), new Vector2(300.325989F, -298.597992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0743() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(272.048004F, -305.096008F)); + builder.AddLine(new Vector2(272.048004F, -322.196014F)); + builder.AddLine(new Vector2(268.808014F, -322.196014F)); + builder.AddLine(new Vector2(268.808014F, -305.096008F)); + builder.AddLine(new Vector2(272.048004F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(284.144012F, -305.096008F)); + builder.AddLine(new Vector2(284.144012F, -315.716003F)); + builder.AddCubicBezier(new Vector2(284.144012F, -316.891998F), new Vector2(283.855988F, -318.002014F), new Vector2(283.279999F, -319.04599F)); + builder.AddCubicBezier(new Vector2(282.70401F, -320.089996F), new Vector2(281.917999F, -320.936005F), new Vector2(280.921997F, -321.584015F)); + builder.AddCubicBezier(new Vector2(279.925995F, -322.231995F), new Vector2(278.779999F, -322.556F), new Vector2(277.484009F, -322.556F)); + builder.AddCubicBezier(new Vector2(276.187988F, -322.556F), new Vector2(275.023987F, -322.261993F), new Vector2(273.992004F, -321.674011F)); + builder.AddCubicBezier(new Vector2(272.959991F, -321.085999F), new Vector2(272.156006F, -320.287994F), new Vector2(271.579987F, -319.279999F)); + builder.AddCubicBezier(new Vector2(271.003998F, -318.272003F), new Vector2(270.716003F, -317.119995F), new Vector2(270.716003F, -315.824005F)); + builder.AddLine(new Vector2(272.048004F, -315.067993F)); + builder.AddCubicBezier(new Vector2(272.048004F, -315.932007F), new Vector2(272.23999F, -316.700012F), new Vector2(272.623993F, -317.372009F)); + builder.AddCubicBezier(new Vector2(273.007996F, -318.044006F), new Vector2(273.536011F, -318.571991F), new Vector2(274.208008F, -318.955994F)); + builder.AddCubicBezier(new Vector2(274.880005F, -319.339996F), new Vector2(275.64801F, -319.532013F), new Vector2(276.511993F, -319.532013F)); + builder.AddCubicBezier(new Vector2(277.808014F, -319.532013F), new Vector2(278.858002F, -319.112F), new Vector2(279.661987F, -318.272003F)); + builder.AddCubicBezier(new Vector2(280.466003F, -317.432007F), new Vector2(280.868011F, -316.364014F), new Vector2(280.868011F, -315.067993F)); + builder.AddLine(new Vector2(280.868011F, -305.096008F)); + builder.AddLine(new Vector2(284.144012F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0744() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(264.09201F, -305.096008F)); + builder.AddLine(new Vector2(264.09201F, -322.196014F)); + builder.AddLine(new Vector2(260.81601F, -322.196014F)); + builder.AddLine(new Vector2(260.81601F, -318.019989F)); + builder.AddLine(new Vector2(261.428009F, -313.880005F)); + builder.AddLine(new Vector2(260.81601F, -309.70401F)); + builder.AddLine(new Vector2(260.81601F, -305.096008F)); + builder.AddLine(new Vector2(264.09201F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(252.787994F, -308.552002F)); + builder.AddCubicBezier(new Vector2(251.947998F, -309.056F), new Vector2(251.294006F, -309.746002F), new Vector2(250.826004F, -310.622009F)); + builder.AddCubicBezier(new Vector2(250.358002F, -311.497986F), new Vector2(250.123993F, -312.511993F), new Vector2(250.123993F, -313.664001F)); + builder.AddCubicBezier(new Vector2(250.123993F, -314.791992F), new Vector2(250.358002F, -315.794006F), new Vector2(250.826004F, -316.670013F)); + builder.AddCubicBezier(new Vector2(251.294006F, -317.54599F), new Vector2(251.942001F, -318.235992F), new Vector2(252.770004F, -318.73999F)); + builder.AddCubicBezier(new Vector2(253.598007F, -319.243988F), new Vector2(254.552002F, -319.496002F), new Vector2(255.632004F, -319.496002F)); + builder.AddCubicBezier(new Vector2(256.712006F, -319.496002F), new Vector2(257.653992F, -319.25F), new Vector2(258.458008F, -318.757996F)); + builder.AddCubicBezier(new Vector2(259.261993F, -318.265991F), new Vector2(259.891998F, -317.575989F), new Vector2(260.347992F, -316.687988F)); + builder.AddCubicBezier(new Vector2(260.803986F, -315.799988F), new Vector2(261.032013F, -314.779999F), new Vector2(261.032013F, -313.627991F)); + builder.AddCubicBezier(new Vector2(261.032013F, -311.924011F), new Vector2(260.540009F, -310.526001F), new Vector2(259.556F, -309.43399F)); + builder.AddCubicBezier(new Vector2(258.571991F, -308.34201F), new Vector2(257.276001F, -307.79599F), new Vector2(255.667999F, -307.79599F)); + builder.AddCubicBezier(new Vector2(254.587997F, -307.79599F), new Vector2(253.628006F, -308.048004F), new Vector2(252.787994F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(258.619995F, -305.54599F)); + builder.AddCubicBezier(new Vector2(259.652008F, -306.085999F), new Vector2(260.473999F, -306.835999F), new Vector2(261.085999F, -307.79599F)); + builder.AddCubicBezier(new Vector2(261.697998F, -308.756012F), new Vector2(262.040009F, -309.847992F), new Vector2(262.112F, -311.071991F)); + builder.AddLine(new Vector2(262.112F, -316.220001F)); + builder.AddCubicBezier(new Vector2(262.040009F, -317.467987F), new Vector2(261.691986F, -318.56601F), new Vector2(261.067993F, -319.514008F)); + builder.AddCubicBezier(new Vector2(260.444F, -320.462006F), new Vector2(259.622009F, -321.205994F), new Vector2(258.60199F, -321.746002F)); + builder.AddCubicBezier(new Vector2(257.582001F, -322.286011F), new Vector2(256.424011F, -322.556F), new Vector2(255.128006F, -322.556F)); + builder.AddCubicBezier(new Vector2(253.544006F, -322.556F), new Vector2(252.121994F, -322.160004F), new Vector2(250.862F, -321.368011F)); + builder.AddCubicBezier(new Vector2(249.602005F, -320.575989F), new Vector2(248.606003F, -319.507996F), new Vector2(247.873993F, -318.164001F)); + builder.AddCubicBezier(new Vector2(247.141998F, -316.820007F), new Vector2(246.776001F, -315.308014F), new Vector2(246.776001F, -313.627991F)); + builder.AddCubicBezier(new Vector2(246.776001F, -311.947998F), new Vector2(247.141998F, -310.436005F), new Vector2(247.873993F, -309.09201F)); + builder.AddCubicBezier(new Vector2(248.606003F, -307.747986F), new Vector2(249.602005F, -306.686005F), new Vector2(250.862F, -305.906006F)); + builder.AddCubicBezier(new Vector2(252.121994F, -305.126007F), new Vector2(253.544006F, -304.735992F), new Vector2(255.128006F, -304.735992F)); + builder.AddCubicBezier(new Vector2(256.424011F, -304.735992F), new Vector2(257.588013F, -305.006012F), new Vector2(258.619995F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0745() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(238.352005F, -318.343994F)); + builder.AddCubicBezier(new Vector2(239.119995F, -319.112F), new Vector2(240.104004F, -319.496002F), new Vector2(241.304001F, -319.496002F)); + builder.AddCubicBezier(new Vector2(241.880005F, -319.496002F), new Vector2(242.384003F, -319.411987F), new Vector2(242.815994F, -319.243988F)); + builder.AddCubicBezier(new Vector2(243.248001F, -319.075989F), new Vector2(243.643997F, -318.799988F), new Vector2(244.003998F, -318.415985F)); + builder.AddLine(new Vector2(246.128006F, -320.612F)); + builder.AddCubicBezier(new Vector2(245.528F, -321.308014F), new Vector2(244.880005F, -321.806F), new Vector2(244.184006F, -322.105988F)); + builder.AddCubicBezier(new Vector2(243.488007F, -322.406006F), new Vector2(242.707993F, -322.556F), new Vector2(241.843994F, -322.556F)); + builder.AddCubicBezier(new Vector2(239.947998F, -322.556F), new Vector2(238.496002F, -321.90799F), new Vector2(237.488007F, -320.612F)); + builder.AddCubicBezier(new Vector2(236.479996F, -319.31601F), new Vector2(235.975998F, -317.575989F), new Vector2(235.975998F, -315.391998F)); + builder.AddLine(new Vector2(237.199997F, -314.81601F)); + builder.AddCubicBezier(new Vector2(237.199997F, -316.399994F), new Vector2(237.584F, -317.575989F), new Vector2(238.352005F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(237.199997F, -305.096008F)); + builder.AddLine(new Vector2(237.199997F, -322.196014F)); + builder.AddLine(new Vector2(233.960007F, -322.196014F)); + builder.AddLine(new Vector2(233.960007F, -305.096008F)); + builder.AddLine(new Vector2(237.199997F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0746() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(226.363998F, -305.492004F)); + builder.AddCubicBezier(new Vector2(227.539993F, -305.996002F), new Vector2(228.548004F, -306.727997F), new Vector2(229.388F, -307.687988F)); + builder.AddLine(new Vector2(227.300003F, -309.812012F)); + builder.AddCubicBezier(new Vector2(226.723999F, -309.140015F), new Vector2(226.033997F, -308.635986F), new Vector2(225.229996F, -308.299988F)); + builder.AddCubicBezier(new Vector2(224.425995F, -307.963989F), new Vector2(223.544006F, -307.79599F), new Vector2(222.584F, -307.79599F)); + builder.AddCubicBezier(new Vector2(221.432007F, -307.79599F), new Vector2(220.412003F, -308.041992F), new Vector2(219.524002F, -308.533997F)); + builder.AddCubicBezier(new Vector2(218.636002F, -309.026001F), new Vector2(217.951996F, -309.721985F), new Vector2(217.472F, -310.622009F)); + builder.AddCubicBezier(new Vector2(216.992004F, -311.522003F), new Vector2(216.751999F, -312.571991F), new Vector2(216.751999F, -313.772003F)); + builder.AddCubicBezier(new Vector2(216.751999F, -314.947998F), new Vector2(216.979996F, -315.967987F), new Vector2(217.436005F, -316.832001F)); + builder.AddCubicBezier(new Vector2(217.891998F, -317.696014F), new Vector2(218.539993F, -318.368011F), new Vector2(219.380005F, -318.847992F)); + builder.AddCubicBezier(new Vector2(220.220001F, -319.328003F), new Vector2(221.192001F, -319.567993F), new Vector2(222.296005F, -319.567993F)); + builder.AddCubicBezier(new Vector2(223.352005F, -319.567993F), new Vector2(224.251999F, -319.346008F), new Vector2(224.996002F, -318.902008F)); + builder.AddCubicBezier(new Vector2(225.740005F, -318.458008F), new Vector2(226.315994F, -317.834015F), new Vector2(226.723999F, -317.029999F)); + builder.AddCubicBezier(new Vector2(227.132004F, -316.226013F), new Vector2(227.335999F, -315.247986F), new Vector2(227.335999F, -314.096008F)); + builder.AddLine(new Vector2(228.524002F, -315.140015F)); + builder.AddLine(new Vector2(215.815994F, -315.140015F)); + builder.AddLine(new Vector2(215.815994F, -312.440002F)); + builder.AddLine(new Vector2(230.251999F, -312.440002F)); + builder.AddCubicBezier(new Vector2(230.324005F, -312.776001F), new Vector2(230.371994F, -313.082001F), new Vector2(230.395996F, -313.358002F)); + builder.AddCubicBezier(new Vector2(230.419998F, -313.634003F), new Vector2(230.432007F, -313.891998F), new Vector2(230.432007F, -314.131989F)); + builder.AddCubicBezier(new Vector2(230.432007F, -315.764008F), new Vector2(230.089996F, -317.216003F), new Vector2(229.406006F, -318.488007F)); + builder.AddCubicBezier(new Vector2(228.722F, -319.76001F), new Vector2(227.768005F, -320.756012F), new Vector2(226.544006F, -321.476013F)); + builder.AddCubicBezier(new Vector2(225.320007F, -322.196014F), new Vector2(223.927994F, -322.556F), new Vector2(222.367996F, -322.556F)); + builder.AddCubicBezier(new Vector2(220.712006F, -322.556F), new Vector2(219.218002F, -322.165985F), new Vector2(217.886002F, -321.385986F)); + builder.AddCubicBezier(new Vector2(216.554001F, -320.605988F), new Vector2(215.498001F, -319.544006F), new Vector2(214.718002F, -318.200012F)); + builder.AddCubicBezier(new Vector2(213.938004F, -316.855988F), new Vector2(213.548004F, -315.343994F), new Vector2(213.548004F, -313.664001F)); + builder.AddCubicBezier(new Vector2(213.548004F, -311.959991F), new Vector2(213.944F, -310.436005F), new Vector2(214.735992F, -309.09201F)); + builder.AddCubicBezier(new Vector2(215.528F, -307.747986F), new Vector2(216.602005F, -306.686005F), new Vector2(217.957993F, -305.906006F)); + builder.AddCubicBezier(new Vector2(219.313995F, -305.126007F), new Vector2(220.856003F, -304.735992F), new Vector2(222.584F, -304.735992F)); + builder.AddCubicBezier(new Vector2(223.927994F, -304.735992F), new Vector2(225.188004F, -304.988007F), new Vector2(226.363998F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0747() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(209.947998F, -330.799988F)); + builder.AddLine(new Vector2(206.671997F, -330.799988F)); + builder.AddLine(new Vector2(206.671997F, -318.019989F)); + builder.AddLine(new Vector2(207.283997F, -313.880005F)); + builder.AddLine(new Vector2(206.671997F, -309.70401F)); + builder.AddLine(new Vector2(206.671997F, -305.096008F)); + builder.AddLine(new Vector2(209.947998F, -305.096008F)); + builder.AddLine(new Vector2(209.947998F, -330.799988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(198.626007F, -308.533997F)); + builder.AddCubicBezier(new Vector2(197.798004F, -309.026001F), new Vector2(197.149994F, -309.716003F), new Vector2(196.682007F, -310.604004F)); + builder.AddCubicBezier(new Vector2(196.214005F, -311.492004F), new Vector2(195.979996F, -312.511993F), new Vector2(195.979996F, -313.664001F)); + builder.AddCubicBezier(new Vector2(195.979996F, -314.81601F), new Vector2(196.214005F, -315.829987F), new Vector2(196.682007F, -316.705994F)); + builder.AddCubicBezier(new Vector2(197.149994F, -317.582001F), new Vector2(197.792007F, -318.265991F), new Vector2(198.608002F, -318.757996F)); + builder.AddCubicBezier(new Vector2(199.423996F, -319.25F), new Vector2(200.371994F, -319.496002F), new Vector2(201.451996F, -319.496002F)); + builder.AddCubicBezier(new Vector2(202.531998F, -319.496002F), new Vector2(203.479996F, -319.243988F), new Vector2(204.296005F, -318.73999F)); + builder.AddCubicBezier(new Vector2(205.112F, -318.235992F), new Vector2(205.748001F, -317.54599F), new Vector2(206.203995F, -316.670013F)); + builder.AddCubicBezier(new Vector2(206.660004F, -315.794006F), new Vector2(206.888F, -314.779999F), new Vector2(206.888F, -313.627991F)); + builder.AddCubicBezier(new Vector2(206.888F, -312.5F), new Vector2(206.660004F, -311.497986F), new Vector2(206.203995F, -310.622009F)); + builder.AddCubicBezier(new Vector2(205.748001F, -309.746002F), new Vector2(205.112F, -309.056F), new Vector2(204.296005F, -308.552002F)); + builder.AddCubicBezier(new Vector2(203.479996F, -308.048004F), new Vector2(202.531998F, -307.79599F), new Vector2(201.451996F, -307.79599F)); + builder.AddCubicBezier(new Vector2(200.395996F, -307.79599F), new Vector2(199.453995F, -308.041992F), new Vector2(198.626007F, -308.533997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(204.440002F, -305.54599F)); + builder.AddCubicBezier(new Vector2(205.472F, -306.085999F), new Vector2(206.300003F, -306.835999F), new Vector2(206.923996F, -307.79599F)); + builder.AddCubicBezier(new Vector2(207.548004F, -308.756012F), new Vector2(207.895996F, -309.847992F), new Vector2(207.968002F, -311.071991F)); + builder.AddLine(new Vector2(207.968002F, -316.220001F)); + builder.AddCubicBezier(new Vector2(207.895996F, -317.467987F), new Vector2(207.542007F, -318.56601F), new Vector2(206.906006F, -319.514008F)); + builder.AddCubicBezier(new Vector2(206.270004F, -320.462006F), new Vector2(205.436005F, -321.205994F), new Vector2(204.404007F, -321.746002F)); + builder.AddCubicBezier(new Vector2(203.371994F, -322.286011F), new Vector2(202.207993F, -322.556F), new Vector2(200.912003F, -322.556F)); + builder.AddCubicBezier(new Vector2(199.352005F, -322.556F), new Vector2(197.947998F, -322.160004F), new Vector2(196.699997F, -321.368011F)); + builder.AddCubicBezier(new Vector2(195.451996F, -320.575989F), new Vector2(194.462006F, -319.507996F), new Vector2(193.729996F, -318.164001F)); + builder.AddCubicBezier(new Vector2(192.998001F, -316.820007F), new Vector2(192.632004F, -315.308014F), new Vector2(192.632004F, -313.627991F)); + builder.AddCubicBezier(new Vector2(192.632004F, -311.947998F), new Vector2(192.998001F, -310.436005F), new Vector2(193.729996F, -309.09201F)); + builder.AddCubicBezier(new Vector2(194.462006F, -307.747986F), new Vector2(195.451996F, -306.686005F), new Vector2(196.699997F, -305.906006F)); + builder.AddCubicBezier(new Vector2(197.947998F, -305.126007F), new Vector2(199.352005F, -304.735992F), new Vector2(200.912003F, -304.735992F)); + builder.AddCubicBezier(new Vector2(202.231995F, -304.735992F), new Vector2(203.408005F, -305.006012F), new Vector2(204.440002F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0748() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(188.779999F, -326.209991F)); + builder.AddCubicBezier(new Vector2(189.164001F, -326.605988F), new Vector2(189.356003F, -327.104004F), new Vector2(189.356003F, -327.70401F)); + builder.AddCubicBezier(new Vector2(189.356003F, -328.279999F), new Vector2(189.164001F, -328.765991F), new Vector2(188.779999F, -329.161987F)); + builder.AddCubicBezier(new Vector2(188.395996F, -329.558014F), new Vector2(187.904007F, -329.756012F), new Vector2(187.304001F, -329.756012F)); + builder.AddCubicBezier(new Vector2(186.703995F, -329.756012F), new Vector2(186.212006F, -329.558014F), new Vector2(185.828003F, -329.161987F)); + builder.AddCubicBezier(new Vector2(185.444F, -328.765991F), new Vector2(185.251999F, -328.279999F), new Vector2(185.251999F, -327.70401F)); + builder.AddCubicBezier(new Vector2(185.251999F, -327.104004F), new Vector2(185.444F, -326.605988F), new Vector2(185.828003F, -326.209991F)); + builder.AddCubicBezier(new Vector2(186.212006F, -325.813995F), new Vector2(186.703995F, -325.615997F), new Vector2(187.304001F, -325.615997F)); + builder.AddCubicBezier(new Vector2(187.904007F, -325.615997F), new Vector2(188.395996F, -325.813995F), new Vector2(188.779999F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(188.923996F, -305.096008F)); + builder.AddLine(new Vector2(188.923996F, -322.196014F)); + builder.AddLine(new Vector2(185.647995F, -322.196014F)); + builder.AddLine(new Vector2(185.647995F, -305.096008F)); + builder.AddLine(new Vector2(188.923996F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0749() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(165.703995F, -305.096008F)); + builder.AddLine(new Vector2(170.671997F, -317.984009F)); + builder.AddLine(new Vector2(169.483994F, -317.984009F)); + builder.AddLine(new Vector2(174.416F, -305.096008F)); + builder.AddLine(new Vector2(176.324005F, -305.096008F)); + builder.AddLine(new Vector2(183.056F, -322.196014F)); + builder.AddLine(new Vector2(179.671997F, -322.196014F)); + builder.AddLine(new Vector2(174.776001F, -308.876007F)); + builder.AddLine(new Vector2(175.856003F, -308.876007F)); + builder.AddLine(new Vector2(170.996002F, -322.196014F)); + builder.AddLine(new Vector2(169.123993F, -322.196014F)); + builder.AddLine(new Vector2(164.264008F, -308.876007F)); + builder.AddLine(new Vector2(165.343994F, -308.876007F)); + builder.AddLine(new Vector2(160.447998F, -322.196014F)); + builder.AddLine(new Vector2(157.063995F, -322.196014F)); + builder.AddLine(new Vector2(163.796005F, -305.096008F)); + builder.AddLine(new Vector2(165.703995F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0750() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(146.768005F, -305.096008F)); + builder.AddLine(new Vector2(146.768005F, -322.196014F)); + builder.AddLine(new Vector2(143.492004F, -322.196014F)); + builder.AddLine(new Vector2(143.492004F, -318.019989F)); + builder.AddLine(new Vector2(144.104004F, -313.880005F)); + builder.AddLine(new Vector2(143.492004F, -309.70401F)); + builder.AddLine(new Vector2(143.492004F, -305.096008F)); + builder.AddLine(new Vector2(146.768005F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(135.464005F, -308.552002F)); + builder.AddCubicBezier(new Vector2(134.623993F, -309.056F), new Vector2(133.970001F, -309.746002F), new Vector2(133.501999F, -310.622009F)); + builder.AddCubicBezier(new Vector2(133.033997F, -311.497986F), new Vector2(132.800003F, -312.511993F), new Vector2(132.800003F, -313.664001F)); + builder.AddCubicBezier(new Vector2(132.800003F, -314.791992F), new Vector2(133.033997F, -315.794006F), new Vector2(133.501999F, -316.670013F)); + builder.AddCubicBezier(new Vector2(133.970001F, -317.54599F), new Vector2(134.617996F, -318.235992F), new Vector2(135.445999F, -318.73999F)); + builder.AddCubicBezier(new Vector2(136.274002F, -319.243988F), new Vector2(137.227997F, -319.496002F), new Vector2(138.307999F, -319.496002F)); + builder.AddCubicBezier(new Vector2(139.388F, -319.496002F), new Vector2(140.330002F, -319.25F), new Vector2(141.134003F, -318.757996F)); + builder.AddCubicBezier(new Vector2(141.938004F, -318.265991F), new Vector2(142.567993F, -317.575989F), new Vector2(143.024002F, -316.687988F)); + builder.AddCubicBezier(new Vector2(143.479996F, -315.799988F), new Vector2(143.707993F, -314.779999F), new Vector2(143.707993F, -313.627991F)); + builder.AddCubicBezier(new Vector2(143.707993F, -311.924011F), new Vector2(143.216003F, -310.526001F), new Vector2(142.231995F, -309.43399F)); + builder.AddCubicBezier(new Vector2(141.248001F, -308.34201F), new Vector2(139.951996F, -307.79599F), new Vector2(138.343994F, -307.79599F)); + builder.AddCubicBezier(new Vector2(137.264008F, -307.79599F), new Vector2(136.304001F, -308.048004F), new Vector2(135.464005F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(141.296005F, -305.54599F)); + builder.AddCubicBezier(new Vector2(142.328003F, -306.085999F), new Vector2(143.149994F, -306.835999F), new Vector2(143.761993F, -307.79599F)); + builder.AddCubicBezier(new Vector2(144.373993F, -308.756012F), new Vector2(144.716003F, -309.847992F), new Vector2(144.787994F, -311.071991F)); + builder.AddLine(new Vector2(144.787994F, -316.220001F)); + builder.AddCubicBezier(new Vector2(144.716003F, -317.467987F), new Vector2(144.367996F, -318.56601F), new Vector2(143.744003F, -319.514008F)); + builder.AddCubicBezier(new Vector2(143.119995F, -320.462006F), new Vector2(142.298004F, -321.205994F), new Vector2(141.278F, -321.746002F)); + builder.AddCubicBezier(new Vector2(140.257996F, -322.286011F), new Vector2(139.100006F, -322.556F), new Vector2(137.804001F, -322.556F)); + builder.AddCubicBezier(new Vector2(136.220001F, -322.556F), new Vector2(134.798004F, -322.160004F), new Vector2(133.537994F, -321.368011F)); + builder.AddCubicBezier(new Vector2(132.278F, -320.575989F), new Vector2(131.281998F, -319.507996F), new Vector2(130.550003F, -318.164001F)); + builder.AddCubicBezier(new Vector2(129.817993F, -316.820007F), new Vector2(129.451996F, -315.308014F), new Vector2(129.451996F, -313.627991F)); + builder.AddCubicBezier(new Vector2(129.451996F, -311.947998F), new Vector2(129.817993F, -310.436005F), new Vector2(130.550003F, -309.09201F)); + builder.AddCubicBezier(new Vector2(131.281998F, -307.747986F), new Vector2(132.278F, -306.686005F), new Vector2(133.537994F, -305.906006F)); + builder.AddCubicBezier(new Vector2(134.798004F, -305.126007F), new Vector2(136.220001F, -304.735992F), new Vector2(137.804001F, -304.735992F)); + builder.AddCubicBezier(new Vector2(139.100006F, -304.735992F), new Vector2(140.264008F, -305.006012F), new Vector2(141.296005F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0751() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(106.592003F, -305.096008F)); + builder.AddLine(new Vector2(106.592003F, -322.196014F)); + builder.AddLine(new Vector2(103.351997F, -322.196014F)); + builder.AddLine(new Vector2(103.351997F, -305.096008F)); + builder.AddLine(new Vector2(106.592003F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(118.688004F, -305.096008F)); + builder.AddLine(new Vector2(118.688004F, -315.716003F)); + builder.AddCubicBezier(new Vector2(118.688004F, -316.891998F), new Vector2(118.400002F, -318.002014F), new Vector2(117.823997F, -319.04599F)); + builder.AddCubicBezier(new Vector2(117.248001F, -320.089996F), new Vector2(116.461998F, -320.936005F), new Vector2(115.466003F, -321.584015F)); + builder.AddCubicBezier(new Vector2(114.470001F, -322.231995F), new Vector2(113.323997F, -322.556F), new Vector2(112.028F, -322.556F)); + builder.AddCubicBezier(new Vector2(110.732002F, -322.556F), new Vector2(109.568001F, -322.261993F), new Vector2(108.536003F, -321.674011F)); + builder.AddCubicBezier(new Vector2(107.503998F, -321.085999F), new Vector2(106.699997F, -320.287994F), new Vector2(106.124001F, -319.279999F)); + builder.AddCubicBezier(new Vector2(105.547997F, -318.272003F), new Vector2(105.260002F, -317.119995F), new Vector2(105.260002F, -315.824005F)); + builder.AddLine(new Vector2(106.592003F, -315.067993F)); + builder.AddCubicBezier(new Vector2(106.592003F, -315.932007F), new Vector2(106.783997F, -316.700012F), new Vector2(107.167999F, -317.372009F)); + builder.AddCubicBezier(new Vector2(107.552002F, -318.044006F), new Vector2(108.080002F, -318.571991F), new Vector2(108.751999F, -318.955994F)); + builder.AddCubicBezier(new Vector2(109.424004F, -319.339996F), new Vector2(110.192001F, -319.532013F), new Vector2(111.056F, -319.532013F)); + builder.AddCubicBezier(new Vector2(112.351997F, -319.532013F), new Vector2(113.402F, -319.112F), new Vector2(114.206001F, -318.272003F)); + builder.AddCubicBezier(new Vector2(115.010002F, -317.432007F), new Vector2(115.412003F, -316.364014F), new Vector2(115.412003F, -315.067993F)); + builder.AddLine(new Vector2(115.412003F, -305.096008F)); + builder.AddLine(new Vector2(118.688004F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0752() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(98.4199982F, -326.209991F)); + builder.AddCubicBezier(new Vector2(98.8040009F, -326.605988F), new Vector2(98.9960022F, -327.104004F), new Vector2(98.9960022F, -327.70401F)); + builder.AddCubicBezier(new Vector2(98.9960022F, -328.279999F), new Vector2(98.8040009F, -328.765991F), new Vector2(98.4199982F, -329.161987F)); + builder.AddCubicBezier(new Vector2(98.0360031F, -329.558014F), new Vector2(97.5439987F, -329.756012F), new Vector2(96.9440002F, -329.756012F)); + builder.AddCubicBezier(new Vector2(96.3440018F, -329.756012F), new Vector2(95.8519974F, -329.558014F), new Vector2(95.4680023F, -329.161987F)); + builder.AddCubicBezier(new Vector2(95.0839996F, -328.765991F), new Vector2(94.8919983F, -328.279999F), new Vector2(94.8919983F, -327.70401F)); + builder.AddCubicBezier(new Vector2(94.8919983F, -327.104004F), new Vector2(95.0839996F, -326.605988F), new Vector2(95.4680023F, -326.209991F)); + builder.AddCubicBezier(new Vector2(95.8519974F, -325.813995F), new Vector2(96.3440018F, -325.615997F), new Vector2(96.9440002F, -325.615997F)); + builder.AddCubicBezier(new Vector2(97.5439987F, -325.615997F), new Vector2(98.0360031F, -325.813995F), new Vector2(98.4199982F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(98.564003F, -305.096008F)); + builder.AddLine(new Vector2(98.564003F, -322.196014F)); + builder.AddLine(new Vector2(95.288002F, -322.196014F)); + builder.AddLine(new Vector2(95.288002F, -305.096008F)); + builder.AddLine(new Vector2(98.564003F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0753() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(82.4899979F, -306.140015F)); + builder.AddCubicBezier(new Vector2(83.6299973F, -307.075989F), new Vector2(84.1999969F, -308.347992F), new Vector2(84.1999969F, -309.955994F)); + builder.AddCubicBezier(new Vector2(84.1999969F, -311.011993F), new Vector2(83.9779968F, -311.864014F), new Vector2(83.5339966F, -312.511993F)); + builder.AddCubicBezier(new Vector2(83.0899963F, -313.160004F), new Vector2(82.5199966F, -313.675995F), new Vector2(81.8239975F, -314.059998F)); + builder.AddCubicBezier(new Vector2(81.1279984F, -314.444F), new Vector2(80.3960037F, -314.75F), new Vector2(79.6279984F, -314.977997F)); + builder.AddCubicBezier(new Vector2(78.8600006F, -315.205994F), new Vector2(78.1220016F, -315.428009F), new Vector2(77.4140015F, -315.644012F)); + builder.AddCubicBezier(new Vector2(76.7060013F, -315.859985F), new Vector2(76.1360016F, -316.123993F), new Vector2(75.7040024F, -316.436005F)); + builder.AddCubicBezier(new Vector2(75.2720032F, -316.747986F), new Vector2(75.0559998F, -317.191986F), new Vector2(75.0559998F, -317.768005F)); + builder.AddCubicBezier(new Vector2(75.0559998F, -318.320007F), new Vector2(75.302002F, -318.764008F), new Vector2(75.7939987F, -319.100006F)); + builder.AddCubicBezier(new Vector2(76.2860031F, -319.436005F), new Vector2(77F, -319.604004F), new Vector2(77.935997F, -319.604004F)); + builder.AddCubicBezier(new Vector2(78.8239975F, -319.604004F), new Vector2(79.6159973F, -319.436005F), new Vector2(80.3119965F, -319.100006F)); + builder.AddCubicBezier(new Vector2(81.0080032F, -318.764008F), new Vector2(81.6080017F, -318.283997F), new Vector2(82.1119995F, -317.660004F)); + builder.AddLine(new Vector2(84.1999969F, -319.747986F)); + builder.AddCubicBezier(new Vector2(83.5279999F, -320.68399F), new Vector2(82.6699982F, -321.385986F), new Vector2(81.6259995F, -321.854004F)); + builder.AddCubicBezier(new Vector2(80.5820007F, -322.321991F), new Vector2(79.3880005F, -322.556F), new Vector2(78.0439987F, -322.556F)); + builder.AddCubicBezier(new Vector2(76.7720032F, -322.556F), new Vector2(75.6800003F, -322.35199F), new Vector2(74.7679977F, -321.944F)); + builder.AddCubicBezier(new Vector2(73.8560028F, -321.536011F), new Vector2(73.1539993F, -320.95401F), new Vector2(72.6620026F, -320.197998F)); + builder.AddCubicBezier(new Vector2(72.1699982F, -319.441986F), new Vector2(71.9240036F, -318.548004F), new Vector2(71.9240036F, -317.515991F)); + builder.AddCubicBezier(new Vector2(71.9240036F, -316.484009F), new Vector2(72.1460037F, -315.649994F), new Vector2(72.5899963F, -315.014008F)); + builder.AddCubicBezier(new Vector2(73.0339966F, -314.377991F), new Vector2(73.6039963F, -313.880005F), new Vector2(74.3000031F, -313.519989F)); + builder.AddCubicBezier(new Vector2(74.9960022F, -313.160004F), new Vector2(75.7340012F, -312.872009F), new Vector2(76.5139999F, -312.656006F)); + builder.AddCubicBezier(new Vector2(77.2939987F, -312.440002F), new Vector2(78.0319977F, -312.217987F), new Vector2(78.7279968F, -311.98999F)); + builder.AddCubicBezier(new Vector2(79.4240036F, -311.761993F), new Vector2(79.9940033F, -311.473999F), new Vector2(80.4380035F, -311.126007F)); + builder.AddCubicBezier(new Vector2(80.8820038F, -310.778015F), new Vector2(81.1039963F, -310.291992F), new Vector2(81.1039963F, -309.667999F)); + builder.AddCubicBezier(new Vector2(81.1039963F, -309.044006F), new Vector2(80.8280029F, -308.558014F), new Vector2(80.276001F, -308.209991F)); + builder.AddCubicBezier(new Vector2(79.723999F, -307.862F), new Vector2(78.9440002F, -307.687988F), new Vector2(77.935997F, -307.687988F)); + builder.AddCubicBezier(new Vector2(76.9280014F, -307.687988F), new Vector2(76.0159988F, -307.873993F), new Vector2(75.1999969F, -308.246002F)); + builder.AddCubicBezier(new Vector2(74.3840027F, -308.618011F), new Vector2(73.6640015F, -309.187988F), new Vector2(73.0400009F, -309.955994F)); + builder.AddLine(new Vector2(70.9520035F, -307.868011F)); + builder.AddCubicBezier(new Vector2(71.4800034F, -307.220001F), new Vector2(72.0979996F, -306.661987F), new Vector2(72.8059998F, -306.194F)); + builder.AddCubicBezier(new Vector2(73.5139999F, -305.726013F), new Vector2(74.3000031F, -305.365997F), new Vector2(75.1640015F, -305.114014F)); + builder.AddCubicBezier(new Vector2(76.0279999F, -304.862F), new Vector2(76.9400024F, -304.735992F), new Vector2(77.9000015F, -304.735992F)); + builder.AddCubicBezier(new Vector2(79.8199997F, -304.735992F), new Vector2(81.3499985F, -305.20401F), new Vector2(82.4899979F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0754() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(69.6559982F, -319.243988F)); + builder.AddLine(new Vector2(69.6559982F, -322.196014F)); + builder.AddLine(new Vector2(57.9920006F, -322.196014F)); + builder.AddLine(new Vector2(57.9920006F, -319.243988F)); + builder.AddLine(new Vector2(69.6559982F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(65.4440002F, -305.096008F)); + builder.AddLine(new Vector2(65.4440002F, -329.359985F)); + builder.AddLine(new Vector2(62.2039986F, -329.359985F)); + builder.AddLine(new Vector2(62.2039986F, -305.096008F)); + builder.AddLine(new Vector2(65.4440002F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0755() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(54.8240013F, -305.096008F)); + builder.AddLine(new Vector2(54.8240013F, -330.799988F)); + builder.AddLine(new Vector2(51.5839996F, -330.799988F)); + builder.AddLine(new Vector2(51.5839996F, -305.096008F)); + builder.AddLine(new Vector2(54.8240013F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0756() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(43.7000008F, -305.726013F)); + builder.AddCubicBezier(new Vector2(44.8040009F, -306.338013F), new Vector2(45.6679993F, -307.208008F), new Vector2(46.2919998F, -308.335999F)); + builder.AddCubicBezier(new Vector2(46.9160004F, -309.463989F), new Vector2(47.2280006F, -310.772003F), new Vector2(47.2280006F, -312.26001F)); + builder.AddLine(new Vector2(47.2280006F, -322.196014F)); + builder.AddLine(new Vector2(43.987999F, -322.196014F)); + builder.AddLine(new Vector2(43.987999F, -312.403992F)); + builder.AddCubicBezier(new Vector2(43.987999F, -310.988007F), new Vector2(43.6279984F, -309.877991F), new Vector2(42.9080009F, -309.074005F)); + builder.AddCubicBezier(new Vector2(42.1879997F, -308.269989F), new Vector2(41.1920013F, -307.868011F), new Vector2(39.9199982F, -307.868011F)); + builder.AddCubicBezier(new Vector2(39.0800018F, -307.868011F), new Vector2(38.3479996F, -308.048004F), new Vector2(37.723999F, -308.40799F)); + builder.AddCubicBezier(new Vector2(37.0999985F, -308.768005F), new Vector2(36.6259995F, -309.290009F), new Vector2(36.3019981F, -309.973999F)); + builder.AddCubicBezier(new Vector2(35.9780006F, -310.65799F), new Vector2(35.8160019F, -311.467987F), new Vector2(35.8160019F, -312.403992F)); + builder.AddLine(new Vector2(35.8160019F, -322.196014F)); + builder.AddLine(new Vector2(32.5760002F, -322.196014F)); + builder.AddLine(new Vector2(32.5760002F, -312.26001F)); + builder.AddCubicBezier(new Vector2(32.5760002F, -310.772003F), new Vector2(32.8880005F, -309.463989F), new Vector2(33.512001F, -308.335999F)); + builder.AddCubicBezier(new Vector2(34.1360016F, -307.208008F), new Vector2(35.0060005F, -306.338013F), new Vector2(36.1220016F, -305.726013F)); + builder.AddCubicBezier(new Vector2(37.237999F, -305.114014F), new Vector2(38.5040016F, -304.808014F), new Vector2(39.9199982F, -304.808014F)); + builder.AddCubicBezier(new Vector2(41.3359985F, -304.808014F), new Vector2(42.5960007F, -305.114014F), new Vector2(43.7000008F, -305.726013F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0757() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(27.6620007F, -306.140015F)); + builder.AddCubicBezier(new Vector2(28.802F, -307.075989F), new Vector2(29.3719997F, -308.347992F), new Vector2(29.3719997F, -309.955994F)); + builder.AddCubicBezier(new Vector2(29.3719997F, -311.011993F), new Vector2(29.1499996F, -311.864014F), new Vector2(28.7059994F, -312.511993F)); + builder.AddCubicBezier(new Vector2(28.2619991F, -313.160004F), new Vector2(27.6919994F, -313.675995F), new Vector2(26.9960003F, -314.059998F)); + builder.AddCubicBezier(new Vector2(26.2999992F, -314.444F), new Vector2(25.5680008F, -314.75F), new Vector2(24.7999992F, -314.977997F)); + builder.AddCubicBezier(new Vector2(24.0319996F, -315.205994F), new Vector2(23.2940006F, -315.428009F), new Vector2(22.5860004F, -315.644012F)); + builder.AddCubicBezier(new Vector2(21.8780003F, -315.859985F), new Vector2(21.3080006F, -316.123993F), new Vector2(20.8759995F, -316.436005F)); + builder.AddCubicBezier(new Vector2(20.4440002F, -316.747986F), new Vector2(20.2280006F, -317.191986F), new Vector2(20.2280006F, -317.768005F)); + builder.AddCubicBezier(new Vector2(20.2280006F, -318.320007F), new Vector2(20.4740009F, -318.764008F), new Vector2(20.9659996F, -319.100006F)); + builder.AddCubicBezier(new Vector2(21.4580002F, -319.436005F), new Vector2(22.1720009F, -319.604004F), new Vector2(23.1079998F, -319.604004F)); + builder.AddCubicBezier(new Vector2(23.9960003F, -319.604004F), new Vector2(24.7880001F, -319.436005F), new Vector2(25.4839993F, -319.100006F)); + builder.AddCubicBezier(new Vector2(26.1800003F, -318.764008F), new Vector2(26.7800007F, -318.283997F), new Vector2(27.2840004F, -317.660004F)); + builder.AddLine(new Vector2(29.3719997F, -319.747986F)); + builder.AddCubicBezier(new Vector2(28.7000008F, -320.68399F), new Vector2(27.8419991F, -321.385986F), new Vector2(26.7980003F, -321.854004F)); + builder.AddCubicBezier(new Vector2(25.7539997F, -322.321991F), new Vector2(24.5599995F, -322.556F), new Vector2(23.2159996F, -322.556F)); + builder.AddCubicBezier(new Vector2(21.9440002F, -322.556F), new Vector2(20.8519993F, -322.35199F), new Vector2(19.9400005F, -321.944F)); + builder.AddCubicBezier(new Vector2(19.0279999F, -321.536011F), new Vector2(18.3260002F, -320.95401F), new Vector2(17.8339996F, -320.197998F)); + builder.AddCubicBezier(new Vector2(17.3419991F, -319.441986F), new Vector2(17.0960007F, -318.548004F), new Vector2(17.0960007F, -317.515991F)); + builder.AddCubicBezier(new Vector2(17.0960007F, -316.484009F), new Vector2(17.3180008F, -315.649994F), new Vector2(17.7619991F, -315.014008F)); + builder.AddCubicBezier(new Vector2(18.2059994F, -314.377991F), new Vector2(18.7759991F, -313.880005F), new Vector2(19.4720001F, -313.519989F)); + builder.AddCubicBezier(new Vector2(20.1679993F, -313.160004F), new Vector2(20.9060001F, -312.872009F), new Vector2(21.6860008F, -312.656006F)); + builder.AddCubicBezier(new Vector2(22.4659996F, -312.440002F), new Vector2(23.2040005F, -312.217987F), new Vector2(23.8999996F, -311.98999F)); + builder.AddCubicBezier(new Vector2(24.5960007F, -311.761993F), new Vector2(25.1660004F, -311.473999F), new Vector2(25.6100006F, -311.126007F)); + builder.AddCubicBezier(new Vector2(26.0540009F, -310.778015F), new Vector2(26.2759991F, -310.291992F), new Vector2(26.2759991F, -309.667999F)); + builder.AddCubicBezier(new Vector2(26.2759991F, -309.044006F), new Vector2(26F, -308.558014F), new Vector2(25.448F, -308.209991F)); + builder.AddCubicBezier(new Vector2(24.8959999F, -307.862F), new Vector2(24.1159992F, -307.687988F), new Vector2(23.1079998F, -307.687988F)); + builder.AddCubicBezier(new Vector2(22.1000004F, -307.687988F), new Vector2(21.1879997F, -307.873993F), new Vector2(20.3719997F, -308.246002F)); + builder.AddCubicBezier(new Vector2(19.5559998F, -308.618011F), new Vector2(18.8360004F, -309.187988F), new Vector2(18.2119999F, -309.955994F)); + builder.AddLine(new Vector2(16.1240005F, -307.868011F)); + builder.AddCubicBezier(new Vector2(16.6520004F, -307.220001F), new Vector2(17.2700005F, -306.661987F), new Vector2(17.9780006F, -306.194F)); + builder.AddCubicBezier(new Vector2(18.6860008F, -305.726013F), new Vector2(19.4720001F, -305.365997F), new Vector2(20.3360004F, -305.114014F)); + builder.AddCubicBezier(new Vector2(21.2000008F, -304.862F), new Vector2(22.1119995F, -304.735992F), new Vector2(23.0720005F, -304.735992F)); + builder.AddCubicBezier(new Vector2(24.9920006F, -304.735992F), new Vector2(26.5219994F, -305.20401F), new Vector2(27.6620007F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0758() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(10.04F, -305.492004F)); + builder.AddCubicBezier(new Vector2(11.2159996F, -305.996002F), new Vector2(12.224F, -306.727997F), new Vector2(13.0640001F, -307.687988F)); + builder.AddLine(new Vector2(10.9759998F, -309.812012F)); + builder.AddCubicBezier(new Vector2(10.3999996F, -309.140015F), new Vector2(9.71000004F, -308.635986F), new Vector2(8.90600014F, -308.299988F)); + builder.AddCubicBezier(new Vector2(8.10200024F, -307.963989F), new Vector2(7.21999979F, -307.79599F), new Vector2(6.26000023F, -307.79599F)); + builder.AddCubicBezier(new Vector2(5.1079998F, -307.79599F), new Vector2(4.08799982F, -308.041992F), new Vector2(3.20000005F, -308.533997F)); + builder.AddCubicBezier(new Vector2(2.31200004F, -309.026001F), new Vector2(1.62800002F, -309.721985F), new Vector2(1.148F, -310.622009F)); + builder.AddCubicBezier(new Vector2(0.667999983F, -311.522003F), new Vector2(0.428000003F, -312.571991F), new Vector2(0.428000003F, -313.772003F)); + builder.AddCubicBezier(new Vector2(0.428000003F, -314.947998F), new Vector2(0.656000018F, -315.967987F), new Vector2(1.11199999F, -316.832001F)); + builder.AddCubicBezier(new Vector2(1.56799996F, -317.696014F), new Vector2(2.21600008F, -318.368011F), new Vector2(3.05599999F, -318.847992F)); + builder.AddCubicBezier(new Vector2(3.89599991F, -319.328003F), new Vector2(4.86800003F, -319.567993F), new Vector2(5.97200012F, -319.567993F)); + builder.AddCubicBezier(new Vector2(7.02799988F, -319.567993F), new Vector2(7.92799997F, -319.346008F), new Vector2(8.67199993F, -318.902008F)); + builder.AddCubicBezier(new Vector2(9.41600037F, -318.458008F), new Vector2(9.99199963F, -317.834015F), new Vector2(10.3999996F, -317.029999F)); + builder.AddCubicBezier(new Vector2(10.8079996F, -316.226013F), new Vector2(11.0120001F, -315.247986F), new Vector2(11.0120001F, -314.096008F)); + builder.AddLine(new Vector2(12.1999998F, -315.140015F)); + builder.AddLine(new Vector2(-0.508000016F, -315.140015F)); + builder.AddLine(new Vector2(-0.508000016F, -312.440002F)); + builder.AddLine(new Vector2(13.9280005F, -312.440002F)); + builder.AddCubicBezier(new Vector2(14F, -312.776001F), new Vector2(14.0480003F, -313.082001F), new Vector2(14.0719995F, -313.358002F)); + builder.AddCubicBezier(new Vector2(14.0959997F, -313.634003F), new Vector2(14.1079998F, -313.891998F), new Vector2(14.1079998F, -314.131989F)); + builder.AddCubicBezier(new Vector2(14.1079998F, -315.764008F), new Vector2(13.7659998F, -317.216003F), new Vector2(13.0819998F, -318.488007F)); + builder.AddCubicBezier(new Vector2(12.3979998F, -319.76001F), new Vector2(11.4440002F, -320.756012F), new Vector2(10.2200003F, -321.476013F)); + builder.AddCubicBezier(new Vector2(8.99600029F, -322.196014F), new Vector2(7.60400009F, -322.556F), new Vector2(6.04400015F, -322.556F)); + builder.AddCubicBezier(new Vector2(4.38800001F, -322.556F), new Vector2(2.89400005F, -322.165985F), new Vector2(1.56200004F, -321.385986F)); + builder.AddCubicBezier(new Vector2(0.230000004F, -320.605988F), new Vector2(-0.825999975F, -319.544006F), new Vector2(-1.60599995F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-2.38599992F, -316.855988F), new Vector2(-2.77600002F, -315.343994F), new Vector2(-2.77600002F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-2.77600002F, -311.959991F), new Vector2(-2.38000011F, -310.436005F), new Vector2(-1.58800006F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-0.796000004F, -307.747986F), new Vector2(0.277999997F, -306.686005F), new Vector2(1.63399994F, -305.906006F)); + builder.AddCubicBezier(new Vector2(2.99000001F, -305.126007F), new Vector2(4.53200006F, -304.735992F), new Vector2(6.26000023F, -304.735992F)); + builder.AddCubicBezier(new Vector2(7.60400009F, -304.735992F), new Vector2(8.86400032F, -304.988007F), new Vector2(10.04F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0759() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-11.1639996F, -318.343994F)); + builder.AddCubicBezier(new Vector2(-10.3959999F, -319.112F), new Vector2(-9.4119997F, -319.496002F), new Vector2(-8.21199989F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-7.63600016F, -319.496002F), new Vector2(-7.13199997F, -319.411987F), new Vector2(-6.69999981F, -319.243988F)); + builder.AddCubicBezier(new Vector2(-6.26800013F, -319.075989F), new Vector2(-5.87200022F, -318.799988F), new Vector2(-5.51200008F, -318.415985F)); + builder.AddLine(new Vector2(-3.38800001F, -320.612F)); + builder.AddCubicBezier(new Vector2(-3.98799992F, -321.308014F), new Vector2(-4.63600016F, -321.806F), new Vector2(-5.33199978F, -322.105988F)); + builder.AddCubicBezier(new Vector2(-6.02799988F, -322.406006F), new Vector2(-6.80800009F, -322.556F), new Vector2(-7.67199993F, -322.556F)); + builder.AddCubicBezier(new Vector2(-9.56799984F, -322.556F), new Vector2(-11.0200005F, -321.90799F), new Vector2(-12.0279999F, -320.612F)); + builder.AddCubicBezier(new Vector2(-13.0360003F, -319.31601F), new Vector2(-13.54F, -317.575989F), new Vector2(-13.54F, -315.391998F)); + builder.AddLine(new Vector2(-12.316F, -314.81601F)); + builder.AddCubicBezier(new Vector2(-12.316F, -316.399994F), new Vector2(-11.9320002F, -317.575989F), new Vector2(-11.1639996F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-12.316F, -305.096008F)); + builder.AddLine(new Vector2(-12.316F, -322.196014F)); + builder.AddLine(new Vector2(-15.5559998F, -322.196014F)); + builder.AddLine(new Vector2(-15.5559998F, -305.096008F)); + builder.AddLine(new Vector2(-12.316F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0760() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-28.3540001F, -306.140015F)); + builder.AddCubicBezier(new Vector2(-27.2140007F, -307.075989F), new Vector2(-26.6439991F, -308.347992F), new Vector2(-26.6439991F, -309.955994F)); + builder.AddCubicBezier(new Vector2(-26.6439991F, -311.011993F), new Vector2(-26.8659992F, -311.864014F), new Vector2(-27.3099995F, -312.511993F)); + builder.AddCubicBezier(new Vector2(-27.7539997F, -313.160004F), new Vector2(-28.3239994F, -313.675995F), new Vector2(-29.0200005F, -314.059998F)); + builder.AddCubicBezier(new Vector2(-29.7159996F, -314.444F), new Vector2(-30.448F, -314.75F), new Vector2(-31.2159996F, -314.977997F)); + builder.AddCubicBezier(new Vector2(-31.9839993F, -315.205994F), new Vector2(-32.7220001F, -315.428009F), new Vector2(-33.4300003F, -315.644012F)); + builder.AddCubicBezier(new Vector2(-34.1380005F, -315.859985F), new Vector2(-34.7080002F, -316.123993F), new Vector2(-35.1399994F, -316.436005F)); + builder.AddCubicBezier(new Vector2(-35.5719986F, -316.747986F), new Vector2(-35.7879982F, -317.191986F), new Vector2(-35.7879982F, -317.768005F)); + builder.AddCubicBezier(new Vector2(-35.7879982F, -318.320007F), new Vector2(-35.5419998F, -318.764008F), new Vector2(-35.0499992F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-34.5579987F, -319.436005F), new Vector2(-33.8440018F, -319.604004F), new Vector2(-32.9080009F, -319.604004F)); + builder.AddCubicBezier(new Vector2(-32.0200005F, -319.604004F), new Vector2(-31.2280006F, -319.436005F), new Vector2(-30.5319996F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-29.8360004F, -318.764008F), new Vector2(-29.2360001F, -318.283997F), new Vector2(-28.7320004F, -317.660004F)); + builder.AddLine(new Vector2(-26.6439991F, -319.747986F)); + builder.AddCubicBezier(new Vector2(-27.316F, -320.68399F), new Vector2(-28.1739998F, -321.385986F), new Vector2(-29.2180004F, -321.854004F)); + builder.AddCubicBezier(new Vector2(-30.2619991F, -322.321991F), new Vector2(-31.4559994F, -322.556F), new Vector2(-32.7999992F, -322.556F)); + builder.AddCubicBezier(new Vector2(-34.0719986F, -322.556F), new Vector2(-35.1640015F, -322.35199F), new Vector2(-36.0760002F, -321.944F)); + builder.AddCubicBezier(new Vector2(-36.987999F, -321.536011F), new Vector2(-37.6899986F, -320.95401F), new Vector2(-38.1819992F, -320.197998F)); + builder.AddCubicBezier(new Vector2(-38.6739998F, -319.441986F), new Vector2(-38.9199982F, -318.548004F), new Vector2(-38.9199982F, -317.515991F)); + builder.AddCubicBezier(new Vector2(-38.9199982F, -316.484009F), new Vector2(-38.6980019F, -315.649994F), new Vector2(-38.2540016F, -315.014008F)); + builder.AddCubicBezier(new Vector2(-37.8100014F, -314.377991F), new Vector2(-37.2400017F, -313.880005F), new Vector2(-36.5439987F, -313.519989F)); + builder.AddCubicBezier(new Vector2(-35.8479996F, -313.160004F), new Vector2(-35.1100006F, -312.872009F), new Vector2(-34.3300018F, -312.656006F)); + builder.AddCubicBezier(new Vector2(-33.5499992F, -312.440002F), new Vector2(-32.8120003F, -312.217987F), new Vector2(-32.1160011F, -311.98999F)); + builder.AddCubicBezier(new Vector2(-31.4200001F, -311.761993F), new Vector2(-30.8500004F, -311.473999F), new Vector2(-30.4060001F, -311.126007F)); + builder.AddCubicBezier(new Vector2(-29.9619999F, -310.778015F), new Vector2(-29.7399998F, -310.291992F), new Vector2(-29.7399998F, -309.667999F)); + builder.AddCubicBezier(new Vector2(-29.7399998F, -309.044006F), new Vector2(-30.0160007F, -308.558014F), new Vector2(-30.5680008F, -308.209991F)); + builder.AddCubicBezier(new Vector2(-31.1200008F, -307.862F), new Vector2(-31.8999996F, -307.687988F), new Vector2(-32.9080009F, -307.687988F)); + builder.AddCubicBezier(new Vector2(-33.9160004F, -307.687988F), new Vector2(-34.8279991F, -307.873993F), new Vector2(-35.644001F, -308.246002F)); + builder.AddCubicBezier(new Vector2(-36.4599991F, -308.618011F), new Vector2(-37.1800003F, -309.187988F), new Vector2(-37.8040009F, -309.955994F)); + builder.AddLine(new Vector2(-39.8919983F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-39.3639984F, -307.220001F), new Vector2(-38.7459984F, -306.661987F), new Vector2(-38.0379982F, -306.194F)); + builder.AddCubicBezier(new Vector2(-37.3300018F, -305.726013F), new Vector2(-36.5439987F, -305.365997F), new Vector2(-35.6800003F, -305.114014F)); + builder.AddCubicBezier(new Vector2(-34.8160019F, -304.862F), new Vector2(-33.9039993F, -304.735992F), new Vector2(-32.9440002F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-31.0240002F, -304.735992F), new Vector2(-29.4939995F, -305.20401F), new Vector2(-28.3540001F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0761() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-43.3120003F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-42.9280014F, -326.605988F), new Vector2(-42.7360001F, -327.104004F), new Vector2(-42.7360001F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-42.7360001F, -328.279999F), new Vector2(-42.9280014F, -328.765991F), new Vector2(-43.3120003F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-43.6959991F, -329.558014F), new Vector2(-44.1879997F, -329.756012F), new Vector2(-44.7879982F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-45.3880005F, -329.756012F), new Vector2(-45.8800011F, -329.558014F), new Vector2(-46.2639999F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-46.6479988F, -328.765991F), new Vector2(-46.8400002F, -328.279999F), new Vector2(-46.8400002F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-46.8400002F, -327.104004F), new Vector2(-46.6479988F, -326.605988F), new Vector2(-46.2639999F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-45.8800011F, -325.813995F), new Vector2(-45.3880005F, -325.615997F), new Vector2(-44.7879982F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-44.1879997F, -325.615997F), new Vector2(-43.6959991F, -325.813995F), new Vector2(-43.3120003F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-43.1679993F, -305.096008F)); + builder.AddLine(new Vector2(-43.1679993F, -322.196014F)); + builder.AddLine(new Vector2(-46.4440002F, -322.196014F)); + builder.AddLine(new Vector2(-46.4440002F, -305.096008F)); + builder.AddLine(new Vector2(-43.1679993F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0762() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-62.9319992F, -305.096008F)); + builder.AddLine(new Vector2(-62.9319992F, -330.799988F)); + builder.AddLine(new Vector2(-66.1719971F, -330.799988F)); + builder.AddLine(new Vector2(-66.1719971F, -305.096008F)); + builder.AddLine(new Vector2(-62.9319992F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-50.8359985F, -305.096008F)); + builder.AddLine(new Vector2(-50.8359985F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-50.8359985F, -317.059998F), new Vector2(-51.1240005F, -318.247986F), new Vector2(-51.7000008F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-52.276001F, -320.312012F), new Vector2(-53.0620003F, -321.115997F), new Vector2(-54.0579987F, -321.691986F)); + builder.AddCubicBezier(new Vector2(-55.0540009F, -322.268005F), new Vector2(-56.2000008F, -322.556F), new Vector2(-57.4959984F, -322.556F)); + builder.AddCubicBezier(new Vector2(-58.7919998F, -322.556F), new Vector2(-59.9560013F, -322.261993F), new Vector2(-60.987999F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-62.0200005F, -321.085999F), new Vector2(-62.8240013F, -320.287994F), new Vector2(-63.4000015F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-63.9760017F, -318.272003F), new Vector2(-64.2639999F, -317.119995F), new Vector2(-64.2639999F, -315.824005F)); + builder.AddLine(new Vector2(-62.9319992F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-62.9319992F, -315.932007F), new Vector2(-62.7400017F, -316.700012F), new Vector2(-62.355999F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-61.9720001F, -318.044006F), new Vector2(-61.4440002F, -318.571991F), new Vector2(-60.7719994F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-60.0999985F, -319.339996F), new Vector2(-59.3320007F, -319.532013F), new Vector2(-58.4679985F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-57.1720009F, -319.532013F), new Vector2(-56.1220016F, -319.112F), new Vector2(-55.3180008F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-54.5139999F, -317.432007F), new Vector2(-54.1119995F, -316.364014F), new Vector2(-54.1119995F, -315.067993F)); + builder.AddLine(new Vector2(-54.1119995F, -305.096008F)); + builder.AddLine(new Vector2(-50.8359985F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0763() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-69.6279984F, -326.984009F)); + builder.AddLine(new Vector2(-69.6279984F, -330.079987F)); + builder.AddLine(new Vector2(-89.9680023F, -330.079987F)); + builder.AddLine(new Vector2(-89.9680023F, -326.984009F)); + builder.AddLine(new Vector2(-69.6279984F, -326.984009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-78.0879974F, -305.096008F)); + builder.AddLine(new Vector2(-78.0879974F, -329.359985F)); + builder.AddLine(new Vector2(-81.5080032F, -329.359985F)); + builder.AddLine(new Vector2(-81.5080032F, -305.096008F)); + builder.AddLine(new Vector2(-78.0879974F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0764() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-101.470001F, -305.437988F)); + builder.AddCubicBezier(new Vector2(-101.026001F, -305.906006F), new Vector2(-100.804001F, -306.463989F), new Vector2(-100.804001F, -307.112F)); + builder.AddCubicBezier(new Vector2(-100.804001F, -307.783997F), new Vector2(-101.026001F, -308.34201F), new Vector2(-101.470001F, -308.786011F)); + builder.AddCubicBezier(new Vector2(-101.914001F, -309.230011F), new Vector2(-102.472F, -309.451996F), new Vector2(-103.143997F, -309.451996F)); + builder.AddCubicBezier(new Vector2(-103.839996F, -309.451996F), new Vector2(-104.403999F, -309.230011F), new Vector2(-104.835999F, -308.786011F)); + builder.AddCubicBezier(new Vector2(-105.267998F, -308.34201F), new Vector2(-105.484001F, -307.783997F), new Vector2(-105.484001F, -307.112F)); + builder.AddCubicBezier(new Vector2(-105.484001F, -306.463989F), new Vector2(-105.267998F, -305.906006F), new Vector2(-104.835999F, -305.437988F)); + builder.AddCubicBezier(new Vector2(-104.403999F, -304.970001F), new Vector2(-103.839996F, -304.735992F), new Vector2(-103.143997F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-102.472F, -304.735992F), new Vector2(-101.914001F, -304.970001F), new Vector2(-101.470001F, -305.437988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0765() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-113.584F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-112.407997F, -305.996002F), new Vector2(-111.400002F, -306.727997F), new Vector2(-110.559998F, -307.687988F)); + builder.AddLine(new Vector2(-112.648003F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-113.223999F, -309.140015F), new Vector2(-113.914001F, -308.635986F), new Vector2(-114.718002F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-115.522003F, -307.963989F), new Vector2(-116.403999F, -307.79599F), new Vector2(-117.363998F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-118.515999F, -307.79599F), new Vector2(-119.536003F, -308.041992F), new Vector2(-120.424004F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-121.311996F, -309.026001F), new Vector2(-121.996002F, -309.721985F), new Vector2(-122.475998F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-122.956001F, -311.522003F), new Vector2(-123.195999F, -312.571991F), new Vector2(-123.195999F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-123.195999F, -314.947998F), new Vector2(-122.968002F, -315.967987F), new Vector2(-122.512001F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-122.056F, -317.696014F), new Vector2(-121.407997F, -318.368011F), new Vector2(-120.568001F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-119.727997F, -319.328003F), new Vector2(-118.755997F, -319.567993F), new Vector2(-117.652F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-116.596001F, -319.567993F), new Vector2(-115.695999F, -319.346008F), new Vector2(-114.952003F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-114.208F, -318.458008F), new Vector2(-113.632004F, -317.834015F), new Vector2(-113.223999F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-112.816002F, -316.226013F), new Vector2(-112.612F, -315.247986F), new Vector2(-112.612F, -314.096008F)); + builder.AddLine(new Vector2(-111.424004F, -315.140015F)); + builder.AddLine(new Vector2(-124.132004F, -315.140015F)); + builder.AddLine(new Vector2(-124.132004F, -312.440002F)); + builder.AddLine(new Vector2(-109.695999F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-109.624001F, -312.776001F), new Vector2(-109.575996F, -313.082001F), new Vector2(-109.552002F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-109.528F, -313.634003F), new Vector2(-109.515999F, -313.891998F), new Vector2(-109.515999F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-109.515999F, -315.764008F), new Vector2(-109.858002F, -317.216003F), new Vector2(-110.542F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-111.225998F, -319.76001F), new Vector2(-112.18F, -320.756012F), new Vector2(-113.403999F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-114.627998F, -322.196014F), new Vector2(-116.019997F, -322.556F), new Vector2(-117.580002F, -322.556F)); + builder.AddCubicBezier(new Vector2(-119.236F, -322.556F), new Vector2(-120.730003F, -322.165985F), new Vector2(-122.061996F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-123.393997F, -320.605988F), new Vector2(-124.449997F, -319.544006F), new Vector2(-125.230003F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-126.010002F, -316.855988F), new Vector2(-126.400002F, -315.343994F), new Vector2(-126.400002F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-126.400002F, -311.959991F), new Vector2(-126.003998F, -310.436005F), new Vector2(-125.211998F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-124.419998F, -307.747986F), new Vector2(-123.346001F, -306.686005F), new Vector2(-121.989998F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-120.634003F, -305.126007F), new Vector2(-119.092003F, -304.735992F), new Vector2(-117.363998F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-116.019997F, -304.735992F), new Vector2(-114.760002F, -304.988007F), new Vector2(-113.584F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0766() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-131.061996F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-129.921997F, -305.996002F), new Vector2(-128.955994F, -306.70401F), new Vector2(-128.164001F, -307.615997F)); + builder.AddLine(new Vector2(-130.287994F, -309.776001F)); + builder.AddCubicBezier(new Vector2(-130.839996F, -309.152008F), new Vector2(-131.494003F, -308.678009F), new Vector2(-132.25F, -308.354004F)); + builder.AddCubicBezier(new Vector2(-133.005997F, -308.029999F), new Vector2(-133.839996F, -307.868011F), new Vector2(-134.751999F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-135.832001F, -307.868011F), new Vector2(-136.792007F, -308.119995F), new Vector2(-137.632004F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-138.472F, -309.127991F), new Vector2(-139.132004F, -309.812012F), new Vector2(-139.612F, -310.675995F)); + builder.AddCubicBezier(new Vector2(-140.091995F, -311.540009F), new Vector2(-140.332001F, -312.536011F), new Vector2(-140.332001F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-140.332001F, -314.791992F), new Vector2(-140.091995F, -315.787994F), new Vector2(-139.612F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-139.132004F, -317.515991F), new Vector2(-138.472F, -318.194F), new Vector2(-137.632004F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-136.792007F, -319.178009F), new Vector2(-135.832001F, -319.424011F), new Vector2(-134.751999F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-133.863998F, -319.424011F), new Vector2(-133.035995F, -319.261993F), new Vector2(-132.268005F, -318.937988F)); + builder.AddCubicBezier(new Vector2(-131.5F, -318.614014F), new Vector2(-130.852005F, -318.140015F), new Vector2(-130.324005F, -317.515991F)); + builder.AddLine(new Vector2(-128.164001F, -319.675995F)); + builder.AddCubicBezier(new Vector2(-128.979996F, -320.612F), new Vector2(-129.951996F, -321.325989F), new Vector2(-131.080002F, -321.817993F)); + builder.AddCubicBezier(new Vector2(-132.207993F, -322.309998F), new Vector2(-133.432007F, -322.556F), new Vector2(-134.751999F, -322.556F)); + builder.AddCubicBezier(new Vector2(-136.432007F, -322.556F), new Vector2(-137.949997F, -322.165985F), new Vector2(-139.306F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-140.662003F, -320.605988F), new Vector2(-141.729996F, -319.544006F), new Vector2(-142.509995F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-143.289993F, -316.855988F), new Vector2(-143.679993F, -315.343994F), new Vector2(-143.679993F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-143.679993F, -312.007996F), new Vector2(-143.289993F, -310.502014F), new Vector2(-142.509995F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-141.729996F, -307.790009F), new Vector2(-140.662003F, -306.716003F), new Vector2(-139.306F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-137.949997F, -305.131989F), new Vector2(-136.432007F, -304.735992F), new Vector2(-134.751999F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-133.432007F, -304.735992F), new Vector2(-132.201996F, -304.988007F), new Vector2(-131.061996F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0767() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-147.496002F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-147.112F, -326.605988F), new Vector2(-146.919998F, -327.104004F), new Vector2(-146.919998F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-146.919998F, -328.279999F), new Vector2(-147.112F, -328.765991F), new Vector2(-147.496002F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-147.880005F, -329.558014F), new Vector2(-148.371994F, -329.756012F), new Vector2(-148.972F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-149.572006F, -329.756012F), new Vector2(-150.063995F, -329.558014F), new Vector2(-150.447998F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-150.832001F, -328.765991F), new Vector2(-151.024002F, -328.279999F), new Vector2(-151.024002F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-151.024002F, -327.104004F), new Vector2(-150.832001F, -326.605988F), new Vector2(-150.447998F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-150.063995F, -325.813995F), new Vector2(-149.572006F, -325.615997F), new Vector2(-148.972F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-148.371994F, -325.615997F), new Vector2(-147.880005F, -325.813995F), new Vector2(-147.496002F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-147.352005F, -305.096008F)); + builder.AddLine(new Vector2(-147.352005F, -322.196014F)); + builder.AddLine(new Vector2(-150.628006F, -322.196014F)); + builder.AddLine(new Vector2(-150.628006F, -305.096008F)); + builder.AddLine(new Vector2(-147.352005F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0768() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-155.380005F, -305.096008F)); + builder.AddLine(new Vector2(-155.380005F, -330.799988F)); + builder.AddLine(new Vector2(-158.619995F, -330.799988F)); + builder.AddLine(new Vector2(-158.619995F, -305.096008F)); + builder.AddLine(new Vector2(-155.380005F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0769() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-174.028F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-174.867996F, -309.127991F), new Vector2(-175.528F, -309.817993F), new Vector2(-176.007996F, -310.694F)); + builder.AddCubicBezier(new Vector2(-176.488007F, -311.570007F), new Vector2(-176.727997F, -312.571991F), new Vector2(-176.727997F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-176.727997F, -314.803986F), new Vector2(-176.488007F, -315.787994F), new Vector2(-176.007996F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-175.528F, -317.515991F), new Vector2(-174.867996F, -318.194F), new Vector2(-174.028F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-173.188004F, -319.178009F), new Vector2(-172.240005F, -319.424011F), new Vector2(-171.184006F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-170.080002F, -319.424011F), new Vector2(-169.113998F, -319.178009F), new Vector2(-168.285995F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-167.457993F, -318.194F), new Vector2(-166.798004F, -317.515991F), new Vector2(-166.306F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-165.813995F, -315.787994F), new Vector2(-165.567993F, -314.803986F), new Vector2(-165.567993F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-165.567993F, -312.571991F), new Vector2(-165.807999F, -311.570007F), new Vector2(-166.287994F, -310.694F)); + builder.AddCubicBezier(new Vector2(-166.768005F, -309.817993F), new Vector2(-167.427994F, -309.127991F), new Vector2(-168.268005F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-169.108002F, -308.119995F), new Vector2(-170.080002F, -307.868011F), new Vector2(-171.184006F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-172.240005F, -307.868011F), new Vector2(-173.188004F, -308.119995F), new Vector2(-174.028F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-166.630005F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-165.274002F, -306.716003F), new Vector2(-164.199997F, -307.790009F), new Vector2(-163.408005F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-162.615997F, -310.502014F), new Vector2(-162.220001F, -312.019989F), new Vector2(-162.220001F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-162.220001F, -315.355988F), new Vector2(-162.615997F, -316.855988F), new Vector2(-163.408005F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-164.199997F, -319.544006F), new Vector2(-165.274002F, -320.605988F), new Vector2(-166.630005F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-167.985992F, -322.165985F), new Vector2(-169.503998F, -322.556F), new Vector2(-171.184006F, -322.556F)); + builder.AddCubicBezier(new Vector2(-172.839996F, -322.556F), new Vector2(-174.339996F, -322.160004F), new Vector2(-175.684006F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-177.028F, -320.575989F), new Vector2(-178.095993F, -319.514008F), new Vector2(-178.888F, -318.182007F)); + builder.AddCubicBezier(new Vector2(-179.679993F, -316.850006F), new Vector2(-180.076004F, -315.355988F), new Vector2(-180.076004F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-180.076004F, -312.019989F), new Vector2(-179.679993F, -310.502014F), new Vector2(-178.888F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-178.095993F, -307.790009F), new Vector2(-177.028F, -306.716003F), new Vector2(-175.684006F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-174.339996F, -305.131989F), new Vector2(-172.839996F, -304.735992F), new Vector2(-171.184006F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-169.503998F, -304.735992F), new Vector2(-167.985992F, -305.131989F), new Vector2(-166.630005F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0770() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-194.278F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-195.106003F, -309.056F), new Vector2(-195.742004F, -309.746002F), new Vector2(-196.186005F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-196.630005F, -311.497986F), new Vector2(-196.852005F, -312.5F), new Vector2(-196.852005F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-196.852005F, -314.779999F), new Vector2(-196.623993F, -315.794006F), new Vector2(-196.167999F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-195.712006F, -317.54599F), new Vector2(-195.076004F, -318.235992F), new Vector2(-194.259995F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-193.444F, -319.243988F), new Vector2(-192.507996F, -319.496002F), new Vector2(-191.451996F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-190.371994F, -319.496002F), new Vector2(-189.423996F, -319.243988F), new Vector2(-188.608002F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-187.792007F, -318.235992F), new Vector2(-187.149994F, -317.54599F), new Vector2(-186.682007F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-186.214005F, -315.794006F), new Vector2(-185.979996F, -314.791992F), new Vector2(-185.979996F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-185.979996F, -312.511993F), new Vector2(-186.214005F, -311.497986F), new Vector2(-186.682007F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-187.149994F, -309.746002F), new Vector2(-187.792007F, -309.056F), new Vector2(-188.608002F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-189.423996F, -308.048004F), new Vector2(-190.371994F, -307.79599F), new Vector2(-191.451996F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-192.507996F, -307.79599F), new Vector2(-193.449997F, -308.048004F), new Vector2(-194.278F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-196.671997F, -297.932007F)); + builder.AddLine(new Vector2(-196.671997F, -309.380005F)); + builder.AddLine(new Vector2(-197.283997F, -313.556F)); + builder.AddLine(new Vector2(-196.671997F, -317.696014F)); + builder.AddLine(new Vector2(-196.671997F, -322.196014F)); + builder.AddLine(new Vector2(-199.912003F, -322.196014F)); + builder.AddLine(new Vector2(-199.912003F, -297.932007F)); + builder.AddLine(new Vector2(-196.671997F, -297.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-186.682007F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-185.421997F, -306.686005F), new Vector2(-184.432007F, -307.747986F), new Vector2(-183.712006F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-182.992004F, -310.436005F), new Vector2(-182.632004F, -311.947998F), new Vector2(-182.632004F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-182.632004F, -315.308014F), new Vector2(-182.992004F, -316.820007F), new Vector2(-183.712006F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-184.432007F, -319.507996F), new Vector2(-185.421997F, -320.575989F), new Vector2(-186.682007F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-187.942001F, -322.160004F), new Vector2(-189.352005F, -322.556F), new Vector2(-190.912003F, -322.556F)); + builder.AddCubicBezier(new Vector2(-192.184006F, -322.556F), new Vector2(-193.341995F, -322.286011F), new Vector2(-194.386002F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-195.429993F, -321.205994F), new Vector2(-196.270004F, -320.462006F), new Vector2(-196.906006F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-197.542007F, -318.56601F), new Vector2(-197.895996F, -317.467987F), new Vector2(-197.968002F, -316.220001F)); + builder.AddLine(new Vector2(-197.968002F, -311.071991F)); + builder.AddCubicBezier(new Vector2(-197.895996F, -309.847992F), new Vector2(-197.548004F, -308.756012F), new Vector2(-196.923996F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-196.300003F, -306.835999F), new Vector2(-195.466003F, -306.085999F), new Vector2(-194.421997F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-193.378006F, -305.006012F), new Vector2(-192.207993F, -304.735992F), new Vector2(-190.912003F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-189.352005F, -304.735992F), new Vector2(-187.942001F, -305.126007F), new Vector2(-186.682007F, -305.906006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0771() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-214.960007F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-213.783997F, -305.996002F), new Vector2(-212.776001F, -306.727997F), new Vector2(-211.936005F, -307.687988F)); + builder.AddLine(new Vector2(-214.024002F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-214.600006F, -309.140015F), new Vector2(-215.289993F, -308.635986F), new Vector2(-216.093994F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-216.897995F, -307.963989F), new Vector2(-217.779999F, -307.79599F), new Vector2(-218.740005F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-219.891998F, -307.79599F), new Vector2(-220.912003F, -308.041992F), new Vector2(-221.800003F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-222.688004F, -309.026001F), new Vector2(-223.371994F, -309.721985F), new Vector2(-223.852005F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-224.332001F, -311.522003F), new Vector2(-224.572006F, -312.571991F), new Vector2(-224.572006F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-224.572006F, -314.947998F), new Vector2(-224.343994F, -315.967987F), new Vector2(-223.888F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-223.432007F, -317.696014F), new Vector2(-222.783997F, -318.368011F), new Vector2(-221.944F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-221.104004F, -319.328003F), new Vector2(-220.132004F, -319.567993F), new Vector2(-219.028F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-217.972F, -319.567993F), new Vector2(-217.072006F, -319.346008F), new Vector2(-216.328003F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-215.584F, -318.458008F), new Vector2(-215.007996F, -317.834015F), new Vector2(-214.600006F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-214.192001F, -316.226013F), new Vector2(-213.988007F, -315.247986F), new Vector2(-213.988007F, -314.096008F)); + builder.AddLine(new Vector2(-212.800003F, -315.140015F)); + builder.AddLine(new Vector2(-225.507996F, -315.140015F)); + builder.AddLine(new Vector2(-225.507996F, -312.440002F)); + builder.AddLine(new Vector2(-211.072006F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-211F, -312.776001F), new Vector2(-210.951996F, -313.082001F), new Vector2(-210.927994F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-210.904007F, -313.634003F), new Vector2(-210.891998F, -313.891998F), new Vector2(-210.891998F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-210.891998F, -315.764008F), new Vector2(-211.233994F, -317.216003F), new Vector2(-211.917999F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-212.602005F, -319.76001F), new Vector2(-213.556F, -320.756012F), new Vector2(-214.779999F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-216.003998F, -322.196014F), new Vector2(-217.395996F, -322.556F), new Vector2(-218.955994F, -322.556F)); + builder.AddCubicBezier(new Vector2(-220.612F, -322.556F), new Vector2(-222.106003F, -322.165985F), new Vector2(-223.438004F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-224.770004F, -320.605988F), new Vector2(-225.826004F, -319.544006F), new Vector2(-226.606003F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-227.386002F, -316.855988F), new Vector2(-227.776001F, -315.343994F), new Vector2(-227.776001F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-227.776001F, -311.959991F), new Vector2(-227.380005F, -310.436005F), new Vector2(-226.587997F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-225.796005F, -307.747986F), new Vector2(-224.722F, -306.686005F), new Vector2(-223.365997F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-222.009995F, -305.126007F), new Vector2(-220.468002F, -304.735992F), new Vector2(-218.740005F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-217.395996F, -304.735992F), new Vector2(-216.136002F, -304.988007F), new Vector2(-214.960007F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0772() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-243.147995F, -305.096008F)); + builder.AddLine(new Vector2(-243.147995F, -330.799988F)); + builder.AddLine(new Vector2(-246.388F, -330.799988F)); + builder.AddLine(new Vector2(-246.388F, -305.096008F)); + builder.AddLine(new Vector2(-243.147995F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-231.052002F, -305.096008F)); + builder.AddLine(new Vector2(-231.052002F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-231.052002F, -317.059998F), new Vector2(-231.339996F, -318.247986F), new Vector2(-231.916F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-232.492004F, -320.312012F), new Vector2(-233.278F, -321.115997F), new Vector2(-234.274002F, -321.691986F)); + builder.AddCubicBezier(new Vector2(-235.270004F, -322.268005F), new Vector2(-236.416F, -322.556F), new Vector2(-237.712006F, -322.556F)); + builder.AddCubicBezier(new Vector2(-239.007996F, -322.556F), new Vector2(-240.171997F, -322.261993F), new Vector2(-241.203995F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-242.235992F, -321.085999F), new Vector2(-243.039993F, -320.287994F), new Vector2(-243.615997F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-244.192001F, -318.272003F), new Vector2(-244.479996F, -317.119995F), new Vector2(-244.479996F, -315.824005F)); + builder.AddLine(new Vector2(-243.147995F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-243.147995F, -315.932007F), new Vector2(-242.955994F, -316.700012F), new Vector2(-242.572006F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-242.188004F, -318.044006F), new Vector2(-241.660004F, -318.571991F), new Vector2(-240.988007F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-240.315994F, -319.339996F), new Vector2(-239.548004F, -319.532013F), new Vector2(-238.684006F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-237.388F, -319.532013F), new Vector2(-236.337997F, -319.112F), new Vector2(-235.533997F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-234.729996F, -317.432007F), new Vector2(-234.328003F, -316.364014F), new Vector2(-234.328003F, -315.067993F)); + builder.AddLine(new Vector2(-234.328003F, -305.096008F)); + builder.AddLine(new Vector2(-231.052002F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0773() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-249.556F, -319.243988F)); + builder.AddLine(new Vector2(-249.556F, -322.196014F)); + builder.AddLine(new Vector2(-261.220001F, -322.196014F)); + builder.AddLine(new Vector2(-261.220001F, -319.243988F)); + builder.AddLine(new Vector2(-249.556F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-253.768005F, -305.096008F)); + builder.AddLine(new Vector2(-253.768005F, -329.359985F)); + builder.AddLine(new Vector2(-257.007996F, -329.359985F)); + builder.AddLine(new Vector2(-257.007996F, -305.096008F)); + builder.AddLine(new Vector2(-253.768005F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0774() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-281.272003F, -297.932007F)); + builder.AddLine(new Vector2(-278.032013F, -304.951996F)); + builder.AddLine(new Vector2(-279.868011F, -308.264008F)); + builder.AddLine(new Vector2(-284.872009F, -297.932007F)); + builder.AddLine(new Vector2(-281.272003F, -297.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-278.032013F, -304.951996F)); + builder.AddLine(new Vector2(-270.040009F, -322.196014F)); + builder.AddLine(new Vector2(-273.640015F, -322.196014F)); + builder.AddLine(new Vector2(-279.436005F, -308.696014F)); + builder.AddLine(new Vector2(-278.283997F, -308.696014F)); + builder.AddLine(new Vector2(-283.791992F, -322.196014F)); + builder.AddLine(new Vector2(-287.391998F, -322.196014F)); + builder.AddLine(new Vector2(-279.976013F, -304.951996F)); + builder.AddLine(new Vector2(-278.032013F, -304.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0775() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-300.261993F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-301.089996F, -309.056F), new Vector2(-301.726013F, -309.746002F), new Vector2(-302.170013F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-302.614014F, -311.497986F), new Vector2(-302.835999F, -312.5F), new Vector2(-302.835999F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-302.835999F, -314.779999F), new Vector2(-302.608002F, -315.794006F), new Vector2(-302.152008F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-301.696014F, -317.54599F), new Vector2(-301.059998F, -318.235992F), new Vector2(-300.243988F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-299.428009F, -319.243988F), new Vector2(-298.492004F, -319.496002F), new Vector2(-297.436005F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-296.355988F, -319.496002F), new Vector2(-295.40799F, -319.243988F), new Vector2(-294.59201F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-293.776001F, -318.235992F), new Vector2(-293.134003F, -317.54599F), new Vector2(-292.665985F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-292.197998F, -315.794006F), new Vector2(-291.963989F, -314.791992F), new Vector2(-291.963989F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-291.963989F, -312.511993F), new Vector2(-292.197998F, -311.497986F), new Vector2(-292.665985F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-293.134003F, -309.746002F), new Vector2(-293.776001F, -309.056F), new Vector2(-294.59201F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-295.40799F, -308.048004F), new Vector2(-296.355988F, -307.79599F), new Vector2(-297.436005F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-298.492004F, -307.79599F), new Vector2(-299.43399F, -308.048004F), new Vector2(-300.261993F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-302.656006F, -305.096008F)); + builder.AddLine(new Vector2(-302.656006F, -309.70401F)); + builder.AddLine(new Vector2(-303.268005F, -313.880005F)); + builder.AddLine(new Vector2(-302.656006F, -318.019989F)); + builder.AddLine(new Vector2(-302.656006F, -330.799988F)); + builder.AddLine(new Vector2(-305.895996F, -330.799988F)); + builder.AddLine(new Vector2(-305.895996F, -305.096008F)); + builder.AddLine(new Vector2(-302.656006F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-292.665985F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-291.406006F, -306.686005F), new Vector2(-290.415985F, -307.747986F), new Vector2(-289.696014F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-288.976013F, -310.436005F), new Vector2(-288.615997F, -311.947998F), new Vector2(-288.615997F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-288.615997F, -315.308014F), new Vector2(-288.976013F, -316.820007F), new Vector2(-289.696014F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-290.415985F, -319.507996F), new Vector2(-291.406006F, -320.575989F), new Vector2(-292.665985F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-293.925995F, -322.160004F), new Vector2(-295.335999F, -322.556F), new Vector2(-296.895996F, -322.556F)); + builder.AddCubicBezier(new Vector2(-298.167999F, -322.556F), new Vector2(-299.325989F, -322.286011F), new Vector2(-300.369995F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-301.414001F, -321.205994F), new Vector2(-302.253998F, -320.462006F), new Vector2(-302.890015F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-303.526001F, -318.56601F), new Vector2(-303.880005F, -317.467987F), new Vector2(-303.951996F, -316.220001F)); + builder.AddLine(new Vector2(-303.951996F, -311.071991F)); + builder.AddCubicBezier(new Vector2(-303.880005F, -309.847992F), new Vector2(-303.532013F, -308.756012F), new Vector2(-302.90799F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-302.283997F, -306.835999F), new Vector2(-301.450012F, -306.085999F), new Vector2(-300.406006F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-299.362F, -305.006012F), new Vector2(-298.191986F, -304.735992F), new Vector2(-296.895996F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-295.335999F, -304.735992F), new Vector2(-293.925995F, -305.126007F), new Vector2(-292.665985F, -305.906006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0776() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-320.944F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-319.768005F, -305.996002F), new Vector2(-318.76001F, -306.727997F), new Vector2(-317.920013F, -307.687988F)); + builder.AddLine(new Vector2(-320.007996F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-320.584015F, -309.140015F), new Vector2(-321.273987F, -308.635986F), new Vector2(-322.078003F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-322.881989F, -307.963989F), new Vector2(-323.764008F, -307.79599F), new Vector2(-324.723999F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-325.876007F, -307.79599F), new Vector2(-326.895996F, -308.041992F), new Vector2(-327.783997F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-328.671997F, -309.026001F), new Vector2(-329.355988F, -309.721985F), new Vector2(-329.835999F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-330.31601F, -311.522003F), new Vector2(-330.556F, -312.571991F), new Vector2(-330.556F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-330.556F, -314.947998F), new Vector2(-330.328003F, -315.967987F), new Vector2(-329.872009F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-329.415985F, -317.696014F), new Vector2(-328.768005F, -318.368011F), new Vector2(-327.928009F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-327.088013F, -319.328003F), new Vector2(-326.115997F, -319.567993F), new Vector2(-325.011993F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-323.955994F, -319.567993F), new Vector2(-323.056F, -319.346008F), new Vector2(-322.312012F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-321.567993F, -318.458008F), new Vector2(-320.992004F, -317.834015F), new Vector2(-320.584015F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-320.175995F, -316.226013F), new Vector2(-319.971985F, -315.247986F), new Vector2(-319.971985F, -314.096008F)); + builder.AddLine(new Vector2(-318.783997F, -315.140015F)); + builder.AddLine(new Vector2(-331.492004F, -315.140015F)); + builder.AddLine(new Vector2(-331.492004F, -312.440002F)); + builder.AddLine(new Vector2(-317.056F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-316.984009F, -312.776001F), new Vector2(-316.936005F, -313.082001F), new Vector2(-316.911987F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-316.888F, -313.634003F), new Vector2(-316.876007F, -313.891998F), new Vector2(-316.876007F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-316.876007F, -315.764008F), new Vector2(-317.217987F, -317.216003F), new Vector2(-317.902008F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-318.585999F, -319.76001F), new Vector2(-319.540009F, -320.756012F), new Vector2(-320.764008F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-321.988007F, -322.196014F), new Vector2(-323.380005F, -322.556F), new Vector2(-324.940002F, -322.556F)); + builder.AddCubicBezier(new Vector2(-326.596008F, -322.556F), new Vector2(-328.089996F, -322.165985F), new Vector2(-329.421997F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-330.753998F, -320.605988F), new Vector2(-331.809998F, -319.544006F), new Vector2(-332.589996F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-333.369995F, -316.855988F), new Vector2(-333.76001F, -315.343994F), new Vector2(-333.76001F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-333.76001F, -311.959991F), new Vector2(-333.364014F, -310.436005F), new Vector2(-332.571991F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-331.779999F, -307.747986F), new Vector2(-330.705994F, -306.686005F), new Vector2(-329.350006F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-327.993988F, -305.126007F), new Vector2(-326.451996F, -304.735992F), new Vector2(-324.723999F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-323.380005F, -304.735992F), new Vector2(-322.119995F, -304.988007F), new Vector2(-320.944F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0777() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-338.421997F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-337.282013F, -305.996002F), new Vector2(-336.31601F, -306.70401F), new Vector2(-335.523987F, -307.615997F)); + builder.AddLine(new Vector2(-337.64801F, -309.776001F)); + builder.AddCubicBezier(new Vector2(-338.200012F, -309.152008F), new Vector2(-338.854004F, -308.678009F), new Vector2(-339.609985F, -308.354004F)); + builder.AddCubicBezier(new Vector2(-340.365997F, -308.029999F), new Vector2(-341.200012F, -307.868011F), new Vector2(-342.112F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-343.191986F, -307.868011F), new Vector2(-344.152008F, -308.119995F), new Vector2(-344.992004F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-345.832001F, -309.127991F), new Vector2(-346.492004F, -309.812012F), new Vector2(-346.971985F, -310.675995F)); + builder.AddCubicBezier(new Vector2(-347.451996F, -311.540009F), new Vector2(-347.691986F, -312.536011F), new Vector2(-347.691986F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-347.691986F, -314.791992F), new Vector2(-347.451996F, -315.787994F), new Vector2(-346.971985F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-346.492004F, -317.515991F), new Vector2(-345.832001F, -318.194F), new Vector2(-344.992004F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-344.152008F, -319.178009F), new Vector2(-343.191986F, -319.424011F), new Vector2(-342.112F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-341.223999F, -319.424011F), new Vector2(-340.395996F, -319.261993F), new Vector2(-339.627991F, -318.937988F)); + builder.AddCubicBezier(new Vector2(-338.859985F, -318.614014F), new Vector2(-338.212006F, -318.140015F), new Vector2(-337.68399F, -317.515991F)); + builder.AddLine(new Vector2(-335.523987F, -319.675995F)); + builder.AddCubicBezier(new Vector2(-336.339996F, -320.612F), new Vector2(-337.312012F, -321.325989F), new Vector2(-338.440002F, -321.817993F)); + builder.AddCubicBezier(new Vector2(-339.567993F, -322.309998F), new Vector2(-340.791992F, -322.556F), new Vector2(-342.112F, -322.556F)); + builder.AddCubicBezier(new Vector2(-343.791992F, -322.556F), new Vector2(-345.309998F, -322.165985F), new Vector2(-346.665985F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-348.022003F, -320.605988F), new Vector2(-349.089996F, -319.544006F), new Vector2(-349.869995F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-350.649994F, -316.855988F), new Vector2(-351.040009F, -315.343994F), new Vector2(-351.040009F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-351.040009F, -312.007996F), new Vector2(-350.649994F, -310.502014F), new Vector2(-349.869995F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-349.089996F, -307.790009F), new Vector2(-348.022003F, -306.716003F), new Vector2(-346.665985F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-345.309998F, -305.131989F), new Vector2(-343.791992F, -304.735992F), new Vector2(-342.112F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-340.791992F, -304.735992F), new Vector2(-339.562012F, -304.988007F), new Vector2(-338.421997F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0778() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-366.411987F, -305.096008F)); + builder.AddLine(new Vector2(-366.411987F, -322.196014F)); + builder.AddLine(new Vector2(-369.652008F, -322.196014F)); + builder.AddLine(new Vector2(-369.652008F, -305.096008F)); + builder.AddLine(new Vector2(-366.411987F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-354.31601F, -305.096008F)); + builder.AddLine(new Vector2(-354.31601F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-354.31601F, -316.891998F), new Vector2(-354.604004F, -318.002014F), new Vector2(-355.179993F, -319.04599F)); + builder.AddCubicBezier(new Vector2(-355.756012F, -320.089996F), new Vector2(-356.541992F, -320.936005F), new Vector2(-357.537994F, -321.584015F)); + builder.AddCubicBezier(new Vector2(-358.533997F, -322.231995F), new Vector2(-359.679993F, -322.556F), new Vector2(-360.976013F, -322.556F)); + builder.AddCubicBezier(new Vector2(-362.272003F, -322.556F), new Vector2(-363.436005F, -322.261993F), new Vector2(-364.467987F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-365.5F, -321.085999F), new Vector2(-366.303986F, -320.287994F), new Vector2(-366.880005F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-367.455994F, -318.272003F), new Vector2(-367.743988F, -317.119995F), new Vector2(-367.743988F, -315.824005F)); + builder.AddLine(new Vector2(-366.411987F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-366.411987F, -315.932007F), new Vector2(-366.220001F, -316.700012F), new Vector2(-365.835999F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-365.451996F, -318.044006F), new Vector2(-364.924011F, -318.571991F), new Vector2(-364.252014F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-363.579987F, -319.339996F), new Vector2(-362.812012F, -319.532013F), new Vector2(-361.947998F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-360.652008F, -319.532013F), new Vector2(-359.60199F, -319.112F), new Vector2(-358.798004F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-357.993988F, -317.432007F), new Vector2(-357.59201F, -316.364014F), new Vector2(-357.59201F, -315.067993F)); + builder.AddLine(new Vector2(-357.59201F, -305.096008F)); + builder.AddLine(new Vector2(-354.31601F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0779() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-377.247986F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-376.071991F, -305.996002F), new Vector2(-375.063995F, -306.727997F), new Vector2(-374.223999F, -307.687988F)); + builder.AddLine(new Vector2(-376.312012F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-376.888F, -309.140015F), new Vector2(-377.578003F, -308.635986F), new Vector2(-378.381989F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-379.186005F, -307.963989F), new Vector2(-380.067993F, -307.79599F), new Vector2(-381.028015F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-382.179993F, -307.79599F), new Vector2(-383.200012F, -308.041992F), new Vector2(-384.088013F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-384.976013F, -309.026001F), new Vector2(-385.660004F, -309.721985F), new Vector2(-386.140015F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-386.619995F, -311.522003F), new Vector2(-386.859985F, -312.571991F), new Vector2(-386.859985F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-386.859985F, -314.947998F), new Vector2(-386.631989F, -315.967987F), new Vector2(-386.175995F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-385.720001F, -317.696014F), new Vector2(-385.071991F, -318.368011F), new Vector2(-384.231995F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-383.391998F, -319.328003F), new Vector2(-382.420013F, -319.567993F), new Vector2(-381.31601F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-380.26001F, -319.567993F), new Vector2(-379.359985F, -319.346008F), new Vector2(-378.615997F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-377.872009F, -318.458008F), new Vector2(-377.29599F, -317.834015F), new Vector2(-376.888F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-376.480011F, -316.226013F), new Vector2(-376.276001F, -315.247986F), new Vector2(-376.276001F, -314.096008F)); + builder.AddLine(new Vector2(-375.088013F, -315.140015F)); + builder.AddLine(new Vector2(-387.79599F, -315.140015F)); + builder.AddLine(new Vector2(-387.79599F, -312.440002F)); + builder.AddLine(new Vector2(-373.359985F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-373.287994F, -312.776001F), new Vector2(-373.23999F, -313.082001F), new Vector2(-373.216003F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-373.191986F, -313.634003F), new Vector2(-373.179993F, -313.891998F), new Vector2(-373.179993F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-373.179993F, -315.764008F), new Vector2(-373.522003F, -317.216003F), new Vector2(-374.205994F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-374.890015F, -319.76001F), new Vector2(-375.843994F, -320.756012F), new Vector2(-377.067993F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-378.291992F, -322.196014F), new Vector2(-379.68399F, -322.556F), new Vector2(-381.243988F, -322.556F)); + builder.AddCubicBezier(new Vector2(-382.899994F, -322.556F), new Vector2(-384.394012F, -322.165985F), new Vector2(-385.726013F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-387.058014F, -320.605988F), new Vector2(-388.114014F, -319.544006F), new Vector2(-388.894012F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-389.674011F, -316.855988F), new Vector2(-390.063995F, -315.343994F), new Vector2(-390.063995F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-390.063995F, -311.959991F), new Vector2(-389.667999F, -310.436005F), new Vector2(-388.876007F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-388.084015F, -307.747986F), new Vector2(-387.01001F, -306.686005F), new Vector2(-385.653992F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-384.298004F, -305.126007F), new Vector2(-382.756012F, -304.735992F), new Vector2(-381.028015F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-379.68399F, -304.735992F), new Vector2(-378.424011F, -304.988007F), new Vector2(-377.247986F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0780() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-393.700012F, -305.096008F)); + builder.AddLine(new Vector2(-393.700012F, -330.799988F)); + builder.AddLine(new Vector2(-396.940002F, -330.799988F)); + builder.AddLine(new Vector2(-396.940002F, -305.096008F)); + builder.AddLine(new Vector2(-393.700012F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0781() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-412.347992F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-413.187988F, -309.127991F), new Vector2(-413.847992F, -309.817993F), new Vector2(-414.328003F, -310.694F)); + builder.AddCubicBezier(new Vector2(-414.808014F, -311.570007F), new Vector2(-415.048004F, -312.571991F), new Vector2(-415.048004F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-415.048004F, -314.803986F), new Vector2(-414.808014F, -315.787994F), new Vector2(-414.328003F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-413.847992F, -317.515991F), new Vector2(-413.187988F, -318.194F), new Vector2(-412.347992F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-411.507996F, -319.178009F), new Vector2(-410.559998F, -319.424011F), new Vector2(-409.503998F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-408.399994F, -319.424011F), new Vector2(-407.43399F, -319.178009F), new Vector2(-406.605988F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-405.778015F, -318.194F), new Vector2(-405.118011F, -317.515991F), new Vector2(-404.626007F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-404.134003F, -315.787994F), new Vector2(-403.888F, -314.803986F), new Vector2(-403.888F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-403.888F, -312.571991F), new Vector2(-404.127991F, -311.570007F), new Vector2(-404.608002F, -310.694F)); + builder.AddCubicBezier(new Vector2(-405.088013F, -309.817993F), new Vector2(-405.747986F, -309.127991F), new Vector2(-406.588013F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-407.428009F, -308.119995F), new Vector2(-408.399994F, -307.868011F), new Vector2(-409.503998F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-410.559998F, -307.868011F), new Vector2(-411.507996F, -308.119995F), new Vector2(-412.347992F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-404.950012F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-403.593994F, -306.716003F), new Vector2(-402.519989F, -307.790009F), new Vector2(-401.727997F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-400.936005F, -310.502014F), new Vector2(-400.540009F, -312.019989F), new Vector2(-400.540009F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-400.540009F, -315.355988F), new Vector2(-400.936005F, -316.855988F), new Vector2(-401.727997F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-402.519989F, -319.544006F), new Vector2(-403.593994F, -320.605988F), new Vector2(-404.950012F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-406.306F, -322.165985F), new Vector2(-407.824005F, -322.556F), new Vector2(-409.503998F, -322.556F)); + builder.AddCubicBezier(new Vector2(-411.160004F, -322.556F), new Vector2(-412.660004F, -322.160004F), new Vector2(-414.003998F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-415.347992F, -320.575989F), new Vector2(-416.415985F, -319.514008F), new Vector2(-417.208008F, -318.182007F)); + builder.AddCubicBezier(new Vector2(-418F, -316.850006F), new Vector2(-418.395996F, -315.355988F), new Vector2(-418.395996F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-418.395996F, -312.019989F), new Vector2(-418F, -310.502014F), new Vector2(-417.208008F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-416.415985F, -307.790009F), new Vector2(-415.347992F, -306.716003F), new Vector2(-414.003998F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-412.660004F, -305.131989F), new Vector2(-411.160004F, -304.735992F), new Vector2(-409.503998F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-407.824005F, -304.735992F), new Vector2(-406.306F, -305.131989F), new Vector2(-404.950012F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0782() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-422.212006F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-421.828003F, -326.605988F), new Vector2(-421.635986F, -327.104004F), new Vector2(-421.635986F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-421.635986F, -328.279999F), new Vector2(-421.828003F, -328.765991F), new Vector2(-422.212006F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-422.596008F, -329.558014F), new Vector2(-423.088013F, -329.756012F), new Vector2(-423.687988F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-424.287994F, -329.756012F), new Vector2(-424.779999F, -329.558014F), new Vector2(-425.164001F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-425.548004F, -328.765991F), new Vector2(-425.73999F, -328.279999F), new Vector2(-425.73999F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-425.73999F, -327.104004F), new Vector2(-425.548004F, -326.605988F), new Vector2(-425.164001F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-424.779999F, -325.813995F), new Vector2(-424.287994F, -325.615997F), new Vector2(-423.687988F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-423.088013F, -325.615997F), new Vector2(-422.596008F, -325.813995F), new Vector2(-422.212006F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-422.067993F, -305.096008F)); + builder.AddLine(new Vector2(-422.067993F, -322.196014F)); + builder.AddLine(new Vector2(-425.343994F, -322.196014F)); + builder.AddLine(new Vector2(-425.343994F, -305.096008F)); + builder.AddLine(new Vector2(-422.067993F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0783() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-435.963989F, -305.096008F)); + builder.AddLine(new Vector2(-428.115997F, -322.196014F)); + builder.AddLine(new Vector2(-431.571991F, -322.196014F)); + builder.AddLine(new Vector2(-437.90799F, -307.76001F)); + builder.AddLine(new Vector2(-435.820007F, -307.76001F)); + builder.AddLine(new Vector2(-442.119995F, -322.196014F)); + builder.AddLine(new Vector2(-445.720001F, -322.196014F)); + builder.AddLine(new Vector2(-437.872009F, -305.096008F)); + builder.AddLine(new Vector2(-435.963989F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0784() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-455.90799F, -330.799988F)); + builder.AddLine(new Vector2(-459.18399F, -330.799988F)); + builder.AddLine(new Vector2(-459.18399F, -318.019989F)); + builder.AddLine(new Vector2(-458.571991F, -313.880005F)); + builder.AddLine(new Vector2(-459.18399F, -309.70401F)); + builder.AddLine(new Vector2(-459.18399F, -305.096008F)); + builder.AddLine(new Vector2(-455.90799F, -305.096008F)); + builder.AddLine(new Vector2(-455.90799F, -330.799988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-467.230011F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-468.058014F, -309.026001F), new Vector2(-468.705994F, -309.716003F), new Vector2(-469.174011F, -310.604004F)); + builder.AddCubicBezier(new Vector2(-469.641998F, -311.492004F), new Vector2(-469.876007F, -312.511993F), new Vector2(-469.876007F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-469.876007F, -314.81601F), new Vector2(-469.641998F, -315.829987F), new Vector2(-469.174011F, -316.705994F)); + builder.AddCubicBezier(new Vector2(-468.705994F, -317.582001F), new Vector2(-468.063995F, -318.265991F), new Vector2(-467.247986F, -318.757996F)); + builder.AddCubicBezier(new Vector2(-466.432007F, -319.25F), new Vector2(-465.484009F, -319.496002F), new Vector2(-464.403992F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-463.324005F, -319.496002F), new Vector2(-462.376007F, -319.243988F), new Vector2(-461.559998F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-460.743988F, -318.235992F), new Vector2(-460.108002F, -317.54599F), new Vector2(-459.652008F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-459.196014F, -315.794006F), new Vector2(-458.967987F, -314.779999F), new Vector2(-458.967987F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-458.967987F, -312.5F), new Vector2(-459.196014F, -311.497986F), new Vector2(-459.652008F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-460.108002F, -309.746002F), new Vector2(-460.743988F, -309.056F), new Vector2(-461.559998F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-462.376007F, -308.048004F), new Vector2(-463.324005F, -307.79599F), new Vector2(-464.403992F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-465.459991F, -307.79599F), new Vector2(-466.402008F, -308.041992F), new Vector2(-467.230011F, -308.533997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-461.415985F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-460.384003F, -306.085999F), new Vector2(-459.556F, -306.835999F), new Vector2(-458.932007F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-458.308014F, -308.756012F), new Vector2(-457.959991F, -309.847992F), new Vector2(-457.888F, -311.071991F)); + builder.AddLine(new Vector2(-457.888F, -316.220001F)); + builder.AddCubicBezier(new Vector2(-457.959991F, -317.467987F), new Vector2(-458.313995F, -318.56601F), new Vector2(-458.950012F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-459.585999F, -320.462006F), new Vector2(-460.420013F, -321.205994F), new Vector2(-461.451996F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-462.484009F, -322.286011F), new Vector2(-463.64801F, -322.556F), new Vector2(-464.944F, -322.556F)); + builder.AddCubicBezier(new Vector2(-466.503998F, -322.556F), new Vector2(-467.90799F, -322.160004F), new Vector2(-469.156006F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-470.403992F, -320.575989F), new Vector2(-471.394012F, -319.507996F), new Vector2(-472.126007F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-472.858002F, -316.820007F), new Vector2(-473.223999F, -315.308014F), new Vector2(-473.223999F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-473.223999F, -311.947998F), new Vector2(-472.858002F, -310.436005F), new Vector2(-472.126007F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-471.394012F, -307.747986F), new Vector2(-470.403992F, -306.686005F), new Vector2(-469.156006F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-467.90799F, -305.126007F), new Vector2(-466.503998F, -304.735992F), new Vector2(-464.944F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-463.623993F, -304.735992F), new Vector2(-462.447998F, -305.006012F), new Vector2(-461.415985F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0785() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-488.631989F, -305.096008F)); + builder.AddLine(new Vector2(-488.631989F, -322.196014F)); + builder.AddLine(new Vector2(-491.872009F, -322.196014F)); + builder.AddLine(new Vector2(-491.872009F, -305.096008F)); + builder.AddLine(new Vector2(-488.631989F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-476.536011F, -305.096008F)); + builder.AddLine(new Vector2(-476.536011F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-476.536011F, -316.891998F), new Vector2(-476.824005F, -318.002014F), new Vector2(-477.399994F, -319.04599F)); + builder.AddCubicBezier(new Vector2(-477.976013F, -320.089996F), new Vector2(-478.761993F, -320.936005F), new Vector2(-479.757996F, -321.584015F)); + builder.AddCubicBezier(new Vector2(-480.753998F, -322.231995F), new Vector2(-481.899994F, -322.556F), new Vector2(-483.196014F, -322.556F)); + builder.AddCubicBezier(new Vector2(-484.492004F, -322.556F), new Vector2(-485.656006F, -322.261993F), new Vector2(-486.687988F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-487.720001F, -321.085999F), new Vector2(-488.523987F, -320.287994F), new Vector2(-489.100006F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-489.675995F, -318.272003F), new Vector2(-489.963989F, -317.119995F), new Vector2(-489.963989F, -315.824005F)); + builder.AddLine(new Vector2(-488.631989F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-488.631989F, -315.932007F), new Vector2(-488.440002F, -316.700012F), new Vector2(-488.056F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-487.671997F, -318.044006F), new Vector2(-487.144012F, -318.571991F), new Vector2(-486.471985F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-485.799988F, -319.339996F), new Vector2(-485.032013F, -319.532013F), new Vector2(-484.167999F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-482.872009F, -319.532013F), new Vector2(-481.821991F, -319.112F), new Vector2(-481.018005F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-480.213989F, -317.432007F), new Vector2(-479.812012F, -316.364014F), new Vector2(-479.812012F, -315.067993F)); + builder.AddLine(new Vector2(-479.812012F, -305.096008F)); + builder.AddLine(new Vector2(-476.536011F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0786() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-496.588013F, -305.096008F)); + builder.AddLine(new Vector2(-496.588013F, -322.196014F)); + builder.AddLine(new Vector2(-499.864014F, -322.196014F)); + builder.AddLine(new Vector2(-499.864014F, -318.019989F)); + builder.AddLine(new Vector2(-499.252014F, -313.880005F)); + builder.AddLine(new Vector2(-499.864014F, -309.70401F)); + builder.AddLine(new Vector2(-499.864014F, -305.096008F)); + builder.AddLine(new Vector2(-496.588013F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-507.891998F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-508.731995F, -309.056F), new Vector2(-509.385986F, -309.746002F), new Vector2(-509.854004F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-510.321991F, -311.497986F), new Vector2(-510.556F, -312.511993F), new Vector2(-510.556F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-510.556F, -314.791992F), new Vector2(-510.321991F, -315.794006F), new Vector2(-509.854004F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-509.385986F, -317.54599F), new Vector2(-508.738007F, -318.235992F), new Vector2(-507.910004F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-507.082001F, -319.243988F), new Vector2(-506.127991F, -319.496002F), new Vector2(-505.048004F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-503.967987F, -319.496002F), new Vector2(-503.026001F, -319.25F), new Vector2(-502.221985F, -318.757996F)); + builder.AddCubicBezier(new Vector2(-501.417999F, -318.265991F), new Vector2(-500.787994F, -317.575989F), new Vector2(-500.332001F, -316.687988F)); + builder.AddCubicBezier(new Vector2(-499.876007F, -315.799988F), new Vector2(-499.64801F, -314.779999F), new Vector2(-499.64801F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-499.64801F, -311.924011F), new Vector2(-500.140015F, -310.526001F), new Vector2(-501.123993F, -309.43399F)); + builder.AddCubicBezier(new Vector2(-502.108002F, -308.34201F), new Vector2(-503.403992F, -307.79599F), new Vector2(-505.011993F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-506.09201F, -307.79599F), new Vector2(-507.052002F, -308.048004F), new Vector2(-507.891998F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-502.059998F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-501.028015F, -306.085999F), new Vector2(-500.205994F, -306.835999F), new Vector2(-499.593994F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-498.981995F, -308.756012F), new Vector2(-498.640015F, -309.847992F), new Vector2(-498.567993F, -311.071991F)); + builder.AddLine(new Vector2(-498.567993F, -316.220001F)); + builder.AddCubicBezier(new Vector2(-498.640015F, -317.467987F), new Vector2(-498.988007F, -318.56601F), new Vector2(-499.612F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-500.235992F, -320.462006F), new Vector2(-501.058014F, -321.205994F), new Vector2(-502.078003F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-503.097992F, -322.286011F), new Vector2(-504.256012F, -322.556F), new Vector2(-505.552002F, -322.556F)); + builder.AddCubicBezier(new Vector2(-507.135986F, -322.556F), new Vector2(-508.558014F, -322.160004F), new Vector2(-509.817993F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-511.078003F, -320.575989F), new Vector2(-512.073975F, -319.507996F), new Vector2(-512.80603F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-513.538025F, -316.820007F), new Vector2(-513.903992F, -315.308014F), new Vector2(-513.903992F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-513.903992F, -311.947998F), new Vector2(-513.538025F, -310.436005F), new Vector2(-512.80603F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-512.073975F, -307.747986F), new Vector2(-511.078003F, -306.686005F), new Vector2(-509.817993F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-508.558014F, -305.126007F), new Vector2(-507.135986F, -304.735992F), new Vector2(-505.552002F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-504.256012F, -304.735992F), new Vector2(-503.09201F, -305.006012F), new Vector2(-502.059998F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0787() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-536.763977F, -305.096008F)); + builder.AddLine(new Vector2(-536.763977F, -322.196014F)); + builder.AddLine(new Vector2(-540.004028F, -322.196014F)); + builder.AddLine(new Vector2(-540.004028F, -305.096008F)); + builder.AddLine(new Vector2(-536.763977F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-524.66803F, -305.096008F)); + builder.AddLine(new Vector2(-524.66803F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-524.66803F, -316.891998F), new Vector2(-524.955994F, -318.002014F), new Vector2(-525.531982F, -319.04599F)); + builder.AddCubicBezier(new Vector2(-526.107971F, -320.089996F), new Vector2(-526.893982F, -320.936005F), new Vector2(-527.890015F, -321.584015F)); + builder.AddCubicBezier(new Vector2(-528.885986F, -322.231995F), new Vector2(-530.031982F, -322.556F), new Vector2(-531.328003F, -322.556F)); + builder.AddCubicBezier(new Vector2(-532.624023F, -322.556F), new Vector2(-533.788025F, -322.261993F), new Vector2(-534.820007F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-535.85199F, -321.085999F), new Vector2(-536.656006F, -320.287994F), new Vector2(-537.231995F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-537.807983F, -318.272003F), new Vector2(-538.096008F, -317.119995F), new Vector2(-538.096008F, -315.824005F)); + builder.AddLine(new Vector2(-536.763977F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-536.763977F, -315.932007F), new Vector2(-536.572021F, -316.700012F), new Vector2(-536.187988F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-535.804016F, -318.044006F), new Vector2(-535.276001F, -318.571991F), new Vector2(-534.604004F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-533.932007F, -319.339996F), new Vector2(-533.164001F, -319.532013F), new Vector2(-532.299988F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-531.004028F, -319.532013F), new Vector2(-529.953979F, -319.112F), new Vector2(-529.150024F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-528.346008F, -317.432007F), new Vector2(-527.94397F, -316.364014F), new Vector2(-527.94397F, -315.067993F)); + builder.AddLine(new Vector2(-527.94397F, -305.096008F)); + builder.AddLine(new Vector2(-524.66803F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0788() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-555.411987F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-556.252014F, -309.127991F), new Vector2(-556.911987F, -309.817993F), new Vector2(-557.392029F, -310.694F)); + builder.AddCubicBezier(new Vector2(-557.872009F, -311.570007F), new Vector2(-558.112F, -312.571991F), new Vector2(-558.112F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-558.112F, -314.803986F), new Vector2(-557.872009F, -315.787994F), new Vector2(-557.392029F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-556.911987F, -317.515991F), new Vector2(-556.252014F, -318.194F), new Vector2(-555.411987F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-554.572021F, -319.178009F), new Vector2(-553.624023F, -319.424011F), new Vector2(-552.567993F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-551.463989F, -319.424011F), new Vector2(-550.497986F, -319.178009F), new Vector2(-549.669983F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-548.84198F, -318.194F), new Vector2(-548.182007F, -317.515991F), new Vector2(-547.690002F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-547.197998F, -315.787994F), new Vector2(-546.952026F, -314.803986F), new Vector2(-546.952026F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-546.952026F, -312.571991F), new Vector2(-547.192017F, -311.570007F), new Vector2(-547.671997F, -310.694F)); + builder.AddCubicBezier(new Vector2(-548.151978F, -309.817993F), new Vector2(-548.812012F, -309.127991F), new Vector2(-549.651978F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-550.492004F, -308.119995F), new Vector2(-551.463989F, -307.868011F), new Vector2(-552.567993F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-553.624023F, -307.868011F), new Vector2(-554.572021F, -308.119995F), new Vector2(-555.411987F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-548.013977F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-546.65802F, -306.716003F), new Vector2(-545.583984F, -307.790009F), new Vector2(-544.791992F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-544F, -310.502014F), new Vector2(-543.604004F, -312.019989F), new Vector2(-543.604004F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-543.604004F, -315.355988F), new Vector2(-544F, -316.855988F), new Vector2(-544.791992F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-545.583984F, -319.544006F), new Vector2(-546.65802F, -320.605988F), new Vector2(-548.013977F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-549.369995F, -322.165985F), new Vector2(-550.888F, -322.556F), new Vector2(-552.567993F, -322.556F)); + builder.AddCubicBezier(new Vector2(-554.223999F, -322.556F), new Vector2(-555.723999F, -322.160004F), new Vector2(-557.067993F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-558.411987F, -320.575989F), new Vector2(-559.47998F, -319.514008F), new Vector2(-560.271973F, -318.182007F)); + builder.AddCubicBezier(new Vector2(-561.064026F, -316.850006F), new Vector2(-561.460022F, -315.355988F), new Vector2(-561.460022F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-561.460022F, -312.019989F), new Vector2(-561.064026F, -310.502014F), new Vector2(-560.271973F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-559.47998F, -307.790009F), new Vector2(-558.411987F, -306.716003F), new Vector2(-557.067993F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-555.723999F, -305.131989F), new Vector2(-554.223999F, -304.735992F), new Vector2(-552.567993F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-550.888F, -304.735992F), new Vector2(-549.369995F, -305.131989F), new Vector2(-548.013977F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0789() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-565.276001F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-564.892029F, -326.605988F), new Vector2(-564.700012F, -327.104004F), new Vector2(-564.700012F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-564.700012F, -328.279999F), new Vector2(-564.892029F, -328.765991F), new Vector2(-565.276001F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-565.659973F, -329.558014F), new Vector2(-566.151978F, -329.756012F), new Vector2(-566.752014F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-567.35199F, -329.756012F), new Vector2(-567.843994F, -329.558014F), new Vector2(-568.228027F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-568.612F, -328.765991F), new Vector2(-568.804016F, -328.279999F), new Vector2(-568.804016F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-568.804016F, -327.104004F), new Vector2(-568.612F, -326.605988F), new Vector2(-568.228027F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-567.843994F, -325.813995F), new Vector2(-567.35199F, -325.615997F), new Vector2(-566.752014F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-566.151978F, -325.615997F), new Vector2(-565.659973F, -325.813995F), new Vector2(-565.276001F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-565.132019F, -305.096008F)); + builder.AddLine(new Vector2(-565.132019F, -322.196014F)); + builder.AddLine(new Vector2(-568.40802F, -322.196014F)); + builder.AddLine(new Vector2(-568.40802F, -305.096008F)); + builder.AddLine(new Vector2(-565.132019F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0790() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-573.754028F, -306.140015F)); + builder.AddCubicBezier(new Vector2(-572.614014F, -307.075989F), new Vector2(-572.044006F, -308.347992F), new Vector2(-572.044006F, -309.955994F)); + builder.AddCubicBezier(new Vector2(-572.044006F, -311.011993F), new Vector2(-572.265991F, -311.864014F), new Vector2(-572.710022F, -312.511993F)); + builder.AddCubicBezier(new Vector2(-573.153992F, -313.160004F), new Vector2(-573.723999F, -313.675995F), new Vector2(-574.419983F, -314.059998F)); + builder.AddCubicBezier(new Vector2(-575.116028F, -314.444F), new Vector2(-575.848022F, -314.75F), new Vector2(-576.616028F, -314.977997F)); + builder.AddCubicBezier(new Vector2(-577.383972F, -315.205994F), new Vector2(-578.122009F, -315.428009F), new Vector2(-578.830017F, -315.644012F)); + builder.AddCubicBezier(new Vector2(-579.538025F, -315.859985F), new Vector2(-580.107971F, -316.123993F), new Vector2(-580.539978F, -316.436005F)); + builder.AddCubicBezier(new Vector2(-580.971985F, -316.747986F), new Vector2(-581.187988F, -317.191986F), new Vector2(-581.187988F, -317.768005F)); + builder.AddCubicBezier(new Vector2(-581.187988F, -318.320007F), new Vector2(-580.942017F, -318.764008F), new Vector2(-580.450012F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-579.958008F, -319.436005F), new Vector2(-579.244019F, -319.604004F), new Vector2(-578.307983F, -319.604004F)); + builder.AddCubicBezier(new Vector2(-577.419983F, -319.604004F), new Vector2(-576.627991F, -319.436005F), new Vector2(-575.932007F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-575.236023F, -318.764008F), new Vector2(-574.635986F, -318.283997F), new Vector2(-574.132019F, -317.660004F)); + builder.AddLine(new Vector2(-572.044006F, -319.747986F)); + builder.AddCubicBezier(new Vector2(-572.716003F, -320.68399F), new Vector2(-573.573975F, -321.385986F), new Vector2(-574.617981F, -321.854004F)); + builder.AddCubicBezier(new Vector2(-575.661987F, -322.321991F), new Vector2(-576.856018F, -322.556F), new Vector2(-578.200012F, -322.556F)); + builder.AddCubicBezier(new Vector2(-579.471985F, -322.556F), new Vector2(-580.564026F, -322.35199F), new Vector2(-581.476013F, -321.944F)); + builder.AddCubicBezier(new Vector2(-582.388F, -321.536011F), new Vector2(-583.090027F, -320.95401F), new Vector2(-583.58197F, -320.197998F)); + builder.AddCubicBezier(new Vector2(-584.073975F, -319.441986F), new Vector2(-584.320007F, -318.548004F), new Vector2(-584.320007F, -317.515991F)); + builder.AddCubicBezier(new Vector2(-584.320007F, -316.484009F), new Vector2(-584.098022F, -315.649994F), new Vector2(-583.653992F, -315.014008F)); + builder.AddCubicBezier(new Vector2(-583.210022F, -314.377991F), new Vector2(-582.640015F, -313.880005F), new Vector2(-581.94397F, -313.519989F)); + builder.AddCubicBezier(new Vector2(-581.247986F, -313.160004F), new Vector2(-580.51001F, -312.872009F), new Vector2(-579.72998F, -312.656006F)); + builder.AddCubicBezier(new Vector2(-578.950012F, -312.440002F), new Vector2(-578.211975F, -312.217987F), new Vector2(-577.515991F, -311.98999F)); + builder.AddCubicBezier(new Vector2(-576.820007F, -311.761993F), new Vector2(-576.25F, -311.473999F), new Vector2(-575.80603F, -311.126007F)); + builder.AddCubicBezier(new Vector2(-575.362F, -310.778015F), new Vector2(-575.140015F, -310.291992F), new Vector2(-575.140015F, -309.667999F)); + builder.AddCubicBezier(new Vector2(-575.140015F, -309.044006F), new Vector2(-575.416016F, -308.558014F), new Vector2(-575.968018F, -308.209991F)); + builder.AddCubicBezier(new Vector2(-576.52002F, -307.862F), new Vector2(-577.299988F, -307.687988F), new Vector2(-578.307983F, -307.687988F)); + builder.AddCubicBezier(new Vector2(-579.315979F, -307.687988F), new Vector2(-580.228027F, -307.873993F), new Vector2(-581.044006F, -308.246002F)); + builder.AddCubicBezier(new Vector2(-581.859985F, -308.618011F), new Vector2(-582.580017F, -309.187988F), new Vector2(-583.203979F, -309.955994F)); + builder.AddLine(new Vector2(-585.291992F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-584.763977F, -307.220001F), new Vector2(-584.145996F, -306.661987F), new Vector2(-583.437988F, -306.194F)); + builder.AddCubicBezier(new Vector2(-582.72998F, -305.726013F), new Vector2(-581.94397F, -305.365997F), new Vector2(-581.080017F, -305.114014F)); + builder.AddCubicBezier(new Vector2(-580.216003F, -304.862F), new Vector2(-579.304016F, -304.735992F), new Vector2(-578.343994F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-576.424011F, -304.735992F), new Vector2(-574.893982F, -305.20401F), new Vector2(-573.754028F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0791() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-589.125977F, -306.140015F)); + builder.AddCubicBezier(new Vector2(-587.986023F, -307.075989F), new Vector2(-587.416016F, -308.347992F), new Vector2(-587.416016F, -309.955994F)); + builder.AddCubicBezier(new Vector2(-587.416016F, -311.011993F), new Vector2(-587.638F, -311.864014F), new Vector2(-588.08197F, -312.511993F)); + builder.AddCubicBezier(new Vector2(-588.526001F, -313.160004F), new Vector2(-589.096008F, -313.675995F), new Vector2(-589.791992F, -314.059998F)); + builder.AddCubicBezier(new Vector2(-590.487976F, -314.444F), new Vector2(-591.219971F, -314.75F), new Vector2(-591.987976F, -314.977997F)); + builder.AddCubicBezier(new Vector2(-592.755981F, -315.205994F), new Vector2(-593.494019F, -315.428009F), new Vector2(-594.202026F, -315.644012F)); + builder.AddCubicBezier(new Vector2(-594.909973F, -315.859985F), new Vector2(-595.47998F, -316.123993F), new Vector2(-595.911987F, -316.436005F)); + builder.AddCubicBezier(new Vector2(-596.343994F, -316.747986F), new Vector2(-596.559998F, -317.191986F), new Vector2(-596.559998F, -317.768005F)); + builder.AddCubicBezier(new Vector2(-596.559998F, -318.320007F), new Vector2(-596.314026F, -318.764008F), new Vector2(-595.822021F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-595.330017F, -319.436005F), new Vector2(-594.616028F, -319.604004F), new Vector2(-593.679993F, -319.604004F)); + builder.AddCubicBezier(new Vector2(-592.791992F, -319.604004F), new Vector2(-592F, -319.436005F), new Vector2(-591.304016F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-590.607971F, -318.764008F), new Vector2(-590.007996F, -318.283997F), new Vector2(-589.504028F, -317.660004F)); + builder.AddLine(new Vector2(-587.416016F, -319.747986F)); + builder.AddCubicBezier(new Vector2(-588.088013F, -320.68399F), new Vector2(-588.945984F, -321.385986F), new Vector2(-589.98999F, -321.854004F)); + builder.AddCubicBezier(new Vector2(-591.033997F, -322.321991F), new Vector2(-592.228027F, -322.556F), new Vector2(-593.572021F, -322.556F)); + builder.AddCubicBezier(new Vector2(-594.843994F, -322.556F), new Vector2(-595.935974F, -322.35199F), new Vector2(-596.848022F, -321.944F)); + builder.AddCubicBezier(new Vector2(-597.76001F, -321.536011F), new Vector2(-598.461975F, -320.95401F), new Vector2(-598.953979F, -320.197998F)); + builder.AddCubicBezier(new Vector2(-599.445984F, -319.441986F), new Vector2(-599.692017F, -318.548004F), new Vector2(-599.692017F, -317.515991F)); + builder.AddCubicBezier(new Vector2(-599.692017F, -316.484009F), new Vector2(-599.469971F, -315.649994F), new Vector2(-599.026001F, -315.014008F)); + builder.AddCubicBezier(new Vector2(-598.58197F, -314.377991F), new Vector2(-598.012024F, -313.880005F), new Vector2(-597.315979F, -313.519989F)); + builder.AddCubicBezier(new Vector2(-596.619995F, -313.160004F), new Vector2(-595.882019F, -312.872009F), new Vector2(-595.10199F, -312.656006F)); + builder.AddCubicBezier(new Vector2(-594.322021F, -312.440002F), new Vector2(-593.583984F, -312.217987F), new Vector2(-592.888F, -311.98999F)); + builder.AddCubicBezier(new Vector2(-592.192017F, -311.761993F), new Vector2(-591.622009F, -311.473999F), new Vector2(-591.177979F, -311.126007F)); + builder.AddCubicBezier(new Vector2(-590.734009F, -310.778015F), new Vector2(-590.512024F, -310.291992F), new Vector2(-590.512024F, -309.667999F)); + builder.AddCubicBezier(new Vector2(-590.512024F, -309.044006F), new Vector2(-590.788025F, -308.558014F), new Vector2(-591.340027F, -308.209991F)); + builder.AddCubicBezier(new Vector2(-591.892029F, -307.862F), new Vector2(-592.671997F, -307.687988F), new Vector2(-593.679993F, -307.687988F)); + builder.AddCubicBezier(new Vector2(-594.687988F, -307.687988F), new Vector2(-595.599976F, -307.873993F), new Vector2(-596.416016F, -308.246002F)); + builder.AddCubicBezier(new Vector2(-597.231995F, -308.618011F), new Vector2(-597.952026F, -309.187988F), new Vector2(-598.575989F, -309.955994F)); + builder.AddLine(new Vector2(-600.664001F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-600.135986F, -307.220001F), new Vector2(-599.518005F, -306.661987F), new Vector2(-598.809998F, -306.194F)); + builder.AddCubicBezier(new Vector2(-598.10199F, -305.726013F), new Vector2(-597.315979F, -305.365997F), new Vector2(-596.452026F, -305.114014F)); + builder.AddCubicBezier(new Vector2(-595.588013F, -304.862F), new Vector2(-594.676025F, -304.735992F), new Vector2(-593.716003F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-591.796021F, -304.735992F), new Vector2(-590.265991F, -305.20401F), new Vector2(-589.125977F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0792() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-606.747986F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-605.572021F, -305.996002F), new Vector2(-604.564026F, -306.727997F), new Vector2(-603.723999F, -307.687988F)); + builder.AddLine(new Vector2(-605.812012F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-606.388F, -309.140015F), new Vector2(-607.078003F, -308.635986F), new Vector2(-607.882019F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-608.685974F, -307.963989F), new Vector2(-609.567993F, -307.79599F), new Vector2(-610.528015F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-611.679993F, -307.79599F), new Vector2(-612.700012F, -308.041992F), new Vector2(-613.588013F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-614.476013F, -309.026001F), new Vector2(-615.159973F, -309.721985F), new Vector2(-615.640015F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-616.119995F, -311.522003F), new Vector2(-616.359985F, -312.571991F), new Vector2(-616.359985F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-616.359985F, -314.947998F), new Vector2(-616.132019F, -315.967987F), new Vector2(-615.676025F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-615.219971F, -317.696014F), new Vector2(-614.572021F, -318.368011F), new Vector2(-613.731995F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-612.892029F, -319.328003F), new Vector2(-611.919983F, -319.567993F), new Vector2(-610.815979F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-609.76001F, -319.567993F), new Vector2(-608.859985F, -319.346008F), new Vector2(-608.116028F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-607.372009F, -318.458008F), new Vector2(-606.796021F, -317.834015F), new Vector2(-606.388F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-605.97998F, -316.226013F), new Vector2(-605.776001F, -315.247986F), new Vector2(-605.776001F, -314.096008F)); + builder.AddLine(new Vector2(-604.588013F, -315.140015F)); + builder.AddLine(new Vector2(-617.296021F, -315.140015F)); + builder.AddLine(new Vector2(-617.296021F, -312.440002F)); + builder.AddLine(new Vector2(-602.859985F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-602.788025F, -312.776001F), new Vector2(-602.73999F, -313.082001F), new Vector2(-602.716003F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-602.692017F, -313.634003F), new Vector2(-602.679993F, -313.891998F), new Vector2(-602.679993F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-602.679993F, -315.764008F), new Vector2(-603.021973F, -317.216003F), new Vector2(-603.705994F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-604.390015F, -319.76001F), new Vector2(-605.343994F, -320.756012F), new Vector2(-606.567993F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-607.791992F, -322.196014F), new Vector2(-609.184021F, -322.556F), new Vector2(-610.744019F, -322.556F)); + builder.AddCubicBezier(new Vector2(-612.400024F, -322.556F), new Vector2(-613.893982F, -322.165985F), new Vector2(-615.226013F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-616.557983F, -320.605988F), new Vector2(-617.614014F, -319.544006F), new Vector2(-618.393982F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-619.174011F, -316.855988F), new Vector2(-619.564026F, -315.343994F), new Vector2(-619.564026F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-619.564026F, -311.959991F), new Vector2(-619.16803F, -310.436005F), new Vector2(-618.375977F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-617.583984F, -307.747986F), new Vector2(-616.51001F, -306.686005F), new Vector2(-615.153992F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-613.797974F, -305.126007F), new Vector2(-612.255981F, -304.735992F), new Vector2(-610.528015F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-609.184021F, -304.735992F), new Vector2(-607.924011F, -304.988007F), new Vector2(-606.747986F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0793() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-627.952026F, -318.343994F)); + builder.AddCubicBezier(new Vector2(-627.184021F, -319.112F), new Vector2(-626.200012F, -319.496002F), new Vector2(-625F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-624.424011F, -319.496002F), new Vector2(-623.919983F, -319.411987F), new Vector2(-623.487976F, -319.243988F)); + builder.AddCubicBezier(new Vector2(-623.05603F, -319.075989F), new Vector2(-622.659973F, -318.799988F), new Vector2(-622.299988F, -318.415985F)); + builder.AddLine(new Vector2(-620.176025F, -320.612F)); + builder.AddCubicBezier(new Vector2(-620.776001F, -321.308014F), new Vector2(-621.424011F, -321.806F), new Vector2(-622.119995F, -322.105988F)); + builder.AddCubicBezier(new Vector2(-622.815979F, -322.406006F), new Vector2(-623.596008F, -322.556F), new Vector2(-624.460022F, -322.556F)); + builder.AddCubicBezier(new Vector2(-626.356018F, -322.556F), new Vector2(-627.807983F, -321.90799F), new Vector2(-628.815979F, -320.612F)); + builder.AddCubicBezier(new Vector2(-629.823975F, -319.31601F), new Vector2(-630.328003F, -317.575989F), new Vector2(-630.328003F, -315.391998F)); + builder.AddLine(new Vector2(-629.104004F, -314.81601F)); + builder.AddCubicBezier(new Vector2(-629.104004F, -316.399994F), new Vector2(-628.719971F, -317.575989F), new Vector2(-627.952026F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-629.104004F, -305.096008F)); + builder.AddLine(new Vector2(-629.104004F, -322.196014F)); + builder.AddLine(new Vector2(-632.343994F, -322.196014F)); + builder.AddLine(new Vector2(-632.343994F, -305.096008F)); + builder.AddLine(new Vector2(-629.104004F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0794() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-647.661987F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-648.48999F, -309.056F), new Vector2(-649.125977F, -309.746002F), new Vector2(-649.570007F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-650.013977F, -311.497986F), new Vector2(-650.236023F, -312.5F), new Vector2(-650.236023F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-650.236023F, -314.779999F), new Vector2(-650.007996F, -315.794006F), new Vector2(-649.552002F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-649.096008F, -317.54599F), new Vector2(-648.460022F, -318.235992F), new Vector2(-647.643982F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-646.828003F, -319.243988F), new Vector2(-645.892029F, -319.496002F), new Vector2(-644.835999F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-643.755981F, -319.496002F), new Vector2(-642.807983F, -319.243988F), new Vector2(-641.992004F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-641.176025F, -318.235992F), new Vector2(-640.533997F, -317.54599F), new Vector2(-640.065979F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-639.598022F, -315.794006F), new Vector2(-639.364014F, -314.791992F), new Vector2(-639.364014F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-639.364014F, -312.511993F), new Vector2(-639.598022F, -311.497986F), new Vector2(-640.065979F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-640.533997F, -309.746002F), new Vector2(-641.176025F, -309.056F), new Vector2(-641.992004F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-642.807983F, -308.048004F), new Vector2(-643.755981F, -307.79599F), new Vector2(-644.835999F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-645.892029F, -307.79599F), new Vector2(-646.833984F, -308.048004F), new Vector2(-647.661987F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-650.05603F, -297.932007F)); + builder.AddLine(new Vector2(-650.05603F, -309.380005F)); + builder.AddLine(new Vector2(-650.66803F, -313.556F)); + builder.AddLine(new Vector2(-650.05603F, -317.696014F)); + builder.AddLine(new Vector2(-650.05603F, -322.196014F)); + builder.AddLine(new Vector2(-653.296021F, -322.196014F)); + builder.AddLine(new Vector2(-653.296021F, -297.932007F)); + builder.AddLine(new Vector2(-650.05603F, -297.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-640.065979F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-638.80603F, -306.686005F), new Vector2(-637.815979F, -307.747986F), new Vector2(-637.096008F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-636.375977F, -310.436005F), new Vector2(-636.015991F, -311.947998F), new Vector2(-636.015991F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-636.015991F, -315.308014F), new Vector2(-636.375977F, -316.820007F), new Vector2(-637.096008F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-637.815979F, -319.507996F), new Vector2(-638.80603F, -320.575989F), new Vector2(-640.065979F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-641.325989F, -322.160004F), new Vector2(-642.736023F, -322.556F), new Vector2(-644.296021F, -322.556F)); + builder.AddCubicBezier(new Vector2(-645.567993F, -322.556F), new Vector2(-646.726013F, -322.286011F), new Vector2(-647.77002F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-648.814026F, -321.205994F), new Vector2(-649.653992F, -320.462006F), new Vector2(-650.289978F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-650.926025F, -318.56601F), new Vector2(-651.280029F, -317.467987F), new Vector2(-651.35199F, -316.220001F)); + builder.AddLine(new Vector2(-651.35199F, -311.071991F)); + builder.AddCubicBezier(new Vector2(-651.280029F, -309.847992F), new Vector2(-650.932007F, -308.756012F), new Vector2(-650.307983F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-649.684021F, -306.835999F), new Vector2(-648.849976F, -306.085999F), new Vector2(-647.80603F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-646.762024F, -305.006012F), new Vector2(-645.59198F, -304.735992F), new Vector2(-644.296021F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-642.736023F, -304.735992F), new Vector2(-641.325989F, -305.126007F), new Vector2(-640.065979F, -305.906006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0795() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-668.614014F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-669.442017F, -309.056F), new Vector2(-670.078003F, -309.746002F), new Vector2(-670.521973F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-670.966003F, -311.497986F), new Vector2(-671.187988F, -312.5F), new Vector2(-671.187988F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-671.187988F, -314.779999F), new Vector2(-670.960022F, -315.794006F), new Vector2(-670.504028F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-670.047974F, -317.54599F), new Vector2(-669.411987F, -318.235992F), new Vector2(-668.596008F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-667.780029F, -319.243988F), new Vector2(-666.843994F, -319.496002F), new Vector2(-665.788025F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-664.708008F, -319.496002F), new Vector2(-663.76001F, -319.243988F), new Vector2(-662.94397F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-662.127991F, -318.235992F), new Vector2(-661.486023F, -317.54599F), new Vector2(-661.018005F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-660.549988F, -315.794006F), new Vector2(-660.315979F, -314.791992F), new Vector2(-660.315979F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-660.315979F, -312.511993F), new Vector2(-660.549988F, -311.497986F), new Vector2(-661.018005F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-661.486023F, -309.746002F), new Vector2(-662.127991F, -309.056F), new Vector2(-662.94397F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-663.76001F, -308.048004F), new Vector2(-664.708008F, -307.79599F), new Vector2(-665.788025F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-666.843994F, -307.79599F), new Vector2(-667.786011F, -308.048004F), new Vector2(-668.614014F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-671.007996F, -297.932007F)); + builder.AddLine(new Vector2(-671.007996F, -309.380005F)); + builder.AddLine(new Vector2(-671.619995F, -313.556F)); + builder.AddLine(new Vector2(-671.007996F, -317.696014F)); + builder.AddLine(new Vector2(-671.007996F, -322.196014F)); + builder.AddLine(new Vector2(-674.247986F, -322.196014F)); + builder.AddLine(new Vector2(-674.247986F, -297.932007F)); + builder.AddLine(new Vector2(-671.007996F, -297.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-661.018005F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-659.757996F, -306.686005F), new Vector2(-658.768005F, -307.747986F), new Vector2(-658.047974F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-657.328003F, -310.436005F), new Vector2(-656.968018F, -311.947998F), new Vector2(-656.968018F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-656.968018F, -315.308014F), new Vector2(-657.328003F, -316.820007F), new Vector2(-658.047974F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-658.768005F, -319.507996F), new Vector2(-659.757996F, -320.575989F), new Vector2(-661.018005F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-662.278015F, -322.160004F), new Vector2(-663.687988F, -322.556F), new Vector2(-665.247986F, -322.556F)); + builder.AddCubicBezier(new Vector2(-666.52002F, -322.556F), new Vector2(-667.677979F, -322.286011F), new Vector2(-668.721985F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-669.765991F, -321.205994F), new Vector2(-670.606018F, -320.462006F), new Vector2(-671.242004F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-671.877991F, -318.56601F), new Vector2(-672.231995F, -317.467987F), new Vector2(-672.304016F, -316.220001F)); + builder.AddLine(new Vector2(-672.304016F, -311.071991F)); + builder.AddCubicBezier(new Vector2(-672.231995F, -309.847992F), new Vector2(-671.883972F, -308.756012F), new Vector2(-671.26001F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-670.635986F, -306.835999F), new Vector2(-669.802002F, -306.085999F), new Vector2(-668.757996F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-667.713989F, -305.006012F), new Vector2(-666.544006F, -304.735992F), new Vector2(-665.247986F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-663.687988F, -304.735992F), new Vector2(-662.278015F, -305.126007F), new Vector2(-661.018005F, -305.906006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0796() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-689.656006F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-690.495972F, -309.127991F), new Vector2(-691.156006F, -309.817993F), new Vector2(-691.635986F, -310.694F)); + builder.AddCubicBezier(new Vector2(-692.116028F, -311.570007F), new Vector2(-692.356018F, -312.571991F), new Vector2(-692.356018F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-692.356018F, -314.803986F), new Vector2(-692.116028F, -315.787994F), new Vector2(-691.635986F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-691.156006F, -317.515991F), new Vector2(-690.495972F, -318.194F), new Vector2(-689.656006F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-688.815979F, -319.178009F), new Vector2(-687.867981F, -319.424011F), new Vector2(-686.812012F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-685.708008F, -319.424011F), new Vector2(-684.742004F, -319.178009F), new Vector2(-683.914001F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-683.085999F, -318.194F), new Vector2(-682.426025F, -317.515991F), new Vector2(-681.934021F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-681.442017F, -315.787994F), new Vector2(-681.195984F, -314.803986F), new Vector2(-681.195984F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-681.195984F, -312.571991F), new Vector2(-681.435974F, -311.570007F), new Vector2(-681.916016F, -310.694F)); + builder.AddCubicBezier(new Vector2(-682.395996F, -309.817993F), new Vector2(-683.05603F, -309.127991F), new Vector2(-683.895996F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-684.736023F, -308.119995F), new Vector2(-685.708008F, -307.868011F), new Vector2(-686.812012F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-687.867981F, -307.868011F), new Vector2(-688.815979F, -308.119995F), new Vector2(-689.656006F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-682.257996F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-680.901978F, -306.716003F), new Vector2(-679.828003F, -307.790009F), new Vector2(-679.036011F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-678.244019F, -310.502014F), new Vector2(-677.848022F, -312.019989F), new Vector2(-677.848022F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-677.848022F, -315.355988F), new Vector2(-678.244019F, -316.855988F), new Vector2(-679.036011F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-679.828003F, -319.544006F), new Vector2(-680.901978F, -320.605988F), new Vector2(-682.257996F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-683.614014F, -322.165985F), new Vector2(-685.132019F, -322.556F), new Vector2(-686.812012F, -322.556F)); + builder.AddCubicBezier(new Vector2(-688.468018F, -322.556F), new Vector2(-689.968018F, -322.160004F), new Vector2(-691.312012F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-692.656006F, -320.575989F), new Vector2(-693.723999F, -319.514008F), new Vector2(-694.515991F, -318.182007F)); + builder.AddCubicBezier(new Vector2(-695.307983F, -316.850006F), new Vector2(-695.703979F, -315.355988F), new Vector2(-695.703979F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-695.703979F, -312.019989F), new Vector2(-695.307983F, -310.502014F), new Vector2(-694.515991F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-693.723999F, -307.790009F), new Vector2(-692.656006F, -306.716003F), new Vector2(-691.312012F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-689.968018F, -305.131989F), new Vector2(-688.468018F, -304.735992F), new Vector2(-686.812012F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-685.132019F, -304.735992F), new Vector2(-683.614014F, -305.131989F), new Vector2(-682.257996F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0797() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-709.924011F, -300.127991F)); + builder.AddLine(new Vector2(-707.512024F, -304.59201F)); + builder.AddCubicBezier(new Vector2(-707.200012F, -305.191986F), new Vector2(-706.98999F, -305.678009F), new Vector2(-706.882019F, -306.049988F)); + builder.AddCubicBezier(new Vector2(-706.773987F, -306.421997F), new Vector2(-706.719971F, -306.73999F), new Vector2(-706.719971F, -307.003998F)); + builder.AddCubicBezier(new Vector2(-706.719971F, -307.700012F), new Vector2(-706.960022F, -308.282013F), new Vector2(-707.440002F, -308.75F)); + builder.AddCubicBezier(new Vector2(-707.919983F, -309.217987F), new Vector2(-708.471985F, -309.451996F), new Vector2(-709.096008F, -309.451996F)); + builder.AddCubicBezier(new Vector2(-709.791992F, -309.451996F), new Vector2(-710.367981F, -309.217987F), new Vector2(-710.823975F, -308.75F)); + builder.AddCubicBezier(new Vector2(-711.280029F, -308.282013F), new Vector2(-711.507996F, -307.700012F), new Vector2(-711.507996F, -307.003998F)); + builder.AddCubicBezier(new Vector2(-711.507996F, -306.380005F), new Vector2(-711.297974F, -305.858002F), new Vector2(-710.877991F, -305.437988F)); + builder.AddCubicBezier(new Vector2(-710.458008F, -305.018005F), new Vector2(-709.995972F, -304.808014F), new Vector2(-709.492004F, -304.808014F)); + builder.AddCubicBezier(new Vector2(-709.252014F, -304.808014F), new Vector2(-709.036011F, -304.891998F), new Vector2(-708.843994F, -305.059998F)); + builder.AddCubicBezier(new Vector2(-708.651978F, -305.227997F), new Vector2(-708.495972F, -305.444F), new Vector2(-708.375977F, -305.708008F)); + builder.AddLine(new Vector2(-709.528015F, -305.420013F)); + builder.AddLine(new Vector2(-711.76001F, -301.135986F)); + builder.AddLine(new Vector2(-709.924011F, -300.127991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0798() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-717.286011F, -306.140015F)); + builder.AddCubicBezier(new Vector2(-716.145996F, -307.075989F), new Vector2(-715.575989F, -308.347992F), new Vector2(-715.575989F, -309.955994F)); + builder.AddCubicBezier(new Vector2(-715.575989F, -311.011993F), new Vector2(-715.797974F, -311.864014F), new Vector2(-716.242004F, -312.511993F)); + builder.AddCubicBezier(new Vector2(-716.685974F, -313.160004F), new Vector2(-717.255981F, -313.675995F), new Vector2(-717.952026F, -314.059998F)); + builder.AddCubicBezier(new Vector2(-718.64801F, -314.444F), new Vector2(-719.380005F, -314.75F), new Vector2(-720.14801F, -314.977997F)); + builder.AddCubicBezier(new Vector2(-720.916016F, -315.205994F), new Vector2(-721.653992F, -315.428009F), new Vector2(-722.362F, -315.644012F)); + builder.AddCubicBezier(new Vector2(-723.070007F, -315.859985F), new Vector2(-723.640015F, -316.123993F), new Vector2(-724.072021F, -316.436005F)); + builder.AddCubicBezier(new Vector2(-724.504028F, -316.747986F), new Vector2(-724.719971F, -317.191986F), new Vector2(-724.719971F, -317.768005F)); + builder.AddCubicBezier(new Vector2(-724.719971F, -318.320007F), new Vector2(-724.473999F, -318.764008F), new Vector2(-723.981995F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-723.48999F, -319.436005F), new Vector2(-722.776001F, -319.604004F), new Vector2(-721.840027F, -319.604004F)); + builder.AddCubicBezier(new Vector2(-720.952026F, -319.604004F), new Vector2(-720.159973F, -319.436005F), new Vector2(-719.463989F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-718.768005F, -318.764008F), new Vector2(-718.16803F, -318.283997F), new Vector2(-717.664001F, -317.660004F)); + builder.AddLine(new Vector2(-715.575989F, -319.747986F)); + builder.AddCubicBezier(new Vector2(-716.247986F, -320.68399F), new Vector2(-717.106018F, -321.385986F), new Vector2(-718.150024F, -321.854004F)); + builder.AddCubicBezier(new Vector2(-719.19397F, -322.321991F), new Vector2(-720.388F, -322.556F), new Vector2(-721.731995F, -322.556F)); + builder.AddCubicBezier(new Vector2(-723.004028F, -322.556F), new Vector2(-724.096008F, -322.35199F), new Vector2(-725.007996F, -321.944F)); + builder.AddCubicBezier(new Vector2(-725.919983F, -321.536011F), new Vector2(-726.622009F, -320.95401F), new Vector2(-727.114014F, -320.197998F)); + builder.AddCubicBezier(new Vector2(-727.606018F, -319.441986F), new Vector2(-727.85199F, -318.548004F), new Vector2(-727.85199F, -317.515991F)); + builder.AddCubicBezier(new Vector2(-727.85199F, -316.484009F), new Vector2(-727.630005F, -315.649994F), new Vector2(-727.185974F, -315.014008F)); + builder.AddCubicBezier(new Vector2(-726.742004F, -314.377991F), new Vector2(-726.171997F, -313.880005F), new Vector2(-725.476013F, -313.519989F)); + builder.AddCubicBezier(new Vector2(-724.780029F, -313.160004F), new Vector2(-724.041992F, -312.872009F), new Vector2(-723.262024F, -312.656006F)); + builder.AddCubicBezier(new Vector2(-722.481995F, -312.440002F), new Vector2(-721.744019F, -312.217987F), new Vector2(-721.047974F, -311.98999F)); + builder.AddCubicBezier(new Vector2(-720.35199F, -311.761993F), new Vector2(-719.781982F, -311.473999F), new Vector2(-719.338013F, -311.126007F)); + builder.AddCubicBezier(new Vector2(-718.893982F, -310.778015F), new Vector2(-718.671997F, -310.291992F), new Vector2(-718.671997F, -309.667999F)); + builder.AddCubicBezier(new Vector2(-718.671997F, -309.044006F), new Vector2(-718.947998F, -308.558014F), new Vector2(-719.5F, -308.209991F)); + builder.AddCubicBezier(new Vector2(-720.052002F, -307.862F), new Vector2(-720.83197F, -307.687988F), new Vector2(-721.840027F, -307.687988F)); + builder.AddCubicBezier(new Vector2(-722.848022F, -307.687988F), new Vector2(-723.76001F, -307.873993F), new Vector2(-724.575989F, -308.246002F)); + builder.AddCubicBezier(new Vector2(-725.392029F, -308.618011F), new Vector2(-726.112F, -309.187988F), new Vector2(-726.736023F, -309.955994F)); + builder.AddLine(new Vector2(-728.823975F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-728.296021F, -307.220001F), new Vector2(-727.677979F, -306.661987F), new Vector2(-726.969971F, -306.194F)); + builder.AddCubicBezier(new Vector2(-726.262024F, -305.726013F), new Vector2(-725.476013F, -305.365997F), new Vector2(-724.612F, -305.114014F)); + builder.AddCubicBezier(new Vector2(-723.747986F, -304.862F), new Vector2(-722.835999F, -304.735992F), new Vector2(-721.875977F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-719.955994F, -304.735992F), new Vector2(-718.426025F, -305.20401F), new Vector2(-717.286011F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0799() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-734.90802F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-733.731995F, -305.996002F), new Vector2(-732.723999F, -306.727997F), new Vector2(-731.883972F, -307.687988F)); + builder.AddLine(new Vector2(-733.971985F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-734.547974F, -309.140015F), new Vector2(-735.237976F, -308.635986F), new Vector2(-736.041992F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-736.846008F, -307.963989F), new Vector2(-737.728027F, -307.79599F), new Vector2(-738.687988F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-739.840027F, -307.79599F), new Vector2(-740.859985F, -308.041992F), new Vector2(-741.747986F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-742.635986F, -309.026001F), new Vector2(-743.320007F, -309.721985F), new Vector2(-743.799988F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-744.280029F, -311.522003F), new Vector2(-744.52002F, -312.571991F), new Vector2(-744.52002F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-744.52002F, -314.947998F), new Vector2(-744.291992F, -315.967987F), new Vector2(-743.835999F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-743.380005F, -317.696014F), new Vector2(-742.731995F, -318.368011F), new Vector2(-741.892029F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-741.052002F, -319.328003F), new Vector2(-740.080017F, -319.567993F), new Vector2(-738.976013F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-737.919983F, -319.567993F), new Vector2(-737.02002F, -319.346008F), new Vector2(-736.276001F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-735.531982F, -318.458008F), new Vector2(-734.955994F, -317.834015F), new Vector2(-734.547974F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-734.140015F, -316.226013F), new Vector2(-733.935974F, -315.247986F), new Vector2(-733.935974F, -314.096008F)); + builder.AddLine(new Vector2(-732.747986F, -315.140015F)); + builder.AddLine(new Vector2(-745.455994F, -315.140015F)); + builder.AddLine(new Vector2(-745.455994F, -312.440002F)); + builder.AddLine(new Vector2(-731.02002F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-730.947998F, -312.776001F), new Vector2(-730.900024F, -313.082001F), new Vector2(-730.875977F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-730.85199F, -313.634003F), new Vector2(-730.840027F, -313.891998F), new Vector2(-730.840027F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-730.840027F, -315.764008F), new Vector2(-731.182007F, -317.216003F), new Vector2(-731.866028F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-732.549988F, -319.76001F), new Vector2(-733.504028F, -320.756012F), new Vector2(-734.728027F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-735.952026F, -322.196014F), new Vector2(-737.343994F, -322.556F), new Vector2(-738.903992F, -322.556F)); + builder.AddCubicBezier(new Vector2(-740.559998F, -322.556F), new Vector2(-742.054016F, -322.165985F), new Vector2(-743.385986F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-744.718018F, -320.605988F), new Vector2(-745.773987F, -319.544006F), new Vector2(-746.554016F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-747.333984F, -316.855988F), new Vector2(-747.723999F, -315.343994F), new Vector2(-747.723999F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-747.723999F, -311.959991F), new Vector2(-747.328003F, -310.436005F), new Vector2(-746.536011F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-745.744019F, -307.747986F), new Vector2(-744.669983F, -306.686005F), new Vector2(-743.314026F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-741.958008F, -305.126007F), new Vector2(-740.416016F, -304.735992F), new Vector2(-738.687988F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-737.343994F, -304.735992F), new Vector2(-736.083984F, -304.988007F), new Vector2(-734.90802F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0800() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-751.539978F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-751.156006F, -326.605988F), new Vector2(-750.963989F, -327.104004F), new Vector2(-750.963989F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-750.963989F, -328.279999F), new Vector2(-751.156006F, -328.765991F), new Vector2(-751.539978F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-751.924011F, -329.558014F), new Vector2(-752.416016F, -329.756012F), new Vector2(-753.015991F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-753.616028F, -329.756012F), new Vector2(-754.107971F, -329.558014F), new Vector2(-754.492004F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-754.875977F, -328.765991F), new Vector2(-755.067993F, -328.279999F), new Vector2(-755.067993F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-755.067993F, -327.104004F), new Vector2(-754.875977F, -326.605988F), new Vector2(-754.492004F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-754.107971F, -325.813995F), new Vector2(-753.616028F, -325.615997F), new Vector2(-753.015991F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-752.416016F, -325.615997F), new Vector2(-751.924011F, -325.813995F), new Vector2(-751.539978F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-751.395996F, -305.096008F)); + builder.AddLine(new Vector2(-751.395996F, -322.196014F)); + builder.AddLine(new Vector2(-754.671997F, -322.196014F)); + builder.AddLine(new Vector2(-754.671997F, -305.096008F)); + builder.AddLine(new Vector2(-751.395996F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0801() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-760.773987F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-759.633972F, -305.996002F), new Vector2(-758.66803F, -306.70401F), new Vector2(-757.875977F, -307.615997F)); + builder.AddLine(new Vector2(-760F, -309.776001F)); + builder.AddCubicBezier(new Vector2(-760.552002F, -309.152008F), new Vector2(-761.205994F, -308.678009F), new Vector2(-761.961975F, -308.354004F)); + builder.AddCubicBezier(new Vector2(-762.718018F, -308.029999F), new Vector2(-763.552002F, -307.868011F), new Vector2(-764.463989F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-765.544006F, -307.868011F), new Vector2(-766.504028F, -308.119995F), new Vector2(-767.343994F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-768.184021F, -309.127991F), new Vector2(-768.843994F, -309.812012F), new Vector2(-769.323975F, -310.675995F)); + builder.AddCubicBezier(new Vector2(-769.804016F, -311.540009F), new Vector2(-770.044006F, -312.536011F), new Vector2(-770.044006F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-770.044006F, -314.791992F), new Vector2(-769.804016F, -315.787994F), new Vector2(-769.323975F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-768.843994F, -317.515991F), new Vector2(-768.184021F, -318.194F), new Vector2(-767.343994F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-766.504028F, -319.178009F), new Vector2(-765.544006F, -319.424011F), new Vector2(-764.463989F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-763.575989F, -319.424011F), new Vector2(-762.747986F, -319.261993F), new Vector2(-761.97998F, -318.937988F)); + builder.AddCubicBezier(new Vector2(-761.211975F, -318.614014F), new Vector2(-760.564026F, -318.140015F), new Vector2(-760.036011F, -317.515991F)); + builder.AddLine(new Vector2(-757.875977F, -319.675995F)); + builder.AddCubicBezier(new Vector2(-758.692017F, -320.612F), new Vector2(-759.664001F, -321.325989F), new Vector2(-760.791992F, -321.817993F)); + builder.AddCubicBezier(new Vector2(-761.919983F, -322.309998F), new Vector2(-763.143982F, -322.556F), new Vector2(-764.463989F, -322.556F)); + builder.AddCubicBezier(new Vector2(-766.143982F, -322.556F), new Vector2(-767.661987F, -322.165985F), new Vector2(-769.018005F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-770.374023F, -320.605988F), new Vector2(-771.442017F, -319.544006F), new Vector2(-772.221985F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-773.002014F, -316.855988F), new Vector2(-773.392029F, -315.343994F), new Vector2(-773.392029F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-773.392029F, -312.007996F), new Vector2(-773.002014F, -310.502014F), new Vector2(-772.221985F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-771.442017F, -307.790009F), new Vector2(-770.374023F, -306.716003F), new Vector2(-769.018005F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-767.661987F, -305.131989F), new Vector2(-766.143982F, -304.735992F), new Vector2(-764.463989F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-763.143982F, -304.735992F), new Vector2(-761.914001F, -304.988007F), new Vector2(-760.773987F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0802() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-777.208008F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-776.823975F, -326.605988F), new Vector2(-776.632019F, -327.104004F), new Vector2(-776.632019F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-776.632019F, -328.279999F), new Vector2(-776.823975F, -328.765991F), new Vector2(-777.208008F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-777.59198F, -329.558014F), new Vector2(-778.083984F, -329.756012F), new Vector2(-778.684021F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-779.283997F, -329.756012F), new Vector2(-779.776001F, -329.558014F), new Vector2(-780.159973F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-780.544006F, -328.765991F), new Vector2(-780.736023F, -328.279999F), new Vector2(-780.736023F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-780.736023F, -327.104004F), new Vector2(-780.544006F, -326.605988F), new Vector2(-780.159973F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-779.776001F, -325.813995F), new Vector2(-779.283997F, -325.615997F), new Vector2(-778.684021F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-778.083984F, -325.615997F), new Vector2(-777.59198F, -325.813995F), new Vector2(-777.208008F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-777.064026F, -305.096008F)); + builder.AddLine(new Vector2(-777.064026F, -322.196014F)); + builder.AddLine(new Vector2(-780.340027F, -322.196014F)); + builder.AddLine(new Vector2(-780.340027F, -305.096008F)); + builder.AddLine(new Vector2(-777.064026F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0803() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-785.09198F, -305.096008F)); + builder.AddLine(new Vector2(-785.09198F, -330.799988F)); + builder.AddLine(new Vector2(-788.33197F, -330.799988F)); + builder.AddLine(new Vector2(-788.33197F, -305.096008F)); + builder.AddLine(new Vector2(-785.09198F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0804() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-803.73999F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-804.580017F, -309.127991F), new Vector2(-805.23999F, -309.817993F), new Vector2(-805.719971F, -310.694F)); + builder.AddCubicBezier(new Vector2(-806.200012F, -311.570007F), new Vector2(-806.440002F, -312.571991F), new Vector2(-806.440002F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-806.440002F, -314.803986F), new Vector2(-806.200012F, -315.787994F), new Vector2(-805.719971F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-805.23999F, -317.515991F), new Vector2(-804.580017F, -318.194F), new Vector2(-803.73999F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-802.900024F, -319.178009F), new Vector2(-801.952026F, -319.424011F), new Vector2(-800.895996F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-799.791992F, -319.424011F), new Vector2(-798.825989F, -319.178009F), new Vector2(-797.997986F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-797.169983F, -318.194F), new Vector2(-796.51001F, -317.515991F), new Vector2(-796.018005F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-795.526001F, -315.787994F), new Vector2(-795.280029F, -314.803986F), new Vector2(-795.280029F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-795.280029F, -312.571991F), new Vector2(-795.52002F, -311.570007F), new Vector2(-796F, -310.694F)); + builder.AddCubicBezier(new Vector2(-796.47998F, -309.817993F), new Vector2(-797.140015F, -309.127991F), new Vector2(-797.97998F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-798.820007F, -308.119995F), new Vector2(-799.791992F, -307.868011F), new Vector2(-800.895996F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-801.952026F, -307.868011F), new Vector2(-802.900024F, -308.119995F), new Vector2(-803.73999F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-796.34198F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-794.986023F, -306.716003F), new Vector2(-793.911987F, -307.790009F), new Vector2(-793.119995F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-792.328003F, -310.502014F), new Vector2(-791.932007F, -312.019989F), new Vector2(-791.932007F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-791.932007F, -315.355988F), new Vector2(-792.328003F, -316.855988F), new Vector2(-793.119995F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-793.911987F, -319.544006F), new Vector2(-794.986023F, -320.605988F), new Vector2(-796.34198F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-797.697998F, -322.165985F), new Vector2(-799.216003F, -322.556F), new Vector2(-800.895996F, -322.556F)); + builder.AddCubicBezier(new Vector2(-802.552002F, -322.556F), new Vector2(-804.052002F, -322.160004F), new Vector2(-805.395996F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-806.73999F, -320.575989F), new Vector2(-807.807983F, -319.514008F), new Vector2(-808.599976F, -318.182007F)); + builder.AddCubicBezier(new Vector2(-809.392029F, -316.850006F), new Vector2(-809.788025F, -315.355988F), new Vector2(-809.788025F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-809.788025F, -312.019989F), new Vector2(-809.392029F, -310.502014F), new Vector2(-808.599976F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-807.807983F, -307.790009F), new Vector2(-806.73999F, -306.716003F), new Vector2(-805.395996F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-804.052002F, -305.131989F), new Vector2(-802.552002F, -304.735992F), new Vector2(-800.895996F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-799.216003F, -304.735992F), new Vector2(-797.697998F, -305.131989F), new Vector2(-796.34198F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0805() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-823.98999F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-824.817993F, -309.056F), new Vector2(-825.453979F, -309.746002F), new Vector2(-825.89801F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-826.34198F, -311.497986F), new Vector2(-826.564026F, -312.5F), new Vector2(-826.564026F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-826.564026F, -314.779999F), new Vector2(-826.335999F, -315.794006F), new Vector2(-825.880005F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-825.424011F, -317.54599F), new Vector2(-824.788025F, -318.235992F), new Vector2(-823.971985F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-823.156006F, -319.243988F), new Vector2(-822.219971F, -319.496002F), new Vector2(-821.164001F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-820.083984F, -319.496002F), new Vector2(-819.135986F, -319.243988F), new Vector2(-818.320007F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-817.504028F, -318.235992F), new Vector2(-816.862F, -317.54599F), new Vector2(-816.393982F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-815.926025F, -315.794006F), new Vector2(-815.692017F, -314.791992F), new Vector2(-815.692017F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-815.692017F, -312.511993F), new Vector2(-815.926025F, -311.497986F), new Vector2(-816.393982F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-816.862F, -309.746002F), new Vector2(-817.504028F, -309.056F), new Vector2(-818.320007F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-819.135986F, -308.048004F), new Vector2(-820.083984F, -307.79599F), new Vector2(-821.164001F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-822.219971F, -307.79599F), new Vector2(-823.161987F, -308.048004F), new Vector2(-823.98999F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-826.383972F, -297.932007F)); + builder.AddLine(new Vector2(-826.383972F, -309.380005F)); + builder.AddLine(new Vector2(-826.995972F, -313.556F)); + builder.AddLine(new Vector2(-826.383972F, -317.696014F)); + builder.AddLine(new Vector2(-826.383972F, -322.196014F)); + builder.AddLine(new Vector2(-829.624023F, -322.196014F)); + builder.AddLine(new Vector2(-829.624023F, -297.932007F)); + builder.AddLine(new Vector2(-826.383972F, -297.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-816.393982F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-815.133972F, -306.686005F), new Vector2(-814.143982F, -307.747986F), new Vector2(-813.424011F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-812.703979F, -310.436005F), new Vector2(-812.343994F, -311.947998F), new Vector2(-812.343994F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-812.343994F, -315.308014F), new Vector2(-812.703979F, -316.820007F), new Vector2(-813.424011F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-814.143982F, -319.507996F), new Vector2(-815.133972F, -320.575989F), new Vector2(-816.393982F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-817.653992F, -322.160004F), new Vector2(-819.064026F, -322.556F), new Vector2(-820.624023F, -322.556F)); + builder.AddCubicBezier(new Vector2(-821.895996F, -322.556F), new Vector2(-823.054016F, -322.286011F), new Vector2(-824.098022F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-825.142029F, -321.205994F), new Vector2(-825.981995F, -320.462006F), new Vector2(-826.617981F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-827.254028F, -318.56601F), new Vector2(-827.607971F, -317.467987F), new Vector2(-827.679993F, -316.220001F)); + builder.AddLine(new Vector2(-827.679993F, -311.071991F)); + builder.AddCubicBezier(new Vector2(-827.607971F, -309.847992F), new Vector2(-827.26001F, -308.756012F), new Vector2(-826.635986F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-826.012024F, -306.835999F), new Vector2(-825.177979F, -306.085999F), new Vector2(-824.133972F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-823.090027F, -305.006012F), new Vector2(-821.919983F, -304.735992F), new Vector2(-820.624023F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-819.064026F, -304.735992F), new Vector2(-817.653992F, -305.126007F), new Vector2(-816.393982F, -305.906006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0806() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(783.572021F, -361.544006F)); + builder.AddCubicBezier(new Vector2(784.340027F, -362.312012F), new Vector2(785.323975F, -362.696014F), new Vector2(786.523987F, -362.696014F)); + builder.AddCubicBezier(new Vector2(787.099976F, -362.696014F), new Vector2(787.604004F, -362.612F), new Vector2(788.036011F, -362.444F)); + builder.AddCubicBezier(new Vector2(788.468018F, -362.276001F), new Vector2(788.864014F, -362F), new Vector2(789.223999F, -361.615997F)); + builder.AddLine(new Vector2(791.348022F, -363.812012F)); + builder.AddCubicBezier(new Vector2(790.747986F, -364.507996F), new Vector2(790.099976F, -365.006012F), new Vector2(789.403992F, -365.306F)); + builder.AddCubicBezier(new Vector2(788.708008F, -365.605988F), new Vector2(787.927979F, -365.756012F), new Vector2(787.064026F, -365.756012F)); + builder.AddCubicBezier(new Vector2(785.16803F, -365.756012F), new Vector2(783.716003F, -365.108002F), new Vector2(782.708008F, -363.812012F)); + builder.AddCubicBezier(new Vector2(781.700012F, -362.515991F), new Vector2(781.195984F, -360.776001F), new Vector2(781.195984F, -358.59201F)); + builder.AddLine(new Vector2(782.419983F, -358.015991F)); + builder.AddCubicBezier(new Vector2(782.419983F, -359.600006F), new Vector2(782.804016F, -360.776001F), new Vector2(783.572021F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(782.419983F, -348.29599F)); + builder.AddLine(new Vector2(782.419983F, -365.395996F)); + builder.AddLine(new Vector2(779.179993F, -365.395996F)); + builder.AddLine(new Vector2(779.179993F, -348.29599F)); + builder.AddLine(new Vector2(782.419983F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0807() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(774.247986F, -369.410004F)); + builder.AddCubicBezier(new Vector2(774.632019F, -369.806F), new Vector2(774.823975F, -370.303986F), new Vector2(774.823975F, -370.903992F)); + builder.AddCubicBezier(new Vector2(774.823975F, -371.480011F), new Vector2(774.632019F, -371.966003F), new Vector2(774.247986F, -372.362F)); + builder.AddCubicBezier(new Vector2(773.864014F, -372.757996F), new Vector2(773.372009F, -372.955994F), new Vector2(772.771973F, -372.955994F)); + builder.AddCubicBezier(new Vector2(772.171997F, -372.955994F), new Vector2(771.679993F, -372.757996F), new Vector2(771.296021F, -372.362F)); + builder.AddCubicBezier(new Vector2(770.911987F, -371.966003F), new Vector2(770.719971F, -371.480011F), new Vector2(770.719971F, -370.903992F)); + builder.AddCubicBezier(new Vector2(770.719971F, -370.303986F), new Vector2(770.911987F, -369.806F), new Vector2(771.296021F, -369.410004F)); + builder.AddCubicBezier(new Vector2(771.679993F, -369.014008F), new Vector2(772.171997F, -368.81601F), new Vector2(772.771973F, -368.81601F)); + builder.AddCubicBezier(new Vector2(773.372009F, -368.81601F), new Vector2(773.864014F, -369.014008F), new Vector2(774.247986F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(774.392029F, -348.29599F)); + builder.AddLine(new Vector2(774.392029F, -365.395996F)); + builder.AddLine(new Vector2(771.116028F, -365.395996F)); + builder.AddLine(new Vector2(771.116028F, -348.29599F)); + builder.AddLine(new Vector2(774.392029F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0808() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(766.400024F, -348.29599F)); + builder.AddLine(new Vector2(766.400024F, -365.395996F)); + builder.AddLine(new Vector2(763.124023F, -365.395996F)); + builder.AddLine(new Vector2(763.124023F, -361.220001F)); + builder.AddLine(new Vector2(763.736023F, -357.079987F)); + builder.AddLine(new Vector2(763.124023F, -352.903992F)); + builder.AddLine(new Vector2(763.124023F, -348.29599F)); + builder.AddLine(new Vector2(766.400024F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(755.096008F, -351.752014F)); + builder.AddCubicBezier(new Vector2(754.255981F, -352.256012F), new Vector2(753.60199F, -352.946014F), new Vector2(753.133972F, -353.821991F)); + builder.AddCubicBezier(new Vector2(752.666016F, -354.697998F), new Vector2(752.432007F, -355.712006F), new Vector2(752.432007F, -356.864014F)); + builder.AddCubicBezier(new Vector2(752.432007F, -357.992004F), new Vector2(752.666016F, -358.993988F), new Vector2(753.133972F, -359.869995F)); + builder.AddCubicBezier(new Vector2(753.60199F, -360.746002F), new Vector2(754.25F, -361.436005F), new Vector2(755.078003F, -361.940002F)); + builder.AddCubicBezier(new Vector2(755.906006F, -362.444F), new Vector2(756.859985F, -362.696014F), new Vector2(757.940002F, -362.696014F)); + builder.AddCubicBezier(new Vector2(759.02002F, -362.696014F), new Vector2(759.961975F, -362.450012F), new Vector2(760.765991F, -361.958008F)); + builder.AddCubicBezier(new Vector2(761.570007F, -361.466003F), new Vector2(762.200012F, -360.776001F), new Vector2(762.656006F, -359.888F)); + builder.AddCubicBezier(new Vector2(763.112F, -359F), new Vector2(763.340027F, -357.980011F), new Vector2(763.340027F, -356.828003F)); + builder.AddCubicBezier(new Vector2(763.340027F, -355.123993F), new Vector2(762.848022F, -353.726013F), new Vector2(761.864014F, -352.634003F)); + builder.AddCubicBezier(new Vector2(760.880005F, -351.541992F), new Vector2(759.583984F, -350.996002F), new Vector2(757.976013F, -350.996002F)); + builder.AddCubicBezier(new Vector2(756.895996F, -350.996002F), new Vector2(755.935974F, -351.247986F), new Vector2(755.096008F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(760.927979F, -348.746002F)); + builder.AddCubicBezier(new Vector2(761.960022F, -349.286011F), new Vector2(762.781982F, -350.036011F), new Vector2(763.393982F, -350.996002F)); + builder.AddCubicBezier(new Vector2(764.005981F, -351.955994F), new Vector2(764.348022F, -353.048004F), new Vector2(764.419983F, -354.272003F)); + builder.AddLine(new Vector2(764.419983F, -359.420013F)); + builder.AddCubicBezier(new Vector2(764.348022F, -360.667999F), new Vector2(764F, -361.765991F), new Vector2(763.375977F, -362.713989F)); + builder.AddCubicBezier(new Vector2(762.752014F, -363.661987F), new Vector2(761.929993F, -364.406006F), new Vector2(760.909973F, -364.946014F)); + builder.AddCubicBezier(new Vector2(759.890015F, -365.485992F), new Vector2(758.731995F, -365.756012F), new Vector2(757.435974F, -365.756012F)); + builder.AddCubicBezier(new Vector2(755.85199F, -365.756012F), new Vector2(754.429993F, -365.359985F), new Vector2(753.169983F, -364.567993F)); + builder.AddCubicBezier(new Vector2(751.909973F, -363.776001F), new Vector2(750.914001F, -362.708008F), new Vector2(750.182007F, -361.364014F)); + builder.AddCubicBezier(new Vector2(749.450012F, -360.019989F), new Vector2(749.083984F, -358.507996F), new Vector2(749.083984F, -356.828003F)); + builder.AddCubicBezier(new Vector2(749.083984F, -355.14801F), new Vector2(749.450012F, -353.635986F), new Vector2(750.182007F, -352.291992F)); + builder.AddCubicBezier(new Vector2(750.914001F, -350.947998F), new Vector2(751.909973F, -349.885986F), new Vector2(753.169983F, -349.105988F)); + builder.AddCubicBezier(new Vector2(754.429993F, -348.325989F), new Vector2(755.85199F, -347.936005F), new Vector2(757.435974F, -347.936005F)); + builder.AddCubicBezier(new Vector2(758.731995F, -347.936005F), new Vector2(759.895996F, -348.205994F), new Vector2(760.927979F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0809() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(747.895996F, -362.444F)); + builder.AddLine(new Vector2(747.895996F, -365.395996F)); + builder.AddLine(new Vector2(735.007996F, -365.395996F)); + builder.AddLine(new Vector2(735.007996F, -362.444F)); + builder.AddLine(new Vector2(747.895996F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(742.460022F, -348.29599F)); + builder.AddLine(new Vector2(742.460022F, -367.951996F)); + builder.AddCubicBezier(new Vector2(742.460022F, -369.007996F), new Vector2(742.742004F, -369.829987F), new Vector2(743.30603F, -370.417999F)); + builder.AddCubicBezier(new Vector2(743.869995F, -371.006012F), new Vector2(744.66803F, -371.299988F), new Vector2(745.700012F, -371.299988F)); + builder.AddCubicBezier(new Vector2(746.252014F, -371.299988F), new Vector2(746.719971F, -371.216003F), new Vector2(747.104004F, -371.048004F)); + builder.AddCubicBezier(new Vector2(747.487976F, -370.880005F), new Vector2(747.835999F, -370.627991F), new Vector2(748.14801F, -370.291992F)); + builder.AddLine(new Vector2(750.271973F, -372.380005F)); + builder.AddCubicBezier(new Vector2(749.671997F, -373.028015F), new Vector2(749.012024F, -373.519989F), new Vector2(748.291992F, -373.855988F)); + builder.AddCubicBezier(new Vector2(747.572021F, -374.191986F), new Vector2(746.719971F, -374.359985F), new Vector2(745.736023F, -374.359985F)); + builder.AddCubicBezier(new Vector2(744.440002F, -374.359985F), new Vector2(743.299988F, -374.084015F), new Vector2(742.315979F, -373.532013F)); + builder.AddCubicBezier(new Vector2(741.33197F, -372.980011F), new Vector2(740.564026F, -372.223999F), new Vector2(740.012024F, -371.264008F)); + builder.AddCubicBezier(new Vector2(739.460022F, -370.303986F), new Vector2(739.184021F, -369.200012F), new Vector2(739.184021F, -367.951996F)); + builder.AddLine(new Vector2(739.184021F, -348.29599F)); + builder.AddLine(new Vector2(742.460022F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0810() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(720.5F, -348.29599F)); + builder.AddLine(new Vector2(720.5F, -365.395996F)); + builder.AddLine(new Vector2(717.26001F, -365.395996F)); + builder.AddLine(new Vector2(717.26001F, -348.29599F)); + builder.AddLine(new Vector2(720.5F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(732.596008F, -348.29599F)); + builder.AddLine(new Vector2(732.596008F, -358.915985F)); + builder.AddCubicBezier(new Vector2(732.596008F, -360.09201F), new Vector2(732.307983F, -361.201996F), new Vector2(731.731995F, -362.246002F)); + builder.AddCubicBezier(new Vector2(731.156006F, -363.290009F), new Vector2(730.369995F, -364.135986F), new Vector2(729.374023F, -364.783997F)); + builder.AddCubicBezier(new Vector2(728.377991F, -365.432007F), new Vector2(727.231995F, -365.756012F), new Vector2(725.935974F, -365.756012F)); + builder.AddCubicBezier(new Vector2(724.640015F, -365.756012F), new Vector2(723.476013F, -365.462006F), new Vector2(722.44397F, -364.873993F)); + builder.AddCubicBezier(new Vector2(721.411987F, -364.286011F), new Vector2(720.607971F, -363.488007F), new Vector2(720.031982F, -362.480011F)); + builder.AddCubicBezier(new Vector2(719.455994F, -361.471985F), new Vector2(719.16803F, -360.320007F), new Vector2(719.16803F, -359.023987F)); + builder.AddLine(new Vector2(720.5F, -358.268005F)); + builder.AddCubicBezier(new Vector2(720.5F, -359.131989F), new Vector2(720.692017F, -359.899994F), new Vector2(721.075989F, -360.571991F)); + builder.AddCubicBezier(new Vector2(721.460022F, -361.243988F), new Vector2(721.987976F, -361.772003F), new Vector2(722.659973F, -362.156006F)); + builder.AddCubicBezier(new Vector2(723.33197F, -362.540009F), new Vector2(724.099976F, -362.731995F), new Vector2(724.963989F, -362.731995F)); + builder.AddCubicBezier(new Vector2(726.26001F, -362.731995F), new Vector2(727.309998F, -362.312012F), new Vector2(728.114014F, -361.471985F)); + builder.AddCubicBezier(new Vector2(728.91803F, -360.631989F), new Vector2(729.320007F, -359.563995F), new Vector2(729.320007F, -358.268005F)); + builder.AddLine(new Vector2(729.320007F, -348.29599F)); + builder.AddLine(new Vector2(732.596008F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0811() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(709.375977F, -348.925995F)); + builder.AddCubicBezier(new Vector2(710.47998F, -349.537994F), new Vector2(711.343994F, -350.40799F), new Vector2(711.968018F, -351.536011F)); + builder.AddCubicBezier(new Vector2(712.59198F, -352.664001F), new Vector2(712.903992F, -353.971985F), new Vector2(712.903992F, -355.459991F)); + builder.AddLine(new Vector2(712.903992F, -365.395996F)); + builder.AddLine(new Vector2(709.664001F, -365.395996F)); + builder.AddLine(new Vector2(709.664001F, -355.604004F)); + builder.AddCubicBezier(new Vector2(709.664001F, -354.187988F), new Vector2(709.304016F, -353.078003F), new Vector2(708.583984F, -352.273987F)); + builder.AddCubicBezier(new Vector2(707.864014F, -351.470001F), new Vector2(706.867981F, -351.067993F), new Vector2(705.596008F, -351.067993F)); + builder.AddCubicBezier(new Vector2(704.755981F, -351.067993F), new Vector2(704.023987F, -351.247986F), new Vector2(703.400024F, -351.608002F)); + builder.AddCubicBezier(new Vector2(702.776001F, -351.967987F), new Vector2(702.302002F, -352.48999F), new Vector2(701.978027F, -353.174011F)); + builder.AddCubicBezier(new Vector2(701.653992F, -353.858002F), new Vector2(701.492004F, -354.667999F), new Vector2(701.492004F, -355.604004F)); + builder.AddLine(new Vector2(701.492004F, -365.395996F)); + builder.AddLine(new Vector2(698.252014F, -365.395996F)); + builder.AddLine(new Vector2(698.252014F, -355.459991F)); + builder.AddCubicBezier(new Vector2(698.252014F, -353.971985F), new Vector2(698.564026F, -352.664001F), new Vector2(699.187988F, -351.536011F)); + builder.AddCubicBezier(new Vector2(699.812012F, -350.40799F), new Vector2(700.682007F, -349.537994F), new Vector2(701.797974F, -348.925995F)); + builder.AddCubicBezier(new Vector2(702.914001F, -348.313995F), new Vector2(704.179993F, -348.007996F), new Vector2(705.596008F, -348.007996F)); + builder.AddCubicBezier(new Vector2(707.012024F, -348.007996F), new Vector2(708.271973F, -348.313995F), new Vector2(709.375977F, -348.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0812() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(685.885986F, -349.339996F)); + builder.AddCubicBezier(new Vector2(687.026001F, -350.276001F), new Vector2(687.596008F, -351.548004F), new Vector2(687.596008F, -353.156006F)); + builder.AddCubicBezier(new Vector2(687.596008F, -354.212006F), new Vector2(687.374023F, -355.063995F), new Vector2(686.929993F, -355.712006F)); + builder.AddCubicBezier(new Vector2(686.486023F, -356.359985F), new Vector2(685.916016F, -356.876007F), new Vector2(685.219971F, -357.26001F)); + builder.AddCubicBezier(new Vector2(684.523987F, -357.644012F), new Vector2(683.791992F, -357.950012F), new Vector2(683.023987F, -358.178009F)); + builder.AddCubicBezier(new Vector2(682.255981F, -358.406006F), new Vector2(681.518005F, -358.627991F), new Vector2(680.809998F, -358.843994F)); + builder.AddCubicBezier(new Vector2(680.10199F, -359.059998F), new Vector2(679.531982F, -359.324005F), new Vector2(679.099976F, -359.635986F)); + builder.AddCubicBezier(new Vector2(678.66803F, -359.947998F), new Vector2(678.452026F, -360.391998F), new Vector2(678.452026F, -360.967987F)); + builder.AddCubicBezier(new Vector2(678.452026F, -361.519989F), new Vector2(678.697998F, -361.963989F), new Vector2(679.190002F, -362.299988F)); + builder.AddCubicBezier(new Vector2(679.682007F, -362.635986F), new Vector2(680.395996F, -362.803986F), new Vector2(681.33197F, -362.803986F)); + builder.AddCubicBezier(new Vector2(682.219971F, -362.803986F), new Vector2(683.012024F, -362.635986F), new Vector2(683.708008F, -362.299988F)); + builder.AddCubicBezier(new Vector2(684.403992F, -361.963989F), new Vector2(685.004028F, -361.484009F), new Vector2(685.507996F, -360.859985F)); + builder.AddLine(new Vector2(687.596008F, -362.947998F)); + builder.AddCubicBezier(new Vector2(686.924011F, -363.884003F), new Vector2(686.065979F, -364.585999F), new Vector2(685.021973F, -365.053986F)); + builder.AddCubicBezier(new Vector2(683.978027F, -365.522003F), new Vector2(682.783997F, -365.756012F), new Vector2(681.440002F, -365.756012F)); + builder.AddCubicBezier(new Vector2(680.16803F, -365.756012F), new Vector2(679.075989F, -365.552002F), new Vector2(678.164001F, -365.144012F)); + builder.AddCubicBezier(new Vector2(677.252014F, -364.735992F), new Vector2(676.549988F, -364.153992F), new Vector2(676.057983F, -363.39801F)); + builder.AddCubicBezier(new Vector2(675.565979F, -362.641998F), new Vector2(675.320007F, -361.747986F), new Vector2(675.320007F, -360.716003F)); + builder.AddCubicBezier(new Vector2(675.320007F, -359.68399F), new Vector2(675.541992F, -358.850006F), new Vector2(675.986023F, -358.213989F)); + builder.AddCubicBezier(new Vector2(676.429993F, -357.578003F), new Vector2(677F, -357.079987F), new Vector2(677.695984F, -356.720001F)); + builder.AddCubicBezier(new Vector2(678.392029F, -356.359985F), new Vector2(679.130005F, -356.071991F), new Vector2(679.909973F, -355.855988F)); + builder.AddCubicBezier(new Vector2(680.690002F, -355.640015F), new Vector2(681.427979F, -355.417999F), new Vector2(682.124023F, -355.190002F)); + builder.AddCubicBezier(new Vector2(682.820007F, -354.962006F), new Vector2(683.390015F, -354.674011F), new Vector2(683.833984F, -354.325989F)); + builder.AddCubicBezier(new Vector2(684.278015F, -353.977997F), new Vector2(684.5F, -353.492004F), new Vector2(684.5F, -352.868011F)); + builder.AddCubicBezier(new Vector2(684.5F, -352.243988F), new Vector2(684.223999F, -351.757996F), new Vector2(683.671997F, -351.410004F)); + builder.AddCubicBezier(new Vector2(683.119995F, -351.062012F), new Vector2(682.340027F, -350.888F), new Vector2(681.33197F, -350.888F)); + builder.AddCubicBezier(new Vector2(680.323975F, -350.888F), new Vector2(679.411987F, -351.074005F), new Vector2(678.596008F, -351.446014F)); + builder.AddCubicBezier(new Vector2(677.780029F, -351.817993F), new Vector2(677.059998F, -352.388F), new Vector2(676.435974F, -353.156006F)); + builder.AddLine(new Vector2(674.348022F, -351.067993F)); + builder.AddCubicBezier(new Vector2(674.875977F, -350.420013F), new Vector2(675.494019F, -349.862F), new Vector2(676.202026F, -349.394012F)); + builder.AddCubicBezier(new Vector2(676.909973F, -348.925995F), new Vector2(677.695984F, -348.56601F), new Vector2(678.559998F, -348.313995F)); + builder.AddCubicBezier(new Vector2(679.424011F, -348.062012F), new Vector2(680.335999F, -347.936005F), new Vector2(681.296021F, -347.936005F)); + builder.AddCubicBezier(new Vector2(683.216003F, -347.936005F), new Vector2(684.745972F, -348.403992F), new Vector2(685.885986F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0813() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(671.036011F, -364.31601F)); + builder.AddLine(new Vector2(673.411987F, -368.779999F)); + builder.AddCubicBezier(new Vector2(673.723999F, -369.355988F), new Vector2(673.934021F, -369.829987F), new Vector2(674.041992F, -370.201996F)); + builder.AddCubicBezier(new Vector2(674.150024F, -370.574005F), new Vector2(674.203979F, -370.903992F), new Vector2(674.203979F, -371.191986F)); + builder.AddCubicBezier(new Vector2(674.203979F, -371.864014F), new Vector2(673.963989F, -372.440002F), new Vector2(673.484009F, -372.920013F)); + builder.AddCubicBezier(new Vector2(673.004028F, -373.399994F), new Vector2(672.452026F, -373.640015F), new Vector2(671.828003F, -373.640015F)); + builder.AddCubicBezier(new Vector2(671.156006F, -373.640015F), new Vector2(670.585999F, -373.399994F), new Vector2(670.117981F, -372.920013F)); + builder.AddCubicBezier(new Vector2(669.650024F, -372.440002F), new Vector2(669.416016F, -371.864014F), new Vector2(669.416016F, -371.191986F)); + builder.AddCubicBezier(new Vector2(669.416016F, -370.544006F), new Vector2(669.625977F, -370.015991F), new Vector2(670.046021F, -369.608002F)); + builder.AddCubicBezier(new Vector2(670.466003F, -369.200012F), new Vector2(670.927979F, -368.996002F), new Vector2(671.432007F, -368.996002F)); + builder.AddCubicBezier(new Vector2(671.695984F, -368.996002F), new Vector2(671.91803F, -369.079987F), new Vector2(672.098022F, -369.247986F)); + builder.AddCubicBezier(new Vector2(672.278015F, -369.415985F), new Vector2(672.427979F, -369.631989F), new Vector2(672.547974F, -369.895996F)); + builder.AddLine(new Vector2(671.395996F, -369.608002F)); + builder.AddLine(new Vector2(669.164001F, -365.324005F)); + builder.AddLine(new Vector2(671.036011F, -364.31601F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0814() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(665.635986F, -362.444F)); + builder.AddLine(new Vector2(665.635986F, -365.395996F)); + builder.AddLine(new Vector2(653.971985F, -365.395996F)); + builder.AddLine(new Vector2(653.971985F, -362.444F)); + builder.AddLine(new Vector2(665.635986F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(661.424011F, -348.29599F)); + builder.AddLine(new Vector2(661.424011F, -372.559998F)); + builder.AddLine(new Vector2(658.184021F, -372.559998F)); + builder.AddLine(new Vector2(658.184021F, -348.29599F)); + builder.AddLine(new Vector2(661.424011F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0815() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(639.283997F, -348.29599F)); + builder.AddLine(new Vector2(639.283997F, -365.395996F)); + builder.AddLine(new Vector2(636.044006F, -365.395996F)); + builder.AddLine(new Vector2(636.044006F, -348.29599F)); + builder.AddLine(new Vector2(639.283997F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(651.380005F, -348.29599F)); + builder.AddLine(new Vector2(651.380005F, -358.915985F)); + builder.AddCubicBezier(new Vector2(651.380005F, -360.09201F), new Vector2(651.09198F, -361.201996F), new Vector2(650.515991F, -362.246002F)); + builder.AddCubicBezier(new Vector2(649.940002F, -363.290009F), new Vector2(649.153992F, -364.135986F), new Vector2(648.15802F, -364.783997F)); + builder.AddCubicBezier(new Vector2(647.161987F, -365.432007F), new Vector2(646.015991F, -365.756012F), new Vector2(644.719971F, -365.756012F)); + builder.AddCubicBezier(new Vector2(643.424011F, -365.756012F), new Vector2(642.26001F, -365.462006F), new Vector2(641.228027F, -364.873993F)); + builder.AddCubicBezier(new Vector2(640.195984F, -364.286011F), new Vector2(639.392029F, -363.488007F), new Vector2(638.815979F, -362.480011F)); + builder.AddCubicBezier(new Vector2(638.23999F, -361.471985F), new Vector2(637.952026F, -360.320007F), new Vector2(637.952026F, -359.023987F)); + builder.AddLine(new Vector2(639.283997F, -358.268005F)); + builder.AddCubicBezier(new Vector2(639.283997F, -359.131989F), new Vector2(639.476013F, -359.899994F), new Vector2(639.859985F, -360.571991F)); + builder.AddCubicBezier(new Vector2(640.244019F, -361.243988F), new Vector2(640.771973F, -361.772003F), new Vector2(641.44397F, -362.156006F)); + builder.AddCubicBezier(new Vector2(642.116028F, -362.540009F), new Vector2(642.883972F, -362.731995F), new Vector2(643.747986F, -362.731995F)); + builder.AddCubicBezier(new Vector2(645.044006F, -362.731995F), new Vector2(646.093994F, -362.312012F), new Vector2(646.89801F, -361.471985F)); + builder.AddCubicBezier(new Vector2(647.702026F, -360.631989F), new Vector2(648.104004F, -359.563995F), new Vector2(648.104004F, -358.268005F)); + builder.AddLine(new Vector2(648.104004F, -348.29599F)); + builder.AddLine(new Vector2(651.380005F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0816() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(628.447998F, -348.691986F)); + builder.AddCubicBezier(new Vector2(629.624023F, -349.196014F), new Vector2(630.632019F, -349.928009F), new Vector2(631.471985F, -350.888F)); + builder.AddLine(new Vector2(629.383972F, -353.011993F)); + builder.AddCubicBezier(new Vector2(628.807983F, -352.339996F), new Vector2(628.117981F, -351.835999F), new Vector2(627.314026F, -351.5F)); + builder.AddCubicBezier(new Vector2(626.51001F, -351.164001F), new Vector2(625.627991F, -350.996002F), new Vector2(624.66803F, -350.996002F)); + builder.AddCubicBezier(new Vector2(623.515991F, -350.996002F), new Vector2(622.495972F, -351.242004F), new Vector2(621.607971F, -351.734009F)); + builder.AddCubicBezier(new Vector2(620.719971F, -352.226013F), new Vector2(620.036011F, -352.921997F), new Vector2(619.55603F, -353.821991F)); + builder.AddCubicBezier(new Vector2(619.075989F, -354.721985F), new Vector2(618.835999F, -355.772003F), new Vector2(618.835999F, -356.971985F)); + builder.AddCubicBezier(new Vector2(618.835999F, -358.14801F), new Vector2(619.064026F, -359.167999F), new Vector2(619.52002F, -360.032013F)); + builder.AddCubicBezier(new Vector2(619.976013F, -360.895996F), new Vector2(620.624023F, -361.567993F), new Vector2(621.463989F, -362.048004F)); + builder.AddCubicBezier(new Vector2(622.304016F, -362.528015F), new Vector2(623.276001F, -362.768005F), new Vector2(624.380005F, -362.768005F)); + builder.AddCubicBezier(new Vector2(625.435974F, -362.768005F), new Vector2(626.335999F, -362.54599F), new Vector2(627.080017F, -362.10199F)); + builder.AddCubicBezier(new Vector2(627.823975F, -361.65799F), new Vector2(628.400024F, -361.033997F), new Vector2(628.807983F, -360.230011F)); + builder.AddCubicBezier(new Vector2(629.216003F, -359.425995F), new Vector2(629.419983F, -358.447998F), new Vector2(629.419983F, -357.29599F)); + builder.AddLine(new Vector2(630.607971F, -358.339996F)); + builder.AddLine(new Vector2(617.900024F, -358.339996F)); + builder.AddLine(new Vector2(617.900024F, -355.640015F)); + builder.AddLine(new Vector2(632.335999F, -355.640015F)); + builder.AddCubicBezier(new Vector2(632.40802F, -355.976013F), new Vector2(632.455994F, -356.282013F), new Vector2(632.47998F, -356.558014F)); + builder.AddCubicBezier(new Vector2(632.504028F, -356.834015F), new Vector2(632.515991F, -357.09201F), new Vector2(632.515991F, -357.332001F)); + builder.AddCubicBezier(new Vector2(632.515991F, -358.963989F), new Vector2(632.174011F, -360.415985F), new Vector2(631.48999F, -361.687988F)); + builder.AddCubicBezier(new Vector2(630.80603F, -362.959991F), new Vector2(629.85199F, -363.955994F), new Vector2(628.627991F, -364.675995F)); + builder.AddCubicBezier(new Vector2(627.403992F, -365.395996F), new Vector2(626.012024F, -365.756012F), new Vector2(624.452026F, -365.756012F)); + builder.AddCubicBezier(new Vector2(622.796021F, -365.756012F), new Vector2(621.302002F, -365.365997F), new Vector2(619.969971F, -364.585999F)); + builder.AddCubicBezier(new Vector2(618.638F, -363.806F), new Vector2(617.58197F, -362.743988F), new Vector2(616.802002F, -361.399994F)); + builder.AddCubicBezier(new Vector2(616.021973F, -360.056F), new Vector2(615.632019F, -358.544006F), new Vector2(615.632019F, -356.864014F)); + builder.AddCubicBezier(new Vector2(615.632019F, -355.160004F), new Vector2(616.028015F, -353.635986F), new Vector2(616.820007F, -352.291992F)); + builder.AddCubicBezier(new Vector2(617.612F, -350.947998F), new Vector2(618.685974F, -349.885986F), new Vector2(620.041992F, -349.105988F)); + builder.AddCubicBezier(new Vector2(621.39801F, -348.325989F), new Vector2(622.940002F, -347.936005F), new Vector2(624.66803F, -347.936005F)); + builder.AddCubicBezier(new Vector2(626.012024F, -347.936005F), new Vector2(627.271973F, -348.187988F), new Vector2(628.447998F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0817() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(612.356018F, -348.29599F)); + builder.AddLine(new Vector2(612.356018F, -359.276001F)); + builder.AddCubicBezier(new Vector2(612.356018F, -360.619995F), new Vector2(612.062012F, -361.772003F), new Vector2(611.473999F, -362.731995F)); + builder.AddCubicBezier(new Vector2(610.885986F, -363.691986F), new Vector2(610.099976F, -364.436005F), new Vector2(609.116028F, -364.963989F)); + builder.AddCubicBezier(new Vector2(608.132019F, -365.492004F), new Vector2(607.015991F, -365.756012F), new Vector2(605.768005F, -365.756012F)); + builder.AddCubicBezier(new Vector2(604.567993F, -365.756012F), new Vector2(603.463989F, -365.485992F), new Vector2(602.455994F, -364.946014F)); + builder.AddCubicBezier(new Vector2(601.447998F, -364.406006F), new Vector2(600.625977F, -363.661987F), new Vector2(599.98999F, -362.713989F)); + builder.AddCubicBezier(new Vector2(599.354004F, -361.765991F), new Vector2(599F, -360.631989F), new Vector2(598.927979F, -359.312012F)); + builder.AddLine(new Vector2(600.763977F, -358.627991F)); + builder.AddCubicBezier(new Vector2(600.763977F, -359.492004F), new Vector2(600.955994F, -360.223999F), new Vector2(601.340027F, -360.824005F)); + builder.AddCubicBezier(new Vector2(601.723999F, -361.424011F), new Vector2(602.234009F, -361.891998F), new Vector2(602.869995F, -362.227997F)); + builder.AddCubicBezier(new Vector2(603.505981F, -362.563995F), new Vector2(604.219971F, -362.731995F), new Vector2(605.012024F, -362.731995F)); + builder.AddCubicBezier(new Vector2(606.164001F, -362.731995F), new Vector2(607.130005F, -362.365997F), new Vector2(607.909973F, -361.634003F)); + builder.AddCubicBezier(new Vector2(608.690002F, -360.902008F), new Vector2(609.080017F, -359.899994F), new Vector2(609.080017F, -358.627991F)); + builder.AddLine(new Vector2(609.080017F, -348.29599F)); + builder.AddLine(new Vector2(612.356018F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(600.763977F, -348.29599F)); + builder.AddLine(new Vector2(600.763977F, -359.312012F)); + builder.AddCubicBezier(new Vector2(600.763977F, -360.631989F), new Vector2(600.481995F, -361.772003F), new Vector2(599.91803F, -362.731995F)); + builder.AddCubicBezier(new Vector2(599.354004F, -363.691986F), new Vector2(598.585999F, -364.436005F), new Vector2(597.614014F, -364.963989F)); + builder.AddCubicBezier(new Vector2(596.642029F, -365.492004F), new Vector2(595.55603F, -365.756012F), new Vector2(594.356018F, -365.756012F)); + builder.AddCubicBezier(new Vector2(593.132019F, -365.756012F), new Vector2(592.028015F, -365.485992F), new Vector2(591.044006F, -364.946014F)); + builder.AddCubicBezier(new Vector2(590.059998F, -364.406006F), new Vector2(589.286011F, -363.656006F), new Vector2(588.721985F, -362.696014F)); + builder.AddCubicBezier(new Vector2(588.15802F, -361.735992F), new Vector2(587.875977F, -360.608002F), new Vector2(587.875977F, -359.312012F)); + builder.AddLine(new Vector2(589.208008F, -358.627991F)); + builder.AddCubicBezier(new Vector2(589.208008F, -359.492004F), new Vector2(589.400024F, -360.223999F), new Vector2(589.783997F, -360.824005F)); + builder.AddCubicBezier(new Vector2(590.16803F, -361.424011F), new Vector2(590.671997F, -361.891998F), new Vector2(591.296021F, -362.227997F)); + builder.AddCubicBezier(new Vector2(591.919983F, -362.563995F), new Vector2(592.627991F, -362.731995F), new Vector2(593.419983F, -362.731995F)); + builder.AddCubicBezier(new Vector2(594.596008F, -362.731995F), new Vector2(595.573975F, -362.365997F), new Vector2(596.354004F, -361.634003F)); + builder.AddCubicBezier(new Vector2(597.133972F, -360.902008F), new Vector2(597.523987F, -359.899994F), new Vector2(597.523987F, -358.627991F)); + builder.AddLine(new Vector2(597.523987F, -348.29599F)); + builder.AddLine(new Vector2(600.763977F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(589.208008F, -348.29599F)); + builder.AddLine(new Vector2(589.208008F, -365.395996F)); + builder.AddLine(new Vector2(585.968018F, -365.395996F)); + builder.AddLine(new Vector2(585.968018F, -348.29599F)); + builder.AddLine(new Vector2(589.208008F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0818() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(569.47998F, -348.29599F)); + builder.AddLine(new Vector2(569.47998F, -365.395996F)); + builder.AddLine(new Vector2(566.23999F, -365.395996F)); + builder.AddLine(new Vector2(566.23999F, -348.29599F)); + builder.AddLine(new Vector2(569.47998F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(581.575989F, -348.29599F)); + builder.AddLine(new Vector2(581.575989F, -358.915985F)); + builder.AddCubicBezier(new Vector2(581.575989F, -360.09201F), new Vector2(581.288025F, -361.201996F), new Vector2(580.711975F, -362.246002F)); + builder.AddCubicBezier(new Vector2(580.135986F, -363.290009F), new Vector2(579.349976F, -364.135986F), new Vector2(578.354004F, -364.783997F)); + builder.AddCubicBezier(new Vector2(577.357971F, -365.432007F), new Vector2(576.211975F, -365.756012F), new Vector2(574.916016F, -365.756012F)); + builder.AddCubicBezier(new Vector2(573.619995F, -365.756012F), new Vector2(572.455994F, -365.462006F), new Vector2(571.424011F, -364.873993F)); + builder.AddCubicBezier(new Vector2(570.392029F, -364.286011F), new Vector2(569.588013F, -363.488007F), new Vector2(569.012024F, -362.480011F)); + builder.AddCubicBezier(new Vector2(568.435974F, -361.471985F), new Vector2(568.14801F, -360.320007F), new Vector2(568.14801F, -359.023987F)); + builder.AddLine(new Vector2(569.47998F, -358.268005F)); + builder.AddCubicBezier(new Vector2(569.47998F, -359.131989F), new Vector2(569.671997F, -359.899994F), new Vector2(570.05603F, -360.571991F)); + builder.AddCubicBezier(new Vector2(570.440002F, -361.243988F), new Vector2(570.968018F, -361.772003F), new Vector2(571.640015F, -362.156006F)); + builder.AddCubicBezier(new Vector2(572.312012F, -362.540009F), new Vector2(573.080017F, -362.731995F), new Vector2(573.94397F, -362.731995F)); + builder.AddCubicBezier(new Vector2(575.23999F, -362.731995F), new Vector2(576.289978F, -362.312012F), new Vector2(577.093994F, -361.471985F)); + builder.AddCubicBezier(new Vector2(577.89801F, -360.631989F), new Vector2(578.299988F, -359.563995F), new Vector2(578.299988F, -358.268005F)); + builder.AddLine(new Vector2(578.299988F, -348.29599F)); + builder.AddLine(new Vector2(581.575989F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0819() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(556.124023F, -361.544006F)); + builder.AddCubicBezier(new Vector2(556.892029F, -362.312012F), new Vector2(557.875977F, -362.696014F), new Vector2(559.075989F, -362.696014F)); + builder.AddCubicBezier(new Vector2(559.651978F, -362.696014F), new Vector2(560.156006F, -362.612F), new Vector2(560.588013F, -362.444F)); + builder.AddCubicBezier(new Vector2(561.02002F, -362.276001F), new Vector2(561.416016F, -362F), new Vector2(561.776001F, -361.615997F)); + builder.AddLine(new Vector2(563.900024F, -363.812012F)); + builder.AddCubicBezier(new Vector2(563.299988F, -364.507996F), new Vector2(562.651978F, -365.006012F), new Vector2(561.955994F, -365.306F)); + builder.AddCubicBezier(new Vector2(561.26001F, -365.605988F), new Vector2(560.47998F, -365.756012F), new Vector2(559.616028F, -365.756012F)); + builder.AddCubicBezier(new Vector2(557.719971F, -365.756012F), new Vector2(556.268005F, -365.108002F), new Vector2(555.26001F, -363.812012F)); + builder.AddCubicBezier(new Vector2(554.252014F, -362.515991F), new Vector2(553.747986F, -360.776001F), new Vector2(553.747986F, -358.59201F)); + builder.AddLine(new Vector2(554.971985F, -358.015991F)); + builder.AddCubicBezier(new Vector2(554.971985F, -359.600006F), new Vector2(555.356018F, -360.776001F), new Vector2(556.124023F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(554.971985F, -348.29599F)); + builder.AddLine(new Vector2(554.971985F, -365.395996F)); + builder.AddLine(new Vector2(551.731995F, -365.395996F)); + builder.AddLine(new Vector2(551.731995F, -348.29599F)); + builder.AddLine(new Vector2(554.971985F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0820() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(544.135986F, -348.691986F)); + builder.AddCubicBezier(new Vector2(545.312012F, -349.196014F), new Vector2(546.320007F, -349.928009F), new Vector2(547.159973F, -350.888F)); + builder.AddLine(new Vector2(545.072021F, -353.011993F)); + builder.AddCubicBezier(new Vector2(544.495972F, -352.339996F), new Vector2(543.80603F, -351.835999F), new Vector2(543.002014F, -351.5F)); + builder.AddCubicBezier(new Vector2(542.197998F, -351.164001F), new Vector2(541.315979F, -350.996002F), new Vector2(540.356018F, -350.996002F)); + builder.AddCubicBezier(new Vector2(539.203979F, -350.996002F), new Vector2(538.184021F, -351.242004F), new Vector2(537.296021F, -351.734009F)); + builder.AddCubicBezier(new Vector2(536.40802F, -352.226013F), new Vector2(535.723999F, -352.921997F), new Vector2(535.244019F, -353.821991F)); + builder.AddCubicBezier(new Vector2(534.763977F, -354.721985F), new Vector2(534.523987F, -355.772003F), new Vector2(534.523987F, -356.971985F)); + builder.AddCubicBezier(new Vector2(534.523987F, -358.14801F), new Vector2(534.752014F, -359.167999F), new Vector2(535.208008F, -360.032013F)); + builder.AddCubicBezier(new Vector2(535.664001F, -360.895996F), new Vector2(536.312012F, -361.567993F), new Vector2(537.151978F, -362.048004F)); + builder.AddCubicBezier(new Vector2(537.992004F, -362.528015F), new Vector2(538.963989F, -362.768005F), new Vector2(540.067993F, -362.768005F)); + builder.AddCubicBezier(new Vector2(541.124023F, -362.768005F), new Vector2(542.023987F, -362.54599F), new Vector2(542.768005F, -362.10199F)); + builder.AddCubicBezier(new Vector2(543.512024F, -361.65799F), new Vector2(544.088013F, -361.033997F), new Vector2(544.495972F, -360.230011F)); + builder.AddCubicBezier(new Vector2(544.903992F, -359.425995F), new Vector2(545.107971F, -358.447998F), new Vector2(545.107971F, -357.29599F)); + builder.AddLine(new Vector2(546.296021F, -358.339996F)); + builder.AddLine(new Vector2(533.588013F, -358.339996F)); + builder.AddLine(new Vector2(533.588013F, -355.640015F)); + builder.AddLine(new Vector2(548.023987F, -355.640015F)); + builder.AddCubicBezier(new Vector2(548.096008F, -355.976013F), new Vector2(548.143982F, -356.282013F), new Vector2(548.16803F, -356.558014F)); + builder.AddCubicBezier(new Vector2(548.192017F, -356.834015F), new Vector2(548.203979F, -357.09201F), new Vector2(548.203979F, -357.332001F)); + builder.AddCubicBezier(new Vector2(548.203979F, -358.963989F), new Vector2(547.862F, -360.415985F), new Vector2(547.177979F, -361.687988F)); + builder.AddCubicBezier(new Vector2(546.494019F, -362.959991F), new Vector2(545.539978F, -363.955994F), new Vector2(544.315979F, -364.675995F)); + builder.AddCubicBezier(new Vector2(543.09198F, -365.395996F), new Vector2(541.700012F, -365.756012F), new Vector2(540.140015F, -365.756012F)); + builder.AddCubicBezier(new Vector2(538.484009F, -365.756012F), new Vector2(536.98999F, -365.365997F), new Vector2(535.65802F, -364.585999F)); + builder.AddCubicBezier(new Vector2(534.325989F, -363.806F), new Vector2(533.27002F, -362.743988F), new Vector2(532.48999F, -361.399994F)); + builder.AddCubicBezier(new Vector2(531.710022F, -360.056F), new Vector2(531.320007F, -358.544006F), new Vector2(531.320007F, -356.864014F)); + builder.AddCubicBezier(new Vector2(531.320007F, -355.160004F), new Vector2(531.716003F, -353.635986F), new Vector2(532.507996F, -352.291992F)); + builder.AddCubicBezier(new Vector2(533.299988F, -350.947998F), new Vector2(534.374023F, -349.885986F), new Vector2(535.72998F, -349.105988F)); + builder.AddCubicBezier(new Vector2(537.085999F, -348.325989F), new Vector2(538.627991F, -347.936005F), new Vector2(540.356018F, -347.936005F)); + builder.AddCubicBezier(new Vector2(541.700012F, -347.936005F), new Vector2(542.960022F, -348.187988F), new Vector2(544.135986F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0821() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(522.463989F, -348.29599F)); + builder.AddLine(new Vector2(530.312012F, -365.395996F)); + builder.AddLine(new Vector2(526.856018F, -365.395996F)); + builder.AddLine(new Vector2(520.52002F, -350.959991F)); + builder.AddLine(new Vector2(522.607971F, -350.959991F)); + builder.AddLine(new Vector2(516.307983F, -365.395996F)); + builder.AddLine(new Vector2(512.708008F, -365.395996F)); + builder.AddLine(new Vector2(520.55603F, -348.29599F)); + builder.AddLine(new Vector2(522.463989F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0822() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(499.928009F, -351.824005F)); + builder.AddCubicBezier(new Vector2(499.088013F, -352.328003F), new Vector2(498.428009F, -353.018005F), new Vector2(497.947998F, -353.894012F)); + builder.AddCubicBezier(new Vector2(497.467987F, -354.769989F), new Vector2(497.227997F, -355.772003F), new Vector2(497.227997F, -356.899994F)); + builder.AddCubicBezier(new Vector2(497.227997F, -358.003998F), new Vector2(497.467987F, -358.988007F), new Vector2(497.947998F, -359.85199F)); + builder.AddCubicBezier(new Vector2(498.428009F, -360.716003F), new Vector2(499.088013F, -361.394012F), new Vector2(499.928009F, -361.885986F)); + builder.AddCubicBezier(new Vector2(500.768005F, -362.377991F), new Vector2(501.716003F, -362.623993F), new Vector2(502.772003F, -362.623993F)); + builder.AddCubicBezier(new Vector2(503.876007F, -362.623993F), new Vector2(504.84201F, -362.377991F), new Vector2(505.670013F, -361.885986F)); + builder.AddCubicBezier(new Vector2(506.497986F, -361.394012F), new Vector2(507.15799F, -360.716003F), new Vector2(507.649994F, -359.85199F)); + builder.AddCubicBezier(new Vector2(508.141998F, -358.988007F), new Vector2(508.388F, -358.003998F), new Vector2(508.388F, -356.899994F)); + builder.AddCubicBezier(new Vector2(508.388F, -355.772003F), new Vector2(508.14801F, -354.769989F), new Vector2(507.667999F, -353.894012F)); + builder.AddCubicBezier(new Vector2(507.187988F, -353.018005F), new Vector2(506.528015F, -352.328003F), new Vector2(505.687988F, -351.824005F)); + builder.AddCubicBezier(new Vector2(504.847992F, -351.320007F), new Vector2(503.876007F, -351.067993F), new Vector2(502.772003F, -351.067993F)); + builder.AddCubicBezier(new Vector2(501.716003F, -351.067993F), new Vector2(500.768005F, -351.320007F), new Vector2(499.928009F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(507.325989F, -349.123993F)); + builder.AddCubicBezier(new Vector2(508.682007F, -349.915985F), new Vector2(509.756012F, -350.98999F), new Vector2(510.548004F, -352.346008F)); + builder.AddCubicBezier(new Vector2(511.339996F, -353.701996F), new Vector2(511.735992F, -355.220001F), new Vector2(511.735992F, -356.899994F)); + builder.AddCubicBezier(new Vector2(511.735992F, -358.556F), new Vector2(511.339996F, -360.056F), new Vector2(510.548004F, -361.399994F)); + builder.AddCubicBezier(new Vector2(509.756012F, -362.743988F), new Vector2(508.682007F, -363.806F), new Vector2(507.325989F, -364.585999F)); + builder.AddCubicBezier(new Vector2(505.970001F, -365.365997F), new Vector2(504.451996F, -365.756012F), new Vector2(502.772003F, -365.756012F)); + builder.AddCubicBezier(new Vector2(501.115997F, -365.756012F), new Vector2(499.615997F, -365.359985F), new Vector2(498.272003F, -364.567993F)); + builder.AddCubicBezier(new Vector2(496.928009F, -363.776001F), new Vector2(495.859985F, -362.713989F), new Vector2(495.067993F, -361.381989F)); + builder.AddCubicBezier(new Vector2(494.276001F, -360.049988F), new Vector2(493.880005F, -358.556F), new Vector2(493.880005F, -356.899994F)); + builder.AddCubicBezier(new Vector2(493.880005F, -355.220001F), new Vector2(494.276001F, -353.701996F), new Vector2(495.067993F, -352.346008F)); + builder.AddCubicBezier(new Vector2(495.859985F, -350.98999F), new Vector2(496.928009F, -349.915985F), new Vector2(498.272003F, -349.123993F)); + builder.AddCubicBezier(new Vector2(499.615997F, -348.332001F), new Vector2(501.115997F, -347.936005F), new Vector2(502.772003F, -347.936005F)); + builder.AddCubicBezier(new Vector2(504.451996F, -347.936005F), new Vector2(505.970001F, -348.332001F), new Vector2(507.325989F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0823() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(479.06601F, -352.346008F)); + builder.AddCubicBezier(new Vector2(478.238007F, -352.813995F), new Vector2(477.589996F, -353.467987F), new Vector2(477.122009F, -354.308014F)); + builder.AddCubicBezier(new Vector2(476.653992F, -355.14801F), new Vector2(476.420013F, -356.108002F), new Vector2(476.420013F, -357.187988F)); + builder.AddCubicBezier(new Vector2(476.420013F, -358.268005F), new Vector2(476.653992F, -359.221985F), new Vector2(477.122009F, -360.049988F)); + builder.AddCubicBezier(new Vector2(477.589996F, -360.877991F), new Vector2(478.231995F, -361.526001F), new Vector2(479.048004F, -361.993988F)); + builder.AddCubicBezier(new Vector2(479.864014F, -362.462006F), new Vector2(480.812012F, -362.696014F), new Vector2(481.891998F, -362.696014F)); + builder.AddCubicBezier(new Vector2(482.947998F, -362.696014F), new Vector2(483.877991F, -362.462006F), new Vector2(484.682007F, -361.993988F)); + builder.AddCubicBezier(new Vector2(485.485992F, -361.526001F), new Vector2(486.109985F, -360.877991F), new Vector2(486.553986F, -360.049988F)); + builder.AddCubicBezier(new Vector2(486.997986F, -359.221985F), new Vector2(487.220001F, -358.256012F), new Vector2(487.220001F, -357.152008F)); + builder.AddCubicBezier(new Vector2(487.220001F, -356.048004F), new Vector2(486.997986F, -355.082001F), new Vector2(486.553986F, -354.253998F)); + builder.AddCubicBezier(new Vector2(486.109985F, -353.425995F), new Vector2(485.492004F, -352.783997F), new Vector2(484.700012F, -352.328003F)); + builder.AddCubicBezier(new Vector2(483.90799F, -351.872009F), new Vector2(482.971985F, -351.644012F), new Vector2(481.891998F, -351.644012F)); + builder.AddCubicBezier(new Vector2(480.835999F, -351.644012F), new Vector2(479.894012F, -351.877991F), new Vector2(479.06601F, -352.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(484.808014F, -349.376007F)); + builder.AddCubicBezier(new Vector2(485.839996F, -349.903992F), new Vector2(486.661987F, -350.641998F), new Vector2(487.273987F, -351.589996F)); + builder.AddCubicBezier(new Vector2(487.885986F, -352.537994F), new Vector2(488.227997F, -353.635986F), new Vector2(488.299988F, -354.884003F)); + builder.AddLine(new Vector2(488.299988F, -359.420013F)); + builder.AddCubicBezier(new Vector2(488.227997F, -360.691986F), new Vector2(487.891998F, -361.802002F), new Vector2(487.291992F, -362.75F)); + builder.AddCubicBezier(new Vector2(486.691986F, -363.697998F), new Vector2(485.869995F, -364.436005F), new Vector2(484.825989F, -364.963989F)); + builder.AddCubicBezier(new Vector2(483.782013F, -365.492004F), new Vector2(482.588013F, -365.756012F), new Vector2(481.243988F, -365.756012F)); + builder.AddCubicBezier(new Vector2(479.708008F, -365.756012F), new Vector2(478.31601F, -365.377991F), new Vector2(477.067993F, -364.622009F)); + builder.AddCubicBezier(new Vector2(475.820007F, -363.865997F), new Vector2(474.84201F, -362.846008F), new Vector2(474.134003F, -361.562012F)); + builder.AddCubicBezier(new Vector2(473.425995F, -360.278015F), new Vector2(473.071991F, -358.820007F), new Vector2(473.071991F, -357.187988F)); + builder.AddCubicBezier(new Vector2(473.071991F, -355.556F), new Vector2(473.432007F, -354.085999F), new Vector2(474.152008F, -352.778015F)); + builder.AddCubicBezier(new Vector2(474.872009F, -351.470001F), new Vector2(475.850006F, -350.444F), new Vector2(477.085999F, -349.700012F)); + builder.AddCubicBezier(new Vector2(478.321991F, -348.955994F), new Vector2(479.720001F, -348.584015F), new Vector2(481.279999F, -348.584015F)); + builder.AddCubicBezier(new Vector2(482.600006F, -348.584015F), new Vector2(483.776001F, -348.847992F), new Vector2(484.808014F, -349.376007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(485.977997F, -341.798004F)); + builder.AddCubicBezier(new Vector2(487.334015F, -342.481995F), new Vector2(488.390015F, -343.441986F), new Vector2(489.145996F, -344.678009F)); + builder.AddCubicBezier(new Vector2(489.902008F, -345.914001F), new Vector2(490.279999F, -347.347992F), new Vector2(490.279999F, -348.980011F)); + builder.AddLine(new Vector2(490.279999F, -365.395996F)); + builder.AddLine(new Vector2(487.040009F, -365.395996F)); + builder.AddLine(new Vector2(487.040009F, -360.895996F)); + builder.AddLine(new Vector2(487.615997F, -357.079987F)); + builder.AddLine(new Vector2(487.040009F, -353.227997F)); + builder.AddLine(new Vector2(487.040009F, -348.980011F)); + builder.AddCubicBezier(new Vector2(487.040009F, -347.420013F), new Vector2(486.523987F, -346.178009F), new Vector2(485.492004F, -345.253998F)); + builder.AddCubicBezier(new Vector2(484.459991F, -344.329987F), new Vector2(483.079987F, -343.868011F), new Vector2(481.35199F, -343.868011F)); + builder.AddCubicBezier(new Vector2(480.032013F, -343.868011F), new Vector2(478.891998F, -344.10199F), new Vector2(477.932007F, -344.570007F)); + builder.AddCubicBezier(new Vector2(476.971985F, -345.037994F), new Vector2(476.144012F, -345.716003F), new Vector2(475.447998F, -346.604004F)); + builder.AddLine(new Vector2(473.324005F, -344.480011F)); + builder.AddCubicBezier(new Vector2(474.164001F, -343.303986F), new Vector2(475.256012F, -342.391998F), new Vector2(476.600006F, -341.743988F)); + builder.AddCubicBezier(new Vector2(477.944F, -341.096008F), new Vector2(479.503998F, -340.772003F), new Vector2(481.279999F, -340.772003F)); + builder.AddCubicBezier(new Vector2(483.056F, -340.772003F), new Vector2(484.622009F, -341.114014F), new Vector2(485.977997F, -341.798004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0824() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(451.328003F, -351.824005F)); + builder.AddCubicBezier(new Vector2(450.488007F, -352.328003F), new Vector2(449.828003F, -353.018005F), new Vector2(449.347992F, -353.894012F)); + builder.AddCubicBezier(new Vector2(448.868011F, -354.769989F), new Vector2(448.627991F, -355.772003F), new Vector2(448.627991F, -356.899994F)); + builder.AddCubicBezier(new Vector2(448.627991F, -358.003998F), new Vector2(448.868011F, -358.988007F), new Vector2(449.347992F, -359.85199F)); + builder.AddCubicBezier(new Vector2(449.828003F, -360.716003F), new Vector2(450.488007F, -361.394012F), new Vector2(451.328003F, -361.885986F)); + builder.AddCubicBezier(new Vector2(452.167999F, -362.377991F), new Vector2(453.115997F, -362.623993F), new Vector2(454.171997F, -362.623993F)); + builder.AddCubicBezier(new Vector2(455.276001F, -362.623993F), new Vector2(456.242004F, -362.377991F), new Vector2(457.070007F, -361.885986F)); + builder.AddCubicBezier(new Vector2(457.89801F, -361.394012F), new Vector2(458.558014F, -360.716003F), new Vector2(459.049988F, -359.85199F)); + builder.AddCubicBezier(new Vector2(459.541992F, -358.988007F), new Vector2(459.787994F, -358.003998F), new Vector2(459.787994F, -356.899994F)); + builder.AddCubicBezier(new Vector2(459.787994F, -355.772003F), new Vector2(459.548004F, -354.769989F), new Vector2(459.067993F, -353.894012F)); + builder.AddCubicBezier(new Vector2(458.588013F, -353.018005F), new Vector2(457.928009F, -352.328003F), new Vector2(457.088013F, -351.824005F)); + builder.AddCubicBezier(new Vector2(456.247986F, -351.320007F), new Vector2(455.276001F, -351.067993F), new Vector2(454.171997F, -351.067993F)); + builder.AddCubicBezier(new Vector2(453.115997F, -351.067993F), new Vector2(452.167999F, -351.320007F), new Vector2(451.328003F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(458.726013F, -349.123993F)); + builder.AddCubicBezier(new Vector2(460.082001F, -349.915985F), new Vector2(461.156006F, -350.98999F), new Vector2(461.947998F, -352.346008F)); + builder.AddCubicBezier(new Vector2(462.73999F, -353.701996F), new Vector2(463.135986F, -355.220001F), new Vector2(463.135986F, -356.899994F)); + builder.AddCubicBezier(new Vector2(463.135986F, -358.556F), new Vector2(462.73999F, -360.056F), new Vector2(461.947998F, -361.399994F)); + builder.AddCubicBezier(new Vector2(461.156006F, -362.743988F), new Vector2(460.082001F, -363.806F), new Vector2(458.726013F, -364.585999F)); + builder.AddCubicBezier(new Vector2(457.369995F, -365.365997F), new Vector2(455.85199F, -365.756012F), new Vector2(454.171997F, -365.756012F)); + builder.AddCubicBezier(new Vector2(452.515991F, -365.756012F), new Vector2(451.015991F, -365.359985F), new Vector2(449.671997F, -364.567993F)); + builder.AddCubicBezier(new Vector2(448.328003F, -363.776001F), new Vector2(447.26001F, -362.713989F), new Vector2(446.467987F, -361.381989F)); + builder.AddCubicBezier(new Vector2(445.675995F, -360.049988F), new Vector2(445.279999F, -358.556F), new Vector2(445.279999F, -356.899994F)); + builder.AddCubicBezier(new Vector2(445.279999F, -355.220001F), new Vector2(445.675995F, -353.701996F), new Vector2(446.467987F, -352.346008F)); + builder.AddCubicBezier(new Vector2(447.26001F, -350.98999F), new Vector2(448.328003F, -349.915985F), new Vector2(449.671997F, -349.123993F)); + builder.AddCubicBezier(new Vector2(451.015991F, -348.332001F), new Vector2(452.515991F, -347.936005F), new Vector2(454.171997F, -347.936005F)); + builder.AddCubicBezier(new Vector2(455.85199F, -347.936005F), new Vector2(457.369995F, -348.332001F), new Vector2(458.726013F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0825() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(443.768005F, -362.444F)); + builder.AddLine(new Vector2(443.768005F, -365.395996F)); + builder.AddLine(new Vector2(432.104004F, -365.395996F)); + builder.AddLine(new Vector2(432.104004F, -362.444F)); + builder.AddLine(new Vector2(443.768005F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(439.556F, -348.29599F)); + builder.AddLine(new Vector2(439.556F, -372.559998F)); + builder.AddLine(new Vector2(436.31601F, -372.559998F)); + builder.AddLine(new Vector2(436.31601F, -348.29599F)); + builder.AddLine(new Vector2(439.556F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0826() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(418.640015F, -348.691986F)); + builder.AddCubicBezier(new Vector2(419.81601F, -349.196014F), new Vector2(420.824005F, -349.928009F), new Vector2(421.664001F, -350.888F)); + builder.AddLine(new Vector2(419.575989F, -353.011993F)); + builder.AddCubicBezier(new Vector2(419F, -352.339996F), new Vector2(418.309998F, -351.835999F), new Vector2(417.506012F, -351.5F)); + builder.AddCubicBezier(new Vector2(416.701996F, -351.164001F), new Vector2(415.820007F, -350.996002F), new Vector2(414.859985F, -350.996002F)); + builder.AddCubicBezier(new Vector2(413.708008F, -350.996002F), new Vector2(412.687988F, -351.242004F), new Vector2(411.799988F, -351.734009F)); + builder.AddCubicBezier(new Vector2(410.911987F, -352.226013F), new Vector2(410.227997F, -352.921997F), new Vector2(409.747986F, -353.821991F)); + builder.AddCubicBezier(new Vector2(409.268005F, -354.721985F), new Vector2(409.028015F, -355.772003F), new Vector2(409.028015F, -356.971985F)); + builder.AddCubicBezier(new Vector2(409.028015F, -358.14801F), new Vector2(409.256012F, -359.167999F), new Vector2(409.712006F, -360.032013F)); + builder.AddCubicBezier(new Vector2(410.167999F, -360.895996F), new Vector2(410.81601F, -361.567993F), new Vector2(411.656006F, -362.048004F)); + builder.AddCubicBezier(new Vector2(412.496002F, -362.528015F), new Vector2(413.467987F, -362.768005F), new Vector2(414.571991F, -362.768005F)); + builder.AddCubicBezier(new Vector2(415.627991F, -362.768005F), new Vector2(416.528015F, -362.54599F), new Vector2(417.272003F, -362.10199F)); + builder.AddCubicBezier(new Vector2(418.015991F, -361.65799F), new Vector2(418.59201F, -361.033997F), new Vector2(419F, -360.230011F)); + builder.AddCubicBezier(new Vector2(419.40799F, -359.425995F), new Vector2(419.612F, -358.447998F), new Vector2(419.612F, -357.29599F)); + builder.AddLine(new Vector2(420.799988F, -358.339996F)); + builder.AddLine(new Vector2(408.09201F, -358.339996F)); + builder.AddLine(new Vector2(408.09201F, -355.640015F)); + builder.AddLine(new Vector2(422.528015F, -355.640015F)); + builder.AddCubicBezier(new Vector2(422.600006F, -355.976013F), new Vector2(422.64801F, -356.282013F), new Vector2(422.671997F, -356.558014F)); + builder.AddCubicBezier(new Vector2(422.696014F, -356.834015F), new Vector2(422.708008F, -357.09201F), new Vector2(422.708008F, -357.332001F)); + builder.AddCubicBezier(new Vector2(422.708008F, -358.963989F), new Vector2(422.365997F, -360.415985F), new Vector2(421.682007F, -361.687988F)); + builder.AddCubicBezier(new Vector2(420.997986F, -362.959991F), new Vector2(420.044006F, -363.955994F), new Vector2(418.820007F, -364.675995F)); + builder.AddCubicBezier(new Vector2(417.596008F, -365.395996F), new Vector2(416.20401F, -365.756012F), new Vector2(414.644012F, -365.756012F)); + builder.AddCubicBezier(new Vector2(412.988007F, -365.756012F), new Vector2(411.493988F, -365.365997F), new Vector2(410.161987F, -364.585999F)); + builder.AddCubicBezier(new Vector2(408.829987F, -363.806F), new Vector2(407.773987F, -362.743988F), new Vector2(406.993988F, -361.399994F)); + builder.AddCubicBezier(new Vector2(406.213989F, -360.056F), new Vector2(405.824005F, -358.544006F), new Vector2(405.824005F, -356.864014F)); + builder.AddCubicBezier(new Vector2(405.824005F, -355.160004F), new Vector2(406.220001F, -353.635986F), new Vector2(407.011993F, -352.291992F)); + builder.AddCubicBezier(new Vector2(407.803986F, -350.947998F), new Vector2(408.877991F, -349.885986F), new Vector2(410.234009F, -349.105988F)); + builder.AddCubicBezier(new Vector2(411.589996F, -348.325989F), new Vector2(413.131989F, -347.936005F), new Vector2(414.859985F, -347.936005F)); + builder.AddCubicBezier(new Vector2(416.20401F, -347.936005F), new Vector2(417.463989F, -348.187988F), new Vector2(418.640015F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0827() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(399.056F, -348.925995F)); + builder.AddCubicBezier(new Vector2(400.160004F, -349.537994F), new Vector2(401.023987F, -350.40799F), new Vector2(401.64801F, -351.536011F)); + builder.AddCubicBezier(new Vector2(402.272003F, -352.664001F), new Vector2(402.584015F, -353.971985F), new Vector2(402.584015F, -355.459991F)); + builder.AddLine(new Vector2(402.584015F, -365.395996F)); + builder.AddLine(new Vector2(399.343994F, -365.395996F)); + builder.AddLine(new Vector2(399.343994F, -355.604004F)); + builder.AddCubicBezier(new Vector2(399.343994F, -354.187988F), new Vector2(398.984009F, -353.078003F), new Vector2(398.264008F, -352.273987F)); + builder.AddCubicBezier(new Vector2(397.544006F, -351.470001F), new Vector2(396.548004F, -351.067993F), new Vector2(395.276001F, -351.067993F)); + builder.AddCubicBezier(new Vector2(394.436005F, -351.067993F), new Vector2(393.70401F, -351.247986F), new Vector2(393.079987F, -351.608002F)); + builder.AddCubicBezier(new Vector2(392.455994F, -351.967987F), new Vector2(391.981995F, -352.48999F), new Vector2(391.65799F, -353.174011F)); + builder.AddCubicBezier(new Vector2(391.334015F, -353.858002F), new Vector2(391.171997F, -354.667999F), new Vector2(391.171997F, -355.604004F)); + builder.AddLine(new Vector2(391.171997F, -365.395996F)); + builder.AddLine(new Vector2(387.932007F, -365.395996F)); + builder.AddLine(new Vector2(387.932007F, -355.459991F)); + builder.AddCubicBezier(new Vector2(387.932007F, -353.971985F), new Vector2(388.243988F, -352.664001F), new Vector2(388.868011F, -351.536011F)); + builder.AddCubicBezier(new Vector2(389.492004F, -350.40799F), new Vector2(390.362F, -349.537994F), new Vector2(391.477997F, -348.925995F)); + builder.AddCubicBezier(new Vector2(392.593994F, -348.313995F), new Vector2(393.859985F, -348.007996F), new Vector2(395.276001F, -348.007996F)); + builder.AddCubicBezier(new Vector2(396.691986F, -348.007996F), new Vector2(397.951996F, -348.313995F), new Vector2(399.056F, -348.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0828() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(383.64801F, -374F)); + builder.AddLine(new Vector2(380.372009F, -374F)); + builder.AddLine(new Vector2(380.372009F, -361.220001F)); + builder.AddLine(new Vector2(380.984009F, -357.079987F)); + builder.AddLine(new Vector2(380.372009F, -352.903992F)); + builder.AddLine(new Vector2(380.372009F, -348.29599F)); + builder.AddLine(new Vector2(383.64801F, -348.29599F)); + builder.AddLine(new Vector2(383.64801F, -374F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(372.325989F, -351.734009F)); + builder.AddCubicBezier(new Vector2(371.497986F, -352.226013F), new Vector2(370.850006F, -352.915985F), new Vector2(370.381989F, -353.803986F)); + builder.AddCubicBezier(new Vector2(369.914001F, -354.691986F), new Vector2(369.679993F, -355.712006F), new Vector2(369.679993F, -356.864014F)); + builder.AddCubicBezier(new Vector2(369.679993F, -358.015991F), new Vector2(369.914001F, -359.029999F), new Vector2(370.381989F, -359.906006F)); + builder.AddCubicBezier(new Vector2(370.850006F, -360.782013F), new Vector2(371.492004F, -361.466003F), new Vector2(372.308014F, -361.958008F)); + builder.AddCubicBezier(new Vector2(373.123993F, -362.450012F), new Vector2(374.071991F, -362.696014F), new Vector2(375.152008F, -362.696014F)); + builder.AddCubicBezier(new Vector2(376.231995F, -362.696014F), new Vector2(377.179993F, -362.444F), new Vector2(377.996002F, -361.940002F)); + builder.AddCubicBezier(new Vector2(378.812012F, -361.436005F), new Vector2(379.447998F, -360.746002F), new Vector2(379.903992F, -359.869995F)); + builder.AddCubicBezier(new Vector2(380.359985F, -358.993988F), new Vector2(380.588013F, -357.980011F), new Vector2(380.588013F, -356.828003F)); + builder.AddCubicBezier(new Vector2(380.588013F, -355.700012F), new Vector2(380.359985F, -354.697998F), new Vector2(379.903992F, -353.821991F)); + builder.AddCubicBezier(new Vector2(379.447998F, -352.946014F), new Vector2(378.812012F, -352.256012F), new Vector2(377.996002F, -351.752014F)); + builder.AddCubicBezier(new Vector2(377.179993F, -351.247986F), new Vector2(376.231995F, -350.996002F), new Vector2(375.152008F, -350.996002F)); + builder.AddCubicBezier(new Vector2(374.096008F, -350.996002F), new Vector2(373.153992F, -351.242004F), new Vector2(372.325989F, -351.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(378.140015F, -348.746002F)); + builder.AddCubicBezier(new Vector2(379.171997F, -349.286011F), new Vector2(380F, -350.036011F), new Vector2(380.623993F, -350.996002F)); + builder.AddCubicBezier(new Vector2(381.247986F, -351.955994F), new Vector2(381.596008F, -353.048004F), new Vector2(381.667999F, -354.272003F)); + builder.AddLine(new Vector2(381.667999F, -359.420013F)); + builder.AddCubicBezier(new Vector2(381.596008F, -360.667999F), new Vector2(381.242004F, -361.765991F), new Vector2(380.605988F, -362.713989F)); + builder.AddCubicBezier(new Vector2(379.970001F, -363.661987F), new Vector2(379.135986F, -364.406006F), new Vector2(378.104004F, -364.946014F)); + builder.AddCubicBezier(new Vector2(377.071991F, -365.485992F), new Vector2(375.90799F, -365.756012F), new Vector2(374.612F, -365.756012F)); + builder.AddCubicBezier(new Vector2(373.052002F, -365.756012F), new Vector2(371.64801F, -365.359985F), new Vector2(370.399994F, -364.567993F)); + builder.AddCubicBezier(new Vector2(369.152008F, -363.776001F), new Vector2(368.161987F, -362.708008F), new Vector2(367.429993F, -361.364014F)); + builder.AddCubicBezier(new Vector2(366.697998F, -360.019989F), new Vector2(366.332001F, -358.507996F), new Vector2(366.332001F, -356.828003F)); + builder.AddCubicBezier(new Vector2(366.332001F, -355.14801F), new Vector2(366.697998F, -353.635986F), new Vector2(367.429993F, -352.291992F)); + builder.AddCubicBezier(new Vector2(368.161987F, -350.947998F), new Vector2(369.152008F, -349.885986F), new Vector2(370.399994F, -349.105988F)); + builder.AddCubicBezier(new Vector2(371.64801F, -348.325989F), new Vector2(373.052002F, -347.936005F), new Vector2(374.612F, -347.936005F)); + builder.AddCubicBezier(new Vector2(375.932007F, -347.936005F), new Vector2(377.108002F, -348.205994F), new Vector2(378.140015F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0829() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(356.791992F, -362.444F)); + builder.AddLine(new Vector2(356.791992F, -365.395996F)); + builder.AddLine(new Vector2(345.127991F, -365.395996F)); + builder.AddLine(new Vector2(345.127991F, -362.444F)); + builder.AddLine(new Vector2(356.791992F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(352.579987F, -348.29599F)); + builder.AddLine(new Vector2(352.579987F, -372.559998F)); + builder.AddLine(new Vector2(349.339996F, -372.559998F)); + builder.AddLine(new Vector2(349.339996F, -348.29599F)); + builder.AddLine(new Vector2(352.579987F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0830() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(341.365997F, -349.339996F)); + builder.AddCubicBezier(new Vector2(342.506012F, -350.276001F), new Vector2(343.075989F, -351.548004F), new Vector2(343.075989F, -353.156006F)); + builder.AddCubicBezier(new Vector2(343.075989F, -354.212006F), new Vector2(342.854004F, -355.063995F), new Vector2(342.410004F, -355.712006F)); + builder.AddCubicBezier(new Vector2(341.966003F, -356.359985F), new Vector2(341.395996F, -356.876007F), new Vector2(340.700012F, -357.26001F)); + builder.AddCubicBezier(new Vector2(340.003998F, -357.644012F), new Vector2(339.272003F, -357.950012F), new Vector2(338.503998F, -358.178009F)); + builder.AddCubicBezier(new Vector2(337.735992F, -358.406006F), new Vector2(336.997986F, -358.627991F), new Vector2(336.290009F, -358.843994F)); + builder.AddCubicBezier(new Vector2(335.582001F, -359.059998F), new Vector2(335.011993F, -359.324005F), new Vector2(334.579987F, -359.635986F)); + builder.AddCubicBezier(new Vector2(334.14801F, -359.947998F), new Vector2(333.932007F, -360.391998F), new Vector2(333.932007F, -360.967987F)); + builder.AddCubicBezier(new Vector2(333.932007F, -361.519989F), new Vector2(334.178009F, -361.963989F), new Vector2(334.670013F, -362.299988F)); + builder.AddCubicBezier(new Vector2(335.161987F, -362.635986F), new Vector2(335.876007F, -362.803986F), new Vector2(336.812012F, -362.803986F)); + builder.AddCubicBezier(new Vector2(337.700012F, -362.803986F), new Vector2(338.492004F, -362.635986F), new Vector2(339.187988F, -362.299988F)); + builder.AddCubicBezier(new Vector2(339.884003F, -361.963989F), new Vector2(340.484009F, -361.484009F), new Vector2(340.988007F, -360.859985F)); + builder.AddLine(new Vector2(343.075989F, -362.947998F)); + builder.AddCubicBezier(new Vector2(342.403992F, -363.884003F), new Vector2(341.54599F, -364.585999F), new Vector2(340.502014F, -365.053986F)); + builder.AddCubicBezier(new Vector2(339.458008F, -365.522003F), new Vector2(338.264008F, -365.756012F), new Vector2(336.920013F, -365.756012F)); + builder.AddCubicBezier(new Vector2(335.64801F, -365.756012F), new Vector2(334.556F, -365.552002F), new Vector2(333.644012F, -365.144012F)); + builder.AddCubicBezier(new Vector2(332.731995F, -364.735992F), new Vector2(332.029999F, -364.153992F), new Vector2(331.537994F, -363.39801F)); + builder.AddCubicBezier(new Vector2(331.04599F, -362.641998F), new Vector2(330.799988F, -361.747986F), new Vector2(330.799988F, -360.716003F)); + builder.AddCubicBezier(new Vector2(330.799988F, -359.68399F), new Vector2(331.022003F, -358.850006F), new Vector2(331.466003F, -358.213989F)); + builder.AddCubicBezier(new Vector2(331.910004F, -357.578003F), new Vector2(332.480011F, -357.079987F), new Vector2(333.175995F, -356.720001F)); + builder.AddCubicBezier(new Vector2(333.872009F, -356.359985F), new Vector2(334.609985F, -356.071991F), new Vector2(335.390015F, -355.855988F)); + builder.AddCubicBezier(new Vector2(336.170013F, -355.640015F), new Vector2(336.90799F, -355.417999F), new Vector2(337.604004F, -355.190002F)); + builder.AddCubicBezier(new Vector2(338.299988F, -354.962006F), new Vector2(338.869995F, -354.674011F), new Vector2(339.313995F, -354.325989F)); + builder.AddCubicBezier(new Vector2(339.757996F, -353.977997F), new Vector2(339.980011F, -353.492004F), new Vector2(339.980011F, -352.868011F)); + builder.AddCubicBezier(new Vector2(339.980011F, -352.243988F), new Vector2(339.70401F, -351.757996F), new Vector2(339.152008F, -351.410004F)); + builder.AddCubicBezier(new Vector2(338.600006F, -351.062012F), new Vector2(337.820007F, -350.888F), new Vector2(336.812012F, -350.888F)); + builder.AddCubicBezier(new Vector2(335.803986F, -350.888F), new Vector2(334.891998F, -351.074005F), new Vector2(334.075989F, -351.446014F)); + builder.AddCubicBezier(new Vector2(333.26001F, -351.817993F), new Vector2(332.540009F, -352.388F), new Vector2(331.915985F, -353.156006F)); + builder.AddLine(new Vector2(329.828003F, -351.067993F)); + builder.AddCubicBezier(new Vector2(330.355988F, -350.420013F), new Vector2(330.973999F, -349.862F), new Vector2(331.682007F, -349.394012F)); + builder.AddCubicBezier(new Vector2(332.390015F, -348.925995F), new Vector2(333.175995F, -348.56601F), new Vector2(334.040009F, -348.313995F)); + builder.AddCubicBezier(new Vector2(334.903992F, -348.062012F), new Vector2(335.81601F, -347.936005F), new Vector2(336.776001F, -347.936005F)); + builder.AddCubicBezier(new Vector2(338.696014F, -347.936005F), new Vector2(340.226013F, -348.403992F), new Vector2(341.365997F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0831() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(323.743988F, -348.691986F)); + builder.AddCubicBezier(new Vector2(324.920013F, -349.196014F), new Vector2(325.928009F, -349.928009F), new Vector2(326.768005F, -350.888F)); + builder.AddLine(new Vector2(324.679993F, -353.011993F)); + builder.AddCubicBezier(new Vector2(324.104004F, -352.339996F), new Vector2(323.414001F, -351.835999F), new Vector2(322.609985F, -351.5F)); + builder.AddCubicBezier(new Vector2(321.806F, -351.164001F), new Vector2(320.924011F, -350.996002F), new Vector2(319.963989F, -350.996002F)); + builder.AddCubicBezier(new Vector2(318.812012F, -350.996002F), new Vector2(317.791992F, -351.242004F), new Vector2(316.903992F, -351.734009F)); + builder.AddCubicBezier(new Vector2(316.015991F, -352.226013F), new Vector2(315.332001F, -352.921997F), new Vector2(314.85199F, -353.821991F)); + builder.AddCubicBezier(new Vector2(314.372009F, -354.721985F), new Vector2(314.131989F, -355.772003F), new Vector2(314.131989F, -356.971985F)); + builder.AddCubicBezier(new Vector2(314.131989F, -358.14801F), new Vector2(314.359985F, -359.167999F), new Vector2(314.81601F, -360.032013F)); + builder.AddCubicBezier(new Vector2(315.272003F, -360.895996F), new Vector2(315.920013F, -361.567993F), new Vector2(316.76001F, -362.048004F)); + builder.AddCubicBezier(new Vector2(317.600006F, -362.528015F), new Vector2(318.571991F, -362.768005F), new Vector2(319.675995F, -362.768005F)); + builder.AddCubicBezier(new Vector2(320.731995F, -362.768005F), new Vector2(321.631989F, -362.54599F), new Vector2(322.376007F, -362.10199F)); + builder.AddCubicBezier(new Vector2(323.119995F, -361.65799F), new Vector2(323.696014F, -361.033997F), new Vector2(324.104004F, -360.230011F)); + builder.AddCubicBezier(new Vector2(324.511993F, -359.425995F), new Vector2(324.716003F, -358.447998F), new Vector2(324.716003F, -357.29599F)); + builder.AddLine(new Vector2(325.903992F, -358.339996F)); + builder.AddLine(new Vector2(313.196014F, -358.339996F)); + builder.AddLine(new Vector2(313.196014F, -355.640015F)); + builder.AddLine(new Vector2(327.631989F, -355.640015F)); + builder.AddCubicBezier(new Vector2(327.70401F, -355.976013F), new Vector2(327.752014F, -356.282013F), new Vector2(327.776001F, -356.558014F)); + builder.AddCubicBezier(new Vector2(327.799988F, -356.834015F), new Vector2(327.812012F, -357.09201F), new Vector2(327.812012F, -357.332001F)); + builder.AddCubicBezier(new Vector2(327.812012F, -358.963989F), new Vector2(327.470001F, -360.415985F), new Vector2(326.786011F, -361.687988F)); + builder.AddCubicBezier(new Vector2(326.10199F, -362.959991F), new Vector2(325.14801F, -363.955994F), new Vector2(323.924011F, -364.675995F)); + builder.AddCubicBezier(new Vector2(322.700012F, -365.395996F), new Vector2(321.308014F, -365.756012F), new Vector2(319.747986F, -365.756012F)); + builder.AddCubicBezier(new Vector2(318.09201F, -365.756012F), new Vector2(316.597992F, -365.365997F), new Vector2(315.265991F, -364.585999F)); + builder.AddCubicBezier(new Vector2(313.93399F, -363.806F), new Vector2(312.877991F, -362.743988F), new Vector2(312.097992F, -361.399994F)); + builder.AddCubicBezier(new Vector2(311.317993F, -360.056F), new Vector2(310.928009F, -358.544006F), new Vector2(310.928009F, -356.864014F)); + builder.AddCubicBezier(new Vector2(310.928009F, -355.160004F), new Vector2(311.324005F, -353.635986F), new Vector2(312.115997F, -352.291992F)); + builder.AddCubicBezier(new Vector2(312.90799F, -350.947998F), new Vector2(313.981995F, -349.885986F), new Vector2(315.338013F, -349.105988F)); + builder.AddCubicBezier(new Vector2(316.694F, -348.325989F), new Vector2(318.235992F, -347.936005F), new Vector2(319.963989F, -347.936005F)); + builder.AddCubicBezier(new Vector2(321.308014F, -347.936005F), new Vector2(322.567993F, -348.187988F), new Vector2(323.743988F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0832() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(302.540009F, -361.544006F)); + builder.AddCubicBezier(new Vector2(303.308014F, -362.312012F), new Vector2(304.291992F, -362.696014F), new Vector2(305.492004F, -362.696014F)); + builder.AddCubicBezier(new Vector2(306.067993F, -362.696014F), new Vector2(306.571991F, -362.612F), new Vector2(307.003998F, -362.444F)); + builder.AddCubicBezier(new Vector2(307.436005F, -362.276001F), new Vector2(307.832001F, -362F), new Vector2(308.191986F, -361.615997F)); + builder.AddLine(new Vector2(310.31601F, -363.812012F)); + builder.AddCubicBezier(new Vector2(309.716003F, -364.507996F), new Vector2(309.067993F, -365.006012F), new Vector2(308.372009F, -365.306F)); + builder.AddCubicBezier(new Vector2(307.675995F, -365.605988F), new Vector2(306.895996F, -365.756012F), new Vector2(306.032013F, -365.756012F)); + builder.AddCubicBezier(new Vector2(304.135986F, -365.756012F), new Vector2(302.68399F, -365.108002F), new Vector2(301.675995F, -363.812012F)); + builder.AddCubicBezier(new Vector2(300.667999F, -362.515991F), new Vector2(300.164001F, -360.776001F), new Vector2(300.164001F, -358.59201F)); + builder.AddLine(new Vector2(301.388F, -358.015991F)); + builder.AddCubicBezier(new Vector2(301.388F, -359.600006F), new Vector2(301.772003F, -360.776001F), new Vector2(302.540009F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(301.388F, -348.29599F)); + builder.AddLine(new Vector2(301.388F, -365.395996F)); + builder.AddLine(new Vector2(298.14801F, -365.395996F)); + builder.AddLine(new Vector2(298.14801F, -348.29599F)); + builder.AddLine(new Vector2(301.388F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0833() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(281.660004F, -348.29599F)); + builder.AddLine(new Vector2(281.660004F, -365.395996F)); + builder.AddLine(new Vector2(278.420013F, -365.395996F)); + builder.AddLine(new Vector2(278.420013F, -348.29599F)); + builder.AddLine(new Vector2(281.660004F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(293.756012F, -348.29599F)); + builder.AddLine(new Vector2(293.756012F, -358.915985F)); + builder.AddCubicBezier(new Vector2(293.756012F, -360.09201F), new Vector2(293.467987F, -361.201996F), new Vector2(292.891998F, -362.246002F)); + builder.AddCubicBezier(new Vector2(292.31601F, -363.290009F), new Vector2(291.529999F, -364.135986F), new Vector2(290.533997F, -364.783997F)); + builder.AddCubicBezier(new Vector2(289.537994F, -365.432007F), new Vector2(288.391998F, -365.756012F), new Vector2(287.096008F, -365.756012F)); + builder.AddCubicBezier(new Vector2(285.799988F, -365.756012F), new Vector2(284.635986F, -365.462006F), new Vector2(283.604004F, -364.873993F)); + builder.AddCubicBezier(new Vector2(282.571991F, -364.286011F), new Vector2(281.768005F, -363.488007F), new Vector2(281.191986F, -362.480011F)); + builder.AddCubicBezier(new Vector2(280.615997F, -361.471985F), new Vector2(280.328003F, -360.320007F), new Vector2(280.328003F, -359.023987F)); + builder.AddLine(new Vector2(281.660004F, -358.268005F)); + builder.AddCubicBezier(new Vector2(281.660004F, -359.131989F), new Vector2(281.85199F, -359.899994F), new Vector2(282.235992F, -360.571991F)); + builder.AddCubicBezier(new Vector2(282.619995F, -361.243988F), new Vector2(283.14801F, -361.772003F), new Vector2(283.820007F, -362.156006F)); + builder.AddCubicBezier(new Vector2(284.492004F, -362.540009F), new Vector2(285.26001F, -362.731995F), new Vector2(286.123993F, -362.731995F)); + builder.AddCubicBezier(new Vector2(287.420013F, -362.731995F), new Vector2(288.470001F, -362.312012F), new Vector2(289.273987F, -361.471985F)); + builder.AddCubicBezier(new Vector2(290.078003F, -360.631989F), new Vector2(290.480011F, -359.563995F), new Vector2(290.480011F, -358.268005F)); + builder.AddLine(new Vector2(290.480011F, -348.29599F)); + builder.AddLine(new Vector2(293.756012F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0834() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(270.536011F, -348.925995F)); + builder.AddCubicBezier(new Vector2(271.640015F, -349.537994F), new Vector2(272.503998F, -350.40799F), new Vector2(273.127991F, -351.536011F)); + builder.AddCubicBezier(new Vector2(273.752014F, -352.664001F), new Vector2(274.063995F, -353.971985F), new Vector2(274.063995F, -355.459991F)); + builder.AddLine(new Vector2(274.063995F, -365.395996F)); + builder.AddLine(new Vector2(270.824005F, -365.395996F)); + builder.AddLine(new Vector2(270.824005F, -355.604004F)); + builder.AddCubicBezier(new Vector2(270.824005F, -354.187988F), new Vector2(270.463989F, -353.078003F), new Vector2(269.743988F, -352.273987F)); + builder.AddCubicBezier(new Vector2(269.023987F, -351.470001F), new Vector2(268.028015F, -351.067993F), new Vector2(266.756012F, -351.067993F)); + builder.AddCubicBezier(new Vector2(265.915985F, -351.067993F), new Vector2(265.18399F, -351.247986F), new Vector2(264.559998F, -351.608002F)); + builder.AddCubicBezier(new Vector2(263.936005F, -351.967987F), new Vector2(263.462006F, -352.48999F), new Vector2(263.138F, -353.174011F)); + builder.AddCubicBezier(new Vector2(262.813995F, -353.858002F), new Vector2(262.652008F, -354.667999F), new Vector2(262.652008F, -355.604004F)); + builder.AddLine(new Vector2(262.652008F, -365.395996F)); + builder.AddLine(new Vector2(259.411987F, -365.395996F)); + builder.AddLine(new Vector2(259.411987F, -355.459991F)); + builder.AddCubicBezier(new Vector2(259.411987F, -353.971985F), new Vector2(259.723999F, -352.664001F), new Vector2(260.347992F, -351.536011F)); + builder.AddCubicBezier(new Vector2(260.971985F, -350.40799F), new Vector2(261.84201F, -349.537994F), new Vector2(262.958008F, -348.925995F)); + builder.AddCubicBezier(new Vector2(264.074005F, -348.313995F), new Vector2(265.339996F, -348.007996F), new Vector2(266.756012F, -348.007996F)); + builder.AddCubicBezier(new Vector2(268.171997F, -348.007996F), new Vector2(269.432007F, -348.313995F), new Vector2(270.536011F, -348.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0835() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(247.675995F, -374F)); + builder.AddLine(new Vector2(244.399994F, -374F)); + builder.AddLine(new Vector2(244.399994F, -361.220001F)); + builder.AddLine(new Vector2(245.011993F, -357.079987F)); + builder.AddLine(new Vector2(244.399994F, -352.903992F)); + builder.AddLine(new Vector2(244.399994F, -348.29599F)); + builder.AddLine(new Vector2(247.675995F, -348.29599F)); + builder.AddLine(new Vector2(247.675995F, -374F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(236.354004F, -351.734009F)); + builder.AddCubicBezier(new Vector2(235.526001F, -352.226013F), new Vector2(234.878006F, -352.915985F), new Vector2(234.410004F, -353.803986F)); + builder.AddCubicBezier(new Vector2(233.942001F, -354.691986F), new Vector2(233.707993F, -355.712006F), new Vector2(233.707993F, -356.864014F)); + builder.AddCubicBezier(new Vector2(233.707993F, -358.015991F), new Vector2(233.942001F, -359.029999F), new Vector2(234.410004F, -359.906006F)); + builder.AddCubicBezier(new Vector2(234.878006F, -360.782013F), new Vector2(235.520004F, -361.466003F), new Vector2(236.335999F, -361.958008F)); + builder.AddCubicBezier(new Vector2(237.151993F, -362.450012F), new Vector2(238.100006F, -362.696014F), new Vector2(239.179993F, -362.696014F)); + builder.AddCubicBezier(new Vector2(240.259995F, -362.696014F), new Vector2(241.207993F, -362.444F), new Vector2(242.024002F, -361.940002F)); + builder.AddCubicBezier(new Vector2(242.839996F, -361.436005F), new Vector2(243.475998F, -360.746002F), new Vector2(243.932007F, -359.869995F)); + builder.AddCubicBezier(new Vector2(244.388F, -358.993988F), new Vector2(244.615997F, -357.980011F), new Vector2(244.615997F, -356.828003F)); + builder.AddCubicBezier(new Vector2(244.615997F, -355.700012F), new Vector2(244.388F, -354.697998F), new Vector2(243.932007F, -353.821991F)); + builder.AddCubicBezier(new Vector2(243.475998F, -352.946014F), new Vector2(242.839996F, -352.256012F), new Vector2(242.024002F, -351.752014F)); + builder.AddCubicBezier(new Vector2(241.207993F, -351.247986F), new Vector2(240.259995F, -350.996002F), new Vector2(239.179993F, -350.996002F)); + builder.AddCubicBezier(new Vector2(238.123993F, -350.996002F), new Vector2(237.182007F, -351.242004F), new Vector2(236.354004F, -351.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(242.167999F, -348.746002F)); + builder.AddCubicBezier(new Vector2(243.199997F, -349.286011F), new Vector2(244.028F, -350.036011F), new Vector2(244.651993F, -350.996002F)); + builder.AddCubicBezier(new Vector2(245.276001F, -351.955994F), new Vector2(245.623993F, -353.048004F), new Vector2(245.695999F, -354.272003F)); + builder.AddLine(new Vector2(245.695999F, -359.420013F)); + builder.AddCubicBezier(new Vector2(245.623993F, -360.667999F), new Vector2(245.270004F, -361.765991F), new Vector2(244.634003F, -362.713989F)); + builder.AddCubicBezier(new Vector2(243.998001F, -363.661987F), new Vector2(243.164001F, -364.406006F), new Vector2(242.132004F, -364.946014F)); + builder.AddCubicBezier(new Vector2(241.100006F, -365.485992F), new Vector2(239.936005F, -365.756012F), new Vector2(238.639999F, -365.756012F)); + builder.AddCubicBezier(new Vector2(237.080002F, -365.756012F), new Vector2(235.675995F, -365.359985F), new Vector2(234.427994F, -364.567993F)); + builder.AddCubicBezier(new Vector2(233.179993F, -363.776001F), new Vector2(232.190002F, -362.708008F), new Vector2(231.457993F, -361.364014F)); + builder.AddCubicBezier(new Vector2(230.725998F, -360.019989F), new Vector2(230.360001F, -358.507996F), new Vector2(230.360001F, -356.828003F)); + builder.AddCubicBezier(new Vector2(230.360001F, -355.14801F), new Vector2(230.725998F, -353.635986F), new Vector2(231.457993F, -352.291992F)); + builder.AddCubicBezier(new Vector2(232.190002F, -350.947998F), new Vector2(233.179993F, -349.885986F), new Vector2(234.427994F, -349.105988F)); + builder.AddCubicBezier(new Vector2(235.675995F, -348.325989F), new Vector2(237.080002F, -347.936005F), new Vector2(238.639999F, -347.936005F)); + builder.AddCubicBezier(new Vector2(239.960007F, -347.936005F), new Vector2(241.136002F, -348.205994F), new Vector2(242.167999F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0836() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(226.723999F, -348.29599F)); + builder.AddLine(new Vector2(226.723999F, -365.395996F)); + builder.AddLine(new Vector2(223.447998F, -365.395996F)); + builder.AddLine(new Vector2(223.447998F, -361.220001F)); + builder.AddLine(new Vector2(224.059998F, -357.079987F)); + builder.AddLine(new Vector2(223.447998F, -352.903992F)); + builder.AddLine(new Vector2(223.447998F, -348.29599F)); + builder.AddLine(new Vector2(226.723999F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(215.419998F, -351.752014F)); + builder.AddCubicBezier(new Vector2(214.580002F, -352.256012F), new Vector2(213.925995F, -352.946014F), new Vector2(213.457993F, -353.821991F)); + builder.AddCubicBezier(new Vector2(212.990005F, -354.697998F), new Vector2(212.755997F, -355.712006F), new Vector2(212.755997F, -356.864014F)); + builder.AddCubicBezier(new Vector2(212.755997F, -357.992004F), new Vector2(212.990005F, -358.993988F), new Vector2(213.457993F, -359.869995F)); + builder.AddCubicBezier(new Vector2(213.925995F, -360.746002F), new Vector2(214.574005F, -361.436005F), new Vector2(215.401993F, -361.940002F)); + builder.AddCubicBezier(new Vector2(216.229996F, -362.444F), new Vector2(217.184006F, -362.696014F), new Vector2(218.264008F, -362.696014F)); + builder.AddCubicBezier(new Vector2(219.343994F, -362.696014F), new Vector2(220.285995F, -362.450012F), new Vector2(221.089996F, -361.958008F)); + builder.AddCubicBezier(new Vector2(221.893997F, -361.466003F), new Vector2(222.524002F, -360.776001F), new Vector2(222.979996F, -359.888F)); + builder.AddCubicBezier(new Vector2(223.436005F, -359F), new Vector2(223.664001F, -357.980011F), new Vector2(223.664001F, -356.828003F)); + builder.AddCubicBezier(new Vector2(223.664001F, -355.123993F), new Vector2(223.171997F, -353.726013F), new Vector2(222.188004F, -352.634003F)); + builder.AddCubicBezier(new Vector2(221.203995F, -351.541992F), new Vector2(219.908005F, -350.996002F), new Vector2(218.300003F, -350.996002F)); + builder.AddCubicBezier(new Vector2(217.220001F, -350.996002F), new Vector2(216.259995F, -351.247986F), new Vector2(215.419998F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(221.251999F, -348.746002F)); + builder.AddCubicBezier(new Vector2(222.283997F, -349.286011F), new Vector2(223.106003F, -350.036011F), new Vector2(223.718002F, -350.996002F)); + builder.AddCubicBezier(new Vector2(224.330002F, -351.955994F), new Vector2(224.671997F, -353.048004F), new Vector2(224.744003F, -354.272003F)); + builder.AddLine(new Vector2(224.744003F, -359.420013F)); + builder.AddCubicBezier(new Vector2(224.671997F, -360.667999F), new Vector2(224.324005F, -361.765991F), new Vector2(223.699997F, -362.713989F)); + builder.AddCubicBezier(new Vector2(223.076004F, -363.661987F), new Vector2(222.253998F, -364.406006F), new Vector2(221.233994F, -364.946014F)); + builder.AddCubicBezier(new Vector2(220.214005F, -365.485992F), new Vector2(219.056F, -365.756012F), new Vector2(217.759995F, -365.756012F)); + builder.AddCubicBezier(new Vector2(216.175995F, -365.756012F), new Vector2(214.753998F, -365.359985F), new Vector2(213.494003F, -364.567993F)); + builder.AddCubicBezier(new Vector2(212.233994F, -363.776001F), new Vector2(211.238007F, -362.708008F), new Vector2(210.505997F, -361.364014F)); + builder.AddCubicBezier(new Vector2(209.774002F, -360.019989F), new Vector2(209.408005F, -358.507996F), new Vector2(209.408005F, -356.828003F)); + builder.AddCubicBezier(new Vector2(209.408005F, -355.14801F), new Vector2(209.774002F, -353.635986F), new Vector2(210.505997F, -352.291992F)); + builder.AddCubicBezier(new Vector2(211.238007F, -350.947998F), new Vector2(212.233994F, -349.885986F), new Vector2(213.494003F, -349.105988F)); + builder.AddCubicBezier(new Vector2(214.753998F, -348.325989F), new Vector2(216.175995F, -347.936005F), new Vector2(217.759995F, -347.936005F)); + builder.AddCubicBezier(new Vector2(219.056F, -347.936005F), new Vector2(220.220001F, -348.205994F), new Vector2(221.251999F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0837() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(202.891998F, -348.691986F)); + builder.AddCubicBezier(new Vector2(204.067993F, -349.196014F), new Vector2(205.076004F, -349.928009F), new Vector2(205.916F, -350.888F)); + builder.AddLine(new Vector2(203.828003F, -353.011993F)); + builder.AddCubicBezier(new Vector2(203.251999F, -352.339996F), new Vector2(202.561996F, -351.835999F), new Vector2(201.757996F, -351.5F)); + builder.AddCubicBezier(new Vector2(200.953995F, -351.164001F), new Vector2(200.072006F, -350.996002F), new Vector2(199.112F, -350.996002F)); + builder.AddCubicBezier(new Vector2(197.960007F, -350.996002F), new Vector2(196.940002F, -351.242004F), new Vector2(196.052002F, -351.734009F)); + builder.AddCubicBezier(new Vector2(195.164001F, -352.226013F), new Vector2(194.479996F, -352.921997F), new Vector2(194F, -353.821991F)); + builder.AddCubicBezier(new Vector2(193.520004F, -354.721985F), new Vector2(193.279999F, -355.772003F), new Vector2(193.279999F, -356.971985F)); + builder.AddCubicBezier(new Vector2(193.279999F, -358.14801F), new Vector2(193.507996F, -359.167999F), new Vector2(193.964005F, -360.032013F)); + builder.AddCubicBezier(new Vector2(194.419998F, -360.895996F), new Vector2(195.067993F, -361.567993F), new Vector2(195.908005F, -362.048004F)); + builder.AddCubicBezier(new Vector2(196.748001F, -362.528015F), new Vector2(197.720001F, -362.768005F), new Vector2(198.824005F, -362.768005F)); + builder.AddCubicBezier(new Vector2(199.880005F, -362.768005F), new Vector2(200.779999F, -362.54599F), new Vector2(201.524002F, -362.10199F)); + builder.AddCubicBezier(new Vector2(202.268005F, -361.65799F), new Vector2(202.843994F, -361.033997F), new Vector2(203.251999F, -360.230011F)); + builder.AddCubicBezier(new Vector2(203.660004F, -359.425995F), new Vector2(203.863998F, -358.447998F), new Vector2(203.863998F, -357.29599F)); + builder.AddLine(new Vector2(205.052002F, -358.339996F)); + builder.AddLine(new Vector2(192.343994F, -358.339996F)); + builder.AddLine(new Vector2(192.343994F, -355.640015F)); + builder.AddLine(new Vector2(206.779999F, -355.640015F)); + builder.AddCubicBezier(new Vector2(206.852005F, -355.976013F), new Vector2(206.899994F, -356.282013F), new Vector2(206.923996F, -356.558014F)); + builder.AddCubicBezier(new Vector2(206.947998F, -356.834015F), new Vector2(206.960007F, -357.09201F), new Vector2(206.960007F, -357.332001F)); + builder.AddCubicBezier(new Vector2(206.960007F, -358.963989F), new Vector2(206.617996F, -360.415985F), new Vector2(205.934006F, -361.687988F)); + builder.AddCubicBezier(new Vector2(205.25F, -362.959991F), new Vector2(204.296005F, -363.955994F), new Vector2(203.072006F, -364.675995F)); + builder.AddCubicBezier(new Vector2(201.848007F, -365.395996F), new Vector2(200.455994F, -365.756012F), new Vector2(198.895996F, -365.756012F)); + builder.AddCubicBezier(new Vector2(197.240005F, -365.756012F), new Vector2(195.746002F, -365.365997F), new Vector2(194.414001F, -364.585999F)); + builder.AddCubicBezier(new Vector2(193.082001F, -363.806F), new Vector2(192.026001F, -362.743988F), new Vector2(191.246002F, -361.399994F)); + builder.AddCubicBezier(new Vector2(190.466003F, -360.056F), new Vector2(190.076004F, -358.544006F), new Vector2(190.076004F, -356.864014F)); + builder.AddCubicBezier(new Vector2(190.076004F, -355.160004F), new Vector2(190.472F, -353.635986F), new Vector2(191.264008F, -352.291992F)); + builder.AddCubicBezier(new Vector2(192.056F, -350.947998F), new Vector2(193.130005F, -349.885986F), new Vector2(194.485992F, -349.105988F)); + builder.AddCubicBezier(new Vector2(195.841995F, -348.325989F), new Vector2(197.384003F, -347.936005F), new Vector2(199.112F, -347.936005F)); + builder.AddCubicBezier(new Vector2(200.455994F, -347.936005F), new Vector2(201.716003F, -348.187988F), new Vector2(202.891998F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0838() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(181.688004F, -361.544006F)); + builder.AddCubicBezier(new Vector2(182.455994F, -362.312012F), new Vector2(183.440002F, -362.696014F), new Vector2(184.639999F, -362.696014F)); + builder.AddCubicBezier(new Vector2(185.216003F, -362.696014F), new Vector2(185.720001F, -362.612F), new Vector2(186.151993F, -362.444F)); + builder.AddCubicBezier(new Vector2(186.584F, -362.276001F), new Vector2(186.979996F, -362F), new Vector2(187.339996F, -361.615997F)); + builder.AddLine(new Vector2(189.464005F, -363.812012F)); + builder.AddCubicBezier(new Vector2(188.863998F, -364.507996F), new Vector2(188.216003F, -365.006012F), new Vector2(187.520004F, -365.306F)); + builder.AddCubicBezier(new Vector2(186.824005F, -365.605988F), new Vector2(186.044006F, -365.756012F), new Vector2(185.179993F, -365.756012F)); + builder.AddCubicBezier(new Vector2(183.283997F, -365.756012F), new Vector2(181.832001F, -365.108002F), new Vector2(180.824005F, -363.812012F)); + builder.AddCubicBezier(new Vector2(179.815994F, -362.515991F), new Vector2(179.311996F, -360.776001F), new Vector2(179.311996F, -358.59201F)); + builder.AddLine(new Vector2(180.535995F, -358.015991F)); + builder.AddCubicBezier(new Vector2(180.535995F, -359.600006F), new Vector2(180.919998F, -360.776001F), new Vector2(181.688004F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(180.535995F, -348.29599F)); + builder.AddLine(new Vector2(180.535995F, -365.395996F)); + builder.AddLine(new Vector2(177.296005F, -365.395996F)); + builder.AddLine(new Vector2(177.296005F, -348.29599F)); + builder.AddLine(new Vector2(180.535995F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0839() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(161.977997F, -351.752014F)); + builder.AddCubicBezier(new Vector2(161.149994F, -352.256012F), new Vector2(160.514008F, -352.946014F), new Vector2(160.070007F, -353.821991F)); + builder.AddCubicBezier(new Vector2(159.626007F, -354.697998F), new Vector2(159.404007F, -355.700012F), new Vector2(159.404007F, -356.828003F)); + builder.AddCubicBezier(new Vector2(159.404007F, -357.980011F), new Vector2(159.632004F, -358.993988F), new Vector2(160.087997F, -359.869995F)); + builder.AddCubicBezier(new Vector2(160.544006F, -360.746002F), new Vector2(161.179993F, -361.436005F), new Vector2(161.996002F, -361.940002F)); + builder.AddCubicBezier(new Vector2(162.811996F, -362.444F), new Vector2(163.748001F, -362.696014F), new Vector2(164.804001F, -362.696014F)); + builder.AddCubicBezier(new Vector2(165.884003F, -362.696014F), new Vector2(166.832001F, -362.444F), new Vector2(167.647995F, -361.940002F)); + builder.AddCubicBezier(new Vector2(168.464005F, -361.436005F), new Vector2(169.106003F, -360.746002F), new Vector2(169.574005F, -359.869995F)); + builder.AddCubicBezier(new Vector2(170.042007F, -358.993988F), new Vector2(170.276001F, -357.992004F), new Vector2(170.276001F, -356.864014F)); + builder.AddCubicBezier(new Vector2(170.276001F, -355.712006F), new Vector2(170.042007F, -354.697998F), new Vector2(169.574005F, -353.821991F)); + builder.AddCubicBezier(new Vector2(169.106003F, -352.946014F), new Vector2(168.464005F, -352.256012F), new Vector2(167.647995F, -351.752014F)); + builder.AddCubicBezier(new Vector2(166.832001F, -351.247986F), new Vector2(165.884003F, -350.996002F), new Vector2(164.804001F, -350.996002F)); + builder.AddCubicBezier(new Vector2(163.748001F, -350.996002F), new Vector2(162.806F, -351.247986F), new Vector2(161.977997F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(159.584F, -341.131989F)); + builder.AddLine(new Vector2(159.584F, -352.579987F)); + builder.AddLine(new Vector2(158.972F, -356.756012F)); + builder.AddLine(new Vector2(159.584F, -360.895996F)); + builder.AddLine(new Vector2(159.584F, -365.395996F)); + builder.AddLine(new Vector2(156.343994F, -365.395996F)); + builder.AddLine(new Vector2(156.343994F, -341.131989F)); + builder.AddLine(new Vector2(159.584F, -341.131989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(169.574005F, -349.105988F)); + builder.AddCubicBezier(new Vector2(170.834F, -349.885986F), new Vector2(171.824005F, -350.947998F), new Vector2(172.544006F, -352.291992F)); + builder.AddCubicBezier(new Vector2(173.264008F, -353.635986F), new Vector2(173.623993F, -355.14801F), new Vector2(173.623993F, -356.828003F)); + builder.AddCubicBezier(new Vector2(173.623993F, -358.507996F), new Vector2(173.264008F, -360.019989F), new Vector2(172.544006F, -361.364014F)); + builder.AddCubicBezier(new Vector2(171.824005F, -362.708008F), new Vector2(170.834F, -363.776001F), new Vector2(169.574005F, -364.567993F)); + builder.AddCubicBezier(new Vector2(168.313995F, -365.359985F), new Vector2(166.904007F, -365.756012F), new Vector2(165.343994F, -365.756012F)); + builder.AddCubicBezier(new Vector2(164.072006F, -365.756012F), new Vector2(162.914001F, -365.485992F), new Vector2(161.869995F, -364.946014F)); + builder.AddCubicBezier(new Vector2(160.826004F, -364.406006F), new Vector2(159.985992F, -363.661987F), new Vector2(159.350006F, -362.713989F)); + builder.AddCubicBezier(new Vector2(158.714005F, -361.765991F), new Vector2(158.360001F, -360.667999F), new Vector2(158.287994F, -359.420013F)); + builder.AddLine(new Vector2(158.287994F, -354.272003F)); + builder.AddCubicBezier(new Vector2(158.360001F, -353.048004F), new Vector2(158.707993F, -351.955994F), new Vector2(159.332001F, -350.996002F)); + builder.AddCubicBezier(new Vector2(159.955994F, -350.036011F), new Vector2(160.789993F, -349.286011F), new Vector2(161.834F, -348.746002F)); + builder.AddCubicBezier(new Vector2(162.878006F, -348.205994F), new Vector2(164.048004F, -347.936005F), new Vector2(165.343994F, -347.936005F)); + builder.AddCubicBezier(new Vector2(166.904007F, -347.936005F), new Vector2(168.313995F, -348.325989F), new Vector2(169.574005F, -349.105988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0840() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(150.998001F, -349.339996F)); + builder.AddCubicBezier(new Vector2(152.138F, -350.276001F), new Vector2(152.707993F, -351.548004F), new Vector2(152.707993F, -353.156006F)); + builder.AddCubicBezier(new Vector2(152.707993F, -354.212006F), new Vector2(152.485992F, -355.063995F), new Vector2(152.042007F, -355.712006F)); + builder.AddCubicBezier(new Vector2(151.598007F, -356.359985F), new Vector2(151.028F, -356.876007F), new Vector2(150.332001F, -357.26001F)); + builder.AddCubicBezier(new Vector2(149.636002F, -357.644012F), new Vector2(148.904007F, -357.950012F), new Vector2(148.136002F, -358.178009F)); + builder.AddCubicBezier(new Vector2(147.367996F, -358.406006F), new Vector2(146.630005F, -358.627991F), new Vector2(145.921997F, -358.843994F)); + builder.AddCubicBezier(new Vector2(145.214005F, -359.059998F), new Vector2(144.643997F, -359.324005F), new Vector2(144.212006F, -359.635986F)); + builder.AddCubicBezier(new Vector2(143.779999F, -359.947998F), new Vector2(143.563995F, -360.391998F), new Vector2(143.563995F, -360.967987F)); + builder.AddCubicBezier(new Vector2(143.563995F, -361.519989F), new Vector2(143.809998F, -361.963989F), new Vector2(144.302002F, -362.299988F)); + builder.AddCubicBezier(new Vector2(144.794006F, -362.635986F), new Vector2(145.507996F, -362.803986F), new Vector2(146.444F, -362.803986F)); + builder.AddCubicBezier(new Vector2(147.332001F, -362.803986F), new Vector2(148.123993F, -362.635986F), new Vector2(148.820007F, -362.299988F)); + builder.AddCubicBezier(new Vector2(149.516006F, -361.963989F), new Vector2(150.115997F, -361.484009F), new Vector2(150.619995F, -360.859985F)); + builder.AddLine(new Vector2(152.707993F, -362.947998F)); + builder.AddCubicBezier(new Vector2(152.035995F, -363.884003F), new Vector2(151.177994F, -364.585999F), new Vector2(150.134003F, -365.053986F)); + builder.AddCubicBezier(new Vector2(149.089996F, -365.522003F), new Vector2(147.895996F, -365.756012F), new Vector2(146.552002F, -365.756012F)); + builder.AddCubicBezier(new Vector2(145.279999F, -365.756012F), new Vector2(144.188004F, -365.552002F), new Vector2(143.276001F, -365.144012F)); + builder.AddCubicBezier(new Vector2(142.363998F, -364.735992F), new Vector2(141.662003F, -364.153992F), new Vector2(141.169998F, -363.39801F)); + builder.AddCubicBezier(new Vector2(140.677994F, -362.641998F), new Vector2(140.432007F, -361.747986F), new Vector2(140.432007F, -360.716003F)); + builder.AddCubicBezier(new Vector2(140.432007F, -359.68399F), new Vector2(140.654007F, -358.850006F), new Vector2(141.098007F, -358.213989F)); + builder.AddCubicBezier(new Vector2(141.542007F, -357.578003F), new Vector2(142.112F, -357.079987F), new Vector2(142.807999F, -356.720001F)); + builder.AddCubicBezier(new Vector2(143.503998F, -356.359985F), new Vector2(144.242004F, -356.071991F), new Vector2(145.022003F, -355.855988F)); + builder.AddCubicBezier(new Vector2(145.802002F, -355.640015F), new Vector2(146.539993F, -355.417999F), new Vector2(147.235992F, -355.190002F)); + builder.AddCubicBezier(new Vector2(147.932007F, -354.962006F), new Vector2(148.501999F, -354.674011F), new Vector2(148.945999F, -354.325989F)); + builder.AddCubicBezier(new Vector2(149.389999F, -353.977997F), new Vector2(149.612F, -353.492004F), new Vector2(149.612F, -352.868011F)); + builder.AddCubicBezier(new Vector2(149.612F, -352.243988F), new Vector2(149.335999F, -351.757996F), new Vector2(148.783997F, -351.410004F)); + builder.AddCubicBezier(new Vector2(148.231995F, -351.062012F), new Vector2(147.451996F, -350.888F), new Vector2(146.444F, -350.888F)); + builder.AddCubicBezier(new Vector2(145.436005F, -350.888F), new Vector2(144.524002F, -351.074005F), new Vector2(143.707993F, -351.446014F)); + builder.AddCubicBezier(new Vector2(142.891998F, -351.817993F), new Vector2(142.171997F, -352.388F), new Vector2(141.548004F, -353.156006F)); + builder.AddLine(new Vector2(139.460007F, -351.067993F)); + builder.AddCubicBezier(new Vector2(139.988007F, -350.420013F), new Vector2(140.606003F, -349.862F), new Vector2(141.313995F, -349.394012F)); + builder.AddCubicBezier(new Vector2(142.022003F, -348.925995F), new Vector2(142.807999F, -348.56601F), new Vector2(143.671997F, -348.313995F)); + builder.AddCubicBezier(new Vector2(144.535995F, -348.062012F), new Vector2(145.447998F, -347.936005F), new Vector2(146.408005F, -347.936005F)); + builder.AddCubicBezier(new Vector2(148.328003F, -347.936005F), new Vector2(149.858002F, -348.403992F), new Vector2(150.998001F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0841() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(133.376007F, -348.691986F)); + builder.AddCubicBezier(new Vector2(134.552002F, -349.196014F), new Vector2(135.559998F, -349.928009F), new Vector2(136.399994F, -350.888F)); + builder.AddLine(new Vector2(134.311996F, -353.011993F)); + builder.AddCubicBezier(new Vector2(133.735992F, -352.339996F), new Vector2(133.046005F, -351.835999F), new Vector2(132.242004F, -351.5F)); + builder.AddCubicBezier(new Vector2(131.438004F, -351.164001F), new Vector2(130.556F, -350.996002F), new Vector2(129.595993F, -350.996002F)); + builder.AddCubicBezier(new Vector2(128.444F, -350.996002F), new Vector2(127.424004F, -351.242004F), new Vector2(126.536003F, -351.734009F)); + builder.AddCubicBezier(new Vector2(125.648003F, -352.226013F), new Vector2(124.963997F, -352.921997F), new Vector2(124.484001F, -353.821991F)); + builder.AddCubicBezier(new Vector2(124.003998F, -354.721985F), new Vector2(123.764F, -355.772003F), new Vector2(123.764F, -356.971985F)); + builder.AddCubicBezier(new Vector2(123.764F, -358.14801F), new Vector2(123.991997F, -359.167999F), new Vector2(124.447998F, -360.032013F)); + builder.AddCubicBezier(new Vector2(124.903999F, -360.895996F), new Vector2(125.552002F, -361.567993F), new Vector2(126.391998F, -362.048004F)); + builder.AddCubicBezier(new Vector2(127.232002F, -362.528015F), new Vector2(128.203995F, -362.768005F), new Vector2(129.307999F, -362.768005F)); + builder.AddCubicBezier(new Vector2(130.363998F, -362.768005F), new Vector2(131.264008F, -362.54599F), new Vector2(132.007996F, -362.10199F)); + builder.AddCubicBezier(new Vector2(132.751999F, -361.65799F), new Vector2(133.328003F, -361.033997F), new Vector2(133.735992F, -360.230011F)); + builder.AddCubicBezier(new Vector2(134.143997F, -359.425995F), new Vector2(134.348007F, -358.447998F), new Vector2(134.348007F, -357.29599F)); + builder.AddLine(new Vector2(135.535995F, -358.339996F)); + builder.AddLine(new Vector2(122.828003F, -358.339996F)); + builder.AddLine(new Vector2(122.828003F, -355.640015F)); + builder.AddLine(new Vector2(137.264008F, -355.640015F)); + builder.AddCubicBezier(new Vector2(137.335999F, -355.976013F), new Vector2(137.384003F, -356.282013F), new Vector2(137.408005F, -356.558014F)); + builder.AddCubicBezier(new Vector2(137.432007F, -356.834015F), new Vector2(137.444F, -357.09201F), new Vector2(137.444F, -357.332001F)); + builder.AddCubicBezier(new Vector2(137.444F, -358.963989F), new Vector2(137.102005F, -360.415985F), new Vector2(136.417999F, -361.687988F)); + builder.AddCubicBezier(new Vector2(135.733994F, -362.959991F), new Vector2(134.779999F, -363.955994F), new Vector2(133.556F, -364.675995F)); + builder.AddCubicBezier(new Vector2(132.332001F, -365.395996F), new Vector2(130.940002F, -365.756012F), new Vector2(129.380005F, -365.756012F)); + builder.AddCubicBezier(new Vector2(127.723999F, -365.756012F), new Vector2(126.230003F, -365.365997F), new Vector2(124.898003F, -364.585999F)); + builder.AddCubicBezier(new Vector2(123.566002F, -363.806F), new Vector2(122.510002F, -362.743988F), new Vector2(121.730003F, -361.399994F)); + builder.AddCubicBezier(new Vector2(120.949997F, -360.056F), new Vector2(120.559998F, -358.544006F), new Vector2(120.559998F, -356.864014F)); + builder.AddCubicBezier(new Vector2(120.559998F, -355.160004F), new Vector2(120.956001F, -353.635986F), new Vector2(121.748001F, -352.291992F)); + builder.AddCubicBezier(new Vector2(122.540001F, -350.947998F), new Vector2(123.613998F, -349.885986F), new Vector2(124.970001F, -349.105988F)); + builder.AddCubicBezier(new Vector2(126.325996F, -348.325989F), new Vector2(127.867996F, -347.936005F), new Vector2(129.595993F, -347.936005F)); + builder.AddCubicBezier(new Vector2(130.940002F, -347.936005F), new Vector2(132.199997F, -348.187988F), new Vector2(133.376007F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0842() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(116.959999F, -374F)); + builder.AddLine(new Vector2(113.683998F, -374F)); + builder.AddLine(new Vector2(113.683998F, -361.220001F)); + builder.AddLine(new Vector2(114.295998F, -357.079987F)); + builder.AddLine(new Vector2(113.683998F, -352.903992F)); + builder.AddLine(new Vector2(113.683998F, -348.29599F)); + builder.AddLine(new Vector2(116.959999F, -348.29599F)); + builder.AddLine(new Vector2(116.959999F, -374F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(105.638F, -351.734009F)); + builder.AddCubicBezier(new Vector2(104.809998F, -352.226013F), new Vector2(104.162003F, -352.915985F), new Vector2(103.694F, -353.803986F)); + builder.AddCubicBezier(new Vector2(103.225998F, -354.691986F), new Vector2(102.991997F, -355.712006F), new Vector2(102.991997F, -356.864014F)); + builder.AddCubicBezier(new Vector2(102.991997F, -358.015991F), new Vector2(103.225998F, -359.029999F), new Vector2(103.694F, -359.906006F)); + builder.AddCubicBezier(new Vector2(104.162003F, -360.782013F), new Vector2(104.804001F, -361.466003F), new Vector2(105.620003F, -361.958008F)); + builder.AddCubicBezier(new Vector2(106.435997F, -362.450012F), new Vector2(107.384003F, -362.696014F), new Vector2(108.463997F, -362.696014F)); + builder.AddCubicBezier(new Vector2(109.543999F, -362.696014F), new Vector2(110.491997F, -362.444F), new Vector2(111.307999F, -361.940002F)); + builder.AddCubicBezier(new Vector2(112.124001F, -361.436005F), new Vector2(112.760002F, -360.746002F), new Vector2(113.216003F, -359.869995F)); + builder.AddCubicBezier(new Vector2(113.671997F, -358.993988F), new Vector2(113.900002F, -357.980011F), new Vector2(113.900002F, -356.828003F)); + builder.AddCubicBezier(new Vector2(113.900002F, -355.700012F), new Vector2(113.671997F, -354.697998F), new Vector2(113.216003F, -353.821991F)); + builder.AddCubicBezier(new Vector2(112.760002F, -352.946014F), new Vector2(112.124001F, -352.256012F), new Vector2(111.307999F, -351.752014F)); + builder.AddCubicBezier(new Vector2(110.491997F, -351.247986F), new Vector2(109.543999F, -350.996002F), new Vector2(108.463997F, -350.996002F)); + builder.AddCubicBezier(new Vector2(107.407997F, -350.996002F), new Vector2(106.466003F, -351.242004F), new Vector2(105.638F, -351.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(111.452003F, -348.746002F)); + builder.AddCubicBezier(new Vector2(112.484001F, -349.286011F), new Vector2(113.311996F, -350.036011F), new Vector2(113.935997F, -350.996002F)); + builder.AddCubicBezier(new Vector2(114.559998F, -351.955994F), new Vector2(114.907997F, -353.048004F), new Vector2(114.980003F, -354.272003F)); + builder.AddLine(new Vector2(114.980003F, -359.420013F)); + builder.AddCubicBezier(new Vector2(114.907997F, -360.667999F), new Vector2(114.554001F, -361.765991F), new Vector2(113.917999F, -362.713989F)); + builder.AddCubicBezier(new Vector2(113.281998F, -363.661987F), new Vector2(112.447998F, -364.406006F), new Vector2(111.416F, -364.946014F)); + builder.AddCubicBezier(new Vector2(110.384003F, -365.485992F), new Vector2(109.220001F, -365.756012F), new Vector2(107.924004F, -365.756012F)); + builder.AddCubicBezier(new Vector2(106.363998F, -365.756012F), new Vector2(104.959999F, -365.359985F), new Vector2(103.711998F, -364.567993F)); + builder.AddCubicBezier(new Vector2(102.463997F, -363.776001F), new Vector2(101.473999F, -362.708008F), new Vector2(100.741997F, -361.364014F)); + builder.AddCubicBezier(new Vector2(100.010002F, -360.019989F), new Vector2(99.6439972F, -358.507996F), new Vector2(99.6439972F, -356.828003F)); + builder.AddCubicBezier(new Vector2(99.6439972F, -355.14801F), new Vector2(100.010002F, -353.635986F), new Vector2(100.741997F, -352.291992F)); + builder.AddCubicBezier(new Vector2(101.473999F, -350.947998F), new Vector2(102.463997F, -349.885986F), new Vector2(103.711998F, -349.105988F)); + builder.AddCubicBezier(new Vector2(104.959999F, -348.325989F), new Vector2(106.363998F, -347.936005F), new Vector2(107.924004F, -347.936005F)); + builder.AddCubicBezier(new Vector2(109.244003F, -347.936005F), new Vector2(110.419998F, -348.205994F), new Vector2(111.452003F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0843() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(84.2360001F, -348.29599F)); + builder.AddLine(new Vector2(84.2360001F, -365.395996F)); + builder.AddLine(new Vector2(80.9960022F, -365.395996F)); + builder.AddLine(new Vector2(80.9960022F, -348.29599F)); + builder.AddLine(new Vector2(84.2360001F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(96.3320007F, -348.29599F)); + builder.AddLine(new Vector2(96.3320007F, -358.915985F)); + builder.AddCubicBezier(new Vector2(96.3320007F, -360.09201F), new Vector2(96.0439987F, -361.201996F), new Vector2(95.4680023F, -362.246002F)); + builder.AddCubicBezier(new Vector2(94.8919983F, -363.290009F), new Vector2(94.1060028F, -364.135986F), new Vector2(93.1100006F, -364.783997F)); + builder.AddCubicBezier(new Vector2(92.1139984F, -365.432007F), new Vector2(90.9680023F, -365.756012F), new Vector2(89.6719971F, -365.756012F)); + builder.AddCubicBezier(new Vector2(88.3759995F, -365.756012F), new Vector2(87.211998F, -365.462006F), new Vector2(86.1800003F, -364.873993F)); + builder.AddCubicBezier(new Vector2(85.1480026F, -364.286011F), new Vector2(84.3440018F, -363.488007F), new Vector2(83.7679977F, -362.480011F)); + builder.AddCubicBezier(new Vector2(83.1920013F, -361.471985F), new Vector2(82.9039993F, -360.320007F), new Vector2(82.9039993F, -359.023987F)); + builder.AddLine(new Vector2(84.2360001F, -358.268005F)); + builder.AddCubicBezier(new Vector2(84.2360001F, -359.131989F), new Vector2(84.4280014F, -359.899994F), new Vector2(84.8119965F, -360.571991F)); + builder.AddCubicBezier(new Vector2(85.1959991F, -361.243988F), new Vector2(85.723999F, -361.772003F), new Vector2(86.3960037F, -362.156006F)); + builder.AddCubicBezier(new Vector2(87.0680008F, -362.540009F), new Vector2(87.8359985F, -362.731995F), new Vector2(88.6999969F, -362.731995F)); + builder.AddCubicBezier(new Vector2(89.9960022F, -362.731995F), new Vector2(91.0459976F, -362.312012F), new Vector2(91.8499985F, -361.471985F)); + builder.AddCubicBezier(new Vector2(92.6539993F, -360.631989F), new Vector2(93.0559998F, -359.563995F), new Vector2(93.0559998F, -358.268005F)); + builder.AddLine(new Vector2(93.0559998F, -348.29599F)); + builder.AddLine(new Vector2(96.3320007F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0844() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(76.064003F, -369.410004F)); + builder.AddCubicBezier(new Vector2(76.447998F, -369.806F), new Vector2(76.6399994F, -370.303986F), new Vector2(76.6399994F, -370.903992F)); + builder.AddCubicBezier(new Vector2(76.6399994F, -371.480011F), new Vector2(76.447998F, -371.966003F), new Vector2(76.064003F, -372.362F)); + builder.AddCubicBezier(new Vector2(75.6800003F, -372.757996F), new Vector2(75.1880035F, -372.955994F), new Vector2(74.5879974F, -372.955994F)); + builder.AddCubicBezier(new Vector2(73.987999F, -372.955994F), new Vector2(73.4960022F, -372.757996F), new Vector2(73.1119995F, -372.362F)); + builder.AddCubicBezier(new Vector2(72.7279968F, -371.966003F), new Vector2(72.5360031F, -371.480011F), new Vector2(72.5360031F, -370.903992F)); + builder.AddCubicBezier(new Vector2(72.5360031F, -370.303986F), new Vector2(72.7279968F, -369.806F), new Vector2(73.1119995F, -369.410004F)); + builder.AddCubicBezier(new Vector2(73.4960022F, -369.014008F), new Vector2(73.987999F, -368.81601F), new Vector2(74.5879974F, -368.81601F)); + builder.AddCubicBezier(new Vector2(75.1880035F, -368.81601F), new Vector2(75.6800003F, -369.014008F), new Vector2(76.064003F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(76.2080002F, -348.29599F)); + builder.AddLine(new Vector2(76.2080002F, -365.395996F)); + builder.AddLine(new Vector2(72.9319992F, -365.395996F)); + builder.AddLine(new Vector2(72.9319992F, -348.29599F)); + builder.AddLine(new Vector2(76.2080002F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0845() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(52.987999F, -348.29599F)); + builder.AddLine(new Vector2(57.9560013F, -361.18399F)); + builder.AddLine(new Vector2(56.7680016F, -361.18399F)); + builder.AddLine(new Vector2(61.7000008F, -348.29599F)); + builder.AddLine(new Vector2(63.6080017F, -348.29599F)); + builder.AddLine(new Vector2(70.3399963F, -365.395996F)); + builder.AddLine(new Vector2(66.9560013F, -365.395996F)); + builder.AddLine(new Vector2(62.0600014F, -352.075989F)); + builder.AddLine(new Vector2(63.1399994F, -352.075989F)); + builder.AddLine(new Vector2(58.2799988F, -365.395996F)); + builder.AddLine(new Vector2(56.4080009F, -365.395996F)); + builder.AddLine(new Vector2(51.5480003F, -352.075989F)); + builder.AddLine(new Vector2(52.6279984F, -352.075989F)); + builder.AddLine(new Vector2(47.7319984F, -365.395996F)); + builder.AddLine(new Vector2(44.3479996F, -365.395996F)); + builder.AddLine(new Vector2(51.0800018F, -348.29599F)); + builder.AddLine(new Vector2(52.987999F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0846() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(28.0760002F, -361.544006F)); + builder.AddCubicBezier(new Vector2(28.8439999F, -362.312012F), new Vector2(29.8279991F, -362.696014F), new Vector2(31.0279999F, -362.696014F)); + builder.AddCubicBezier(new Vector2(31.6040001F, -362.696014F), new Vector2(32.1080017F, -362.612F), new Vector2(32.5400009F, -362.444F)); + builder.AddCubicBezier(new Vector2(32.9720001F, -362.276001F), new Vector2(33.368F, -362F), new Vector2(33.7280006F, -361.615997F)); + builder.AddLine(new Vector2(35.8520012F, -363.812012F)); + builder.AddCubicBezier(new Vector2(35.2519989F, -364.507996F), new Vector2(34.6040001F, -365.006012F), new Vector2(33.9080009F, -365.306F)); + builder.AddCubicBezier(new Vector2(33.2120018F, -365.605988F), new Vector2(32.4319992F, -365.756012F), new Vector2(31.5680008F, -365.756012F)); + builder.AddCubicBezier(new Vector2(29.6720009F, -365.756012F), new Vector2(28.2199993F, -365.108002F), new Vector2(27.2119999F, -363.812012F)); + builder.AddCubicBezier(new Vector2(26.2040005F, -362.515991F), new Vector2(25.7000008F, -360.776001F), new Vector2(25.7000008F, -358.59201F)); + builder.AddLine(new Vector2(26.9239998F, -358.015991F)); + builder.AddCubicBezier(new Vector2(26.9239998F, -359.600006F), new Vector2(27.3080006F, -360.776001F), new Vector2(28.0760002F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(26.9239998F, -348.29599F)); + builder.AddLine(new Vector2(26.9239998F, -365.395996F)); + builder.AddLine(new Vector2(23.684F, -365.395996F)); + builder.AddLine(new Vector2(23.684F, -348.29599F)); + builder.AddLine(new Vector2(26.9239998F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0847() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(16.0879993F, -348.691986F)); + builder.AddCubicBezier(new Vector2(17.2639999F, -349.196014F), new Vector2(18.2719994F, -349.928009F), new Vector2(19.1119995F, -350.888F)); + builder.AddLine(new Vector2(17.0240002F, -353.011993F)); + builder.AddCubicBezier(new Vector2(16.448F, -352.339996F), new Vector2(15.7580004F, -351.835999F), new Vector2(14.9540005F, -351.5F)); + builder.AddCubicBezier(new Vector2(14.1499996F, -351.164001F), new Vector2(13.2679996F, -350.996002F), new Vector2(12.3079996F, -350.996002F)); + builder.AddCubicBezier(new Vector2(11.1560001F, -350.996002F), new Vector2(10.1359997F, -351.242004F), new Vector2(9.24800014F, -351.734009F)); + builder.AddCubicBezier(new Vector2(8.35999966F, -352.226013F), new Vector2(7.67600012F, -352.921997F), new Vector2(7.1960001F, -353.821991F)); + builder.AddCubicBezier(new Vector2(6.71600008F, -354.721985F), new Vector2(6.47599983F, -355.772003F), new Vector2(6.47599983F, -356.971985F)); + builder.AddCubicBezier(new Vector2(6.47599983F, -358.14801F), new Vector2(6.704F, -359.167999F), new Vector2(7.15999985F, -360.032013F)); + builder.AddCubicBezier(new Vector2(7.61600018F, -360.895996F), new Vector2(8.26399994F, -361.567993F), new Vector2(9.10400009F, -362.048004F)); + builder.AddCubicBezier(new Vector2(9.94400024F, -362.528015F), new Vector2(10.9160004F, -362.768005F), new Vector2(12.0200005F, -362.768005F)); + builder.AddCubicBezier(new Vector2(13.0760002F, -362.768005F), new Vector2(13.9759998F, -362.54599F), new Vector2(14.7200003F, -362.10199F)); + builder.AddCubicBezier(new Vector2(15.4639997F, -361.65799F), new Vector2(16.0400009F, -361.033997F), new Vector2(16.448F, -360.230011F)); + builder.AddCubicBezier(new Vector2(16.8560009F, -359.425995F), new Vector2(17.0599995F, -358.447998F), new Vector2(17.0599995F, -357.29599F)); + builder.AddLine(new Vector2(18.2479992F, -358.339996F)); + builder.AddLine(new Vector2(5.53999996F, -358.339996F)); + builder.AddLine(new Vector2(5.53999996F, -355.640015F)); + builder.AddLine(new Vector2(19.9759998F, -355.640015F)); + builder.AddCubicBezier(new Vector2(20.0480003F, -355.976013F), new Vector2(20.0960007F, -356.282013F), new Vector2(20.1200008F, -356.558014F)); + builder.AddCubicBezier(new Vector2(20.1439991F, -356.834015F), new Vector2(20.1560001F, -357.09201F), new Vector2(20.1560001F, -357.332001F)); + builder.AddCubicBezier(new Vector2(20.1560001F, -358.963989F), new Vector2(19.8139992F, -360.415985F), new Vector2(19.1299992F, -361.687988F)); + builder.AddCubicBezier(new Vector2(18.4459991F, -362.959991F), new Vector2(17.4920006F, -363.955994F), new Vector2(16.2679996F, -364.675995F)); + builder.AddCubicBezier(new Vector2(15.0439997F, -365.395996F), new Vector2(13.6520004F, -365.756012F), new Vector2(12.092F, -365.756012F)); + builder.AddCubicBezier(new Vector2(10.4359999F, -365.756012F), new Vector2(8.94200039F, -365.365997F), new Vector2(7.61000013F, -364.585999F)); + builder.AddCubicBezier(new Vector2(6.27799988F, -363.806F), new Vector2(5.22200012F, -362.743988F), new Vector2(4.44199991F, -361.399994F)); + builder.AddCubicBezier(new Vector2(3.66199994F, -360.056F), new Vector2(3.27200007F, -358.544006F), new Vector2(3.27200007F, -356.864014F)); + builder.AddCubicBezier(new Vector2(3.27200007F, -355.160004F), new Vector2(3.66799998F, -353.635986F), new Vector2(4.46000004F, -352.291992F)); + builder.AddCubicBezier(new Vector2(5.25199986F, -350.947998F), new Vector2(6.32600021F, -349.885986F), new Vector2(7.68200016F, -349.105988F)); + builder.AddCubicBezier(new Vector2(9.03800011F, -348.325989F), new Vector2(10.5799999F, -347.936005F), new Vector2(12.3079996F, -347.936005F)); + builder.AddCubicBezier(new Vector2(13.6520004F, -347.936005F), new Vector2(14.9119997F, -348.187988F), new Vector2(16.0879993F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0848() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-0.328000009F, -374F)); + builder.AddLine(new Vector2(-3.60400009F, -374F)); + builder.AddLine(new Vector2(-3.60400009F, -361.220001F)); + builder.AddLine(new Vector2(-2.9920001F, -357.079987F)); + builder.AddLine(new Vector2(-3.60400009F, -352.903992F)); + builder.AddLine(new Vector2(-3.60400009F, -348.29599F)); + builder.AddLine(new Vector2(-0.328000009F, -348.29599F)); + builder.AddLine(new Vector2(-0.328000009F, -374F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-11.6499996F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-12.4779997F, -352.226013F), new Vector2(-13.1260004F, -352.915985F), new Vector2(-13.5939999F, -353.803986F)); + builder.AddCubicBezier(new Vector2(-14.0620003F, -354.691986F), new Vector2(-14.2959995F, -355.712006F), new Vector2(-14.2959995F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-14.2959995F, -358.015991F), new Vector2(-14.0620003F, -359.029999F), new Vector2(-13.5939999F, -359.906006F)); + builder.AddCubicBezier(new Vector2(-13.1260004F, -360.782013F), new Vector2(-12.4840002F, -361.466003F), new Vector2(-11.6680002F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-10.8520002F, -362.450012F), new Vector2(-9.90400028F, -362.696014F), new Vector2(-8.82400036F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-7.74399996F, -362.696014F), new Vector2(-6.796F, -362.444F), new Vector2(-5.98000002F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-5.16400003F, -361.436005F), new Vector2(-4.52799988F, -360.746002F), new Vector2(-4.07200003F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-3.61599994F, -358.993988F), new Vector2(-3.38800001F, -357.980011F), new Vector2(-3.38800001F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-3.38800001F, -355.700012F), new Vector2(-3.61599994F, -354.697998F), new Vector2(-4.07200003F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-4.52799988F, -352.946014F), new Vector2(-5.16400003F, -352.256012F), new Vector2(-5.98000002F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-6.796F, -351.247986F), new Vector2(-7.74399996F, -350.996002F), new Vector2(-8.82400036F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-9.88000011F, -350.996002F), new Vector2(-10.8219995F, -351.242004F), new Vector2(-11.6499996F, -351.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-5.83599997F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-4.8039999F, -349.286011F), new Vector2(-3.97600007F, -350.036011F), new Vector2(-3.352F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-2.72799993F, -351.955994F), new Vector2(-2.38000011F, -353.048004F), new Vector2(-2.30800009F, -354.272003F)); + builder.AddLine(new Vector2(-2.30800009F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-2.38000011F, -360.667999F), new Vector2(-2.73399997F, -361.765991F), new Vector2(-3.36999989F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-4.00600004F, -363.661987F), new Vector2(-4.84000015F, -364.406006F), new Vector2(-5.87200022F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-6.90399981F, -365.485992F), new Vector2(-8.06799984F, -365.756012F), new Vector2(-9.36400032F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-10.9239998F, -365.756012F), new Vector2(-12.3280001F, -365.359985F), new Vector2(-13.5760002F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-14.8240004F, -363.776001F), new Vector2(-15.8140001F, -362.708008F), new Vector2(-16.5459995F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-17.2779999F, -360.019989F), new Vector2(-17.6439991F, -358.507996F), new Vector2(-17.6439991F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-17.6439991F, -355.14801F), new Vector2(-17.2779999F, -353.635986F), new Vector2(-16.5459995F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-15.8140001F, -350.947998F), new Vector2(-14.8240004F, -349.885986F), new Vector2(-13.5760002F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-12.3280001F, -348.325989F), new Vector2(-10.9239998F, -347.936005F), new Vector2(-9.36400032F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-8.04399967F, -347.936005F), new Vector2(-6.86800003F, -348.205994F), new Vector2(-5.83599997F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0849() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-33.0519981F, -348.29599F)); + builder.AddLine(new Vector2(-33.0519981F, -365.395996F)); + builder.AddLine(new Vector2(-36.2919998F, -365.395996F)); + builder.AddLine(new Vector2(-36.2919998F, -348.29599F)); + builder.AddLine(new Vector2(-33.0519981F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-20.9559994F, -348.29599F)); + builder.AddLine(new Vector2(-20.9559994F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-20.9559994F, -360.09201F), new Vector2(-21.2439995F, -361.201996F), new Vector2(-21.8199997F, -362.246002F)); + builder.AddCubicBezier(new Vector2(-22.3959999F, -363.290009F), new Vector2(-23.1819992F, -364.135986F), new Vector2(-24.1779995F, -364.783997F)); + builder.AddCubicBezier(new Vector2(-25.1739998F, -365.432007F), new Vector2(-26.3199997F, -365.756012F), new Vector2(-27.6159992F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-28.9120007F, -365.756012F), new Vector2(-30.0760002F, -365.462006F), new Vector2(-31.1079998F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-32.1399994F, -364.286011F), new Vector2(-32.9440002F, -363.488007F), new Vector2(-33.5200005F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-34.0960007F, -361.471985F), new Vector2(-34.3839989F, -360.320007F), new Vector2(-34.3839989F, -359.023987F)); + builder.AddLine(new Vector2(-33.0519981F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-33.0519981F, -359.131989F), new Vector2(-32.8600006F, -359.899994F), new Vector2(-32.4760017F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-32.0919991F, -361.243988F), new Vector2(-31.5639992F, -361.772003F), new Vector2(-30.8920002F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-30.2199993F, -362.540009F), new Vector2(-29.4519997F, -362.731995F), new Vector2(-28.5879993F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-27.2919998F, -362.731995F), new Vector2(-26.2420006F, -362.312012F), new Vector2(-25.4379997F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-24.6340008F, -360.631989F), new Vector2(-24.2320004F, -359.563995F), new Vector2(-24.2320004F, -358.268005F)); + builder.AddLine(new Vector2(-24.2320004F, -348.29599F)); + builder.AddLine(new Vector2(-20.9559994F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0850() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-44.1759987F, -348.925995F)); + builder.AddCubicBezier(new Vector2(-43.0719986F, -349.537994F), new Vector2(-42.2080002F, -350.40799F), new Vector2(-41.5839996F, -351.536011F)); + builder.AddCubicBezier(new Vector2(-40.9599991F, -352.664001F), new Vector2(-40.6479988F, -353.971985F), new Vector2(-40.6479988F, -355.459991F)); + builder.AddLine(new Vector2(-40.6479988F, -365.395996F)); + builder.AddLine(new Vector2(-43.8880005F, -365.395996F)); + builder.AddLine(new Vector2(-43.8880005F, -355.604004F)); + builder.AddCubicBezier(new Vector2(-43.8880005F, -354.187988F), new Vector2(-44.2480011F, -353.078003F), new Vector2(-44.9679985F, -352.273987F)); + builder.AddCubicBezier(new Vector2(-45.6879997F, -351.470001F), new Vector2(-46.6839981F, -351.067993F), new Vector2(-47.9560013F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-48.7960014F, -351.067993F), new Vector2(-49.5279999F, -351.247986F), new Vector2(-50.1520004F, -351.608002F)); + builder.AddCubicBezier(new Vector2(-50.776001F, -351.967987F), new Vector2(-51.25F, -352.48999F), new Vector2(-51.5740013F, -353.174011F)); + builder.AddCubicBezier(new Vector2(-51.8979988F, -353.858002F), new Vector2(-52.0600014F, -354.667999F), new Vector2(-52.0600014F, -355.604004F)); + builder.AddLine(new Vector2(-52.0600014F, -365.395996F)); + builder.AddLine(new Vector2(-55.2999992F, -365.395996F)); + builder.AddLine(new Vector2(-55.2999992F, -355.459991F)); + builder.AddCubicBezier(new Vector2(-55.2999992F, -353.971985F), new Vector2(-54.987999F, -352.664001F), new Vector2(-54.3639984F, -351.536011F)); + builder.AddCubicBezier(new Vector2(-53.7400017F, -350.40799F), new Vector2(-52.8699989F, -349.537994F), new Vector2(-51.7540016F, -348.925995F)); + builder.AddCubicBezier(new Vector2(-50.6380005F, -348.313995F), new Vector2(-49.3720016F, -348.007996F), new Vector2(-47.9560013F, -348.007996F)); + builder.AddCubicBezier(new Vector2(-46.5400009F, -348.007996F), new Vector2(-45.2799988F, -348.313995F), new Vector2(-44.1759987F, -348.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0851() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-76.5039978F, -341.131989F)); + builder.AddLine(new Vector2(-73.2639999F, -348.152008F)); + builder.AddLine(new Vector2(-75.0999985F, -351.463989F)); + builder.AddLine(new Vector2(-80.1039963F, -341.131989F)); + builder.AddLine(new Vector2(-76.5039978F, -341.131989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-73.2639999F, -348.152008F)); + builder.AddLine(new Vector2(-65.2720032F, -365.395996F)); + builder.AddLine(new Vector2(-68.8720016F, -365.395996F)); + builder.AddLine(new Vector2(-74.6679993F, -351.895996F)); + builder.AddLine(new Vector2(-73.5159988F, -351.895996F)); + builder.AddLine(new Vector2(-79.0240021F, -365.395996F)); + builder.AddLine(new Vector2(-82.6240005F, -365.395996F)); + builder.AddLine(new Vector2(-75.2080002F, -348.152008F)); + builder.AddLine(new Vector2(-73.2639999F, -348.152008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0852() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-85.5759964F, -348.29599F)); + builder.AddLine(new Vector2(-85.5759964F, -374F)); + builder.AddLine(new Vector2(-88.8160019F, -374F)); + builder.AddLine(new Vector2(-88.8160019F, -348.29599F)); + builder.AddLine(new Vector2(-85.5759964F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0853() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-91.9840012F, -362.444F)); + builder.AddLine(new Vector2(-91.9840012F, -365.395996F)); + builder.AddLine(new Vector2(-103.648003F, -365.395996F)); + builder.AddLine(new Vector2(-103.648003F, -362.444F)); + builder.AddLine(new Vector2(-91.9840012F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-96.1959991F, -348.29599F)); + builder.AddLine(new Vector2(-96.1959991F, -372.559998F)); + builder.AddLine(new Vector2(-99.435997F, -372.559998F)); + builder.AddLine(new Vector2(-99.435997F, -348.29599F)); + builder.AddLine(new Vector2(-96.1959991F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0854() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-118.335999F, -348.29599F)); + builder.AddLine(new Vector2(-118.335999F, -365.395996F)); + builder.AddLine(new Vector2(-121.575996F, -365.395996F)); + builder.AddLine(new Vector2(-121.575996F, -348.29599F)); + builder.AddLine(new Vector2(-118.335999F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-106.239998F, -348.29599F)); + builder.AddLine(new Vector2(-106.239998F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-106.239998F, -360.09201F), new Vector2(-106.528F, -361.201996F), new Vector2(-107.103996F, -362.246002F)); + builder.AddCubicBezier(new Vector2(-107.68F, -363.290009F), new Vector2(-108.466003F, -364.135986F), new Vector2(-109.461998F, -364.783997F)); + builder.AddCubicBezier(new Vector2(-110.458F, -365.432007F), new Vector2(-111.603996F, -365.756012F), new Vector2(-112.900002F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-114.195999F, -365.756012F), new Vector2(-115.360001F, -365.462006F), new Vector2(-116.391998F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-117.424004F, -364.286011F), new Vector2(-118.227997F, -363.488007F), new Vector2(-118.804001F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-119.379997F, -361.471985F), new Vector2(-119.667999F, -360.320007F), new Vector2(-119.667999F, -359.023987F)); + builder.AddLine(new Vector2(-118.335999F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-118.335999F, -359.131989F), new Vector2(-118.143997F, -359.899994F), new Vector2(-117.760002F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-117.375999F, -361.243988F), new Vector2(-116.848F, -361.772003F), new Vector2(-116.176003F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-115.503998F, -362.540009F), new Vector2(-114.736F, -362.731995F), new Vector2(-113.872002F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-112.575996F, -362.731995F), new Vector2(-111.526001F, -362.312012F), new Vector2(-110.722F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-109.917999F, -360.631989F), new Vector2(-109.515999F, -359.563995F), new Vector2(-109.515999F, -358.268005F)); + builder.AddLine(new Vector2(-109.515999F, -348.29599F)); + builder.AddLine(new Vector2(-106.239998F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0855() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-129.171997F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-127.996002F, -349.196014F), new Vector2(-126.987999F, -349.928009F), new Vector2(-126.148003F, -350.888F)); + builder.AddLine(new Vector2(-128.235992F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-128.811996F, -352.339996F), new Vector2(-129.501999F, -351.835999F), new Vector2(-130.306F, -351.5F)); + builder.AddCubicBezier(new Vector2(-131.110001F, -351.164001F), new Vector2(-131.992004F, -350.996002F), new Vector2(-132.951996F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-134.104004F, -350.996002F), new Vector2(-135.123993F, -351.242004F), new Vector2(-136.011993F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-136.899994F, -352.226013F), new Vector2(-137.584F, -352.921997F), new Vector2(-138.063995F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-138.544006F, -354.721985F), new Vector2(-138.783997F, -355.772003F), new Vector2(-138.783997F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-138.783997F, -358.14801F), new Vector2(-138.556F, -359.167999F), new Vector2(-138.100006F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-137.643997F, -360.895996F), new Vector2(-136.996002F, -361.567993F), new Vector2(-136.156006F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-135.315994F, -362.528015F), new Vector2(-134.343994F, -362.768005F), new Vector2(-133.240005F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-132.184006F, -362.768005F), new Vector2(-131.283997F, -362.54599F), new Vector2(-130.539993F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-129.796005F, -361.65799F), new Vector2(-129.220001F, -361.033997F), new Vector2(-128.811996F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-128.404007F, -359.425995F), new Vector2(-128.199997F, -358.447998F), new Vector2(-128.199997F, -357.29599F)); + builder.AddLine(new Vector2(-127.012001F, -358.339996F)); + builder.AddLine(new Vector2(-139.720001F, -358.339996F)); + builder.AddLine(new Vector2(-139.720001F, -355.640015F)); + builder.AddLine(new Vector2(-125.283997F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-125.211998F, -355.976013F), new Vector2(-125.164001F, -356.282013F), new Vector2(-125.139999F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-125.115997F, -356.834015F), new Vector2(-125.103996F, -357.09201F), new Vector2(-125.103996F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-125.103996F, -358.963989F), new Vector2(-125.445999F, -360.415985F), new Vector2(-126.129997F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-126.814003F, -362.959991F), new Vector2(-127.767998F, -363.955994F), new Vector2(-128.992004F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-130.216003F, -365.395996F), new Vector2(-131.608002F, -365.756012F), new Vector2(-133.167999F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-134.824005F, -365.756012F), new Vector2(-136.317993F, -365.365997F), new Vector2(-137.649994F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-138.981995F, -363.806F), new Vector2(-140.037994F, -362.743988F), new Vector2(-140.817993F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-141.598007F, -360.056F), new Vector2(-141.988007F, -358.544006F), new Vector2(-141.988007F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-141.988007F, -355.160004F), new Vector2(-141.591995F, -353.635986F), new Vector2(-140.800003F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-140.007996F, -350.947998F), new Vector2(-138.934006F, -349.885986F), new Vector2(-137.578003F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-136.222F, -348.325989F), new Vector2(-134.679993F, -347.936005F), new Vector2(-132.951996F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-131.608002F, -347.936005F), new Vector2(-130.348007F, -348.187988F), new Vector2(-129.171997F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0856() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-150.376007F, -361.544006F)); + builder.AddCubicBezier(new Vector2(-149.608002F, -362.312012F), new Vector2(-148.623993F, -362.696014F), new Vector2(-147.423996F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-146.848007F, -362.696014F), new Vector2(-146.343994F, -362.612F), new Vector2(-145.912003F, -362.444F)); + builder.AddCubicBezier(new Vector2(-145.479996F, -362.276001F), new Vector2(-145.084F, -362F), new Vector2(-144.723999F, -361.615997F)); + builder.AddLine(new Vector2(-142.600006F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-143.199997F, -364.507996F), new Vector2(-143.848007F, -365.006012F), new Vector2(-144.544006F, -365.306F)); + builder.AddCubicBezier(new Vector2(-145.240005F, -365.605988F), new Vector2(-146.020004F, -365.756012F), new Vector2(-146.884003F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-148.779999F, -365.756012F), new Vector2(-150.231995F, -365.108002F), new Vector2(-151.240005F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-152.248001F, -362.515991F), new Vector2(-152.751999F, -360.776001F), new Vector2(-152.751999F, -358.59201F)); + builder.AddLine(new Vector2(-151.528F, -358.015991F)); + builder.AddCubicBezier(new Vector2(-151.528F, -359.600006F), new Vector2(-151.143997F, -360.776001F), new Vector2(-150.376007F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-151.528F, -348.29599F)); + builder.AddLine(new Vector2(-151.528F, -365.395996F)); + builder.AddLine(new Vector2(-154.768005F, -365.395996F)); + builder.AddLine(new Vector2(-154.768005F, -348.29599F)); + builder.AddLine(new Vector2(-151.528F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0857() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-164.884003F, -361.544006F)); + builder.AddCubicBezier(new Vector2(-164.115997F, -362.312012F), new Vector2(-163.132004F, -362.696014F), new Vector2(-161.932007F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-161.356003F, -362.696014F), new Vector2(-160.852005F, -362.612F), new Vector2(-160.419998F, -362.444F)); + builder.AddCubicBezier(new Vector2(-159.988007F, -362.276001F), new Vector2(-159.591995F, -362F), new Vector2(-159.231995F, -361.615997F)); + builder.AddLine(new Vector2(-157.108002F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-157.707993F, -364.507996F), new Vector2(-158.356003F, -365.006012F), new Vector2(-159.052002F, -365.306F)); + builder.AddCubicBezier(new Vector2(-159.748001F, -365.605988F), new Vector2(-160.528F, -365.756012F), new Vector2(-161.391998F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-163.287994F, -365.756012F), new Vector2(-164.740005F, -365.108002F), new Vector2(-165.748001F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-166.755997F, -362.515991F), new Vector2(-167.259995F, -360.776001F), new Vector2(-167.259995F, -358.59201F)); + builder.AddLine(new Vector2(-166.035995F, -358.015991F)); + builder.AddCubicBezier(new Vector2(-166.035995F, -359.600006F), new Vector2(-165.651993F, -360.776001F), new Vector2(-164.884003F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-166.035995F, -348.29599F)); + builder.AddLine(new Vector2(-166.035995F, -365.395996F)); + builder.AddLine(new Vector2(-169.276001F, -365.395996F)); + builder.AddLine(new Vector2(-169.276001F, -348.29599F)); + builder.AddLine(new Vector2(-166.035995F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0858() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-177.160004F, -348.925995F)); + builder.AddCubicBezier(new Vector2(-176.056F, -349.537994F), new Vector2(-175.192001F, -350.40799F), new Vector2(-174.567993F, -351.536011F)); + builder.AddCubicBezier(new Vector2(-173.944F, -352.664001F), new Vector2(-173.632004F, -353.971985F), new Vector2(-173.632004F, -355.459991F)); + builder.AddLine(new Vector2(-173.632004F, -365.395996F)); + builder.AddLine(new Vector2(-176.871994F, -365.395996F)); + builder.AddLine(new Vector2(-176.871994F, -355.604004F)); + builder.AddCubicBezier(new Vector2(-176.871994F, -354.187988F), new Vector2(-177.231995F, -353.078003F), new Vector2(-177.951996F, -352.273987F)); + builder.AddCubicBezier(new Vector2(-178.671997F, -351.470001F), new Vector2(-179.667999F, -351.067993F), new Vector2(-180.940002F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-181.779999F, -351.067993F), new Vector2(-182.511993F, -351.247986F), new Vector2(-183.136002F, -351.608002F)); + builder.AddCubicBezier(new Vector2(-183.759995F, -351.967987F), new Vector2(-184.233994F, -352.48999F), new Vector2(-184.557999F, -353.174011F)); + builder.AddCubicBezier(new Vector2(-184.882004F, -353.858002F), new Vector2(-185.044006F, -354.667999F), new Vector2(-185.044006F, -355.604004F)); + builder.AddLine(new Vector2(-185.044006F, -365.395996F)); + builder.AddLine(new Vector2(-188.283997F, -365.395996F)); + builder.AddLine(new Vector2(-188.283997F, -355.459991F)); + builder.AddCubicBezier(new Vector2(-188.283997F, -353.971985F), new Vector2(-187.972F, -352.664001F), new Vector2(-187.348007F, -351.536011F)); + builder.AddCubicBezier(new Vector2(-186.723999F, -350.40799F), new Vector2(-185.854004F, -349.537994F), new Vector2(-184.738007F, -348.925995F)); + builder.AddCubicBezier(new Vector2(-183.621994F, -348.313995F), new Vector2(-182.356003F, -348.007996F), new Vector2(-180.940002F, -348.007996F)); + builder.AddCubicBezier(new Vector2(-179.524002F, -348.007996F), new Vector2(-178.264008F, -348.313995F), new Vector2(-177.160004F, -348.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0859() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-193.953995F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-192.813995F, -349.196014F), new Vector2(-191.848007F, -349.903992F), new Vector2(-191.056F, -350.81601F)); + builder.AddLine(new Vector2(-193.179993F, -352.976013F)); + builder.AddCubicBezier(new Vector2(-193.731995F, -352.35199F), new Vector2(-194.386002F, -351.877991F), new Vector2(-195.141998F, -351.553986F)); + builder.AddCubicBezier(new Vector2(-195.897995F, -351.230011F), new Vector2(-196.731995F, -351.067993F), new Vector2(-197.643997F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-198.723999F, -351.067993F), new Vector2(-199.684006F, -351.320007F), new Vector2(-200.524002F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-201.363998F, -352.328003F), new Vector2(-202.024002F, -353.011993F), new Vector2(-202.503998F, -353.876007F)); + builder.AddCubicBezier(new Vector2(-202.983994F, -354.73999F), new Vector2(-203.223999F, -355.735992F), new Vector2(-203.223999F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-203.223999F, -357.992004F), new Vector2(-202.983994F, -358.988007F), new Vector2(-202.503998F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-202.024002F, -360.716003F), new Vector2(-201.363998F, -361.394012F), new Vector2(-200.524002F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-199.684006F, -362.377991F), new Vector2(-198.723999F, -362.623993F), new Vector2(-197.643997F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-196.755997F, -362.623993F), new Vector2(-195.927994F, -362.462006F), new Vector2(-195.160004F, -362.138F)); + builder.AddCubicBezier(new Vector2(-194.391998F, -361.813995F), new Vector2(-193.744003F, -361.339996F), new Vector2(-193.216003F, -360.716003F)); + builder.AddLine(new Vector2(-191.056F, -362.876007F)); + builder.AddCubicBezier(new Vector2(-191.871994F, -363.812012F), new Vector2(-192.843994F, -364.526001F), new Vector2(-193.972F, -365.018005F)); + builder.AddCubicBezier(new Vector2(-195.100006F, -365.51001F), new Vector2(-196.324005F, -365.756012F), new Vector2(-197.643997F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-199.324005F, -365.756012F), new Vector2(-200.841995F, -365.365997F), new Vector2(-202.197998F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-203.554001F, -363.806F), new Vector2(-204.621994F, -362.743988F), new Vector2(-205.401993F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-206.182007F, -360.056F), new Vector2(-206.572006F, -358.544006F), new Vector2(-206.572006F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-206.572006F, -355.208008F), new Vector2(-206.182007F, -353.701996F), new Vector2(-205.401993F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-204.621994F, -350.98999F), new Vector2(-203.554001F, -349.915985F), new Vector2(-202.197998F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-200.841995F, -348.332001F), new Vector2(-199.324005F, -347.936005F), new Vector2(-197.643997F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-196.324005F, -347.936005F), new Vector2(-195.093994F, -348.187988F), new Vector2(-193.953995F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0860() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-218.253998F, -349.339996F)); + builder.AddCubicBezier(new Vector2(-217.113998F, -350.276001F), new Vector2(-216.544006F, -351.548004F), new Vector2(-216.544006F, -353.156006F)); + builder.AddCubicBezier(new Vector2(-216.544006F, -354.212006F), new Vector2(-216.766006F, -355.063995F), new Vector2(-217.210007F, -355.712006F)); + builder.AddCubicBezier(new Vector2(-217.654007F, -356.359985F), new Vector2(-218.223999F, -356.876007F), new Vector2(-218.919998F, -357.26001F)); + builder.AddCubicBezier(new Vector2(-219.615997F, -357.644012F), new Vector2(-220.348007F, -357.950012F), new Vector2(-221.115997F, -358.178009F)); + builder.AddCubicBezier(new Vector2(-221.884003F, -358.406006F), new Vector2(-222.621994F, -358.627991F), new Vector2(-223.330002F, -358.843994F)); + builder.AddCubicBezier(new Vector2(-224.037994F, -359.059998F), new Vector2(-224.608002F, -359.324005F), new Vector2(-225.039993F, -359.635986F)); + builder.AddCubicBezier(new Vector2(-225.472F, -359.947998F), new Vector2(-225.688004F, -360.391998F), new Vector2(-225.688004F, -360.967987F)); + builder.AddCubicBezier(new Vector2(-225.688004F, -361.519989F), new Vector2(-225.442001F, -361.963989F), new Vector2(-224.949997F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-224.457993F, -362.635986F), new Vector2(-223.744003F, -362.803986F), new Vector2(-222.807999F, -362.803986F)); + builder.AddCubicBezier(new Vector2(-221.919998F, -362.803986F), new Vector2(-221.128006F, -362.635986F), new Vector2(-220.432007F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-219.735992F, -361.963989F), new Vector2(-219.136002F, -361.484009F), new Vector2(-218.632004F, -360.859985F)); + builder.AddLine(new Vector2(-216.544006F, -362.947998F)); + builder.AddCubicBezier(new Vector2(-217.216003F, -363.884003F), new Vector2(-218.074005F, -364.585999F), new Vector2(-219.117996F, -365.053986F)); + builder.AddCubicBezier(new Vector2(-220.162003F, -365.522003F), new Vector2(-221.356003F, -365.756012F), new Vector2(-222.699997F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-223.972F, -365.756012F), new Vector2(-225.063995F, -365.552002F), new Vector2(-225.975998F, -365.144012F)); + builder.AddCubicBezier(new Vector2(-226.888F, -364.735992F), new Vector2(-227.589996F, -364.153992F), new Vector2(-228.082001F, -363.39801F)); + builder.AddCubicBezier(new Vector2(-228.574005F, -362.641998F), new Vector2(-228.820007F, -361.747986F), new Vector2(-228.820007F, -360.716003F)); + builder.AddCubicBezier(new Vector2(-228.820007F, -359.68399F), new Vector2(-228.598007F, -358.850006F), new Vector2(-228.154007F, -358.213989F)); + builder.AddCubicBezier(new Vector2(-227.710007F, -357.578003F), new Vector2(-227.139999F, -357.079987F), new Vector2(-226.444F, -356.720001F)); + builder.AddCubicBezier(new Vector2(-225.748001F, -356.359985F), new Vector2(-225.009995F, -356.071991F), new Vector2(-224.229996F, -355.855988F)); + builder.AddCubicBezier(new Vector2(-223.449997F, -355.640015F), new Vector2(-222.712006F, -355.417999F), new Vector2(-222.016006F, -355.190002F)); + builder.AddCubicBezier(new Vector2(-221.320007F, -354.962006F), new Vector2(-220.75F, -354.674011F), new Vector2(-220.306F, -354.325989F)); + builder.AddCubicBezier(new Vector2(-219.862F, -353.977997F), new Vector2(-219.639999F, -353.492004F), new Vector2(-219.639999F, -352.868011F)); + builder.AddCubicBezier(new Vector2(-219.639999F, -352.243988F), new Vector2(-219.916F, -351.757996F), new Vector2(-220.468002F, -351.410004F)); + builder.AddCubicBezier(new Vector2(-221.020004F, -351.062012F), new Vector2(-221.800003F, -350.888F), new Vector2(-222.807999F, -350.888F)); + builder.AddCubicBezier(new Vector2(-223.815994F, -350.888F), new Vector2(-224.727997F, -351.074005F), new Vector2(-225.544006F, -351.446014F)); + builder.AddCubicBezier(new Vector2(-226.360001F, -351.817993F), new Vector2(-227.080002F, -352.388F), new Vector2(-227.703995F, -353.156006F)); + builder.AddLine(new Vector2(-229.792007F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-229.264008F, -350.420013F), new Vector2(-228.645996F, -349.862F), new Vector2(-227.938004F, -349.394012F)); + builder.AddCubicBezier(new Vector2(-227.229996F, -348.925995F), new Vector2(-226.444F, -348.56601F), new Vector2(-225.580002F, -348.313995F)); + builder.AddCubicBezier(new Vector2(-224.716003F, -348.062012F), new Vector2(-223.804001F, -347.936005F), new Vector2(-222.843994F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-220.923996F, -347.936005F), new Vector2(-219.393997F, -348.403992F), new Vector2(-218.253998F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0861() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-233.212006F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-232.828003F, -369.806F), new Vector2(-232.636002F, -370.303986F), new Vector2(-232.636002F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-232.636002F, -371.480011F), new Vector2(-232.828003F, -371.966003F), new Vector2(-233.212006F, -372.362F)); + builder.AddCubicBezier(new Vector2(-233.595993F, -372.757996F), new Vector2(-234.087997F, -372.955994F), new Vector2(-234.688004F, -372.955994F)); + builder.AddCubicBezier(new Vector2(-235.287994F, -372.955994F), new Vector2(-235.779999F, -372.757996F), new Vector2(-236.164001F, -372.362F)); + builder.AddCubicBezier(new Vector2(-236.548004F, -371.966003F), new Vector2(-236.740005F, -371.480011F), new Vector2(-236.740005F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-236.740005F, -370.303986F), new Vector2(-236.548004F, -369.806F), new Vector2(-236.164001F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-235.779999F, -369.014008F), new Vector2(-235.287994F, -368.81601F), new Vector2(-234.688004F, -368.81601F)); + builder.AddCubicBezier(new Vector2(-234.087997F, -368.81601F), new Vector2(-233.595993F, -369.014008F), new Vector2(-233.212006F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-233.067993F, -348.29599F)); + builder.AddLine(new Vector2(-233.067993F, -365.395996F)); + builder.AddLine(new Vector2(-236.343994F, -365.395996F)); + builder.AddLine(new Vector2(-236.343994F, -348.29599F)); + builder.AddLine(new Vector2(-233.067993F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0862() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-248.511993F, -348.29599F)); + builder.AddLine(new Vector2(-248.511993F, -365.395996F)); + builder.AddLine(new Vector2(-251.787994F, -365.395996F)); + builder.AddLine(new Vector2(-251.787994F, -361.220001F)); + builder.AddLine(new Vector2(-251.175995F, -357.079987F)); + builder.AddLine(new Vector2(-251.787994F, -352.903992F)); + builder.AddLine(new Vector2(-251.787994F, -348.29599F)); + builder.AddLine(new Vector2(-248.511993F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-259.81601F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-260.656006F, -352.256012F), new Vector2(-261.309998F, -352.946014F), new Vector2(-261.778015F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-262.246002F, -354.697998F), new Vector2(-262.480011F, -355.712006F), new Vector2(-262.480011F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-262.480011F, -357.992004F), new Vector2(-262.246002F, -358.993988F), new Vector2(-261.778015F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-261.309998F, -360.746002F), new Vector2(-260.661987F, -361.436005F), new Vector2(-259.834015F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-259.006012F, -362.444F), new Vector2(-258.052002F, -362.696014F), new Vector2(-256.971985F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-255.891998F, -362.696014F), new Vector2(-254.949997F, -362.450012F), new Vector2(-254.145996F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-253.341995F, -361.466003F), new Vector2(-252.712006F, -360.776001F), new Vector2(-252.255997F, -359.888F)); + builder.AddCubicBezier(new Vector2(-251.800003F, -359F), new Vector2(-251.572006F, -357.980011F), new Vector2(-251.572006F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-251.572006F, -355.123993F), new Vector2(-252.063995F, -353.726013F), new Vector2(-253.048004F, -352.634003F)); + builder.AddCubicBezier(new Vector2(-254.031998F, -351.541992F), new Vector2(-255.328003F, -350.996002F), new Vector2(-256.936005F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-258.015991F, -350.996002F), new Vector2(-258.976013F, -351.247986F), new Vector2(-259.81601F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-253.983994F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-252.951996F, -349.286011F), new Vector2(-252.130005F, -350.036011F), new Vector2(-251.518005F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-250.906006F, -351.955994F), new Vector2(-250.563995F, -353.048004F), new Vector2(-250.492004F, -354.272003F)); + builder.AddLine(new Vector2(-250.492004F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-250.563995F, -360.667999F), new Vector2(-250.912003F, -361.765991F), new Vector2(-251.535995F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-252.160004F, -363.661987F), new Vector2(-252.981995F, -364.406006F), new Vector2(-254.001999F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-255.022003F, -365.485992F), new Vector2(-256.179993F, -365.756012F), new Vector2(-257.476013F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-259.059998F, -365.756012F), new Vector2(-260.481995F, -365.359985F), new Vector2(-261.742004F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-263.002014F, -363.776001F), new Vector2(-263.997986F, -362.708008F), new Vector2(-264.730011F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-265.462006F, -360.019989F), new Vector2(-265.828003F, -358.507996F), new Vector2(-265.828003F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-265.828003F, -355.14801F), new Vector2(-265.462006F, -353.635986F), new Vector2(-264.730011F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-263.997986F, -350.947998F), new Vector2(-263.002014F, -349.885986F), new Vector2(-261.742004F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-260.481995F, -348.325989F), new Vector2(-259.059998F, -347.936005F), new Vector2(-257.476013F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-256.179993F, -347.936005F), new Vector2(-255.016006F, -348.205994F), new Vector2(-253.983994F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0863() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-269.679993F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-269.29599F, -369.806F), new Vector2(-269.104004F, -370.303986F), new Vector2(-269.104004F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-269.104004F, -371.480011F), new Vector2(-269.29599F, -371.966003F), new Vector2(-269.679993F, -372.362F)); + builder.AddCubicBezier(new Vector2(-270.063995F, -372.757996F), new Vector2(-270.556F, -372.955994F), new Vector2(-271.156006F, -372.955994F)); + builder.AddCubicBezier(new Vector2(-271.756012F, -372.955994F), new Vector2(-272.247986F, -372.757996F), new Vector2(-272.631989F, -372.362F)); + builder.AddCubicBezier(new Vector2(-273.015991F, -371.966003F), new Vector2(-273.208008F, -371.480011F), new Vector2(-273.208008F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-273.208008F, -370.303986F), new Vector2(-273.015991F, -369.806F), new Vector2(-272.631989F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-272.247986F, -369.014008F), new Vector2(-271.756012F, -368.81601F), new Vector2(-271.156006F, -368.81601F)); + builder.AddCubicBezier(new Vector2(-270.556F, -368.81601F), new Vector2(-270.063995F, -369.014008F), new Vector2(-269.679993F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-269.536011F, -348.29599F)); + builder.AddLine(new Vector2(-269.536011F, -365.395996F)); + builder.AddLine(new Vector2(-272.812012F, -365.395996F)); + builder.AddLine(new Vector2(-272.812012F, -348.29599F)); + builder.AddLine(new Vector2(-269.536011F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0864() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-278.15799F, -349.339996F)); + builder.AddCubicBezier(new Vector2(-277.018005F, -350.276001F), new Vector2(-276.447998F, -351.548004F), new Vector2(-276.447998F, -353.156006F)); + builder.AddCubicBezier(new Vector2(-276.447998F, -354.212006F), new Vector2(-276.670013F, -355.063995F), new Vector2(-277.114014F, -355.712006F)); + builder.AddCubicBezier(new Vector2(-277.558014F, -356.359985F), new Vector2(-278.127991F, -356.876007F), new Vector2(-278.824005F, -357.26001F)); + builder.AddCubicBezier(new Vector2(-279.519989F, -357.644012F), new Vector2(-280.252014F, -357.950012F), new Vector2(-281.019989F, -358.178009F)); + builder.AddCubicBezier(new Vector2(-281.787994F, -358.406006F), new Vector2(-282.526001F, -358.627991F), new Vector2(-283.234009F, -358.843994F)); + builder.AddCubicBezier(new Vector2(-283.941986F, -359.059998F), new Vector2(-284.511993F, -359.324005F), new Vector2(-284.944F, -359.635986F)); + builder.AddCubicBezier(new Vector2(-285.376007F, -359.947998F), new Vector2(-285.59201F, -360.391998F), new Vector2(-285.59201F, -360.967987F)); + builder.AddCubicBezier(new Vector2(-285.59201F, -361.519989F), new Vector2(-285.346008F, -361.963989F), new Vector2(-284.854004F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-284.362F, -362.635986F), new Vector2(-283.64801F, -362.803986F), new Vector2(-282.712006F, -362.803986F)); + builder.AddCubicBezier(new Vector2(-281.824005F, -362.803986F), new Vector2(-281.032013F, -362.635986F), new Vector2(-280.335999F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-279.640015F, -361.963989F), new Vector2(-279.040009F, -361.484009F), new Vector2(-278.536011F, -360.859985F)); + builder.AddLine(new Vector2(-276.447998F, -362.947998F)); + builder.AddCubicBezier(new Vector2(-277.119995F, -363.884003F), new Vector2(-277.977997F, -364.585999F), new Vector2(-279.022003F, -365.053986F)); + builder.AddCubicBezier(new Vector2(-280.06601F, -365.522003F), new Vector2(-281.26001F, -365.756012F), new Vector2(-282.604004F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-283.876007F, -365.756012F), new Vector2(-284.967987F, -365.552002F), new Vector2(-285.880005F, -365.144012F)); + builder.AddCubicBezier(new Vector2(-286.791992F, -364.735992F), new Vector2(-287.493988F, -364.153992F), new Vector2(-287.985992F, -363.39801F)); + builder.AddCubicBezier(new Vector2(-288.477997F, -362.641998F), new Vector2(-288.723999F, -361.747986F), new Vector2(-288.723999F, -360.716003F)); + builder.AddCubicBezier(new Vector2(-288.723999F, -359.68399F), new Vector2(-288.502014F, -358.850006F), new Vector2(-288.058014F, -358.213989F)); + builder.AddCubicBezier(new Vector2(-287.614014F, -357.578003F), new Vector2(-287.044006F, -357.079987F), new Vector2(-286.347992F, -356.720001F)); + builder.AddCubicBezier(new Vector2(-285.652008F, -356.359985F), new Vector2(-284.914001F, -356.071991F), new Vector2(-284.134003F, -355.855988F)); + builder.AddCubicBezier(new Vector2(-283.354004F, -355.640015F), new Vector2(-282.615997F, -355.417999F), new Vector2(-281.920013F, -355.190002F)); + builder.AddCubicBezier(new Vector2(-281.223999F, -354.962006F), new Vector2(-280.653992F, -354.674011F), new Vector2(-280.209991F, -354.325989F)); + builder.AddCubicBezier(new Vector2(-279.765991F, -353.977997F), new Vector2(-279.544006F, -353.492004F), new Vector2(-279.544006F, -352.868011F)); + builder.AddCubicBezier(new Vector2(-279.544006F, -352.243988F), new Vector2(-279.820007F, -351.757996F), new Vector2(-280.372009F, -351.410004F)); + builder.AddCubicBezier(new Vector2(-280.924011F, -351.062012F), new Vector2(-281.70401F, -350.888F), new Vector2(-282.712006F, -350.888F)); + builder.AddCubicBezier(new Vector2(-283.720001F, -350.888F), new Vector2(-284.631989F, -351.074005F), new Vector2(-285.447998F, -351.446014F)); + builder.AddCubicBezier(new Vector2(-286.264008F, -351.817993F), new Vector2(-286.984009F, -352.388F), new Vector2(-287.608002F, -353.156006F)); + builder.AddLine(new Vector2(-289.696014F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-289.167999F, -350.420013F), new Vector2(-288.549988F, -349.862F), new Vector2(-287.84201F, -349.394012F)); + builder.AddCubicBezier(new Vector2(-287.134003F, -348.925995F), new Vector2(-286.347992F, -348.56601F), new Vector2(-285.484009F, -348.313995F)); + builder.AddCubicBezier(new Vector2(-284.619995F, -348.062012F), new Vector2(-283.708008F, -347.936005F), new Vector2(-282.747986F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-280.828003F, -347.936005F), new Vector2(-279.298004F, -348.403992F), new Vector2(-278.15799F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0865() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-295.779999F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-294.604004F, -349.196014F), new Vector2(-293.596008F, -349.928009F), new Vector2(-292.756012F, -350.888F)); + builder.AddLine(new Vector2(-294.843994F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-295.420013F, -352.339996F), new Vector2(-296.109985F, -351.835999F), new Vector2(-296.914001F, -351.5F)); + builder.AddCubicBezier(new Vector2(-297.717987F, -351.164001F), new Vector2(-298.600006F, -350.996002F), new Vector2(-299.559998F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-300.712006F, -350.996002F), new Vector2(-301.731995F, -351.242004F), new Vector2(-302.619995F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-303.507996F, -352.226013F), new Vector2(-304.191986F, -352.921997F), new Vector2(-304.671997F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-305.152008F, -354.721985F), new Vector2(-305.391998F, -355.772003F), new Vector2(-305.391998F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-305.391998F, -358.14801F), new Vector2(-305.164001F, -359.167999F), new Vector2(-304.708008F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-304.252014F, -360.895996F), new Vector2(-303.604004F, -361.567993F), new Vector2(-302.764008F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-301.924011F, -362.528015F), new Vector2(-300.951996F, -362.768005F), new Vector2(-299.847992F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-298.791992F, -362.768005F), new Vector2(-297.891998F, -362.54599F), new Vector2(-297.14801F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-296.403992F, -361.65799F), new Vector2(-295.828003F, -361.033997F), new Vector2(-295.420013F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-295.011993F, -359.425995F), new Vector2(-294.808014F, -358.447998F), new Vector2(-294.808014F, -357.29599F)); + builder.AddLine(new Vector2(-293.619995F, -358.339996F)); + builder.AddLine(new Vector2(-306.328003F, -358.339996F)); + builder.AddLine(new Vector2(-306.328003F, -355.640015F)); + builder.AddLine(new Vector2(-291.891998F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-291.820007F, -355.976013F), new Vector2(-291.772003F, -356.282013F), new Vector2(-291.747986F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-291.723999F, -356.834015F), new Vector2(-291.712006F, -357.09201F), new Vector2(-291.712006F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-291.712006F, -358.963989F), new Vector2(-292.053986F, -360.415985F), new Vector2(-292.738007F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-293.421997F, -362.959991F), new Vector2(-294.376007F, -363.955994F), new Vector2(-295.600006F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-296.824005F, -365.395996F), new Vector2(-298.216003F, -365.756012F), new Vector2(-299.776001F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-301.432007F, -365.756012F), new Vector2(-302.925995F, -365.365997F), new Vector2(-304.257996F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-305.589996F, -363.806F), new Vector2(-306.645996F, -362.743988F), new Vector2(-307.425995F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-308.205994F, -360.056F), new Vector2(-308.596008F, -358.544006F), new Vector2(-308.596008F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-308.596008F, -355.160004F), new Vector2(-308.200012F, -353.635986F), new Vector2(-307.40799F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-306.615997F, -350.947998F), new Vector2(-305.541992F, -349.885986F), new Vector2(-304.186005F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-302.829987F, -348.325989F), new Vector2(-301.287994F, -347.936005F), new Vector2(-299.559998F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-298.216003F, -347.936005F), new Vector2(-296.955994F, -348.187988F), new Vector2(-295.779999F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0866() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-323.967987F, -348.29599F)); + builder.AddLine(new Vector2(-323.967987F, -365.395996F)); + builder.AddLine(new Vector2(-327.208008F, -365.395996F)); + builder.AddLine(new Vector2(-327.208008F, -348.29599F)); + builder.AddLine(new Vector2(-323.967987F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-311.872009F, -348.29599F)); + builder.AddLine(new Vector2(-311.872009F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-311.872009F, -360.09201F), new Vector2(-312.160004F, -361.201996F), new Vector2(-312.735992F, -362.246002F)); + builder.AddCubicBezier(new Vector2(-313.312012F, -363.290009F), new Vector2(-314.097992F, -364.135986F), new Vector2(-315.093994F, -364.783997F)); + builder.AddCubicBezier(new Vector2(-316.089996F, -365.432007F), new Vector2(-317.235992F, -365.756012F), new Vector2(-318.532013F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-319.828003F, -365.756012F), new Vector2(-320.992004F, -365.462006F), new Vector2(-322.023987F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-323.056F, -364.286011F), new Vector2(-323.859985F, -363.488007F), new Vector2(-324.436005F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-325.011993F, -361.471985F), new Vector2(-325.299988F, -360.320007F), new Vector2(-325.299988F, -359.023987F)); + builder.AddLine(new Vector2(-323.967987F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-323.967987F, -359.131989F), new Vector2(-323.776001F, -359.899994F), new Vector2(-323.391998F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-323.007996F, -361.243988F), new Vector2(-322.480011F, -361.772003F), new Vector2(-321.808014F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-321.135986F, -362.540009F), new Vector2(-320.368011F, -362.731995F), new Vector2(-319.503998F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-318.208008F, -362.731995F), new Vector2(-317.15799F, -362.312012F), new Vector2(-316.354004F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-315.549988F, -360.631989F), new Vector2(-315.14801F, -359.563995F), new Vector2(-315.14801F, -358.268005F)); + builder.AddLine(new Vector2(-315.14801F, -348.29599F)); + builder.AddLine(new Vector2(-311.872009F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0867() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-342.615997F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-343.455994F, -352.328003F), new Vector2(-344.115997F, -353.018005F), new Vector2(-344.596008F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-345.075989F, -354.769989F), new Vector2(-345.31601F, -355.772003F), new Vector2(-345.31601F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-345.31601F, -358.003998F), new Vector2(-345.075989F, -358.988007F), new Vector2(-344.596008F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-344.115997F, -360.716003F), new Vector2(-343.455994F, -361.394012F), new Vector2(-342.615997F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-341.776001F, -362.377991F), new Vector2(-340.828003F, -362.623993F), new Vector2(-339.772003F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-338.667999F, -362.623993F), new Vector2(-337.701996F, -362.377991F), new Vector2(-336.873993F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-336.04599F, -361.394012F), new Vector2(-335.385986F, -360.716003F), new Vector2(-334.894012F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-334.402008F, -358.988007F), new Vector2(-334.156006F, -358.003998F), new Vector2(-334.156006F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-334.156006F, -355.772003F), new Vector2(-334.395996F, -354.769989F), new Vector2(-334.876007F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-335.355988F, -353.018005F), new Vector2(-336.015991F, -352.328003F), new Vector2(-336.855988F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-337.696014F, -351.320007F), new Vector2(-338.667999F, -351.067993F), new Vector2(-339.772003F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-340.828003F, -351.067993F), new Vector2(-341.776001F, -351.320007F), new Vector2(-342.615997F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-335.217987F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-333.862F, -349.915985F), new Vector2(-332.787994F, -350.98999F), new Vector2(-331.996002F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-331.20401F, -353.701996F), new Vector2(-330.808014F, -355.220001F), new Vector2(-330.808014F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-330.808014F, -358.556F), new Vector2(-331.20401F, -360.056F), new Vector2(-331.996002F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-332.787994F, -362.743988F), new Vector2(-333.862F, -363.806F), new Vector2(-335.217987F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-336.574005F, -365.365997F), new Vector2(-338.09201F, -365.756012F), new Vector2(-339.772003F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-341.428009F, -365.756012F), new Vector2(-342.928009F, -365.359985F), new Vector2(-344.272003F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-345.615997F, -363.776001F), new Vector2(-346.68399F, -362.713989F), new Vector2(-347.476013F, -361.381989F)); + builder.AddCubicBezier(new Vector2(-348.268005F, -360.049988F), new Vector2(-348.664001F, -358.556F), new Vector2(-348.664001F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-348.664001F, -355.220001F), new Vector2(-348.268005F, -353.701996F), new Vector2(-347.476013F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-346.68399F, -350.98999F), new Vector2(-345.615997F, -349.915985F), new Vector2(-344.272003F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-342.928009F, -348.332001F), new Vector2(-341.428009F, -347.936005F), new Vector2(-339.772003F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-338.09201F, -347.936005F), new Vector2(-336.574005F, -348.332001F), new Vector2(-335.217987F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0868() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-352.264008F, -374F)); + builder.AddLine(new Vector2(-355.540009F, -374F)); + builder.AddLine(new Vector2(-355.540009F, -361.220001F)); + builder.AddLine(new Vector2(-354.928009F, -357.079987F)); + builder.AddLine(new Vector2(-355.540009F, -352.903992F)); + builder.AddLine(new Vector2(-355.540009F, -348.29599F)); + builder.AddLine(new Vector2(-352.264008F, -348.29599F)); + builder.AddLine(new Vector2(-352.264008F, -374F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-363.585999F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-364.414001F, -352.226013F), new Vector2(-365.062012F, -352.915985F), new Vector2(-365.529999F, -353.803986F)); + builder.AddCubicBezier(new Vector2(-365.997986F, -354.691986F), new Vector2(-366.231995F, -355.712006F), new Vector2(-366.231995F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-366.231995F, -358.015991F), new Vector2(-365.997986F, -359.029999F), new Vector2(-365.529999F, -359.906006F)); + builder.AddCubicBezier(new Vector2(-365.062012F, -360.782013F), new Vector2(-364.420013F, -361.466003F), new Vector2(-363.604004F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-362.787994F, -362.450012F), new Vector2(-361.839996F, -362.696014F), new Vector2(-360.76001F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-359.679993F, -362.696014F), new Vector2(-358.731995F, -362.444F), new Vector2(-357.915985F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-357.100006F, -361.436005F), new Vector2(-356.463989F, -360.746002F), new Vector2(-356.007996F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-355.552002F, -358.993988F), new Vector2(-355.324005F, -357.980011F), new Vector2(-355.324005F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-355.324005F, -355.700012F), new Vector2(-355.552002F, -354.697998F), new Vector2(-356.007996F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-356.463989F, -352.946014F), new Vector2(-357.100006F, -352.256012F), new Vector2(-357.915985F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-358.731995F, -351.247986F), new Vector2(-359.679993F, -350.996002F), new Vector2(-360.76001F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-361.81601F, -350.996002F), new Vector2(-362.757996F, -351.242004F), new Vector2(-363.585999F, -351.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-357.772003F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-356.73999F, -349.286011F), new Vector2(-355.911987F, -350.036011F), new Vector2(-355.287994F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-354.664001F, -351.955994F), new Vector2(-354.31601F, -353.048004F), new Vector2(-354.243988F, -354.272003F)); + builder.AddLine(new Vector2(-354.243988F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-354.31601F, -360.667999F), new Vector2(-354.670013F, -361.765991F), new Vector2(-355.306F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-355.941986F, -363.661987F), new Vector2(-356.776001F, -364.406006F), new Vector2(-357.808014F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-358.839996F, -365.485992F), new Vector2(-360.003998F, -365.756012F), new Vector2(-361.299988F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-362.859985F, -365.756012F), new Vector2(-364.264008F, -365.359985F), new Vector2(-365.511993F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-366.76001F, -363.776001F), new Vector2(-367.75F, -362.708008F), new Vector2(-368.481995F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-369.213989F, -360.019989F), new Vector2(-369.579987F, -358.507996F), new Vector2(-369.579987F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-369.579987F, -355.14801F), new Vector2(-369.213989F, -353.635986F), new Vector2(-368.481995F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-367.75F, -350.947998F), new Vector2(-366.76001F, -349.885986F), new Vector2(-365.511993F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-364.264008F, -348.325989F), new Vector2(-362.859985F, -347.936005F), new Vector2(-361.299988F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-359.980011F, -347.936005F), new Vector2(-358.803986F, -348.205994F), new Vector2(-357.772003F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0869() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-384.988007F, -348.29599F)); + builder.AddLine(new Vector2(-384.988007F, -365.395996F)); + builder.AddLine(new Vector2(-388.227997F, -365.395996F)); + builder.AddLine(new Vector2(-388.227997F, -348.29599F)); + builder.AddLine(new Vector2(-384.988007F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-372.891998F, -348.29599F)); + builder.AddLine(new Vector2(-372.891998F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-372.891998F, -360.09201F), new Vector2(-373.179993F, -361.201996F), new Vector2(-373.756012F, -362.246002F)); + builder.AddCubicBezier(new Vector2(-374.332001F, -363.290009F), new Vector2(-375.118011F, -364.135986F), new Vector2(-376.114014F, -364.783997F)); + builder.AddCubicBezier(new Vector2(-377.109985F, -365.432007F), new Vector2(-378.256012F, -365.756012F), new Vector2(-379.552002F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-380.847992F, -365.756012F), new Vector2(-382.011993F, -365.462006F), new Vector2(-383.044006F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-384.075989F, -364.286011F), new Vector2(-384.880005F, -363.488007F), new Vector2(-385.455994F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-386.032013F, -361.471985F), new Vector2(-386.320007F, -360.320007F), new Vector2(-386.320007F, -359.023987F)); + builder.AddLine(new Vector2(-384.988007F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-384.988007F, -359.131989F), new Vector2(-384.79599F, -359.899994F), new Vector2(-384.411987F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-384.028015F, -361.243988F), new Vector2(-383.5F, -361.772003F), new Vector2(-382.828003F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-382.156006F, -362.540009F), new Vector2(-381.388F, -362.731995F), new Vector2(-380.523987F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-379.227997F, -362.731995F), new Vector2(-378.178009F, -362.312012F), new Vector2(-377.373993F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-376.570007F, -360.631989F), new Vector2(-376.167999F, -359.563995F), new Vector2(-376.167999F, -358.268005F)); + builder.AddLine(new Vector2(-376.167999F, -348.29599F)); + builder.AddLine(new Vector2(-372.891998F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0870() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-393.556F, -348.29599F)); + builder.AddLine(new Vector2(-393.556F, -373.279999F)); + builder.AddLine(new Vector2(-396.940002F, -373.279999F)); + builder.AddLine(new Vector2(-396.940002F, -348.29599F)); + builder.AddLine(new Vector2(-393.556F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0871() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-412.85199F, -343.328003F)); + builder.AddLine(new Vector2(-410.440002F, -347.791992F)); + builder.AddCubicBezier(new Vector2(-410.127991F, -348.391998F), new Vector2(-409.917999F, -348.877991F), new Vector2(-409.809998F, -349.25F)); + builder.AddCubicBezier(new Vector2(-409.701996F, -349.622009F), new Vector2(-409.64801F, -349.940002F), new Vector2(-409.64801F, -350.20401F)); + builder.AddCubicBezier(new Vector2(-409.64801F, -350.899994F), new Vector2(-409.888F, -351.481995F), new Vector2(-410.368011F, -351.950012F)); + builder.AddCubicBezier(new Vector2(-410.847992F, -352.417999F), new Vector2(-411.399994F, -352.652008F), new Vector2(-412.023987F, -352.652008F)); + builder.AddCubicBezier(new Vector2(-412.720001F, -352.652008F), new Vector2(-413.29599F, -352.417999F), new Vector2(-413.752014F, -351.950012F)); + builder.AddCubicBezier(new Vector2(-414.208008F, -351.481995F), new Vector2(-414.436005F, -350.899994F), new Vector2(-414.436005F, -350.20401F)); + builder.AddCubicBezier(new Vector2(-414.436005F, -349.579987F), new Vector2(-414.226013F, -349.058014F), new Vector2(-413.806F, -348.638F)); + builder.AddCubicBezier(new Vector2(-413.385986F, -348.217987F), new Vector2(-412.924011F, -348.007996F), new Vector2(-412.420013F, -348.007996F)); + builder.AddCubicBezier(new Vector2(-412.179993F, -348.007996F), new Vector2(-411.963989F, -348.09201F), new Vector2(-411.772003F, -348.26001F)); + builder.AddCubicBezier(new Vector2(-411.579987F, -348.428009F), new Vector2(-411.424011F, -348.644012F), new Vector2(-411.303986F, -348.90799F)); + builder.AddLine(new Vector2(-412.455994F, -348.619995F)); + builder.AddLine(new Vector2(-414.687988F, -344.335999F)); + builder.AddLine(new Vector2(-412.85199F, -343.328003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0872() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-420.213989F, -349.339996F)); + builder.AddCubicBezier(new Vector2(-419.074005F, -350.276001F), new Vector2(-418.503998F, -351.548004F), new Vector2(-418.503998F, -353.156006F)); + builder.AddCubicBezier(new Vector2(-418.503998F, -354.212006F), new Vector2(-418.726013F, -355.063995F), new Vector2(-419.170013F, -355.712006F)); + builder.AddCubicBezier(new Vector2(-419.614014F, -356.359985F), new Vector2(-420.18399F, -356.876007F), new Vector2(-420.880005F, -357.26001F)); + builder.AddCubicBezier(new Vector2(-421.575989F, -357.644012F), new Vector2(-422.308014F, -357.950012F), new Vector2(-423.075989F, -358.178009F)); + builder.AddCubicBezier(new Vector2(-423.843994F, -358.406006F), new Vector2(-424.582001F, -358.627991F), new Vector2(-425.290009F, -358.843994F)); + builder.AddCubicBezier(new Vector2(-425.997986F, -359.059998F), new Vector2(-426.567993F, -359.324005F), new Vector2(-427F, -359.635986F)); + builder.AddCubicBezier(new Vector2(-427.432007F, -359.947998F), new Vector2(-427.64801F, -360.391998F), new Vector2(-427.64801F, -360.967987F)); + builder.AddCubicBezier(new Vector2(-427.64801F, -361.519989F), new Vector2(-427.402008F, -361.963989F), new Vector2(-426.910004F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-426.417999F, -362.635986F), new Vector2(-425.70401F, -362.803986F), new Vector2(-424.768005F, -362.803986F)); + builder.AddCubicBezier(new Vector2(-423.880005F, -362.803986F), new Vector2(-423.088013F, -362.635986F), new Vector2(-422.391998F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-421.696014F, -361.963989F), new Vector2(-421.096008F, -361.484009F), new Vector2(-420.59201F, -360.859985F)); + builder.AddLine(new Vector2(-418.503998F, -362.947998F)); + builder.AddCubicBezier(new Vector2(-419.175995F, -363.884003F), new Vector2(-420.033997F, -364.585999F), new Vector2(-421.078003F, -365.053986F)); + builder.AddCubicBezier(new Vector2(-422.122009F, -365.522003F), new Vector2(-423.31601F, -365.756012F), new Vector2(-424.660004F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-425.932007F, -365.756012F), new Vector2(-427.023987F, -365.552002F), new Vector2(-427.936005F, -365.144012F)); + builder.AddCubicBezier(new Vector2(-428.847992F, -364.735992F), new Vector2(-429.549988F, -364.153992F), new Vector2(-430.041992F, -363.39801F)); + builder.AddCubicBezier(new Vector2(-430.533997F, -362.641998F), new Vector2(-430.779999F, -361.747986F), new Vector2(-430.779999F, -360.716003F)); + builder.AddCubicBezier(new Vector2(-430.779999F, -359.68399F), new Vector2(-430.558014F, -358.850006F), new Vector2(-430.114014F, -358.213989F)); + builder.AddCubicBezier(new Vector2(-429.670013F, -357.578003F), new Vector2(-429.100006F, -357.079987F), new Vector2(-428.403992F, -356.720001F)); + builder.AddCubicBezier(new Vector2(-427.708008F, -356.359985F), new Vector2(-426.970001F, -356.071991F), new Vector2(-426.190002F, -355.855988F)); + builder.AddCubicBezier(new Vector2(-425.410004F, -355.640015F), new Vector2(-424.671997F, -355.417999F), new Vector2(-423.976013F, -355.190002F)); + builder.AddCubicBezier(new Vector2(-423.279999F, -354.962006F), new Vector2(-422.709991F, -354.674011F), new Vector2(-422.265991F, -354.325989F)); + builder.AddCubicBezier(new Vector2(-421.821991F, -353.977997F), new Vector2(-421.600006F, -353.492004F), new Vector2(-421.600006F, -352.868011F)); + builder.AddCubicBezier(new Vector2(-421.600006F, -352.243988F), new Vector2(-421.876007F, -351.757996F), new Vector2(-422.428009F, -351.410004F)); + builder.AddCubicBezier(new Vector2(-422.980011F, -351.062012F), new Vector2(-423.76001F, -350.888F), new Vector2(-424.768005F, -350.888F)); + builder.AddCubicBezier(new Vector2(-425.776001F, -350.888F), new Vector2(-426.687988F, -351.074005F), new Vector2(-427.503998F, -351.446014F)); + builder.AddCubicBezier(new Vector2(-428.320007F, -351.817993F), new Vector2(-429.040009F, -352.388F), new Vector2(-429.664001F, -353.156006F)); + builder.AddLine(new Vector2(-431.752014F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-431.223999F, -350.420013F), new Vector2(-430.605988F, -349.862F), new Vector2(-429.89801F, -349.394012F)); + builder.AddCubicBezier(new Vector2(-429.190002F, -348.925995F), new Vector2(-428.403992F, -348.56601F), new Vector2(-427.540009F, -348.313995F)); + builder.AddCubicBezier(new Vector2(-426.675995F, -348.062012F), new Vector2(-425.764008F, -347.936005F), new Vector2(-424.803986F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-422.884003F, -347.936005F), new Vector2(-421.354004F, -348.403992F), new Vector2(-420.213989F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0873() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-443.776001F, -341.131989F)); + builder.AddLine(new Vector2(-440.536011F, -348.152008F)); + builder.AddLine(new Vector2(-442.372009F, -351.463989F)); + builder.AddLine(new Vector2(-447.376007F, -341.131989F)); + builder.AddLine(new Vector2(-443.776001F, -341.131989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-440.536011F, -348.152008F)); + builder.AddLine(new Vector2(-432.544006F, -365.395996F)); + builder.AddLine(new Vector2(-436.144012F, -365.395996F)); + builder.AddLine(new Vector2(-441.940002F, -351.895996F)); + builder.AddLine(new Vector2(-440.787994F, -351.895996F)); + builder.AddLine(new Vector2(-446.29599F, -365.395996F)); + builder.AddLine(new Vector2(-449.895996F, -365.395996F)); + builder.AddLine(new Vector2(-442.480011F, -348.152008F)); + builder.AddLine(new Vector2(-440.536011F, -348.152008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0874() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-452.812012F, -348.29599F)); + builder.AddLine(new Vector2(-452.812012F, -365.395996F)); + builder.AddLine(new Vector2(-456.088013F, -365.395996F)); + builder.AddLine(new Vector2(-456.088013F, -361.220001F)); + builder.AddLine(new Vector2(-455.476013F, -357.079987F)); + builder.AddLine(new Vector2(-456.088013F, -352.903992F)); + builder.AddLine(new Vector2(-456.088013F, -348.29599F)); + builder.AddLine(new Vector2(-452.812012F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-464.115997F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-464.955994F, -352.256012F), new Vector2(-465.609985F, -352.946014F), new Vector2(-466.078003F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-466.54599F, -354.697998F), new Vector2(-466.779999F, -355.712006F), new Vector2(-466.779999F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-466.779999F, -357.992004F), new Vector2(-466.54599F, -358.993988F), new Vector2(-466.078003F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-465.609985F, -360.746002F), new Vector2(-464.962006F, -361.436005F), new Vector2(-464.134003F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-463.306F, -362.444F), new Vector2(-462.35199F, -362.696014F), new Vector2(-461.272003F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-460.191986F, -362.696014F), new Vector2(-459.25F, -362.450012F), new Vector2(-458.446014F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-457.641998F, -361.466003F), new Vector2(-457.011993F, -360.776001F), new Vector2(-456.556F, -359.888F)); + builder.AddCubicBezier(new Vector2(-456.100006F, -359F), new Vector2(-455.872009F, -357.980011F), new Vector2(-455.872009F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-455.872009F, -355.123993F), new Vector2(-456.364014F, -353.726013F), new Vector2(-457.347992F, -352.634003F)); + builder.AddCubicBezier(new Vector2(-458.332001F, -351.541992F), new Vector2(-459.627991F, -350.996002F), new Vector2(-461.235992F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-462.31601F, -350.996002F), new Vector2(-463.276001F, -351.247986F), new Vector2(-464.115997F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-458.283997F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-457.252014F, -349.286011F), new Vector2(-456.429993F, -350.036011F), new Vector2(-455.817993F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-455.205994F, -351.955994F), new Vector2(-454.864014F, -353.048004F), new Vector2(-454.791992F, -354.272003F)); + builder.AddLine(new Vector2(-454.791992F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-454.864014F, -360.667999F), new Vector2(-455.212006F, -361.765991F), new Vector2(-455.835999F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-456.459991F, -363.661987F), new Vector2(-457.282013F, -364.406006F), new Vector2(-458.302002F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-459.321991F, -365.485992F), new Vector2(-460.480011F, -365.756012F), new Vector2(-461.776001F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-463.359985F, -365.756012F), new Vector2(-464.782013F, -365.359985F), new Vector2(-466.041992F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-467.302002F, -363.776001F), new Vector2(-468.298004F, -362.708008F), new Vector2(-469.029999F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-469.761993F, -360.019989F), new Vector2(-470.127991F, -358.507996F), new Vector2(-470.127991F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-470.127991F, -355.14801F), new Vector2(-469.761993F, -353.635986F), new Vector2(-469.029999F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-468.298004F, -350.947998F), new Vector2(-467.302002F, -349.885986F), new Vector2(-466.041992F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-464.782013F, -348.325989F), new Vector2(-463.359985F, -347.936005F), new Vector2(-461.776001F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-460.480011F, -347.936005F), new Vector2(-459.31601F, -348.205994F), new Vector2(-458.283997F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0875() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-473.764008F, -374F)); + builder.AddLine(new Vector2(-477.040009F, -374F)); + builder.AddLine(new Vector2(-477.040009F, -361.220001F)); + builder.AddLine(new Vector2(-476.428009F, -357.079987F)); + builder.AddLine(new Vector2(-477.040009F, -352.903992F)); + builder.AddLine(new Vector2(-477.040009F, -348.29599F)); + builder.AddLine(new Vector2(-473.764008F, -348.29599F)); + builder.AddLine(new Vector2(-473.764008F, -374F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-485.085999F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-485.914001F, -352.226013F), new Vector2(-486.562012F, -352.915985F), new Vector2(-487.029999F, -353.803986F)); + builder.AddCubicBezier(new Vector2(-487.497986F, -354.691986F), new Vector2(-487.731995F, -355.712006F), new Vector2(-487.731995F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-487.731995F, -358.015991F), new Vector2(-487.497986F, -359.029999F), new Vector2(-487.029999F, -359.906006F)); + builder.AddCubicBezier(new Vector2(-486.562012F, -360.782013F), new Vector2(-485.920013F, -361.466003F), new Vector2(-485.104004F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-484.287994F, -362.450012F), new Vector2(-483.339996F, -362.696014F), new Vector2(-482.26001F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-481.179993F, -362.696014F), new Vector2(-480.231995F, -362.444F), new Vector2(-479.415985F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-478.600006F, -361.436005F), new Vector2(-477.963989F, -360.746002F), new Vector2(-477.507996F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-477.052002F, -358.993988F), new Vector2(-476.824005F, -357.980011F), new Vector2(-476.824005F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-476.824005F, -355.700012F), new Vector2(-477.052002F, -354.697998F), new Vector2(-477.507996F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-477.963989F, -352.946014F), new Vector2(-478.600006F, -352.256012F), new Vector2(-479.415985F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-480.231995F, -351.247986F), new Vector2(-481.179993F, -350.996002F), new Vector2(-482.26001F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-483.31601F, -350.996002F), new Vector2(-484.257996F, -351.242004F), new Vector2(-485.085999F, -351.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-479.272003F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-478.23999F, -349.286011F), new Vector2(-477.411987F, -350.036011F), new Vector2(-476.787994F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-476.164001F, -351.955994F), new Vector2(-475.81601F, -353.048004F), new Vector2(-475.743988F, -354.272003F)); + builder.AddLine(new Vector2(-475.743988F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-475.81601F, -360.667999F), new Vector2(-476.170013F, -361.765991F), new Vector2(-476.806F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-477.441986F, -363.661987F), new Vector2(-478.276001F, -364.406006F), new Vector2(-479.308014F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-480.339996F, -365.485992F), new Vector2(-481.503998F, -365.756012F), new Vector2(-482.799988F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-484.359985F, -365.756012F), new Vector2(-485.764008F, -365.359985F), new Vector2(-487.011993F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-488.26001F, -363.776001F), new Vector2(-489.25F, -362.708008F), new Vector2(-489.981995F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-490.713989F, -360.019989F), new Vector2(-491.079987F, -358.507996F), new Vector2(-491.079987F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-491.079987F, -355.14801F), new Vector2(-490.713989F, -353.635986F), new Vector2(-489.981995F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-489.25F, -350.947998F), new Vector2(-488.26001F, -349.885986F), new Vector2(-487.011993F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-485.764008F, -348.325989F), new Vector2(-484.359985F, -347.936005F), new Vector2(-482.799988F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-481.480011F, -347.936005F), new Vector2(-480.303986F, -348.205994F), new Vector2(-479.272003F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0876() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-513.382019F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-514.210022F, -352.813995F), new Vector2(-514.857971F, -353.467987F), new Vector2(-515.325989F, -354.308014F)); + builder.AddCubicBezier(new Vector2(-515.794006F, -355.14801F), new Vector2(-516.028015F, -356.108002F), new Vector2(-516.028015F, -357.187988F)); + builder.AddCubicBezier(new Vector2(-516.028015F, -358.268005F), new Vector2(-515.794006F, -359.221985F), new Vector2(-515.325989F, -360.049988F)); + builder.AddCubicBezier(new Vector2(-514.857971F, -360.877991F), new Vector2(-514.216003F, -361.526001F), new Vector2(-513.400024F, -361.993988F)); + builder.AddCubicBezier(new Vector2(-512.583984F, -362.462006F), new Vector2(-511.635986F, -362.696014F), new Vector2(-510.556F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-509.5F, -362.696014F), new Vector2(-508.570007F, -362.462006F), new Vector2(-507.765991F, -361.993988F)); + builder.AddCubicBezier(new Vector2(-506.962006F, -361.526001F), new Vector2(-506.338013F, -360.877991F), new Vector2(-505.894012F, -360.049988F)); + builder.AddCubicBezier(new Vector2(-505.450012F, -359.221985F), new Vector2(-505.227997F, -358.256012F), new Vector2(-505.227997F, -357.152008F)); + builder.AddCubicBezier(new Vector2(-505.227997F, -356.048004F), new Vector2(-505.450012F, -355.082001F), new Vector2(-505.894012F, -354.253998F)); + builder.AddCubicBezier(new Vector2(-506.338013F, -353.425995F), new Vector2(-506.955994F, -352.783997F), new Vector2(-507.747986F, -352.328003F)); + builder.AddCubicBezier(new Vector2(-508.540009F, -351.872009F), new Vector2(-509.476013F, -351.644012F), new Vector2(-510.556F, -351.644012F)); + builder.AddCubicBezier(new Vector2(-511.612F, -351.644012F), new Vector2(-512.554016F, -351.877991F), new Vector2(-513.382019F, -352.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-507.640015F, -349.376007F)); + builder.AddCubicBezier(new Vector2(-506.608002F, -349.903992F), new Vector2(-505.786011F, -350.641998F), new Vector2(-505.174011F, -351.589996F)); + builder.AddCubicBezier(new Vector2(-504.562012F, -352.537994F), new Vector2(-504.220001F, -353.635986F), new Vector2(-504.14801F, -354.884003F)); + builder.AddLine(new Vector2(-504.14801F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-504.220001F, -360.691986F), new Vector2(-504.556F, -361.802002F), new Vector2(-505.156006F, -362.75F)); + builder.AddCubicBezier(new Vector2(-505.756012F, -363.697998F), new Vector2(-506.578003F, -364.436005F), new Vector2(-507.622009F, -364.963989F)); + builder.AddCubicBezier(new Vector2(-508.665985F, -365.492004F), new Vector2(-509.859985F, -365.756012F), new Vector2(-511.20401F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-512.73999F, -365.756012F), new Vector2(-514.132019F, -365.377991F), new Vector2(-515.380005F, -364.622009F)); + builder.AddCubicBezier(new Vector2(-516.627991F, -363.865997F), new Vector2(-517.606018F, -362.846008F), new Vector2(-518.314026F, -361.562012F)); + builder.AddCubicBezier(new Vector2(-519.021973F, -360.278015F), new Vector2(-519.375977F, -358.820007F), new Vector2(-519.375977F, -357.187988F)); + builder.AddCubicBezier(new Vector2(-519.375977F, -355.556F), new Vector2(-519.015991F, -354.085999F), new Vector2(-518.296021F, -352.778015F)); + builder.AddCubicBezier(new Vector2(-517.575989F, -351.470001F), new Vector2(-516.598022F, -350.444F), new Vector2(-515.362F, -349.700012F)); + builder.AddCubicBezier(new Vector2(-514.125977F, -348.955994F), new Vector2(-512.728027F, -348.584015F), new Vector2(-511.167999F, -348.584015F)); + builder.AddCubicBezier(new Vector2(-509.847992F, -348.584015F), new Vector2(-508.671997F, -348.847992F), new Vector2(-507.640015F, -349.376007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-506.470001F, -341.798004F)); + builder.AddCubicBezier(new Vector2(-505.114014F, -342.481995F), new Vector2(-504.058014F, -343.441986F), new Vector2(-503.302002F, -344.678009F)); + builder.AddCubicBezier(new Vector2(-502.54599F, -345.914001F), new Vector2(-502.167999F, -347.347992F), new Vector2(-502.167999F, -348.980011F)); + builder.AddLine(new Vector2(-502.167999F, -365.395996F)); + builder.AddLine(new Vector2(-505.40799F, -365.395996F)); + builder.AddLine(new Vector2(-505.40799F, -360.895996F)); + builder.AddLine(new Vector2(-504.832001F, -357.079987F)); + builder.AddLine(new Vector2(-505.40799F, -353.227997F)); + builder.AddLine(new Vector2(-505.40799F, -348.980011F)); + builder.AddCubicBezier(new Vector2(-505.40799F, -347.420013F), new Vector2(-505.924011F, -346.178009F), new Vector2(-506.955994F, -345.253998F)); + builder.AddCubicBezier(new Vector2(-507.988007F, -344.329987F), new Vector2(-509.368011F, -343.868011F), new Vector2(-511.096008F, -343.868011F)); + builder.AddCubicBezier(new Vector2(-512.416016F, -343.868011F), new Vector2(-513.55603F, -344.10199F), new Vector2(-514.515991F, -344.570007F)); + builder.AddCubicBezier(new Vector2(-515.476013F, -345.037994F), new Vector2(-516.304016F, -345.716003F), new Vector2(-517F, -346.604004F)); + builder.AddLine(new Vector2(-519.124023F, -344.480011F)); + builder.AddCubicBezier(new Vector2(-518.283997F, -343.303986F), new Vector2(-517.192017F, -342.391998F), new Vector2(-515.848022F, -341.743988F)); + builder.AddCubicBezier(new Vector2(-514.504028F, -341.096008F), new Vector2(-512.94397F, -340.772003F), new Vector2(-511.167999F, -340.772003F)); + builder.AddCubicBezier(new Vector2(-509.391998F, -340.772003F), new Vector2(-507.825989F, -341.114014F), new Vector2(-506.470001F, -341.798004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0877() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-534.747986F, -348.29599F)); + builder.AddLine(new Vector2(-534.747986F, -365.395996F)); + builder.AddLine(new Vector2(-537.987976F, -365.395996F)); + builder.AddLine(new Vector2(-537.987976F, -348.29599F)); + builder.AddLine(new Vector2(-534.747986F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-522.651978F, -348.29599F)); + builder.AddLine(new Vector2(-522.651978F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-522.651978F, -360.09201F), new Vector2(-522.940002F, -361.201996F), new Vector2(-523.515991F, -362.246002F)); + builder.AddCubicBezier(new Vector2(-524.09198F, -363.290009F), new Vector2(-524.877991F, -364.135986F), new Vector2(-525.874023F, -364.783997F)); + builder.AddCubicBezier(new Vector2(-526.869995F, -365.432007F), new Vector2(-528.015991F, -365.756012F), new Vector2(-529.312012F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-530.607971F, -365.756012F), new Vector2(-531.771973F, -365.462006F), new Vector2(-532.804016F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-533.835999F, -364.286011F), new Vector2(-534.640015F, -363.488007F), new Vector2(-535.216003F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-535.791992F, -361.471985F), new Vector2(-536.080017F, -360.320007F), new Vector2(-536.080017F, -359.023987F)); + builder.AddLine(new Vector2(-534.747986F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-534.747986F, -359.131989F), new Vector2(-534.55603F, -359.899994F), new Vector2(-534.171997F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-533.788025F, -361.243988F), new Vector2(-533.26001F, -361.772003F), new Vector2(-532.588013F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-531.916016F, -362.540009F), new Vector2(-531.14801F, -362.731995F), new Vector2(-530.283997F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-528.987976F, -362.731995F), new Vector2(-527.937988F, -362.312012F), new Vector2(-527.133972F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-526.330017F, -360.631989F), new Vector2(-525.927979F, -359.563995F), new Vector2(-525.927979F, -358.268005F)); + builder.AddLine(new Vector2(-525.927979F, -348.29599F)); + builder.AddLine(new Vector2(-522.651978F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0878() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-542.919983F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-542.536011F, -369.806F), new Vector2(-542.343994F, -370.303986F), new Vector2(-542.343994F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-542.343994F, -371.480011F), new Vector2(-542.536011F, -371.966003F), new Vector2(-542.919983F, -372.362F)); + builder.AddCubicBezier(new Vector2(-543.304016F, -372.757996F), new Vector2(-543.796021F, -372.955994F), new Vector2(-544.395996F, -372.955994F)); + builder.AddCubicBezier(new Vector2(-544.995972F, -372.955994F), new Vector2(-545.487976F, -372.757996F), new Vector2(-545.872009F, -372.362F)); + builder.AddCubicBezier(new Vector2(-546.255981F, -371.966003F), new Vector2(-546.447998F, -371.480011F), new Vector2(-546.447998F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-546.447998F, -370.303986F), new Vector2(-546.255981F, -369.806F), new Vector2(-545.872009F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-545.487976F, -369.014008F), new Vector2(-544.995972F, -368.81601F), new Vector2(-544.395996F, -368.81601F)); + builder.AddCubicBezier(new Vector2(-543.796021F, -368.81601F), new Vector2(-543.304016F, -369.014008F), new Vector2(-542.919983F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-542.776001F, -348.29599F)); + builder.AddLine(new Vector2(-542.776001F, -365.395996F)); + builder.AddLine(new Vector2(-546.052002F, -365.395996F)); + builder.AddLine(new Vector2(-546.052002F, -348.29599F)); + builder.AddLine(new Vector2(-542.776001F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0879() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-565.995972F, -348.29599F)); + builder.AddLine(new Vector2(-561.028015F, -361.18399F)); + builder.AddLine(new Vector2(-562.216003F, -361.18399F)); + builder.AddLine(new Vector2(-557.283997F, -348.29599F)); + builder.AddLine(new Vector2(-555.375977F, -348.29599F)); + builder.AddLine(new Vector2(-548.643982F, -365.395996F)); + builder.AddLine(new Vector2(-552.028015F, -365.395996F)); + builder.AddLine(new Vector2(-556.924011F, -352.075989F)); + builder.AddLine(new Vector2(-555.843994F, -352.075989F)); + builder.AddLine(new Vector2(-560.703979F, -365.395996F)); + builder.AddLine(new Vector2(-562.575989F, -365.395996F)); + builder.AddLine(new Vector2(-567.435974F, -352.075989F)); + builder.AddLine(new Vector2(-566.356018F, -352.075989F)); + builder.AddLine(new Vector2(-571.252014F, -365.395996F)); + builder.AddLine(new Vector2(-574.635986F, -365.395996F)); + builder.AddLine(new Vector2(-567.903992F, -348.29599F)); + builder.AddLine(new Vector2(-565.995972F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0880() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-587.66803F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-588.507996F, -352.328003F), new Vector2(-589.16803F, -353.018005F), new Vector2(-589.64801F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-590.127991F, -354.769989F), new Vector2(-590.367981F, -355.772003F), new Vector2(-590.367981F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-590.367981F, -358.003998F), new Vector2(-590.127991F, -358.988007F), new Vector2(-589.64801F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-589.16803F, -360.716003F), new Vector2(-588.507996F, -361.394012F), new Vector2(-587.66803F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-586.828003F, -362.377991F), new Vector2(-585.880005F, -362.623993F), new Vector2(-584.823975F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-583.719971F, -362.623993F), new Vector2(-582.754028F, -362.377991F), new Vector2(-581.926025F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-581.098022F, -361.394012F), new Vector2(-580.437988F, -360.716003F), new Vector2(-579.945984F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-579.453979F, -358.988007F), new Vector2(-579.208008F, -358.003998F), new Vector2(-579.208008F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-579.208008F, -355.772003F), new Vector2(-579.447998F, -354.769989F), new Vector2(-579.927979F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-580.40802F, -353.018005F), new Vector2(-581.067993F, -352.328003F), new Vector2(-581.90802F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-582.747986F, -351.320007F), new Vector2(-583.719971F, -351.067993F), new Vector2(-584.823975F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-585.880005F, -351.067993F), new Vector2(-586.828003F, -351.320007F), new Vector2(-587.66803F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-580.27002F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-578.914001F, -349.915985F), new Vector2(-577.840027F, -350.98999F), new Vector2(-577.047974F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-576.255981F, -353.701996F), new Vector2(-575.859985F, -355.220001F), new Vector2(-575.859985F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-575.859985F, -358.556F), new Vector2(-576.255981F, -360.056F), new Vector2(-577.047974F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-577.840027F, -362.743988F), new Vector2(-578.914001F, -363.806F), new Vector2(-580.27002F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-581.625977F, -365.365997F), new Vector2(-583.143982F, -365.756012F), new Vector2(-584.823975F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-586.47998F, -365.756012F), new Vector2(-587.97998F, -365.359985F), new Vector2(-589.323975F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-590.66803F, -363.776001F), new Vector2(-591.736023F, -362.713989F), new Vector2(-592.528015F, -361.381989F)); + builder.AddCubicBezier(new Vector2(-593.320007F, -360.049988F), new Vector2(-593.716003F, -358.556F), new Vector2(-593.716003F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-593.716003F, -355.220001F), new Vector2(-593.320007F, -353.701996F), new Vector2(-592.528015F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-591.736023F, -350.98999F), new Vector2(-590.66803F, -349.915985F), new Vector2(-589.323975F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-587.97998F, -348.332001F), new Vector2(-586.47998F, -347.936005F), new Vector2(-584.823975F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-583.143982F, -347.936005F), new Vector2(-581.625977F, -348.332001F), new Vector2(-580.27002F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0881() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-597.35199F, -348.29599F)); + builder.AddLine(new Vector2(-597.35199F, -374F)); + builder.AddLine(new Vector2(-600.59198F, -374F)); + builder.AddLine(new Vector2(-600.59198F, -348.29599F)); + builder.AddLine(new Vector2(-597.35199F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0882() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-605.343994F, -348.29599F)); + builder.AddLine(new Vector2(-605.343994F, -374F)); + builder.AddLine(new Vector2(-608.583984F, -374F)); + builder.AddLine(new Vector2(-608.583984F, -348.29599F)); + builder.AddLine(new Vector2(-605.343994F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0883() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-623.992004F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-624.83197F, -352.328003F), new Vector2(-625.492004F, -353.018005F), new Vector2(-625.971985F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-626.452026F, -354.769989F), new Vector2(-626.692017F, -355.772003F), new Vector2(-626.692017F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-626.692017F, -358.003998F), new Vector2(-626.452026F, -358.988007F), new Vector2(-625.971985F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-625.492004F, -360.716003F), new Vector2(-624.83197F, -361.394012F), new Vector2(-623.992004F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-623.151978F, -362.377991F), new Vector2(-622.203979F, -362.623993F), new Vector2(-621.14801F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-620.044006F, -362.623993F), new Vector2(-619.078003F, -362.377991F), new Vector2(-618.25F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-617.421997F, -361.394012F), new Vector2(-616.762024F, -360.716003F), new Vector2(-616.27002F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-615.778015F, -358.988007F), new Vector2(-615.531982F, -358.003998F), new Vector2(-615.531982F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-615.531982F, -355.772003F), new Vector2(-615.771973F, -354.769989F), new Vector2(-616.252014F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-616.731995F, -353.018005F), new Vector2(-617.392029F, -352.328003F), new Vector2(-618.231995F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-619.072021F, -351.320007F), new Vector2(-620.044006F, -351.067993F), new Vector2(-621.14801F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-622.203979F, -351.067993F), new Vector2(-623.151978F, -351.320007F), new Vector2(-623.992004F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-616.593994F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-615.237976F, -349.915985F), new Vector2(-614.164001F, -350.98999F), new Vector2(-613.372009F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-612.580017F, -353.701996F), new Vector2(-612.184021F, -355.220001F), new Vector2(-612.184021F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-612.184021F, -358.556F), new Vector2(-612.580017F, -360.056F), new Vector2(-613.372009F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-614.164001F, -362.743988F), new Vector2(-615.237976F, -363.806F), new Vector2(-616.593994F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-617.950012F, -365.365997F), new Vector2(-619.468018F, -365.756012F), new Vector2(-621.14801F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-622.804016F, -365.756012F), new Vector2(-624.304016F, -365.359985F), new Vector2(-625.64801F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-626.992004F, -363.776001F), new Vector2(-628.059998F, -362.713989F), new Vector2(-628.85199F, -361.381989F)); + builder.AddCubicBezier(new Vector2(-629.643982F, -360.049988F), new Vector2(-630.039978F, -358.556F), new Vector2(-630.039978F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-630.039978F, -355.220001F), new Vector2(-629.643982F, -353.701996F), new Vector2(-628.85199F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-628.059998F, -350.98999F), new Vector2(-626.992004F, -349.915985F), new Vector2(-625.64801F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-624.304016F, -348.332001F), new Vector2(-622.804016F, -347.936005F), new Vector2(-621.14801F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-619.468018F, -347.936005F), new Vector2(-617.950012F, -348.332001F), new Vector2(-616.593994F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0884() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-631.192017F, -362.444F)); + builder.AddLine(new Vector2(-631.192017F, -365.395996F)); + builder.AddLine(new Vector2(-644.080017F, -365.395996F)); + builder.AddLine(new Vector2(-644.080017F, -362.444F)); + builder.AddLine(new Vector2(-631.192017F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-636.627991F, -348.29599F)); + builder.AddLine(new Vector2(-636.627991F, -367.951996F)); + builder.AddCubicBezier(new Vector2(-636.627991F, -369.007996F), new Vector2(-636.346008F, -369.829987F), new Vector2(-635.781982F, -370.417999F)); + builder.AddCubicBezier(new Vector2(-635.218018F, -371.006012F), new Vector2(-634.419983F, -371.299988F), new Vector2(-633.388F, -371.299988F)); + builder.AddCubicBezier(new Vector2(-632.835999F, -371.299988F), new Vector2(-632.367981F, -371.216003F), new Vector2(-631.984009F, -371.048004F)); + builder.AddCubicBezier(new Vector2(-631.599976F, -370.880005F), new Vector2(-631.252014F, -370.627991F), new Vector2(-630.940002F, -370.291992F)); + builder.AddLine(new Vector2(-628.815979F, -372.380005F)); + builder.AddCubicBezier(new Vector2(-629.416016F, -373.028015F), new Vector2(-630.075989F, -373.519989F), new Vector2(-630.796021F, -373.855988F)); + builder.AddCubicBezier(new Vector2(-631.515991F, -374.191986F), new Vector2(-632.367981F, -374.359985F), new Vector2(-633.35199F, -374.359985F)); + builder.AddCubicBezier(new Vector2(-634.64801F, -374.359985F), new Vector2(-635.788025F, -374.084015F), new Vector2(-636.771973F, -373.532013F)); + builder.AddCubicBezier(new Vector2(-637.755981F, -372.980011F), new Vector2(-638.523987F, -372.223999F), new Vector2(-639.075989F, -371.264008F)); + builder.AddCubicBezier(new Vector2(-639.627991F, -370.303986F), new Vector2(-639.903992F, -369.200012F), new Vector2(-639.903992F, -367.951996F)); + builder.AddLine(new Vector2(-639.903992F, -348.29599F)); + builder.AddLine(new Vector2(-636.627991F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0885() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-652.935974F, -362.444F)); + builder.AddLine(new Vector2(-652.935974F, -365.395996F)); + builder.AddLine(new Vector2(-664.599976F, -365.395996F)); + builder.AddLine(new Vector2(-664.599976F, -362.444F)); + builder.AddLine(new Vector2(-652.935974F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-657.14801F, -348.29599F)); + builder.AddLine(new Vector2(-657.14801F, -372.559998F)); + builder.AddLine(new Vector2(-660.388F, -372.559998F)); + builder.AddLine(new Vector2(-660.388F, -348.29599F)); + builder.AddLine(new Vector2(-657.14801F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0886() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-668.362F, -349.339996F)); + builder.AddCubicBezier(new Vector2(-667.221985F, -350.276001F), new Vector2(-666.651978F, -351.548004F), new Vector2(-666.651978F, -353.156006F)); + builder.AddCubicBezier(new Vector2(-666.651978F, -354.212006F), new Vector2(-666.874023F, -355.063995F), new Vector2(-667.317993F, -355.712006F)); + builder.AddCubicBezier(new Vector2(-667.762024F, -356.359985F), new Vector2(-668.33197F, -356.876007F), new Vector2(-669.028015F, -357.26001F)); + builder.AddCubicBezier(new Vector2(-669.723999F, -357.644012F), new Vector2(-670.455994F, -357.950012F), new Vector2(-671.223999F, -358.178009F)); + builder.AddCubicBezier(new Vector2(-671.992004F, -358.406006F), new Vector2(-672.72998F, -358.627991F), new Vector2(-673.437988F, -358.843994F)); + builder.AddCubicBezier(new Vector2(-674.145996F, -359.059998F), new Vector2(-674.716003F, -359.324005F), new Vector2(-675.14801F, -359.635986F)); + builder.AddCubicBezier(new Vector2(-675.580017F, -359.947998F), new Vector2(-675.796021F, -360.391998F), new Vector2(-675.796021F, -360.967987F)); + builder.AddCubicBezier(new Vector2(-675.796021F, -361.519989F), new Vector2(-675.549988F, -361.963989F), new Vector2(-675.057983F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-674.565979F, -362.635986F), new Vector2(-673.85199F, -362.803986F), new Vector2(-672.916016F, -362.803986F)); + builder.AddCubicBezier(new Vector2(-672.028015F, -362.803986F), new Vector2(-671.236023F, -362.635986F), new Vector2(-670.539978F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-669.843994F, -361.963989F), new Vector2(-669.244019F, -361.484009F), new Vector2(-668.73999F, -360.859985F)); + builder.AddLine(new Vector2(-666.651978F, -362.947998F)); + builder.AddCubicBezier(new Vector2(-667.323975F, -363.884003F), new Vector2(-668.182007F, -364.585999F), new Vector2(-669.226013F, -365.053986F)); + builder.AddCubicBezier(new Vector2(-670.27002F, -365.522003F), new Vector2(-671.463989F, -365.756012F), new Vector2(-672.807983F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-674.080017F, -365.756012F), new Vector2(-675.171997F, -365.552002F), new Vector2(-676.083984F, -365.144012F)); + builder.AddCubicBezier(new Vector2(-676.995972F, -364.735992F), new Vector2(-677.697998F, -364.153992F), new Vector2(-678.190002F, -363.39801F)); + builder.AddCubicBezier(new Vector2(-678.682007F, -362.641998F), new Vector2(-678.927979F, -361.747986F), new Vector2(-678.927979F, -360.716003F)); + builder.AddCubicBezier(new Vector2(-678.927979F, -359.68399F), new Vector2(-678.705994F, -358.850006F), new Vector2(-678.262024F, -358.213989F)); + builder.AddCubicBezier(new Vector2(-677.817993F, -357.578003F), new Vector2(-677.247986F, -357.079987F), new Vector2(-676.552002F, -356.720001F)); + builder.AddCubicBezier(new Vector2(-675.856018F, -356.359985F), new Vector2(-675.117981F, -356.071991F), new Vector2(-674.338013F, -355.855988F)); + builder.AddCubicBezier(new Vector2(-673.557983F, -355.640015F), new Vector2(-672.820007F, -355.417999F), new Vector2(-672.124023F, -355.190002F)); + builder.AddCubicBezier(new Vector2(-671.427979F, -354.962006F), new Vector2(-670.857971F, -354.674011F), new Vector2(-670.414001F, -354.325989F)); + builder.AddCubicBezier(new Vector2(-669.969971F, -353.977997F), new Vector2(-669.747986F, -353.492004F), new Vector2(-669.747986F, -352.868011F)); + builder.AddCubicBezier(new Vector2(-669.747986F, -352.243988F), new Vector2(-670.023987F, -351.757996F), new Vector2(-670.575989F, -351.410004F)); + builder.AddCubicBezier(new Vector2(-671.127991F, -351.062012F), new Vector2(-671.90802F, -350.888F), new Vector2(-672.916016F, -350.888F)); + builder.AddCubicBezier(new Vector2(-673.924011F, -350.888F), new Vector2(-674.835999F, -351.074005F), new Vector2(-675.651978F, -351.446014F)); + builder.AddCubicBezier(new Vector2(-676.468018F, -351.817993F), new Vector2(-677.187988F, -352.388F), new Vector2(-677.812012F, -353.156006F)); + builder.AddLine(new Vector2(-679.900024F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-679.372009F, -350.420013F), new Vector2(-678.754028F, -349.862F), new Vector2(-678.046021F, -349.394012F)); + builder.AddCubicBezier(new Vector2(-677.338013F, -348.925995F), new Vector2(-676.552002F, -348.56601F), new Vector2(-675.687988F, -348.313995F)); + builder.AddCubicBezier(new Vector2(-674.823975F, -348.062012F), new Vector2(-673.911987F, -347.936005F), new Vector2(-672.952026F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-671.031982F, -347.936005F), new Vector2(-669.502014F, -348.403992F), new Vector2(-668.362F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0887() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-683.104004F, -348.29599F)); + builder.AddLine(new Vector2(-683.104004F, -365.395996F)); + builder.AddLine(new Vector2(-686.380005F, -365.395996F)); + builder.AddLine(new Vector2(-686.380005F, -361.220001F)); + builder.AddLine(new Vector2(-685.768005F, -357.079987F)); + builder.AddLine(new Vector2(-686.380005F, -352.903992F)); + builder.AddLine(new Vector2(-686.380005F, -348.29599F)); + builder.AddLine(new Vector2(-683.104004F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-694.40802F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-695.247986F, -352.256012F), new Vector2(-695.901978F, -352.946014F), new Vector2(-696.369995F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-696.838013F, -354.697998F), new Vector2(-697.072021F, -355.712006F), new Vector2(-697.072021F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-697.072021F, -357.992004F), new Vector2(-696.838013F, -358.993988F), new Vector2(-696.369995F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-695.901978F, -360.746002F), new Vector2(-695.254028F, -361.436005F), new Vector2(-694.426025F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-693.598022F, -362.444F), new Vector2(-692.643982F, -362.696014F), new Vector2(-691.564026F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-690.484009F, -362.696014F), new Vector2(-689.541992F, -362.450012F), new Vector2(-688.737976F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-687.934021F, -361.466003F), new Vector2(-687.304016F, -360.776001F), new Vector2(-686.848022F, -359.888F)); + builder.AddCubicBezier(new Vector2(-686.392029F, -359F), new Vector2(-686.164001F, -357.980011F), new Vector2(-686.164001F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-686.164001F, -355.123993F), new Vector2(-686.656006F, -353.726013F), new Vector2(-687.640015F, -352.634003F)); + builder.AddCubicBezier(new Vector2(-688.624023F, -351.541992F), new Vector2(-689.919983F, -350.996002F), new Vector2(-691.528015F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-692.607971F, -350.996002F), new Vector2(-693.567993F, -351.247986F), new Vector2(-694.40802F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-688.575989F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-687.544006F, -349.286011F), new Vector2(-686.721985F, -350.036011F), new Vector2(-686.109985F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-685.497986F, -351.955994F), new Vector2(-685.156006F, -353.048004F), new Vector2(-685.083984F, -354.272003F)); + builder.AddLine(new Vector2(-685.083984F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-685.156006F, -360.667999F), new Vector2(-685.504028F, -361.765991F), new Vector2(-686.127991F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-686.752014F, -363.661987F), new Vector2(-687.573975F, -364.406006F), new Vector2(-688.593994F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-689.614014F, -365.485992F), new Vector2(-690.771973F, -365.756012F), new Vector2(-692.067993F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-693.651978F, -365.756012F), new Vector2(-695.073975F, -365.359985F), new Vector2(-696.333984F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-697.593994F, -363.776001F), new Vector2(-698.590027F, -362.708008F), new Vector2(-699.322021F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-700.054016F, -360.019989F), new Vector2(-700.419983F, -358.507996F), new Vector2(-700.419983F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-700.419983F, -355.14801F), new Vector2(-700.054016F, -353.635986F), new Vector2(-699.322021F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-698.590027F, -350.947998F), new Vector2(-697.593994F, -349.885986F), new Vector2(-696.333984F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-695.073975F, -348.325989F), new Vector2(-693.651978F, -347.936005F), new Vector2(-692.067993F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-690.771973F, -347.936005F), new Vector2(-689.607971F, -348.205994F), new Vector2(-688.575989F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0888() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-704.09198F, -348.29599F)); + builder.AddLine(new Vector2(-704.09198F, -374F)); + builder.AddLine(new Vector2(-707.33197F, -374F)); + builder.AddLine(new Vector2(-707.33197F, -348.29599F)); + builder.AddLine(new Vector2(-704.09198F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0889() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-722.380005F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-721.203979F, -349.196014F), new Vector2(-720.195984F, -349.928009F), new Vector2(-719.356018F, -350.888F)); + builder.AddLine(new Vector2(-721.44397F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-722.02002F, -352.339996F), new Vector2(-722.710022F, -351.835999F), new Vector2(-723.513977F, -351.5F)); + builder.AddCubicBezier(new Vector2(-724.317993F, -351.164001F), new Vector2(-725.200012F, -350.996002F), new Vector2(-726.159973F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-727.312012F, -350.996002F), new Vector2(-728.33197F, -351.242004F), new Vector2(-729.219971F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-730.107971F, -352.226013F), new Vector2(-730.791992F, -352.921997F), new Vector2(-731.271973F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-731.752014F, -354.721985F), new Vector2(-731.992004F, -355.772003F), new Vector2(-731.992004F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-731.992004F, -358.14801F), new Vector2(-731.763977F, -359.167999F), new Vector2(-731.307983F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-730.85199F, -360.895996F), new Vector2(-730.203979F, -361.567993F), new Vector2(-729.364014F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-728.523987F, -362.528015F), new Vector2(-727.552002F, -362.768005F), new Vector2(-726.447998F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-725.392029F, -362.768005F), new Vector2(-724.492004F, -362.54599F), new Vector2(-723.747986F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-723.004028F, -361.65799F), new Vector2(-722.427979F, -361.033997F), new Vector2(-722.02002F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-721.612F, -359.425995F), new Vector2(-721.40802F, -358.447998F), new Vector2(-721.40802F, -357.29599F)); + builder.AddLine(new Vector2(-720.219971F, -358.339996F)); + builder.AddLine(new Vector2(-732.927979F, -358.339996F)); + builder.AddLine(new Vector2(-732.927979F, -355.640015F)); + builder.AddLine(new Vector2(-718.492004F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-718.419983F, -355.976013F), new Vector2(-718.372009F, -356.282013F), new Vector2(-718.348022F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-718.323975F, -356.834015F), new Vector2(-718.312012F, -357.09201F), new Vector2(-718.312012F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-718.312012F, -358.963989F), new Vector2(-718.653992F, -360.415985F), new Vector2(-719.338013F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-720.021973F, -362.959991F), new Vector2(-720.976013F, -363.955994F), new Vector2(-722.200012F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-723.424011F, -365.395996F), new Vector2(-724.815979F, -365.756012F), new Vector2(-726.375977F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-728.031982F, -365.756012F), new Vector2(-729.526001F, -365.365997F), new Vector2(-730.857971F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-732.190002F, -363.806F), new Vector2(-733.245972F, -362.743988F), new Vector2(-734.026001F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-734.80603F, -360.056F), new Vector2(-735.195984F, -358.544006F), new Vector2(-735.195984F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-735.195984F, -355.160004F), new Vector2(-734.799988F, -353.635986F), new Vector2(-734.007996F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-733.216003F, -350.947998F), new Vector2(-732.142029F, -349.885986F), new Vector2(-730.786011F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-729.429993F, -348.325989F), new Vector2(-727.888F, -347.936005F), new Vector2(-726.159973F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-724.815979F, -347.936005F), new Vector2(-723.55603F, -348.187988F), new Vector2(-722.380005F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0890() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-750.567993F, -348.29599F)); + builder.AddLine(new Vector2(-750.567993F, -374F)); + builder.AddLine(new Vector2(-753.807983F, -374F)); + builder.AddLine(new Vector2(-753.807983F, -348.29599F)); + builder.AddLine(new Vector2(-750.567993F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-738.471985F, -348.29599F)); + builder.AddLine(new Vector2(-738.471985F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-738.471985F, -360.26001F), new Vector2(-738.76001F, -361.447998F), new Vector2(-739.335999F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-739.911987F, -363.511993F), new Vector2(-740.697998F, -364.31601F), new Vector2(-741.69397F, -364.891998F)); + builder.AddCubicBezier(new Vector2(-742.690002F, -365.467987F), new Vector2(-743.835999F, -365.756012F), new Vector2(-745.132019F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-746.427979F, -365.756012F), new Vector2(-747.59198F, -365.462006F), new Vector2(-748.624023F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-749.656006F, -364.286011F), new Vector2(-750.460022F, -363.488007F), new Vector2(-751.036011F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-751.612F, -361.471985F), new Vector2(-751.900024F, -360.320007F), new Vector2(-751.900024F, -359.023987F)); + builder.AddLine(new Vector2(-750.567993F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-750.567993F, -359.131989F), new Vector2(-750.375977F, -359.899994F), new Vector2(-749.992004F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-749.607971F, -361.243988F), new Vector2(-749.080017F, -361.772003F), new Vector2(-748.40802F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-747.736023F, -362.540009F), new Vector2(-746.968018F, -362.731995F), new Vector2(-746.104004F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-744.807983F, -362.731995F), new Vector2(-743.757996F, -362.312012F), new Vector2(-742.953979F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-742.150024F, -360.631989F), new Vector2(-741.747986F, -359.563995F), new Vector2(-741.747986F, -358.268005F)); + builder.AddLine(new Vector2(-741.747986F, -348.29599F)); + builder.AddLine(new Vector2(-738.471985F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0891() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-756.976013F, -362.444F)); + builder.AddLine(new Vector2(-756.976013F, -365.395996F)); + builder.AddLine(new Vector2(-768.640015F, -365.395996F)); + builder.AddLine(new Vector2(-768.640015F, -362.444F)); + builder.AddLine(new Vector2(-756.976013F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-761.187988F, -348.29599F)); + builder.AddLine(new Vector2(-761.187988F, -372.559998F)); + builder.AddLine(new Vector2(-764.427979F, -372.559998F)); + builder.AddLine(new Vector2(-764.427979F, -348.29599F)); + builder.AddLine(new Vector2(-761.187988F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0892() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-785.200012F, -361.544006F)); + builder.AddCubicBezier(new Vector2(-784.432007F, -362.312012F), new Vector2(-783.447998F, -362.696014F), new Vector2(-782.247986F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-781.671997F, -362.696014F), new Vector2(-781.16803F, -362.612F), new Vector2(-780.736023F, -362.444F)); + builder.AddCubicBezier(new Vector2(-780.304016F, -362.276001F), new Vector2(-779.90802F, -362F), new Vector2(-779.547974F, -361.615997F)); + builder.AddLine(new Vector2(-777.424011F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-778.023987F, -364.507996F), new Vector2(-778.671997F, -365.006012F), new Vector2(-779.367981F, -365.306F)); + builder.AddCubicBezier(new Vector2(-780.064026F, -365.605988F), new Vector2(-780.843994F, -365.756012F), new Vector2(-781.708008F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-783.604004F, -365.756012F), new Vector2(-785.05603F, -365.108002F), new Vector2(-786.064026F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-787.072021F, -362.515991F), new Vector2(-787.575989F, -360.776001F), new Vector2(-787.575989F, -358.59201F)); + builder.AddLine(new Vector2(-786.35199F, -358.015991F)); + builder.AddCubicBezier(new Vector2(-786.35199F, -359.600006F), new Vector2(-785.968018F, -360.776001F), new Vector2(-785.200012F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-786.35199F, -348.29599F)); + builder.AddLine(new Vector2(-786.35199F, -365.395996F)); + builder.AddLine(new Vector2(-789.59198F, -365.395996F)); + builder.AddLine(new Vector2(-789.59198F, -348.29599F)); + builder.AddLine(new Vector2(-786.35199F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - - Offset:<964, 726> + CanvasGeometry Geometry_0893() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-805F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-805.840027F, -352.328003F), new Vector2(-806.5F, -353.018005F), new Vector2(-806.97998F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-807.460022F, -354.769989F), new Vector2(-807.700012F, -355.772003F), new Vector2(-807.700012F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-807.700012F, -358.003998F), new Vector2(-807.460022F, -358.988007F), new Vector2(-806.97998F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-806.5F, -360.716003F), new Vector2(-805.840027F, -361.394012F), new Vector2(-805F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-804.159973F, -362.377991F), new Vector2(-803.211975F, -362.623993F), new Vector2(-802.156006F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-801.052002F, -362.623993F), new Vector2(-800.085999F, -362.377991F), new Vector2(-799.257996F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-798.429993F, -361.394012F), new Vector2(-797.77002F, -360.716003F), new Vector2(-797.278015F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-796.786011F, -358.988007F), new Vector2(-796.539978F, -358.003998F), new Vector2(-796.539978F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-796.539978F, -355.772003F), new Vector2(-796.780029F, -354.769989F), new Vector2(-797.26001F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-797.73999F, -353.018005F), new Vector2(-798.400024F, -352.328003F), new Vector2(-799.23999F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-800.080017F, -351.320007F), new Vector2(-801.052002F, -351.067993F), new Vector2(-802.156006F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-803.211975F, -351.067993F), new Vector2(-804.159973F, -351.320007F), new Vector2(-805F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-797.60199F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-796.245972F, -349.915985F), new Vector2(-795.171997F, -350.98999F), new Vector2(-794.380005F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-793.588013F, -353.701996F), new Vector2(-793.192017F, -355.220001F), new Vector2(-793.192017F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-793.192017F, -358.556F), new Vector2(-793.588013F, -360.056F), new Vector2(-794.380005F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-795.171997F, -362.743988F), new Vector2(-796.245972F, -363.806F), new Vector2(-797.60199F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-798.958008F, -365.365997F), new Vector2(-800.476013F, -365.756012F), new Vector2(-802.156006F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-803.812012F, -365.756012F), new Vector2(-805.312012F, -365.359985F), new Vector2(-806.656006F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-808F, -363.776001F), new Vector2(-809.067993F, -362.713989F), new Vector2(-809.859985F, -361.381989F)); + builder.AddCubicBezier(new Vector2(-810.651978F, -360.049988F), new Vector2(-811.047974F, -358.556F), new Vector2(-811.047974F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-811.047974F, -355.220001F), new Vector2(-810.651978F, -353.701996F), new Vector2(-809.859985F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-809.067993F, -350.98999F), new Vector2(-808F, -349.915985F), new Vector2(-806.656006F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-805.312012F, -348.332001F), new Vector2(-803.812012F, -347.936005F), new Vector2(-802.156006F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-800.476013F, -347.936005F), new Vector2(-798.958008F, -348.332001F), new Vector2(-797.60199F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0894() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(731.44397F, -89.0059967F)); + builder.AddCubicBezier(new Vector2(732.380005F, -90.6259995F), new Vector2(733.099976F, -92.3960037F), new Vector2(733.604004F, -94.3160019F)); + builder.AddCubicBezier(new Vector2(734.107971F, -96.2360001F), new Vector2(734.359985F, -98.2279968F), new Vector2(734.359985F, -100.292F)); + builder.AddCubicBezier(new Vector2(734.359985F, -102.356003F), new Vector2(734.107971F, -104.348F), new Vector2(733.604004F, -106.267998F)); + builder.AddCubicBezier(new Vector2(733.099976F, -108.188004F), new Vector2(732.380005F, -109.958F), new Vector2(731.44397F, -111.578003F)); + builder.AddCubicBezier(new Vector2(730.507996F, -113.197998F), new Vector2(729.380005F, -114.559998F), new Vector2(728.059998F, -115.664001F)); + builder.AddLine(new Vector2(726.151978F, -113.972F)); + builder.AddCubicBezier(new Vector2(727.880005F, -112.484001F), new Vector2(729.200012F, -110.564003F), new Vector2(730.112F, -108.211998F)); + builder.AddCubicBezier(new Vector2(731.023987F, -105.860001F), new Vector2(731.47998F, -103.220001F), new Vector2(731.47998F, -100.292F)); + builder.AddCubicBezier(new Vector2(731.47998F, -97.3880005F), new Vector2(731.023987F, -94.7600021F), new Vector2(730.112F, -92.4079971F)); + builder.AddCubicBezier(new Vector2(729.200012F, -90.0559998F), new Vector2(727.880005F, -88.1240005F), new Vector2(726.151978F, -86.6119995F)); + builder.AddLine(new Vector2(728.059998F, -84.9199982F)); + builder.AddCubicBezier(new Vector2(729.380005F, -86.0240021F), new Vector2(730.507996F, -87.3860016F), new Vector2(731.44397F, -89.0059967F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0895() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(722.138F, -90.1399994F)); + builder.AddCubicBezier(new Vector2(723.278015F, -91.0759964F), new Vector2(723.848022F, -92.3479996F), new Vector2(723.848022F, -93.9560013F)); + builder.AddCubicBezier(new Vector2(723.848022F, -95.012001F), new Vector2(723.625977F, -95.8639984F), new Vector2(723.182007F, -96.512001F)); + builder.AddCubicBezier(new Vector2(722.737976F, -97.1600037F), new Vector2(722.16803F, -97.6760025F), new Vector2(721.471985F, -98.0599976F)); + builder.AddCubicBezier(new Vector2(720.776001F, -98.4440002F), new Vector2(720.044006F, -98.75F), new Vector2(719.276001F, -98.9779968F)); + builder.AddCubicBezier(new Vector2(718.507996F, -99.2060013F), new Vector2(717.77002F, -99.4280014F), new Vector2(717.062012F, -99.6439972F)); + builder.AddCubicBezier(new Vector2(716.354004F, -99.8600006F), new Vector2(715.783997F, -100.124001F), new Vector2(715.35199F, -100.435997F)); + builder.AddCubicBezier(new Vector2(714.919983F, -100.748001F), new Vector2(714.703979F, -101.192001F), new Vector2(714.703979F, -101.767998F)); + builder.AddCubicBezier(new Vector2(714.703979F, -102.32F), new Vector2(714.950012F, -102.764F), new Vector2(715.442017F, -103.099998F)); + builder.AddCubicBezier(new Vector2(715.934021F, -103.435997F), new Vector2(716.64801F, -103.603996F), new Vector2(717.583984F, -103.603996F)); + builder.AddCubicBezier(new Vector2(718.471985F, -103.603996F), new Vector2(719.263977F, -103.435997F), new Vector2(719.960022F, -103.099998F)); + builder.AddCubicBezier(new Vector2(720.656006F, -102.764F), new Vector2(721.255981F, -102.283997F), new Vector2(721.76001F, -101.660004F)); + builder.AddLine(new Vector2(723.848022F, -103.748001F)); + builder.AddCubicBezier(new Vector2(723.176025F, -104.683998F), new Vector2(722.317993F, -105.386002F), new Vector2(721.273987F, -105.853996F)); + builder.AddCubicBezier(new Vector2(720.22998F, -106.321999F), new Vector2(719.036011F, -106.556F), new Vector2(717.692017F, -106.556F)); + builder.AddCubicBezier(new Vector2(716.419983F, -106.556F), new Vector2(715.328003F, -106.351997F), new Vector2(714.416016F, -105.944F)); + builder.AddCubicBezier(new Vector2(713.504028F, -105.536003F), new Vector2(712.802002F, -104.954002F), new Vector2(712.309998F, -104.197998F)); + builder.AddCubicBezier(new Vector2(711.817993F, -103.442001F), new Vector2(711.572021F, -102.547997F), new Vector2(711.572021F, -101.515999F)); + builder.AddCubicBezier(new Vector2(711.572021F, -100.484001F), new Vector2(711.794006F, -99.6500015F), new Vector2(712.237976F, -99.0139999F)); + builder.AddCubicBezier(new Vector2(712.682007F, -98.3779984F), new Vector2(713.252014F, -97.8799973F), new Vector2(713.947998F, -97.5199966F)); + builder.AddCubicBezier(new Vector2(714.643982F, -97.1600037F), new Vector2(715.382019F, -96.8720016F), new Vector2(716.161987F, -96.6559982F)); + builder.AddCubicBezier(new Vector2(716.942017F, -96.4400024F), new Vector2(717.679993F, -96.2180023F), new Vector2(718.375977F, -95.9899979F)); + builder.AddCubicBezier(new Vector2(719.072021F, -95.762001F), new Vector2(719.642029F, -95.473999F), new Vector2(720.085999F, -95.1259995F)); + builder.AddCubicBezier(new Vector2(720.530029F, -94.7779999F), new Vector2(720.752014F, -94.2919998F), new Vector2(720.752014F, -93.6679993F)); + builder.AddCubicBezier(new Vector2(720.752014F, -93.0439987F), new Vector2(720.476013F, -92.5579987F), new Vector2(719.924011F, -92.2099991F)); + builder.AddCubicBezier(new Vector2(719.372009F, -91.8619995F), new Vector2(718.59198F, -91.6880035F), new Vector2(717.583984F, -91.6880035F)); + builder.AddCubicBezier(new Vector2(716.575989F, -91.6880035F), new Vector2(715.664001F, -91.8740005F), new Vector2(714.848022F, -92.2460022F)); + builder.AddCubicBezier(new Vector2(714.031982F, -92.6179962F), new Vector2(713.312012F, -93.1880035F), new Vector2(712.687988F, -93.9560013F)); + builder.AddLine(new Vector2(710.599976F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(711.127991F, -91.2200012F), new Vector2(711.745972F, -90.6620026F), new Vector2(712.453979F, -90.1940002F)); + builder.AddCubicBezier(new Vector2(713.161987F, -89.7259979F), new Vector2(713.947998F, -89.3659973F), new Vector2(714.812012F, -89.1139984F)); + builder.AddCubicBezier(new Vector2(715.676025F, -88.8619995F), new Vector2(716.588013F, -88.7360001F), new Vector2(717.547974F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(719.468018F, -88.7360001F), new Vector2(720.997986F, -89.2040024F), new Vector2(722.138F, -90.1399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0896() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(706.765991F, -90.1399994F)); + builder.AddCubicBezier(new Vector2(707.906006F, -91.0759964F), new Vector2(708.476013F, -92.3479996F), new Vector2(708.476013F, -93.9560013F)); + builder.AddCubicBezier(new Vector2(708.476013F, -95.012001F), new Vector2(708.254028F, -95.8639984F), new Vector2(707.809998F, -96.512001F)); + builder.AddCubicBezier(new Vector2(707.366028F, -97.1600037F), new Vector2(706.796021F, -97.6760025F), new Vector2(706.099976F, -98.0599976F)); + builder.AddCubicBezier(new Vector2(705.403992F, -98.4440002F), new Vector2(704.671997F, -98.75F), new Vector2(703.903992F, -98.9779968F)); + builder.AddCubicBezier(new Vector2(703.135986F, -99.2060013F), new Vector2(702.39801F, -99.4280014F), new Vector2(701.690002F, -99.6439972F)); + builder.AddCubicBezier(new Vector2(700.981995F, -99.8600006F), new Vector2(700.411987F, -100.124001F), new Vector2(699.97998F, -100.435997F)); + builder.AddCubicBezier(new Vector2(699.547974F, -100.748001F), new Vector2(699.33197F, -101.192001F), new Vector2(699.33197F, -101.767998F)); + builder.AddCubicBezier(new Vector2(699.33197F, -102.32F), new Vector2(699.578003F, -102.764F), new Vector2(700.070007F, -103.099998F)); + builder.AddCubicBezier(new Vector2(700.562012F, -103.435997F), new Vector2(701.276001F, -103.603996F), new Vector2(702.211975F, -103.603996F)); + builder.AddCubicBezier(new Vector2(703.099976F, -103.603996F), new Vector2(703.892029F, -103.435997F), new Vector2(704.588013F, -103.099998F)); + builder.AddCubicBezier(new Vector2(705.283997F, -102.764F), new Vector2(705.883972F, -102.283997F), new Vector2(706.388F, -101.660004F)); + builder.AddLine(new Vector2(708.476013F, -103.748001F)); + builder.AddCubicBezier(new Vector2(707.804016F, -104.683998F), new Vector2(706.945984F, -105.386002F), new Vector2(705.901978F, -105.853996F)); + builder.AddCubicBezier(new Vector2(704.857971F, -106.321999F), new Vector2(703.664001F, -106.556F), new Vector2(702.320007F, -106.556F)); + builder.AddCubicBezier(new Vector2(701.047974F, -106.556F), new Vector2(699.955994F, -106.351997F), new Vector2(699.044006F, -105.944F)); + builder.AddCubicBezier(new Vector2(698.132019F, -105.536003F), new Vector2(697.429993F, -104.954002F), new Vector2(696.937988F, -104.197998F)); + builder.AddCubicBezier(new Vector2(696.445984F, -103.442001F), new Vector2(696.200012F, -102.547997F), new Vector2(696.200012F, -101.515999F)); + builder.AddCubicBezier(new Vector2(696.200012F, -100.484001F), new Vector2(696.421997F, -99.6500015F), new Vector2(696.866028F, -99.0139999F)); + builder.AddCubicBezier(new Vector2(697.309998F, -98.3779984F), new Vector2(697.880005F, -97.8799973F), new Vector2(698.575989F, -97.5199966F)); + builder.AddCubicBezier(new Vector2(699.271973F, -97.1600037F), new Vector2(700.01001F, -96.8720016F), new Vector2(700.789978F, -96.6559982F)); + builder.AddCubicBezier(new Vector2(701.570007F, -96.4400024F), new Vector2(702.307983F, -96.2180023F), new Vector2(703.004028F, -95.9899979F)); + builder.AddCubicBezier(new Vector2(703.700012F, -95.762001F), new Vector2(704.27002F, -95.473999F), new Vector2(704.713989F, -95.1259995F)); + builder.AddCubicBezier(new Vector2(705.15802F, -94.7779999F), new Vector2(705.380005F, -94.2919998F), new Vector2(705.380005F, -93.6679993F)); + builder.AddCubicBezier(new Vector2(705.380005F, -93.0439987F), new Vector2(705.104004F, -92.5579987F), new Vector2(704.552002F, -92.2099991F)); + builder.AddCubicBezier(new Vector2(704F, -91.8619995F), new Vector2(703.219971F, -91.6880035F), new Vector2(702.211975F, -91.6880035F)); + builder.AddCubicBezier(new Vector2(701.203979F, -91.6880035F), new Vector2(700.291992F, -91.8740005F), new Vector2(699.476013F, -92.2460022F)); + builder.AddCubicBezier(new Vector2(698.659973F, -92.6179962F), new Vector2(697.940002F, -93.1880035F), new Vector2(697.315979F, -93.9560013F)); + builder.AddLine(new Vector2(695.228027F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(695.755981F, -91.2200012F), new Vector2(696.374023F, -90.6620026F), new Vector2(697.08197F, -90.1940002F)); + builder.AddCubicBezier(new Vector2(697.789978F, -89.7259979F), new Vector2(698.575989F, -89.3659973F), new Vector2(699.440002F, -89.1139984F)); + builder.AddCubicBezier(new Vector2(700.304016F, -88.8619995F), new Vector2(701.216003F, -88.7360001F), new Vector2(702.176025F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(704.096008F, -88.7360001F), new Vector2(705.625977F, -89.2040024F), new Vector2(706.765991F, -90.1399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0897() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(689.143982F, -89.4919968F)); + builder.AddCubicBezier(new Vector2(690.320007F, -89.9960022F), new Vector2(691.328003F, -90.7279968F), new Vector2(692.16803F, -91.6880035F)); + builder.AddLine(new Vector2(690.080017F, -93.8119965F)); + builder.AddCubicBezier(new Vector2(689.504028F, -93.1399994F), new Vector2(688.814026F, -92.6360016F), new Vector2(688.01001F, -92.3000031F)); + builder.AddCubicBezier(new Vector2(687.205994F, -91.9639969F), new Vector2(686.323975F, -91.7959976F), new Vector2(685.364014F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(684.211975F, -91.7959976F), new Vector2(683.192017F, -92.0419998F), new Vector2(682.304016F, -92.5339966F)); + builder.AddCubicBezier(new Vector2(681.416016F, -93.026001F), new Vector2(680.731995F, -93.7220001F), new Vector2(680.252014F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(679.771973F, -95.5220032F), new Vector2(679.531982F, -96.5719986F), new Vector2(679.531982F, -97.7720032F)); + builder.AddCubicBezier(new Vector2(679.531982F, -98.947998F), new Vector2(679.76001F, -99.9680023F), new Vector2(680.216003F, -100.832001F)); + builder.AddCubicBezier(new Vector2(680.671997F, -101.695999F), new Vector2(681.320007F, -102.367996F), new Vector2(682.159973F, -102.848F)); + builder.AddCubicBezier(new Vector2(683F, -103.328003F), new Vector2(683.971985F, -103.568001F), new Vector2(685.075989F, -103.568001F)); + builder.AddCubicBezier(new Vector2(686.132019F, -103.568001F), new Vector2(687.031982F, -103.346001F), new Vector2(687.776001F, -102.902F)); + builder.AddCubicBezier(new Vector2(688.52002F, -102.458F), new Vector2(689.096008F, -101.834F), new Vector2(689.504028F, -101.029999F)); + builder.AddCubicBezier(new Vector2(689.911987F, -100.225998F), new Vector2(690.116028F, -99.2480011F), new Vector2(690.116028F, -98.0960007F)); + builder.AddLine(new Vector2(691.304016F, -99.1399994F)); + builder.AddLine(new Vector2(678.596008F, -99.1399994F)); + builder.AddLine(new Vector2(678.596008F, -96.4400024F)); + builder.AddLine(new Vector2(693.031982F, -96.4400024F)); + builder.AddCubicBezier(new Vector2(693.104004F, -96.776001F), new Vector2(693.151978F, -97.0820007F), new Vector2(693.176025F, -97.3580017F)); + builder.AddCubicBezier(new Vector2(693.200012F, -97.6340027F), new Vector2(693.211975F, -97.8919983F), new Vector2(693.211975F, -98.1320038F)); + builder.AddCubicBezier(new Vector2(693.211975F, -99.7639999F), new Vector2(692.869995F, -101.216003F), new Vector2(692.185974F, -102.487999F)); + builder.AddCubicBezier(new Vector2(691.502014F, -103.760002F), new Vector2(690.547974F, -104.755997F), new Vector2(689.323975F, -105.475998F)); + builder.AddCubicBezier(new Vector2(688.099976F, -106.195999F), new Vector2(686.708008F, -106.556F), new Vector2(685.14801F, -106.556F)); + builder.AddCubicBezier(new Vector2(683.492004F, -106.556F), new Vector2(681.997986F, -106.166F), new Vector2(680.666016F, -105.386002F)); + builder.AddCubicBezier(new Vector2(679.333984F, -104.606003F), new Vector2(678.278015F, -103.543999F), new Vector2(677.497986F, -102.199997F)); + builder.AddCubicBezier(new Vector2(676.718018F, -100.856003F), new Vector2(676.328003F, -99.3440018F), new Vector2(676.328003F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(676.328003F, -95.9599991F), new Vector2(676.723999F, -94.435997F), new Vector2(677.515991F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(678.307983F, -91.7480011F), new Vector2(679.382019F, -90.685997F), new Vector2(680.737976F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(682.093994F, -89.1259995F), new Vector2(683.635986F, -88.7360001F), new Vector2(685.364014F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(686.708008F, -88.7360001F), new Vector2(687.968018F, -88.987999F), new Vector2(689.143982F, -89.4919968F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0898() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(672.692017F, -89.0960007F)); + builder.AddLine(new Vector2(672.692017F, -114.800003F)); + builder.AddLine(new Vector2(669.452026F, -114.800003F)); + builder.AddLine(new Vector2(669.452026F, -89.0960007F)); + builder.AddLine(new Vector2(672.692017F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0899() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(661.856018F, -89.4919968F)); + builder.AddCubicBezier(new Vector2(663.031982F, -89.9960022F), new Vector2(664.039978F, -90.7279968F), new Vector2(664.880005F, -91.6880035F)); + builder.AddLine(new Vector2(662.791992F, -93.8119965F)); + builder.AddCubicBezier(new Vector2(662.216003F, -93.1399994F), new Vector2(661.526001F, -92.6360016F), new Vector2(660.721985F, -92.3000031F)); + builder.AddCubicBezier(new Vector2(659.91803F, -91.9639969F), new Vector2(659.036011F, -91.7959976F), new Vector2(658.075989F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(656.924011F, -91.7959976F), new Vector2(655.903992F, -92.0419998F), new Vector2(655.015991F, -92.5339966F)); + builder.AddCubicBezier(new Vector2(654.127991F, -93.026001F), new Vector2(653.44397F, -93.7220001F), new Vector2(652.963989F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(652.484009F, -95.5220032F), new Vector2(652.244019F, -96.5719986F), new Vector2(652.244019F, -97.7720032F)); + builder.AddCubicBezier(new Vector2(652.244019F, -98.947998F), new Vector2(652.471985F, -99.9680023F), new Vector2(652.927979F, -100.832001F)); + builder.AddCubicBezier(new Vector2(653.383972F, -101.695999F), new Vector2(654.031982F, -102.367996F), new Vector2(654.872009F, -102.848F)); + builder.AddCubicBezier(new Vector2(655.711975F, -103.328003F), new Vector2(656.684021F, -103.568001F), new Vector2(657.788025F, -103.568001F)); + builder.AddCubicBezier(new Vector2(658.843994F, -103.568001F), new Vector2(659.744019F, -103.346001F), new Vector2(660.487976F, -102.902F)); + builder.AddCubicBezier(new Vector2(661.231995F, -102.458F), new Vector2(661.807983F, -101.834F), new Vector2(662.216003F, -101.029999F)); + builder.AddCubicBezier(new Vector2(662.624023F, -100.225998F), new Vector2(662.828003F, -99.2480011F), new Vector2(662.828003F, -98.0960007F)); + builder.AddLine(new Vector2(664.015991F, -99.1399994F)); + builder.AddLine(new Vector2(651.307983F, -99.1399994F)); + builder.AddLine(new Vector2(651.307983F, -96.4400024F)); + builder.AddLine(new Vector2(665.744019F, -96.4400024F)); + builder.AddCubicBezier(new Vector2(665.815979F, -96.776001F), new Vector2(665.864014F, -97.0820007F), new Vector2(665.888F, -97.3580017F)); + builder.AddCubicBezier(new Vector2(665.911987F, -97.6340027F), new Vector2(665.924011F, -97.8919983F), new Vector2(665.924011F, -98.1320038F)); + builder.AddCubicBezier(new Vector2(665.924011F, -99.7639999F), new Vector2(665.58197F, -101.216003F), new Vector2(664.89801F, -102.487999F)); + builder.AddCubicBezier(new Vector2(664.213989F, -103.760002F), new Vector2(663.26001F, -104.755997F), new Vector2(662.036011F, -105.475998F)); + builder.AddCubicBezier(new Vector2(660.812012F, -106.195999F), new Vector2(659.419983F, -106.556F), new Vector2(657.859985F, -106.556F)); + builder.AddCubicBezier(new Vector2(656.203979F, -106.556F), new Vector2(654.710022F, -106.166F), new Vector2(653.377991F, -105.386002F)); + builder.AddCubicBezier(new Vector2(652.046021F, -104.606003F), new Vector2(650.98999F, -103.543999F), new Vector2(650.210022F, -102.199997F)); + builder.AddCubicBezier(new Vector2(649.429993F, -100.856003F), new Vector2(649.039978F, -99.3440018F), new Vector2(649.039978F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(649.039978F, -95.9599991F), new Vector2(649.435974F, -94.435997F), new Vector2(650.228027F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(651.02002F, -91.7480011F), new Vector2(652.093994F, -90.685997F), new Vector2(653.450012F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(654.80603F, -89.1259995F), new Vector2(656.348022F, -88.7360001F), new Vector2(658.075989F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(659.419983F, -88.7360001F), new Vector2(660.679993F, -88.987999F), new Vector2(661.856018F, -89.4919968F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0900() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(645.763977F, -89.0960007F)); + builder.AddLine(new Vector2(645.763977F, -100.075996F)); + builder.AddCubicBezier(new Vector2(645.763977F, -101.419998F), new Vector2(645.469971F, -102.571999F), new Vector2(644.882019F, -103.531998F)); + builder.AddCubicBezier(new Vector2(644.294006F, -104.491997F), new Vector2(643.507996F, -105.236F), new Vector2(642.523987F, -105.764F)); + builder.AddCubicBezier(new Vector2(641.539978F, -106.292F), new Vector2(640.424011F, -106.556F), new Vector2(639.176025F, -106.556F)); + builder.AddCubicBezier(new Vector2(637.976013F, -106.556F), new Vector2(636.872009F, -106.286003F), new Vector2(635.864014F, -105.746002F)); + builder.AddCubicBezier(new Vector2(634.856018F, -105.206001F), new Vector2(634.033997F, -104.461998F), new Vector2(633.39801F, -103.514F)); + builder.AddCubicBezier(new Vector2(632.762024F, -102.566002F), new Vector2(632.40802F, -101.431999F), new Vector2(632.335999F, -100.112F)); + builder.AddLine(new Vector2(634.171997F, -99.4280014F)); + builder.AddCubicBezier(new Vector2(634.171997F, -100.292F), new Vector2(634.364014F, -101.024002F), new Vector2(634.747986F, -101.624001F)); + builder.AddCubicBezier(new Vector2(635.132019F, -102.223999F), new Vector2(635.642029F, -102.692001F), new Vector2(636.278015F, -103.028F)); + builder.AddCubicBezier(new Vector2(636.914001F, -103.363998F), new Vector2(637.627991F, -103.531998F), new Vector2(638.419983F, -103.531998F)); + builder.AddCubicBezier(new Vector2(639.572021F, -103.531998F), new Vector2(640.538025F, -103.166F), new Vector2(641.317993F, -102.433998F)); + builder.AddCubicBezier(new Vector2(642.098022F, -101.702003F), new Vector2(642.487976F, -100.699997F), new Vector2(642.487976F, -99.4280014F)); + builder.AddLine(new Vector2(642.487976F, -89.0960007F)); + builder.AddLine(new Vector2(645.763977F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(634.171997F, -89.0960007F)); + builder.AddLine(new Vector2(634.171997F, -100.112F)); + builder.AddCubicBezier(new Vector2(634.171997F, -101.431999F), new Vector2(633.890015F, -102.571999F), new Vector2(633.325989F, -103.531998F)); + builder.AddCubicBezier(new Vector2(632.762024F, -104.491997F), new Vector2(631.994019F, -105.236F), new Vector2(631.021973F, -105.764F)); + builder.AddCubicBezier(new Vector2(630.049988F, -106.292F), new Vector2(628.963989F, -106.556F), new Vector2(627.763977F, -106.556F)); + builder.AddCubicBezier(new Vector2(626.539978F, -106.556F), new Vector2(625.435974F, -106.286003F), new Vector2(624.452026F, -105.746002F)); + builder.AddCubicBezier(new Vector2(623.468018F, -105.206001F), new Vector2(622.69397F, -104.456001F), new Vector2(622.130005F, -103.496002F)); + builder.AddCubicBezier(new Vector2(621.565979F, -102.536003F), new Vector2(621.283997F, -101.407997F), new Vector2(621.283997F, -100.112F)); + builder.AddLine(new Vector2(622.616028F, -99.4280014F)); + builder.AddCubicBezier(new Vector2(622.616028F, -100.292F), new Vector2(622.807983F, -101.024002F), new Vector2(623.192017F, -101.624001F)); + builder.AddCubicBezier(new Vector2(623.575989F, -102.223999F), new Vector2(624.080017F, -102.692001F), new Vector2(624.703979F, -103.028F)); + builder.AddCubicBezier(new Vector2(625.328003F, -103.363998F), new Vector2(626.036011F, -103.531998F), new Vector2(626.828003F, -103.531998F)); + builder.AddCubicBezier(new Vector2(628.004028F, -103.531998F), new Vector2(628.981995F, -103.166F), new Vector2(629.762024F, -102.433998F)); + builder.AddCubicBezier(new Vector2(630.541992F, -101.702003F), new Vector2(630.932007F, -100.699997F), new Vector2(630.932007F, -99.4280014F)); + builder.AddLine(new Vector2(630.932007F, -89.0960007F)); + builder.AddLine(new Vector2(634.171997F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(622.616028F, -89.0960007F)); + builder.AddLine(new Vector2(622.616028F, -106.195999F)); + builder.AddLine(new Vector2(619.375977F, -106.195999F)); + builder.AddLine(new Vector2(619.375977F, -89.0960007F)); + builder.AddLine(new Vector2(622.616028F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0901() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(614.659973F, -89.0960007F)); + builder.AddLine(new Vector2(614.659973F, -106.195999F)); + builder.AddLine(new Vector2(611.383972F, -106.195999F)); + builder.AddLine(new Vector2(611.383972F, -102.019997F)); + builder.AddLine(new Vector2(611.995972F, -97.8799973F)); + builder.AddLine(new Vector2(611.383972F, -93.7040024F)); + builder.AddLine(new Vector2(611.383972F, -89.0960007F)); + builder.AddLine(new Vector2(614.659973F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(603.356018F, -92.552002F)); + builder.AddCubicBezier(new Vector2(602.515991F, -93.0559998F), new Vector2(601.862F, -93.7460022F), new Vector2(601.393982F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(600.926025F, -95.4980011F), new Vector2(600.692017F, -96.512001F), new Vector2(600.692017F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(600.692017F, -98.7919998F), new Vector2(600.926025F, -99.7939987F), new Vector2(601.393982F, -100.669998F)); + builder.AddCubicBezier(new Vector2(601.862F, -101.545998F), new Vector2(602.51001F, -102.236F), new Vector2(603.338013F, -102.739998F)); + builder.AddCubicBezier(new Vector2(604.166016F, -103.244003F), new Vector2(605.119995F, -103.496002F), new Vector2(606.200012F, -103.496002F)); + builder.AddCubicBezier(new Vector2(607.280029F, -103.496002F), new Vector2(608.221985F, -103.25F), new Vector2(609.026001F, -102.758003F)); + builder.AddCubicBezier(new Vector2(609.830017F, -102.265999F), new Vector2(610.460022F, -101.575996F), new Vector2(610.916016F, -100.688004F)); + builder.AddCubicBezier(new Vector2(611.372009F, -99.8000031F), new Vector2(611.599976F, -98.7799988F), new Vector2(611.599976F, -97.6279984F)); + builder.AddCubicBezier(new Vector2(611.599976F, -95.9240036F), new Vector2(611.107971F, -94.526001F), new Vector2(610.124023F, -93.4339981F)); + builder.AddCubicBezier(new Vector2(609.140015F, -92.3420029F), new Vector2(607.843994F, -91.7959976F), new Vector2(606.236023F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(605.156006F, -91.7959976F), new Vector2(604.195984F, -92.0479965F), new Vector2(603.356018F, -92.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(609.187988F, -89.5459976F)); + builder.AddCubicBezier(new Vector2(610.219971F, -90.0859985F), new Vector2(611.041992F, -90.8359985F), new Vector2(611.653992F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(612.265991F, -92.7559967F), new Vector2(612.607971F, -93.8479996F), new Vector2(612.679993F, -95.0719986F)); + builder.AddLine(new Vector2(612.679993F, -100.220001F)); + builder.AddCubicBezier(new Vector2(612.607971F, -101.468002F), new Vector2(612.26001F, -102.566002F), new Vector2(611.635986F, -103.514F)); + builder.AddCubicBezier(new Vector2(611.012024F, -104.461998F), new Vector2(610.190002F, -105.206001F), new Vector2(609.169983F, -105.746002F)); + builder.AddCubicBezier(new Vector2(608.150024F, -106.286003F), new Vector2(606.992004F, -106.556F), new Vector2(605.695984F, -106.556F)); + builder.AddCubicBezier(new Vector2(604.112F, -106.556F), new Vector2(602.690002F, -106.160004F), new Vector2(601.429993F, -105.367996F)); + builder.AddCubicBezier(new Vector2(600.169983F, -104.575996F), new Vector2(599.174011F, -103.508003F), new Vector2(598.442017F, -102.164001F)); + builder.AddCubicBezier(new Vector2(597.710022F, -100.82F), new Vector2(597.343994F, -99.3079987F), new Vector2(597.343994F, -97.6279984F)); + builder.AddCubicBezier(new Vector2(597.343994F, -95.947998F), new Vector2(597.710022F, -94.435997F), new Vector2(598.442017F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(599.174011F, -91.7480011F), new Vector2(600.169983F, -90.685997F), new Vector2(601.429993F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(602.690002F, -89.1259995F), new Vector2(604.112F, -88.7360001F), new Vector2(605.695984F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(606.992004F, -88.7360001F), new Vector2(608.156006F, -89.0059967F), new Vector2(609.187988F, -89.5459976F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0902() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(581.935974F, -89.0960007F)); + builder.AddLine(new Vector2(581.935974F, -114.800003F)); + builder.AddLine(new Vector2(578.695984F, -114.800003F)); + builder.AddLine(new Vector2(578.695984F, -89.0960007F)); + builder.AddLine(new Vector2(581.935974F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(594.031982F, -89.0960007F)); + builder.AddLine(new Vector2(594.031982F, -99.7160034F)); + builder.AddCubicBezier(new Vector2(594.031982F, -101.059998F), new Vector2(593.744019F, -102.248001F), new Vector2(593.16803F, -103.279999F)); + builder.AddCubicBezier(new Vector2(592.59198F, -104.311996F), new Vector2(591.80603F, -105.115997F), new Vector2(590.809998F, -105.692001F)); + builder.AddCubicBezier(new Vector2(589.814026F, -106.267998F), new Vector2(588.66803F, -106.556F), new Vector2(587.372009F, -106.556F)); + builder.AddCubicBezier(new Vector2(586.075989F, -106.556F), new Vector2(584.911987F, -106.262001F), new Vector2(583.880005F, -105.674004F)); + builder.AddCubicBezier(new Vector2(582.848022F, -105.085999F), new Vector2(582.044006F, -104.288002F), new Vector2(581.468018F, -103.279999F)); + builder.AddCubicBezier(new Vector2(580.892029F, -102.272003F), new Vector2(580.604004F, -101.120003F), new Vector2(580.604004F, -99.8239975F)); + builder.AddLine(new Vector2(581.935974F, -99.0680008F)); + builder.AddCubicBezier(new Vector2(581.935974F, -99.9319992F), new Vector2(582.127991F, -100.699997F), new Vector2(582.512024F, -101.372002F)); + builder.AddCubicBezier(new Vector2(582.895996F, -102.043999F), new Vector2(583.424011F, -102.571999F), new Vector2(584.096008F, -102.956001F)); + builder.AddCubicBezier(new Vector2(584.768005F, -103.339996F), new Vector2(585.536011F, -103.531998F), new Vector2(586.400024F, -103.531998F)); + builder.AddCubicBezier(new Vector2(587.695984F, -103.531998F), new Vector2(588.745972F, -103.112F), new Vector2(589.549988F, -102.272003F)); + builder.AddCubicBezier(new Vector2(590.354004F, -101.431999F), new Vector2(590.755981F, -100.363998F), new Vector2(590.755981F, -99.0680008F)); + builder.AddLine(new Vector2(590.755981F, -89.0960007F)); + builder.AddLine(new Vector2(594.031982F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0903() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(573.349976F, -90.1399994F)); + builder.AddCubicBezier(new Vector2(574.48999F, -91.0759964F), new Vector2(575.059998F, -92.3479996F), new Vector2(575.059998F, -93.9560013F)); + builder.AddCubicBezier(new Vector2(575.059998F, -95.012001F), new Vector2(574.838013F, -95.8639984F), new Vector2(574.393982F, -96.512001F)); + builder.AddCubicBezier(new Vector2(573.950012F, -97.1600037F), new Vector2(573.380005F, -97.6760025F), new Vector2(572.684021F, -98.0599976F)); + builder.AddCubicBezier(new Vector2(571.987976F, -98.4440002F), new Vector2(571.255981F, -98.75F), new Vector2(570.487976F, -98.9779968F)); + builder.AddCubicBezier(new Vector2(569.719971F, -99.2060013F), new Vector2(568.981995F, -99.4280014F), new Vector2(568.273987F, -99.6439972F)); + builder.AddCubicBezier(new Vector2(567.565979F, -99.8600006F), new Vector2(566.995972F, -100.124001F), new Vector2(566.564026F, -100.435997F)); + builder.AddCubicBezier(new Vector2(566.132019F, -100.748001F), new Vector2(565.916016F, -101.192001F), new Vector2(565.916016F, -101.767998F)); + builder.AddCubicBezier(new Vector2(565.916016F, -102.32F), new Vector2(566.161987F, -102.764F), new Vector2(566.653992F, -103.099998F)); + builder.AddCubicBezier(new Vector2(567.145996F, -103.435997F), new Vector2(567.859985F, -103.603996F), new Vector2(568.796021F, -103.603996F)); + builder.AddCubicBezier(new Vector2(569.684021F, -103.603996F), new Vector2(570.476013F, -103.435997F), new Vector2(571.171997F, -103.099998F)); + builder.AddCubicBezier(new Vector2(571.867981F, -102.764F), new Vector2(572.468018F, -102.283997F), new Vector2(572.971985F, -101.660004F)); + builder.AddLine(new Vector2(575.059998F, -103.748001F)); + builder.AddCubicBezier(new Vector2(574.388F, -104.683998F), new Vector2(573.530029F, -105.386002F), new Vector2(572.486023F, -105.853996F)); + builder.AddCubicBezier(new Vector2(571.442017F, -106.321999F), new Vector2(570.247986F, -106.556F), new Vector2(568.903992F, -106.556F)); + builder.AddCubicBezier(new Vector2(567.632019F, -106.556F), new Vector2(566.539978F, -106.351997F), new Vector2(565.627991F, -105.944F)); + builder.AddCubicBezier(new Vector2(564.716003F, -105.536003F), new Vector2(564.013977F, -104.954002F), new Vector2(563.521973F, -104.197998F)); + builder.AddCubicBezier(new Vector2(563.030029F, -103.442001F), new Vector2(562.783997F, -102.547997F), new Vector2(562.783997F, -101.515999F)); + builder.AddCubicBezier(new Vector2(562.783997F, -100.484001F), new Vector2(563.005981F, -99.6500015F), new Vector2(563.450012F, -99.0139999F)); + builder.AddCubicBezier(new Vector2(563.893982F, -98.3779984F), new Vector2(564.463989F, -97.8799973F), new Vector2(565.159973F, -97.5199966F)); + builder.AddCubicBezier(new Vector2(565.856018F, -97.1600037F), new Vector2(566.593994F, -96.8720016F), new Vector2(567.374023F, -96.6559982F)); + builder.AddCubicBezier(new Vector2(568.153992F, -96.4400024F), new Vector2(568.892029F, -96.2180023F), new Vector2(569.588013F, -95.9899979F)); + builder.AddCubicBezier(new Vector2(570.283997F, -95.762001F), new Vector2(570.854004F, -95.473999F), new Vector2(571.297974F, -95.1259995F)); + builder.AddCubicBezier(new Vector2(571.742004F, -94.7779999F), new Vector2(571.963989F, -94.2919998F), new Vector2(571.963989F, -93.6679993F)); + builder.AddCubicBezier(new Vector2(571.963989F, -93.0439987F), new Vector2(571.687988F, -92.5579987F), new Vector2(571.135986F, -92.2099991F)); + builder.AddCubicBezier(new Vector2(570.583984F, -91.8619995F), new Vector2(569.804016F, -91.6880035F), new Vector2(568.796021F, -91.6880035F)); + builder.AddCubicBezier(new Vector2(567.788025F, -91.6880035F), new Vector2(566.875977F, -91.8740005F), new Vector2(566.059998F, -92.2460022F)); + builder.AddCubicBezier(new Vector2(565.244019F, -92.6179962F), new Vector2(564.523987F, -93.1880035F), new Vector2(563.900024F, -93.9560013F)); + builder.AddLine(new Vector2(561.812012F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(562.340027F, -91.2200012F), new Vector2(562.958008F, -90.6620026F), new Vector2(563.666016F, -90.1940002F)); + builder.AddCubicBezier(new Vector2(564.374023F, -89.7259979F), new Vector2(565.159973F, -89.3659973F), new Vector2(566.023987F, -89.1139984F)); + builder.AddCubicBezier(new Vector2(566.888F, -88.8619995F), new Vector2(567.799988F, -88.7360001F), new Vector2(568.76001F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(570.679993F, -88.7360001F), new Vector2(572.210022F, -89.2040024F), new Vector2(573.349976F, -90.1399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0904() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(535.640015F, -89.0960007F)); + builder.AddLine(new Vector2(540.607971F, -101.984001F)); + builder.AddLine(new Vector2(539.419983F, -101.984001F)); + builder.AddLine(new Vector2(544.35199F, -89.0960007F)); + builder.AddLine(new Vector2(546.26001F, -89.0960007F)); + builder.AddLine(new Vector2(552.992004F, -106.195999F)); + builder.AddLine(new Vector2(549.607971F, -106.195999F)); + builder.AddLine(new Vector2(544.711975F, -92.8759995F)); + builder.AddLine(new Vector2(545.791992F, -92.8759995F)); + builder.AddLine(new Vector2(540.932007F, -106.195999F)); + builder.AddLine(new Vector2(539.059998F, -106.195999F)); + builder.AddLine(new Vector2(534.200012F, -92.8759995F)); + builder.AddLine(new Vector2(535.280029F, -92.8759995F)); + builder.AddLine(new Vector2(530.383972F, -106.195999F)); + builder.AddLine(new Vector2(527F, -106.195999F)); + builder.AddLine(new Vector2(533.731995F, -89.0960007F)); + builder.AddLine(new Vector2(535.640015F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0905() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(513.968018F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(513.127991F, -93.1279984F), new Vector2(512.468018F, -93.8180008F), new Vector2(511.988007F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(511.507996F, -95.5699997F), new Vector2(511.268005F, -96.5719986F), new Vector2(511.268005F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(511.268005F, -98.8040009F), new Vector2(511.507996F, -99.788002F), new Vector2(511.988007F, -100.652F)); + builder.AddCubicBezier(new Vector2(512.468018F, -101.515999F), new Vector2(513.127991F, -102.194F), new Vector2(513.968018F, -102.685997F)); + builder.AddCubicBezier(new Vector2(514.807983F, -103.178001F), new Vector2(515.755981F, -103.424004F), new Vector2(516.812012F, -103.424004F)); + builder.AddCubicBezier(new Vector2(517.916016F, -103.424004F), new Vector2(518.882019F, -103.178001F), new Vector2(519.710022F, -102.685997F)); + builder.AddCubicBezier(new Vector2(520.538025F, -102.194F), new Vector2(521.197998F, -101.515999F), new Vector2(521.690002F, -100.652F)); + builder.AddCubicBezier(new Vector2(522.182007F, -99.788002F), new Vector2(522.427979F, -98.8040009F), new Vector2(522.427979F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(522.427979F, -96.5719986F), new Vector2(522.187988F, -95.5699997F), new Vector2(521.708008F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(521.228027F, -93.8180008F), new Vector2(520.567993F, -93.1279984F), new Vector2(519.728027F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(518.888F, -92.1200027F), new Vector2(517.916016F, -91.8679962F), new Vector2(516.812012F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(515.755981F, -91.8679962F), new Vector2(514.807983F, -92.1200027F), new Vector2(513.968018F, -92.6240005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(521.366028F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(522.721985F, -90.7160034F), new Vector2(523.796021F, -91.7900009F), new Vector2(524.588013F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(525.380005F, -94.5019989F), new Vector2(525.776001F, -96.0199966F), new Vector2(525.776001F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(525.776001F, -99.3560028F), new Vector2(525.380005F, -100.856003F), new Vector2(524.588013F, -102.199997F)); + builder.AddCubicBezier(new Vector2(523.796021F, -103.543999F), new Vector2(522.721985F, -104.606003F), new Vector2(521.366028F, -105.386002F)); + builder.AddCubicBezier(new Vector2(520.01001F, -106.166F), new Vector2(518.492004F, -106.556F), new Vector2(516.812012F, -106.556F)); + builder.AddCubicBezier(new Vector2(515.156006F, -106.556F), new Vector2(513.656006F, -106.160004F), new Vector2(512.312012F, -105.367996F)); + builder.AddCubicBezier(new Vector2(510.967987F, -104.575996F), new Vector2(509.899994F, -103.514F), new Vector2(509.108002F, -102.181999F)); + builder.AddCubicBezier(new Vector2(508.31601F, -100.849998F), new Vector2(507.920013F, -99.3560028F), new Vector2(507.920013F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(507.920013F, -96.0199966F), new Vector2(508.31601F, -94.5019989F), new Vector2(509.108002F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(509.899994F, -91.7900009F), new Vector2(510.967987F, -90.7160034F), new Vector2(512.312012F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(513.656006F, -89.1320038F), new Vector2(515.156006F, -88.7360001F), new Vector2(516.812012F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(518.492004F, -88.7360001F), new Vector2(520.01001F, -89.1320038F), new Vector2(521.366028F, -89.9240036F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0906() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(501.115997F, -100.472F)); + builder.AddLine(new Vector2(501.115997F, -103.568001F)); + builder.AddLine(new Vector2(486.5F, -103.568001F)); + builder.AddLine(new Vector2(486.5F, -100.472F)); + builder.AddLine(new Vector2(501.115997F, -100.472F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(503.708008F, -89.0960007F)); + builder.AddLine(new Vector2(503.708008F, -114.080002F)); + builder.AddLine(new Vector2(500.324005F, -114.080002F)); + builder.AddLine(new Vector2(500.324005F, -89.0960007F)); + builder.AddLine(new Vector2(503.708008F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(487.579987F, -89.0960007F)); + builder.AddLine(new Vector2(487.579987F, -114.080002F)); + builder.AddLine(new Vector2(484.196014F, -114.080002F)); + builder.AddLine(new Vector2(484.196014F, -89.0960007F)); + builder.AddLine(new Vector2(487.579987F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0907() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(470.246002F, -89.4380035F)); + builder.AddCubicBezier(new Vector2(470.690002F, -89.9059982F), new Vector2(470.911987F, -90.4639969F), new Vector2(470.911987F, -91.1119995F)); + builder.AddCubicBezier(new Vector2(470.911987F, -91.7839966F), new Vector2(470.690002F, -92.3420029F), new Vector2(470.246002F, -92.7860031F)); + builder.AddCubicBezier(new Vector2(469.802002F, -93.2300034F), new Vector2(469.243988F, -93.4520035F), new Vector2(468.571991F, -93.4520035F)); + builder.AddCubicBezier(new Vector2(467.876007F, -93.4520035F), new Vector2(467.312012F, -93.2300034F), new Vector2(466.880005F, -92.7860031F)); + builder.AddCubicBezier(new Vector2(466.447998F, -92.3420029F), new Vector2(466.231995F, -91.7839966F), new Vector2(466.231995F, -91.1119995F)); + builder.AddCubicBezier(new Vector2(466.231995F, -90.4639969F), new Vector2(466.447998F, -89.9059982F), new Vector2(466.880005F, -89.4380035F)); + builder.AddCubicBezier(new Vector2(467.312012F, -88.9700012F), new Vector2(467.876007F, -88.7360001F), new Vector2(468.571991F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(469.243988F, -88.7360001F), new Vector2(469.802002F, -88.9700012F), new Vector2(470.246002F, -89.4380035F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0908() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(458.131989F, -89.4919968F)); + builder.AddCubicBezier(new Vector2(459.308014F, -89.9960022F), new Vector2(460.31601F, -90.7279968F), new Vector2(461.156006F, -91.6880035F)); + builder.AddLine(new Vector2(459.067993F, -93.8119965F)); + builder.AddCubicBezier(new Vector2(458.492004F, -93.1399994F), new Vector2(457.802002F, -92.6360016F), new Vector2(456.997986F, -92.3000031F)); + builder.AddCubicBezier(new Vector2(456.194F, -91.9639969F), new Vector2(455.312012F, -91.7959976F), new Vector2(454.35199F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(453.200012F, -91.7959976F), new Vector2(452.179993F, -92.0419998F), new Vector2(451.291992F, -92.5339966F)); + builder.AddCubicBezier(new Vector2(450.403992F, -93.026001F), new Vector2(449.720001F, -93.7220001F), new Vector2(449.23999F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(448.76001F, -95.5220032F), new Vector2(448.519989F, -96.5719986F), new Vector2(448.519989F, -97.7720032F)); + builder.AddCubicBezier(new Vector2(448.519989F, -98.947998F), new Vector2(448.747986F, -99.9680023F), new Vector2(449.20401F, -100.832001F)); + builder.AddCubicBezier(new Vector2(449.660004F, -101.695999F), new Vector2(450.308014F, -102.367996F), new Vector2(451.14801F, -102.848F)); + builder.AddCubicBezier(new Vector2(451.988007F, -103.328003F), new Vector2(452.959991F, -103.568001F), new Vector2(454.063995F, -103.568001F)); + builder.AddCubicBezier(new Vector2(455.119995F, -103.568001F), new Vector2(456.019989F, -103.346001F), new Vector2(456.764008F, -102.902F)); + builder.AddCubicBezier(new Vector2(457.507996F, -102.458F), new Vector2(458.084015F, -101.834F), new Vector2(458.492004F, -101.029999F)); + builder.AddCubicBezier(new Vector2(458.899994F, -100.225998F), new Vector2(459.104004F, -99.2480011F), new Vector2(459.104004F, -98.0960007F)); + builder.AddLine(new Vector2(460.291992F, -99.1399994F)); + builder.AddLine(new Vector2(447.584015F, -99.1399994F)); + builder.AddLine(new Vector2(447.584015F, -96.4400024F)); + builder.AddLine(new Vector2(462.019989F, -96.4400024F)); + builder.AddCubicBezier(new Vector2(462.09201F, -96.776001F), new Vector2(462.140015F, -97.0820007F), new Vector2(462.164001F, -97.3580017F)); + builder.AddCubicBezier(new Vector2(462.187988F, -97.6340027F), new Vector2(462.200012F, -97.8919983F), new Vector2(462.200012F, -98.1320038F)); + builder.AddCubicBezier(new Vector2(462.200012F, -99.7639999F), new Vector2(461.858002F, -101.216003F), new Vector2(461.174011F, -102.487999F)); + builder.AddCubicBezier(new Vector2(460.48999F, -103.760002F), new Vector2(459.536011F, -104.755997F), new Vector2(458.312012F, -105.475998F)); + builder.AddCubicBezier(new Vector2(457.088013F, -106.195999F), new Vector2(455.696014F, -106.556F), new Vector2(454.135986F, -106.556F)); + builder.AddCubicBezier(new Vector2(452.480011F, -106.556F), new Vector2(450.985992F, -106.166F), new Vector2(449.653992F, -105.386002F)); + builder.AddCubicBezier(new Vector2(448.321991F, -104.606003F), new Vector2(447.265991F, -103.543999F), new Vector2(446.485992F, -102.199997F)); + builder.AddCubicBezier(new Vector2(445.705994F, -100.856003F), new Vector2(445.31601F, -99.3440018F), new Vector2(445.31601F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(445.31601F, -95.9599991F), new Vector2(445.712006F, -94.435997F), new Vector2(446.503998F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(447.29599F, -91.7480011F), new Vector2(448.369995F, -90.685997F), new Vector2(449.726013F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(451.082001F, -89.1259995F), new Vector2(452.623993F, -88.7360001F), new Vector2(454.35199F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(455.696014F, -88.7360001F), new Vector2(456.955994F, -88.987999F), new Vector2(458.131989F, -89.4919968F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0909() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(441.679993F, -89.0960007F)); + builder.AddLine(new Vector2(441.679993F, -114.800003F)); + builder.AddLine(new Vector2(438.440002F, -114.800003F)); + builder.AddLine(new Vector2(438.440002F, -89.0960007F)); + builder.AddLine(new Vector2(441.679993F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0910() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(423.122009F, -92.552002F)); + builder.AddCubicBezier(new Vector2(422.294006F, -93.0559998F), new Vector2(421.65799F, -93.7460022F), new Vector2(421.213989F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(420.769989F, -95.4980011F), new Vector2(420.548004F, -96.5F), new Vector2(420.548004F, -97.6279984F)); + builder.AddCubicBezier(new Vector2(420.548004F, -98.7799988F), new Vector2(420.776001F, -99.7939987F), new Vector2(421.231995F, -100.669998F)); + builder.AddCubicBezier(new Vector2(421.687988F, -101.545998F), new Vector2(422.324005F, -102.236F), new Vector2(423.140015F, -102.739998F)); + builder.AddCubicBezier(new Vector2(423.955994F, -103.244003F), new Vector2(424.891998F, -103.496002F), new Vector2(425.947998F, -103.496002F)); + builder.AddCubicBezier(new Vector2(427.028015F, -103.496002F), new Vector2(427.976013F, -103.244003F), new Vector2(428.791992F, -102.739998F)); + builder.AddCubicBezier(new Vector2(429.608002F, -102.236F), new Vector2(430.25F, -101.545998F), new Vector2(430.717987F, -100.669998F)); + builder.AddCubicBezier(new Vector2(431.186005F, -99.7939987F), new Vector2(431.420013F, -98.7919998F), new Vector2(431.420013F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(431.420013F, -96.512001F), new Vector2(431.186005F, -95.4980011F), new Vector2(430.717987F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(430.25F, -93.7460022F), new Vector2(429.608002F, -93.0559998F), new Vector2(428.791992F, -92.552002F)); + builder.AddCubicBezier(new Vector2(427.976013F, -92.0479965F), new Vector2(427.028015F, -91.7959976F), new Vector2(425.947998F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(424.891998F, -91.7959976F), new Vector2(423.950012F, -92.0479965F), new Vector2(423.122009F, -92.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(420.727997F, -81.9319992F)); + builder.AddLine(new Vector2(420.727997F, -93.3799973F)); + builder.AddLine(new Vector2(420.115997F, -97.5559998F)); + builder.AddLine(new Vector2(420.727997F, -101.695999F)); + builder.AddLine(new Vector2(420.727997F, -106.195999F)); + builder.AddLine(new Vector2(417.488007F, -106.195999F)); + builder.AddLine(new Vector2(417.488007F, -81.9319992F)); + builder.AddLine(new Vector2(420.727997F, -81.9319992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(430.717987F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(431.977997F, -90.685997F), new Vector2(432.967987F, -91.7480011F), new Vector2(433.687988F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(434.40799F, -94.435997F), new Vector2(434.768005F, -95.947998F), new Vector2(434.768005F, -97.6279984F)); + builder.AddCubicBezier(new Vector2(434.768005F, -99.3079987F), new Vector2(434.40799F, -100.82F), new Vector2(433.687988F, -102.164001F)); + builder.AddCubicBezier(new Vector2(432.967987F, -103.508003F), new Vector2(431.977997F, -104.575996F), new Vector2(430.717987F, -105.367996F)); + builder.AddCubicBezier(new Vector2(429.458008F, -106.160004F), new Vector2(428.048004F, -106.556F), new Vector2(426.488007F, -106.556F)); + builder.AddCubicBezier(new Vector2(425.216003F, -106.556F), new Vector2(424.058014F, -106.286003F), new Vector2(423.014008F, -105.746002F)); + builder.AddCubicBezier(new Vector2(421.970001F, -105.206001F), new Vector2(421.130005F, -104.461998F), new Vector2(420.493988F, -103.514F)); + builder.AddCubicBezier(new Vector2(419.858002F, -102.566002F), new Vector2(419.503998F, -101.468002F), new Vector2(419.432007F, -100.220001F)); + builder.AddLine(new Vector2(419.432007F, -95.0719986F)); + builder.AddCubicBezier(new Vector2(419.503998F, -93.8479996F), new Vector2(419.85199F, -92.7559967F), new Vector2(420.476013F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(421.100006F, -90.8359985F), new Vector2(421.93399F, -90.0859985F), new Vector2(422.977997F, -89.5459976F)); + builder.AddCubicBezier(new Vector2(424.022003F, -89.0059967F), new Vector2(425.191986F, -88.7360001F), new Vector2(426.488007F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(428.048004F, -88.7360001F), new Vector2(429.458008F, -89.1259995F), new Vector2(430.717987F, -89.9059982F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0911() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(402.079987F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(401.23999F, -93.1279984F), new Vector2(400.579987F, -93.8180008F), new Vector2(400.100006F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(399.619995F, -95.5699997F), new Vector2(399.380005F, -96.5719986F), new Vector2(399.380005F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(399.380005F, -98.8040009F), new Vector2(399.619995F, -99.788002F), new Vector2(400.100006F, -100.652F)); + builder.AddCubicBezier(new Vector2(400.579987F, -101.515999F), new Vector2(401.23999F, -102.194F), new Vector2(402.079987F, -102.685997F)); + builder.AddCubicBezier(new Vector2(402.920013F, -103.178001F), new Vector2(403.868011F, -103.424004F), new Vector2(404.924011F, -103.424004F)); + builder.AddCubicBezier(new Vector2(406.028015F, -103.424004F), new Vector2(406.993988F, -103.178001F), new Vector2(407.821991F, -102.685997F)); + builder.AddCubicBezier(new Vector2(408.649994F, -102.194F), new Vector2(409.309998F, -101.515999F), new Vector2(409.802002F, -100.652F)); + builder.AddCubicBezier(new Vector2(410.294006F, -99.788002F), new Vector2(410.540009F, -98.8040009F), new Vector2(410.540009F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(410.540009F, -96.5719986F), new Vector2(410.299988F, -95.5699997F), new Vector2(409.820007F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(409.339996F, -93.8180008F), new Vector2(408.679993F, -93.1279984F), new Vector2(407.839996F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(407F, -92.1200027F), new Vector2(406.028015F, -91.8679962F), new Vector2(404.924011F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(403.868011F, -91.8679962F), new Vector2(402.920013F, -92.1200027F), new Vector2(402.079987F, -92.6240005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(409.477997F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(410.834015F, -90.7160034F), new Vector2(411.90799F, -91.7900009F), new Vector2(412.700012F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(413.492004F, -94.5019989F), new Vector2(413.888F, -96.0199966F), new Vector2(413.888F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(413.888F, -99.3560028F), new Vector2(413.492004F, -100.856003F), new Vector2(412.700012F, -102.199997F)); + builder.AddCubicBezier(new Vector2(411.90799F, -103.543999F), new Vector2(410.834015F, -104.606003F), new Vector2(409.477997F, -105.386002F)); + builder.AddCubicBezier(new Vector2(408.122009F, -106.166F), new Vector2(406.604004F, -106.556F), new Vector2(404.924011F, -106.556F)); + builder.AddCubicBezier(new Vector2(403.268005F, -106.556F), new Vector2(401.768005F, -106.160004F), new Vector2(400.424011F, -105.367996F)); + builder.AddCubicBezier(new Vector2(399.079987F, -104.575996F), new Vector2(398.011993F, -103.514F), new Vector2(397.220001F, -102.181999F)); + builder.AddCubicBezier(new Vector2(396.428009F, -100.849998F), new Vector2(396.032013F, -99.3560028F), new Vector2(396.032013F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(396.032013F, -96.0199966F), new Vector2(396.428009F, -94.5019989F), new Vector2(397.220001F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(398.011993F, -91.7900009F), new Vector2(399.079987F, -90.7160034F), new Vector2(400.424011F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(401.768005F, -89.1320038F), new Vector2(403.268005F, -88.7360001F), new Vector2(404.924011F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(406.604004F, -88.7360001F), new Vector2(408.122009F, -89.1320038F), new Vector2(409.477997F, -89.9240036F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0912() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(389.552002F, -89.4919968F)); + builder.AddCubicBezier(new Vector2(390.727997F, -89.9960022F), new Vector2(391.735992F, -90.7279968F), new Vector2(392.575989F, -91.6880035F)); + builder.AddLine(new Vector2(390.488007F, -93.8119965F)); + builder.AddCubicBezier(new Vector2(389.911987F, -93.1399994F), new Vector2(389.221985F, -92.6360016F), new Vector2(388.417999F, -92.3000031F)); + builder.AddCubicBezier(new Vector2(387.614014F, -91.9639969F), new Vector2(386.731995F, -91.7959976F), new Vector2(385.772003F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(384.619995F, -91.7959976F), new Vector2(383.600006F, -92.0419998F), new Vector2(382.712006F, -92.5339966F)); + builder.AddCubicBezier(new Vector2(381.824005F, -93.026001F), new Vector2(381.140015F, -93.7220001F), new Vector2(380.660004F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(380.179993F, -95.5220032F), new Vector2(379.940002F, -96.5719986F), new Vector2(379.940002F, -97.7720032F)); + builder.AddCubicBezier(new Vector2(379.940002F, -98.947998F), new Vector2(380.167999F, -99.9680023F), new Vector2(380.623993F, -100.832001F)); + builder.AddCubicBezier(new Vector2(381.079987F, -101.695999F), new Vector2(381.727997F, -102.367996F), new Vector2(382.567993F, -102.848F)); + builder.AddCubicBezier(new Vector2(383.40799F, -103.328003F), new Vector2(384.380005F, -103.568001F), new Vector2(385.484009F, -103.568001F)); + builder.AddCubicBezier(new Vector2(386.540009F, -103.568001F), new Vector2(387.440002F, -103.346001F), new Vector2(388.18399F, -102.902F)); + builder.AddCubicBezier(new Vector2(388.928009F, -102.458F), new Vector2(389.503998F, -101.834F), new Vector2(389.911987F, -101.029999F)); + builder.AddCubicBezier(new Vector2(390.320007F, -100.225998F), new Vector2(390.523987F, -99.2480011F), new Vector2(390.523987F, -98.0960007F)); + builder.AddLine(new Vector2(391.712006F, -99.1399994F)); + builder.AddLine(new Vector2(379.003998F, -99.1399994F)); + builder.AddLine(new Vector2(379.003998F, -96.4400024F)); + builder.AddLine(new Vector2(393.440002F, -96.4400024F)); + builder.AddCubicBezier(new Vector2(393.511993F, -96.776001F), new Vector2(393.559998F, -97.0820007F), new Vector2(393.584015F, -97.3580017F)); + builder.AddCubicBezier(new Vector2(393.608002F, -97.6340027F), new Vector2(393.619995F, -97.8919983F), new Vector2(393.619995F, -98.1320038F)); + builder.AddCubicBezier(new Vector2(393.619995F, -99.7639999F), new Vector2(393.278015F, -101.216003F), new Vector2(392.593994F, -102.487999F)); + builder.AddCubicBezier(new Vector2(391.910004F, -103.760002F), new Vector2(390.955994F, -104.755997F), new Vector2(389.731995F, -105.475998F)); + builder.AddCubicBezier(new Vector2(388.507996F, -106.195999F), new Vector2(387.115997F, -106.556F), new Vector2(385.556F, -106.556F)); + builder.AddCubicBezier(new Vector2(383.899994F, -106.556F), new Vector2(382.406006F, -106.166F), new Vector2(381.074005F, -105.386002F)); + builder.AddCubicBezier(new Vector2(379.742004F, -104.606003F), new Vector2(378.686005F, -103.543999F), new Vector2(377.906006F, -102.199997F)); + builder.AddCubicBezier(new Vector2(377.126007F, -100.856003F), new Vector2(376.735992F, -99.3440018F), new Vector2(376.735992F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(376.735992F, -95.9599991F), new Vector2(377.131989F, -94.435997F), new Vector2(377.924011F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(378.716003F, -91.7480011F), new Vector2(379.790009F, -90.685997F), new Vector2(381.145996F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(382.502014F, -89.1259995F), new Vector2(384.044006F, -88.7360001F), new Vector2(385.772003F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(387.115997F, -88.7360001F), new Vector2(388.376007F, -88.987999F), new Vector2(389.552002F, -89.4919968F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0913() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(362.533997F, -92.552002F)); + builder.AddCubicBezier(new Vector2(361.705994F, -93.0559998F), new Vector2(361.070007F, -93.7460022F), new Vector2(360.626007F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(360.182007F, -95.4980011F), new Vector2(359.959991F, -96.5F), new Vector2(359.959991F, -97.6279984F)); + builder.AddCubicBezier(new Vector2(359.959991F, -98.7799988F), new Vector2(360.187988F, -99.7939987F), new Vector2(360.644012F, -100.669998F)); + builder.AddCubicBezier(new Vector2(361.100006F, -101.545998F), new Vector2(361.735992F, -102.236F), new Vector2(362.552002F, -102.739998F)); + builder.AddCubicBezier(new Vector2(363.368011F, -103.244003F), new Vector2(364.303986F, -103.496002F), new Vector2(365.359985F, -103.496002F)); + builder.AddCubicBezier(new Vector2(366.440002F, -103.496002F), new Vector2(367.388F, -103.244003F), new Vector2(368.20401F, -102.739998F)); + builder.AddCubicBezier(new Vector2(369.019989F, -102.236F), new Vector2(369.661987F, -101.545998F), new Vector2(370.130005F, -100.669998F)); + builder.AddCubicBezier(new Vector2(370.597992F, -99.7939987F), new Vector2(370.832001F, -98.7919998F), new Vector2(370.832001F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(370.832001F, -96.512001F), new Vector2(370.597992F, -95.4980011F), new Vector2(370.130005F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(369.661987F, -93.7460022F), new Vector2(369.019989F, -93.0559998F), new Vector2(368.20401F, -92.552002F)); + builder.AddCubicBezier(new Vector2(367.388F, -92.0479965F), new Vector2(366.440002F, -91.7959976F), new Vector2(365.359985F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(364.303986F, -91.7959976F), new Vector2(363.362F, -92.0479965F), new Vector2(362.533997F, -92.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(360.140015F, -81.9319992F)); + builder.AddLine(new Vector2(360.140015F, -93.3799973F)); + builder.AddLine(new Vector2(359.528015F, -97.5559998F)); + builder.AddLine(new Vector2(360.140015F, -101.695999F)); + builder.AddLine(new Vector2(360.140015F, -106.195999F)); + builder.AddLine(new Vector2(356.899994F, -106.195999F)); + builder.AddLine(new Vector2(356.899994F, -81.9319992F)); + builder.AddLine(new Vector2(360.140015F, -81.9319992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(370.130005F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(371.390015F, -90.685997F), new Vector2(372.380005F, -91.7480011F), new Vector2(373.100006F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(373.820007F, -94.435997F), new Vector2(374.179993F, -95.947998F), new Vector2(374.179993F, -97.6279984F)); + builder.AddCubicBezier(new Vector2(374.179993F, -99.3079987F), new Vector2(373.820007F, -100.82F), new Vector2(373.100006F, -102.164001F)); + builder.AddCubicBezier(new Vector2(372.380005F, -103.508003F), new Vector2(371.390015F, -104.575996F), new Vector2(370.130005F, -105.367996F)); + builder.AddCubicBezier(new Vector2(368.869995F, -106.160004F), new Vector2(367.459991F, -106.556F), new Vector2(365.899994F, -106.556F)); + builder.AddCubicBezier(new Vector2(364.627991F, -106.556F), new Vector2(363.470001F, -106.286003F), new Vector2(362.425995F, -105.746002F)); + builder.AddCubicBezier(new Vector2(361.381989F, -105.206001F), new Vector2(360.541992F, -104.461998F), new Vector2(359.906006F, -103.514F)); + builder.AddCubicBezier(new Vector2(359.269989F, -102.566002F), new Vector2(358.915985F, -101.468002F), new Vector2(358.843994F, -100.220001F)); + builder.AddLine(new Vector2(358.843994F, -95.0719986F)); + builder.AddCubicBezier(new Vector2(358.915985F, -93.8479996F), new Vector2(359.264008F, -92.7559967F), new Vector2(359.888F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(360.511993F, -90.8359985F), new Vector2(361.346008F, -90.0859985F), new Vector2(362.390015F, -89.5459976F)); + builder.AddCubicBezier(new Vector2(363.43399F, -89.0059967F), new Vector2(364.604004F, -88.7360001F), new Vector2(365.899994F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(367.459991F, -88.7360001F), new Vector2(368.869995F, -89.1259995F), new Vector2(370.130005F, -89.9059982F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0914() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(332.959991F, -89.0960007F)); + builder.AddLine(new Vector2(332.959991F, -106.195999F)); + builder.AddLine(new Vector2(329.720001F, -106.195999F)); + builder.AddLine(new Vector2(329.720001F, -89.0960007F)); + builder.AddLine(new Vector2(332.959991F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(345.056F, -89.0960007F)); + builder.AddLine(new Vector2(345.056F, -99.7160034F)); + builder.AddCubicBezier(new Vector2(345.056F, -100.891998F), new Vector2(344.768005F, -102.001999F), new Vector2(344.191986F, -103.045998F)); + builder.AddCubicBezier(new Vector2(343.615997F, -104.089996F), new Vector2(342.829987F, -104.935997F), new Vector2(341.834015F, -105.584F)); + builder.AddCubicBezier(new Vector2(340.838013F, -106.232002F), new Vector2(339.691986F, -106.556F), new Vector2(338.395996F, -106.556F)); + builder.AddCubicBezier(new Vector2(337.100006F, -106.556F), new Vector2(335.936005F, -106.262001F), new Vector2(334.903992F, -105.674004F)); + builder.AddCubicBezier(new Vector2(333.872009F, -105.085999F), new Vector2(333.067993F, -104.288002F), new Vector2(332.492004F, -103.279999F)); + builder.AddCubicBezier(new Vector2(331.915985F, -102.272003F), new Vector2(331.627991F, -101.120003F), new Vector2(331.627991F, -99.8239975F)); + builder.AddLine(new Vector2(332.959991F, -99.0680008F)); + builder.AddCubicBezier(new Vector2(332.959991F, -99.9319992F), new Vector2(333.152008F, -100.699997F), new Vector2(333.536011F, -101.372002F)); + builder.AddCubicBezier(new Vector2(333.920013F, -102.043999F), new Vector2(334.447998F, -102.571999F), new Vector2(335.119995F, -102.956001F)); + builder.AddCubicBezier(new Vector2(335.791992F, -103.339996F), new Vector2(336.559998F, -103.531998F), new Vector2(337.424011F, -103.531998F)); + builder.AddCubicBezier(new Vector2(338.720001F, -103.531998F), new Vector2(339.769989F, -103.112F), new Vector2(340.574005F, -102.272003F)); + builder.AddCubicBezier(new Vector2(341.377991F, -101.431999F), new Vector2(341.779999F, -100.363998F), new Vector2(341.779999F, -99.0680008F)); + builder.AddLine(new Vector2(341.779999F, -89.0960007F)); + builder.AddLine(new Vector2(345.056F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0915() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(309.488007F, -89.0960007F)); + builder.AddLine(new Vector2(314.455994F, -101.984001F)); + builder.AddLine(new Vector2(313.268005F, -101.984001F)); + builder.AddLine(new Vector2(318.200012F, -89.0960007F)); + builder.AddLine(new Vector2(320.108002F, -89.0960007F)); + builder.AddLine(new Vector2(326.839996F, -106.195999F)); + builder.AddLine(new Vector2(323.455994F, -106.195999F)); + builder.AddLine(new Vector2(318.559998F, -92.8759995F)); + builder.AddLine(new Vector2(319.640015F, -92.8759995F)); + builder.AddLine(new Vector2(314.779999F, -106.195999F)); + builder.AddLine(new Vector2(312.90799F, -106.195999F)); + builder.AddLine(new Vector2(308.048004F, -92.8759995F)); + builder.AddLine(new Vector2(309.127991F, -92.8759995F)); + builder.AddLine(new Vector2(304.231995F, -106.195999F)); + builder.AddLine(new Vector2(300.847992F, -106.195999F)); + builder.AddLine(new Vector2(307.579987F, -89.0960007F)); + builder.AddLine(new Vector2(309.488007F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0916() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(287.81601F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(286.976013F, -93.1279984F), new Vector2(286.31601F, -93.8180008F), new Vector2(285.835999F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(285.355988F, -95.5699997F), new Vector2(285.115997F, -96.5719986F), new Vector2(285.115997F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(285.115997F, -98.8040009F), new Vector2(285.355988F, -99.788002F), new Vector2(285.835999F, -100.652F)); + builder.AddCubicBezier(new Vector2(286.31601F, -101.515999F), new Vector2(286.976013F, -102.194F), new Vector2(287.81601F, -102.685997F)); + builder.AddCubicBezier(new Vector2(288.656006F, -103.178001F), new Vector2(289.604004F, -103.424004F), new Vector2(290.660004F, -103.424004F)); + builder.AddCubicBezier(new Vector2(291.764008F, -103.424004F), new Vector2(292.730011F, -103.178001F), new Vector2(293.558014F, -102.685997F)); + builder.AddCubicBezier(new Vector2(294.385986F, -102.194F), new Vector2(295.04599F, -101.515999F), new Vector2(295.537994F, -100.652F)); + builder.AddCubicBezier(new Vector2(296.029999F, -99.788002F), new Vector2(296.276001F, -98.8040009F), new Vector2(296.276001F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(296.276001F, -96.5719986F), new Vector2(296.036011F, -95.5699997F), new Vector2(295.556F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(295.075989F, -93.8180008F), new Vector2(294.415985F, -93.1279984F), new Vector2(293.575989F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(292.735992F, -92.1200027F), new Vector2(291.764008F, -91.8679962F), new Vector2(290.660004F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(289.604004F, -91.8679962F), new Vector2(288.656006F, -92.1200027F), new Vector2(287.81601F, -92.6240005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(295.213989F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(296.570007F, -90.7160034F), new Vector2(297.644012F, -91.7900009F), new Vector2(298.436005F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(299.227997F, -94.5019989F), new Vector2(299.623993F, -96.0199966F), new Vector2(299.623993F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(299.623993F, -99.3560028F), new Vector2(299.227997F, -100.856003F), new Vector2(298.436005F, -102.199997F)); + builder.AddCubicBezier(new Vector2(297.644012F, -103.543999F), new Vector2(296.570007F, -104.606003F), new Vector2(295.213989F, -105.386002F)); + builder.AddCubicBezier(new Vector2(293.858002F, -106.166F), new Vector2(292.339996F, -106.556F), new Vector2(290.660004F, -106.556F)); + builder.AddCubicBezier(new Vector2(289.003998F, -106.556F), new Vector2(287.503998F, -106.160004F), new Vector2(286.160004F, -105.367996F)); + builder.AddCubicBezier(new Vector2(284.81601F, -104.575996F), new Vector2(283.747986F, -103.514F), new Vector2(282.955994F, -102.181999F)); + builder.AddCubicBezier(new Vector2(282.164001F, -100.849998F), new Vector2(281.768005F, -99.3560028F), new Vector2(281.768005F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(281.768005F, -96.0199966F), new Vector2(282.164001F, -94.5019989F), new Vector2(282.955994F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(283.747986F, -91.7900009F), new Vector2(284.81601F, -90.7160034F), new Vector2(286.160004F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(287.503998F, -89.1320038F), new Vector2(289.003998F, -88.7360001F), new Vector2(290.660004F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(292.339996F, -88.7360001F), new Vector2(293.858002F, -89.1320038F), new Vector2(295.213989F, -89.9240036F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0917() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(264.73999F, -102.344002F)); + builder.AddCubicBezier(new Vector2(265.507996F, -103.112F), new Vector2(266.492004F, -103.496002F), new Vector2(267.691986F, -103.496002F)); + builder.AddCubicBezier(new Vector2(268.268005F, -103.496002F), new Vector2(268.772003F, -103.412003F), new Vector2(269.20401F, -103.244003F)); + builder.AddCubicBezier(new Vector2(269.635986F, -103.075996F), new Vector2(270.032013F, -102.800003F), new Vector2(270.391998F, -102.416F)); + builder.AddLine(new Vector2(272.515991F, -104.612F)); + builder.AddCubicBezier(new Vector2(271.915985F, -105.307999F), new Vector2(271.268005F, -105.806F), new Vector2(270.571991F, -106.106003F)); + builder.AddCubicBezier(new Vector2(269.876007F, -106.405998F), new Vector2(269.096008F, -106.556F), new Vector2(268.231995F, -106.556F)); + builder.AddCubicBezier(new Vector2(266.335999F, -106.556F), new Vector2(264.884003F, -105.907997F), new Vector2(263.876007F, -104.612F)); + builder.AddCubicBezier(new Vector2(262.868011F, -103.316002F), new Vector2(262.364014F, -101.575996F), new Vector2(262.364014F, -99.3919983F)); + builder.AddLine(new Vector2(263.588013F, -98.8160019F)); + builder.AddCubicBezier(new Vector2(263.588013F, -100.400002F), new Vector2(263.971985F, -101.575996F), new Vector2(264.73999F, -102.344002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(263.588013F, -89.0960007F)); + builder.AddLine(new Vector2(263.588013F, -106.195999F)); + builder.AddLine(new Vector2(260.347992F, -106.195999F)); + builder.AddLine(new Vector2(260.347992F, -89.0960007F)); + builder.AddLine(new Vector2(263.588013F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0918() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(255.416F, -110.209999F)); + builder.AddCubicBezier(new Vector2(255.800003F, -110.606003F), new Vector2(255.992004F, -111.103996F), new Vector2(255.992004F, -111.704002F)); + builder.AddCubicBezier(new Vector2(255.992004F, -112.279999F), new Vector2(255.800003F, -112.765999F), new Vector2(255.416F, -113.162003F)); + builder.AddCubicBezier(new Vector2(255.031998F, -113.557999F), new Vector2(254.539993F, -113.755997F), new Vector2(253.940002F, -113.755997F)); + builder.AddCubicBezier(new Vector2(253.339996F, -113.755997F), new Vector2(252.848007F, -113.557999F), new Vector2(252.464005F, -113.162003F)); + builder.AddCubicBezier(new Vector2(252.080002F, -112.765999F), new Vector2(251.888F, -112.279999F), new Vector2(251.888F, -111.704002F)); + builder.AddCubicBezier(new Vector2(251.888F, -111.103996F), new Vector2(252.080002F, -110.606003F), new Vector2(252.464005F, -110.209999F)); + builder.AddCubicBezier(new Vector2(252.848007F, -109.814003F), new Vector2(253.339996F, -109.615997F), new Vector2(253.940002F, -109.615997F)); + builder.AddCubicBezier(new Vector2(254.539993F, -109.615997F), new Vector2(255.031998F, -109.814003F), new Vector2(255.416F, -110.209999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(255.559998F, -89.0960007F)); + builder.AddLine(new Vector2(255.559998F, -106.195999F)); + builder.AddLine(new Vector2(252.283997F, -106.195999F)); + builder.AddLine(new Vector2(252.283997F, -89.0960007F)); + builder.AddLine(new Vector2(255.559998F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0919() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(244.688004F, -89.4919968F)); + builder.AddCubicBezier(new Vector2(245.863998F, -89.9960022F), new Vector2(246.871994F, -90.7279968F), new Vector2(247.712006F, -91.6880035F)); + builder.AddLine(new Vector2(245.623993F, -93.8119965F)); + builder.AddCubicBezier(new Vector2(245.048004F, -93.1399994F), new Vector2(244.358002F, -92.6360016F), new Vector2(243.554001F, -92.3000031F)); + builder.AddCubicBezier(new Vector2(242.75F, -91.9639969F), new Vector2(241.867996F, -91.7959976F), new Vector2(240.908005F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(239.755997F, -91.7959976F), new Vector2(238.735992F, -92.0419998F), new Vector2(237.848007F, -92.5339966F)); + builder.AddCubicBezier(new Vector2(236.960007F, -93.026001F), new Vector2(236.276001F, -93.7220001F), new Vector2(235.796005F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(235.315994F, -95.5220032F), new Vector2(235.076004F, -96.5719986F), new Vector2(235.076004F, -97.7720032F)); + builder.AddCubicBezier(new Vector2(235.076004F, -98.947998F), new Vector2(235.304001F, -99.9680023F), new Vector2(235.759995F, -100.832001F)); + builder.AddCubicBezier(new Vector2(236.216003F, -101.695999F), new Vector2(236.863998F, -102.367996F), new Vector2(237.703995F, -102.848F)); + builder.AddCubicBezier(new Vector2(238.544006F, -103.328003F), new Vector2(239.516006F, -103.568001F), new Vector2(240.619995F, -103.568001F)); + builder.AddCubicBezier(new Vector2(241.675995F, -103.568001F), new Vector2(242.576004F, -103.346001F), new Vector2(243.320007F, -102.902F)); + builder.AddCubicBezier(new Vector2(244.063995F, -102.458F), new Vector2(244.639999F, -101.834F), new Vector2(245.048004F, -101.029999F)); + builder.AddCubicBezier(new Vector2(245.455994F, -100.225998F), new Vector2(245.660004F, -99.2480011F), new Vector2(245.660004F, -98.0960007F)); + builder.AddLine(new Vector2(246.848007F, -99.1399994F)); + builder.AddLine(new Vector2(234.139999F, -99.1399994F)); + builder.AddLine(new Vector2(234.139999F, -96.4400024F)); + builder.AddLine(new Vector2(248.576004F, -96.4400024F)); + builder.AddCubicBezier(new Vector2(248.647995F, -96.776001F), new Vector2(248.695999F, -97.0820007F), new Vector2(248.720001F, -97.3580017F)); + builder.AddCubicBezier(new Vector2(248.744003F, -97.6340027F), new Vector2(248.755997F, -97.8919983F), new Vector2(248.755997F, -98.1320038F)); + builder.AddCubicBezier(new Vector2(248.755997F, -99.7639999F), new Vector2(248.414001F, -101.216003F), new Vector2(247.729996F, -102.487999F)); + builder.AddCubicBezier(new Vector2(247.046005F, -103.760002F), new Vector2(246.091995F, -104.755997F), new Vector2(244.867996F, -105.475998F)); + builder.AddCubicBezier(new Vector2(243.643997F, -106.195999F), new Vector2(242.251999F, -106.556F), new Vector2(240.692001F, -106.556F)); + builder.AddCubicBezier(new Vector2(239.035995F, -106.556F), new Vector2(237.542007F, -106.166F), new Vector2(236.210007F, -105.386002F)); + builder.AddCubicBezier(new Vector2(234.878006F, -104.606003F), new Vector2(233.822006F, -103.543999F), new Vector2(233.042007F, -102.199997F)); + builder.AddCubicBezier(new Vector2(232.261993F, -100.856003F), new Vector2(231.871994F, -99.3440018F), new Vector2(231.871994F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(231.871994F, -95.9599991F), new Vector2(232.268005F, -94.435997F), new Vector2(233.059998F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(233.852005F, -91.7480011F), new Vector2(234.925995F, -90.685997F), new Vector2(236.281998F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(237.638F, -89.1259995F), new Vector2(239.179993F, -88.7360001F), new Vector2(240.908005F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(242.251999F, -88.7360001F), new Vector2(243.511993F, -88.987999F), new Vector2(244.688004F, -89.4919968F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0920() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(216.5F, -89.0960007F)); + builder.AddLine(new Vector2(216.5F, -114.800003F)); + builder.AddLine(new Vector2(213.259995F, -114.800003F)); + builder.AddLine(new Vector2(213.259995F, -89.0960007F)); + builder.AddLine(new Vector2(216.5F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(228.595993F, -89.0960007F)); + builder.AddLine(new Vector2(228.595993F, -99.7160034F)); + builder.AddCubicBezier(new Vector2(228.595993F, -101.059998F), new Vector2(228.307999F, -102.248001F), new Vector2(227.731995F, -103.279999F)); + builder.AddCubicBezier(new Vector2(227.156006F, -104.311996F), new Vector2(226.369995F, -105.115997F), new Vector2(225.373993F, -105.692001F)); + builder.AddCubicBezier(new Vector2(224.378006F, -106.267998F), new Vector2(223.231995F, -106.556F), new Vector2(221.936005F, -106.556F)); + builder.AddCubicBezier(new Vector2(220.639999F, -106.556F), new Vector2(219.475998F, -106.262001F), new Vector2(218.444F, -105.674004F)); + builder.AddCubicBezier(new Vector2(217.412003F, -105.085999F), new Vector2(216.608002F, -104.288002F), new Vector2(216.031998F, -103.279999F)); + builder.AddCubicBezier(new Vector2(215.455994F, -102.272003F), new Vector2(215.167999F, -101.120003F), new Vector2(215.167999F, -99.8239975F)); + builder.AddLine(new Vector2(216.5F, -99.0680008F)); + builder.AddCubicBezier(new Vector2(216.5F, -99.9319992F), new Vector2(216.692001F, -100.699997F), new Vector2(217.076004F, -101.372002F)); + builder.AddCubicBezier(new Vector2(217.460007F, -102.043999F), new Vector2(217.988007F, -102.571999F), new Vector2(218.660004F, -102.956001F)); + builder.AddCubicBezier(new Vector2(219.332001F, -103.339996F), new Vector2(220.100006F, -103.531998F), new Vector2(220.964005F, -103.531998F)); + builder.AddCubicBezier(new Vector2(222.259995F, -103.531998F), new Vector2(223.309998F, -103.112F), new Vector2(224.113998F, -102.272003F)); + builder.AddCubicBezier(new Vector2(224.917999F, -101.431999F), new Vector2(225.320007F, -100.363998F), new Vector2(225.320007F, -99.0680008F)); + builder.AddLine(new Vector2(225.320007F, -89.0960007F)); + builder.AddLine(new Vector2(228.595993F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0921() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(210.091995F, -103.244003F)); + builder.AddLine(new Vector2(210.091995F, -106.195999F)); + builder.AddLine(new Vector2(198.427994F, -106.195999F)); + builder.AddLine(new Vector2(198.427994F, -103.244003F)); + builder.AddLine(new Vector2(210.091995F, -103.244003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(205.880005F, -89.0960007F)); + builder.AddLine(new Vector2(205.880005F, -113.360001F)); + builder.AddLine(new Vector2(202.639999F, -113.360001F)); + builder.AddLine(new Vector2(202.639999F, -89.0960007F)); + builder.AddLine(new Vector2(205.880005F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0922() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(181.867996F, -102.344002F)); + builder.AddCubicBezier(new Vector2(182.636002F, -103.112F), new Vector2(183.619995F, -103.496002F), new Vector2(184.820007F, -103.496002F)); + builder.AddCubicBezier(new Vector2(185.395996F, -103.496002F), new Vector2(185.899994F, -103.412003F), new Vector2(186.332001F, -103.244003F)); + builder.AddCubicBezier(new Vector2(186.764008F, -103.075996F), new Vector2(187.160004F, -102.800003F), new Vector2(187.520004F, -102.416F)); + builder.AddLine(new Vector2(189.643997F, -104.612F)); + builder.AddCubicBezier(new Vector2(189.044006F, -105.307999F), new Vector2(188.395996F, -105.806F), new Vector2(187.699997F, -106.106003F)); + builder.AddCubicBezier(new Vector2(187.003998F, -106.405998F), new Vector2(186.223999F, -106.556F), new Vector2(185.360001F, -106.556F)); + builder.AddCubicBezier(new Vector2(183.464005F, -106.556F), new Vector2(182.011993F, -105.907997F), new Vector2(181.003998F, -104.612F)); + builder.AddCubicBezier(new Vector2(179.996002F, -103.316002F), new Vector2(179.492004F, -101.575996F), new Vector2(179.492004F, -99.3919983F)); + builder.AddLine(new Vector2(180.716003F, -98.8160019F)); + builder.AddCubicBezier(new Vector2(180.716003F, -100.400002F), new Vector2(181.100006F, -101.575996F), new Vector2(181.867996F, -102.344002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(180.716003F, -89.0960007F)); + builder.AddLine(new Vector2(180.716003F, -106.195999F)); + builder.AddLine(new Vector2(177.475998F, -106.195999F)); + builder.AddLine(new Vector2(177.475998F, -89.0960007F)); + builder.AddLine(new Vector2(180.716003F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0923() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(169.880005F, -89.4919968F)); + builder.AddCubicBezier(new Vector2(171.056F, -89.9960022F), new Vector2(172.063995F, -90.7279968F), new Vector2(172.904007F, -91.6880035F)); + builder.AddLine(new Vector2(170.815994F, -93.8119965F)); + builder.AddCubicBezier(new Vector2(170.240005F, -93.1399994F), new Vector2(169.550003F, -92.6360016F), new Vector2(168.746002F, -92.3000031F)); + builder.AddCubicBezier(new Vector2(167.942001F, -91.9639969F), new Vector2(167.059998F, -91.7959976F), new Vector2(166.100006F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(164.947998F, -91.7959976F), new Vector2(163.927994F, -92.0419998F), new Vector2(163.039993F, -92.5339966F)); + builder.AddCubicBezier(new Vector2(162.151993F, -93.026001F), new Vector2(161.468002F, -93.7220001F), new Vector2(160.988007F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(160.507996F, -95.5220032F), new Vector2(160.268005F, -96.5719986F), new Vector2(160.268005F, -97.7720032F)); + builder.AddCubicBezier(new Vector2(160.268005F, -98.947998F), new Vector2(160.496002F, -99.9680023F), new Vector2(160.951996F, -100.832001F)); + builder.AddCubicBezier(new Vector2(161.408005F, -101.695999F), new Vector2(162.056F, -102.367996F), new Vector2(162.895996F, -102.848F)); + builder.AddCubicBezier(new Vector2(163.735992F, -103.328003F), new Vector2(164.707993F, -103.568001F), new Vector2(165.811996F, -103.568001F)); + builder.AddCubicBezier(new Vector2(166.867996F, -103.568001F), new Vector2(167.768005F, -103.346001F), new Vector2(168.511993F, -102.902F)); + builder.AddCubicBezier(new Vector2(169.255997F, -102.458F), new Vector2(169.832001F, -101.834F), new Vector2(170.240005F, -101.029999F)); + builder.AddCubicBezier(new Vector2(170.647995F, -100.225998F), new Vector2(170.852005F, -99.2480011F), new Vector2(170.852005F, -98.0960007F)); + builder.AddLine(new Vector2(172.039993F, -99.1399994F)); + builder.AddLine(new Vector2(159.332001F, -99.1399994F)); + builder.AddLine(new Vector2(159.332001F, -96.4400024F)); + builder.AddLine(new Vector2(173.768005F, -96.4400024F)); + builder.AddCubicBezier(new Vector2(173.839996F, -96.776001F), new Vector2(173.888F, -97.0820007F), new Vector2(173.912003F, -97.3580017F)); + builder.AddCubicBezier(new Vector2(173.936005F, -97.6340027F), new Vector2(173.947998F, -97.8919983F), new Vector2(173.947998F, -98.1320038F)); + builder.AddCubicBezier(new Vector2(173.947998F, -99.7639999F), new Vector2(173.606003F, -101.216003F), new Vector2(172.921997F, -102.487999F)); + builder.AddCubicBezier(new Vector2(172.238007F, -103.760002F), new Vector2(171.283997F, -104.755997F), new Vector2(170.059998F, -105.475998F)); + builder.AddCubicBezier(new Vector2(168.835999F, -106.195999F), new Vector2(167.444F, -106.556F), new Vector2(165.884003F, -106.556F)); + builder.AddCubicBezier(new Vector2(164.227997F, -106.556F), new Vector2(162.733994F, -106.166F), new Vector2(161.401993F, -105.386002F)); + builder.AddCubicBezier(new Vector2(160.070007F, -104.606003F), new Vector2(159.014008F, -103.543999F), new Vector2(158.233994F, -102.199997F)); + builder.AddCubicBezier(new Vector2(157.453995F, -100.856003F), new Vector2(157.063995F, -99.3440018F), new Vector2(157.063995F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(157.063995F, -95.9599991F), new Vector2(157.460007F, -94.435997F), new Vector2(158.251999F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(159.044006F, -91.7480011F), new Vector2(160.117996F, -90.685997F), new Vector2(161.473999F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(162.830002F, -89.1259995F), new Vector2(164.371994F, -88.7360001F), new Vector2(166.100006F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(167.444F, -88.7360001F), new Vector2(168.703995F, -88.987999F), new Vector2(169.880005F, -89.4919968F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0924() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(148.207993F, -89.0960007F)); + builder.AddLine(new Vector2(156.056F, -106.195999F)); + builder.AddLine(new Vector2(152.600006F, -106.195999F)); + builder.AddLine(new Vector2(146.264008F, -91.7600021F)); + builder.AddLine(new Vector2(148.352005F, -91.7600021F)); + builder.AddLine(new Vector2(142.052002F, -106.195999F)); + builder.AddLine(new Vector2(138.451996F, -106.195999F)); + builder.AddLine(new Vector2(146.300003F, -89.0960007F)); + builder.AddLine(new Vector2(148.207993F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0925() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(125.671997F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(124.832001F, -93.1279984F), new Vector2(124.171997F, -93.8180008F), new Vector2(123.692001F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(123.211998F, -95.5699997F), new Vector2(122.972F, -96.5719986F), new Vector2(122.972F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(122.972F, -98.8040009F), new Vector2(123.211998F, -99.788002F), new Vector2(123.692001F, -100.652F)); + builder.AddCubicBezier(new Vector2(124.171997F, -101.515999F), new Vector2(124.832001F, -102.194F), new Vector2(125.671997F, -102.685997F)); + builder.AddCubicBezier(new Vector2(126.512001F, -103.178001F), new Vector2(127.459999F, -103.424004F), new Vector2(128.516006F, -103.424004F)); + builder.AddCubicBezier(new Vector2(129.619995F, -103.424004F), new Vector2(130.585999F, -103.178001F), new Vector2(131.414001F, -102.685997F)); + builder.AddCubicBezier(new Vector2(132.242004F, -102.194F), new Vector2(132.901993F, -101.515999F), new Vector2(133.393997F, -100.652F)); + builder.AddCubicBezier(new Vector2(133.886002F, -99.788002F), new Vector2(134.132004F, -98.8040009F), new Vector2(134.132004F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(134.132004F, -96.5719986F), new Vector2(133.891998F, -95.5699997F), new Vector2(133.412003F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(132.932007F, -93.8180008F), new Vector2(132.272003F, -93.1279984F), new Vector2(131.432007F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(130.591995F, -92.1200027F), new Vector2(129.619995F, -91.8679962F), new Vector2(128.516006F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(127.459999F, -91.8679962F), new Vector2(126.512001F, -92.1200027F), new Vector2(125.671997F, -92.6240005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(133.070007F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(134.425995F, -90.7160034F), new Vector2(135.5F, -91.7900009F), new Vector2(136.292007F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(137.084F, -94.5019989F), new Vector2(137.479996F, -96.0199966F), new Vector2(137.479996F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(137.479996F, -99.3560028F), new Vector2(137.084F, -100.856003F), new Vector2(136.292007F, -102.199997F)); + builder.AddCubicBezier(new Vector2(135.5F, -103.543999F), new Vector2(134.425995F, -104.606003F), new Vector2(133.070007F, -105.386002F)); + builder.AddCubicBezier(new Vector2(131.714005F, -106.166F), new Vector2(130.195999F, -106.556F), new Vector2(128.516006F, -106.556F)); + builder.AddCubicBezier(new Vector2(126.860001F, -106.556F), new Vector2(125.360001F, -106.160004F), new Vector2(124.015999F, -105.367996F)); + builder.AddCubicBezier(new Vector2(122.671997F, -104.575996F), new Vector2(121.603996F, -103.514F), new Vector2(120.811996F, -102.181999F)); + builder.AddCubicBezier(new Vector2(120.019997F, -100.849998F), new Vector2(119.624001F, -99.3560028F), new Vector2(119.624001F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(119.624001F, -96.0199966F), new Vector2(120.019997F, -94.5019989F), new Vector2(120.811996F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(121.603996F, -91.7900009F), new Vector2(122.671997F, -90.7160034F), new Vector2(124.015999F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(125.360001F, -89.1320038F), new Vector2(126.860001F, -88.7360001F), new Vector2(128.516006F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(130.195999F, -88.7360001F), new Vector2(131.714005F, -89.1320038F), new Vector2(133.070007F, -89.9240036F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0926() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(108.536003F, -89.0960007F)); + builder.AddLine(new Vector2(108.536003F, -114.800003F)); + builder.AddLine(new Vector2(105.295998F, -114.800003F)); + builder.AddLine(new Vector2(105.295998F, -89.0960007F)); + builder.AddLine(new Vector2(108.536003F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0927() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(89.8880005F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(89.0479965F, -93.1279984F), new Vector2(88.3880005F, -93.8180008F), new Vector2(87.9079971F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(87.4280014F, -95.5699997F), new Vector2(87.1880035F, -96.5719986F), new Vector2(87.1880035F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(87.1880035F, -98.8040009F), new Vector2(87.4280014F, -99.788002F), new Vector2(87.9079971F, -100.652F)); + builder.AddCubicBezier(new Vector2(88.3880005F, -101.515999F), new Vector2(89.0479965F, -102.194F), new Vector2(89.8880005F, -102.685997F)); + builder.AddCubicBezier(new Vector2(90.7279968F, -103.178001F), new Vector2(91.6760025F, -103.424004F), new Vector2(92.7320023F, -103.424004F)); + builder.AddCubicBezier(new Vector2(93.8359985F, -103.424004F), new Vector2(94.802002F, -103.178001F), new Vector2(95.6299973F, -102.685997F)); + builder.AddCubicBezier(new Vector2(96.4580002F, -102.194F), new Vector2(97.1179962F, -101.515999F), new Vector2(97.6100006F, -100.652F)); + builder.AddCubicBezier(new Vector2(98.1019974F, -99.788002F), new Vector2(98.3479996F, -98.8040009F), new Vector2(98.3479996F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(98.3479996F, -96.5719986F), new Vector2(98.1080017F, -95.5699997F), new Vector2(97.6279984F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(97.1480026F, -93.8180008F), new Vector2(96.487999F, -93.1279984F), new Vector2(95.6480026F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(94.8079987F, -92.1200027F), new Vector2(93.8359985F, -91.8679962F), new Vector2(92.7320023F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(91.6760025F, -91.8679962F), new Vector2(90.7279968F, -92.1200027F), new Vector2(89.8880005F, -92.6240005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(97.2860031F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(98.6419983F, -90.7160034F), new Vector2(99.7160034F, -91.7900009F), new Vector2(100.508003F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(101.300003F, -94.5019989F), new Vector2(101.695999F, -96.0199966F), new Vector2(101.695999F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(101.695999F, -99.3560028F), new Vector2(101.300003F, -100.856003F), new Vector2(100.508003F, -102.199997F)); + builder.AddCubicBezier(new Vector2(99.7160034F, -103.543999F), new Vector2(98.6419983F, -104.606003F), new Vector2(97.2860031F, -105.386002F)); + builder.AddCubicBezier(new Vector2(95.9300003F, -106.166F), new Vector2(94.4120026F, -106.556F), new Vector2(92.7320023F, -106.556F)); + builder.AddCubicBezier(new Vector2(91.0759964F, -106.556F), new Vector2(89.5759964F, -106.160004F), new Vector2(88.2320023F, -105.367996F)); + builder.AddCubicBezier(new Vector2(86.8880005F, -104.575996F), new Vector2(85.8199997F, -103.514F), new Vector2(85.0279999F, -102.181999F)); + builder.AddCubicBezier(new Vector2(84.2360001F, -100.849998F), new Vector2(83.8399963F, -99.3560028F), new Vector2(83.8399963F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(83.8399963F, -96.0199966F), new Vector2(84.2360001F, -94.5019989F), new Vector2(85.0279999F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(85.8199997F, -91.7900009F), new Vector2(86.8880005F, -90.7160034F), new Vector2(88.2320023F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(89.5759964F, -89.1320038F), new Vector2(91.0759964F, -88.7360001F), new Vector2(92.7320023F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(94.4120026F, -88.7360001F), new Vector2(95.9300003F, -89.1320038F), new Vector2(97.2860031F, -89.9240036F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0928() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(75.4520035F, -102.344002F)); + builder.AddCubicBezier(new Vector2(76.2200012F, -103.112F), new Vector2(77.2040024F, -103.496002F), new Vector2(78.4039993F, -103.496002F)); + builder.AddCubicBezier(new Vector2(78.9800034F, -103.496002F), new Vector2(79.4840012F, -103.412003F), new Vector2(79.9160004F, -103.244003F)); + builder.AddCubicBezier(new Vector2(80.3479996F, -103.075996F), new Vector2(80.7440033F, -102.800003F), new Vector2(81.1039963F, -102.416F)); + builder.AddLine(new Vector2(83.2279968F, -104.612F)); + builder.AddCubicBezier(new Vector2(82.6279984F, -105.307999F), new Vector2(81.9800034F, -105.806F), new Vector2(81.2839966F, -106.106003F)); + builder.AddCubicBezier(new Vector2(80.5879974F, -106.405998F), new Vector2(79.8079987F, -106.556F), new Vector2(78.9440002F, -106.556F)); + builder.AddCubicBezier(new Vector2(77.0479965F, -106.556F), new Vector2(75.5960007F, -105.907997F), new Vector2(74.5879974F, -104.612F)); + builder.AddCubicBezier(new Vector2(73.5800018F, -103.316002F), new Vector2(73.0759964F, -101.575996F), new Vector2(73.0759964F, -99.3919983F)); + builder.AddLine(new Vector2(74.3000031F, -98.8160019F)); + builder.AddCubicBezier(new Vector2(74.3000031F, -100.400002F), new Vector2(74.6839981F, -101.575996F), new Vector2(75.4520035F, -102.344002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(74.3000031F, -89.0960007F)); + builder.AddLine(new Vector2(74.3000031F, -106.195999F)); + builder.AddLine(new Vector2(71.0599976F, -106.195999F)); + builder.AddLine(new Vector2(71.0599976F, -89.0960007F)); + builder.AddLine(new Vector2(74.3000031F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0929() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(67.8919983F, -103.244003F)); + builder.AddLine(new Vector2(67.8919983F, -106.195999F)); + builder.AddLine(new Vector2(56.2280006F, -106.195999F)); + builder.AddLine(new Vector2(56.2280006F, -103.244003F)); + builder.AddLine(new Vector2(67.8919983F, -103.244003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(63.6800003F, -89.0960007F)); + builder.AddLine(new Vector2(63.6800003F, -113.360001F)); + builder.AddLine(new Vector2(60.4399986F, -113.360001F)); + builder.AddLine(new Vector2(60.4399986F, -89.0960007F)); + builder.AddLine(new Vector2(63.6800003F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0930() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(41.5400009F, -89.0960007F)); + builder.AddLine(new Vector2(41.5400009F, -106.195999F)); + builder.AddLine(new Vector2(38.2999992F, -106.195999F)); + builder.AddLine(new Vector2(38.2999992F, -89.0960007F)); + builder.AddLine(new Vector2(41.5400009F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(53.6360016F, -89.0960007F)); + builder.AddLine(new Vector2(53.6360016F, -99.7160034F)); + builder.AddCubicBezier(new Vector2(53.6360016F, -100.891998F), new Vector2(53.3479996F, -102.001999F), new Vector2(52.7719994F, -103.045998F)); + builder.AddCubicBezier(new Vector2(52.1959991F, -104.089996F), new Vector2(51.4099998F, -104.935997F), new Vector2(50.4140015F, -105.584F)); + builder.AddCubicBezier(new Vector2(49.4179993F, -106.232002F), new Vector2(48.2719994F, -106.556F), new Vector2(46.9760017F, -106.556F)); + builder.AddCubicBezier(new Vector2(45.6800003F, -106.556F), new Vector2(44.5159988F, -106.262001F), new Vector2(43.4840012F, -105.674004F)); + builder.AddCubicBezier(new Vector2(42.4519997F, -105.085999F), new Vector2(41.6479988F, -104.288002F), new Vector2(41.0719986F, -103.279999F)); + builder.AddCubicBezier(new Vector2(40.4959984F, -102.272003F), new Vector2(40.2080002F, -101.120003F), new Vector2(40.2080002F, -99.8239975F)); + builder.AddLine(new Vector2(41.5400009F, -99.0680008F)); + builder.AddCubicBezier(new Vector2(41.5400009F, -99.9319992F), new Vector2(41.7319984F, -100.699997F), new Vector2(42.1160011F, -101.372002F)); + builder.AddCubicBezier(new Vector2(42.5F, -102.043999F), new Vector2(43.0279999F, -102.571999F), new Vector2(43.7000008F, -102.956001F)); + builder.AddCubicBezier(new Vector2(44.3720016F, -103.339996F), new Vector2(45.1399994F, -103.531998F), new Vector2(46.0040016F, -103.531998F)); + builder.AddCubicBezier(new Vector2(47.2999992F, -103.531998F), new Vector2(48.3499985F, -103.112F), new Vector2(49.1539993F, -102.272003F)); + builder.AddCubicBezier(new Vector2(49.9580002F, -101.431999F), new Vector2(50.3600006F, -100.363998F), new Vector2(50.3600006F, -99.0680008F)); + builder.AddLine(new Vector2(50.3600006F, -89.0960007F)); + builder.AddLine(new Vector2(53.6360016F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0931() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(22.8920002F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(22.052F, -93.1279984F), new Vector2(21.3920002F, -93.8180008F), new Vector2(20.9120007F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(20.4319992F, -95.5699997F), new Vector2(20.1919994F, -96.5719986F), new Vector2(20.1919994F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(20.1919994F, -98.8040009F), new Vector2(20.4319992F, -99.788002F), new Vector2(20.9120007F, -100.652F)); + builder.AddCubicBezier(new Vector2(21.3920002F, -101.515999F), new Vector2(22.052F, -102.194F), new Vector2(22.8920002F, -102.685997F)); + builder.AddCubicBezier(new Vector2(23.7320004F, -103.178001F), new Vector2(24.6800003F, -103.424004F), new Vector2(25.7360001F, -103.424004F)); + builder.AddCubicBezier(new Vector2(26.8400002F, -103.424004F), new Vector2(27.8059998F, -103.178001F), new Vector2(28.6340008F, -102.685997F)); + builder.AddCubicBezier(new Vector2(29.4619999F, -102.194F), new Vector2(30.1219997F, -101.515999F), new Vector2(30.6140003F, -100.652F)); + builder.AddCubicBezier(new Vector2(31.1060009F, -99.788002F), new Vector2(31.3519993F, -98.8040009F), new Vector2(31.3519993F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(31.3519993F, -96.5719986F), new Vector2(31.1119995F, -95.5699997F), new Vector2(30.632F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(30.1520004F, -93.8180008F), new Vector2(29.4920006F, -93.1279984F), new Vector2(28.6520004F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(27.8120003F, -92.1200027F), new Vector2(26.8400002F, -91.8679962F), new Vector2(25.7360001F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(24.6800003F, -91.8679962F), new Vector2(23.7320004F, -92.1200027F), new Vector2(22.8920002F, -92.6240005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(30.2900009F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(31.6459999F, -90.7160034F), new Vector2(32.7200012F, -91.7900009F), new Vector2(33.512001F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(34.3040009F, -94.5019989F), new Vector2(34.7000008F, -96.0199966F), new Vector2(34.7000008F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(34.7000008F, -99.3560028F), new Vector2(34.3040009F, -100.856003F), new Vector2(33.512001F, -102.199997F)); + builder.AddCubicBezier(new Vector2(32.7200012F, -103.543999F), new Vector2(31.6459999F, -104.606003F), new Vector2(30.2900009F, -105.386002F)); + builder.AddCubicBezier(new Vector2(28.934F, -106.166F), new Vector2(27.4160004F, -106.556F), new Vector2(25.7360001F, -106.556F)); + builder.AddCubicBezier(new Vector2(24.0799999F, -106.556F), new Vector2(22.5799999F, -106.160004F), new Vector2(21.2360001F, -105.367996F)); + builder.AddCubicBezier(new Vector2(19.8920002F, -104.575996F), new Vector2(18.8239994F, -103.514F), new Vector2(18.0319996F, -102.181999F)); + builder.AddCubicBezier(new Vector2(17.2399998F, -100.849998F), new Vector2(16.8439999F, -99.3560028F), new Vector2(16.8439999F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(16.8439999F, -96.0199966F), new Vector2(17.2399998F, -94.5019989F), new Vector2(18.0319996F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(18.8239994F, -91.7900009F), new Vector2(19.8920002F, -90.7160034F), new Vector2(21.2360001F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(22.5799999F, -89.1320038F), new Vector2(24.0799999F, -88.7360001F), new Vector2(25.7360001F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(27.4160004F, -88.7360001F), new Vector2(28.934F, -89.1320038F), new Vector2(30.2900009F, -89.9240036F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0932() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(12.1820002F, -89.4919968F)); + builder.AddCubicBezier(new Vector2(13.3219995F, -89.9960022F), new Vector2(14.2880001F, -90.7040024F), new Vector2(15.0799999F, -91.6159973F)); + builder.AddLine(new Vector2(12.9560003F, -93.776001F)); + builder.AddCubicBezier(new Vector2(12.4040003F, -93.1520004F), new Vector2(11.75F, -92.6780014F), new Vector2(10.9940004F, -92.3539963F)); + builder.AddCubicBezier(new Vector2(10.2379999F, -92.0299988F), new Vector2(9.40400028F, -91.8679962F), new Vector2(8.49199963F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(7.41200018F, -91.8679962F), new Vector2(6.45200014F, -92.1200027F), new Vector2(5.61199999F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(4.77199984F, -93.1279984F), new Vector2(4.11199999F, -93.8119965F), new Vector2(3.63199997F, -94.6760025F)); + builder.AddCubicBezier(new Vector2(3.15199995F, -95.5400009F), new Vector2(2.91199994F, -96.5360031F), new Vector2(2.91199994F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(2.91199994F, -98.7919998F), new Vector2(3.15199995F, -99.788002F), new Vector2(3.63199997F, -100.652F)); + builder.AddCubicBezier(new Vector2(4.11199999F, -101.515999F), new Vector2(4.77199984F, -102.194F), new Vector2(5.61199999F, -102.685997F)); + builder.AddCubicBezier(new Vector2(6.45200014F, -103.178001F), new Vector2(7.41200018F, -103.424004F), new Vector2(8.49199963F, -103.424004F)); + builder.AddCubicBezier(new Vector2(9.38000011F, -103.424004F), new Vector2(10.2080002F, -103.262001F), new Vector2(10.9759998F, -102.938004F)); + builder.AddCubicBezier(new Vector2(11.7440004F, -102.613998F), new Vector2(12.3920002F, -102.139999F), new Vector2(12.9200001F, -101.515999F)); + builder.AddLine(new Vector2(15.0799999F, -103.676003F)); + builder.AddCubicBezier(new Vector2(14.2639999F, -104.612F), new Vector2(13.2919998F, -105.325996F), new Vector2(12.1639996F, -105.818001F)); + builder.AddCubicBezier(new Vector2(11.0360003F, -106.309998F), new Vector2(9.81200027F, -106.556F), new Vector2(8.49199963F, -106.556F)); + builder.AddCubicBezier(new Vector2(6.8119998F, -106.556F), new Vector2(5.29400015F, -106.166F), new Vector2(3.93799996F, -105.386002F)); + builder.AddCubicBezier(new Vector2(2.58200002F, -104.606003F), new Vector2(1.51400006F, -103.543999F), new Vector2(0.734000027F, -102.199997F)); + builder.AddCubicBezier(new Vector2(-0.0460000001F, -100.856003F), new Vector2(-0.43599999F, -99.3440018F), new Vector2(-0.43599999F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(-0.43599999F, -96.0080032F), new Vector2(-0.0460000001F, -94.5019989F), new Vector2(0.734000027F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(1.51400006F, -91.7900009F), new Vector2(2.58200002F, -90.7160034F), new Vector2(3.93799996F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(5.29400015F, -89.1320038F), new Vector2(6.8119998F, -88.7360001F), new Vector2(8.49199963F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(9.81200027F, -88.7360001F), new Vector2(11.0419998F, -88.987999F), new Vector2(12.1820002F, -89.4919968F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0933() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-23.2600002F, -89.0960007F)); + builder.AddLine(new Vector2(-23.2600002F, -106.195999F)); + builder.AddLine(new Vector2(-26.5F, -106.195999F)); + builder.AddLine(new Vector2(-26.5F, -89.0960007F)); + builder.AddLine(new Vector2(-23.2600002F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-11.1639996F, -89.0960007F)); + builder.AddLine(new Vector2(-11.1639996F, -99.7160034F)); + builder.AddCubicBezier(new Vector2(-11.1639996F, -100.891998F), new Vector2(-11.4519997F, -102.001999F), new Vector2(-12.0279999F, -103.045998F)); + builder.AddCubicBezier(new Vector2(-12.6040001F, -104.089996F), new Vector2(-13.3900003F, -104.935997F), new Vector2(-14.3859997F, -105.584F)); + builder.AddCubicBezier(new Vector2(-15.382F, -106.232002F), new Vector2(-16.5279999F, -106.556F), new Vector2(-17.8239994F, -106.556F)); + builder.AddCubicBezier(new Vector2(-19.1200008F, -106.556F), new Vector2(-20.2840004F, -106.262001F), new Vector2(-21.316F, -105.674004F)); + builder.AddCubicBezier(new Vector2(-22.3479996F, -105.085999F), new Vector2(-23.1520004F, -104.288002F), new Vector2(-23.7280006F, -103.279999F)); + builder.AddCubicBezier(new Vector2(-24.3040009F, -102.272003F), new Vector2(-24.5919991F, -101.120003F), new Vector2(-24.5919991F, -99.8239975F)); + builder.AddLine(new Vector2(-23.2600002F, -99.0680008F)); + builder.AddCubicBezier(new Vector2(-23.2600002F, -99.9319992F), new Vector2(-23.0680008F, -100.699997F), new Vector2(-22.684F, -101.372002F)); + builder.AddCubicBezier(new Vector2(-22.2999992F, -102.043999F), new Vector2(-21.7719994F, -102.571999F), new Vector2(-21.1000004F, -102.956001F)); + builder.AddCubicBezier(new Vector2(-20.4279995F, -103.339996F), new Vector2(-19.6599998F, -103.531998F), new Vector2(-18.7959995F, -103.531998F)); + builder.AddCubicBezier(new Vector2(-17.5F, -103.531998F), new Vector2(-16.4500008F, -103.112F), new Vector2(-15.6459999F, -102.272003F)); + builder.AddCubicBezier(new Vector2(-14.842F, -101.431999F), new Vector2(-14.4399996F, -100.363998F), new Vector2(-14.4399996F, -99.0680008F)); + builder.AddLine(new Vector2(-14.4399996F, -89.0960007F)); + builder.AddLine(new Vector2(-11.1639996F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0934() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-31.4319992F, -110.209999F)); + builder.AddCubicBezier(new Vector2(-31.0480003F, -110.606003F), new Vector2(-30.8560009F, -111.103996F), new Vector2(-30.8560009F, -111.704002F)); + builder.AddCubicBezier(new Vector2(-30.8560009F, -112.279999F), new Vector2(-31.0480003F, -112.765999F), new Vector2(-31.4319992F, -113.162003F)); + builder.AddCubicBezier(new Vector2(-31.816F, -113.557999F), new Vector2(-32.3079987F, -113.755997F), new Vector2(-32.9080009F, -113.755997F)); + builder.AddCubicBezier(new Vector2(-33.5079994F, -113.755997F), new Vector2(-34F, -113.557999F), new Vector2(-34.3839989F, -113.162003F)); + builder.AddCubicBezier(new Vector2(-34.7680016F, -112.765999F), new Vector2(-34.9599991F, -112.279999F), new Vector2(-34.9599991F, -111.704002F)); + builder.AddCubicBezier(new Vector2(-34.9599991F, -111.103996F), new Vector2(-34.7680016F, -110.606003F), new Vector2(-34.3839989F, -110.209999F)); + builder.AddCubicBezier(new Vector2(-34F, -109.814003F), new Vector2(-33.5079994F, -109.615997F), new Vector2(-32.9080009F, -109.615997F)); + builder.AddCubicBezier(new Vector2(-32.3079987F, -109.615997F), new Vector2(-31.816F, -109.814003F), new Vector2(-31.4319992F, -110.209999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-31.2880001F, -89.0960007F)); + builder.AddLine(new Vector2(-31.2880001F, -106.195999F)); + builder.AddLine(new Vector2(-34.5639992F, -106.195999F)); + builder.AddLine(new Vector2(-34.5639992F, -89.0960007F)); + builder.AddLine(new Vector2(-31.2880001F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0935() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-39.2799988F, -89.0960007F)); + builder.AddLine(new Vector2(-39.2799988F, -106.195999F)); + builder.AddLine(new Vector2(-42.5559998F, -106.195999F)); + builder.AddLine(new Vector2(-42.5559998F, -102.019997F)); + builder.AddLine(new Vector2(-41.9440002F, -97.8799973F)); + builder.AddLine(new Vector2(-42.5559998F, -93.7040024F)); + builder.AddLine(new Vector2(-42.5559998F, -89.0960007F)); + builder.AddLine(new Vector2(-39.2799988F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-50.5839996F, -92.552002F)); + builder.AddCubicBezier(new Vector2(-51.4239998F, -93.0559998F), new Vector2(-52.0779991F, -93.7460022F), new Vector2(-52.5460014F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(-53.0139999F, -95.4980011F), new Vector2(-53.2480011F, -96.512001F), new Vector2(-53.2480011F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(-53.2480011F, -98.7919998F), new Vector2(-53.0139999F, -99.7939987F), new Vector2(-52.5460014F, -100.669998F)); + builder.AddCubicBezier(new Vector2(-52.0779991F, -101.545998F), new Vector2(-51.4300003F, -102.236F), new Vector2(-50.6020012F, -102.739998F)); + builder.AddCubicBezier(new Vector2(-49.7739983F, -103.244003F), new Vector2(-48.8199997F, -103.496002F), new Vector2(-47.7400017F, -103.496002F)); + builder.AddCubicBezier(new Vector2(-46.6599998F, -103.496002F), new Vector2(-45.7179985F, -103.25F), new Vector2(-44.9140015F, -102.758003F)); + builder.AddCubicBezier(new Vector2(-44.1100006F, -102.265999F), new Vector2(-43.4799995F, -101.575996F), new Vector2(-43.0239983F, -100.688004F)); + builder.AddCubicBezier(new Vector2(-42.5680008F, -99.8000031F), new Vector2(-42.3400002F, -98.7799988F), new Vector2(-42.3400002F, -97.6279984F)); + builder.AddCubicBezier(new Vector2(-42.3400002F, -95.9240036F), new Vector2(-42.8320007F, -94.526001F), new Vector2(-43.8160019F, -93.4339981F)); + builder.AddCubicBezier(new Vector2(-44.7999992F, -92.3420029F), new Vector2(-46.0960007F, -91.7959976F), new Vector2(-47.7039986F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(-48.7840004F, -91.7959976F), new Vector2(-49.7439995F, -92.0479965F), new Vector2(-50.5839996F, -92.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-44.7519989F, -89.5459976F)); + builder.AddCubicBezier(new Vector2(-43.7200012F, -90.0859985F), new Vector2(-42.8979988F, -90.8359985F), new Vector2(-42.2859993F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(-41.6739998F, -92.7559967F), new Vector2(-41.3320007F, -93.8479996F), new Vector2(-41.2599983F, -95.0719986F)); + builder.AddLine(new Vector2(-41.2599983F, -100.220001F)); + builder.AddCubicBezier(new Vector2(-41.3320007F, -101.468002F), new Vector2(-41.6800003F, -102.566002F), new Vector2(-42.3040009F, -103.514F)); + builder.AddCubicBezier(new Vector2(-42.9280014F, -104.461998F), new Vector2(-43.75F, -105.206001F), new Vector2(-44.7700005F, -105.746002F)); + builder.AddCubicBezier(new Vector2(-45.7900009F, -106.286003F), new Vector2(-46.9480019F, -106.556F), new Vector2(-48.2439995F, -106.556F)); + builder.AddCubicBezier(new Vector2(-49.8279991F, -106.556F), new Vector2(-51.25F, -106.160004F), new Vector2(-52.5099983F, -105.367996F)); + builder.AddCubicBezier(new Vector2(-53.7700005F, -104.575996F), new Vector2(-54.7659988F, -103.508003F), new Vector2(-55.4980011F, -102.164001F)); + builder.AddCubicBezier(new Vector2(-56.2299995F, -100.82F), new Vector2(-56.5960007F, -99.3079987F), new Vector2(-56.5960007F, -97.6279984F)); + builder.AddCubicBezier(new Vector2(-56.5960007F, -95.947998F), new Vector2(-56.2299995F, -94.435997F), new Vector2(-55.4980011F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(-54.7659988F, -91.7480011F), new Vector2(-53.7700005F, -90.685997F), new Vector2(-52.5099983F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(-51.25F, -89.1259995F), new Vector2(-49.8279991F, -88.7360001F), new Vector2(-48.2439995F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-46.9480019F, -88.7360001F), new Vector2(-45.7840004F, -89.0059967F), new Vector2(-44.7519989F, -89.5459976F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0936() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-71.4459991F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(-72.2740021F, -93.6139984F), new Vector2(-72.9219971F, -94.2679977F), new Vector2(-73.3899994F, -95.1080017F)); + builder.AddCubicBezier(new Vector2(-73.8580017F, -95.947998F), new Vector2(-74.0920029F, -96.9079971F), new Vector2(-74.0920029F, -97.987999F)); + builder.AddCubicBezier(new Vector2(-74.0920029F, -99.0680008F), new Vector2(-73.8580017F, -100.022003F), new Vector2(-73.3899994F, -100.849998F)); + builder.AddCubicBezier(new Vector2(-72.9219971F, -101.678001F), new Vector2(-72.2799988F, -102.325996F), new Vector2(-71.4639969F, -102.793999F)); + builder.AddCubicBezier(new Vector2(-70.6480026F, -103.262001F), new Vector2(-69.6999969F, -103.496002F), new Vector2(-68.6200027F, -103.496002F)); + builder.AddCubicBezier(new Vector2(-67.564003F, -103.496002F), new Vector2(-66.6340027F, -103.262001F), new Vector2(-65.8300018F, -102.793999F)); + builder.AddCubicBezier(new Vector2(-65.026001F, -102.325996F), new Vector2(-64.4020004F, -101.678001F), new Vector2(-63.9580002F, -100.849998F)); + builder.AddCubicBezier(new Vector2(-63.5139999F, -100.022003F), new Vector2(-63.2919998F, -99.0559998F), new Vector2(-63.2919998F, -97.9520035F)); + builder.AddCubicBezier(new Vector2(-63.2919998F, -96.8479996F), new Vector2(-63.5139999F, -95.8820038F), new Vector2(-63.9580002F, -95.0540009F)); + builder.AddCubicBezier(new Vector2(-64.4020004F, -94.2259979F), new Vector2(-65.0199966F, -93.5839996F), new Vector2(-65.8119965F, -93.1279984F)); + builder.AddCubicBezier(new Vector2(-66.6039963F, -92.6719971F), new Vector2(-67.5400009F, -92.4440002F), new Vector2(-68.6200027F, -92.4440002F)); + builder.AddCubicBezier(new Vector2(-69.6760025F, -92.4440002F), new Vector2(-70.6179962F, -92.6780014F), new Vector2(-71.4459991F, -93.1460037F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-65.7040024F, -90.1760025F)); + builder.AddCubicBezier(new Vector2(-64.6719971F, -90.7040024F), new Vector2(-63.8499985F, -91.4420013F), new Vector2(-63.237999F, -92.3899994F)); + builder.AddCubicBezier(new Vector2(-62.6259995F, -93.3379974F), new Vector2(-62.2840004F, -94.435997F), new Vector2(-62.2120018F, -95.6839981F)); + builder.AddLine(new Vector2(-62.2120018F, -100.220001F)); + builder.AddCubicBezier(new Vector2(-62.2840004F, -101.491997F), new Vector2(-62.6199989F, -102.601997F), new Vector2(-63.2200012F, -103.550003F)); + builder.AddCubicBezier(new Vector2(-63.8199997F, -104.498001F), new Vector2(-64.6419983F, -105.236F), new Vector2(-65.685997F, -105.764F)); + builder.AddCubicBezier(new Vector2(-66.7300034F, -106.292F), new Vector2(-67.9240036F, -106.556F), new Vector2(-69.2679977F, -106.556F)); + builder.AddCubicBezier(new Vector2(-70.8040009F, -106.556F), new Vector2(-72.1959991F, -106.178001F), new Vector2(-73.4440002F, -105.421997F)); + builder.AddCubicBezier(new Vector2(-74.6920013F, -104.666F), new Vector2(-75.6699982F, -103.646004F), new Vector2(-76.3779984F, -102.362F)); + builder.AddCubicBezier(new Vector2(-77.0859985F, -101.078003F), new Vector2(-77.4400024F, -99.6200027F), new Vector2(-77.4400024F, -97.987999F)); + builder.AddCubicBezier(new Vector2(-77.4400024F, -96.3560028F), new Vector2(-77.0800018F, -94.8860016F), new Vector2(-76.3600006F, -93.5780029F)); + builder.AddCubicBezier(new Vector2(-75.6399994F, -92.2699966F), new Vector2(-74.6620026F, -91.2440033F), new Vector2(-73.4260025F, -90.5F)); + builder.AddCubicBezier(new Vector2(-72.1900024F, -89.7559967F), new Vector2(-70.7919998F, -89.3840027F), new Vector2(-69.2320023F, -89.3840027F)); + builder.AddCubicBezier(new Vector2(-67.9120026F, -89.3840027F), new Vector2(-66.7360001F, -89.6480026F), new Vector2(-65.7040024F, -90.1760025F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-64.5339966F, -82.5979996F)); + builder.AddCubicBezier(new Vector2(-63.1780014F, -83.2819977F), new Vector2(-62.1220016F, -84.2419968F), new Vector2(-61.3660011F, -85.4779968F)); + builder.AddCubicBezier(new Vector2(-60.6100006F, -86.7139969F), new Vector2(-60.2319984F, -88.1480026F), new Vector2(-60.2319984F, -89.7799988F)); + builder.AddLine(new Vector2(-60.2319984F, -106.195999F)); + builder.AddLine(new Vector2(-63.4720001F, -106.195999F)); + builder.AddLine(new Vector2(-63.4720001F, -101.695999F)); + builder.AddLine(new Vector2(-62.8959999F, -97.8799973F)); + builder.AddLine(new Vector2(-63.4720001F, -94.0279999F)); + builder.AddLine(new Vector2(-63.4720001F, -89.7799988F)); + builder.AddCubicBezier(new Vector2(-63.4720001F, -88.2200012F), new Vector2(-63.987999F, -86.9779968F), new Vector2(-65.0199966F, -86.0540009F)); + builder.AddCubicBezier(new Vector2(-66.052002F, -85.1299973F), new Vector2(-67.4319992F, -84.6679993F), new Vector2(-69.1600037F, -84.6679993F)); + builder.AddCubicBezier(new Vector2(-70.4800034F, -84.6679993F), new Vector2(-71.6200027F, -84.9020004F), new Vector2(-72.5800018F, -85.3700027F)); + builder.AddCubicBezier(new Vector2(-73.5400009F, -85.8379974F), new Vector2(-74.3679962F, -86.5159988F), new Vector2(-75.064003F, -87.4039993F)); + builder.AddLine(new Vector2(-77.1880035F, -85.2799988F)); + builder.AddCubicBezier(new Vector2(-76.3479996F, -84.1039963F), new Vector2(-75.2559967F, -83.1920013F), new Vector2(-73.9120026F, -82.5439987F)); + builder.AddCubicBezier(new Vector2(-72.5680008F, -81.8960037F), new Vector2(-71.0080032F, -81.5719986F), new Vector2(-69.2320023F, -81.5719986F)); + builder.AddCubicBezier(new Vector2(-67.4560013F, -81.5719986F), new Vector2(-65.8899994F, -81.9140015F), new Vector2(-64.5339966F, -82.5979996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0937() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-99.1839981F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(-100.024002F, -93.1279984F), new Vector2(-100.683998F, -93.8180008F), new Vector2(-101.164001F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(-101.643997F, -95.5699997F), new Vector2(-101.884003F, -96.5719986F), new Vector2(-101.884003F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-101.884003F, -98.8040009F), new Vector2(-101.643997F, -99.788002F), new Vector2(-101.164001F, -100.652F)); + builder.AddCubicBezier(new Vector2(-100.683998F, -101.515999F), new Vector2(-100.024002F, -102.194F), new Vector2(-99.1839981F, -102.685997F)); + builder.AddCubicBezier(new Vector2(-98.3440018F, -103.178001F), new Vector2(-97.3960037F, -103.424004F), new Vector2(-96.3399963F, -103.424004F)); + builder.AddCubicBezier(new Vector2(-95.2360001F, -103.424004F), new Vector2(-94.2699966F, -103.178001F), new Vector2(-93.4420013F, -102.685997F)); + builder.AddCubicBezier(new Vector2(-92.6139984F, -102.194F), new Vector2(-91.9540024F, -101.515999F), new Vector2(-91.461998F, -100.652F)); + builder.AddCubicBezier(new Vector2(-90.9700012F, -99.788002F), new Vector2(-90.723999F, -98.8040009F), new Vector2(-90.723999F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-90.723999F, -96.5719986F), new Vector2(-90.9639969F, -95.5699997F), new Vector2(-91.4440002F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(-91.9240036F, -93.8180008F), new Vector2(-92.5839996F, -93.1279984F), new Vector2(-93.4240036F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(-94.2639999F, -92.1200027F), new Vector2(-95.2360001F, -91.8679962F), new Vector2(-96.3399963F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(-97.3960037F, -91.8679962F), new Vector2(-98.3440018F, -92.1200027F), new Vector2(-99.1839981F, -92.6240005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-91.7860031F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(-90.4300003F, -90.7160034F), new Vector2(-89.3560028F, -91.7900009F), new Vector2(-88.564003F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(-87.7720032F, -94.5019989F), new Vector2(-87.3759995F, -96.0199966F), new Vector2(-87.3759995F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-87.3759995F, -99.3560028F), new Vector2(-87.7720032F, -100.856003F), new Vector2(-88.564003F, -102.199997F)); + builder.AddCubicBezier(new Vector2(-89.3560028F, -103.543999F), new Vector2(-90.4300003F, -104.606003F), new Vector2(-91.7860031F, -105.386002F)); + builder.AddCubicBezier(new Vector2(-93.1419983F, -106.166F), new Vector2(-94.6600037F, -106.556F), new Vector2(-96.3399963F, -106.556F)); + builder.AddCubicBezier(new Vector2(-97.9960022F, -106.556F), new Vector2(-99.4960022F, -106.160004F), new Vector2(-100.839996F, -105.367996F)); + builder.AddCubicBezier(new Vector2(-102.183998F, -104.575996F), new Vector2(-103.251999F, -103.514F), new Vector2(-104.043999F, -102.181999F)); + builder.AddCubicBezier(new Vector2(-104.835999F, -100.849998F), new Vector2(-105.232002F, -99.3560028F), new Vector2(-105.232002F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-105.232002F, -96.0199966F), new Vector2(-104.835999F, -94.5019989F), new Vector2(-104.043999F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(-103.251999F, -91.7900009F), new Vector2(-102.183998F, -90.7160034F), new Vector2(-100.839996F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(-99.4960022F, -89.1320038F), new Vector2(-97.9960022F, -88.7360001F), new Vector2(-96.3399963F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-94.6600037F, -88.7360001F), new Vector2(-93.1419983F, -89.1320038F), new Vector2(-91.7860031F, -89.9240036F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0938() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-106.744003F, -103.244003F)); + builder.AddLine(new Vector2(-106.744003F, -106.195999F)); + builder.AddLine(new Vector2(-118.407997F, -106.195999F)); + builder.AddLine(new Vector2(-118.407997F, -103.244003F)); + builder.AddLine(new Vector2(-106.744003F, -103.244003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-110.956001F, -89.0960007F)); + builder.AddLine(new Vector2(-110.956001F, -113.360001F)); + builder.AddLine(new Vector2(-114.195999F, -113.360001F)); + builder.AddLine(new Vector2(-114.195999F, -89.0960007F)); + builder.AddLine(new Vector2(-110.956001F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0939() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-129.621994F, -90.1399994F)); + builder.AddCubicBezier(new Vector2(-128.481995F, -91.0759964F), new Vector2(-127.912003F, -92.3479996F), new Vector2(-127.912003F, -93.9560013F)); + builder.AddCubicBezier(new Vector2(-127.912003F, -95.012001F), new Vector2(-128.134003F, -95.8639984F), new Vector2(-128.578003F, -96.512001F)); + builder.AddCubicBezier(new Vector2(-129.022003F, -97.1600037F), new Vector2(-129.591995F, -97.6760025F), new Vector2(-130.287994F, -98.0599976F)); + builder.AddCubicBezier(new Vector2(-130.983994F, -98.4440002F), new Vector2(-131.716003F, -98.75F), new Vector2(-132.483994F, -98.9779968F)); + builder.AddCubicBezier(new Vector2(-133.251999F, -99.2060013F), new Vector2(-133.990005F, -99.4280014F), new Vector2(-134.697998F, -99.6439972F)); + builder.AddCubicBezier(new Vector2(-135.406006F, -99.8600006F), new Vector2(-135.975998F, -100.124001F), new Vector2(-136.408005F, -100.435997F)); + builder.AddCubicBezier(new Vector2(-136.839996F, -100.748001F), new Vector2(-137.056F, -101.192001F), new Vector2(-137.056F, -101.767998F)); + builder.AddCubicBezier(new Vector2(-137.056F, -102.32F), new Vector2(-136.809998F, -102.764F), new Vector2(-136.317993F, -103.099998F)); + builder.AddCubicBezier(new Vector2(-135.826004F, -103.435997F), new Vector2(-135.112F, -103.603996F), new Vector2(-134.175995F, -103.603996F)); + builder.AddCubicBezier(new Vector2(-133.287994F, -103.603996F), new Vector2(-132.496002F, -103.435997F), new Vector2(-131.800003F, -103.099998F)); + builder.AddCubicBezier(new Vector2(-131.104004F, -102.764F), new Vector2(-130.503998F, -102.283997F), new Vector2(-130F, -101.660004F)); + builder.AddLine(new Vector2(-127.912003F, -103.748001F)); + builder.AddCubicBezier(new Vector2(-128.584F, -104.683998F), new Vector2(-129.442001F, -105.386002F), new Vector2(-130.485992F, -105.853996F)); + builder.AddCubicBezier(new Vector2(-131.529999F, -106.321999F), new Vector2(-132.723999F, -106.556F), new Vector2(-134.067993F, -106.556F)); + builder.AddCubicBezier(new Vector2(-135.339996F, -106.556F), new Vector2(-136.432007F, -106.351997F), new Vector2(-137.343994F, -105.944F)); + builder.AddCubicBezier(new Vector2(-138.255997F, -105.536003F), new Vector2(-138.957993F, -104.954002F), new Vector2(-139.449997F, -104.197998F)); + builder.AddCubicBezier(new Vector2(-139.942001F, -103.442001F), new Vector2(-140.188004F, -102.547997F), new Vector2(-140.188004F, -101.515999F)); + builder.AddCubicBezier(new Vector2(-140.188004F, -100.484001F), new Vector2(-139.966003F, -99.6500015F), new Vector2(-139.522003F, -99.0139999F)); + builder.AddCubicBezier(new Vector2(-139.078003F, -98.3779984F), new Vector2(-138.507996F, -97.8799973F), new Vector2(-137.811996F, -97.5199966F)); + builder.AddCubicBezier(new Vector2(-137.115997F, -97.1600037F), new Vector2(-136.378006F, -96.8720016F), new Vector2(-135.598007F, -96.6559982F)); + builder.AddCubicBezier(new Vector2(-134.817993F, -96.4400024F), new Vector2(-134.080002F, -96.2180023F), new Vector2(-133.384003F, -95.9899979F)); + builder.AddCubicBezier(new Vector2(-132.688004F, -95.762001F), new Vector2(-132.117996F, -95.473999F), new Vector2(-131.673996F, -95.1259995F)); + builder.AddCubicBezier(new Vector2(-131.229996F, -94.7779999F), new Vector2(-131.007996F, -94.2919998F), new Vector2(-131.007996F, -93.6679993F)); + builder.AddCubicBezier(new Vector2(-131.007996F, -93.0439987F), new Vector2(-131.283997F, -92.5579987F), new Vector2(-131.835999F, -92.2099991F)); + builder.AddCubicBezier(new Vector2(-132.388F, -91.8619995F), new Vector2(-133.167999F, -91.6880035F), new Vector2(-134.175995F, -91.6880035F)); + builder.AddCubicBezier(new Vector2(-135.184006F, -91.6880035F), new Vector2(-136.095993F, -91.8740005F), new Vector2(-136.912003F, -92.2460022F)); + builder.AddCubicBezier(new Vector2(-137.727997F, -92.6179962F), new Vector2(-138.447998F, -93.1880035F), new Vector2(-139.072006F, -93.9560013F)); + builder.AddLine(new Vector2(-141.160004F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(-140.632004F, -91.2200012F), new Vector2(-140.014008F, -90.6620026F), new Vector2(-139.306F, -90.1940002F)); + builder.AddCubicBezier(new Vector2(-138.598007F, -89.7259979F), new Vector2(-137.811996F, -89.3659973F), new Vector2(-136.947998F, -89.1139984F)); + builder.AddCubicBezier(new Vector2(-136.084F, -88.8619995F), new Vector2(-135.171997F, -88.7360001F), new Vector2(-134.212006F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-132.292007F, -88.7360001F), new Vector2(-130.761993F, -89.2040024F), new Vector2(-129.621994F, -90.1399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0940() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-147.244003F, -89.4919968F)); + builder.AddCubicBezier(new Vector2(-146.067993F, -89.9960022F), new Vector2(-145.059998F, -90.7279968F), new Vector2(-144.220001F, -91.6880035F)); + builder.AddLine(new Vector2(-146.307999F, -93.8119965F)); + builder.AddCubicBezier(new Vector2(-146.884003F, -93.1399994F), new Vector2(-147.574005F, -92.6360016F), new Vector2(-148.378006F, -92.3000031F)); + builder.AddCubicBezier(new Vector2(-149.182007F, -91.9639969F), new Vector2(-150.063995F, -91.7959976F), new Vector2(-151.024002F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(-152.175995F, -91.7959976F), new Vector2(-153.195999F, -92.0419998F), new Vector2(-154.084F, -92.5339966F)); + builder.AddCubicBezier(new Vector2(-154.972F, -93.026001F), new Vector2(-155.656006F, -93.7220001F), new Vector2(-156.136002F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(-156.615997F, -95.5220032F), new Vector2(-156.856003F, -96.5719986F), new Vector2(-156.856003F, -97.7720032F)); + builder.AddCubicBezier(new Vector2(-156.856003F, -98.947998F), new Vector2(-156.628006F, -99.9680023F), new Vector2(-156.171997F, -100.832001F)); + builder.AddCubicBezier(new Vector2(-155.716003F, -101.695999F), new Vector2(-155.067993F, -102.367996F), new Vector2(-154.227997F, -102.848F)); + builder.AddCubicBezier(new Vector2(-153.388F, -103.328003F), new Vector2(-152.416F, -103.568001F), new Vector2(-151.311996F, -103.568001F)); + builder.AddCubicBezier(new Vector2(-150.255997F, -103.568001F), new Vector2(-149.356003F, -103.346001F), new Vector2(-148.612F, -102.902F)); + builder.AddCubicBezier(new Vector2(-147.867996F, -102.458F), new Vector2(-147.292007F, -101.834F), new Vector2(-146.884003F, -101.029999F)); + builder.AddCubicBezier(new Vector2(-146.475998F, -100.225998F), new Vector2(-146.272003F, -99.2480011F), new Vector2(-146.272003F, -98.0960007F)); + builder.AddLine(new Vector2(-145.084F, -99.1399994F)); + builder.AddLine(new Vector2(-157.792007F, -99.1399994F)); + builder.AddLine(new Vector2(-157.792007F, -96.4400024F)); + builder.AddLine(new Vector2(-143.356003F, -96.4400024F)); + builder.AddCubicBezier(new Vector2(-143.283997F, -96.776001F), new Vector2(-143.235992F, -97.0820007F), new Vector2(-143.212006F, -97.3580017F)); + builder.AddCubicBezier(new Vector2(-143.188004F, -97.6340027F), new Vector2(-143.175995F, -97.8919983F), new Vector2(-143.175995F, -98.1320038F)); + builder.AddCubicBezier(new Vector2(-143.175995F, -99.7639999F), new Vector2(-143.518005F, -101.216003F), new Vector2(-144.201996F, -102.487999F)); + builder.AddCubicBezier(new Vector2(-144.886002F, -103.760002F), new Vector2(-145.839996F, -104.755997F), new Vector2(-147.063995F, -105.475998F)); + builder.AddCubicBezier(new Vector2(-148.287994F, -106.195999F), new Vector2(-149.679993F, -106.556F), new Vector2(-151.240005F, -106.556F)); + builder.AddCubicBezier(new Vector2(-152.895996F, -106.556F), new Vector2(-154.389999F, -106.166F), new Vector2(-155.722F, -105.386002F)); + builder.AddCubicBezier(new Vector2(-157.054001F, -104.606003F), new Vector2(-158.110001F, -103.543999F), new Vector2(-158.889999F, -102.199997F)); + builder.AddCubicBezier(new Vector2(-159.669998F, -100.856003F), new Vector2(-160.059998F, -99.3440018F), new Vector2(-160.059998F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(-160.059998F, -95.9599991F), new Vector2(-159.664001F, -94.435997F), new Vector2(-158.871994F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(-158.080002F, -91.7480011F), new Vector2(-157.005997F, -90.685997F), new Vector2(-155.649994F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(-154.294006F, -89.1259995F), new Vector2(-152.751999F, -88.7360001F), new Vector2(-151.024002F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-149.679993F, -88.7360001F), new Vector2(-148.419998F, -88.987999F), new Vector2(-147.244003F, -89.4919968F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0941() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-163.876007F, -110.209999F)); + builder.AddCubicBezier(new Vector2(-163.492004F, -110.606003F), new Vector2(-163.300003F, -111.103996F), new Vector2(-163.300003F, -111.704002F)); + builder.AddCubicBezier(new Vector2(-163.300003F, -112.279999F), new Vector2(-163.492004F, -112.765999F), new Vector2(-163.876007F, -113.162003F)); + builder.AddCubicBezier(new Vector2(-164.259995F, -113.557999F), new Vector2(-164.751999F, -113.755997F), new Vector2(-165.352005F, -113.755997F)); + builder.AddCubicBezier(new Vector2(-165.951996F, -113.755997F), new Vector2(-166.444F, -113.557999F), new Vector2(-166.828003F, -113.162003F)); + builder.AddCubicBezier(new Vector2(-167.212006F, -112.765999F), new Vector2(-167.404007F, -112.279999F), new Vector2(-167.404007F, -111.704002F)); + builder.AddCubicBezier(new Vector2(-167.404007F, -111.103996F), new Vector2(-167.212006F, -110.606003F), new Vector2(-166.828003F, -110.209999F)); + builder.AddCubicBezier(new Vector2(-166.444F, -109.814003F), new Vector2(-165.951996F, -109.615997F), new Vector2(-165.352005F, -109.615997F)); + builder.AddCubicBezier(new Vector2(-164.751999F, -109.615997F), new Vector2(-164.259995F, -109.814003F), new Vector2(-163.876007F, -110.209999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-163.731995F, -89.0960007F)); + builder.AddLine(new Vector2(-163.731995F, -106.195999F)); + builder.AddLine(new Vector2(-167.007996F, -106.195999F)); + builder.AddLine(new Vector2(-167.007996F, -89.0960007F)); + builder.AddLine(new Vector2(-163.731995F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0942() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-177.052002F, -102.344002F)); + builder.AddCubicBezier(new Vector2(-176.283997F, -103.112F), new Vector2(-175.300003F, -103.496002F), new Vector2(-174.100006F, -103.496002F)); + builder.AddCubicBezier(new Vector2(-173.524002F, -103.496002F), new Vector2(-173.020004F, -103.412003F), new Vector2(-172.587997F, -103.244003F)); + builder.AddCubicBezier(new Vector2(-172.156006F, -103.075996F), new Vector2(-171.759995F, -102.800003F), new Vector2(-171.399994F, -102.416F)); + builder.AddLine(new Vector2(-169.276001F, -104.612F)); + builder.AddCubicBezier(new Vector2(-169.876007F, -105.307999F), new Vector2(-170.524002F, -105.806F), new Vector2(-171.220001F, -106.106003F)); + builder.AddCubicBezier(new Vector2(-171.916F, -106.405998F), new Vector2(-172.695999F, -106.556F), new Vector2(-173.559998F, -106.556F)); + builder.AddCubicBezier(new Vector2(-175.455994F, -106.556F), new Vector2(-176.908005F, -105.907997F), new Vector2(-177.916F, -104.612F)); + builder.AddCubicBezier(new Vector2(-178.923996F, -103.316002F), new Vector2(-179.427994F, -101.575996F), new Vector2(-179.427994F, -99.3919983F)); + builder.AddLine(new Vector2(-178.203995F, -98.8160019F)); + builder.AddCubicBezier(new Vector2(-178.203995F, -100.400002F), new Vector2(-177.820007F, -101.575996F), new Vector2(-177.052002F, -102.344002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-178.203995F, -89.0960007F)); + builder.AddLine(new Vector2(-178.203995F, -106.195999F)); + builder.AddLine(new Vector2(-181.444F, -106.195999F)); + builder.AddLine(new Vector2(-181.444F, -89.0960007F)); + builder.AddLine(new Vector2(-178.203995F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0943() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-184.612F, -103.244003F)); + builder.AddLine(new Vector2(-184.612F, -106.195999F)); + builder.AddLine(new Vector2(-196.276001F, -106.195999F)); + builder.AddLine(new Vector2(-196.276001F, -103.244003F)); + builder.AddLine(new Vector2(-184.612F, -103.244003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-188.824005F, -89.0960007F)); + builder.AddLine(new Vector2(-188.824005F, -113.360001F)); + builder.AddLine(new Vector2(-192.063995F, -113.360001F)); + builder.AddLine(new Vector2(-192.063995F, -89.0960007F)); + builder.AddLine(new Vector2(-188.824005F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0944() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-205.311996F, -103.244003F)); + builder.AddLine(new Vector2(-205.311996F, -106.195999F)); + builder.AddLine(new Vector2(-216.975998F, -106.195999F)); + builder.AddLine(new Vector2(-216.975998F, -103.244003F)); + builder.AddLine(new Vector2(-205.311996F, -103.244003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-209.524002F, -89.0960007F)); + builder.AddLine(new Vector2(-209.524002F, -113.360001F)); + builder.AddLine(new Vector2(-212.764008F, -113.360001F)); + builder.AddLine(new Vector2(-212.764008F, -89.0960007F)); + builder.AddLine(new Vector2(-209.524002F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0945() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-231.664001F, -89.0960007F)); + builder.AddLine(new Vector2(-231.664001F, -106.195999F)); + builder.AddLine(new Vector2(-234.904007F, -106.195999F)); + builder.AddLine(new Vector2(-234.904007F, -89.0960007F)); + builder.AddLine(new Vector2(-231.664001F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-219.567993F, -89.0960007F)); + builder.AddLine(new Vector2(-219.567993F, -99.7160034F)); + builder.AddCubicBezier(new Vector2(-219.567993F, -100.891998F), new Vector2(-219.856003F, -102.001999F), new Vector2(-220.432007F, -103.045998F)); + builder.AddCubicBezier(new Vector2(-221.007996F, -104.089996F), new Vector2(-221.794006F, -104.935997F), new Vector2(-222.789993F, -105.584F)); + builder.AddCubicBezier(new Vector2(-223.785995F, -106.232002F), new Vector2(-224.932007F, -106.556F), new Vector2(-226.227997F, -106.556F)); + builder.AddCubicBezier(new Vector2(-227.524002F, -106.556F), new Vector2(-228.688004F, -106.262001F), new Vector2(-229.720001F, -105.674004F)); + builder.AddCubicBezier(new Vector2(-230.751999F, -105.085999F), new Vector2(-231.556F, -104.288002F), new Vector2(-232.132004F, -103.279999F)); + builder.AddCubicBezier(new Vector2(-232.707993F, -102.272003F), new Vector2(-232.996002F, -101.120003F), new Vector2(-232.996002F, -99.8239975F)); + builder.AddLine(new Vector2(-231.664001F, -99.0680008F)); + builder.AddCubicBezier(new Vector2(-231.664001F, -99.9319992F), new Vector2(-231.472F, -100.699997F), new Vector2(-231.087997F, -101.372002F)); + builder.AddCubicBezier(new Vector2(-230.703995F, -102.043999F), new Vector2(-230.175995F, -102.571999F), new Vector2(-229.503998F, -102.956001F)); + builder.AddCubicBezier(new Vector2(-228.832001F, -103.339996F), new Vector2(-228.063995F, -103.531998F), new Vector2(-227.199997F, -103.531998F)); + builder.AddCubicBezier(new Vector2(-225.904007F, -103.531998F), new Vector2(-224.854004F, -103.112F), new Vector2(-224.050003F, -102.272003F)); + builder.AddCubicBezier(new Vector2(-223.246002F, -101.431999F), new Vector2(-222.843994F, -100.363998F), new Vector2(-222.843994F, -99.0680008F)); + builder.AddLine(new Vector2(-222.843994F, -89.0960007F)); + builder.AddLine(new Vector2(-219.567993F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0946() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-242.5F, -89.4919968F)); + builder.AddCubicBezier(new Vector2(-241.324005F, -89.9960022F), new Vector2(-240.315994F, -90.7279968F), new Vector2(-239.475998F, -91.6880035F)); + builder.AddLine(new Vector2(-241.563995F, -93.8119965F)); + builder.AddCubicBezier(new Vector2(-242.139999F, -93.1399994F), new Vector2(-242.830002F, -92.6360016F), new Vector2(-243.634003F, -92.3000031F)); + builder.AddCubicBezier(new Vector2(-244.438004F, -91.9639969F), new Vector2(-245.320007F, -91.7959976F), new Vector2(-246.279999F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(-247.432007F, -91.7959976F), new Vector2(-248.451996F, -92.0419998F), new Vector2(-249.339996F, -92.5339966F)); + builder.AddCubicBezier(new Vector2(-250.227997F, -93.026001F), new Vector2(-250.912003F, -93.7220001F), new Vector2(-251.391998F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(-251.871994F, -95.5220032F), new Vector2(-252.112F, -96.5719986F), new Vector2(-252.112F, -97.7720032F)); + builder.AddCubicBezier(new Vector2(-252.112F, -98.947998F), new Vector2(-251.884003F, -99.9680023F), new Vector2(-251.427994F, -100.832001F)); + builder.AddCubicBezier(new Vector2(-250.972F, -101.695999F), new Vector2(-250.324005F, -102.367996F), new Vector2(-249.483994F, -102.848F)); + builder.AddCubicBezier(new Vector2(-248.643997F, -103.328003F), new Vector2(-247.671997F, -103.568001F), new Vector2(-246.567993F, -103.568001F)); + builder.AddCubicBezier(new Vector2(-245.511993F, -103.568001F), new Vector2(-244.612F, -103.346001F), new Vector2(-243.867996F, -102.902F)); + builder.AddCubicBezier(new Vector2(-243.123993F, -102.458F), new Vector2(-242.548004F, -101.834F), new Vector2(-242.139999F, -101.029999F)); + builder.AddCubicBezier(new Vector2(-241.731995F, -100.225998F), new Vector2(-241.528F, -99.2480011F), new Vector2(-241.528F, -98.0960007F)); + builder.AddLine(new Vector2(-240.339996F, -99.1399994F)); + builder.AddLine(new Vector2(-253.048004F, -99.1399994F)); + builder.AddLine(new Vector2(-253.048004F, -96.4400024F)); + builder.AddLine(new Vector2(-238.612F, -96.4400024F)); + builder.AddCubicBezier(new Vector2(-238.539993F, -96.776001F), new Vector2(-238.492004F, -97.0820007F), new Vector2(-238.468002F, -97.3580017F)); + builder.AddCubicBezier(new Vector2(-238.444F, -97.6340027F), new Vector2(-238.432007F, -97.8919983F), new Vector2(-238.432007F, -98.1320038F)); + builder.AddCubicBezier(new Vector2(-238.432007F, -99.7639999F), new Vector2(-238.774002F, -101.216003F), new Vector2(-239.457993F, -102.487999F)); + builder.AddCubicBezier(new Vector2(-240.141998F, -103.760002F), new Vector2(-241.095993F, -104.755997F), new Vector2(-242.320007F, -105.475998F)); + builder.AddCubicBezier(new Vector2(-243.544006F, -106.195999F), new Vector2(-244.936005F, -106.556F), new Vector2(-246.496002F, -106.556F)); + builder.AddCubicBezier(new Vector2(-248.151993F, -106.556F), new Vector2(-249.645996F, -106.166F), new Vector2(-250.977997F, -105.386002F)); + builder.AddCubicBezier(new Vector2(-252.309998F, -104.606003F), new Vector2(-253.365997F, -103.543999F), new Vector2(-254.145996F, -102.199997F)); + builder.AddCubicBezier(new Vector2(-254.925995F, -100.856003F), new Vector2(-255.315994F, -99.3440018F), new Vector2(-255.315994F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(-255.315994F, -95.9599991F), new Vector2(-254.919998F, -94.435997F), new Vector2(-254.128006F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(-253.335999F, -91.7480011F), new Vector2(-252.261993F, -90.685997F), new Vector2(-250.906006F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(-249.550003F, -89.1259995F), new Vector2(-248.007996F, -88.7360001F), new Vector2(-246.279999F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-244.936005F, -88.7360001F), new Vector2(-243.675995F, -88.987999F), new Vector2(-242.5F, -89.4919968F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0947() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-258.59201F, -89.0960007F)); + builder.AddLine(new Vector2(-258.59201F, -100.075996F)); + builder.AddCubicBezier(new Vector2(-258.59201F, -101.419998F), new Vector2(-258.885986F, -102.571999F), new Vector2(-259.473999F, -103.531998F)); + builder.AddCubicBezier(new Vector2(-260.062012F, -104.491997F), new Vector2(-260.847992F, -105.236F), new Vector2(-261.832001F, -105.764F)); + builder.AddCubicBezier(new Vector2(-262.81601F, -106.292F), new Vector2(-263.932007F, -106.556F), new Vector2(-265.179993F, -106.556F)); + builder.AddCubicBezier(new Vector2(-266.380005F, -106.556F), new Vector2(-267.484009F, -106.286003F), new Vector2(-268.492004F, -105.746002F)); + builder.AddCubicBezier(new Vector2(-269.5F, -105.206001F), new Vector2(-270.321991F, -104.461998F), new Vector2(-270.958008F, -103.514F)); + builder.AddCubicBezier(new Vector2(-271.593994F, -102.566002F), new Vector2(-271.947998F, -101.431999F), new Vector2(-272.019989F, -100.112F)); + builder.AddLine(new Vector2(-270.18399F, -99.4280014F)); + builder.AddCubicBezier(new Vector2(-270.18399F, -100.292F), new Vector2(-269.992004F, -101.024002F), new Vector2(-269.608002F, -101.624001F)); + builder.AddCubicBezier(new Vector2(-269.223999F, -102.223999F), new Vector2(-268.713989F, -102.692001F), new Vector2(-268.078003F, -103.028F)); + builder.AddCubicBezier(new Vector2(-267.441986F, -103.363998F), new Vector2(-266.727997F, -103.531998F), new Vector2(-265.936005F, -103.531998F)); + builder.AddCubicBezier(new Vector2(-264.783997F, -103.531998F), new Vector2(-263.817993F, -103.166F), new Vector2(-263.037994F, -102.433998F)); + builder.AddCubicBezier(new Vector2(-262.257996F, -101.702003F), new Vector2(-261.868011F, -100.699997F), new Vector2(-261.868011F, -99.4280014F)); + builder.AddLine(new Vector2(-261.868011F, -89.0960007F)); + builder.AddLine(new Vector2(-258.59201F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-270.18399F, -89.0960007F)); + builder.AddLine(new Vector2(-270.18399F, -100.112F)); + builder.AddCubicBezier(new Vector2(-270.18399F, -101.431999F), new Vector2(-270.466003F, -102.571999F), new Vector2(-271.029999F, -103.531998F)); + builder.AddCubicBezier(new Vector2(-271.593994F, -104.491997F), new Vector2(-272.362F, -105.236F), new Vector2(-273.334015F, -105.764F)); + builder.AddCubicBezier(new Vector2(-274.306F, -106.292F), new Vector2(-275.391998F, -106.556F), new Vector2(-276.59201F, -106.556F)); + builder.AddCubicBezier(new Vector2(-277.81601F, -106.556F), new Vector2(-278.920013F, -106.286003F), new Vector2(-279.903992F, -105.746002F)); + builder.AddCubicBezier(new Vector2(-280.888F, -105.206001F), new Vector2(-281.661987F, -104.456001F), new Vector2(-282.226013F, -103.496002F)); + builder.AddCubicBezier(new Vector2(-282.790009F, -102.536003F), new Vector2(-283.071991F, -101.407997F), new Vector2(-283.071991F, -100.112F)); + builder.AddLine(new Vector2(-281.73999F, -99.4280014F)); + builder.AddCubicBezier(new Vector2(-281.73999F, -100.292F), new Vector2(-281.548004F, -101.024002F), new Vector2(-281.164001F, -101.624001F)); + builder.AddCubicBezier(new Vector2(-280.779999F, -102.223999F), new Vector2(-280.276001F, -102.692001F), new Vector2(-279.652008F, -103.028F)); + builder.AddCubicBezier(new Vector2(-279.028015F, -103.363998F), new Vector2(-278.320007F, -103.531998F), new Vector2(-277.528015F, -103.531998F)); + builder.AddCubicBezier(new Vector2(-276.35199F, -103.531998F), new Vector2(-275.373993F, -103.166F), new Vector2(-274.593994F, -102.433998F)); + builder.AddCubicBezier(new Vector2(-273.813995F, -101.702003F), new Vector2(-273.424011F, -100.699997F), new Vector2(-273.424011F, -99.4280014F)); + builder.AddLine(new Vector2(-273.424011F, -89.0960007F)); + builder.AddLine(new Vector2(-270.18399F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-281.73999F, -89.0960007F)); + builder.AddLine(new Vector2(-281.73999F, -106.195999F)); + builder.AddLine(new Vector2(-284.980011F, -106.195999F)); + builder.AddLine(new Vector2(-284.980011F, -89.0960007F)); + builder.AddLine(new Vector2(-281.73999F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0948() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-301.467987F, -89.0960007F)); + builder.AddLine(new Vector2(-301.467987F, -106.195999F)); + builder.AddLine(new Vector2(-304.708008F, -106.195999F)); + builder.AddLine(new Vector2(-304.708008F, -89.0960007F)); + builder.AddLine(new Vector2(-301.467987F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-289.372009F, -89.0960007F)); + builder.AddLine(new Vector2(-289.372009F, -99.7160034F)); + builder.AddCubicBezier(new Vector2(-289.372009F, -100.891998F), new Vector2(-289.660004F, -102.001999F), new Vector2(-290.235992F, -103.045998F)); + builder.AddCubicBezier(new Vector2(-290.812012F, -104.089996F), new Vector2(-291.597992F, -104.935997F), new Vector2(-292.593994F, -105.584F)); + builder.AddCubicBezier(new Vector2(-293.589996F, -106.232002F), new Vector2(-294.735992F, -106.556F), new Vector2(-296.032013F, -106.556F)); + builder.AddCubicBezier(new Vector2(-297.328003F, -106.556F), new Vector2(-298.492004F, -106.262001F), new Vector2(-299.523987F, -105.674004F)); + builder.AddCubicBezier(new Vector2(-300.556F, -105.085999F), new Vector2(-301.359985F, -104.288002F), new Vector2(-301.936005F, -103.279999F)); + builder.AddCubicBezier(new Vector2(-302.511993F, -102.272003F), new Vector2(-302.799988F, -101.120003F), new Vector2(-302.799988F, -99.8239975F)); + builder.AddLine(new Vector2(-301.467987F, -99.0680008F)); + builder.AddCubicBezier(new Vector2(-301.467987F, -99.9319992F), new Vector2(-301.276001F, -100.699997F), new Vector2(-300.891998F, -101.372002F)); + builder.AddCubicBezier(new Vector2(-300.507996F, -102.043999F), new Vector2(-299.980011F, -102.571999F), new Vector2(-299.308014F, -102.956001F)); + builder.AddCubicBezier(new Vector2(-298.635986F, -103.339996F), new Vector2(-297.868011F, -103.531998F), new Vector2(-297.003998F, -103.531998F)); + builder.AddCubicBezier(new Vector2(-295.708008F, -103.531998F), new Vector2(-294.65799F, -103.112F), new Vector2(-293.854004F, -102.272003F)); + builder.AddCubicBezier(new Vector2(-293.049988F, -101.431999F), new Vector2(-292.64801F, -100.363998F), new Vector2(-292.64801F, -99.0680008F)); + builder.AddLine(new Vector2(-292.64801F, -89.0960007F)); + builder.AddLine(new Vector2(-289.372009F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0949() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-314.824005F, -102.344002F)); + builder.AddCubicBezier(new Vector2(-314.056F, -103.112F), new Vector2(-313.071991F, -103.496002F), new Vector2(-311.872009F, -103.496002F)); + builder.AddCubicBezier(new Vector2(-311.29599F, -103.496002F), new Vector2(-310.791992F, -103.412003F), new Vector2(-310.359985F, -103.244003F)); + builder.AddCubicBezier(new Vector2(-309.928009F, -103.075996F), new Vector2(-309.532013F, -102.800003F), new Vector2(-309.171997F, -102.416F)); + builder.AddLine(new Vector2(-307.048004F, -104.612F)); + builder.AddCubicBezier(new Vector2(-307.64801F, -105.307999F), new Vector2(-308.29599F, -105.806F), new Vector2(-308.992004F, -106.106003F)); + builder.AddCubicBezier(new Vector2(-309.687988F, -106.405998F), new Vector2(-310.467987F, -106.556F), new Vector2(-311.332001F, -106.556F)); + builder.AddCubicBezier(new Vector2(-313.227997F, -106.556F), new Vector2(-314.679993F, -105.907997F), new Vector2(-315.687988F, -104.612F)); + builder.AddCubicBezier(new Vector2(-316.696014F, -103.316002F), new Vector2(-317.200012F, -101.575996F), new Vector2(-317.200012F, -99.3919983F)); + builder.AddLine(new Vector2(-315.976013F, -98.8160019F)); + builder.AddCubicBezier(new Vector2(-315.976013F, -100.400002F), new Vector2(-315.59201F, -101.575996F), new Vector2(-314.824005F, -102.344002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-315.976013F, -89.0960007F)); + builder.AddLine(new Vector2(-315.976013F, -106.195999F)); + builder.AddLine(new Vector2(-319.216003F, -106.195999F)); + builder.AddLine(new Vector2(-319.216003F, -89.0960007F)); + builder.AddLine(new Vector2(-315.976013F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0950() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-326.812012F, -89.4919968F)); + builder.AddCubicBezier(new Vector2(-325.635986F, -89.9960022F), new Vector2(-324.627991F, -90.7279968F), new Vector2(-323.787994F, -91.6880035F)); + builder.AddLine(new Vector2(-325.876007F, -93.8119965F)); + builder.AddCubicBezier(new Vector2(-326.451996F, -93.1399994F), new Vector2(-327.141998F, -92.6360016F), new Vector2(-327.946014F, -92.3000031F)); + builder.AddCubicBezier(new Vector2(-328.75F, -91.9639969F), new Vector2(-329.631989F, -91.7959976F), new Vector2(-330.59201F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(-331.743988F, -91.7959976F), new Vector2(-332.764008F, -92.0419998F), new Vector2(-333.652008F, -92.5339966F)); + builder.AddCubicBezier(new Vector2(-334.540009F, -93.026001F), new Vector2(-335.223999F, -93.7220001F), new Vector2(-335.70401F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(-336.18399F, -95.5220032F), new Vector2(-336.424011F, -96.5719986F), new Vector2(-336.424011F, -97.7720032F)); + builder.AddCubicBezier(new Vector2(-336.424011F, -98.947998F), new Vector2(-336.196014F, -99.9680023F), new Vector2(-335.73999F, -100.832001F)); + builder.AddCubicBezier(new Vector2(-335.283997F, -101.695999F), new Vector2(-334.635986F, -102.367996F), new Vector2(-333.79599F, -102.848F)); + builder.AddCubicBezier(new Vector2(-332.955994F, -103.328003F), new Vector2(-331.984009F, -103.568001F), new Vector2(-330.880005F, -103.568001F)); + builder.AddCubicBezier(new Vector2(-329.824005F, -103.568001F), new Vector2(-328.924011F, -103.346001F), new Vector2(-328.179993F, -102.902F)); + builder.AddCubicBezier(new Vector2(-327.436005F, -102.458F), new Vector2(-326.859985F, -101.834F), new Vector2(-326.451996F, -101.029999F)); + builder.AddCubicBezier(new Vector2(-326.044006F, -100.225998F), new Vector2(-325.839996F, -99.2480011F), new Vector2(-325.839996F, -98.0960007F)); + builder.AddLine(new Vector2(-324.652008F, -99.1399994F)); + builder.AddLine(new Vector2(-337.359985F, -99.1399994F)); + builder.AddLine(new Vector2(-337.359985F, -96.4400024F)); + builder.AddLine(new Vector2(-322.924011F, -96.4400024F)); + builder.AddCubicBezier(new Vector2(-322.85199F, -96.776001F), new Vector2(-322.803986F, -97.0820007F), new Vector2(-322.779999F, -97.3580017F)); + builder.AddCubicBezier(new Vector2(-322.756012F, -97.6340027F), new Vector2(-322.743988F, -97.8919983F), new Vector2(-322.743988F, -98.1320038F)); + builder.AddCubicBezier(new Vector2(-322.743988F, -99.7639999F), new Vector2(-323.085999F, -101.216003F), new Vector2(-323.769989F, -102.487999F)); + builder.AddCubicBezier(new Vector2(-324.45401F, -103.760002F), new Vector2(-325.40799F, -104.755997F), new Vector2(-326.631989F, -105.475998F)); + builder.AddCubicBezier(new Vector2(-327.855988F, -106.195999F), new Vector2(-329.247986F, -106.556F), new Vector2(-330.808014F, -106.556F)); + builder.AddCubicBezier(new Vector2(-332.463989F, -106.556F), new Vector2(-333.958008F, -106.166F), new Vector2(-335.290009F, -105.386002F)); + builder.AddCubicBezier(new Vector2(-336.622009F, -104.606003F), new Vector2(-337.678009F, -103.543999F), new Vector2(-338.458008F, -102.199997F)); + builder.AddCubicBezier(new Vector2(-339.238007F, -100.856003F), new Vector2(-339.627991F, -99.3440018F), new Vector2(-339.627991F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(-339.627991F, -95.9599991F), new Vector2(-339.231995F, -94.435997F), new Vector2(-338.440002F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(-337.64801F, -91.7480011F), new Vector2(-336.574005F, -90.685997F), new Vector2(-335.217987F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(-333.862F, -89.1259995F), new Vector2(-332.320007F, -88.7360001F), new Vector2(-330.59201F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-329.247986F, -88.7360001F), new Vector2(-327.988007F, -88.987999F), new Vector2(-326.812012F, -89.4919968F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0951() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-348.484009F, -89.0960007F)); + builder.AddLine(new Vector2(-340.635986F, -106.195999F)); + builder.AddLine(new Vector2(-344.09201F, -106.195999F)); + builder.AddLine(new Vector2(-350.428009F, -91.7600021F)); + builder.AddLine(new Vector2(-348.339996F, -91.7600021F)); + builder.AddLine(new Vector2(-354.640015F, -106.195999F)); + builder.AddLine(new Vector2(-358.23999F, -106.195999F)); + builder.AddLine(new Vector2(-350.391998F, -89.0960007F)); + builder.AddLine(new Vector2(-348.484009F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0952() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-371.019989F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(-371.859985F, -93.1279984F), new Vector2(-372.519989F, -93.8180008F), new Vector2(-373F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(-373.480011F, -95.5699997F), new Vector2(-373.720001F, -96.5719986F), new Vector2(-373.720001F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-373.720001F, -98.8040009F), new Vector2(-373.480011F, -99.788002F), new Vector2(-373F, -100.652F)); + builder.AddCubicBezier(new Vector2(-372.519989F, -101.515999F), new Vector2(-371.859985F, -102.194F), new Vector2(-371.019989F, -102.685997F)); + builder.AddCubicBezier(new Vector2(-370.179993F, -103.178001F), new Vector2(-369.231995F, -103.424004F), new Vector2(-368.175995F, -103.424004F)); + builder.AddCubicBezier(new Vector2(-367.071991F, -103.424004F), new Vector2(-366.105988F, -103.178001F), new Vector2(-365.278015F, -102.685997F)); + builder.AddCubicBezier(new Vector2(-364.450012F, -102.194F), new Vector2(-363.790009F, -101.515999F), new Vector2(-363.298004F, -100.652F)); + builder.AddCubicBezier(new Vector2(-362.806F, -99.788002F), new Vector2(-362.559998F, -98.8040009F), new Vector2(-362.559998F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-362.559998F, -96.5719986F), new Vector2(-362.799988F, -95.5699997F), new Vector2(-363.279999F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(-363.76001F, -93.8180008F), new Vector2(-364.420013F, -93.1279984F), new Vector2(-365.26001F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(-366.100006F, -92.1200027F), new Vector2(-367.071991F, -91.8679962F), new Vector2(-368.175995F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(-369.231995F, -91.8679962F), new Vector2(-370.179993F, -92.1200027F), new Vector2(-371.019989F, -92.6240005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-363.622009F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(-362.265991F, -90.7160034F), new Vector2(-361.191986F, -91.7900009F), new Vector2(-360.399994F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(-359.608002F, -94.5019989F), new Vector2(-359.212006F, -96.0199966F), new Vector2(-359.212006F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-359.212006F, -99.3560028F), new Vector2(-359.608002F, -100.856003F), new Vector2(-360.399994F, -102.199997F)); + builder.AddCubicBezier(new Vector2(-361.191986F, -103.543999F), new Vector2(-362.265991F, -104.606003F), new Vector2(-363.622009F, -105.386002F)); + builder.AddCubicBezier(new Vector2(-364.977997F, -106.166F), new Vector2(-366.496002F, -106.556F), new Vector2(-368.175995F, -106.556F)); + builder.AddCubicBezier(new Vector2(-369.832001F, -106.556F), new Vector2(-371.332001F, -106.160004F), new Vector2(-372.675995F, -105.367996F)); + builder.AddCubicBezier(new Vector2(-374.019989F, -104.575996F), new Vector2(-375.088013F, -103.514F), new Vector2(-375.880005F, -102.181999F)); + builder.AddCubicBezier(new Vector2(-376.671997F, -100.849998F), new Vector2(-377.067993F, -99.3560028F), new Vector2(-377.067993F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-377.067993F, -96.0199966F), new Vector2(-376.671997F, -94.5019989F), new Vector2(-375.880005F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(-375.088013F, -91.7900009F), new Vector2(-374.019989F, -90.7160034F), new Vector2(-372.675995F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(-371.332001F, -89.1320038F), new Vector2(-369.832001F, -88.7360001F), new Vector2(-368.175995F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-366.496002F, -88.7360001F), new Vector2(-364.977997F, -89.1320038F), new Vector2(-363.622009F, -89.9240036F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0953() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-391.881989F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(-392.709991F, -93.6139984F), new Vector2(-393.358002F, -94.2679977F), new Vector2(-393.825989F, -95.1080017F)); + builder.AddCubicBezier(new Vector2(-394.294006F, -95.947998F), new Vector2(-394.528015F, -96.9079971F), new Vector2(-394.528015F, -97.987999F)); + builder.AddCubicBezier(new Vector2(-394.528015F, -99.0680008F), new Vector2(-394.294006F, -100.022003F), new Vector2(-393.825989F, -100.849998F)); + builder.AddCubicBezier(new Vector2(-393.358002F, -101.678001F), new Vector2(-392.716003F, -102.325996F), new Vector2(-391.899994F, -102.793999F)); + builder.AddCubicBezier(new Vector2(-391.084015F, -103.262001F), new Vector2(-390.135986F, -103.496002F), new Vector2(-389.056F, -103.496002F)); + builder.AddCubicBezier(new Vector2(-388F, -103.496002F), new Vector2(-387.070007F, -103.262001F), new Vector2(-386.265991F, -102.793999F)); + builder.AddCubicBezier(new Vector2(-385.462006F, -102.325996F), new Vector2(-384.838013F, -101.678001F), new Vector2(-384.394012F, -100.849998F)); + builder.AddCubicBezier(new Vector2(-383.950012F, -100.022003F), new Vector2(-383.727997F, -99.0559998F), new Vector2(-383.727997F, -97.9520035F)); + builder.AddCubicBezier(new Vector2(-383.727997F, -96.8479996F), new Vector2(-383.950012F, -95.8820038F), new Vector2(-384.394012F, -95.0540009F)); + builder.AddCubicBezier(new Vector2(-384.838013F, -94.2259979F), new Vector2(-385.455994F, -93.5839996F), new Vector2(-386.247986F, -93.1279984F)); + builder.AddCubicBezier(new Vector2(-387.040009F, -92.6719971F), new Vector2(-387.976013F, -92.4440002F), new Vector2(-389.056F, -92.4440002F)); + builder.AddCubicBezier(new Vector2(-390.112F, -92.4440002F), new Vector2(-391.053986F, -92.6780014F), new Vector2(-391.881989F, -93.1460037F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-386.140015F, -90.1760025F)); + builder.AddCubicBezier(new Vector2(-385.108002F, -90.7040024F), new Vector2(-384.286011F, -91.4420013F), new Vector2(-383.674011F, -92.3899994F)); + builder.AddCubicBezier(new Vector2(-383.062012F, -93.3379974F), new Vector2(-382.720001F, -94.435997F), new Vector2(-382.64801F, -95.6839981F)); + builder.AddLine(new Vector2(-382.64801F, -100.220001F)); + builder.AddCubicBezier(new Vector2(-382.720001F, -101.491997F), new Vector2(-383.056F, -102.601997F), new Vector2(-383.656006F, -103.550003F)); + builder.AddCubicBezier(new Vector2(-384.256012F, -104.498001F), new Vector2(-385.078003F, -105.236F), new Vector2(-386.122009F, -105.764F)); + builder.AddCubicBezier(new Vector2(-387.165985F, -106.292F), new Vector2(-388.359985F, -106.556F), new Vector2(-389.70401F, -106.556F)); + builder.AddCubicBezier(new Vector2(-391.23999F, -106.556F), new Vector2(-392.631989F, -106.178001F), new Vector2(-393.880005F, -105.421997F)); + builder.AddCubicBezier(new Vector2(-395.127991F, -104.666F), new Vector2(-396.105988F, -103.646004F), new Vector2(-396.813995F, -102.362F)); + builder.AddCubicBezier(new Vector2(-397.522003F, -101.078003F), new Vector2(-397.876007F, -99.6200027F), new Vector2(-397.876007F, -97.987999F)); + builder.AddCubicBezier(new Vector2(-397.876007F, -96.3560028F), new Vector2(-397.515991F, -94.8860016F), new Vector2(-396.79599F, -93.5780029F)); + builder.AddCubicBezier(new Vector2(-396.075989F, -92.2699966F), new Vector2(-395.097992F, -91.2440033F), new Vector2(-393.862F, -90.5F)); + builder.AddCubicBezier(new Vector2(-392.626007F, -89.7559967F), new Vector2(-391.227997F, -89.3840027F), new Vector2(-389.667999F, -89.3840027F)); + builder.AddCubicBezier(new Vector2(-388.347992F, -89.3840027F), new Vector2(-387.171997F, -89.6480026F), new Vector2(-386.140015F, -90.1760025F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-384.970001F, -82.5979996F)); + builder.AddCubicBezier(new Vector2(-383.614014F, -83.2819977F), new Vector2(-382.558014F, -84.2419968F), new Vector2(-381.802002F, -85.4779968F)); + builder.AddCubicBezier(new Vector2(-381.04599F, -86.7139969F), new Vector2(-380.667999F, -88.1480026F), new Vector2(-380.667999F, -89.7799988F)); + builder.AddLine(new Vector2(-380.667999F, -106.195999F)); + builder.AddLine(new Vector2(-383.90799F, -106.195999F)); + builder.AddLine(new Vector2(-383.90799F, -101.695999F)); + builder.AddLine(new Vector2(-383.332001F, -97.8799973F)); + builder.AddLine(new Vector2(-383.90799F, -94.0279999F)); + builder.AddLine(new Vector2(-383.90799F, -89.7799988F)); + builder.AddCubicBezier(new Vector2(-383.90799F, -88.2200012F), new Vector2(-384.424011F, -86.9779968F), new Vector2(-385.455994F, -86.0540009F)); + builder.AddCubicBezier(new Vector2(-386.488007F, -85.1299973F), new Vector2(-387.868011F, -84.6679993F), new Vector2(-389.596008F, -84.6679993F)); + builder.AddCubicBezier(new Vector2(-390.915985F, -84.6679993F), new Vector2(-392.056F, -84.9020004F), new Vector2(-393.015991F, -85.3700027F)); + builder.AddCubicBezier(new Vector2(-393.976013F, -85.8379974F), new Vector2(-394.803986F, -86.5159988F), new Vector2(-395.5F, -87.4039993F)); + builder.AddLine(new Vector2(-397.623993F, -85.2799988F)); + builder.AddCubicBezier(new Vector2(-396.783997F, -84.1039963F), new Vector2(-395.691986F, -83.1920013F), new Vector2(-394.347992F, -82.5439987F)); + builder.AddCubicBezier(new Vector2(-393.003998F, -81.8960037F), new Vector2(-391.444F, -81.5719986F), new Vector2(-389.667999F, -81.5719986F)); + builder.AddCubicBezier(new Vector2(-387.891998F, -81.5719986F), new Vector2(-386.325989F, -81.9140015F), new Vector2(-384.970001F, -82.5979996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0954() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-414.903992F, -102.344002F)); + builder.AddCubicBezier(new Vector2(-414.135986F, -103.112F), new Vector2(-413.152008F, -103.496002F), new Vector2(-411.951996F, -103.496002F)); + builder.AddCubicBezier(new Vector2(-411.376007F, -103.496002F), new Vector2(-410.872009F, -103.412003F), new Vector2(-410.440002F, -103.244003F)); + builder.AddCubicBezier(new Vector2(-410.007996F, -103.075996F), new Vector2(-409.612F, -102.800003F), new Vector2(-409.252014F, -102.416F)); + builder.AddLine(new Vector2(-407.127991F, -104.612F)); + builder.AddCubicBezier(new Vector2(-407.727997F, -105.307999F), new Vector2(-408.376007F, -105.806F), new Vector2(-409.071991F, -106.106003F)); + builder.AddCubicBezier(new Vector2(-409.768005F, -106.405998F), new Vector2(-410.548004F, -106.556F), new Vector2(-411.411987F, -106.556F)); + builder.AddCubicBezier(new Vector2(-413.308014F, -106.556F), new Vector2(-414.76001F, -105.907997F), new Vector2(-415.768005F, -104.612F)); + builder.AddCubicBezier(new Vector2(-416.776001F, -103.316002F), new Vector2(-417.279999F, -101.575996F), new Vector2(-417.279999F, -99.3919983F)); + builder.AddLine(new Vector2(-416.056F, -98.8160019F)); + builder.AddCubicBezier(new Vector2(-416.056F, -100.400002F), new Vector2(-415.671997F, -101.575996F), new Vector2(-414.903992F, -102.344002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-416.056F, -89.0960007F)); + builder.AddLine(new Vector2(-416.056F, -106.195999F)); + builder.AddLine(new Vector2(-419.29599F, -106.195999F)); + builder.AddLine(new Vector2(-419.29599F, -89.0960007F)); + builder.AddLine(new Vector2(-416.056F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0955() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-427.179993F, -89.7259979F)); + builder.AddCubicBezier(new Vector2(-426.075989F, -90.3379974F), new Vector2(-425.212006F, -91.2080002F), new Vector2(-424.588013F, -92.3359985F)); + builder.AddCubicBezier(new Vector2(-423.963989F, -93.4639969F), new Vector2(-423.652008F, -94.7720032F), new Vector2(-423.652008F, -96.2600021F)); + builder.AddLine(new Vector2(-423.652008F, -106.195999F)); + builder.AddLine(new Vector2(-426.891998F, -106.195999F)); + builder.AddLine(new Vector2(-426.891998F, -96.4039993F)); + builder.AddCubicBezier(new Vector2(-426.891998F, -94.987999F), new Vector2(-427.252014F, -93.8779984F), new Vector2(-427.971985F, -93.0739975F)); + builder.AddCubicBezier(new Vector2(-428.691986F, -92.2699966F), new Vector2(-429.687988F, -91.8679962F), new Vector2(-430.959991F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(-431.799988F, -91.8679962F), new Vector2(-432.532013F, -92.0479965F), new Vector2(-433.156006F, -92.4079971F)); + builder.AddCubicBezier(new Vector2(-433.779999F, -92.7679977F), new Vector2(-434.253998F, -93.2900009F), new Vector2(-434.578003F, -93.973999F)); + builder.AddCubicBezier(new Vector2(-434.902008F, -94.6579971F), new Vector2(-435.063995F, -95.4680023F), new Vector2(-435.063995F, -96.4039993F)); + builder.AddLine(new Vector2(-435.063995F, -106.195999F)); + builder.AddLine(new Vector2(-438.303986F, -106.195999F)); + builder.AddLine(new Vector2(-438.303986F, -96.2600021F)); + builder.AddCubicBezier(new Vector2(-438.303986F, -94.7720032F), new Vector2(-437.992004F, -93.4639969F), new Vector2(-437.368011F, -92.3359985F)); + builder.AddCubicBezier(new Vector2(-436.743988F, -91.2080002F), new Vector2(-435.873993F, -90.3379974F), new Vector2(-434.757996F, -89.7259979F)); + builder.AddCubicBezier(new Vector2(-433.641998F, -89.1139984F), new Vector2(-432.376007F, -88.8079987F), new Vector2(-430.959991F, -88.8079987F)); + builder.AddCubicBezier(new Vector2(-429.544006F, -88.8079987F), new Vector2(-428.283997F, -89.1139984F), new Vector2(-427.179993F, -89.7259979F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0956() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-453.279999F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(-454.119995F, -93.1279984F), new Vector2(-454.779999F, -93.8180008F), new Vector2(-455.26001F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(-455.73999F, -95.5699997F), new Vector2(-455.980011F, -96.5719986F), new Vector2(-455.980011F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-455.980011F, -98.8040009F), new Vector2(-455.73999F, -99.788002F), new Vector2(-455.26001F, -100.652F)); + builder.AddCubicBezier(new Vector2(-454.779999F, -101.515999F), new Vector2(-454.119995F, -102.194F), new Vector2(-453.279999F, -102.685997F)); + builder.AddCubicBezier(new Vector2(-452.440002F, -103.178001F), new Vector2(-451.492004F, -103.424004F), new Vector2(-450.436005F, -103.424004F)); + builder.AddCubicBezier(new Vector2(-449.332001F, -103.424004F), new Vector2(-448.365997F, -103.178001F), new Vector2(-447.537994F, -102.685997F)); + builder.AddCubicBezier(new Vector2(-446.709991F, -102.194F), new Vector2(-446.049988F, -101.515999F), new Vector2(-445.558014F, -100.652F)); + builder.AddCubicBezier(new Vector2(-445.06601F, -99.788002F), new Vector2(-444.820007F, -98.8040009F), new Vector2(-444.820007F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-444.820007F, -96.5719986F), new Vector2(-445.059998F, -95.5699997F), new Vector2(-445.540009F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(-446.019989F, -93.8180008F), new Vector2(-446.679993F, -93.1279984F), new Vector2(-447.519989F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(-448.359985F, -92.1200027F), new Vector2(-449.332001F, -91.8679962F), new Vector2(-450.436005F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(-451.492004F, -91.8679962F), new Vector2(-452.440002F, -92.1200027F), new Vector2(-453.279999F, -92.6240005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-445.881989F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(-444.526001F, -90.7160034F), new Vector2(-443.451996F, -91.7900009F), new Vector2(-442.660004F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(-441.868011F, -94.5019989F), new Vector2(-441.471985F, -96.0199966F), new Vector2(-441.471985F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-441.471985F, -99.3560028F), new Vector2(-441.868011F, -100.856003F), new Vector2(-442.660004F, -102.199997F)); + builder.AddCubicBezier(new Vector2(-443.451996F, -103.543999F), new Vector2(-444.526001F, -104.606003F), new Vector2(-445.881989F, -105.386002F)); + builder.AddCubicBezier(new Vector2(-447.238007F, -106.166F), new Vector2(-448.756012F, -106.556F), new Vector2(-450.436005F, -106.556F)); + builder.AddCubicBezier(new Vector2(-452.09201F, -106.556F), new Vector2(-453.59201F, -106.160004F), new Vector2(-454.936005F, -105.367996F)); + builder.AddCubicBezier(new Vector2(-456.279999F, -104.575996F), new Vector2(-457.347992F, -103.514F), new Vector2(-458.140015F, -102.181999F)); + builder.AddCubicBezier(new Vector2(-458.932007F, -100.849998F), new Vector2(-459.328003F, -99.3560028F), new Vector2(-459.328003F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-459.328003F, -96.0199966F), new Vector2(-458.932007F, -94.5019989F), new Vector2(-458.140015F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(-457.347992F, -91.7900009F), new Vector2(-456.279999F, -90.7160034F), new Vector2(-454.936005F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(-453.59201F, -89.1320038F), new Vector2(-452.09201F, -88.7360001F), new Vector2(-450.436005F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-448.756012F, -88.7360001F), new Vector2(-447.238007F, -89.1320038F), new Vector2(-445.881989F, -89.9240036F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0957() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-485.895996F, -89.0960007F)); + builder.AddLine(new Vector2(-480.928009F, -101.984001F)); + builder.AddLine(new Vector2(-482.115997F, -101.984001F)); + builder.AddLine(new Vector2(-477.18399F, -89.0960007F)); + builder.AddLine(new Vector2(-475.276001F, -89.0960007F)); + builder.AddLine(new Vector2(-468.544006F, -106.195999F)); + builder.AddLine(new Vector2(-471.928009F, -106.195999F)); + builder.AddLine(new Vector2(-476.824005F, -92.8759995F)); + builder.AddLine(new Vector2(-475.743988F, -92.8759995F)); + builder.AddLine(new Vector2(-480.604004F, -106.195999F)); + builder.AddLine(new Vector2(-482.476013F, -106.195999F)); + builder.AddLine(new Vector2(-487.335999F, -92.8759995F)); + builder.AddLine(new Vector2(-486.256012F, -92.8759995F)); + builder.AddLine(new Vector2(-491.152008F, -106.195999F)); + builder.AddLine(new Vector2(-494.536011F, -106.195999F)); + builder.AddLine(new Vector2(-487.803986F, -89.0960007F)); + builder.AddLine(new Vector2(-485.895996F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0958() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-507.567993F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(-508.40799F, -93.1279984F), new Vector2(-509.067993F, -93.8180008F), new Vector2(-509.548004F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(-510.028015F, -95.5699997F), new Vector2(-510.268005F, -96.5719986F), new Vector2(-510.268005F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-510.268005F, -98.8040009F), new Vector2(-510.028015F, -99.788002F), new Vector2(-509.548004F, -100.652F)); + builder.AddCubicBezier(new Vector2(-509.067993F, -101.515999F), new Vector2(-508.40799F, -102.194F), new Vector2(-507.567993F, -102.685997F)); + builder.AddCubicBezier(new Vector2(-506.727997F, -103.178001F), new Vector2(-505.779999F, -103.424004F), new Vector2(-504.723999F, -103.424004F)); + builder.AddCubicBezier(new Vector2(-503.619995F, -103.424004F), new Vector2(-502.653992F, -103.178001F), new Vector2(-501.825989F, -102.685997F)); + builder.AddCubicBezier(new Vector2(-500.997986F, -102.194F), new Vector2(-500.338013F, -101.515999F), new Vector2(-499.846008F, -100.652F)); + builder.AddCubicBezier(new Vector2(-499.354004F, -99.788002F), new Vector2(-499.108002F, -98.8040009F), new Vector2(-499.108002F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-499.108002F, -96.5719986F), new Vector2(-499.347992F, -95.5699997F), new Vector2(-499.828003F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(-500.308014F, -93.8180008F), new Vector2(-500.967987F, -93.1279984F), new Vector2(-501.808014F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(-502.64801F, -92.1200027F), new Vector2(-503.619995F, -91.8679962F), new Vector2(-504.723999F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(-505.779999F, -91.8679962F), new Vector2(-506.727997F, -92.1200027F), new Vector2(-507.567993F, -92.6240005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-500.170013F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(-498.813995F, -90.7160034F), new Vector2(-497.73999F, -91.7900009F), new Vector2(-496.947998F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(-496.156006F, -94.5019989F), new Vector2(-495.76001F, -96.0199966F), new Vector2(-495.76001F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-495.76001F, -99.3560028F), new Vector2(-496.156006F, -100.856003F), new Vector2(-496.947998F, -102.199997F)); + builder.AddCubicBezier(new Vector2(-497.73999F, -103.543999F), new Vector2(-498.813995F, -104.606003F), new Vector2(-500.170013F, -105.386002F)); + builder.AddCubicBezier(new Vector2(-501.526001F, -106.166F), new Vector2(-503.044006F, -106.556F), new Vector2(-504.723999F, -106.556F)); + builder.AddCubicBezier(new Vector2(-506.380005F, -106.556F), new Vector2(-507.880005F, -106.160004F), new Vector2(-509.223999F, -105.367996F)); + builder.AddCubicBezier(new Vector2(-510.567993F, -104.575996F), new Vector2(-511.635986F, -103.514F), new Vector2(-512.427979F, -102.181999F)); + builder.AddCubicBezier(new Vector2(-513.219971F, -100.849998F), new Vector2(-513.616028F, -99.3560028F), new Vector2(-513.616028F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-513.616028F, -96.0199966F), new Vector2(-513.219971F, -94.5019989F), new Vector2(-512.427979F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(-511.635986F, -91.7900009F), new Vector2(-510.567993F, -90.7160034F), new Vector2(-509.223999F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(-507.880005F, -89.1320038F), new Vector2(-506.380005F, -88.7360001F), new Vector2(-504.723999F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-503.044006F, -88.7360001F), new Vector2(-501.526001F, -89.1320038F), new Vector2(-500.170013F, -89.9240036F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0959() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-528.987976F, -89.0960007F)); + builder.AddLine(new Vector2(-528.987976F, -114.800003F)); + builder.AddLine(new Vector2(-532.228027F, -114.800003F)); + builder.AddLine(new Vector2(-532.228027F, -89.0960007F)); + builder.AddLine(new Vector2(-528.987976F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-516.892029F, -89.0960007F)); + builder.AddLine(new Vector2(-516.892029F, -99.7160034F)); + builder.AddCubicBezier(new Vector2(-516.892029F, -101.059998F), new Vector2(-517.179993F, -102.248001F), new Vector2(-517.755981F, -103.279999F)); + builder.AddCubicBezier(new Vector2(-518.33197F, -104.311996F), new Vector2(-519.117981F, -105.115997F), new Vector2(-520.114014F, -105.692001F)); + builder.AddCubicBezier(new Vector2(-521.109985F, -106.267998F), new Vector2(-522.255981F, -106.556F), new Vector2(-523.552002F, -106.556F)); + builder.AddCubicBezier(new Vector2(-524.848022F, -106.556F), new Vector2(-526.012024F, -106.262001F), new Vector2(-527.044006F, -105.674004F)); + builder.AddCubicBezier(new Vector2(-528.075989F, -105.085999F), new Vector2(-528.880005F, -104.288002F), new Vector2(-529.455994F, -103.279999F)); + builder.AddCubicBezier(new Vector2(-530.031982F, -102.272003F), new Vector2(-530.320007F, -101.120003F), new Vector2(-530.320007F, -99.8239975F)); + builder.AddLine(new Vector2(-528.987976F, -99.0680008F)); + builder.AddCubicBezier(new Vector2(-528.987976F, -99.9319992F), new Vector2(-528.796021F, -100.699997F), new Vector2(-528.411987F, -101.372002F)); + builder.AddCubicBezier(new Vector2(-528.028015F, -102.043999F), new Vector2(-527.5F, -102.571999F), new Vector2(-526.828003F, -102.956001F)); + builder.AddCubicBezier(new Vector2(-526.156006F, -103.339996F), new Vector2(-525.388F, -103.531998F), new Vector2(-524.523987F, -103.531998F)); + builder.AddCubicBezier(new Vector2(-523.228027F, -103.531998F), new Vector2(-522.177979F, -103.112F), new Vector2(-521.374023F, -102.272003F)); + builder.AddCubicBezier(new Vector2(-520.570007F, -101.431999F), new Vector2(-520.16803F, -100.363998F), new Vector2(-520.16803F, -99.0680008F)); + builder.AddLine(new Vector2(-520.16803F, -89.0960007F)); + builder.AddLine(new Vector2(-516.892029F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0960() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-545.026001F, -90.1399994F)); + builder.AddCubicBezier(new Vector2(-543.885986F, -91.0759964F), new Vector2(-543.315979F, -92.3479996F), new Vector2(-543.315979F, -93.9560013F)); + builder.AddCubicBezier(new Vector2(-543.315979F, -95.012001F), new Vector2(-543.538025F, -95.8639984F), new Vector2(-543.981995F, -96.512001F)); + builder.AddCubicBezier(new Vector2(-544.426025F, -97.1600037F), new Vector2(-544.995972F, -97.6760025F), new Vector2(-545.692017F, -98.0599976F)); + builder.AddCubicBezier(new Vector2(-546.388F, -98.4440002F), new Vector2(-547.119995F, -98.75F), new Vector2(-547.888F, -98.9779968F)); + builder.AddCubicBezier(new Vector2(-548.656006F, -99.2060013F), new Vector2(-549.393982F, -99.4280014F), new Vector2(-550.10199F, -99.6439972F)); + builder.AddCubicBezier(new Vector2(-550.809998F, -99.8600006F), new Vector2(-551.380005F, -100.124001F), new Vector2(-551.812012F, -100.435997F)); + builder.AddCubicBezier(new Vector2(-552.244019F, -100.748001F), new Vector2(-552.460022F, -101.192001F), new Vector2(-552.460022F, -101.767998F)); + builder.AddCubicBezier(new Vector2(-552.460022F, -102.32F), new Vector2(-552.213989F, -102.764F), new Vector2(-551.721985F, -103.099998F)); + builder.AddCubicBezier(new Vector2(-551.22998F, -103.435997F), new Vector2(-550.515991F, -103.603996F), new Vector2(-549.580017F, -103.603996F)); + builder.AddCubicBezier(new Vector2(-548.692017F, -103.603996F), new Vector2(-547.900024F, -103.435997F), new Vector2(-547.203979F, -103.099998F)); + builder.AddCubicBezier(new Vector2(-546.507996F, -102.764F), new Vector2(-545.90802F, -102.283997F), new Vector2(-545.403992F, -101.660004F)); + builder.AddLine(new Vector2(-543.315979F, -103.748001F)); + builder.AddCubicBezier(new Vector2(-543.987976F, -104.683998F), new Vector2(-544.846008F, -105.386002F), new Vector2(-545.890015F, -105.853996F)); + builder.AddCubicBezier(new Vector2(-546.934021F, -106.321999F), new Vector2(-548.127991F, -106.556F), new Vector2(-549.471985F, -106.556F)); + builder.AddCubicBezier(new Vector2(-550.744019F, -106.556F), new Vector2(-551.835999F, -106.351997F), new Vector2(-552.747986F, -105.944F)); + builder.AddCubicBezier(new Vector2(-553.659973F, -105.536003F), new Vector2(-554.362F, -104.954002F), new Vector2(-554.854004F, -104.197998F)); + builder.AddCubicBezier(new Vector2(-555.346008F, -103.442001F), new Vector2(-555.59198F, -102.547997F), new Vector2(-555.59198F, -101.515999F)); + builder.AddCubicBezier(new Vector2(-555.59198F, -100.484001F), new Vector2(-555.369995F, -99.6500015F), new Vector2(-554.926025F, -99.0139999F)); + builder.AddCubicBezier(new Vector2(-554.481995F, -98.3779984F), new Vector2(-553.911987F, -97.8799973F), new Vector2(-553.216003F, -97.5199966F)); + builder.AddCubicBezier(new Vector2(-552.52002F, -97.1600037F), new Vector2(-551.781982F, -96.8720016F), new Vector2(-551.002014F, -96.6559982F)); + builder.AddCubicBezier(new Vector2(-550.221985F, -96.4400024F), new Vector2(-549.484009F, -96.2180023F), new Vector2(-548.788025F, -95.9899979F)); + builder.AddCubicBezier(new Vector2(-548.09198F, -95.762001F), new Vector2(-547.521973F, -95.473999F), new Vector2(-547.078003F, -95.1259995F)); + builder.AddCubicBezier(new Vector2(-546.633972F, -94.7779999F), new Vector2(-546.411987F, -94.2919998F), new Vector2(-546.411987F, -93.6679993F)); + builder.AddCubicBezier(new Vector2(-546.411987F, -93.0439987F), new Vector2(-546.687988F, -92.5579987F), new Vector2(-547.23999F, -92.2099991F)); + builder.AddCubicBezier(new Vector2(-547.791992F, -91.8619995F), new Vector2(-548.572021F, -91.6880035F), new Vector2(-549.580017F, -91.6880035F)); + builder.AddCubicBezier(new Vector2(-550.588013F, -91.6880035F), new Vector2(-551.5F, -91.8740005F), new Vector2(-552.315979F, -92.2460022F)); + builder.AddCubicBezier(new Vector2(-553.132019F, -92.6179962F), new Vector2(-553.85199F, -93.1880035F), new Vector2(-554.476013F, -93.9560013F)); + builder.AddLine(new Vector2(-556.564026F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(-556.036011F, -91.2200012F), new Vector2(-555.41803F, -90.6620026F), new Vector2(-554.710022F, -90.1940002F)); + builder.AddCubicBezier(new Vector2(-554.002014F, -89.7259979F), new Vector2(-553.216003F, -89.3659973F), new Vector2(-552.35199F, -89.1139984F)); + builder.AddCubicBezier(new Vector2(-551.487976F, -88.8619995F), new Vector2(-550.575989F, -88.7360001F), new Vector2(-549.616028F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-547.695984F, -88.7360001F), new Vector2(-546.166016F, -89.2040024F), new Vector2(-545.026001F, -90.1399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0961() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-559.984009F, -110.209999F)); + builder.AddCubicBezier(new Vector2(-559.599976F, -110.606003F), new Vector2(-559.40802F, -111.103996F), new Vector2(-559.40802F, -111.704002F)); + builder.AddCubicBezier(new Vector2(-559.40802F, -112.279999F), new Vector2(-559.599976F, -112.765999F), new Vector2(-559.984009F, -113.162003F)); + builder.AddCubicBezier(new Vector2(-560.367981F, -113.557999F), new Vector2(-560.859985F, -113.755997F), new Vector2(-561.460022F, -113.755997F)); + builder.AddCubicBezier(new Vector2(-562.059998F, -113.755997F), new Vector2(-562.552002F, -113.557999F), new Vector2(-562.935974F, -113.162003F)); + builder.AddCubicBezier(new Vector2(-563.320007F, -112.765999F), new Vector2(-563.512024F, -112.279999F), new Vector2(-563.512024F, -111.704002F)); + builder.AddCubicBezier(new Vector2(-563.512024F, -111.103996F), new Vector2(-563.320007F, -110.606003F), new Vector2(-562.935974F, -110.209999F)); + builder.AddCubicBezier(new Vector2(-562.552002F, -109.814003F), new Vector2(-562.059998F, -109.615997F), new Vector2(-561.460022F, -109.615997F)); + builder.AddCubicBezier(new Vector2(-560.859985F, -109.615997F), new Vector2(-560.367981F, -109.814003F), new Vector2(-559.984009F, -110.209999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-559.840027F, -89.0960007F)); + builder.AddLine(new Vector2(-559.840027F, -106.195999F)); + builder.AddLine(new Vector2(-563.116028F, -106.195999F)); + builder.AddLine(new Vector2(-563.116028F, -89.0960007F)); + builder.AddLine(new Vector2(-559.840027F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0962() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-575.914001F, -90.1399994F)); + builder.AddCubicBezier(new Vector2(-574.773987F, -91.0759964F), new Vector2(-574.203979F, -92.3479996F), new Vector2(-574.203979F, -93.9560013F)); + builder.AddCubicBezier(new Vector2(-574.203979F, -95.012001F), new Vector2(-574.426025F, -95.8639984F), new Vector2(-574.869995F, -96.512001F)); + builder.AddCubicBezier(new Vector2(-575.314026F, -97.1600037F), new Vector2(-575.883972F, -97.6760025F), new Vector2(-576.580017F, -98.0599976F)); + builder.AddCubicBezier(new Vector2(-577.276001F, -98.4440002F), new Vector2(-578.007996F, -98.75F), new Vector2(-578.776001F, -98.9779968F)); + builder.AddCubicBezier(new Vector2(-579.544006F, -99.2060013F), new Vector2(-580.281982F, -99.4280014F), new Vector2(-580.98999F, -99.6439972F)); + builder.AddCubicBezier(new Vector2(-581.697998F, -99.8600006F), new Vector2(-582.268005F, -100.124001F), new Vector2(-582.700012F, -100.435997F)); + builder.AddCubicBezier(new Vector2(-583.132019F, -100.748001F), new Vector2(-583.348022F, -101.192001F), new Vector2(-583.348022F, -101.767998F)); + builder.AddCubicBezier(new Vector2(-583.348022F, -102.32F), new Vector2(-583.10199F, -102.764F), new Vector2(-582.609985F, -103.099998F)); + builder.AddCubicBezier(new Vector2(-582.117981F, -103.435997F), new Vector2(-581.403992F, -103.603996F), new Vector2(-580.468018F, -103.603996F)); + builder.AddCubicBezier(new Vector2(-579.580017F, -103.603996F), new Vector2(-578.788025F, -103.435997F), new Vector2(-578.09198F, -103.099998F)); + builder.AddCubicBezier(new Vector2(-577.395996F, -102.764F), new Vector2(-576.796021F, -102.283997F), new Vector2(-576.291992F, -101.660004F)); + builder.AddLine(new Vector2(-574.203979F, -103.748001F)); + builder.AddCubicBezier(new Vector2(-574.875977F, -104.683998F), new Vector2(-575.734009F, -105.386002F), new Vector2(-576.778015F, -105.853996F)); + builder.AddCubicBezier(new Vector2(-577.822021F, -106.321999F), new Vector2(-579.015991F, -106.556F), new Vector2(-580.359985F, -106.556F)); + builder.AddCubicBezier(new Vector2(-581.632019F, -106.556F), new Vector2(-582.723999F, -106.351997F), new Vector2(-583.635986F, -105.944F)); + builder.AddCubicBezier(new Vector2(-584.547974F, -105.536003F), new Vector2(-585.25F, -104.954002F), new Vector2(-585.742004F, -104.197998F)); + builder.AddCubicBezier(new Vector2(-586.234009F, -103.442001F), new Vector2(-586.47998F, -102.547997F), new Vector2(-586.47998F, -101.515999F)); + builder.AddCubicBezier(new Vector2(-586.47998F, -100.484001F), new Vector2(-586.257996F, -99.6500015F), new Vector2(-585.814026F, -99.0139999F)); + builder.AddCubicBezier(new Vector2(-585.369995F, -98.3779984F), new Vector2(-584.799988F, -97.8799973F), new Vector2(-584.104004F, -97.5199966F)); + builder.AddCubicBezier(new Vector2(-583.40802F, -97.1600037F), new Vector2(-582.669983F, -96.8720016F), new Vector2(-581.890015F, -96.6559982F)); + builder.AddCubicBezier(new Vector2(-581.109985F, -96.4400024F), new Vector2(-580.372009F, -96.2180023F), new Vector2(-579.676025F, -95.9899979F)); + builder.AddCubicBezier(new Vector2(-578.97998F, -95.762001F), new Vector2(-578.409973F, -95.473999F), new Vector2(-577.966003F, -95.1259995F)); + builder.AddCubicBezier(new Vector2(-577.521973F, -94.7779999F), new Vector2(-577.299988F, -94.2919998F), new Vector2(-577.299988F, -93.6679993F)); + builder.AddCubicBezier(new Vector2(-577.299988F, -93.0439987F), new Vector2(-577.575989F, -92.5579987F), new Vector2(-578.127991F, -92.2099991F)); + builder.AddCubicBezier(new Vector2(-578.679993F, -91.8619995F), new Vector2(-579.460022F, -91.6880035F), new Vector2(-580.468018F, -91.6880035F)); + builder.AddCubicBezier(new Vector2(-581.476013F, -91.6880035F), new Vector2(-582.388F, -91.8740005F), new Vector2(-583.203979F, -92.2460022F)); + builder.AddCubicBezier(new Vector2(-584.02002F, -92.6179962F), new Vector2(-584.73999F, -93.1880035F), new Vector2(-585.364014F, -93.9560013F)); + builder.AddLine(new Vector2(-587.452026F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(-586.924011F, -91.2200012F), new Vector2(-586.30603F, -90.6620026F), new Vector2(-585.598022F, -90.1940002F)); + builder.AddCubicBezier(new Vector2(-584.890015F, -89.7259979F), new Vector2(-584.104004F, -89.3659973F), new Vector2(-583.23999F, -89.1139984F)); + builder.AddCubicBezier(new Vector2(-582.375977F, -88.8619995F), new Vector2(-581.463989F, -88.7360001F), new Vector2(-580.504028F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-578.583984F, -88.7360001F), new Vector2(-577.054016F, -89.2040024F), new Vector2(-575.914001F, -90.1399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0963() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-590.872009F, -110.209999F)); + builder.AddCubicBezier(new Vector2(-590.487976F, -110.606003F), new Vector2(-590.296021F, -111.103996F), new Vector2(-590.296021F, -111.704002F)); + builder.AddCubicBezier(new Vector2(-590.296021F, -112.279999F), new Vector2(-590.487976F, -112.765999F), new Vector2(-590.872009F, -113.162003F)); + builder.AddCubicBezier(new Vector2(-591.255981F, -113.557999F), new Vector2(-591.747986F, -113.755997F), new Vector2(-592.348022F, -113.755997F)); + builder.AddCubicBezier(new Vector2(-592.947998F, -113.755997F), new Vector2(-593.440002F, -113.557999F), new Vector2(-593.823975F, -113.162003F)); + builder.AddCubicBezier(new Vector2(-594.208008F, -112.765999F), new Vector2(-594.400024F, -112.279999F), new Vector2(-594.400024F, -111.704002F)); + builder.AddCubicBezier(new Vector2(-594.400024F, -111.103996F), new Vector2(-594.208008F, -110.606003F), new Vector2(-593.823975F, -110.209999F)); + builder.AddCubicBezier(new Vector2(-593.440002F, -109.814003F), new Vector2(-592.947998F, -109.615997F), new Vector2(-592.348022F, -109.615997F)); + builder.AddCubicBezier(new Vector2(-591.747986F, -109.615997F), new Vector2(-591.255981F, -109.814003F), new Vector2(-590.872009F, -110.209999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-590.728027F, -89.0960007F)); + builder.AddLine(new Vector2(-590.728027F, -106.195999F)); + builder.AddLine(new Vector2(-594.004028F, -106.195999F)); + builder.AddLine(new Vector2(-594.004028F, -89.0960007F)); + builder.AddLine(new Vector2(-590.728027F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0964() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-610.492004F, -89.0960007F)); + builder.AddLine(new Vector2(-610.492004F, -114.800003F)); + builder.AddLine(new Vector2(-613.731995F, -114.800003F)); + builder.AddLine(new Vector2(-613.731995F, -89.0960007F)); + builder.AddLine(new Vector2(-610.492004F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-598.395996F, -89.0960007F)); + builder.AddLine(new Vector2(-598.395996F, -99.7160034F)); + builder.AddCubicBezier(new Vector2(-598.395996F, -101.059998F), new Vector2(-598.684021F, -102.248001F), new Vector2(-599.26001F, -103.279999F)); + builder.AddCubicBezier(new Vector2(-599.835999F, -104.311996F), new Vector2(-600.622009F, -105.115997F), new Vector2(-601.617981F, -105.692001F)); + builder.AddCubicBezier(new Vector2(-602.614014F, -106.267998F), new Vector2(-603.76001F, -106.556F), new Vector2(-605.05603F, -106.556F)); + builder.AddCubicBezier(new Vector2(-606.35199F, -106.556F), new Vector2(-607.515991F, -106.262001F), new Vector2(-608.547974F, -105.674004F)); + builder.AddCubicBezier(new Vector2(-609.580017F, -105.085999F), new Vector2(-610.383972F, -104.288002F), new Vector2(-610.960022F, -103.279999F)); + builder.AddCubicBezier(new Vector2(-611.536011F, -102.272003F), new Vector2(-611.823975F, -101.120003F), new Vector2(-611.823975F, -99.8239975F)); + builder.AddLine(new Vector2(-610.492004F, -99.0680008F)); + builder.AddCubicBezier(new Vector2(-610.492004F, -99.9319992F), new Vector2(-610.299988F, -100.699997F), new Vector2(-609.916016F, -101.372002F)); + builder.AddCubicBezier(new Vector2(-609.531982F, -102.043999F), new Vector2(-609.004028F, -102.571999F), new Vector2(-608.33197F, -102.956001F)); + builder.AddCubicBezier(new Vector2(-607.659973F, -103.339996F), new Vector2(-606.892029F, -103.531998F), new Vector2(-606.028015F, -103.531998F)); + builder.AddCubicBezier(new Vector2(-604.731995F, -103.531998F), new Vector2(-603.682007F, -103.112F), new Vector2(-602.877991F, -102.272003F)); + builder.AddCubicBezier(new Vector2(-602.073975F, -101.431999F), new Vector2(-601.671997F, -100.363998F), new Vector2(-601.671997F, -99.0680008F)); + builder.AddLine(new Vector2(-601.671997F, -89.0960007F)); + builder.AddLine(new Vector2(-598.395996F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0965() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-617.187988F, -110.984001F)); + builder.AddLine(new Vector2(-617.187988F, -114.080002F)); + builder.AddLine(new Vector2(-637.528015F, -114.080002F)); + builder.AddLine(new Vector2(-637.528015F, -110.984001F)); + builder.AddLine(new Vector2(-617.187988F, -110.984001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-625.64801F, -89.0960007F)); + builder.AddLine(new Vector2(-625.64801F, -113.360001F)); + builder.AddLine(new Vector2(-629.067993F, -113.360001F)); + builder.AddLine(new Vector2(-629.067993F, -89.0960007F)); + builder.AddLine(new Vector2(-625.64801F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0966() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-649.030029F, -89.4380035F)); + builder.AddCubicBezier(new Vector2(-648.585999F, -89.9059982F), new Vector2(-648.364014F, -90.4639969F), new Vector2(-648.364014F, -91.1119995F)); + builder.AddCubicBezier(new Vector2(-648.364014F, -91.7839966F), new Vector2(-648.585999F, -92.3420029F), new Vector2(-649.030029F, -92.7860031F)); + builder.AddCubicBezier(new Vector2(-649.473999F, -93.2300034F), new Vector2(-650.031982F, -93.4520035F), new Vector2(-650.703979F, -93.4520035F)); + builder.AddCubicBezier(new Vector2(-651.400024F, -93.4520035F), new Vector2(-651.963989F, -93.2300034F), new Vector2(-652.395996F, -92.7860031F)); + builder.AddCubicBezier(new Vector2(-652.828003F, -92.3420029F), new Vector2(-653.044006F, -91.7839966F), new Vector2(-653.044006F, -91.1119995F)); + builder.AddCubicBezier(new Vector2(-653.044006F, -90.4639969F), new Vector2(-652.828003F, -89.9059982F), new Vector2(-652.395996F, -89.4380035F)); + builder.AddCubicBezier(new Vector2(-651.963989F, -88.9700012F), new Vector2(-651.400024F, -88.7360001F), new Vector2(-650.703979F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-650.031982F, -88.7360001F), new Vector2(-649.473999F, -88.9700012F), new Vector2(-649.030029F, -89.4380035F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0967() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-669.478027F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(-670.30603F, -93.6139984F), new Vector2(-670.953979F, -94.2679977F), new Vector2(-671.421997F, -95.1080017F)); + builder.AddCubicBezier(new Vector2(-671.890015F, -95.947998F), new Vector2(-672.124023F, -96.9079971F), new Vector2(-672.124023F, -97.987999F)); + builder.AddCubicBezier(new Vector2(-672.124023F, -99.0680008F), new Vector2(-671.890015F, -100.022003F), new Vector2(-671.421997F, -100.849998F)); + builder.AddCubicBezier(new Vector2(-670.953979F, -101.678001F), new Vector2(-670.312012F, -102.325996F), new Vector2(-669.495972F, -102.793999F)); + builder.AddCubicBezier(new Vector2(-668.679993F, -103.262001F), new Vector2(-667.731995F, -103.496002F), new Vector2(-666.651978F, -103.496002F)); + builder.AddCubicBezier(new Vector2(-665.596008F, -103.496002F), new Vector2(-664.666016F, -103.262001F), new Vector2(-663.862F, -102.793999F)); + builder.AddCubicBezier(new Vector2(-663.057983F, -102.325996F), new Vector2(-662.434021F, -101.678001F), new Vector2(-661.98999F, -100.849998F)); + builder.AddCubicBezier(new Vector2(-661.546021F, -100.022003F), new Vector2(-661.323975F, -99.0559998F), new Vector2(-661.323975F, -97.9520035F)); + builder.AddCubicBezier(new Vector2(-661.323975F, -96.8479996F), new Vector2(-661.546021F, -95.8820038F), new Vector2(-661.98999F, -95.0540009F)); + builder.AddCubicBezier(new Vector2(-662.434021F, -94.2259979F), new Vector2(-663.052002F, -93.5839996F), new Vector2(-663.843994F, -93.1279984F)); + builder.AddCubicBezier(new Vector2(-664.635986F, -92.6719971F), new Vector2(-665.572021F, -92.4440002F), new Vector2(-666.651978F, -92.4440002F)); + builder.AddCubicBezier(new Vector2(-667.708008F, -92.4440002F), new Vector2(-668.650024F, -92.6780014F), new Vector2(-669.478027F, -93.1460037F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-663.736023F, -90.1760025F)); + builder.AddCubicBezier(new Vector2(-662.703979F, -90.7040024F), new Vector2(-661.882019F, -91.4420013F), new Vector2(-661.27002F, -92.3899994F)); + builder.AddCubicBezier(new Vector2(-660.65802F, -93.3379974F), new Vector2(-660.315979F, -94.435997F), new Vector2(-660.244019F, -95.6839981F)); + builder.AddLine(new Vector2(-660.244019F, -100.220001F)); + builder.AddCubicBezier(new Vector2(-660.315979F, -101.491997F), new Vector2(-660.651978F, -102.601997F), new Vector2(-661.252014F, -103.550003F)); + builder.AddCubicBezier(new Vector2(-661.85199F, -104.498001F), new Vector2(-662.674011F, -105.236F), new Vector2(-663.718018F, -105.764F)); + builder.AddCubicBezier(new Vector2(-664.762024F, -106.292F), new Vector2(-665.955994F, -106.556F), new Vector2(-667.299988F, -106.556F)); + builder.AddCubicBezier(new Vector2(-668.835999F, -106.556F), new Vector2(-670.228027F, -106.178001F), new Vector2(-671.476013F, -105.421997F)); + builder.AddCubicBezier(new Vector2(-672.723999F, -104.666F), new Vector2(-673.702026F, -103.646004F), new Vector2(-674.409973F, -102.362F)); + builder.AddCubicBezier(new Vector2(-675.117981F, -101.078003F), new Vector2(-675.471985F, -99.6200027F), new Vector2(-675.471985F, -97.987999F)); + builder.AddCubicBezier(new Vector2(-675.471985F, -96.3560028F), new Vector2(-675.112F, -94.8860016F), new Vector2(-674.392029F, -93.5780029F)); + builder.AddCubicBezier(new Vector2(-673.671997F, -92.2699966F), new Vector2(-672.69397F, -91.2440033F), new Vector2(-671.458008F, -90.5F)); + builder.AddCubicBezier(new Vector2(-670.221985F, -89.7559967F), new Vector2(-668.823975F, -89.3840027F), new Vector2(-667.263977F, -89.3840027F)); + builder.AddCubicBezier(new Vector2(-665.94397F, -89.3840027F), new Vector2(-664.768005F, -89.6480026F), new Vector2(-663.736023F, -90.1760025F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-662.565979F, -82.5979996F)); + builder.AddCubicBezier(new Vector2(-661.210022F, -83.2819977F), new Vector2(-660.153992F, -84.2419968F), new Vector2(-659.39801F, -85.4779968F)); + builder.AddCubicBezier(new Vector2(-658.642029F, -86.7139969F), new Vector2(-658.263977F, -88.1480026F), new Vector2(-658.263977F, -89.7799988F)); + builder.AddLine(new Vector2(-658.263977F, -106.195999F)); + builder.AddLine(new Vector2(-661.504028F, -106.195999F)); + builder.AddLine(new Vector2(-661.504028F, -101.695999F)); + builder.AddLine(new Vector2(-660.927979F, -97.8799973F)); + builder.AddLine(new Vector2(-661.504028F, -94.0279999F)); + builder.AddLine(new Vector2(-661.504028F, -89.7799988F)); + builder.AddCubicBezier(new Vector2(-661.504028F, -88.2200012F), new Vector2(-662.02002F, -86.9779968F), new Vector2(-663.052002F, -86.0540009F)); + builder.AddCubicBezier(new Vector2(-664.083984F, -85.1299973F), new Vector2(-665.463989F, -84.6679993F), new Vector2(-667.192017F, -84.6679993F)); + builder.AddCubicBezier(new Vector2(-668.512024F, -84.6679993F), new Vector2(-669.651978F, -84.9020004F), new Vector2(-670.612F, -85.3700027F)); + builder.AddCubicBezier(new Vector2(-671.572021F, -85.8379974F), new Vector2(-672.400024F, -86.5159988F), new Vector2(-673.096008F, -87.4039993F)); + builder.AddLine(new Vector2(-675.219971F, -85.2799988F)); + builder.AddCubicBezier(new Vector2(-674.380005F, -84.1039963F), new Vector2(-673.288025F, -83.1920013F), new Vector2(-671.94397F, -82.5439987F)); + builder.AddCubicBezier(new Vector2(-670.599976F, -81.8960037F), new Vector2(-669.039978F, -81.5719986F), new Vector2(-667.263977F, -81.5719986F)); + builder.AddCubicBezier(new Vector2(-665.487976F, -81.5719986F), new Vector2(-663.921997F, -81.9140015F), new Vector2(-662.565979F, -82.5979996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0968() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-690.843994F, -89.0960007F)); + builder.AddLine(new Vector2(-690.843994F, -106.195999F)); + builder.AddLine(new Vector2(-694.083984F, -106.195999F)); + builder.AddLine(new Vector2(-694.083984F, -89.0960007F)); + builder.AddLine(new Vector2(-690.843994F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-678.747986F, -89.0960007F)); + builder.AddLine(new Vector2(-678.747986F, -99.7160034F)); + builder.AddCubicBezier(new Vector2(-678.747986F, -100.891998F), new Vector2(-679.036011F, -102.001999F), new Vector2(-679.612F, -103.045998F)); + builder.AddCubicBezier(new Vector2(-680.187988F, -104.089996F), new Vector2(-680.973999F, -104.935997F), new Vector2(-681.969971F, -105.584F)); + builder.AddCubicBezier(new Vector2(-682.966003F, -106.232002F), new Vector2(-684.112F, -106.556F), new Vector2(-685.40802F, -106.556F)); + builder.AddCubicBezier(new Vector2(-686.703979F, -106.556F), new Vector2(-687.867981F, -106.262001F), new Vector2(-688.900024F, -105.674004F)); + builder.AddCubicBezier(new Vector2(-689.932007F, -105.085999F), new Vector2(-690.736023F, -104.288002F), new Vector2(-691.312012F, -103.279999F)); + builder.AddCubicBezier(new Vector2(-691.888F, -102.272003F), new Vector2(-692.176025F, -101.120003F), new Vector2(-692.176025F, -99.8239975F)); + builder.AddLine(new Vector2(-690.843994F, -99.0680008F)); + builder.AddCubicBezier(new Vector2(-690.843994F, -99.9319992F), new Vector2(-690.651978F, -100.699997F), new Vector2(-690.268005F, -101.372002F)); + builder.AddCubicBezier(new Vector2(-689.883972F, -102.043999F), new Vector2(-689.356018F, -102.571999F), new Vector2(-688.684021F, -102.956001F)); + builder.AddCubicBezier(new Vector2(-688.012024F, -103.339996F), new Vector2(-687.244019F, -103.531998F), new Vector2(-686.380005F, -103.531998F)); + builder.AddCubicBezier(new Vector2(-685.083984F, -103.531998F), new Vector2(-684.033997F, -103.112F), new Vector2(-683.22998F, -102.272003F)); + builder.AddCubicBezier(new Vector2(-682.426025F, -101.431999F), new Vector2(-682.023987F, -100.363998F), new Vector2(-682.023987F, -99.0680008F)); + builder.AddLine(new Vector2(-682.023987F, -89.0960007F)); + builder.AddLine(new Vector2(-678.747986F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0969() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-699.015991F, -110.209999F)); + builder.AddCubicBezier(new Vector2(-698.632019F, -110.606003F), new Vector2(-698.440002F, -111.103996F), new Vector2(-698.440002F, -111.704002F)); + builder.AddCubicBezier(new Vector2(-698.440002F, -112.279999F), new Vector2(-698.632019F, -112.765999F), new Vector2(-699.015991F, -113.162003F)); + builder.AddCubicBezier(new Vector2(-699.400024F, -113.557999F), new Vector2(-699.892029F, -113.755997F), new Vector2(-700.492004F, -113.755997F)); + builder.AddCubicBezier(new Vector2(-701.09198F, -113.755997F), new Vector2(-701.583984F, -113.557999F), new Vector2(-701.968018F, -113.162003F)); + builder.AddCubicBezier(new Vector2(-702.35199F, -112.765999F), new Vector2(-702.544006F, -112.279999F), new Vector2(-702.544006F, -111.704002F)); + builder.AddCubicBezier(new Vector2(-702.544006F, -111.103996F), new Vector2(-702.35199F, -110.606003F), new Vector2(-701.968018F, -110.209999F)); + builder.AddCubicBezier(new Vector2(-701.583984F, -109.814003F), new Vector2(-701.09198F, -109.615997F), new Vector2(-700.492004F, -109.615997F)); + builder.AddCubicBezier(new Vector2(-699.892029F, -109.615997F), new Vector2(-699.400024F, -109.814003F), new Vector2(-699.015991F, -110.209999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-698.872009F, -89.0960007F)); + builder.AddLine(new Vector2(-698.872009F, -106.195999F)); + builder.AddLine(new Vector2(-702.14801F, -106.195999F)); + builder.AddLine(new Vector2(-702.14801F, -89.0960007F)); + builder.AddLine(new Vector2(-698.872009F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0970() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-706.864014F, -114.800003F)); + builder.AddLine(new Vector2(-710.140015F, -114.800003F)); + builder.AddLine(new Vector2(-710.140015F, -102.019997F)); + builder.AddLine(new Vector2(-709.528015F, -97.8799973F)); + builder.AddLine(new Vector2(-710.140015F, -93.7040024F)); + builder.AddLine(new Vector2(-710.140015F, -89.0960007F)); + builder.AddLine(new Vector2(-706.864014F, -89.0960007F)); + builder.AddLine(new Vector2(-706.864014F, -114.800003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-718.185974F, -92.5339966F)); + builder.AddCubicBezier(new Vector2(-719.013977F, -93.026001F), new Vector2(-719.661987F, -93.7160034F), new Vector2(-720.130005F, -94.6039963F)); + builder.AddCubicBezier(new Vector2(-720.598022F, -95.4919968F), new Vector2(-720.83197F, -96.512001F), new Vector2(-720.83197F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(-720.83197F, -98.8160019F), new Vector2(-720.598022F, -99.8300018F), new Vector2(-720.130005F, -100.706001F)); + builder.AddCubicBezier(new Vector2(-719.661987F, -101.582001F), new Vector2(-719.02002F, -102.265999F), new Vector2(-718.203979F, -102.758003F)); + builder.AddCubicBezier(new Vector2(-717.388F, -103.25F), new Vector2(-716.440002F, -103.496002F), new Vector2(-715.359985F, -103.496002F)); + builder.AddCubicBezier(new Vector2(-714.280029F, -103.496002F), new Vector2(-713.33197F, -103.244003F), new Vector2(-712.515991F, -102.739998F)); + builder.AddCubicBezier(new Vector2(-711.700012F, -102.236F), new Vector2(-711.064026F, -101.545998F), new Vector2(-710.607971F, -100.669998F)); + builder.AddCubicBezier(new Vector2(-710.151978F, -99.7939987F), new Vector2(-709.924011F, -98.7799988F), new Vector2(-709.924011F, -97.6279984F)); + builder.AddCubicBezier(new Vector2(-709.924011F, -96.5F), new Vector2(-710.151978F, -95.4980011F), new Vector2(-710.607971F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(-711.064026F, -93.7460022F), new Vector2(-711.700012F, -93.0559998F), new Vector2(-712.515991F, -92.552002F)); + builder.AddCubicBezier(new Vector2(-713.33197F, -92.0479965F), new Vector2(-714.280029F, -91.7959976F), new Vector2(-715.359985F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(-716.416016F, -91.7959976F), new Vector2(-717.357971F, -92.0419998F), new Vector2(-718.185974F, -92.5339966F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-712.372009F, -89.5459976F)); + builder.AddCubicBezier(new Vector2(-711.340027F, -90.0859985F), new Vector2(-710.512024F, -90.8359985F), new Vector2(-709.888F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(-709.263977F, -92.7559967F), new Vector2(-708.916016F, -93.8479996F), new Vector2(-708.843994F, -95.0719986F)); + builder.AddLine(new Vector2(-708.843994F, -100.220001F)); + builder.AddCubicBezier(new Vector2(-708.916016F, -101.468002F), new Vector2(-709.27002F, -102.566002F), new Vector2(-709.906006F, -103.514F)); + builder.AddCubicBezier(new Vector2(-710.541992F, -104.461998F), new Vector2(-711.375977F, -105.206001F), new Vector2(-712.40802F, -105.746002F)); + builder.AddCubicBezier(new Vector2(-713.440002F, -106.286003F), new Vector2(-714.604004F, -106.556F), new Vector2(-715.900024F, -106.556F)); + builder.AddCubicBezier(new Vector2(-717.460022F, -106.556F), new Vector2(-718.864014F, -106.160004F), new Vector2(-720.112F, -105.367996F)); + builder.AddCubicBezier(new Vector2(-721.359985F, -104.575996F), new Vector2(-722.349976F, -103.508003F), new Vector2(-723.08197F, -102.164001F)); + builder.AddCubicBezier(new Vector2(-723.814026F, -100.82F), new Vector2(-724.179993F, -99.3079987F), new Vector2(-724.179993F, -97.6279984F)); + builder.AddCubicBezier(new Vector2(-724.179993F, -95.947998F), new Vector2(-723.814026F, -94.435997F), new Vector2(-723.08197F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(-722.349976F, -91.7480011F), new Vector2(-721.359985F, -90.685997F), new Vector2(-720.112F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(-718.864014F, -89.1259995F), new Vector2(-717.460022F, -88.7360001F), new Vector2(-715.900024F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-714.580017F, -88.7360001F), new Vector2(-713.403992F, -89.0059967F), new Vector2(-712.372009F, -89.5459976F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0971() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-727.815979F, -114.800003F)); + builder.AddLine(new Vector2(-731.09198F, -114.800003F)); + builder.AddLine(new Vector2(-731.09198F, -102.019997F)); + builder.AddLine(new Vector2(-730.47998F, -97.8799973F)); + builder.AddLine(new Vector2(-731.09198F, -93.7040024F)); + builder.AddLine(new Vector2(-731.09198F, -89.0960007F)); + builder.AddLine(new Vector2(-727.815979F, -89.0960007F)); + builder.AddLine(new Vector2(-727.815979F, -114.800003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-739.138F, -92.5339966F)); + builder.AddCubicBezier(new Vector2(-739.966003F, -93.026001F), new Vector2(-740.614014F, -93.7160034F), new Vector2(-741.08197F, -94.6039963F)); + builder.AddCubicBezier(new Vector2(-741.549988F, -95.4919968F), new Vector2(-741.783997F, -96.512001F), new Vector2(-741.783997F, -97.6640015F)); + builder.AddCubicBezier(new Vector2(-741.783997F, -98.8160019F), new Vector2(-741.549988F, -99.8300018F), new Vector2(-741.08197F, -100.706001F)); + builder.AddCubicBezier(new Vector2(-740.614014F, -101.582001F), new Vector2(-739.971985F, -102.265999F), new Vector2(-739.156006F, -102.758003F)); + builder.AddCubicBezier(new Vector2(-738.340027F, -103.25F), new Vector2(-737.392029F, -103.496002F), new Vector2(-736.312012F, -103.496002F)); + builder.AddCubicBezier(new Vector2(-735.231995F, -103.496002F), new Vector2(-734.283997F, -103.244003F), new Vector2(-733.468018F, -102.739998F)); + builder.AddCubicBezier(new Vector2(-732.651978F, -102.236F), new Vector2(-732.015991F, -101.545998F), new Vector2(-731.559998F, -100.669998F)); + builder.AddCubicBezier(new Vector2(-731.104004F, -99.7939987F), new Vector2(-730.875977F, -98.7799988F), new Vector2(-730.875977F, -97.6279984F)); + builder.AddCubicBezier(new Vector2(-730.875977F, -96.5F), new Vector2(-731.104004F, -95.4980011F), new Vector2(-731.559998F, -94.6220016F)); + builder.AddCubicBezier(new Vector2(-732.015991F, -93.7460022F), new Vector2(-732.651978F, -93.0559998F), new Vector2(-733.468018F, -92.552002F)); + builder.AddCubicBezier(new Vector2(-734.283997F, -92.0479965F), new Vector2(-735.231995F, -91.7959976F), new Vector2(-736.312012F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(-737.367981F, -91.7959976F), new Vector2(-738.309998F, -92.0419998F), new Vector2(-739.138F, -92.5339966F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-733.323975F, -89.5459976F)); + builder.AddCubicBezier(new Vector2(-732.291992F, -90.0859985F), new Vector2(-731.463989F, -90.8359985F), new Vector2(-730.840027F, -91.7959976F)); + builder.AddCubicBezier(new Vector2(-730.216003F, -92.7559967F), new Vector2(-729.867981F, -93.8479996F), new Vector2(-729.796021F, -95.0719986F)); + builder.AddLine(new Vector2(-729.796021F, -100.220001F)); + builder.AddCubicBezier(new Vector2(-729.867981F, -101.468002F), new Vector2(-730.221985F, -102.566002F), new Vector2(-730.857971F, -103.514F)); + builder.AddCubicBezier(new Vector2(-731.494019F, -104.461998F), new Vector2(-732.328003F, -105.206001F), new Vector2(-733.359985F, -105.746002F)); + builder.AddCubicBezier(new Vector2(-734.392029F, -106.286003F), new Vector2(-735.55603F, -106.556F), new Vector2(-736.85199F, -106.556F)); + builder.AddCubicBezier(new Vector2(-738.411987F, -106.556F), new Vector2(-739.815979F, -106.160004F), new Vector2(-741.064026F, -105.367996F)); + builder.AddCubicBezier(new Vector2(-742.312012F, -104.575996F), new Vector2(-743.302002F, -103.508003F), new Vector2(-744.033997F, -102.164001F)); + builder.AddCubicBezier(new Vector2(-744.765991F, -100.82F), new Vector2(-745.132019F, -99.3079987F), new Vector2(-745.132019F, -97.6279984F)); + builder.AddCubicBezier(new Vector2(-745.132019F, -95.947998F), new Vector2(-744.765991F, -94.435997F), new Vector2(-744.033997F, -93.0920029F)); + builder.AddCubicBezier(new Vector2(-743.302002F, -91.7480011F), new Vector2(-742.312012F, -90.685997F), new Vector2(-741.064026F, -89.9059982F)); + builder.AddCubicBezier(new Vector2(-739.815979F, -89.1259995F), new Vector2(-738.411987F, -88.7360001F), new Vector2(-736.85199F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-735.531982F, -88.7360001F), new Vector2(-734.356018F, -89.0059967F), new Vector2(-733.323975F, -89.5459976F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0972() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-748.984009F, -110.209999F)); + builder.AddCubicBezier(new Vector2(-748.599976F, -110.606003F), new Vector2(-748.40802F, -111.103996F), new Vector2(-748.40802F, -111.704002F)); + builder.AddCubicBezier(new Vector2(-748.40802F, -112.279999F), new Vector2(-748.599976F, -112.765999F), new Vector2(-748.984009F, -113.162003F)); + builder.AddCubicBezier(new Vector2(-749.367981F, -113.557999F), new Vector2(-749.859985F, -113.755997F), new Vector2(-750.460022F, -113.755997F)); + builder.AddCubicBezier(new Vector2(-751.059998F, -113.755997F), new Vector2(-751.552002F, -113.557999F), new Vector2(-751.935974F, -113.162003F)); + builder.AddCubicBezier(new Vector2(-752.320007F, -112.765999F), new Vector2(-752.512024F, -112.279999F), new Vector2(-752.512024F, -111.704002F)); + builder.AddCubicBezier(new Vector2(-752.512024F, -111.103996F), new Vector2(-752.320007F, -110.606003F), new Vector2(-751.935974F, -110.209999F)); + builder.AddCubicBezier(new Vector2(-751.552002F, -109.814003F), new Vector2(-751.059998F, -109.615997F), new Vector2(-750.460022F, -109.615997F)); + builder.AddCubicBezier(new Vector2(-749.859985F, -109.615997F), new Vector2(-749.367981F, -109.814003F), new Vector2(-748.984009F, -110.209999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-748.840027F, -89.0960007F)); + builder.AddLine(new Vector2(-748.840027F, -106.195999F)); + builder.AddLine(new Vector2(-752.116028F, -106.195999F)); + builder.AddLine(new Vector2(-752.116028F, -89.0960007F)); + builder.AddLine(new Vector2(-748.840027F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0973() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-766.156006F, -89.0960007F)); + builder.AddLine(new Vector2(-766.156006F, -114.800003F)); + builder.AddLine(new Vector2(-769.395996F, -114.800003F)); + builder.AddLine(new Vector2(-769.395996F, -89.0960007F)); + builder.AddLine(new Vector2(-766.156006F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-754.276001F, -89.0960007F)); + builder.AddLine(new Vector2(-763.276001F, -98.8519974F)); + builder.AddLine(new Vector2(-763.419983F, -96.9800034F)); + builder.AddLine(new Vector2(-754.599976F, -106.195999F)); + builder.AddLine(new Vector2(-758.559998F, -106.195999F)); + builder.AddLine(new Vector2(-766.44397F, -97.8440018F)); + builder.AddLine(new Vector2(-758.452026F, -89.0960007F)); + builder.AddLine(new Vector2(-754.276001F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0974() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-780.015991F, -103.244003F)); + builder.AddLine(new Vector2(-780.015991F, -106.195999F)); + builder.AddLine(new Vector2(-791.679993F, -106.195999F)); + builder.AddLine(new Vector2(-791.679993F, -103.244003F)); + builder.AddLine(new Vector2(-780.015991F, -103.244003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-784.228027F, -89.0960007F)); + builder.AddLine(new Vector2(-784.228027F, -113.360001F)); + builder.AddLine(new Vector2(-787.468018F, -113.360001F)); + builder.AddLine(new Vector2(-787.468018F, -89.0960007F)); + builder.AddLine(new Vector2(-784.228027F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0975() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-804.963989F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(-805.804016F, -93.1279984F), new Vector2(-806.463989F, -93.8180008F), new Vector2(-806.94397F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(-807.424011F, -95.5699997F), new Vector2(-807.664001F, -96.5719986F), new Vector2(-807.664001F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-807.664001F, -98.8040009F), new Vector2(-807.424011F, -99.788002F), new Vector2(-806.94397F, -100.652F)); + builder.AddCubicBezier(new Vector2(-806.463989F, -101.515999F), new Vector2(-805.804016F, -102.194F), new Vector2(-804.963989F, -102.685997F)); + builder.AddCubicBezier(new Vector2(-804.124023F, -103.178001F), new Vector2(-803.176025F, -103.424004F), new Vector2(-802.119995F, -103.424004F)); + builder.AddCubicBezier(new Vector2(-801.015991F, -103.424004F), new Vector2(-800.049988F, -103.178001F), new Vector2(-799.221985F, -102.685997F)); + builder.AddCubicBezier(new Vector2(-798.393982F, -102.194F), new Vector2(-797.734009F, -101.515999F), new Vector2(-797.242004F, -100.652F)); + builder.AddCubicBezier(new Vector2(-796.75F, -99.788002F), new Vector2(-796.504028F, -98.8040009F), new Vector2(-796.504028F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-796.504028F, -96.5719986F), new Vector2(-796.744019F, -95.5699997F), new Vector2(-797.223999F, -94.6940002F)); + builder.AddCubicBezier(new Vector2(-797.703979F, -93.8180008F), new Vector2(-798.364014F, -93.1279984F), new Vector2(-799.203979F, -92.6240005F)); + builder.AddCubicBezier(new Vector2(-800.044006F, -92.1200027F), new Vector2(-801.015991F, -91.8679962F), new Vector2(-802.119995F, -91.8679962F)); + builder.AddCubicBezier(new Vector2(-803.176025F, -91.8679962F), new Vector2(-804.124023F, -92.1200027F), new Vector2(-804.963989F, -92.6240005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-797.565979F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(-796.210022F, -90.7160034F), new Vector2(-795.135986F, -91.7900009F), new Vector2(-794.343994F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(-793.552002F, -94.5019989F), new Vector2(-793.156006F, -96.0199966F), new Vector2(-793.156006F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-793.156006F, -99.3560028F), new Vector2(-793.552002F, -100.856003F), new Vector2(-794.343994F, -102.199997F)); + builder.AddCubicBezier(new Vector2(-795.135986F, -103.543999F), new Vector2(-796.210022F, -104.606003F), new Vector2(-797.565979F, -105.386002F)); + builder.AddCubicBezier(new Vector2(-798.921997F, -106.166F), new Vector2(-800.440002F, -106.556F), new Vector2(-802.119995F, -106.556F)); + builder.AddCubicBezier(new Vector2(-803.776001F, -106.556F), new Vector2(-805.276001F, -106.160004F), new Vector2(-806.619995F, -105.367996F)); + builder.AddCubicBezier(new Vector2(-807.963989F, -104.575996F), new Vector2(-809.031982F, -103.514F), new Vector2(-809.823975F, -102.181999F)); + builder.AddCubicBezier(new Vector2(-810.616028F, -100.849998F), new Vector2(-811.012024F, -99.3560028F), new Vector2(-811.012024F, -97.6999969F)); + builder.AddCubicBezier(new Vector2(-811.012024F, -96.0199966F), new Vector2(-810.616028F, -94.5019989F), new Vector2(-809.823975F, -93.1460037F)); + builder.AddCubicBezier(new Vector2(-809.031982F, -91.7900009F), new Vector2(-807.963989F, -90.7160034F), new Vector2(-806.619995F, -89.9240036F)); + builder.AddCubicBezier(new Vector2(-805.276001F, -89.1320038F), new Vector2(-803.776001F, -88.7360001F), new Vector2(-802.119995F, -88.7360001F)); + builder.AddCubicBezier(new Vector2(-800.440002F, -88.7360001F), new Vector2(-798.921997F, -89.1320038F), new Vector2(-797.565979F, -89.9240036F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0976() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-826.383972F, -89.0960007F)); + builder.AddLine(new Vector2(-826.383972F, -106.195999F)); + builder.AddLine(new Vector2(-829.624023F, -106.195999F)); + builder.AddLine(new Vector2(-829.624023F, -89.0960007F)); + builder.AddLine(new Vector2(-826.383972F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-814.288025F, -89.0960007F)); + builder.AddLine(new Vector2(-814.288025F, -99.7160034F)); + builder.AddCubicBezier(new Vector2(-814.288025F, -100.891998F), new Vector2(-814.575989F, -102.001999F), new Vector2(-815.151978F, -103.045998F)); + builder.AddCubicBezier(new Vector2(-815.728027F, -104.089996F), new Vector2(-816.513977F, -104.935997F), new Vector2(-817.51001F, -105.584F)); + builder.AddCubicBezier(new Vector2(-818.505981F, -106.232002F), new Vector2(-819.651978F, -106.556F), new Vector2(-820.947998F, -106.556F)); + builder.AddCubicBezier(new Vector2(-822.244019F, -106.556F), new Vector2(-823.40802F, -106.262001F), new Vector2(-824.440002F, -105.674004F)); + builder.AddCubicBezier(new Vector2(-825.471985F, -105.085999F), new Vector2(-826.276001F, -104.288002F), new Vector2(-826.85199F, -103.279999F)); + builder.AddCubicBezier(new Vector2(-827.427979F, -102.272003F), new Vector2(-827.716003F, -101.120003F), new Vector2(-827.716003F, -99.8239975F)); + builder.AddLine(new Vector2(-826.383972F, -99.0680008F)); + builder.AddCubicBezier(new Vector2(-826.383972F, -99.9319992F), new Vector2(-826.192017F, -100.699997F), new Vector2(-825.807983F, -101.372002F)); + builder.AddCubicBezier(new Vector2(-825.424011F, -102.043999F), new Vector2(-824.895996F, -102.571999F), new Vector2(-824.223999F, -102.956001F)); + builder.AddCubicBezier(new Vector2(-823.552002F, -103.339996F), new Vector2(-822.783997F, -103.531998F), new Vector2(-821.919983F, -103.531998F)); + builder.AddCubicBezier(new Vector2(-820.624023F, -103.531998F), new Vector2(-819.573975F, -103.112F), new Vector2(-818.77002F, -102.272003F)); + builder.AddCubicBezier(new Vector2(-817.966003F, -101.431999F), new Vector2(-817.564026F, -100.363998F), new Vector2(-817.564026F, -99.0680008F)); + builder.AddLine(new Vector2(-817.564026F, -89.0960007F)); + builder.AddLine(new Vector2(-814.288025F, -89.0960007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0977() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(829.184021F, -132.296005F)); + builder.AddLine(new Vector2(829.184021F, -143.276001F)); + builder.AddCubicBezier(new Vector2(829.184021F, -144.619995F), new Vector2(828.890015F, -145.772003F), new Vector2(828.302002F, -146.731995F)); + builder.AddCubicBezier(new Vector2(827.713989F, -147.692001F), new Vector2(826.927979F, -148.436005F), new Vector2(825.94397F, -148.964005F)); + builder.AddCubicBezier(new Vector2(824.960022F, -149.492004F), new Vector2(823.843994F, -149.755997F), new Vector2(822.596008F, -149.755997F)); + builder.AddCubicBezier(new Vector2(821.395996F, -149.755997F), new Vector2(820.291992F, -149.485992F), new Vector2(819.283997F, -148.945999F)); + builder.AddCubicBezier(new Vector2(818.276001F, -148.406006F), new Vector2(817.453979F, -147.662003F), new Vector2(816.817993F, -146.714005F)); + builder.AddCubicBezier(new Vector2(816.182007F, -145.766006F), new Vector2(815.828003F, -144.632004F), new Vector2(815.755981F, -143.311996F)); + builder.AddLine(new Vector2(817.59198F, -142.628006F)); + builder.AddCubicBezier(new Vector2(817.59198F, -143.492004F), new Vector2(817.783997F, -144.223999F), new Vector2(818.16803F, -144.824005F)); + builder.AddCubicBezier(new Vector2(818.552002F, -145.423996F), new Vector2(819.062012F, -145.891998F), new Vector2(819.697998F, -146.227997F)); + builder.AddCubicBezier(new Vector2(820.333984F, -146.563995F), new Vector2(821.047974F, -146.731995F), new Vector2(821.840027F, -146.731995F)); + builder.AddCubicBezier(new Vector2(822.992004F, -146.731995F), new Vector2(823.958008F, -146.365997F), new Vector2(824.737976F, -145.634003F)); + builder.AddCubicBezier(new Vector2(825.518005F, -144.901993F), new Vector2(825.90802F, -143.899994F), new Vector2(825.90802F, -142.628006F)); + builder.AddLine(new Vector2(825.90802F, -132.296005F)); + builder.AddLine(new Vector2(829.184021F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(817.59198F, -132.296005F)); + builder.AddLine(new Vector2(817.59198F, -143.311996F)); + builder.AddCubicBezier(new Vector2(817.59198F, -144.632004F), new Vector2(817.309998F, -145.772003F), new Vector2(816.745972F, -146.731995F)); + builder.AddCubicBezier(new Vector2(816.182007F, -147.692001F), new Vector2(815.414001F, -148.436005F), new Vector2(814.442017F, -148.964005F)); + builder.AddCubicBezier(new Vector2(813.469971F, -149.492004F), new Vector2(812.383972F, -149.755997F), new Vector2(811.184021F, -149.755997F)); + builder.AddCubicBezier(new Vector2(809.960022F, -149.755997F), new Vector2(808.856018F, -149.485992F), new Vector2(807.872009F, -148.945999F)); + builder.AddCubicBezier(new Vector2(806.888F, -148.406006F), new Vector2(806.114014F, -147.656006F), new Vector2(805.549988F, -146.695999F)); + builder.AddCubicBezier(new Vector2(804.986023F, -145.735992F), new Vector2(804.703979F, -144.608002F), new Vector2(804.703979F, -143.311996F)); + builder.AddLine(new Vector2(806.036011F, -142.628006F)); + builder.AddCubicBezier(new Vector2(806.036011F, -143.492004F), new Vector2(806.228027F, -144.223999F), new Vector2(806.612F, -144.824005F)); + builder.AddCubicBezier(new Vector2(806.995972F, -145.423996F), new Vector2(807.5F, -145.891998F), new Vector2(808.124023F, -146.227997F)); + builder.AddCubicBezier(new Vector2(808.747986F, -146.563995F), new Vector2(809.455994F, -146.731995F), new Vector2(810.247986F, -146.731995F)); + builder.AddCubicBezier(new Vector2(811.424011F, -146.731995F), new Vector2(812.401978F, -146.365997F), new Vector2(813.182007F, -145.634003F)); + builder.AddCubicBezier(new Vector2(813.961975F, -144.901993F), new Vector2(814.35199F, -143.899994F), new Vector2(814.35199F, -142.628006F)); + builder.AddLine(new Vector2(814.35199F, -132.296005F)); + builder.AddLine(new Vector2(817.59198F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(806.036011F, -132.296005F)); + builder.AddLine(new Vector2(806.036011F, -149.395996F)); + builder.AddLine(new Vector2(802.796021F, -149.395996F)); + builder.AddLine(new Vector2(802.796021F, -132.296005F)); + builder.AddLine(new Vector2(806.036011F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0978() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(796.856018F, -148.315994F)); + builder.AddLine(new Vector2(799.231995F, -152.779999F)); + builder.AddCubicBezier(new Vector2(799.544006F, -153.356003F), new Vector2(799.754028F, -153.830002F), new Vector2(799.862F, -154.201996F)); + builder.AddCubicBezier(new Vector2(799.969971F, -154.574005F), new Vector2(800.023987F, -154.904007F), new Vector2(800.023987F, -155.192001F)); + builder.AddCubicBezier(new Vector2(800.023987F, -155.863998F), new Vector2(799.783997F, -156.440002F), new Vector2(799.304016F, -156.919998F)); + builder.AddCubicBezier(new Vector2(798.823975F, -157.399994F), new Vector2(798.271973F, -157.639999F), new Vector2(797.64801F, -157.639999F)); + builder.AddCubicBezier(new Vector2(796.976013F, -157.639999F), new Vector2(796.406006F, -157.399994F), new Vector2(795.937988F, -156.919998F)); + builder.AddCubicBezier(new Vector2(795.469971F, -156.440002F), new Vector2(795.236023F, -155.863998F), new Vector2(795.236023F, -155.192001F)); + builder.AddCubicBezier(new Vector2(795.236023F, -154.544006F), new Vector2(795.445984F, -154.016006F), new Vector2(795.866028F, -153.608002F)); + builder.AddCubicBezier(new Vector2(796.286011F, -153.199997F), new Vector2(796.747986F, -152.996002F), new Vector2(797.252014F, -152.996002F)); + builder.AddCubicBezier(new Vector2(797.515991F, -152.996002F), new Vector2(797.737976F, -153.080002F), new Vector2(797.91803F, -153.248001F)); + builder.AddCubicBezier(new Vector2(798.098022F, -153.416F), new Vector2(798.247986F, -153.632004F), new Vector2(798.367981F, -153.895996F)); + builder.AddLine(new Vector2(797.216003F, -153.608002F)); + builder.AddLine(new Vector2(794.984009F, -149.324005F)); + builder.AddLine(new Vector2(796.856018F, -148.315994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0979() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(789.94397F, -132.296005F)); + builder.AddLine(new Vector2(789.94397F, -157.279999F)); + builder.AddLine(new Vector2(786.559998F, -157.279999F)); + builder.AddLine(new Vector2(786.559998F, -132.296005F)); + builder.AddLine(new Vector2(789.94397F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0980() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(770.64801F, -127.328003F)); + builder.AddLine(new Vector2(773.059998F, -131.792007F)); + builder.AddCubicBezier(new Vector2(773.372009F, -132.391998F), new Vector2(773.58197F, -132.878006F), new Vector2(773.690002F, -133.25F)); + builder.AddCubicBezier(new Vector2(773.797974F, -133.621994F), new Vector2(773.85199F, -133.940002F), new Vector2(773.85199F, -134.203995F)); + builder.AddCubicBezier(new Vector2(773.85199F, -134.899994F), new Vector2(773.612F, -135.481995F), new Vector2(773.132019F, -135.949997F)); + builder.AddCubicBezier(new Vector2(772.651978F, -136.417999F), new Vector2(772.099976F, -136.651993F), new Vector2(771.476013F, -136.651993F)); + builder.AddCubicBezier(new Vector2(770.780029F, -136.651993F), new Vector2(770.203979F, -136.417999F), new Vector2(769.747986F, -135.949997F)); + builder.AddCubicBezier(new Vector2(769.291992F, -135.481995F), new Vector2(769.064026F, -134.899994F), new Vector2(769.064026F, -134.203995F)); + builder.AddCubicBezier(new Vector2(769.064026F, -133.580002F), new Vector2(769.273987F, -133.057999F), new Vector2(769.69397F, -132.638F)); + builder.AddCubicBezier(new Vector2(770.114014F, -132.218002F), new Vector2(770.575989F, -132.007996F), new Vector2(771.080017F, -132.007996F)); + builder.AddCubicBezier(new Vector2(771.320007F, -132.007996F), new Vector2(771.536011F, -132.091995F), new Vector2(771.728027F, -132.259995F)); + builder.AddCubicBezier(new Vector2(771.919983F, -132.427994F), new Vector2(772.075989F, -132.643997F), new Vector2(772.195984F, -132.908005F)); + builder.AddLine(new Vector2(771.044006F, -132.619995F)); + builder.AddLine(new Vector2(768.812012F, -128.335999F)); + builder.AddLine(new Vector2(770.64801F, -127.328003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0981() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(763.286011F, -133.339996F)); + builder.AddCubicBezier(new Vector2(764.426025F, -134.276001F), new Vector2(764.995972F, -135.548004F), new Vector2(764.995972F, -137.156006F)); + builder.AddCubicBezier(new Vector2(764.995972F, -138.212006F), new Vector2(764.773987F, -139.063995F), new Vector2(764.330017F, -139.712006F)); + builder.AddCubicBezier(new Vector2(763.885986F, -140.360001F), new Vector2(763.315979F, -140.876007F), new Vector2(762.619995F, -141.259995F)); + builder.AddCubicBezier(new Vector2(761.924011F, -141.643997F), new Vector2(761.192017F, -141.949997F), new Vector2(760.424011F, -142.177994F)); + builder.AddCubicBezier(new Vector2(759.656006F, -142.406006F), new Vector2(758.91803F, -142.628006F), new Vector2(758.210022F, -142.843994F)); + builder.AddCubicBezier(new Vector2(757.502014F, -143.059998F), new Vector2(756.932007F, -143.324005F), new Vector2(756.5F, -143.636002F)); + builder.AddCubicBezier(new Vector2(756.067993F, -143.947998F), new Vector2(755.85199F, -144.391998F), new Vector2(755.85199F, -144.968002F)); + builder.AddCubicBezier(new Vector2(755.85199F, -145.520004F), new Vector2(756.098022F, -145.964005F), new Vector2(756.590027F, -146.300003F)); + builder.AddCubicBezier(new Vector2(757.08197F, -146.636002F), new Vector2(757.796021F, -146.804001F), new Vector2(758.731995F, -146.804001F)); + builder.AddCubicBezier(new Vector2(759.619995F, -146.804001F), new Vector2(760.411987F, -146.636002F), new Vector2(761.107971F, -146.300003F)); + builder.AddCubicBezier(new Vector2(761.804016F, -145.964005F), new Vector2(762.403992F, -145.483994F), new Vector2(762.90802F, -144.860001F)); + builder.AddLine(new Vector2(764.995972F, -146.947998F)); + builder.AddCubicBezier(new Vector2(764.323975F, -147.884003F), new Vector2(763.466003F, -148.585999F), new Vector2(762.421997F, -149.054001F)); + builder.AddCubicBezier(new Vector2(761.377991F, -149.522003F), new Vector2(760.184021F, -149.755997F), new Vector2(758.840027F, -149.755997F)); + builder.AddCubicBezier(new Vector2(757.567993F, -149.755997F), new Vector2(756.476013F, -149.552002F), new Vector2(755.564026F, -149.143997F)); + builder.AddCubicBezier(new Vector2(754.651978F, -148.735992F), new Vector2(753.950012F, -148.154007F), new Vector2(753.458008F, -147.397995F)); + builder.AddCubicBezier(new Vector2(752.966003F, -146.641998F), new Vector2(752.719971F, -145.748001F), new Vector2(752.719971F, -144.716003F)); + builder.AddCubicBezier(new Vector2(752.719971F, -143.684006F), new Vector2(752.942017F, -142.850006F), new Vector2(753.385986F, -142.214005F)); + builder.AddCubicBezier(new Vector2(753.830017F, -141.578003F), new Vector2(754.400024F, -141.080002F), new Vector2(755.096008F, -140.720001F)); + builder.AddCubicBezier(new Vector2(755.791992F, -140.360001F), new Vector2(756.530029F, -140.072006F), new Vector2(757.309998F, -139.856003F)); + builder.AddCubicBezier(new Vector2(758.090027F, -139.639999F), new Vector2(758.828003F, -139.417999F), new Vector2(759.523987F, -139.190002F)); + builder.AddCubicBezier(new Vector2(760.219971F, -138.962006F), new Vector2(760.789978F, -138.673996F), new Vector2(761.234009F, -138.326004F)); + builder.AddCubicBezier(new Vector2(761.677979F, -137.977997F), new Vector2(761.900024F, -137.492004F), new Vector2(761.900024F, -136.867996F)); + builder.AddCubicBezier(new Vector2(761.900024F, -136.244003F), new Vector2(761.624023F, -135.757996F), new Vector2(761.072021F, -135.410004F)); + builder.AddCubicBezier(new Vector2(760.52002F, -135.061996F), new Vector2(759.73999F, -134.888F), new Vector2(758.731995F, -134.888F)); + builder.AddCubicBezier(new Vector2(757.723999F, -134.888F), new Vector2(756.812012F, -135.074005F), new Vector2(755.995972F, -135.445999F)); + builder.AddCubicBezier(new Vector2(755.179993F, -135.817993F), new Vector2(754.460022F, -136.388F), new Vector2(753.835999F, -137.156006F)); + builder.AddLine(new Vector2(751.747986F, -135.067993F)); + builder.AddCubicBezier(new Vector2(752.276001F, -134.419998F), new Vector2(752.893982F, -133.862F), new Vector2(753.60199F, -133.393997F)); + builder.AddCubicBezier(new Vector2(754.309998F, -132.925995F), new Vector2(755.096008F, -132.565994F), new Vector2(755.960022F, -132.313995F)); + builder.AddCubicBezier(new Vector2(756.823975F, -132.061996F), new Vector2(757.736023F, -131.936005F), new Vector2(758.695984F, -131.936005F)); + builder.AddCubicBezier(new Vector2(760.616028F, -131.936005F), new Vector2(762.145996F, -132.404007F), new Vector2(763.286011F, -133.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0982() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(745.664001F, -132.692001F)); + builder.AddCubicBezier(new Vector2(746.840027F, -133.195999F), new Vector2(747.848022F, -133.927994F), new Vector2(748.687988F, -134.888F)); + builder.AddLine(new Vector2(746.599976F, -137.011993F)); + builder.AddCubicBezier(new Vector2(746.023987F, -136.339996F), new Vector2(745.333984F, -135.835999F), new Vector2(744.530029F, -135.5F)); + builder.AddCubicBezier(new Vector2(743.726013F, -135.164001F), new Vector2(742.843994F, -134.996002F), new Vector2(741.883972F, -134.996002F)); + builder.AddCubicBezier(new Vector2(740.731995F, -134.996002F), new Vector2(739.711975F, -135.242004F), new Vector2(738.823975F, -135.733994F)); + builder.AddCubicBezier(new Vector2(737.935974F, -136.225998F), new Vector2(737.252014F, -136.921997F), new Vector2(736.771973F, -137.822006F)); + builder.AddCubicBezier(new Vector2(736.291992F, -138.722F), new Vector2(736.052002F, -139.772003F), new Vector2(736.052002F, -140.972F)); + builder.AddCubicBezier(new Vector2(736.052002F, -142.147995F), new Vector2(736.280029F, -143.167999F), new Vector2(736.736023F, -144.031998F)); + builder.AddCubicBezier(new Vector2(737.192017F, -144.895996F), new Vector2(737.840027F, -145.567993F), new Vector2(738.679993F, -146.048004F)); + builder.AddCubicBezier(new Vector2(739.52002F, -146.528F), new Vector2(740.492004F, -146.768005F), new Vector2(741.596008F, -146.768005F)); + builder.AddCubicBezier(new Vector2(742.651978F, -146.768005F), new Vector2(743.552002F, -146.546005F), new Vector2(744.296021F, -146.102005F)); + builder.AddCubicBezier(new Vector2(745.039978F, -145.658005F), new Vector2(745.616028F, -145.033997F), new Vector2(746.023987F, -144.229996F)); + builder.AddCubicBezier(new Vector2(746.432007F, -143.425995F), new Vector2(746.635986F, -142.447998F), new Vector2(746.635986F, -141.296005F)); + builder.AddLine(new Vector2(747.823975F, -142.339996F)); + builder.AddLine(new Vector2(735.116028F, -142.339996F)); + builder.AddLine(new Vector2(735.116028F, -139.639999F)); + builder.AddLine(new Vector2(749.552002F, -139.639999F)); + builder.AddCubicBezier(new Vector2(749.624023F, -139.975998F), new Vector2(749.671997F, -140.281998F), new Vector2(749.695984F, -140.557999F)); + builder.AddCubicBezier(new Vector2(749.719971F, -140.834F), new Vector2(749.731995F, -141.091995F), new Vector2(749.731995F, -141.332001F)); + builder.AddCubicBezier(new Vector2(749.731995F, -142.964005F), new Vector2(749.390015F, -144.416F), new Vector2(748.705994F, -145.688004F)); + builder.AddCubicBezier(new Vector2(748.021973F, -146.960007F), new Vector2(747.067993F, -147.955994F), new Vector2(745.843994F, -148.675995F)); + builder.AddCubicBezier(new Vector2(744.619995F, -149.395996F), new Vector2(743.228027F, -149.755997F), new Vector2(741.66803F, -149.755997F)); + builder.AddCubicBezier(new Vector2(740.012024F, -149.755997F), new Vector2(738.518005F, -149.365997F), new Vector2(737.185974F, -148.585999F)); + builder.AddCubicBezier(new Vector2(735.854004F, -147.806F), new Vector2(734.797974F, -146.744003F), new Vector2(734.018005F, -145.399994F)); + builder.AddCubicBezier(new Vector2(733.237976F, -144.056F), new Vector2(732.848022F, -142.544006F), new Vector2(732.848022F, -140.863998F)); + builder.AddCubicBezier(new Vector2(732.848022F, -139.160004F), new Vector2(733.244019F, -137.636002F), new Vector2(734.036011F, -136.292007F)); + builder.AddCubicBezier(new Vector2(734.828003F, -134.947998F), new Vector2(735.901978F, -133.886002F), new Vector2(737.257996F, -133.106003F)); + builder.AddCubicBezier(new Vector2(738.614014F, -132.326004F), new Vector2(740.156006F, -131.936005F), new Vector2(741.883972F, -131.936005F)); + builder.AddCubicBezier(new Vector2(743.228027F, -131.936005F), new Vector2(744.487976F, -132.188004F), new Vector2(745.664001F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0983() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(720.716003F, -125.132004F)); + builder.AddLine(new Vector2(723.955994F, -132.151993F)); + builder.AddLine(new Vector2(722.119995F, -135.464005F)); + builder.AddLine(new Vector2(717.116028F, -125.132004F)); + builder.AddLine(new Vector2(720.716003F, -125.132004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(723.955994F, -132.151993F)); + builder.AddLine(new Vector2(731.947998F, -149.395996F)); + builder.AddLine(new Vector2(728.348022F, -149.395996F)); + builder.AddLine(new Vector2(722.552002F, -135.895996F)); + builder.AddLine(new Vector2(723.703979F, -135.895996F)); + builder.AddLine(new Vector2(718.195984F, -149.395996F)); + builder.AddLine(new Vector2(714.596008F, -149.395996F)); + builder.AddLine(new Vector2(722.012024F, -132.151993F)); + builder.AddLine(new Vector2(723.955994F, -132.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0984() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(714.271973F, -129.811996F)); + builder.AddCubicBezier(new Vector2(712.567993F, -131.324005F), new Vector2(711.254028F, -133.255997F), new Vector2(710.330017F, -135.608002F)); + builder.AddCubicBezier(new Vector2(709.406006F, -137.960007F), new Vector2(708.94397F, -140.587997F), new Vector2(708.94397F, -143.492004F)); + builder.AddCubicBezier(new Vector2(708.94397F, -146.419998F), new Vector2(709.406006F, -149.059998F), new Vector2(710.330017F, -151.412003F)); + builder.AddCubicBezier(new Vector2(711.254028F, -153.764008F), new Vector2(712.567993F, -155.684006F), new Vector2(714.271973F, -157.171997F)); + builder.AddLine(new Vector2(712.400024F, -158.863998F)); + builder.AddCubicBezier(new Vector2(711.080017F, -157.759995F), new Vector2(709.952026F, -156.397995F), new Vector2(709.015991F, -154.778F)); + builder.AddCubicBezier(new Vector2(708.080017F, -153.158005F), new Vector2(707.359985F, -151.388F), new Vector2(706.856018F, -149.468002F)); + builder.AddCubicBezier(new Vector2(706.35199F, -147.548004F), new Vector2(706.099976F, -145.556F), new Vector2(706.099976F, -143.492004F)); + builder.AddCubicBezier(new Vector2(706.099976F, -141.427994F), new Vector2(706.35199F, -139.436005F), new Vector2(706.856018F, -137.516006F)); + builder.AddCubicBezier(new Vector2(707.359985F, -135.595993F), new Vector2(708.080017F, -133.826004F), new Vector2(709.015991F, -132.205994F)); + builder.AddCubicBezier(new Vector2(709.952026F, -130.585999F), new Vector2(711.080017F, -129.223999F), new Vector2(712.400024F, -128.119995F)); + builder.AddLine(new Vector2(714.271973F, -129.811996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0985() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(694.021973F, -133.339996F)); + builder.AddCubicBezier(new Vector2(695.161987F, -134.276001F), new Vector2(695.731995F, -135.548004F), new Vector2(695.731995F, -137.156006F)); + builder.AddCubicBezier(new Vector2(695.731995F, -138.212006F), new Vector2(695.51001F, -139.063995F), new Vector2(695.065979F, -139.712006F)); + builder.AddCubicBezier(new Vector2(694.622009F, -140.360001F), new Vector2(694.052002F, -140.876007F), new Vector2(693.356018F, -141.259995F)); + builder.AddCubicBezier(new Vector2(692.659973F, -141.643997F), new Vector2(691.927979F, -141.949997F), new Vector2(691.159973F, -142.177994F)); + builder.AddCubicBezier(new Vector2(690.392029F, -142.406006F), new Vector2(689.653992F, -142.628006F), new Vector2(688.945984F, -142.843994F)); + builder.AddCubicBezier(new Vector2(688.237976F, -143.059998F), new Vector2(687.66803F, -143.324005F), new Vector2(687.236023F, -143.636002F)); + builder.AddCubicBezier(new Vector2(686.804016F, -143.947998F), new Vector2(686.588013F, -144.391998F), new Vector2(686.588013F, -144.968002F)); + builder.AddCubicBezier(new Vector2(686.588013F, -145.520004F), new Vector2(686.833984F, -145.964005F), new Vector2(687.325989F, -146.300003F)); + builder.AddCubicBezier(new Vector2(687.817993F, -146.636002F), new Vector2(688.531982F, -146.804001F), new Vector2(689.468018F, -146.804001F)); + builder.AddCubicBezier(new Vector2(690.356018F, -146.804001F), new Vector2(691.14801F, -146.636002F), new Vector2(691.843994F, -146.300003F)); + builder.AddCubicBezier(new Vector2(692.539978F, -145.964005F), new Vector2(693.140015F, -145.483994F), new Vector2(693.643982F, -144.860001F)); + builder.AddLine(new Vector2(695.731995F, -146.947998F)); + builder.AddCubicBezier(new Vector2(695.059998F, -147.884003F), new Vector2(694.202026F, -148.585999F), new Vector2(693.15802F, -149.054001F)); + builder.AddCubicBezier(new Vector2(692.114014F, -149.522003F), new Vector2(690.919983F, -149.755997F), new Vector2(689.575989F, -149.755997F)); + builder.AddCubicBezier(new Vector2(688.304016F, -149.755997F), new Vector2(687.211975F, -149.552002F), new Vector2(686.299988F, -149.143997F)); + builder.AddCubicBezier(new Vector2(685.388F, -148.735992F), new Vector2(684.685974F, -148.154007F), new Vector2(684.19397F, -147.397995F)); + builder.AddCubicBezier(new Vector2(683.702026F, -146.641998F), new Vector2(683.455994F, -145.748001F), new Vector2(683.455994F, -144.716003F)); + builder.AddCubicBezier(new Vector2(683.455994F, -143.684006F), new Vector2(683.677979F, -142.850006F), new Vector2(684.122009F, -142.214005F)); + builder.AddCubicBezier(new Vector2(684.565979F, -141.578003F), new Vector2(685.135986F, -141.080002F), new Vector2(685.83197F, -140.720001F)); + builder.AddCubicBezier(new Vector2(686.528015F, -140.360001F), new Vector2(687.265991F, -140.072006F), new Vector2(688.046021F, -139.856003F)); + builder.AddCubicBezier(new Vector2(688.825989F, -139.639999F), new Vector2(689.564026F, -139.417999F), new Vector2(690.26001F, -139.190002F)); + builder.AddCubicBezier(new Vector2(690.955994F, -138.962006F), new Vector2(691.526001F, -138.673996F), new Vector2(691.969971F, -138.326004F)); + builder.AddCubicBezier(new Vector2(692.414001F, -137.977997F), new Vector2(692.635986F, -137.492004F), new Vector2(692.635986F, -136.867996F)); + builder.AddCubicBezier(new Vector2(692.635986F, -136.244003F), new Vector2(692.359985F, -135.757996F), new Vector2(691.807983F, -135.410004F)); + builder.AddCubicBezier(new Vector2(691.255981F, -135.061996F), new Vector2(690.476013F, -134.888F), new Vector2(689.468018F, -134.888F)); + builder.AddCubicBezier(new Vector2(688.460022F, -134.888F), new Vector2(687.547974F, -135.074005F), new Vector2(686.731995F, -135.445999F)); + builder.AddCubicBezier(new Vector2(685.916016F, -135.817993F), new Vector2(685.195984F, -136.388F), new Vector2(684.572021F, -137.156006F)); + builder.AddLine(new Vector2(682.484009F, -135.067993F)); + builder.AddCubicBezier(new Vector2(683.012024F, -134.419998F), new Vector2(683.630005F, -133.862F), new Vector2(684.338013F, -133.393997F)); + builder.AddCubicBezier(new Vector2(685.046021F, -132.925995F), new Vector2(685.83197F, -132.565994F), new Vector2(686.695984F, -132.313995F)); + builder.AddCubicBezier(new Vector2(687.559998F, -132.061996F), new Vector2(688.471985F, -131.936005F), new Vector2(689.432007F, -131.936005F)); + builder.AddCubicBezier(new Vector2(691.35199F, -131.936005F), new Vector2(692.882019F, -132.404007F), new Vector2(694.021973F, -133.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0986() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(667.507996F, -132.296005F)); + builder.AddLine(new Vector2(667.507996F, -149.395996F)); + builder.AddLine(new Vector2(664.268005F, -149.395996F)); + builder.AddLine(new Vector2(664.268005F, -132.296005F)); + builder.AddLine(new Vector2(667.507996F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(679.604004F, -132.296005F)); + builder.AddLine(new Vector2(679.604004F, -142.916F)); + builder.AddCubicBezier(new Vector2(679.604004F, -144.091995F), new Vector2(679.315979F, -145.201996F), new Vector2(678.73999F, -146.246002F)); + builder.AddCubicBezier(new Vector2(678.164001F, -147.289993F), new Vector2(677.377991F, -148.136002F), new Vector2(676.382019F, -148.783997F)); + builder.AddCubicBezier(new Vector2(675.385986F, -149.432007F), new Vector2(674.23999F, -149.755997F), new Vector2(672.94397F, -149.755997F)); + builder.AddCubicBezier(new Vector2(671.64801F, -149.755997F), new Vector2(670.484009F, -149.462006F), new Vector2(669.452026F, -148.873993F)); + builder.AddCubicBezier(new Vector2(668.419983F, -148.285995F), new Vector2(667.616028F, -147.488007F), new Vector2(667.039978F, -146.479996F)); + builder.AddCubicBezier(new Vector2(666.463989F, -145.472F), new Vector2(666.176025F, -144.320007F), new Vector2(666.176025F, -143.024002F)); + builder.AddLine(new Vector2(667.507996F, -142.268005F)); + builder.AddCubicBezier(new Vector2(667.507996F, -143.132004F), new Vector2(667.700012F, -143.899994F), new Vector2(668.083984F, -144.572006F)); + builder.AddCubicBezier(new Vector2(668.468018F, -145.244003F), new Vector2(668.995972F, -145.772003F), new Vector2(669.66803F, -146.156006F)); + builder.AddCubicBezier(new Vector2(670.340027F, -146.539993F), new Vector2(671.107971F, -146.731995F), new Vector2(671.971985F, -146.731995F)); + builder.AddCubicBezier(new Vector2(673.268005F, -146.731995F), new Vector2(674.317993F, -146.311996F), new Vector2(675.122009F, -145.472F)); + builder.AddCubicBezier(new Vector2(675.926025F, -144.632004F), new Vector2(676.328003F, -143.563995F), new Vector2(676.328003F, -142.268005F)); + builder.AddLine(new Vector2(676.328003F, -132.296005F)); + builder.AddLine(new Vector2(679.604004F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0987() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(656.671997F, -132.692001F)); + builder.AddCubicBezier(new Vector2(657.848022F, -133.195999F), new Vector2(658.856018F, -133.927994F), new Vector2(659.695984F, -134.888F)); + builder.AddLine(new Vector2(657.607971F, -137.011993F)); + builder.AddCubicBezier(new Vector2(657.031982F, -136.339996F), new Vector2(656.34198F, -135.835999F), new Vector2(655.538025F, -135.5F)); + builder.AddCubicBezier(new Vector2(654.734009F, -135.164001F), new Vector2(653.85199F, -134.996002F), new Vector2(652.892029F, -134.996002F)); + builder.AddCubicBezier(new Vector2(651.73999F, -134.996002F), new Vector2(650.719971F, -135.242004F), new Vector2(649.83197F, -135.733994F)); + builder.AddCubicBezier(new Vector2(648.94397F, -136.225998F), new Vector2(648.26001F, -136.921997F), new Vector2(647.780029F, -137.822006F)); + builder.AddCubicBezier(new Vector2(647.299988F, -138.722F), new Vector2(647.059998F, -139.772003F), new Vector2(647.059998F, -140.972F)); + builder.AddCubicBezier(new Vector2(647.059998F, -142.147995F), new Vector2(647.288025F, -143.167999F), new Vector2(647.744019F, -144.031998F)); + builder.AddCubicBezier(new Vector2(648.200012F, -144.895996F), new Vector2(648.848022F, -145.567993F), new Vector2(649.687988F, -146.048004F)); + builder.AddCubicBezier(new Vector2(650.528015F, -146.528F), new Vector2(651.5F, -146.768005F), new Vector2(652.604004F, -146.768005F)); + builder.AddCubicBezier(new Vector2(653.659973F, -146.768005F), new Vector2(654.559998F, -146.546005F), new Vector2(655.304016F, -146.102005F)); + builder.AddCubicBezier(new Vector2(656.047974F, -145.658005F), new Vector2(656.624023F, -145.033997F), new Vector2(657.031982F, -144.229996F)); + builder.AddCubicBezier(new Vector2(657.440002F, -143.425995F), new Vector2(657.643982F, -142.447998F), new Vector2(657.643982F, -141.296005F)); + builder.AddLine(new Vector2(658.83197F, -142.339996F)); + builder.AddLine(new Vector2(646.124023F, -142.339996F)); + builder.AddLine(new Vector2(646.124023F, -139.639999F)); + builder.AddLine(new Vector2(660.559998F, -139.639999F)); + builder.AddCubicBezier(new Vector2(660.632019F, -139.975998F), new Vector2(660.679993F, -140.281998F), new Vector2(660.703979F, -140.557999F)); + builder.AddCubicBezier(new Vector2(660.728027F, -140.834F), new Vector2(660.73999F, -141.091995F), new Vector2(660.73999F, -141.332001F)); + builder.AddCubicBezier(new Vector2(660.73999F, -142.964005F), new Vector2(660.39801F, -144.416F), new Vector2(659.713989F, -145.688004F)); + builder.AddCubicBezier(new Vector2(659.030029F, -146.960007F), new Vector2(658.075989F, -147.955994F), new Vector2(656.85199F, -148.675995F)); + builder.AddCubicBezier(new Vector2(655.627991F, -149.395996F), new Vector2(654.236023F, -149.755997F), new Vector2(652.676025F, -149.755997F)); + builder.AddCubicBezier(new Vector2(651.02002F, -149.755997F), new Vector2(649.526001F, -149.365997F), new Vector2(648.19397F, -148.585999F)); + builder.AddCubicBezier(new Vector2(646.862F, -147.806F), new Vector2(645.80603F, -146.744003F), new Vector2(645.026001F, -145.399994F)); + builder.AddCubicBezier(new Vector2(644.245972F, -144.056F), new Vector2(643.856018F, -142.544006F), new Vector2(643.856018F, -140.863998F)); + builder.AddCubicBezier(new Vector2(643.856018F, -139.160004F), new Vector2(644.252014F, -137.636002F), new Vector2(645.044006F, -136.292007F)); + builder.AddCubicBezier(new Vector2(645.835999F, -134.947998F), new Vector2(646.909973F, -133.886002F), new Vector2(648.265991F, -133.106003F)); + builder.AddCubicBezier(new Vector2(649.622009F, -132.326004F), new Vector2(651.164001F, -131.936005F), new Vector2(652.892029F, -131.936005F)); + builder.AddCubicBezier(new Vector2(654.236023F, -131.936005F), new Vector2(655.495972F, -132.188004F), new Vector2(656.671997F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0988() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(638.815979F, -146.444F)); + builder.AddLine(new Vector2(641.804016F, -147.632004F)); + builder.AddLine(new Vector2(641.804016F, -149.395996F)); + builder.AddLine(new Vector2(628.447998F, -149.395996F)); + builder.AddLine(new Vector2(628.447998F, -146.444F)); + builder.AddLine(new Vector2(638.815979F, -146.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(641.588013F, -132.296005F)); + builder.AddLine(new Vector2(641.588013F, -135.248001F)); + builder.AddLine(new Vector2(630.716003F, -135.248001F)); + builder.AddLine(new Vector2(627.799988F, -134.059998F)); + builder.AddLine(new Vector2(627.799988F, -132.296005F)); + builder.AddLine(new Vector2(641.588013F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(631.651978F, -134.059998F)); + builder.AddLine(new Vector2(641.804016F, -147.632004F)); + builder.AddLine(new Vector2(637.987976F, -147.632004F)); + builder.AddLine(new Vector2(627.799988F, -134.059998F)); + builder.AddLine(new Vector2(631.651978F, -134.059998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0989() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(624.271973F, -153.410004F)); + builder.AddCubicBezier(new Vector2(624.656006F, -153.806F), new Vector2(624.848022F, -154.304001F), new Vector2(624.848022F, -154.904007F)); + builder.AddCubicBezier(new Vector2(624.848022F, -155.479996F), new Vector2(624.656006F, -155.966003F), new Vector2(624.271973F, -156.362F)); + builder.AddCubicBezier(new Vector2(623.888F, -156.757996F), new Vector2(623.395996F, -156.955994F), new Vector2(622.796021F, -156.955994F)); + builder.AddCubicBezier(new Vector2(622.195984F, -156.955994F), new Vector2(621.703979F, -156.757996F), new Vector2(621.320007F, -156.362F)); + builder.AddCubicBezier(new Vector2(620.935974F, -155.966003F), new Vector2(620.744019F, -155.479996F), new Vector2(620.744019F, -154.904007F)); + builder.AddCubicBezier(new Vector2(620.744019F, -154.304001F), new Vector2(620.935974F, -153.806F), new Vector2(621.320007F, -153.410004F)); + builder.AddCubicBezier(new Vector2(621.703979F, -153.014008F), new Vector2(622.195984F, -152.815994F), new Vector2(622.796021F, -152.815994F)); + builder.AddCubicBezier(new Vector2(623.395996F, -152.815994F), new Vector2(623.888F, -153.014008F), new Vector2(624.271973F, -153.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(624.416016F, -132.296005F)); + builder.AddLine(new Vector2(624.416016F, -149.395996F)); + builder.AddLine(new Vector2(621.140015F, -149.395996F)); + builder.AddLine(new Vector2(621.140015F, -132.296005F)); + builder.AddLine(new Vector2(624.416016F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0990() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(617.971985F, -146.444F)); + builder.AddLine(new Vector2(617.971985F, -149.395996F)); + builder.AddLine(new Vector2(606.307983F, -149.395996F)); + builder.AddLine(new Vector2(606.307983F, -146.444F)); + builder.AddLine(new Vector2(617.971985F, -146.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(613.76001F, -132.296005F)); + builder.AddLine(new Vector2(613.76001F, -156.559998F)); + builder.AddLine(new Vector2(610.52002F, -156.559998F)); + builder.AddLine(new Vector2(610.52002F, -132.296005F)); + builder.AddLine(new Vector2(613.76001F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0991() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(602.960022F, -153.410004F)); + builder.AddCubicBezier(new Vector2(603.343994F, -153.806F), new Vector2(603.536011F, -154.304001F), new Vector2(603.536011F, -154.904007F)); + builder.AddCubicBezier(new Vector2(603.536011F, -155.479996F), new Vector2(603.343994F, -155.966003F), new Vector2(602.960022F, -156.362F)); + builder.AddCubicBezier(new Vector2(602.575989F, -156.757996F), new Vector2(602.083984F, -156.955994F), new Vector2(601.484009F, -156.955994F)); + builder.AddCubicBezier(new Vector2(600.883972F, -156.955994F), new Vector2(600.392029F, -156.757996F), new Vector2(600.007996F, -156.362F)); + builder.AddCubicBezier(new Vector2(599.624023F, -155.966003F), new Vector2(599.432007F, -155.479996F), new Vector2(599.432007F, -154.904007F)); + builder.AddCubicBezier(new Vector2(599.432007F, -154.304001F), new Vector2(599.624023F, -153.806F), new Vector2(600.007996F, -153.410004F)); + builder.AddCubicBezier(new Vector2(600.392029F, -153.014008F), new Vector2(600.883972F, -152.815994F), new Vector2(601.484009F, -152.815994F)); + builder.AddCubicBezier(new Vector2(602.083984F, -152.815994F), new Vector2(602.575989F, -153.014008F), new Vector2(602.960022F, -153.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(603.104004F, -132.296005F)); + builder.AddLine(new Vector2(603.104004F, -149.395996F)); + builder.AddLine(new Vector2(599.828003F, -149.395996F)); + builder.AddLine(new Vector2(599.828003F, -132.296005F)); + builder.AddLine(new Vector2(603.104004F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0992() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(593.726013F, -132.692001F)); + builder.AddCubicBezier(new Vector2(594.866028F, -133.195999F), new Vector2(595.83197F, -133.904007F), new Vector2(596.624023F, -134.815994F)); + builder.AddLine(new Vector2(594.5F, -136.975998F)); + builder.AddCubicBezier(new Vector2(593.947998F, -136.352005F), new Vector2(593.294006F, -135.878006F), new Vector2(592.538025F, -135.554001F)); + builder.AddCubicBezier(new Vector2(591.781982F, -135.229996F), new Vector2(590.947998F, -135.067993F), new Vector2(590.036011F, -135.067993F)); + builder.AddCubicBezier(new Vector2(588.955994F, -135.067993F), new Vector2(587.995972F, -135.320007F), new Vector2(587.156006F, -135.824005F)); + builder.AddCubicBezier(new Vector2(586.315979F, -136.328003F), new Vector2(585.656006F, -137.011993F), new Vector2(585.176025F, -137.876007F)); + builder.AddCubicBezier(new Vector2(584.695984F, -138.740005F), new Vector2(584.455994F, -139.735992F), new Vector2(584.455994F, -140.863998F)); + builder.AddCubicBezier(new Vector2(584.455994F, -141.992004F), new Vector2(584.695984F, -142.988007F), new Vector2(585.176025F, -143.852005F)); + builder.AddCubicBezier(new Vector2(585.656006F, -144.716003F), new Vector2(586.315979F, -145.393997F), new Vector2(587.156006F, -145.886002F)); + builder.AddCubicBezier(new Vector2(587.995972F, -146.378006F), new Vector2(588.955994F, -146.623993F), new Vector2(590.036011F, -146.623993F)); + builder.AddCubicBezier(new Vector2(590.924011F, -146.623993F), new Vector2(591.752014F, -146.462006F), new Vector2(592.52002F, -146.138F)); + builder.AddCubicBezier(new Vector2(593.288025F, -145.813995F), new Vector2(593.935974F, -145.339996F), new Vector2(594.463989F, -144.716003F)); + builder.AddLine(new Vector2(596.624023F, -146.876007F)); + builder.AddCubicBezier(new Vector2(595.807983F, -147.811996F), new Vector2(594.835999F, -148.526001F), new Vector2(593.708008F, -149.018005F)); + builder.AddCubicBezier(new Vector2(592.580017F, -149.509995F), new Vector2(591.356018F, -149.755997F), new Vector2(590.036011F, -149.755997F)); + builder.AddCubicBezier(new Vector2(588.356018F, -149.755997F), new Vector2(586.838013F, -149.365997F), new Vector2(585.481995F, -148.585999F)); + builder.AddCubicBezier(new Vector2(584.125977F, -147.806F), new Vector2(583.057983F, -146.744003F), new Vector2(582.278015F, -145.399994F)); + builder.AddCubicBezier(new Vector2(581.497986F, -144.056F), new Vector2(581.107971F, -142.544006F), new Vector2(581.107971F, -140.863998F)); + builder.AddCubicBezier(new Vector2(581.107971F, -139.207993F), new Vector2(581.497986F, -137.701996F), new Vector2(582.278015F, -136.345993F)); + builder.AddCubicBezier(new Vector2(583.057983F, -134.990005F), new Vector2(584.125977F, -133.916F), new Vector2(585.481995F, -133.123993F)); + builder.AddCubicBezier(new Vector2(586.838013F, -132.332001F), new Vector2(588.356018F, -131.936005F), new Vector2(590.036011F, -131.936005F)); + builder.AddCubicBezier(new Vector2(591.356018F, -131.936005F), new Vector2(592.585999F, -132.188004F), new Vector2(593.726013F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0993() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(559.364014F, -135.824005F)); + builder.AddCubicBezier(new Vector2(558.523987F, -136.328003F), new Vector2(557.864014F, -137.018005F), new Vector2(557.383972F, -137.893997F)); + builder.AddCubicBezier(new Vector2(556.903992F, -138.770004F), new Vector2(556.664001F, -139.772003F), new Vector2(556.664001F, -140.899994F)); + builder.AddCubicBezier(new Vector2(556.664001F, -142.003998F), new Vector2(556.903992F, -142.988007F), new Vector2(557.383972F, -143.852005F)); + builder.AddCubicBezier(new Vector2(557.864014F, -144.716003F), new Vector2(558.523987F, -145.393997F), new Vector2(559.364014F, -145.886002F)); + builder.AddCubicBezier(new Vector2(560.203979F, -146.378006F), new Vector2(561.151978F, -146.623993F), new Vector2(562.208008F, -146.623993F)); + builder.AddCubicBezier(new Vector2(563.312012F, -146.623993F), new Vector2(564.278015F, -146.378006F), new Vector2(565.106018F, -145.886002F)); + builder.AddCubicBezier(new Vector2(565.934021F, -145.393997F), new Vector2(566.593994F, -144.716003F), new Vector2(567.085999F, -143.852005F)); + builder.AddCubicBezier(new Vector2(567.578003F, -142.988007F), new Vector2(567.823975F, -142.003998F), new Vector2(567.823975F, -140.899994F)); + builder.AddCubicBezier(new Vector2(567.823975F, -139.772003F), new Vector2(567.583984F, -138.770004F), new Vector2(567.104004F, -137.893997F)); + builder.AddCubicBezier(new Vector2(566.624023F, -137.018005F), new Vector2(565.963989F, -136.328003F), new Vector2(565.124023F, -135.824005F)); + builder.AddCubicBezier(new Vector2(564.283997F, -135.320007F), new Vector2(563.312012F, -135.067993F), new Vector2(562.208008F, -135.067993F)); + builder.AddCubicBezier(new Vector2(561.151978F, -135.067993F), new Vector2(560.203979F, -135.320007F), new Vector2(559.364014F, -135.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(566.762024F, -133.123993F)); + builder.AddCubicBezier(new Vector2(568.117981F, -133.916F), new Vector2(569.192017F, -134.990005F), new Vector2(569.984009F, -136.345993F)); + builder.AddCubicBezier(new Vector2(570.776001F, -137.701996F), new Vector2(571.171997F, -139.220001F), new Vector2(571.171997F, -140.899994F)); + builder.AddCubicBezier(new Vector2(571.171997F, -142.556F), new Vector2(570.776001F, -144.056F), new Vector2(569.984009F, -145.399994F)); + builder.AddCubicBezier(new Vector2(569.192017F, -146.744003F), new Vector2(568.117981F, -147.806F), new Vector2(566.762024F, -148.585999F)); + builder.AddCubicBezier(new Vector2(565.406006F, -149.365997F), new Vector2(563.888F, -149.755997F), new Vector2(562.208008F, -149.755997F)); + builder.AddCubicBezier(new Vector2(560.552002F, -149.755997F), new Vector2(559.052002F, -149.360001F), new Vector2(557.708008F, -148.567993F)); + builder.AddCubicBezier(new Vector2(556.364014F, -147.776001F), new Vector2(555.296021F, -146.714005F), new Vector2(554.504028F, -145.382004F)); + builder.AddCubicBezier(new Vector2(553.711975F, -144.050003F), new Vector2(553.315979F, -142.556F), new Vector2(553.315979F, -140.899994F)); + builder.AddCubicBezier(new Vector2(553.315979F, -139.220001F), new Vector2(553.711975F, -137.701996F), new Vector2(554.504028F, -136.345993F)); + builder.AddCubicBezier(new Vector2(555.296021F, -134.990005F), new Vector2(556.364014F, -133.916F), new Vector2(557.708008F, -133.123993F)); + builder.AddCubicBezier(new Vector2(559.052002F, -132.332001F), new Vector2(560.552002F, -131.936005F), new Vector2(562.208008F, -131.936005F)); + builder.AddCubicBezier(new Vector2(563.888F, -131.936005F), new Vector2(565.406006F, -132.332001F), new Vector2(566.762024F, -133.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0994() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(551.804016F, -146.444F)); + builder.AddLine(new Vector2(551.804016F, -149.395996F)); + builder.AddLine(new Vector2(540.140015F, -149.395996F)); + builder.AddLine(new Vector2(540.140015F, -146.444F)); + builder.AddLine(new Vector2(551.804016F, -146.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(547.59198F, -132.296005F)); + builder.AddLine(new Vector2(547.59198F, -156.559998F)); + builder.AddLine(new Vector2(544.35199F, -156.559998F)); + builder.AddLine(new Vector2(544.35199F, -132.296005F)); + builder.AddLine(new Vector2(547.59198F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0995() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(517.783997F, -132.296005F)); + builder.AddLine(new Vector2(517.783997F, -149.395996F)); + builder.AddLine(new Vector2(514.544006F, -149.395996F)); + builder.AddLine(new Vector2(514.544006F, -132.296005F)); + builder.AddLine(new Vector2(517.783997F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(529.880005F, -132.296005F)); + builder.AddLine(new Vector2(529.880005F, -142.916F)); + builder.AddCubicBezier(new Vector2(529.880005F, -144.091995F), new Vector2(529.59198F, -145.201996F), new Vector2(529.015991F, -146.246002F)); + builder.AddCubicBezier(new Vector2(528.440002F, -147.289993F), new Vector2(527.653992F, -148.136002F), new Vector2(526.65802F, -148.783997F)); + builder.AddCubicBezier(new Vector2(525.661987F, -149.432007F), new Vector2(524.515991F, -149.755997F), new Vector2(523.219971F, -149.755997F)); + builder.AddCubicBezier(new Vector2(521.924011F, -149.755997F), new Vector2(520.76001F, -149.462006F), new Vector2(519.728027F, -148.873993F)); + builder.AddCubicBezier(new Vector2(518.695984F, -148.285995F), new Vector2(517.892029F, -147.488007F), new Vector2(517.315979F, -146.479996F)); + builder.AddCubicBezier(new Vector2(516.73999F, -145.472F), new Vector2(516.452026F, -144.320007F), new Vector2(516.452026F, -143.024002F)); + builder.AddLine(new Vector2(517.783997F, -142.268005F)); + builder.AddCubicBezier(new Vector2(517.783997F, -143.132004F), new Vector2(517.976013F, -143.899994F), new Vector2(518.359985F, -144.572006F)); + builder.AddCubicBezier(new Vector2(518.744019F, -145.244003F), new Vector2(519.271973F, -145.772003F), new Vector2(519.94397F, -146.156006F)); + builder.AddCubicBezier(new Vector2(520.616028F, -146.539993F), new Vector2(521.383972F, -146.731995F), new Vector2(522.247986F, -146.731995F)); + builder.AddCubicBezier(new Vector2(523.544006F, -146.731995F), new Vector2(524.593994F, -146.311996F), new Vector2(525.39801F, -145.472F)); + builder.AddCubicBezier(new Vector2(526.202026F, -144.632004F), new Vector2(526.604004F, -143.563995F), new Vector2(526.604004F, -142.268005F)); + builder.AddLine(new Vector2(526.604004F, -132.296005F)); + builder.AddLine(new Vector2(529.880005F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0996() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(499.135986F, -135.824005F)); + builder.AddCubicBezier(new Vector2(498.29599F, -136.328003F), new Vector2(497.635986F, -137.018005F), new Vector2(497.156006F, -137.893997F)); + builder.AddCubicBezier(new Vector2(496.675995F, -138.770004F), new Vector2(496.436005F, -139.772003F), new Vector2(496.436005F, -140.899994F)); + builder.AddCubicBezier(new Vector2(496.436005F, -142.003998F), new Vector2(496.675995F, -142.988007F), new Vector2(497.156006F, -143.852005F)); + builder.AddCubicBezier(new Vector2(497.635986F, -144.716003F), new Vector2(498.29599F, -145.393997F), new Vector2(499.135986F, -145.886002F)); + builder.AddCubicBezier(new Vector2(499.976013F, -146.378006F), new Vector2(500.924011F, -146.623993F), new Vector2(501.980011F, -146.623993F)); + builder.AddCubicBezier(new Vector2(503.084015F, -146.623993F), new Vector2(504.049988F, -146.378006F), new Vector2(504.877991F, -145.886002F)); + builder.AddCubicBezier(new Vector2(505.705994F, -145.393997F), new Vector2(506.365997F, -144.716003F), new Vector2(506.858002F, -143.852005F)); + builder.AddCubicBezier(new Vector2(507.350006F, -142.988007F), new Vector2(507.596008F, -142.003998F), new Vector2(507.596008F, -140.899994F)); + builder.AddCubicBezier(new Vector2(507.596008F, -139.772003F), new Vector2(507.355988F, -138.770004F), new Vector2(506.876007F, -137.893997F)); + builder.AddCubicBezier(new Vector2(506.395996F, -137.018005F), new Vector2(505.735992F, -136.328003F), new Vector2(504.895996F, -135.824005F)); + builder.AddCubicBezier(new Vector2(504.056F, -135.320007F), new Vector2(503.084015F, -135.067993F), new Vector2(501.980011F, -135.067993F)); + builder.AddCubicBezier(new Vector2(500.924011F, -135.067993F), new Vector2(499.976013F, -135.320007F), new Vector2(499.135986F, -135.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(506.533997F, -133.123993F)); + builder.AddCubicBezier(new Vector2(507.890015F, -133.916F), new Vector2(508.963989F, -134.990005F), new Vector2(509.756012F, -136.345993F)); + builder.AddCubicBezier(new Vector2(510.548004F, -137.701996F), new Vector2(510.944F, -139.220001F), new Vector2(510.944F, -140.899994F)); + builder.AddCubicBezier(new Vector2(510.944F, -142.556F), new Vector2(510.548004F, -144.056F), new Vector2(509.756012F, -145.399994F)); + builder.AddCubicBezier(new Vector2(508.963989F, -146.744003F), new Vector2(507.890015F, -147.806F), new Vector2(506.533997F, -148.585999F)); + builder.AddCubicBezier(new Vector2(505.178009F, -149.365997F), new Vector2(503.660004F, -149.755997F), new Vector2(501.980011F, -149.755997F)); + builder.AddCubicBezier(new Vector2(500.324005F, -149.755997F), new Vector2(498.824005F, -149.360001F), new Vector2(497.480011F, -148.567993F)); + builder.AddCubicBezier(new Vector2(496.135986F, -147.776001F), new Vector2(495.067993F, -146.714005F), new Vector2(494.276001F, -145.382004F)); + builder.AddCubicBezier(new Vector2(493.484009F, -144.050003F), new Vector2(493.088013F, -142.556F), new Vector2(493.088013F, -140.899994F)); + builder.AddCubicBezier(new Vector2(493.088013F, -139.220001F), new Vector2(493.484009F, -137.701996F), new Vector2(494.276001F, -136.345993F)); + builder.AddCubicBezier(new Vector2(495.067993F, -134.990005F), new Vector2(496.135986F, -133.916F), new Vector2(497.480011F, -133.123993F)); + builder.AddCubicBezier(new Vector2(498.824005F, -132.332001F), new Vector2(500.324005F, -131.936005F), new Vector2(501.980011F, -131.936005F)); + builder.AddCubicBezier(new Vector2(503.660004F, -131.936005F), new Vector2(505.178009F, -132.332001F), new Vector2(506.533997F, -133.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0997() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(489.272003F, -153.410004F)); + builder.AddCubicBezier(new Vector2(489.656006F, -153.806F), new Vector2(489.847992F, -154.304001F), new Vector2(489.847992F, -154.904007F)); + builder.AddCubicBezier(new Vector2(489.847992F, -155.479996F), new Vector2(489.656006F, -155.966003F), new Vector2(489.272003F, -156.362F)); + builder.AddCubicBezier(new Vector2(488.888F, -156.757996F), new Vector2(488.395996F, -156.955994F), new Vector2(487.79599F, -156.955994F)); + builder.AddCubicBezier(new Vector2(487.196014F, -156.955994F), new Vector2(486.70401F, -156.757996F), new Vector2(486.320007F, -156.362F)); + builder.AddCubicBezier(new Vector2(485.936005F, -155.966003F), new Vector2(485.743988F, -155.479996F), new Vector2(485.743988F, -154.904007F)); + builder.AddCubicBezier(new Vector2(485.743988F, -154.304001F), new Vector2(485.936005F, -153.806F), new Vector2(486.320007F, -153.410004F)); + builder.AddCubicBezier(new Vector2(486.70401F, -153.014008F), new Vector2(487.196014F, -152.815994F), new Vector2(487.79599F, -152.815994F)); + builder.AddCubicBezier(new Vector2(488.395996F, -152.815994F), new Vector2(488.888F, -153.014008F), new Vector2(489.272003F, -153.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(489.415985F, -132.296005F)); + builder.AddLine(new Vector2(489.415985F, -149.395996F)); + builder.AddLine(new Vector2(486.140015F, -149.395996F)); + builder.AddLine(new Vector2(486.140015F, -132.296005F)); + builder.AddLine(new Vector2(489.415985F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0998() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(480.794006F, -133.339996F)); + builder.AddCubicBezier(new Vector2(481.93399F, -134.276001F), new Vector2(482.503998F, -135.548004F), new Vector2(482.503998F, -137.156006F)); + builder.AddCubicBezier(new Vector2(482.503998F, -138.212006F), new Vector2(482.282013F, -139.063995F), new Vector2(481.838013F, -139.712006F)); + builder.AddCubicBezier(new Vector2(481.394012F, -140.360001F), new Vector2(480.824005F, -140.876007F), new Vector2(480.127991F, -141.259995F)); + builder.AddCubicBezier(new Vector2(479.432007F, -141.643997F), new Vector2(478.700012F, -141.949997F), new Vector2(477.932007F, -142.177994F)); + builder.AddCubicBezier(new Vector2(477.164001F, -142.406006F), new Vector2(476.425995F, -142.628006F), new Vector2(475.717987F, -142.843994F)); + builder.AddCubicBezier(new Vector2(475.01001F, -143.059998F), new Vector2(474.440002F, -143.324005F), new Vector2(474.007996F, -143.636002F)); + builder.AddCubicBezier(new Vector2(473.575989F, -143.947998F), new Vector2(473.359985F, -144.391998F), new Vector2(473.359985F, -144.968002F)); + builder.AddCubicBezier(new Vector2(473.359985F, -145.520004F), new Vector2(473.605988F, -145.964005F), new Vector2(474.097992F, -146.300003F)); + builder.AddCubicBezier(new Vector2(474.589996F, -146.636002F), new Vector2(475.303986F, -146.804001F), new Vector2(476.23999F, -146.804001F)); + builder.AddCubicBezier(new Vector2(477.127991F, -146.804001F), new Vector2(477.920013F, -146.636002F), new Vector2(478.615997F, -146.300003F)); + builder.AddCubicBezier(new Vector2(479.312012F, -145.964005F), new Vector2(479.911987F, -145.483994F), new Vector2(480.415985F, -144.860001F)); + builder.AddLine(new Vector2(482.503998F, -146.947998F)); + builder.AddCubicBezier(new Vector2(481.832001F, -147.884003F), new Vector2(480.973999F, -148.585999F), new Vector2(479.929993F, -149.054001F)); + builder.AddCubicBezier(new Vector2(478.885986F, -149.522003F), new Vector2(477.691986F, -149.755997F), new Vector2(476.347992F, -149.755997F)); + builder.AddCubicBezier(new Vector2(475.075989F, -149.755997F), new Vector2(473.984009F, -149.552002F), new Vector2(473.071991F, -149.143997F)); + builder.AddCubicBezier(new Vector2(472.160004F, -148.735992F), new Vector2(471.458008F, -148.154007F), new Vector2(470.966003F, -147.397995F)); + builder.AddCubicBezier(new Vector2(470.473999F, -146.641998F), new Vector2(470.227997F, -145.748001F), new Vector2(470.227997F, -144.716003F)); + builder.AddCubicBezier(new Vector2(470.227997F, -143.684006F), new Vector2(470.450012F, -142.850006F), new Vector2(470.894012F, -142.214005F)); + builder.AddCubicBezier(new Vector2(471.338013F, -141.578003F), new Vector2(471.90799F, -141.080002F), new Vector2(472.604004F, -140.720001F)); + builder.AddCubicBezier(new Vector2(473.299988F, -140.360001F), new Vector2(474.037994F, -140.072006F), new Vector2(474.817993F, -139.856003F)); + builder.AddCubicBezier(new Vector2(475.597992F, -139.639999F), new Vector2(476.335999F, -139.417999F), new Vector2(477.032013F, -139.190002F)); + builder.AddCubicBezier(new Vector2(477.727997F, -138.962006F), new Vector2(478.298004F, -138.673996F), new Vector2(478.742004F, -138.326004F)); + builder.AddCubicBezier(new Vector2(479.186005F, -137.977997F), new Vector2(479.40799F, -137.492004F), new Vector2(479.40799F, -136.867996F)); + builder.AddCubicBezier(new Vector2(479.40799F, -136.244003F), new Vector2(479.131989F, -135.757996F), new Vector2(478.579987F, -135.410004F)); + builder.AddCubicBezier(new Vector2(478.028015F, -135.061996F), new Vector2(477.247986F, -134.888F), new Vector2(476.23999F, -134.888F)); + builder.AddCubicBezier(new Vector2(475.231995F, -134.888F), new Vector2(474.320007F, -135.074005F), new Vector2(473.503998F, -135.445999F)); + builder.AddCubicBezier(new Vector2(472.687988F, -135.817993F), new Vector2(471.967987F, -136.388F), new Vector2(471.343994F, -137.156006F)); + builder.AddLine(new Vector2(469.256012F, -135.067993F)); + builder.AddCubicBezier(new Vector2(469.783997F, -134.419998F), new Vector2(470.402008F, -133.862F), new Vector2(471.109985F, -133.393997F)); + builder.AddCubicBezier(new Vector2(471.817993F, -132.925995F), new Vector2(472.604004F, -132.565994F), new Vector2(473.467987F, -132.313995F)); + builder.AddCubicBezier(new Vector2(474.332001F, -132.061996F), new Vector2(475.243988F, -131.936005F), new Vector2(476.20401F, -131.936005F)); + builder.AddCubicBezier(new Vector2(478.123993F, -131.936005F), new Vector2(479.653992F, -132.404007F), new Vector2(480.794006F, -133.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_0999() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(462.884003F, -132.925995F)); + builder.AddCubicBezier(new Vector2(463.988007F, -133.537994F), new Vector2(464.85199F, -134.408005F), new Vector2(465.476013F, -135.535995F)); + builder.AddCubicBezier(new Vector2(466.100006F, -136.664001F), new Vector2(466.411987F, -137.972F), new Vector2(466.411987F, -139.460007F)); + builder.AddLine(new Vector2(466.411987F, -149.395996F)); + builder.AddLine(new Vector2(463.171997F, -149.395996F)); + builder.AddLine(new Vector2(463.171997F, -139.604004F)); + builder.AddCubicBezier(new Vector2(463.171997F, -138.188004F), new Vector2(462.812012F, -137.078003F), new Vector2(462.09201F, -136.274002F)); + builder.AddCubicBezier(new Vector2(461.372009F, -135.470001F), new Vector2(460.376007F, -135.067993F), new Vector2(459.104004F, -135.067993F)); + builder.AddCubicBezier(new Vector2(458.264008F, -135.067993F), new Vector2(457.532013F, -135.248001F), new Vector2(456.90799F, -135.608002F)); + builder.AddCubicBezier(new Vector2(456.283997F, -135.968002F), new Vector2(455.809998F, -136.490005F), new Vector2(455.485992F, -137.173996F)); + builder.AddCubicBezier(new Vector2(455.161987F, -137.858002F), new Vector2(455F, -138.667999F), new Vector2(455F, -139.604004F)); + builder.AddLine(new Vector2(455F, -149.395996F)); + builder.AddLine(new Vector2(451.76001F, -149.395996F)); + builder.AddLine(new Vector2(451.76001F, -139.460007F)); + builder.AddCubicBezier(new Vector2(451.76001F, -137.972F), new Vector2(452.071991F, -136.664001F), new Vector2(452.696014F, -135.535995F)); + builder.AddCubicBezier(new Vector2(453.320007F, -134.408005F), new Vector2(454.190002F, -133.537994F), new Vector2(455.306F, -132.925995F)); + builder.AddCubicBezier(new Vector2(456.421997F, -132.313995F), new Vector2(457.687988F, -132.007996F), new Vector2(459.104004F, -132.007996F)); + builder.AddCubicBezier(new Vector2(460.519989F, -132.007996F), new Vector2(461.779999F, -132.313995F), new Vector2(462.884003F, -132.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1000() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(448.951996F, -146.444F)); + builder.AddLine(new Vector2(448.951996F, -149.395996F)); + builder.AddLine(new Vector2(436.063995F, -149.395996F)); + builder.AddLine(new Vector2(436.063995F, -146.444F)); + builder.AddLine(new Vector2(448.951996F, -146.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(443.515991F, -132.296005F)); + builder.AddLine(new Vector2(443.515991F, -151.951996F)); + builder.AddCubicBezier(new Vector2(443.515991F, -153.007996F), new Vector2(443.798004F, -153.830002F), new Vector2(444.362F, -154.417999F)); + builder.AddCubicBezier(new Vector2(444.925995F, -155.005997F), new Vector2(445.723999F, -155.300003F), new Vector2(446.756012F, -155.300003F)); + builder.AddCubicBezier(new Vector2(447.308014F, -155.300003F), new Vector2(447.776001F, -155.216003F), new Vector2(448.160004F, -155.048004F)); + builder.AddCubicBezier(new Vector2(448.544006F, -154.880005F), new Vector2(448.891998F, -154.628006F), new Vector2(449.20401F, -154.292007F)); + builder.AddLine(new Vector2(451.328003F, -156.380005F)); + builder.AddCubicBezier(new Vector2(450.727997F, -157.028F), new Vector2(450.067993F, -157.520004F), new Vector2(449.347992F, -157.856003F)); + builder.AddCubicBezier(new Vector2(448.627991F, -158.192001F), new Vector2(447.776001F, -158.360001F), new Vector2(446.791992F, -158.360001F)); + builder.AddCubicBezier(new Vector2(445.496002F, -158.360001F), new Vector2(444.355988F, -158.084F), new Vector2(443.372009F, -157.531998F)); + builder.AddCubicBezier(new Vector2(442.388F, -156.979996F), new Vector2(441.619995F, -156.223999F), new Vector2(441.067993F, -155.264008F)); + builder.AddCubicBezier(new Vector2(440.515991F, -154.304001F), new Vector2(440.23999F, -153.199997F), new Vector2(440.23999F, -151.951996F)); + builder.AddLine(new Vector2(440.23999F, -132.296005F)); + builder.AddLine(new Vector2(443.515991F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1001() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(421.556F, -132.296005F)); + builder.AddLine(new Vector2(421.556F, -149.395996F)); + builder.AddLine(new Vector2(418.31601F, -149.395996F)); + builder.AddLine(new Vector2(418.31601F, -132.296005F)); + builder.AddLine(new Vector2(421.556F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(433.652008F, -132.296005F)); + builder.AddLine(new Vector2(433.652008F, -142.916F)); + builder.AddCubicBezier(new Vector2(433.652008F, -144.091995F), new Vector2(433.364014F, -145.201996F), new Vector2(432.787994F, -146.246002F)); + builder.AddCubicBezier(new Vector2(432.212006F, -147.289993F), new Vector2(431.425995F, -148.136002F), new Vector2(430.429993F, -148.783997F)); + builder.AddCubicBezier(new Vector2(429.43399F, -149.432007F), new Vector2(428.287994F, -149.755997F), new Vector2(426.992004F, -149.755997F)); + builder.AddCubicBezier(new Vector2(425.696014F, -149.755997F), new Vector2(424.532013F, -149.462006F), new Vector2(423.5F, -148.873993F)); + builder.AddCubicBezier(new Vector2(422.467987F, -148.285995F), new Vector2(421.664001F, -147.488007F), new Vector2(421.088013F, -146.479996F)); + builder.AddCubicBezier(new Vector2(420.511993F, -145.472F), new Vector2(420.223999F, -144.320007F), new Vector2(420.223999F, -143.024002F)); + builder.AddLine(new Vector2(421.556F, -142.268005F)); + builder.AddCubicBezier(new Vector2(421.556F, -143.132004F), new Vector2(421.747986F, -143.899994F), new Vector2(422.131989F, -144.572006F)); + builder.AddCubicBezier(new Vector2(422.515991F, -145.244003F), new Vector2(423.044006F, -145.772003F), new Vector2(423.716003F, -146.156006F)); + builder.AddCubicBezier(new Vector2(424.388F, -146.539993F), new Vector2(425.156006F, -146.731995F), new Vector2(426.019989F, -146.731995F)); + builder.AddCubicBezier(new Vector2(427.31601F, -146.731995F), new Vector2(428.365997F, -146.311996F), new Vector2(429.170013F, -145.472F)); + builder.AddCubicBezier(new Vector2(429.973999F, -144.632004F), new Vector2(430.376007F, -143.563995F), new Vector2(430.376007F, -142.268005F)); + builder.AddLine(new Vector2(430.376007F, -132.296005F)); + builder.AddLine(new Vector2(433.652008F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1002() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(402.90799F, -135.824005F)); + builder.AddCubicBezier(new Vector2(402.067993F, -136.328003F), new Vector2(401.40799F, -137.018005F), new Vector2(400.928009F, -137.893997F)); + builder.AddCubicBezier(new Vector2(400.447998F, -138.770004F), new Vector2(400.208008F, -139.772003F), new Vector2(400.208008F, -140.899994F)); + builder.AddCubicBezier(new Vector2(400.208008F, -142.003998F), new Vector2(400.447998F, -142.988007F), new Vector2(400.928009F, -143.852005F)); + builder.AddCubicBezier(new Vector2(401.40799F, -144.716003F), new Vector2(402.067993F, -145.393997F), new Vector2(402.90799F, -145.886002F)); + builder.AddCubicBezier(new Vector2(403.747986F, -146.378006F), new Vector2(404.696014F, -146.623993F), new Vector2(405.752014F, -146.623993F)); + builder.AddCubicBezier(new Vector2(406.855988F, -146.623993F), new Vector2(407.821991F, -146.378006F), new Vector2(408.649994F, -145.886002F)); + builder.AddCubicBezier(new Vector2(409.477997F, -145.393997F), new Vector2(410.138F, -144.716003F), new Vector2(410.630005F, -143.852005F)); + builder.AddCubicBezier(new Vector2(411.122009F, -142.988007F), new Vector2(411.368011F, -142.003998F), new Vector2(411.368011F, -140.899994F)); + builder.AddCubicBezier(new Vector2(411.368011F, -139.772003F), new Vector2(411.127991F, -138.770004F), new Vector2(410.64801F, -137.893997F)); + builder.AddCubicBezier(new Vector2(410.167999F, -137.018005F), new Vector2(409.507996F, -136.328003F), new Vector2(408.667999F, -135.824005F)); + builder.AddCubicBezier(new Vector2(407.828003F, -135.320007F), new Vector2(406.855988F, -135.067993F), new Vector2(405.752014F, -135.067993F)); + builder.AddCubicBezier(new Vector2(404.696014F, -135.067993F), new Vector2(403.747986F, -135.320007F), new Vector2(402.90799F, -135.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(410.306F, -133.123993F)); + builder.AddCubicBezier(new Vector2(411.661987F, -133.916F), new Vector2(412.735992F, -134.990005F), new Vector2(413.528015F, -136.345993F)); + builder.AddCubicBezier(new Vector2(414.320007F, -137.701996F), new Vector2(414.716003F, -139.220001F), new Vector2(414.716003F, -140.899994F)); + builder.AddCubicBezier(new Vector2(414.716003F, -142.556F), new Vector2(414.320007F, -144.056F), new Vector2(413.528015F, -145.399994F)); + builder.AddCubicBezier(new Vector2(412.735992F, -146.744003F), new Vector2(411.661987F, -147.806F), new Vector2(410.306F, -148.585999F)); + builder.AddCubicBezier(new Vector2(408.950012F, -149.365997F), new Vector2(407.432007F, -149.755997F), new Vector2(405.752014F, -149.755997F)); + builder.AddCubicBezier(new Vector2(404.096008F, -149.755997F), new Vector2(402.596008F, -149.360001F), new Vector2(401.252014F, -148.567993F)); + builder.AddCubicBezier(new Vector2(399.90799F, -147.776001F), new Vector2(398.839996F, -146.714005F), new Vector2(398.048004F, -145.382004F)); + builder.AddCubicBezier(new Vector2(397.256012F, -144.050003F), new Vector2(396.859985F, -142.556F), new Vector2(396.859985F, -140.899994F)); + builder.AddCubicBezier(new Vector2(396.859985F, -139.220001F), new Vector2(397.256012F, -137.701996F), new Vector2(398.048004F, -136.345993F)); + builder.AddCubicBezier(new Vector2(398.839996F, -134.990005F), new Vector2(399.90799F, -133.916F), new Vector2(401.252014F, -133.123993F)); + builder.AddCubicBezier(new Vector2(402.596008F, -132.332001F), new Vector2(404.096008F, -131.936005F), new Vector2(405.752014F, -131.936005F)); + builder.AddCubicBezier(new Vector2(407.432007F, -131.936005F), new Vector2(408.950012F, -132.332001F), new Vector2(410.306F, -133.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1003() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(392.197998F, -132.692001F)); + builder.AddCubicBezier(new Vector2(393.338013F, -133.195999F), new Vector2(394.303986F, -133.904007F), new Vector2(395.096008F, -134.815994F)); + builder.AddLine(new Vector2(392.971985F, -136.975998F)); + builder.AddCubicBezier(new Vector2(392.420013F, -136.352005F), new Vector2(391.765991F, -135.878006F), new Vector2(391.01001F, -135.554001F)); + builder.AddCubicBezier(new Vector2(390.253998F, -135.229996F), new Vector2(389.420013F, -135.067993F), new Vector2(388.507996F, -135.067993F)); + builder.AddCubicBezier(new Vector2(387.428009F, -135.067993F), new Vector2(386.467987F, -135.320007F), new Vector2(385.627991F, -135.824005F)); + builder.AddCubicBezier(new Vector2(384.787994F, -136.328003F), new Vector2(384.127991F, -137.011993F), new Vector2(383.64801F, -137.876007F)); + builder.AddCubicBezier(new Vector2(383.167999F, -138.740005F), new Vector2(382.928009F, -139.735992F), new Vector2(382.928009F, -140.863998F)); + builder.AddCubicBezier(new Vector2(382.928009F, -141.992004F), new Vector2(383.167999F, -142.988007F), new Vector2(383.64801F, -143.852005F)); + builder.AddCubicBezier(new Vector2(384.127991F, -144.716003F), new Vector2(384.787994F, -145.393997F), new Vector2(385.627991F, -145.886002F)); + builder.AddCubicBezier(new Vector2(386.467987F, -146.378006F), new Vector2(387.428009F, -146.623993F), new Vector2(388.507996F, -146.623993F)); + builder.AddCubicBezier(new Vector2(389.395996F, -146.623993F), new Vector2(390.223999F, -146.462006F), new Vector2(390.992004F, -146.138F)); + builder.AddCubicBezier(new Vector2(391.76001F, -145.813995F), new Vector2(392.40799F, -145.339996F), new Vector2(392.936005F, -144.716003F)); + builder.AddLine(new Vector2(395.096008F, -146.876007F)); + builder.AddCubicBezier(new Vector2(394.279999F, -147.811996F), new Vector2(393.308014F, -148.526001F), new Vector2(392.179993F, -149.018005F)); + builder.AddCubicBezier(new Vector2(391.052002F, -149.509995F), new Vector2(389.828003F, -149.755997F), new Vector2(388.507996F, -149.755997F)); + builder.AddCubicBezier(new Vector2(386.828003F, -149.755997F), new Vector2(385.309998F, -149.365997F), new Vector2(383.95401F, -148.585999F)); + builder.AddCubicBezier(new Vector2(382.597992F, -147.806F), new Vector2(381.529999F, -146.744003F), new Vector2(380.75F, -145.399994F)); + builder.AddCubicBezier(new Vector2(379.970001F, -144.056F), new Vector2(379.579987F, -142.544006F), new Vector2(379.579987F, -140.863998F)); + builder.AddCubicBezier(new Vector2(379.579987F, -139.207993F), new Vector2(379.970001F, -137.701996F), new Vector2(380.75F, -136.345993F)); + builder.AddCubicBezier(new Vector2(381.529999F, -134.990005F), new Vector2(382.597992F, -133.916F), new Vector2(383.95401F, -133.123993F)); + builder.AddCubicBezier(new Vector2(385.309998F, -132.332001F), new Vector2(386.828003F, -131.936005F), new Vector2(388.507996F, -131.936005F)); + builder.AddCubicBezier(new Vector2(389.828003F, -131.936005F), new Vector2(391.058014F, -132.188004F), new Vector2(392.197998F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1004() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(368.528015F, -158F)); + builder.AddLine(new Vector2(365.252014F, -158F)); + builder.AddLine(new Vector2(365.252014F, -145.220001F)); + builder.AddLine(new Vector2(365.864014F, -141.080002F)); + builder.AddLine(new Vector2(365.252014F, -136.904007F)); + builder.AddLine(new Vector2(365.252014F, -132.296005F)); + builder.AddLine(new Vector2(368.528015F, -132.296005F)); + builder.AddLine(new Vector2(368.528015F, -158F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(357.205994F, -135.733994F)); + builder.AddCubicBezier(new Vector2(356.377991F, -136.225998F), new Vector2(355.730011F, -136.916F), new Vector2(355.261993F, -137.804001F)); + builder.AddCubicBezier(new Vector2(354.794006F, -138.692001F), new Vector2(354.559998F, -139.712006F), new Vector2(354.559998F, -140.863998F)); + builder.AddCubicBezier(new Vector2(354.559998F, -142.016006F), new Vector2(354.794006F, -143.029999F), new Vector2(355.261993F, -143.906006F)); + builder.AddCubicBezier(new Vector2(355.730011F, -144.781998F), new Vector2(356.372009F, -145.466003F), new Vector2(357.187988F, -145.957993F)); + builder.AddCubicBezier(new Vector2(358.003998F, -146.449997F), new Vector2(358.951996F, -146.695999F), new Vector2(360.032013F, -146.695999F)); + builder.AddCubicBezier(new Vector2(361.112F, -146.695999F), new Vector2(362.059998F, -146.444F), new Vector2(362.876007F, -145.940002F)); + builder.AddCubicBezier(new Vector2(363.691986F, -145.436005F), new Vector2(364.328003F, -144.746002F), new Vector2(364.783997F, -143.869995F)); + builder.AddCubicBezier(new Vector2(365.23999F, -142.994003F), new Vector2(365.467987F, -141.979996F), new Vector2(365.467987F, -140.828003F)); + builder.AddCubicBezier(new Vector2(365.467987F, -139.699997F), new Vector2(365.23999F, -138.697998F), new Vector2(364.783997F, -137.822006F)); + builder.AddCubicBezier(new Vector2(364.328003F, -136.945999F), new Vector2(363.691986F, -136.255997F), new Vector2(362.876007F, -135.751999F)); + builder.AddCubicBezier(new Vector2(362.059998F, -135.248001F), new Vector2(361.112F, -134.996002F), new Vector2(360.032013F, -134.996002F)); + builder.AddCubicBezier(new Vector2(358.976013F, -134.996002F), new Vector2(358.033997F, -135.242004F), new Vector2(357.205994F, -135.733994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(363.019989F, -132.746002F)); + builder.AddCubicBezier(new Vector2(364.052002F, -133.285995F), new Vector2(364.880005F, -134.035995F), new Vector2(365.503998F, -134.996002F)); + builder.AddCubicBezier(new Vector2(366.127991F, -135.955994F), new Vector2(366.476013F, -137.048004F), new Vector2(366.548004F, -138.272003F)); + builder.AddLine(new Vector2(366.548004F, -143.419998F)); + builder.AddCubicBezier(new Vector2(366.476013F, -144.667999F), new Vector2(366.122009F, -145.766006F), new Vector2(365.485992F, -146.714005F)); + builder.AddCubicBezier(new Vector2(364.850006F, -147.662003F), new Vector2(364.015991F, -148.406006F), new Vector2(362.984009F, -148.945999F)); + builder.AddCubicBezier(new Vector2(361.951996F, -149.485992F), new Vector2(360.787994F, -149.755997F), new Vector2(359.492004F, -149.755997F)); + builder.AddCubicBezier(new Vector2(357.932007F, -149.755997F), new Vector2(356.528015F, -149.360001F), new Vector2(355.279999F, -148.567993F)); + builder.AddCubicBezier(new Vector2(354.032013F, -147.776001F), new Vector2(353.041992F, -146.707993F), new Vector2(352.309998F, -145.363998F)); + builder.AddCubicBezier(new Vector2(351.578003F, -144.020004F), new Vector2(351.212006F, -142.507996F), new Vector2(351.212006F, -140.828003F)); + builder.AddCubicBezier(new Vector2(351.212006F, -139.147995F), new Vector2(351.578003F, -137.636002F), new Vector2(352.309998F, -136.292007F)); + builder.AddCubicBezier(new Vector2(353.041992F, -134.947998F), new Vector2(354.032013F, -133.886002F), new Vector2(355.279999F, -133.106003F)); + builder.AddCubicBezier(new Vector2(356.528015F, -132.326004F), new Vector2(357.932007F, -131.936005F), new Vector2(359.492004F, -131.936005F)); + builder.AddCubicBezier(new Vector2(360.812012F, -131.936005F), new Vector2(361.988007F, -132.205994F), new Vector2(363.019989F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1005() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(335.803986F, -132.296005F)); + builder.AddLine(new Vector2(335.803986F, -149.395996F)); + builder.AddLine(new Vector2(332.563995F, -149.395996F)); + builder.AddLine(new Vector2(332.563995F, -132.296005F)); + builder.AddLine(new Vector2(335.803986F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(347.899994F, -132.296005F)); + builder.AddLine(new Vector2(347.899994F, -142.916F)); + builder.AddCubicBezier(new Vector2(347.899994F, -144.091995F), new Vector2(347.612F, -145.201996F), new Vector2(347.036011F, -146.246002F)); + builder.AddCubicBezier(new Vector2(346.459991F, -147.289993F), new Vector2(345.674011F, -148.136002F), new Vector2(344.678009F, -148.783997F)); + builder.AddCubicBezier(new Vector2(343.682007F, -149.432007F), new Vector2(342.536011F, -149.755997F), new Vector2(341.23999F, -149.755997F)); + builder.AddCubicBezier(new Vector2(339.944F, -149.755997F), new Vector2(338.779999F, -149.462006F), new Vector2(337.747986F, -148.873993F)); + builder.AddCubicBezier(new Vector2(336.716003F, -148.285995F), new Vector2(335.911987F, -147.488007F), new Vector2(335.335999F, -146.479996F)); + builder.AddCubicBezier(new Vector2(334.76001F, -145.472F), new Vector2(334.471985F, -144.320007F), new Vector2(334.471985F, -143.024002F)); + builder.AddLine(new Vector2(335.803986F, -142.268005F)); + builder.AddCubicBezier(new Vector2(335.803986F, -143.132004F), new Vector2(335.996002F, -143.899994F), new Vector2(336.380005F, -144.572006F)); + builder.AddCubicBezier(new Vector2(336.764008F, -145.244003F), new Vector2(337.291992F, -145.772003F), new Vector2(337.963989F, -146.156006F)); + builder.AddCubicBezier(new Vector2(338.635986F, -146.539993F), new Vector2(339.403992F, -146.731995F), new Vector2(340.268005F, -146.731995F)); + builder.AddCubicBezier(new Vector2(341.563995F, -146.731995F), new Vector2(342.614014F, -146.311996F), new Vector2(343.417999F, -145.472F)); + builder.AddCubicBezier(new Vector2(344.221985F, -144.632004F), new Vector2(344.623993F, -143.563995F), new Vector2(344.623993F, -142.268005F)); + builder.AddLine(new Vector2(344.623993F, -132.296005F)); + builder.AddLine(new Vector2(347.899994F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1006() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(327.847992F, -132.296005F)); + builder.AddLine(new Vector2(327.847992F, -149.395996F)); + builder.AddLine(new Vector2(324.571991F, -149.395996F)); + builder.AddLine(new Vector2(324.571991F, -145.220001F)); + builder.AddLine(new Vector2(325.18399F, -141.080002F)); + builder.AddLine(new Vector2(324.571991F, -136.904007F)); + builder.AddLine(new Vector2(324.571991F, -132.296005F)); + builder.AddLine(new Vector2(327.847992F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(316.544006F, -135.751999F)); + builder.AddCubicBezier(new Vector2(315.70401F, -136.255997F), new Vector2(315.049988F, -136.945999F), new Vector2(314.582001F, -137.822006F)); + builder.AddCubicBezier(new Vector2(314.114014F, -138.697998F), new Vector2(313.880005F, -139.712006F), new Vector2(313.880005F, -140.863998F)); + builder.AddCubicBezier(new Vector2(313.880005F, -141.992004F), new Vector2(314.114014F, -142.994003F), new Vector2(314.582001F, -143.869995F)); + builder.AddCubicBezier(new Vector2(315.049988F, -144.746002F), new Vector2(315.697998F, -145.436005F), new Vector2(316.526001F, -145.940002F)); + builder.AddCubicBezier(new Vector2(317.354004F, -146.444F), new Vector2(318.308014F, -146.695999F), new Vector2(319.388F, -146.695999F)); + builder.AddCubicBezier(new Vector2(320.467987F, -146.695999F), new Vector2(321.410004F, -146.449997F), new Vector2(322.213989F, -145.957993F)); + builder.AddCubicBezier(new Vector2(323.018005F, -145.466003F), new Vector2(323.64801F, -144.776001F), new Vector2(324.104004F, -143.888F)); + builder.AddCubicBezier(new Vector2(324.559998F, -143F), new Vector2(324.787994F, -141.979996F), new Vector2(324.787994F, -140.828003F)); + builder.AddCubicBezier(new Vector2(324.787994F, -139.123993F), new Vector2(324.29599F, -137.725998F), new Vector2(323.312012F, -136.634003F)); + builder.AddCubicBezier(new Vector2(322.328003F, -135.542007F), new Vector2(321.032013F, -134.996002F), new Vector2(319.424011F, -134.996002F)); + builder.AddCubicBezier(new Vector2(318.343994F, -134.996002F), new Vector2(317.384003F, -135.248001F), new Vector2(316.544006F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(322.376007F, -132.746002F)); + builder.AddCubicBezier(new Vector2(323.40799F, -133.285995F), new Vector2(324.230011F, -134.035995F), new Vector2(324.84201F, -134.996002F)); + builder.AddCubicBezier(new Vector2(325.45401F, -135.955994F), new Vector2(325.79599F, -137.048004F), new Vector2(325.868011F, -138.272003F)); + builder.AddLine(new Vector2(325.868011F, -143.419998F)); + builder.AddCubicBezier(new Vector2(325.79599F, -144.667999F), new Vector2(325.447998F, -145.766006F), new Vector2(324.824005F, -146.714005F)); + builder.AddCubicBezier(new Vector2(324.200012F, -147.662003F), new Vector2(323.377991F, -148.406006F), new Vector2(322.358002F, -148.945999F)); + builder.AddCubicBezier(new Vector2(321.338013F, -149.485992F), new Vector2(320.179993F, -149.755997F), new Vector2(318.884003F, -149.755997F)); + builder.AddCubicBezier(new Vector2(317.299988F, -149.755997F), new Vector2(315.877991F, -149.360001F), new Vector2(314.618011F, -148.567993F)); + builder.AddCubicBezier(new Vector2(313.358002F, -147.776001F), new Vector2(312.362F, -146.707993F), new Vector2(311.630005F, -145.363998F)); + builder.AddCubicBezier(new Vector2(310.89801F, -144.020004F), new Vector2(310.532013F, -142.507996F), new Vector2(310.532013F, -140.828003F)); + builder.AddCubicBezier(new Vector2(310.532013F, -139.147995F), new Vector2(310.89801F, -137.636002F), new Vector2(311.630005F, -136.292007F)); + builder.AddCubicBezier(new Vector2(312.362F, -134.947998F), new Vector2(313.358002F, -133.886002F), new Vector2(314.618011F, -133.106003F)); + builder.AddCubicBezier(new Vector2(315.877991F, -132.326004F), new Vector2(317.299988F, -131.936005F), new Vector2(318.884003F, -131.936005F)); + builder.AddCubicBezier(new Vector2(320.179993F, -131.936005F), new Vector2(321.343994F, -132.205994F), new Vector2(322.376007F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1007() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(298.813995F, -133.339996F)); + builder.AddCubicBezier(new Vector2(299.95401F, -134.276001F), new Vector2(300.523987F, -135.548004F), new Vector2(300.523987F, -137.156006F)); + builder.AddCubicBezier(new Vector2(300.523987F, -138.212006F), new Vector2(300.302002F, -139.063995F), new Vector2(299.858002F, -139.712006F)); + builder.AddCubicBezier(new Vector2(299.414001F, -140.360001F), new Vector2(298.843994F, -140.876007F), new Vector2(298.14801F, -141.259995F)); + builder.AddCubicBezier(new Vector2(297.451996F, -141.643997F), new Vector2(296.720001F, -141.949997F), new Vector2(295.951996F, -142.177994F)); + builder.AddCubicBezier(new Vector2(295.18399F, -142.406006F), new Vector2(294.446014F, -142.628006F), new Vector2(293.738007F, -142.843994F)); + builder.AddCubicBezier(new Vector2(293.029999F, -143.059998F), new Vector2(292.459991F, -143.324005F), new Vector2(292.028015F, -143.636002F)); + builder.AddCubicBezier(new Vector2(291.596008F, -143.947998F), new Vector2(291.380005F, -144.391998F), new Vector2(291.380005F, -144.968002F)); + builder.AddCubicBezier(new Vector2(291.380005F, -145.520004F), new Vector2(291.626007F, -145.964005F), new Vector2(292.118011F, -146.300003F)); + builder.AddCubicBezier(new Vector2(292.609985F, -146.636002F), new Vector2(293.324005F, -146.804001F), new Vector2(294.26001F, -146.804001F)); + builder.AddCubicBezier(new Vector2(295.14801F, -146.804001F), new Vector2(295.940002F, -146.636002F), new Vector2(296.635986F, -146.300003F)); + builder.AddCubicBezier(new Vector2(297.332001F, -145.964005F), new Vector2(297.932007F, -145.483994F), new Vector2(298.436005F, -144.860001F)); + builder.AddLine(new Vector2(300.523987F, -146.947998F)); + builder.AddCubicBezier(new Vector2(299.85199F, -147.884003F), new Vector2(298.993988F, -148.585999F), new Vector2(297.950012F, -149.054001F)); + builder.AddCubicBezier(new Vector2(296.906006F, -149.522003F), new Vector2(295.712006F, -149.755997F), new Vector2(294.368011F, -149.755997F)); + builder.AddCubicBezier(new Vector2(293.096008F, -149.755997F), new Vector2(292.003998F, -149.552002F), new Vector2(291.09201F, -149.143997F)); + builder.AddCubicBezier(new Vector2(290.179993F, -148.735992F), new Vector2(289.477997F, -148.154007F), new Vector2(288.985992F, -147.397995F)); + builder.AddCubicBezier(new Vector2(288.493988F, -146.641998F), new Vector2(288.247986F, -145.748001F), new Vector2(288.247986F, -144.716003F)); + builder.AddCubicBezier(new Vector2(288.247986F, -143.684006F), new Vector2(288.470001F, -142.850006F), new Vector2(288.914001F, -142.214005F)); + builder.AddCubicBezier(new Vector2(289.358002F, -141.578003F), new Vector2(289.928009F, -141.080002F), new Vector2(290.623993F, -140.720001F)); + builder.AddCubicBezier(new Vector2(291.320007F, -140.360001F), new Vector2(292.058014F, -140.072006F), new Vector2(292.838013F, -139.856003F)); + builder.AddCubicBezier(new Vector2(293.618011F, -139.639999F), new Vector2(294.355988F, -139.417999F), new Vector2(295.052002F, -139.190002F)); + builder.AddCubicBezier(new Vector2(295.747986F, -138.962006F), new Vector2(296.317993F, -138.673996F), new Vector2(296.761993F, -138.326004F)); + builder.AddCubicBezier(new Vector2(297.205994F, -137.977997F), new Vector2(297.428009F, -137.492004F), new Vector2(297.428009F, -136.867996F)); + builder.AddCubicBezier(new Vector2(297.428009F, -136.244003F), new Vector2(297.152008F, -135.757996F), new Vector2(296.600006F, -135.410004F)); + builder.AddCubicBezier(new Vector2(296.048004F, -135.061996F), new Vector2(295.268005F, -134.888F), new Vector2(294.26001F, -134.888F)); + builder.AddCubicBezier(new Vector2(293.252014F, -134.888F), new Vector2(292.339996F, -135.074005F), new Vector2(291.523987F, -135.445999F)); + builder.AddCubicBezier(new Vector2(290.708008F, -135.817993F), new Vector2(289.988007F, -136.388F), new Vector2(289.364014F, -137.156006F)); + builder.AddLine(new Vector2(287.276001F, -135.067993F)); + builder.AddCubicBezier(new Vector2(287.803986F, -134.419998F), new Vector2(288.421997F, -133.862F), new Vector2(289.130005F, -133.393997F)); + builder.AddCubicBezier(new Vector2(289.838013F, -132.925995F), new Vector2(290.623993F, -132.565994F), new Vector2(291.488007F, -132.313995F)); + builder.AddCubicBezier(new Vector2(292.35199F, -132.061996F), new Vector2(293.264008F, -131.936005F), new Vector2(294.223999F, -131.936005F)); + builder.AddCubicBezier(new Vector2(296.144012F, -131.936005F), new Vector2(297.674011F, -132.404007F), new Vector2(298.813995F, -133.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1008() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(273.380005F, -135.824005F)); + builder.AddCubicBezier(new Vector2(272.540009F, -136.328003F), new Vector2(271.880005F, -137.018005F), new Vector2(271.399994F, -137.893997F)); + builder.AddCubicBezier(new Vector2(270.920013F, -138.770004F), new Vector2(270.679993F, -139.772003F), new Vector2(270.679993F, -140.899994F)); + builder.AddCubicBezier(new Vector2(270.679993F, -142.003998F), new Vector2(270.920013F, -142.988007F), new Vector2(271.399994F, -143.852005F)); + builder.AddCubicBezier(new Vector2(271.880005F, -144.716003F), new Vector2(272.540009F, -145.393997F), new Vector2(273.380005F, -145.886002F)); + builder.AddCubicBezier(new Vector2(274.220001F, -146.378006F), new Vector2(275.167999F, -146.623993F), new Vector2(276.223999F, -146.623993F)); + builder.AddCubicBezier(new Vector2(277.328003F, -146.623993F), new Vector2(278.294006F, -146.378006F), new Vector2(279.122009F, -145.886002F)); + builder.AddCubicBezier(new Vector2(279.950012F, -145.393997F), new Vector2(280.609985F, -144.716003F), new Vector2(281.10199F, -143.852005F)); + builder.AddCubicBezier(new Vector2(281.593994F, -142.988007F), new Vector2(281.839996F, -142.003998F), new Vector2(281.839996F, -140.899994F)); + builder.AddCubicBezier(new Vector2(281.839996F, -139.772003F), new Vector2(281.600006F, -138.770004F), new Vector2(281.119995F, -137.893997F)); + builder.AddCubicBezier(new Vector2(280.640015F, -137.018005F), new Vector2(279.980011F, -136.328003F), new Vector2(279.140015F, -135.824005F)); + builder.AddCubicBezier(new Vector2(278.299988F, -135.320007F), new Vector2(277.328003F, -135.067993F), new Vector2(276.223999F, -135.067993F)); + builder.AddCubicBezier(new Vector2(275.167999F, -135.067993F), new Vector2(274.220001F, -135.320007F), new Vector2(273.380005F, -135.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(280.778015F, -133.123993F)); + builder.AddCubicBezier(new Vector2(282.134003F, -133.916F), new Vector2(283.208008F, -134.990005F), new Vector2(284F, -136.345993F)); + builder.AddCubicBezier(new Vector2(284.791992F, -137.701996F), new Vector2(285.187988F, -139.220001F), new Vector2(285.187988F, -140.899994F)); + builder.AddCubicBezier(new Vector2(285.187988F, -142.556F), new Vector2(284.791992F, -144.056F), new Vector2(284F, -145.399994F)); + builder.AddCubicBezier(new Vector2(283.208008F, -146.744003F), new Vector2(282.134003F, -147.806F), new Vector2(280.778015F, -148.585999F)); + builder.AddCubicBezier(new Vector2(279.421997F, -149.365997F), new Vector2(277.903992F, -149.755997F), new Vector2(276.223999F, -149.755997F)); + builder.AddCubicBezier(new Vector2(274.567993F, -149.755997F), new Vector2(273.067993F, -149.360001F), new Vector2(271.723999F, -148.567993F)); + builder.AddCubicBezier(new Vector2(270.380005F, -147.776001F), new Vector2(269.312012F, -146.714005F), new Vector2(268.519989F, -145.382004F)); + builder.AddCubicBezier(new Vector2(267.727997F, -144.050003F), new Vector2(267.332001F, -142.556F), new Vector2(267.332001F, -140.899994F)); + builder.AddCubicBezier(new Vector2(267.332001F, -139.220001F), new Vector2(267.727997F, -137.701996F), new Vector2(268.519989F, -136.345993F)); + builder.AddCubicBezier(new Vector2(269.312012F, -134.990005F), new Vector2(270.380005F, -133.916F), new Vector2(271.723999F, -133.123993F)); + builder.AddCubicBezier(new Vector2(273.067993F, -132.332001F), new Vector2(274.567993F, -131.936005F), new Vector2(276.223999F, -131.936005F)); + builder.AddCubicBezier(new Vector2(277.903992F, -131.936005F), new Vector2(279.421997F, -132.332001F), new Vector2(280.778015F, -133.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1009() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(263.731995F, -132.296005F)); + builder.AddLine(new Vector2(263.731995F, -149.395996F)); + builder.AddLine(new Vector2(260.455994F, -149.395996F)); + builder.AddLine(new Vector2(260.455994F, -145.220001F)); + builder.AddLine(new Vector2(261.067993F, -141.080002F)); + builder.AddLine(new Vector2(260.455994F, -136.904007F)); + builder.AddLine(new Vector2(260.455994F, -132.296005F)); + builder.AddLine(new Vector2(263.731995F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(252.427994F, -135.751999F)); + builder.AddCubicBezier(new Vector2(251.587997F, -136.255997F), new Vector2(250.934006F, -136.945999F), new Vector2(250.466003F, -137.822006F)); + builder.AddCubicBezier(new Vector2(249.998001F, -138.697998F), new Vector2(249.764008F, -139.712006F), new Vector2(249.764008F, -140.863998F)); + builder.AddCubicBezier(new Vector2(249.764008F, -141.992004F), new Vector2(249.998001F, -142.994003F), new Vector2(250.466003F, -143.869995F)); + builder.AddCubicBezier(new Vector2(250.934006F, -144.746002F), new Vector2(251.582001F, -145.436005F), new Vector2(252.410004F, -145.940002F)); + builder.AddCubicBezier(new Vector2(253.238007F, -146.444F), new Vector2(254.192001F, -146.695999F), new Vector2(255.272003F, -146.695999F)); + builder.AddCubicBezier(new Vector2(256.35199F, -146.695999F), new Vector2(257.294006F, -146.449997F), new Vector2(258.097992F, -145.957993F)); + builder.AddCubicBezier(new Vector2(258.902008F, -145.466003F), new Vector2(259.532013F, -144.776001F), new Vector2(259.988007F, -143.888F)); + builder.AddCubicBezier(new Vector2(260.444F, -143F), new Vector2(260.671997F, -141.979996F), new Vector2(260.671997F, -140.828003F)); + builder.AddCubicBezier(new Vector2(260.671997F, -139.123993F), new Vector2(260.179993F, -137.725998F), new Vector2(259.196014F, -136.634003F)); + builder.AddCubicBezier(new Vector2(258.212006F, -135.542007F), new Vector2(256.915985F, -134.996002F), new Vector2(255.307999F, -134.996002F)); + builder.AddCubicBezier(new Vector2(254.227997F, -134.996002F), new Vector2(253.268005F, -135.248001F), new Vector2(252.427994F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(258.26001F, -132.746002F)); + builder.AddCubicBezier(new Vector2(259.291992F, -133.285995F), new Vector2(260.114014F, -134.035995F), new Vector2(260.726013F, -134.996002F)); + builder.AddCubicBezier(new Vector2(261.338013F, -135.955994F), new Vector2(261.679993F, -137.048004F), new Vector2(261.752014F, -138.272003F)); + builder.AddLine(new Vector2(261.752014F, -143.419998F)); + builder.AddCubicBezier(new Vector2(261.679993F, -144.667999F), new Vector2(261.332001F, -145.766006F), new Vector2(260.708008F, -146.714005F)); + builder.AddCubicBezier(new Vector2(260.084015F, -147.662003F), new Vector2(259.261993F, -148.406006F), new Vector2(258.242004F, -148.945999F)); + builder.AddCubicBezier(new Vector2(257.221985F, -149.485992F), new Vector2(256.063995F, -149.755997F), new Vector2(254.768005F, -149.755997F)); + builder.AddCubicBezier(new Vector2(253.184006F, -149.755997F), new Vector2(251.761993F, -149.360001F), new Vector2(250.501999F, -148.567993F)); + builder.AddCubicBezier(new Vector2(249.242004F, -147.776001F), new Vector2(248.246002F, -146.707993F), new Vector2(247.514008F, -145.363998F)); + builder.AddCubicBezier(new Vector2(246.781998F, -144.020004F), new Vector2(246.416F, -142.507996F), new Vector2(246.416F, -140.828003F)); + builder.AddCubicBezier(new Vector2(246.416F, -139.147995F), new Vector2(246.781998F, -137.636002F), new Vector2(247.514008F, -136.292007F)); + builder.AddCubicBezier(new Vector2(248.246002F, -134.947998F), new Vector2(249.242004F, -133.886002F), new Vector2(250.501999F, -133.106003F)); + builder.AddCubicBezier(new Vector2(251.761993F, -132.326004F), new Vector2(253.184006F, -131.936005F), new Vector2(254.768005F, -131.936005F)); + builder.AddCubicBezier(new Vector2(256.063995F, -131.936005F), new Vector2(257.227997F, -132.205994F), new Vector2(258.26001F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1010() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(231.007996F, -132.296005F)); + builder.AddLine(new Vector2(231.007996F, -158F)); + builder.AddLine(new Vector2(227.768005F, -158F)); + builder.AddLine(new Vector2(227.768005F, -132.296005F)); + builder.AddLine(new Vector2(231.007996F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(243.104004F, -132.296005F)); + builder.AddLine(new Vector2(243.104004F, -142.916F)); + builder.AddCubicBezier(new Vector2(243.104004F, -144.259995F), new Vector2(242.815994F, -145.447998F), new Vector2(242.240005F, -146.479996F)); + builder.AddCubicBezier(new Vector2(241.664001F, -147.511993F), new Vector2(240.878006F, -148.315994F), new Vector2(239.882004F, -148.891998F)); + builder.AddCubicBezier(new Vector2(238.886002F, -149.468002F), new Vector2(237.740005F, -149.755997F), new Vector2(236.444F, -149.755997F)); + builder.AddCubicBezier(new Vector2(235.147995F, -149.755997F), new Vector2(233.983994F, -149.462006F), new Vector2(232.951996F, -148.873993F)); + builder.AddCubicBezier(new Vector2(231.919998F, -148.285995F), new Vector2(231.115997F, -147.488007F), new Vector2(230.539993F, -146.479996F)); + builder.AddCubicBezier(new Vector2(229.964005F, -145.472F), new Vector2(229.675995F, -144.320007F), new Vector2(229.675995F, -143.024002F)); + builder.AddLine(new Vector2(231.007996F, -142.268005F)); + builder.AddCubicBezier(new Vector2(231.007996F, -143.132004F), new Vector2(231.199997F, -143.899994F), new Vector2(231.584F, -144.572006F)); + builder.AddCubicBezier(new Vector2(231.968002F, -145.244003F), new Vector2(232.496002F, -145.772003F), new Vector2(233.167999F, -146.156006F)); + builder.AddCubicBezier(new Vector2(233.839996F, -146.539993F), new Vector2(234.608002F, -146.731995F), new Vector2(235.472F, -146.731995F)); + builder.AddCubicBezier(new Vector2(236.768005F, -146.731995F), new Vector2(237.817993F, -146.311996F), new Vector2(238.621994F, -145.472F)); + builder.AddCubicBezier(new Vector2(239.425995F, -144.632004F), new Vector2(239.828003F, -143.563995F), new Vector2(239.828003F, -142.268005F)); + builder.AddLine(new Vector2(239.828003F, -132.296005F)); + builder.AddLine(new Vector2(243.104004F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1011() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(221.666F, -132.692001F)); + builder.AddCubicBezier(new Vector2(222.806F, -133.195999F), new Vector2(223.772003F, -133.904007F), new Vector2(224.563995F, -134.815994F)); + builder.AddLine(new Vector2(222.440002F, -136.975998F)); + builder.AddCubicBezier(new Vector2(221.888F, -136.352005F), new Vector2(221.233994F, -135.878006F), new Vector2(220.477997F, -135.554001F)); + builder.AddCubicBezier(new Vector2(219.722F, -135.229996F), new Vector2(218.888F, -135.067993F), new Vector2(217.975998F, -135.067993F)); + builder.AddCubicBezier(new Vector2(216.895996F, -135.067993F), new Vector2(215.936005F, -135.320007F), new Vector2(215.095993F, -135.824005F)); + builder.AddCubicBezier(new Vector2(214.255997F, -136.328003F), new Vector2(213.595993F, -137.011993F), new Vector2(213.115997F, -137.876007F)); + builder.AddCubicBezier(new Vector2(212.636002F, -138.740005F), new Vector2(212.395996F, -139.735992F), new Vector2(212.395996F, -140.863998F)); + builder.AddCubicBezier(new Vector2(212.395996F, -141.992004F), new Vector2(212.636002F, -142.988007F), new Vector2(213.115997F, -143.852005F)); + builder.AddCubicBezier(new Vector2(213.595993F, -144.716003F), new Vector2(214.255997F, -145.393997F), new Vector2(215.095993F, -145.886002F)); + builder.AddCubicBezier(new Vector2(215.936005F, -146.378006F), new Vector2(216.895996F, -146.623993F), new Vector2(217.975998F, -146.623993F)); + builder.AddCubicBezier(new Vector2(218.863998F, -146.623993F), new Vector2(219.692001F, -146.462006F), new Vector2(220.460007F, -146.138F)); + builder.AddCubicBezier(new Vector2(221.227997F, -145.813995F), new Vector2(221.876007F, -145.339996F), new Vector2(222.404007F, -144.716003F)); + builder.AddLine(new Vector2(224.563995F, -146.876007F)); + builder.AddCubicBezier(new Vector2(223.748001F, -147.811996F), new Vector2(222.776001F, -148.526001F), new Vector2(221.647995F, -149.018005F)); + builder.AddCubicBezier(new Vector2(220.520004F, -149.509995F), new Vector2(219.296005F, -149.755997F), new Vector2(217.975998F, -149.755997F)); + builder.AddCubicBezier(new Vector2(216.296005F, -149.755997F), new Vector2(214.778F, -149.365997F), new Vector2(213.421997F, -148.585999F)); + builder.AddCubicBezier(new Vector2(212.065994F, -147.806F), new Vector2(210.998001F, -146.744003F), new Vector2(210.218002F, -145.399994F)); + builder.AddCubicBezier(new Vector2(209.438004F, -144.056F), new Vector2(209.048004F, -142.544006F), new Vector2(209.048004F, -140.863998F)); + builder.AddCubicBezier(new Vector2(209.048004F, -139.207993F), new Vector2(209.438004F, -137.701996F), new Vector2(210.218002F, -136.345993F)); + builder.AddCubicBezier(new Vector2(210.998001F, -134.990005F), new Vector2(212.065994F, -133.916F), new Vector2(213.421997F, -133.123993F)); + builder.AddCubicBezier(new Vector2(214.778F, -132.332001F), new Vector2(216.296005F, -131.936005F), new Vector2(217.975998F, -131.936005F)); + builder.AddCubicBezier(new Vector2(219.296005F, -131.936005F), new Vector2(220.526001F, -132.188004F), new Vector2(221.666F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1012() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(195.115997F, -132.692001F)); + builder.AddCubicBezier(new Vector2(196.292007F, -133.195999F), new Vector2(197.300003F, -133.927994F), new Vector2(198.139999F, -134.888F)); + builder.AddLine(new Vector2(196.052002F, -137.011993F)); + builder.AddCubicBezier(new Vector2(195.475998F, -136.339996F), new Vector2(194.785995F, -135.835999F), new Vector2(193.981995F, -135.5F)); + builder.AddCubicBezier(new Vector2(193.177994F, -135.164001F), new Vector2(192.296005F, -134.996002F), new Vector2(191.335999F, -134.996002F)); + builder.AddCubicBezier(new Vector2(190.184006F, -134.996002F), new Vector2(189.164001F, -135.242004F), new Vector2(188.276001F, -135.733994F)); + builder.AddCubicBezier(new Vector2(187.388F, -136.225998F), new Vector2(186.703995F, -136.921997F), new Vector2(186.223999F, -137.822006F)); + builder.AddCubicBezier(new Vector2(185.744003F, -138.722F), new Vector2(185.503998F, -139.772003F), new Vector2(185.503998F, -140.972F)); + builder.AddCubicBezier(new Vector2(185.503998F, -142.147995F), new Vector2(185.731995F, -143.167999F), new Vector2(186.188004F, -144.031998F)); + builder.AddCubicBezier(new Vector2(186.643997F, -144.895996F), new Vector2(187.292007F, -145.567993F), new Vector2(188.132004F, -146.048004F)); + builder.AddCubicBezier(new Vector2(188.972F, -146.528F), new Vector2(189.944F, -146.768005F), new Vector2(191.048004F, -146.768005F)); + builder.AddCubicBezier(new Vector2(192.104004F, -146.768005F), new Vector2(193.003998F, -146.546005F), new Vector2(193.748001F, -146.102005F)); + builder.AddCubicBezier(new Vector2(194.492004F, -145.658005F), new Vector2(195.067993F, -145.033997F), new Vector2(195.475998F, -144.229996F)); + builder.AddCubicBezier(new Vector2(195.884003F, -143.425995F), new Vector2(196.087997F, -142.447998F), new Vector2(196.087997F, -141.296005F)); + builder.AddLine(new Vector2(197.276001F, -142.339996F)); + builder.AddLine(new Vector2(184.567993F, -142.339996F)); + builder.AddLine(new Vector2(184.567993F, -139.639999F)); + builder.AddLine(new Vector2(199.003998F, -139.639999F)); + builder.AddCubicBezier(new Vector2(199.076004F, -139.975998F), new Vector2(199.123993F, -140.281998F), new Vector2(199.147995F, -140.557999F)); + builder.AddCubicBezier(new Vector2(199.171997F, -140.834F), new Vector2(199.184006F, -141.091995F), new Vector2(199.184006F, -141.332001F)); + builder.AddCubicBezier(new Vector2(199.184006F, -142.964005F), new Vector2(198.841995F, -144.416F), new Vector2(198.158005F, -145.688004F)); + builder.AddCubicBezier(new Vector2(197.473999F, -146.960007F), new Vector2(196.520004F, -147.955994F), new Vector2(195.296005F, -148.675995F)); + builder.AddCubicBezier(new Vector2(194.072006F, -149.395996F), new Vector2(192.679993F, -149.755997F), new Vector2(191.119995F, -149.755997F)); + builder.AddCubicBezier(new Vector2(189.464005F, -149.755997F), new Vector2(187.970001F, -149.365997F), new Vector2(186.638F, -148.585999F)); + builder.AddCubicBezier(new Vector2(185.306F, -147.806F), new Vector2(184.25F, -146.744003F), new Vector2(183.470001F, -145.399994F)); + builder.AddCubicBezier(new Vector2(182.690002F, -144.056F), new Vector2(182.300003F, -142.544006F), new Vector2(182.300003F, -140.863998F)); + builder.AddCubicBezier(new Vector2(182.300003F, -139.160004F), new Vector2(182.695999F, -137.636002F), new Vector2(183.488007F, -136.292007F)); + builder.AddCubicBezier(new Vector2(184.279999F, -134.947998F), new Vector2(185.354004F, -133.886002F), new Vector2(186.710007F, -133.106003F)); + builder.AddCubicBezier(new Vector2(188.065994F, -132.326004F), new Vector2(189.608002F, -131.936005F), new Vector2(191.335999F, -131.936005F)); + builder.AddCubicBezier(new Vector2(192.679993F, -131.936005F), new Vector2(193.940002F, -132.188004F), new Vector2(195.115997F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1013() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(173.912003F, -145.544006F)); + builder.AddCubicBezier(new Vector2(174.679993F, -146.311996F), new Vector2(175.664001F, -146.695999F), new Vector2(176.863998F, -146.695999F)); + builder.AddCubicBezier(new Vector2(177.440002F, -146.695999F), new Vector2(177.944F, -146.612F), new Vector2(178.376007F, -146.444F)); + builder.AddCubicBezier(new Vector2(178.807999F, -146.276001F), new Vector2(179.203995F, -146F), new Vector2(179.563995F, -145.615997F)); + builder.AddLine(new Vector2(181.688004F, -147.811996F)); + builder.AddCubicBezier(new Vector2(181.087997F, -148.507996F), new Vector2(180.440002F, -149.005997F), new Vector2(179.744003F, -149.306F)); + builder.AddCubicBezier(new Vector2(179.048004F, -149.606003F), new Vector2(178.268005F, -149.755997F), new Vector2(177.404007F, -149.755997F)); + builder.AddCubicBezier(new Vector2(175.507996F, -149.755997F), new Vector2(174.056F, -149.108002F), new Vector2(173.048004F, -147.811996F)); + builder.AddCubicBezier(new Vector2(172.039993F, -146.516006F), new Vector2(171.535995F, -144.776001F), new Vector2(171.535995F, -142.591995F)); + builder.AddLine(new Vector2(172.759995F, -142.016006F)); + builder.AddCubicBezier(new Vector2(172.759995F, -143.600006F), new Vector2(173.143997F, -144.776001F), new Vector2(173.912003F, -145.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(172.759995F, -132.296005F)); + builder.AddLine(new Vector2(172.759995F, -149.395996F)); + builder.AddLine(new Vector2(169.520004F, -149.395996F)); + builder.AddLine(new Vector2(169.520004F, -132.296005F)); + builder.AddLine(new Vector2(172.759995F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1014() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(154.112F, -135.824005F)); + builder.AddCubicBezier(new Vector2(153.272003F, -136.328003F), new Vector2(152.612F, -137.018005F), new Vector2(152.132004F, -137.893997F)); + builder.AddCubicBezier(new Vector2(151.651993F, -138.770004F), new Vector2(151.412003F, -139.772003F), new Vector2(151.412003F, -140.899994F)); + builder.AddCubicBezier(new Vector2(151.412003F, -142.003998F), new Vector2(151.651993F, -142.988007F), new Vector2(152.132004F, -143.852005F)); + builder.AddCubicBezier(new Vector2(152.612F, -144.716003F), new Vector2(153.272003F, -145.393997F), new Vector2(154.112F, -145.886002F)); + builder.AddCubicBezier(new Vector2(154.951996F, -146.378006F), new Vector2(155.899994F, -146.623993F), new Vector2(156.955994F, -146.623993F)); + builder.AddCubicBezier(new Vector2(158.059998F, -146.623993F), new Vector2(159.026001F, -146.378006F), new Vector2(159.854004F, -145.886002F)); + builder.AddCubicBezier(new Vector2(160.682007F, -145.393997F), new Vector2(161.341995F, -144.716003F), new Vector2(161.834F, -143.852005F)); + builder.AddCubicBezier(new Vector2(162.326004F, -142.988007F), new Vector2(162.572006F, -142.003998F), new Vector2(162.572006F, -140.899994F)); + builder.AddCubicBezier(new Vector2(162.572006F, -139.772003F), new Vector2(162.332001F, -138.770004F), new Vector2(161.852005F, -137.893997F)); + builder.AddCubicBezier(new Vector2(161.371994F, -137.018005F), new Vector2(160.712006F, -136.328003F), new Vector2(159.871994F, -135.824005F)); + builder.AddCubicBezier(new Vector2(159.031998F, -135.320007F), new Vector2(158.059998F, -135.067993F), new Vector2(156.955994F, -135.067993F)); + builder.AddCubicBezier(new Vector2(155.899994F, -135.067993F), new Vector2(154.951996F, -135.320007F), new Vector2(154.112F, -135.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(161.509995F, -133.123993F)); + builder.AddCubicBezier(new Vector2(162.865997F, -133.916F), new Vector2(163.940002F, -134.990005F), new Vector2(164.731995F, -136.345993F)); + builder.AddCubicBezier(new Vector2(165.524002F, -137.701996F), new Vector2(165.919998F, -139.220001F), new Vector2(165.919998F, -140.899994F)); + builder.AddCubicBezier(new Vector2(165.919998F, -142.556F), new Vector2(165.524002F, -144.056F), new Vector2(164.731995F, -145.399994F)); + builder.AddCubicBezier(new Vector2(163.940002F, -146.744003F), new Vector2(162.865997F, -147.806F), new Vector2(161.509995F, -148.585999F)); + builder.AddCubicBezier(new Vector2(160.154007F, -149.365997F), new Vector2(158.636002F, -149.755997F), new Vector2(156.955994F, -149.755997F)); + builder.AddCubicBezier(new Vector2(155.300003F, -149.755997F), new Vector2(153.800003F, -149.360001F), new Vector2(152.455994F, -148.567993F)); + builder.AddCubicBezier(new Vector2(151.112F, -147.776001F), new Vector2(150.044006F, -146.714005F), new Vector2(149.251999F, -145.382004F)); + builder.AddCubicBezier(new Vector2(148.460007F, -144.050003F), new Vector2(148.063995F, -142.556F), new Vector2(148.063995F, -140.899994F)); + builder.AddCubicBezier(new Vector2(148.063995F, -139.220001F), new Vector2(148.460007F, -137.701996F), new Vector2(149.251999F, -136.345993F)); + builder.AddCubicBezier(new Vector2(150.044006F, -134.990005F), new Vector2(151.112F, -133.916F), new Vector2(152.455994F, -133.123993F)); + builder.AddCubicBezier(new Vector2(153.800003F, -132.332001F), new Vector2(155.300003F, -131.936005F), new Vector2(156.955994F, -131.936005F)); + builder.AddCubicBezier(new Vector2(158.636002F, -131.936005F), new Vector2(160.154007F, -132.332001F), new Vector2(161.509995F, -133.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1015() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(144.787994F, -132.296005F)); + builder.AddLine(new Vector2(144.787994F, -143.276001F)); + builder.AddCubicBezier(new Vector2(144.787994F, -144.619995F), new Vector2(144.494003F, -145.772003F), new Vector2(143.906006F, -146.731995F)); + builder.AddCubicBezier(new Vector2(143.317993F, -147.692001F), new Vector2(142.531998F, -148.436005F), new Vector2(141.548004F, -148.964005F)); + builder.AddCubicBezier(new Vector2(140.563995F, -149.492004F), new Vector2(139.447998F, -149.755997F), new Vector2(138.199997F, -149.755997F)); + builder.AddCubicBezier(new Vector2(137F, -149.755997F), new Vector2(135.895996F, -149.485992F), new Vector2(134.888F, -148.945999F)); + builder.AddCubicBezier(new Vector2(133.880005F, -148.406006F), new Vector2(133.057999F, -147.662003F), new Vector2(132.421997F, -146.714005F)); + builder.AddCubicBezier(new Vector2(131.785995F, -145.766006F), new Vector2(131.432007F, -144.632004F), new Vector2(131.360001F, -143.311996F)); + builder.AddLine(new Vector2(133.195999F, -142.628006F)); + builder.AddCubicBezier(new Vector2(133.195999F, -143.492004F), new Vector2(133.388F, -144.223999F), new Vector2(133.772003F, -144.824005F)); + builder.AddCubicBezier(new Vector2(134.156006F, -145.423996F), new Vector2(134.666F, -145.891998F), new Vector2(135.302002F, -146.227997F)); + builder.AddCubicBezier(new Vector2(135.938004F, -146.563995F), new Vector2(136.651993F, -146.731995F), new Vector2(137.444F, -146.731995F)); + builder.AddCubicBezier(new Vector2(138.595993F, -146.731995F), new Vector2(139.561996F, -146.365997F), new Vector2(140.341995F, -145.634003F)); + builder.AddCubicBezier(new Vector2(141.121994F, -144.901993F), new Vector2(141.511993F, -143.899994F), new Vector2(141.511993F, -142.628006F)); + builder.AddLine(new Vector2(141.511993F, -132.296005F)); + builder.AddLine(new Vector2(144.787994F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(133.195999F, -132.296005F)); + builder.AddLine(new Vector2(133.195999F, -143.311996F)); + builder.AddCubicBezier(new Vector2(133.195999F, -144.632004F), new Vector2(132.914001F, -145.772003F), new Vector2(132.350006F, -146.731995F)); + builder.AddCubicBezier(new Vector2(131.785995F, -147.692001F), new Vector2(131.018005F, -148.436005F), new Vector2(130.046005F, -148.964005F)); + builder.AddCubicBezier(new Vector2(129.074005F, -149.492004F), new Vector2(127.987999F, -149.755997F), new Vector2(126.788002F, -149.755997F)); + builder.AddCubicBezier(new Vector2(125.564003F, -149.755997F), new Vector2(124.459999F, -149.485992F), new Vector2(123.475998F, -148.945999F)); + builder.AddCubicBezier(new Vector2(122.491997F, -148.406006F), new Vector2(121.718002F, -147.656006F), new Vector2(121.153999F, -146.695999F)); + builder.AddCubicBezier(new Vector2(120.589996F, -145.735992F), new Vector2(120.307999F, -144.608002F), new Vector2(120.307999F, -143.311996F)); + builder.AddLine(new Vector2(121.639999F, -142.628006F)); + builder.AddCubicBezier(new Vector2(121.639999F, -143.492004F), new Vector2(121.832001F, -144.223999F), new Vector2(122.216003F, -144.824005F)); + builder.AddCubicBezier(new Vector2(122.599998F, -145.423996F), new Vector2(123.103996F, -145.891998F), new Vector2(123.727997F, -146.227997F)); + builder.AddCubicBezier(new Vector2(124.351997F, -146.563995F), new Vector2(125.059998F, -146.731995F), new Vector2(125.851997F, -146.731995F)); + builder.AddCubicBezier(new Vector2(127.028F, -146.731995F), new Vector2(128.005997F, -146.365997F), new Vector2(128.785995F, -145.634003F)); + builder.AddCubicBezier(new Vector2(129.565994F, -144.901993F), new Vector2(129.955994F, -143.899994F), new Vector2(129.955994F, -142.628006F)); + builder.AddLine(new Vector2(129.955994F, -132.296005F)); + builder.AddLine(new Vector2(133.195999F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(121.639999F, -132.296005F)); + builder.AddLine(new Vector2(121.639999F, -149.395996F)); + builder.AddLine(new Vector2(118.400002F, -149.395996F)); + builder.AddLine(new Vector2(118.400002F, -132.296005F)); + builder.AddLine(new Vector2(121.639999F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1016() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(103.351997F, -132.692001F)); + builder.AddCubicBezier(new Vector2(104.528F, -133.195999F), new Vector2(105.536003F, -133.927994F), new Vector2(106.375999F, -134.888F)); + builder.AddLine(new Vector2(104.288002F, -137.011993F)); + builder.AddCubicBezier(new Vector2(103.711998F, -136.339996F), new Vector2(103.022003F, -135.835999F), new Vector2(102.218002F, -135.5F)); + builder.AddCubicBezier(new Vector2(101.414001F, -135.164001F), new Vector2(100.531998F, -134.996002F), new Vector2(99.5719986F, -134.996002F)); + builder.AddCubicBezier(new Vector2(98.4199982F, -134.996002F), new Vector2(97.4000015F, -135.242004F), new Vector2(96.512001F, -135.733994F)); + builder.AddCubicBezier(new Vector2(95.6240005F, -136.225998F), new Vector2(94.9400024F, -136.921997F), new Vector2(94.4599991F, -137.822006F)); + builder.AddCubicBezier(new Vector2(93.9800034F, -138.722F), new Vector2(93.7399979F, -139.772003F), new Vector2(93.7399979F, -140.972F)); + builder.AddCubicBezier(new Vector2(93.7399979F, -142.147995F), new Vector2(93.9680023F, -143.167999F), new Vector2(94.4240036F, -144.031998F)); + builder.AddCubicBezier(new Vector2(94.8799973F, -144.895996F), new Vector2(95.5279999F, -145.567993F), new Vector2(96.3679962F, -146.048004F)); + builder.AddCubicBezier(new Vector2(97.2080002F, -146.528F), new Vector2(98.1800003F, -146.768005F), new Vector2(99.2839966F, -146.768005F)); + builder.AddCubicBezier(new Vector2(100.339996F, -146.768005F), new Vector2(101.239998F, -146.546005F), new Vector2(101.984001F, -146.102005F)); + builder.AddCubicBezier(new Vector2(102.727997F, -145.658005F), new Vector2(103.304001F, -145.033997F), new Vector2(103.711998F, -144.229996F)); + builder.AddCubicBezier(new Vector2(104.120003F, -143.425995F), new Vector2(104.323997F, -142.447998F), new Vector2(104.323997F, -141.296005F)); + builder.AddLine(new Vector2(105.512001F, -142.339996F)); + builder.AddLine(new Vector2(92.8040009F, -142.339996F)); + builder.AddLine(new Vector2(92.8040009F, -139.639999F)); + builder.AddLine(new Vector2(107.239998F, -139.639999F)); + builder.AddCubicBezier(new Vector2(107.311996F, -139.975998F), new Vector2(107.360001F, -140.281998F), new Vector2(107.384003F, -140.557999F)); + builder.AddCubicBezier(new Vector2(107.407997F, -140.834F), new Vector2(107.419998F, -141.091995F), new Vector2(107.419998F, -141.332001F)); + builder.AddCubicBezier(new Vector2(107.419998F, -142.964005F), new Vector2(107.078003F, -144.416F), new Vector2(106.393997F, -145.688004F)); + builder.AddCubicBezier(new Vector2(105.709999F, -146.960007F), new Vector2(104.755997F, -147.955994F), new Vector2(103.531998F, -148.675995F)); + builder.AddCubicBezier(new Vector2(102.307999F, -149.395996F), new Vector2(100.916F, -149.755997F), new Vector2(99.3560028F, -149.755997F)); + builder.AddCubicBezier(new Vector2(97.6999969F, -149.755997F), new Vector2(96.2060013F, -149.365997F), new Vector2(94.8740005F, -148.585999F)); + builder.AddCubicBezier(new Vector2(93.5419998F, -147.806F), new Vector2(92.4860001F, -146.744003F), new Vector2(91.7060013F, -145.399994F)); + builder.AddCubicBezier(new Vector2(90.9260025F, -144.056F), new Vector2(90.5360031F, -142.544006F), new Vector2(90.5360031F, -140.863998F)); + builder.AddCubicBezier(new Vector2(90.5360031F, -139.160004F), new Vector2(90.9319992F, -137.636002F), new Vector2(91.723999F, -136.292007F)); + builder.AddCubicBezier(new Vector2(92.5159988F, -134.947998F), new Vector2(93.5899963F, -133.886002F), new Vector2(94.9459991F, -133.106003F)); + builder.AddCubicBezier(new Vector2(96.302002F, -132.326004F), new Vector2(97.8440018F, -131.936005F), new Vector2(99.5719986F, -131.936005F)); + builder.AddCubicBezier(new Vector2(100.916F, -131.936005F), new Vector2(102.176003F, -132.188004F), new Vector2(103.351997F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1017() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(86.3059998F, -133.339996F)); + builder.AddCubicBezier(new Vector2(87.4459991F, -134.276001F), new Vector2(88.0159988F, -135.548004F), new Vector2(88.0159988F, -137.156006F)); + builder.AddCubicBezier(new Vector2(88.0159988F, -138.212006F), new Vector2(87.7939987F, -139.063995F), new Vector2(87.3499985F, -139.712006F)); + builder.AddCubicBezier(new Vector2(86.9059982F, -140.360001F), new Vector2(86.3359985F, -140.876007F), new Vector2(85.6399994F, -141.259995F)); + builder.AddCubicBezier(new Vector2(84.9440002F, -141.643997F), new Vector2(84.211998F, -141.949997F), new Vector2(83.4440002F, -142.177994F)); + builder.AddCubicBezier(new Vector2(82.6760025F, -142.406006F), new Vector2(81.9380035F, -142.628006F), new Vector2(81.2300034F, -142.843994F)); + builder.AddCubicBezier(new Vector2(80.5220032F, -143.059998F), new Vector2(79.9520035F, -143.324005F), new Vector2(79.5199966F, -143.636002F)); + builder.AddCubicBezier(new Vector2(79.0879974F, -143.947998F), new Vector2(78.8720016F, -144.391998F), new Vector2(78.8720016F, -144.968002F)); + builder.AddCubicBezier(new Vector2(78.8720016F, -145.520004F), new Vector2(79.1179962F, -145.964005F), new Vector2(79.6100006F, -146.300003F)); + builder.AddCubicBezier(new Vector2(80.1019974F, -146.636002F), new Vector2(80.8160019F, -146.804001F), new Vector2(81.7519989F, -146.804001F)); + builder.AddCubicBezier(new Vector2(82.6399994F, -146.804001F), new Vector2(83.4319992F, -146.636002F), new Vector2(84.1279984F, -146.300003F)); + builder.AddCubicBezier(new Vector2(84.8239975F, -145.964005F), new Vector2(85.4240036F, -145.483994F), new Vector2(85.9280014F, -144.860001F)); + builder.AddLine(new Vector2(88.0159988F, -146.947998F)); + builder.AddCubicBezier(new Vector2(87.3440018F, -147.884003F), new Vector2(86.4860001F, -148.585999F), new Vector2(85.4420013F, -149.054001F)); + builder.AddCubicBezier(new Vector2(84.3980026F, -149.522003F), new Vector2(83.2040024F, -149.755997F), new Vector2(81.8600006F, -149.755997F)); + builder.AddCubicBezier(new Vector2(80.5879974F, -149.755997F), new Vector2(79.4960022F, -149.552002F), new Vector2(78.5839996F, -149.143997F)); + builder.AddCubicBezier(new Vector2(77.6719971F, -148.735992F), new Vector2(76.9700012F, -148.154007F), new Vector2(76.4779968F, -147.397995F)); + builder.AddCubicBezier(new Vector2(75.9860001F, -146.641998F), new Vector2(75.7399979F, -145.748001F), new Vector2(75.7399979F, -144.716003F)); + builder.AddCubicBezier(new Vector2(75.7399979F, -143.684006F), new Vector2(75.961998F, -142.850006F), new Vector2(76.4059982F, -142.214005F)); + builder.AddCubicBezier(new Vector2(76.8499985F, -141.578003F), new Vector2(77.4199982F, -141.080002F), new Vector2(78.1159973F, -140.720001F)); + builder.AddCubicBezier(new Vector2(78.8119965F, -140.360001F), new Vector2(79.5500031F, -140.072006F), new Vector2(80.3300018F, -139.856003F)); + builder.AddCubicBezier(new Vector2(81.1100006F, -139.639999F), new Vector2(81.8479996F, -139.417999F), new Vector2(82.5439987F, -139.190002F)); + builder.AddCubicBezier(new Vector2(83.2399979F, -138.962006F), new Vector2(83.8099976F, -138.673996F), new Vector2(84.2539978F, -138.326004F)); + builder.AddCubicBezier(new Vector2(84.697998F, -137.977997F), new Vector2(84.9199982F, -137.492004F), new Vector2(84.9199982F, -136.867996F)); + builder.AddCubicBezier(new Vector2(84.9199982F, -136.244003F), new Vector2(84.6439972F, -135.757996F), new Vector2(84.0920029F, -135.410004F)); + builder.AddCubicBezier(new Vector2(83.5400009F, -135.061996F), new Vector2(82.7600021F, -134.888F), new Vector2(81.7519989F, -134.888F)); + builder.AddCubicBezier(new Vector2(80.7440033F, -134.888F), new Vector2(79.8320007F, -135.074005F), new Vector2(79.0159988F, -135.445999F)); + builder.AddCubicBezier(new Vector2(78.1999969F, -135.817993F), new Vector2(77.4800034F, -136.388F), new Vector2(76.8560028F, -137.156006F)); + builder.AddLine(new Vector2(74.7679977F, -135.067993F)); + builder.AddCubicBezier(new Vector2(75.2959976F, -134.419998F), new Vector2(75.9140015F, -133.862F), new Vector2(76.6220016F, -133.393997F)); + builder.AddCubicBezier(new Vector2(77.3300018F, -132.925995F), new Vector2(78.1159973F, -132.565994F), new Vector2(78.9800034F, -132.313995F)); + builder.AddCubicBezier(new Vector2(79.8440018F, -132.061996F), new Vector2(80.7559967F, -131.936005F), new Vector2(81.7160034F, -131.936005F)); + builder.AddCubicBezier(new Vector2(83.6360016F, -131.936005F), new Vector2(85.1660004F, -132.404007F), new Vector2(86.3059998F, -133.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1018() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(68.3960037F, -132.925995F)); + builder.AddCubicBezier(new Vector2(69.5F, -133.537994F), new Vector2(70.3639984F, -134.408005F), new Vector2(70.987999F, -135.535995F)); + builder.AddCubicBezier(new Vector2(71.6119995F, -136.664001F), new Vector2(71.9240036F, -137.972F), new Vector2(71.9240036F, -139.460007F)); + builder.AddLine(new Vector2(71.9240036F, -149.395996F)); + builder.AddLine(new Vector2(68.6839981F, -149.395996F)); + builder.AddLine(new Vector2(68.6839981F, -139.604004F)); + builder.AddCubicBezier(new Vector2(68.6839981F, -138.188004F), new Vector2(68.3239975F, -137.078003F), new Vector2(67.6039963F, -136.274002F)); + builder.AddCubicBezier(new Vector2(66.8840027F, -135.470001F), new Vector2(65.8880005F, -135.067993F), new Vector2(64.6159973F, -135.067993F)); + builder.AddCubicBezier(new Vector2(63.776001F, -135.067993F), new Vector2(63.0439987F, -135.248001F), new Vector2(62.4199982F, -135.608002F)); + builder.AddCubicBezier(new Vector2(61.7960014F, -135.968002F), new Vector2(61.3219986F, -136.490005F), new Vector2(60.9980011F, -137.173996F)); + builder.AddCubicBezier(new Vector2(60.6739998F, -137.858002F), new Vector2(60.512001F, -138.667999F), new Vector2(60.512001F, -139.604004F)); + builder.AddLine(new Vector2(60.512001F, -149.395996F)); + builder.AddLine(new Vector2(57.2719994F, -149.395996F)); + builder.AddLine(new Vector2(57.2719994F, -139.460007F)); + builder.AddCubicBezier(new Vector2(57.2719994F, -137.972F), new Vector2(57.5839996F, -136.664001F), new Vector2(58.2080002F, -135.535995F)); + builder.AddCubicBezier(new Vector2(58.8320007F, -134.408005F), new Vector2(59.7019997F, -133.537994F), new Vector2(60.8180008F, -132.925995F)); + builder.AddCubicBezier(new Vector2(61.9339981F, -132.313995F), new Vector2(63.2000008F, -132.007996F), new Vector2(64.6159973F, -132.007996F)); + builder.AddCubicBezier(new Vector2(66.0319977F, -132.007996F), new Vector2(67.2919998F, -132.313995F), new Vector2(68.3960037F, -132.925995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1019() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(52.987999F, -132.296005F)); + builder.AddLine(new Vector2(52.987999F, -149.395996F)); + builder.AddLine(new Vector2(49.7120018F, -149.395996F)); + builder.AddLine(new Vector2(49.7120018F, -145.220001F)); + builder.AddLine(new Vector2(50.3240013F, -141.080002F)); + builder.AddLine(new Vector2(49.7120018F, -136.904007F)); + builder.AddLine(new Vector2(49.7120018F, -132.296005F)); + builder.AddLine(new Vector2(52.987999F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(41.6839981F, -135.751999F)); + builder.AddCubicBezier(new Vector2(40.8440018F, -136.255997F), new Vector2(40.1899986F, -136.945999F), new Vector2(39.7220001F, -137.822006F)); + builder.AddCubicBezier(new Vector2(39.2540016F, -138.697998F), new Vector2(39.0200005F, -139.712006F), new Vector2(39.0200005F, -140.863998F)); + builder.AddCubicBezier(new Vector2(39.0200005F, -141.992004F), new Vector2(39.2540016F, -142.994003F), new Vector2(39.7220001F, -143.869995F)); + builder.AddCubicBezier(new Vector2(40.1899986F, -144.746002F), new Vector2(40.8380013F, -145.436005F), new Vector2(41.6660004F, -145.940002F)); + builder.AddCubicBezier(new Vector2(42.4939995F, -146.444F), new Vector2(43.4480019F, -146.695999F), new Vector2(44.5279999F, -146.695999F)); + builder.AddCubicBezier(new Vector2(45.6080017F, -146.695999F), new Vector2(46.5499992F, -146.449997F), new Vector2(47.3540001F, -145.957993F)); + builder.AddCubicBezier(new Vector2(48.1580009F, -145.466003F), new Vector2(48.7879982F, -144.776001F), new Vector2(49.2439995F, -143.888F)); + builder.AddCubicBezier(new Vector2(49.7000008F, -143F), new Vector2(49.9280014F, -141.979996F), new Vector2(49.9280014F, -140.828003F)); + builder.AddCubicBezier(new Vector2(49.9280014F, -139.123993F), new Vector2(49.4360008F, -137.725998F), new Vector2(48.4519997F, -136.634003F)); + builder.AddCubicBezier(new Vector2(47.4679985F, -135.542007F), new Vector2(46.1720009F, -134.996002F), new Vector2(44.5639992F, -134.996002F)); + builder.AddCubicBezier(new Vector2(43.4840012F, -134.996002F), new Vector2(42.5239983F, -135.248001F), new Vector2(41.6839981F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(47.5159988F, -132.746002F)); + builder.AddCubicBezier(new Vector2(48.5480003F, -133.285995F), new Vector2(49.3699989F, -134.035995F), new Vector2(49.9819984F, -134.996002F)); + builder.AddCubicBezier(new Vector2(50.5940018F, -135.955994F), new Vector2(50.9360008F, -137.048004F), new Vector2(51.0079994F, -138.272003F)); + builder.AddLine(new Vector2(51.0079994F, -143.419998F)); + builder.AddCubicBezier(new Vector2(50.9360008F, -144.667999F), new Vector2(50.5880013F, -145.766006F), new Vector2(49.9640007F, -146.714005F)); + builder.AddCubicBezier(new Vector2(49.3400002F, -147.662003F), new Vector2(48.5180016F, -148.406006F), new Vector2(47.4980011F, -148.945999F)); + builder.AddCubicBezier(new Vector2(46.4780006F, -149.485992F), new Vector2(45.3199997F, -149.755997F), new Vector2(44.0239983F, -149.755997F)); + builder.AddCubicBezier(new Vector2(42.4399986F, -149.755997F), new Vector2(41.0180016F, -149.360001F), new Vector2(39.7579994F, -148.567993F)); + builder.AddCubicBezier(new Vector2(38.4980011F, -147.776001F), new Vector2(37.5019989F, -146.707993F), new Vector2(36.7700005F, -145.363998F)); + builder.AddCubicBezier(new Vector2(36.0379982F, -144.020004F), new Vector2(35.6720009F, -142.507996F), new Vector2(35.6720009F, -140.828003F)); + builder.AddCubicBezier(new Vector2(35.6720009F, -139.147995F), new Vector2(36.0379982F, -137.636002F), new Vector2(36.7700005F, -136.292007F)); + builder.AddCubicBezier(new Vector2(37.5019989F, -134.947998F), new Vector2(38.4980011F, -133.886002F), new Vector2(39.7579994F, -133.106003F)); + builder.AddCubicBezier(new Vector2(41.0180016F, -132.326004F), new Vector2(42.4399986F, -131.936005F), new Vector2(44.0239983F, -131.936005F)); + builder.AddCubicBezier(new Vector2(45.3199997F, -131.936005F), new Vector2(46.4840012F, -132.205994F), new Vector2(47.5159988F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1020() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(30.9740009F, -132.692001F)); + builder.AddCubicBezier(new Vector2(32.1139984F, -133.195999F), new Vector2(33.0800018F, -133.904007F), new Vector2(33.8720016F, -134.815994F)); + builder.AddLine(new Vector2(31.7479992F, -136.975998F)); + builder.AddCubicBezier(new Vector2(31.1959991F, -136.352005F), new Vector2(30.5419998F, -135.878006F), new Vector2(29.7859993F, -135.554001F)); + builder.AddCubicBezier(new Vector2(29.0300007F, -135.229996F), new Vector2(28.1959991F, -135.067993F), new Vector2(27.2840004F, -135.067993F)); + builder.AddCubicBezier(new Vector2(26.2040005F, -135.067993F), new Vector2(25.2439995F, -135.320007F), new Vector2(24.4039993F, -135.824005F)); + builder.AddCubicBezier(new Vector2(23.5639992F, -136.328003F), new Vector2(22.9039993F, -137.011993F), new Vector2(22.4239998F, -137.876007F)); + builder.AddCubicBezier(new Vector2(21.9440002F, -138.740005F), new Vector2(21.7040005F, -139.735992F), new Vector2(21.7040005F, -140.863998F)); + builder.AddCubicBezier(new Vector2(21.7040005F, -141.992004F), new Vector2(21.9440002F, -142.988007F), new Vector2(22.4239998F, -143.852005F)); + builder.AddCubicBezier(new Vector2(22.9039993F, -144.716003F), new Vector2(23.5639992F, -145.393997F), new Vector2(24.4039993F, -145.886002F)); + builder.AddCubicBezier(new Vector2(25.2439995F, -146.378006F), new Vector2(26.2040005F, -146.623993F), new Vector2(27.2840004F, -146.623993F)); + builder.AddCubicBezier(new Vector2(28.1720009F, -146.623993F), new Vector2(29F, -146.462006F), new Vector2(29.7679996F, -146.138F)); + builder.AddCubicBezier(new Vector2(30.5359993F, -145.813995F), new Vector2(31.184F, -145.339996F), new Vector2(31.7119999F, -144.716003F)); + builder.AddLine(new Vector2(33.8720016F, -146.876007F)); + builder.AddCubicBezier(new Vector2(33.0559998F, -147.811996F), new Vector2(32.0839996F, -148.526001F), new Vector2(30.9559994F, -149.018005F)); + builder.AddCubicBezier(new Vector2(29.8279991F, -149.509995F), new Vector2(28.6040001F, -149.755997F), new Vector2(27.2840004F, -149.755997F)); + builder.AddCubicBezier(new Vector2(25.6040001F, -149.755997F), new Vector2(24.0860004F, -149.365997F), new Vector2(22.7299995F, -148.585999F)); + builder.AddCubicBezier(new Vector2(21.3740005F, -147.806F), new Vector2(20.3059998F, -146.744003F), new Vector2(19.5259991F, -145.399994F)); + builder.AddCubicBezier(new Vector2(18.7460003F, -144.056F), new Vector2(18.3560009F, -142.544006F), new Vector2(18.3560009F, -140.863998F)); + builder.AddCubicBezier(new Vector2(18.3560009F, -139.207993F), new Vector2(18.7460003F, -137.701996F), new Vector2(19.5259991F, -136.345993F)); + builder.AddCubicBezier(new Vector2(20.3059998F, -134.990005F), new Vector2(21.3740005F, -133.916F), new Vector2(22.7299995F, -133.123993F)); + builder.AddCubicBezier(new Vector2(24.0860004F, -132.332001F), new Vector2(25.6040001F, -131.936005F), new Vector2(27.2840004F, -131.936005F)); + builder.AddCubicBezier(new Vector2(28.6040001F, -131.936005F), new Vector2(29.8339996F, -132.188004F), new Vector2(30.9740009F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1021() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(7.26800013F, -132.296005F)); + builder.AddLine(new Vector2(7.26800013F, -158F)); + builder.AddLine(new Vector2(4.02799988F, -158F)); + builder.AddLine(new Vector2(4.02799988F, -132.296005F)); + builder.AddLine(new Vector2(7.26800013F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1022() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-0.723999977F, -132.296005F)); + builder.AddLine(new Vector2(-0.723999977F, -158F)); + builder.AddLine(new Vector2(-3.96399999F, -158F)); + builder.AddLine(new Vector2(-3.96399999F, -132.296005F)); + builder.AddLine(new Vector2(-0.723999977F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1023() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-8.89599991F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-8.51200008F, -153.806F), new Vector2(-8.31999969F, -154.304001F), new Vector2(-8.31999969F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-8.31999969F, -155.479996F), new Vector2(-8.51200008F, -155.966003F), new Vector2(-8.89599991F, -156.362F)); + builder.AddCubicBezier(new Vector2(-9.27999973F, -156.757996F), new Vector2(-9.77200031F, -156.955994F), new Vector2(-10.3719997F, -156.955994F)); + builder.AddCubicBezier(new Vector2(-10.9720001F, -156.955994F), new Vector2(-11.4639997F, -156.757996F), new Vector2(-11.8479996F, -156.362F)); + builder.AddCubicBezier(new Vector2(-12.2320004F, -155.966003F), new Vector2(-12.4239998F, -155.479996F), new Vector2(-12.4239998F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-12.4239998F, -154.304001F), new Vector2(-12.2320004F, -153.806F), new Vector2(-11.8479996F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-11.4639997F, -153.014008F), new Vector2(-10.9720001F, -152.815994F), new Vector2(-10.3719997F, -152.815994F)); + builder.AddCubicBezier(new Vector2(-9.77200031F, -152.815994F), new Vector2(-9.27999973F, -153.014008F), new Vector2(-8.89599991F, -153.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-8.75199986F, -132.296005F)); + builder.AddLine(new Vector2(-8.75199986F, -149.395996F)); + builder.AddLine(new Vector2(-12.0279999F, -149.395996F)); + builder.AddLine(new Vector2(-12.0279999F, -132.296005F)); + builder.AddLine(new Vector2(-8.75199986F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1024() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-31.9720001F, -132.296005F)); + builder.AddLine(new Vector2(-27.0039997F, -145.184006F)); + builder.AddLine(new Vector2(-28.1919994F, -145.184006F)); + builder.AddLine(new Vector2(-23.2600002F, -132.296005F)); + builder.AddLine(new Vector2(-21.3519993F, -132.296005F)); + builder.AddLine(new Vector2(-14.6199999F, -149.395996F)); + builder.AddLine(new Vector2(-18.0039997F, -149.395996F)); + builder.AddLine(new Vector2(-22.8999996F, -136.076004F)); + builder.AddLine(new Vector2(-21.8199997F, -136.076004F)); + builder.AddLine(new Vector2(-26.6800003F, -149.395996F)); + builder.AddLine(new Vector2(-28.552F, -149.395996F)); + builder.AddLine(new Vector2(-33.4119987F, -136.076004F)); + builder.AddLine(new Vector2(-32.3320007F, -136.076004F)); + builder.AddLine(new Vector2(-37.2280006F, -149.395996F)); + builder.AddLine(new Vector2(-40.6119995F, -149.395996F)); + builder.AddLine(new Vector2(-33.8800011F, -132.296005F)); + builder.AddLine(new Vector2(-31.9720001F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1025() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-62.6800003F, -132.296005F)); + builder.AddLine(new Vector2(-62.6800003F, -158F)); + builder.AddLine(new Vector2(-65.9199982F, -158F)); + builder.AddLine(new Vector2(-65.9199982F, -132.296005F)); + builder.AddLine(new Vector2(-62.6800003F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-50.5839996F, -132.296005F)); + builder.AddLine(new Vector2(-50.5839996F, -142.916F)); + builder.AddCubicBezier(new Vector2(-50.5839996F, -144.259995F), new Vector2(-50.8720016F, -145.447998F), new Vector2(-51.4480019F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-52.0239983F, -147.511993F), new Vector2(-52.8100014F, -148.315994F), new Vector2(-53.8059998F, -148.891998F)); + builder.AddCubicBezier(new Vector2(-54.8019981F, -149.468002F), new Vector2(-55.9480019F, -149.755997F), new Vector2(-57.2439995F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-58.5400009F, -149.755997F), new Vector2(-59.7039986F, -149.462006F), new Vector2(-60.7360001F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-61.7680016F, -148.285995F), new Vector2(-62.5719986F, -147.488007F), new Vector2(-63.1479988F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-63.723999F, -145.472F), new Vector2(-64.012001F, -144.320007F), new Vector2(-64.012001F, -143.024002F)); + builder.AddLine(new Vector2(-62.6800003F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-62.6800003F, -143.132004F), new Vector2(-62.487999F, -143.899994F), new Vector2(-62.1040001F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-61.7200012F, -145.244003F), new Vector2(-61.1920013F, -145.772003F), new Vector2(-60.5200005F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-59.8479996F, -146.539993F), new Vector2(-59.0800018F, -146.731995F), new Vector2(-58.2159996F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-56.9199982F, -146.731995F), new Vector2(-55.8699989F, -146.311996F), new Vector2(-55.0660019F, -145.472F)); + builder.AddCubicBezier(new Vector2(-54.262001F, -144.632004F), new Vector2(-53.8600006F, -143.563995F), new Vector2(-53.8600006F, -142.268005F)); + builder.AddLine(new Vector2(-53.8600006F, -132.296005F)); + builder.AddLine(new Vector2(-50.5839996F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1026() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-72.0220032F, -132.692001F)); + builder.AddCubicBezier(new Vector2(-70.8820038F, -133.195999F), new Vector2(-69.9160004F, -133.904007F), new Vector2(-69.1240005F, -134.815994F)); + builder.AddLine(new Vector2(-71.2480011F, -136.975998F)); + builder.AddCubicBezier(new Vector2(-71.8000031F, -136.352005F), new Vector2(-72.4540024F, -135.878006F), new Vector2(-73.2099991F, -135.554001F)); + builder.AddCubicBezier(new Vector2(-73.9660034F, -135.229996F), new Vector2(-74.8000031F, -135.067993F), new Vector2(-75.711998F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-76.7919998F, -135.067993F), new Vector2(-77.7519989F, -135.320007F), new Vector2(-78.5920029F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-79.4319992F, -136.328003F), new Vector2(-80.0920029F, -137.011993F), new Vector2(-80.5719986F, -137.876007F)); + builder.AddCubicBezier(new Vector2(-81.052002F, -138.740005F), new Vector2(-81.2919998F, -139.735992F), new Vector2(-81.2919998F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-81.2919998F, -141.992004F), new Vector2(-81.052002F, -142.988007F), new Vector2(-80.5719986F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-80.0920029F, -144.716003F), new Vector2(-79.4319992F, -145.393997F), new Vector2(-78.5920029F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-77.7519989F, -146.378006F), new Vector2(-76.7919998F, -146.623993F), new Vector2(-75.711998F, -146.623993F)); + builder.AddCubicBezier(new Vector2(-74.8239975F, -146.623993F), new Vector2(-73.9960022F, -146.462006F), new Vector2(-73.2279968F, -146.138F)); + builder.AddCubicBezier(new Vector2(-72.4599991F, -145.813995F), new Vector2(-71.8119965F, -145.339996F), new Vector2(-71.2839966F, -144.716003F)); + builder.AddLine(new Vector2(-69.1240005F, -146.876007F)); + builder.AddCubicBezier(new Vector2(-69.9400024F, -147.811996F), new Vector2(-70.9120026F, -148.526001F), new Vector2(-72.0400009F, -149.018005F)); + builder.AddCubicBezier(new Vector2(-73.1679993F, -149.509995F), new Vector2(-74.3919983F, -149.755997F), new Vector2(-75.711998F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-77.3919983F, -149.755997F), new Vector2(-78.9100037F, -149.365997F), new Vector2(-80.2659988F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-81.6220016F, -147.806F), new Vector2(-82.6900024F, -146.744003F), new Vector2(-83.4700012F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-84.25F, -144.056F), new Vector2(-84.6399994F, -142.544006F), new Vector2(-84.6399994F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-84.6399994F, -139.207993F), new Vector2(-84.25F, -137.701996F), new Vector2(-83.4700012F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-82.6900024F, -134.990005F), new Vector2(-81.6220016F, -133.916F), new Vector2(-80.2659988F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-78.9100037F, -132.332001F), new Vector2(-77.3919983F, -131.936005F), new Vector2(-75.711998F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-74.3919983F, -131.936005F), new Vector2(-73.1620026F, -132.188004F), new Vector2(-72.0220032F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1027() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-88.4560013F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-88.0719986F, -153.806F), new Vector2(-87.8799973F, -154.304001F), new Vector2(-87.8799973F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-87.8799973F, -155.479996F), new Vector2(-88.0719986F, -155.966003F), new Vector2(-88.4560013F, -156.362F)); + builder.AddCubicBezier(new Vector2(-88.8399963F, -156.757996F), new Vector2(-89.3320007F, -156.955994F), new Vector2(-89.9319992F, -156.955994F)); + builder.AddCubicBezier(new Vector2(-90.5319977F, -156.955994F), new Vector2(-91.0240021F, -156.757996F), new Vector2(-91.4079971F, -156.362F)); + builder.AddCubicBezier(new Vector2(-91.7919998F, -155.966003F), new Vector2(-91.9840012F, -155.479996F), new Vector2(-91.9840012F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-91.9840012F, -154.304001F), new Vector2(-91.7919998F, -153.806F), new Vector2(-91.4079971F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-91.0240021F, -153.014008F), new Vector2(-90.5319977F, -152.815994F), new Vector2(-89.9319992F, -152.815994F)); + builder.AddCubicBezier(new Vector2(-89.3320007F, -152.815994F), new Vector2(-88.8399963F, -153.014008F), new Vector2(-88.4560013F, -153.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-88.3119965F, -132.296005F)); + builder.AddLine(new Vector2(-88.3119965F, -149.395996F)); + builder.AddLine(new Vector2(-91.5879974F, -149.395996F)); + builder.AddLine(new Vector2(-91.5879974F, -132.296005F)); + builder.AddLine(new Vector2(-88.3119965F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1028() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-108.075996F, -132.296005F)); + builder.AddLine(new Vector2(-108.075996F, -158F)); + builder.AddLine(new Vector2(-111.316002F, -158F)); + builder.AddLine(new Vector2(-111.316002F, -132.296005F)); + builder.AddLine(new Vector2(-108.075996F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-95.9800034F, -132.296005F)); + builder.AddLine(new Vector2(-95.9800034F, -142.916F)); + builder.AddCubicBezier(new Vector2(-95.9800034F, -144.259995F), new Vector2(-96.2679977F, -145.447998F), new Vector2(-96.8440018F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-97.4199982F, -147.511993F), new Vector2(-98.2060013F, -148.315994F), new Vector2(-99.2020035F, -148.891998F)); + builder.AddCubicBezier(new Vector2(-100.197998F, -149.468002F), new Vector2(-101.344002F, -149.755997F), new Vector2(-102.639999F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-103.935997F, -149.755997F), new Vector2(-105.099998F, -149.462006F), new Vector2(-106.132004F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-107.164001F, -148.285995F), new Vector2(-107.968002F, -147.488007F), new Vector2(-108.543999F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-109.120003F, -145.472F), new Vector2(-109.407997F, -144.320007F), new Vector2(-109.407997F, -143.024002F)); + builder.AddLine(new Vector2(-108.075996F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-108.075996F, -143.132004F), new Vector2(-107.884003F, -143.899994F), new Vector2(-107.5F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-107.115997F, -145.244003F), new Vector2(-106.587997F, -145.772003F), new Vector2(-105.916F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-105.244003F, -146.539993F), new Vector2(-104.475998F, -146.731995F), new Vector2(-103.612F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-102.316002F, -146.731995F), new Vector2(-101.265999F, -146.311996F), new Vector2(-100.461998F, -145.472F)); + builder.AddCubicBezier(new Vector2(-99.6579971F, -144.632004F), new Vector2(-99.2559967F, -143.563995F), new Vector2(-99.2559967F, -142.268005F)); + builder.AddLine(new Vector2(-99.2559967F, -132.296005F)); + builder.AddLine(new Vector2(-95.9800034F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1029() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-131.548004F, -132.296005F)); + builder.AddLine(new Vector2(-126.580002F, -145.184006F)); + builder.AddLine(new Vector2(-127.767998F, -145.184006F)); + builder.AddLine(new Vector2(-122.835999F, -132.296005F)); + builder.AddLine(new Vector2(-120.928001F, -132.296005F)); + builder.AddLine(new Vector2(-114.195999F, -149.395996F)); + builder.AddLine(new Vector2(-117.580002F, -149.395996F)); + builder.AddLine(new Vector2(-122.475998F, -136.076004F)); + builder.AddLine(new Vector2(-121.396004F, -136.076004F)); + builder.AddLine(new Vector2(-126.255997F, -149.395996F)); + builder.AddLine(new Vector2(-128.128006F, -149.395996F)); + builder.AddLine(new Vector2(-132.988007F, -136.076004F)); + builder.AddLine(new Vector2(-131.908005F, -136.076004F)); + builder.AddLine(new Vector2(-136.804001F, -149.395996F)); + builder.AddLine(new Vector2(-140.188004F, -149.395996F)); + builder.AddLine(new Vector2(-133.455994F, -132.296005F)); + builder.AddLine(new Vector2(-131.548004F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1030() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-153.651993F, -127.328003F)); + builder.AddLine(new Vector2(-151.240005F, -131.792007F)); + builder.AddCubicBezier(new Vector2(-150.927994F, -132.391998F), new Vector2(-150.718002F, -132.878006F), new Vector2(-150.610001F, -133.25F)); + builder.AddCubicBezier(new Vector2(-150.501999F, -133.621994F), new Vector2(-150.447998F, -133.940002F), new Vector2(-150.447998F, -134.203995F)); + builder.AddCubicBezier(new Vector2(-150.447998F, -134.899994F), new Vector2(-150.688004F, -135.481995F), new Vector2(-151.167999F, -135.949997F)); + builder.AddCubicBezier(new Vector2(-151.647995F, -136.417999F), new Vector2(-152.199997F, -136.651993F), new Vector2(-152.824005F, -136.651993F)); + builder.AddCubicBezier(new Vector2(-153.520004F, -136.651993F), new Vector2(-154.095993F, -136.417999F), new Vector2(-154.552002F, -135.949997F)); + builder.AddCubicBezier(new Vector2(-155.007996F, -135.481995F), new Vector2(-155.235992F, -134.899994F), new Vector2(-155.235992F, -134.203995F)); + builder.AddCubicBezier(new Vector2(-155.235992F, -133.580002F), new Vector2(-155.026001F, -133.057999F), new Vector2(-154.606003F, -132.638F)); + builder.AddCubicBezier(new Vector2(-154.186005F, -132.218002F), new Vector2(-153.723999F, -132.007996F), new Vector2(-153.220001F, -132.007996F)); + builder.AddCubicBezier(new Vector2(-152.979996F, -132.007996F), new Vector2(-152.764008F, -132.091995F), new Vector2(-152.572006F, -132.259995F)); + builder.AddCubicBezier(new Vector2(-152.380005F, -132.427994F), new Vector2(-152.223999F, -132.643997F), new Vector2(-152.104004F, -132.908005F)); + builder.AddLine(new Vector2(-153.255997F, -132.619995F)); + builder.AddLine(new Vector2(-155.488007F, -128.335999F)); + builder.AddLine(new Vector2(-153.651993F, -127.328003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1031() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-172.156006F, -132.296005F)); + builder.AddLine(new Vector2(-172.156006F, -149.395996F)); + builder.AddLine(new Vector2(-175.395996F, -149.395996F)); + builder.AddLine(new Vector2(-175.395996F, -132.296005F)); + builder.AddLine(new Vector2(-172.156006F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-160.059998F, -132.296005F)); + builder.AddLine(new Vector2(-160.059998F, -142.916F)); + builder.AddCubicBezier(new Vector2(-160.059998F, -144.091995F), new Vector2(-160.348007F, -145.201996F), new Vector2(-160.923996F, -146.246002F)); + builder.AddCubicBezier(new Vector2(-161.5F, -147.289993F), new Vector2(-162.285995F, -148.136002F), new Vector2(-163.281998F, -148.783997F)); + builder.AddCubicBezier(new Vector2(-164.278F, -149.432007F), new Vector2(-165.423996F, -149.755997F), new Vector2(-166.720001F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-168.016006F, -149.755997F), new Vector2(-169.179993F, -149.462006F), new Vector2(-170.212006F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-171.244003F, -148.285995F), new Vector2(-172.048004F, -147.488007F), new Vector2(-172.623993F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-173.199997F, -145.472F), new Vector2(-173.488007F, -144.320007F), new Vector2(-173.488007F, -143.024002F)); + builder.AddLine(new Vector2(-172.156006F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-172.156006F, -143.132004F), new Vector2(-171.964005F, -143.899994F), new Vector2(-171.580002F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-171.195999F, -145.244003F), new Vector2(-170.667999F, -145.772003F), new Vector2(-169.996002F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-169.324005F, -146.539993F), new Vector2(-168.556F, -146.731995F), new Vector2(-167.692001F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-166.395996F, -146.731995F), new Vector2(-165.345993F, -146.311996F), new Vector2(-164.542007F, -145.472F)); + builder.AddCubicBezier(new Vector2(-163.738007F, -144.632004F), new Vector2(-163.335999F, -143.563995F), new Vector2(-163.335999F, -142.268005F)); + builder.AddLine(new Vector2(-163.335999F, -132.296005F)); + builder.AddLine(new Vector2(-160.059998F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1032() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-190.804001F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-191.643997F, -136.328003F), new Vector2(-192.304001F, -137.018005F), new Vector2(-192.783997F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-193.264008F, -138.770004F), new Vector2(-193.503998F, -139.772003F), new Vector2(-193.503998F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-193.503998F, -142.003998F), new Vector2(-193.264008F, -142.988007F), new Vector2(-192.783997F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-192.304001F, -144.716003F), new Vector2(-191.643997F, -145.393997F), new Vector2(-190.804001F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-189.964005F, -146.378006F), new Vector2(-189.016006F, -146.623993F), new Vector2(-187.960007F, -146.623993F)); + builder.AddCubicBezier(new Vector2(-186.856003F, -146.623993F), new Vector2(-185.889999F, -146.378006F), new Vector2(-185.061996F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-184.233994F, -145.393997F), new Vector2(-183.574005F, -144.716003F), new Vector2(-183.082001F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-182.589996F, -142.988007F), new Vector2(-182.343994F, -142.003998F), new Vector2(-182.343994F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-182.343994F, -139.772003F), new Vector2(-182.584F, -138.770004F), new Vector2(-183.063995F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-183.544006F, -137.018005F), new Vector2(-184.203995F, -136.328003F), new Vector2(-185.044006F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-185.884003F, -135.320007F), new Vector2(-186.856003F, -135.067993F), new Vector2(-187.960007F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-189.016006F, -135.067993F), new Vector2(-189.964005F, -135.320007F), new Vector2(-190.804001F, -135.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-183.406006F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-182.050003F, -133.916F), new Vector2(-180.975998F, -134.990005F), new Vector2(-180.184006F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-179.391998F, -137.701996F), new Vector2(-178.996002F, -139.220001F), new Vector2(-178.996002F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-178.996002F, -142.556F), new Vector2(-179.391998F, -144.056F), new Vector2(-180.184006F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-180.975998F, -146.744003F), new Vector2(-182.050003F, -147.806F), new Vector2(-183.406006F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-184.761993F, -149.365997F), new Vector2(-186.279999F, -149.755997F), new Vector2(-187.960007F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-189.615997F, -149.755997F), new Vector2(-191.115997F, -149.360001F), new Vector2(-192.460007F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-193.804001F, -147.776001F), new Vector2(-194.871994F, -146.714005F), new Vector2(-195.664001F, -145.382004F)); + builder.AddCubicBezier(new Vector2(-196.455994F, -144.050003F), new Vector2(-196.852005F, -142.556F), new Vector2(-196.852005F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-196.852005F, -139.220001F), new Vector2(-196.455994F, -137.701996F), new Vector2(-195.664001F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-194.871994F, -134.990005F), new Vector2(-193.804001F, -133.916F), new Vector2(-192.460007F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-191.115997F, -132.332001F), new Vector2(-189.615997F, -131.936005F), new Vector2(-187.960007F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-186.279999F, -131.936005F), new Vector2(-184.761993F, -132.332001F), new Vector2(-183.406006F, -133.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1033() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-200.667999F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-200.283997F, -153.806F), new Vector2(-200.091995F, -154.304001F), new Vector2(-200.091995F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-200.091995F, -155.479996F), new Vector2(-200.283997F, -155.966003F), new Vector2(-200.667999F, -156.362F)); + builder.AddCubicBezier(new Vector2(-201.052002F, -156.757996F), new Vector2(-201.544006F, -156.955994F), new Vector2(-202.143997F, -156.955994F)); + builder.AddCubicBezier(new Vector2(-202.744003F, -156.955994F), new Vector2(-203.235992F, -156.757996F), new Vector2(-203.619995F, -156.362F)); + builder.AddCubicBezier(new Vector2(-204.003998F, -155.966003F), new Vector2(-204.195999F, -155.479996F), new Vector2(-204.195999F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-204.195999F, -154.304001F), new Vector2(-204.003998F, -153.806F), new Vector2(-203.619995F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-203.235992F, -153.014008F), new Vector2(-202.744003F, -152.815994F), new Vector2(-202.143997F, -152.815994F)); + builder.AddCubicBezier(new Vector2(-201.544006F, -152.815994F), new Vector2(-201.052002F, -153.014008F), new Vector2(-200.667999F, -153.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-200.524002F, -132.296005F)); + builder.AddLine(new Vector2(-200.524002F, -149.395996F)); + builder.AddLine(new Vector2(-203.800003F, -149.395996F)); + builder.AddLine(new Vector2(-203.800003F, -132.296005F)); + builder.AddLine(new Vector2(-200.524002F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1034() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-206.968002F, -146.444F)); + builder.AddLine(new Vector2(-206.968002F, -149.395996F)); + builder.AddLine(new Vector2(-218.632004F, -149.395996F)); + builder.AddLine(new Vector2(-218.632004F, -146.444F)); + builder.AddLine(new Vector2(-206.968002F, -146.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-211.179993F, -132.296005F)); + builder.AddLine(new Vector2(-211.179993F, -156.559998F)); + builder.AddLine(new Vector2(-214.419998F, -156.559998F)); + builder.AddLine(new Vector2(-214.419998F, -132.296005F)); + builder.AddLine(new Vector2(-211.179993F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1035() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-221.692001F, -132.296005F)); + builder.AddLine(new Vector2(-221.692001F, -149.395996F)); + builder.AddLine(new Vector2(-224.968002F, -149.395996F)); + builder.AddLine(new Vector2(-224.968002F, -145.220001F)); + builder.AddLine(new Vector2(-224.356003F, -141.080002F)); + builder.AddLine(new Vector2(-224.968002F, -136.904007F)); + builder.AddLine(new Vector2(-224.968002F, -132.296005F)); + builder.AddLine(new Vector2(-221.692001F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-232.996002F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-233.835999F, -136.255997F), new Vector2(-234.490005F, -136.945999F), new Vector2(-234.957993F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-235.425995F, -138.697998F), new Vector2(-235.660004F, -139.712006F), new Vector2(-235.660004F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-235.660004F, -141.992004F), new Vector2(-235.425995F, -142.994003F), new Vector2(-234.957993F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-234.490005F, -144.746002F), new Vector2(-233.841995F, -145.436005F), new Vector2(-233.014008F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-232.186005F, -146.444F), new Vector2(-231.231995F, -146.695999F), new Vector2(-230.151993F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-229.072006F, -146.695999F), new Vector2(-228.130005F, -146.449997F), new Vector2(-227.326004F, -145.957993F)); + builder.AddCubicBezier(new Vector2(-226.522003F, -145.466003F), new Vector2(-225.891998F, -144.776001F), new Vector2(-225.436005F, -143.888F)); + builder.AddCubicBezier(new Vector2(-224.979996F, -143F), new Vector2(-224.751999F, -141.979996F), new Vector2(-224.751999F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-224.751999F, -139.123993F), new Vector2(-225.244003F, -137.725998F), new Vector2(-226.227997F, -136.634003F)); + builder.AddCubicBezier(new Vector2(-227.212006F, -135.542007F), new Vector2(-228.507996F, -134.996002F), new Vector2(-230.115997F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-231.195999F, -134.996002F), new Vector2(-232.156006F, -135.248001F), new Vector2(-232.996002F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-227.164001F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-226.132004F, -133.285995F), new Vector2(-225.309998F, -134.035995F), new Vector2(-224.697998F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-224.085999F, -135.955994F), new Vector2(-223.744003F, -137.048004F), new Vector2(-223.671997F, -138.272003F)); + builder.AddLine(new Vector2(-223.671997F, -143.419998F)); + builder.AddCubicBezier(new Vector2(-223.744003F, -144.667999F), new Vector2(-224.091995F, -145.766006F), new Vector2(-224.716003F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-225.339996F, -147.662003F), new Vector2(-226.162003F, -148.406006F), new Vector2(-227.182007F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-228.201996F, -149.485992F), new Vector2(-229.360001F, -149.755997F), new Vector2(-230.656006F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-232.240005F, -149.755997F), new Vector2(-233.662003F, -149.360001F), new Vector2(-234.921997F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-236.182007F, -147.776001F), new Vector2(-237.177994F, -146.707993F), new Vector2(-237.910004F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-238.641998F, -144.020004F), new Vector2(-239.007996F, -142.507996F), new Vector2(-239.007996F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-239.007996F, -139.147995F), new Vector2(-238.641998F, -137.636002F), new Vector2(-237.910004F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-237.177994F, -134.947998F), new Vector2(-236.182007F, -133.886002F), new Vector2(-234.921997F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-233.662003F, -132.326004F), new Vector2(-232.240005F, -131.936005F), new Vector2(-230.656006F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-229.360001F, -131.936005F), new Vector2(-228.195999F, -132.205994F), new Vector2(-227.164001F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1036() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-254.416F, -132.296005F)); + builder.AddLine(new Vector2(-254.416F, -149.395996F)); + builder.AddLine(new Vector2(-257.656006F, -149.395996F)); + builder.AddLine(new Vector2(-257.656006F, -132.296005F)); + builder.AddLine(new Vector2(-254.416F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-242.320007F, -132.296005F)); + builder.AddLine(new Vector2(-242.320007F, -142.916F)); + builder.AddCubicBezier(new Vector2(-242.320007F, -144.091995F), new Vector2(-242.608002F, -145.201996F), new Vector2(-243.184006F, -146.246002F)); + builder.AddCubicBezier(new Vector2(-243.759995F, -147.289993F), new Vector2(-244.546005F, -148.136002F), new Vector2(-245.542007F, -148.783997F)); + builder.AddCubicBezier(new Vector2(-246.537994F, -149.432007F), new Vector2(-247.684006F, -149.755997F), new Vector2(-248.979996F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-250.276001F, -149.755997F), new Vector2(-251.440002F, -149.462006F), new Vector2(-252.472F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-253.503998F, -148.285995F), new Vector2(-254.307999F, -147.488007F), new Vector2(-254.884003F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-255.460007F, -145.472F), new Vector2(-255.748001F, -144.320007F), new Vector2(-255.748001F, -143.024002F)); + builder.AddLine(new Vector2(-254.416F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-254.416F, -143.132004F), new Vector2(-254.223999F, -143.899994F), new Vector2(-253.839996F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-253.455994F, -145.244003F), new Vector2(-252.927994F, -145.772003F), new Vector2(-252.255997F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-251.584F, -146.539993F), new Vector2(-250.815994F, -146.731995F), new Vector2(-249.951996F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-248.656006F, -146.731995F), new Vector2(-247.606003F, -146.311996F), new Vector2(-246.802002F, -145.472F)); + builder.AddCubicBezier(new Vector2(-245.998001F, -144.632004F), new Vector2(-245.595993F, -143.563995F), new Vector2(-245.595993F, -142.268005F)); + builder.AddLine(new Vector2(-245.595993F, -132.296005F)); + builder.AddLine(new Vector2(-242.320007F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1037() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-272.70401F, -132.692001F)); + builder.AddCubicBezier(new Vector2(-271.528015F, -133.195999F), new Vector2(-270.519989F, -133.927994F), new Vector2(-269.679993F, -134.888F)); + builder.AddLine(new Vector2(-271.768005F, -137.011993F)); + builder.AddCubicBezier(new Vector2(-272.343994F, -136.339996F), new Vector2(-273.033997F, -135.835999F), new Vector2(-273.838013F, -135.5F)); + builder.AddCubicBezier(new Vector2(-274.641998F, -135.164001F), new Vector2(-275.523987F, -134.996002F), new Vector2(-276.484009F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-277.635986F, -134.996002F), new Vector2(-278.656006F, -135.242004F), new Vector2(-279.544006F, -135.733994F)); + builder.AddCubicBezier(new Vector2(-280.432007F, -136.225998F), new Vector2(-281.115997F, -136.921997F), new Vector2(-281.596008F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-282.075989F, -138.722F), new Vector2(-282.31601F, -139.772003F), new Vector2(-282.31601F, -140.972F)); + builder.AddCubicBezier(new Vector2(-282.31601F, -142.147995F), new Vector2(-282.088013F, -143.167999F), new Vector2(-281.631989F, -144.031998F)); + builder.AddCubicBezier(new Vector2(-281.175995F, -144.895996F), new Vector2(-280.528015F, -145.567993F), new Vector2(-279.687988F, -146.048004F)); + builder.AddCubicBezier(new Vector2(-278.847992F, -146.528F), new Vector2(-277.876007F, -146.768005F), new Vector2(-276.772003F, -146.768005F)); + builder.AddCubicBezier(new Vector2(-275.716003F, -146.768005F), new Vector2(-274.81601F, -146.546005F), new Vector2(-274.071991F, -146.102005F)); + builder.AddCubicBezier(new Vector2(-273.328003F, -145.658005F), new Vector2(-272.752014F, -145.033997F), new Vector2(-272.343994F, -144.229996F)); + builder.AddCubicBezier(new Vector2(-271.936005F, -143.425995F), new Vector2(-271.731995F, -142.447998F), new Vector2(-271.731995F, -141.296005F)); + builder.AddLine(new Vector2(-270.544006F, -142.339996F)); + builder.AddLine(new Vector2(-283.252014F, -142.339996F)); + builder.AddLine(new Vector2(-283.252014F, -139.639999F)); + builder.AddLine(new Vector2(-268.81601F, -139.639999F)); + builder.AddCubicBezier(new Vector2(-268.743988F, -139.975998F), new Vector2(-268.696014F, -140.281998F), new Vector2(-268.671997F, -140.557999F)); + builder.AddCubicBezier(new Vector2(-268.64801F, -140.834F), new Vector2(-268.635986F, -141.091995F), new Vector2(-268.635986F, -141.332001F)); + builder.AddCubicBezier(new Vector2(-268.635986F, -142.964005F), new Vector2(-268.977997F, -144.416F), new Vector2(-269.661987F, -145.688004F)); + builder.AddCubicBezier(new Vector2(-270.346008F, -146.960007F), new Vector2(-271.299988F, -147.955994F), new Vector2(-272.523987F, -148.675995F)); + builder.AddCubicBezier(new Vector2(-273.747986F, -149.395996F), new Vector2(-275.140015F, -149.755997F), new Vector2(-276.700012F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-278.355988F, -149.755997F), new Vector2(-279.850006F, -149.365997F), new Vector2(-281.182007F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-282.514008F, -147.806F), new Vector2(-283.570007F, -146.744003F), new Vector2(-284.350006F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-285.130005F, -144.056F), new Vector2(-285.519989F, -142.544006F), new Vector2(-285.519989F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-285.519989F, -139.160004F), new Vector2(-285.123993F, -137.636002F), new Vector2(-284.332001F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-283.540009F, -134.947998F), new Vector2(-282.466003F, -133.886002F), new Vector2(-281.109985F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-279.753998F, -132.326004F), new Vector2(-278.212006F, -131.936005F), new Vector2(-276.484009F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-275.140015F, -131.936005F), new Vector2(-273.880005F, -132.188004F), new Vector2(-272.70401F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1038() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-300.891998F, -132.296005F)); + builder.AddLine(new Vector2(-300.891998F, -158F)); + builder.AddLine(new Vector2(-304.131989F, -158F)); + builder.AddLine(new Vector2(-304.131989F, -132.296005F)); + builder.AddLine(new Vector2(-300.891998F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-288.79599F, -132.296005F)); + builder.AddLine(new Vector2(-288.79599F, -142.916F)); + builder.AddCubicBezier(new Vector2(-288.79599F, -144.259995F), new Vector2(-289.084015F, -145.447998F), new Vector2(-289.660004F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-290.235992F, -147.511993F), new Vector2(-291.022003F, -148.315994F), new Vector2(-292.018005F, -148.891998F)); + builder.AddCubicBezier(new Vector2(-293.014008F, -149.468002F), new Vector2(-294.160004F, -149.755997F), new Vector2(-295.455994F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-296.752014F, -149.755997F), new Vector2(-297.915985F, -149.462006F), new Vector2(-298.947998F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-299.980011F, -148.285995F), new Vector2(-300.783997F, -147.488007F), new Vector2(-301.359985F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-301.936005F, -145.472F), new Vector2(-302.223999F, -144.320007F), new Vector2(-302.223999F, -143.024002F)); + builder.AddLine(new Vector2(-300.891998F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-300.891998F, -143.132004F), new Vector2(-300.700012F, -143.899994F), new Vector2(-300.31601F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-299.932007F, -145.244003F), new Vector2(-299.403992F, -145.772003F), new Vector2(-298.731995F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-298.059998F, -146.539993F), new Vector2(-297.291992F, -146.731995F), new Vector2(-296.428009F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-295.131989F, -146.731995F), new Vector2(-294.082001F, -146.311996F), new Vector2(-293.278015F, -145.472F)); + builder.AddCubicBezier(new Vector2(-292.473999F, -144.632004F), new Vector2(-292.071991F, -143.563995F), new Vector2(-292.071991F, -142.268005F)); + builder.AddLine(new Vector2(-292.071991F, -132.296005F)); + builder.AddLine(new Vector2(-288.79599F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1039() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-307.299988F, -146.444F)); + builder.AddLine(new Vector2(-307.299988F, -149.395996F)); + builder.AddLine(new Vector2(-318.963989F, -149.395996F)); + builder.AddLine(new Vector2(-318.963989F, -146.444F)); + builder.AddLine(new Vector2(-307.299988F, -146.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-311.511993F, -132.296005F)); + builder.AddLine(new Vector2(-311.511993F, -156.559998F)); + builder.AddLine(new Vector2(-314.752014F, -156.559998F)); + builder.AddLine(new Vector2(-314.752014F, -132.296005F)); + builder.AddLine(new Vector2(-311.511993F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1040() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-332.428009F, -132.692001F)); + builder.AddCubicBezier(new Vector2(-331.252014F, -133.195999F), new Vector2(-330.243988F, -133.927994F), new Vector2(-329.403992F, -134.888F)); + builder.AddLine(new Vector2(-331.492004F, -137.011993F)); + builder.AddCubicBezier(new Vector2(-332.067993F, -136.339996F), new Vector2(-332.757996F, -135.835999F), new Vector2(-333.562012F, -135.5F)); + builder.AddCubicBezier(new Vector2(-334.365997F, -135.164001F), new Vector2(-335.247986F, -134.996002F), new Vector2(-336.208008F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-337.359985F, -134.996002F), new Vector2(-338.380005F, -135.242004F), new Vector2(-339.268005F, -135.733994F)); + builder.AddCubicBezier(new Vector2(-340.156006F, -136.225998F), new Vector2(-340.839996F, -136.921997F), new Vector2(-341.320007F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-341.799988F, -138.722F), new Vector2(-342.040009F, -139.772003F), new Vector2(-342.040009F, -140.972F)); + builder.AddCubicBezier(new Vector2(-342.040009F, -142.147995F), new Vector2(-341.812012F, -143.167999F), new Vector2(-341.355988F, -144.031998F)); + builder.AddCubicBezier(new Vector2(-340.899994F, -144.895996F), new Vector2(-340.252014F, -145.567993F), new Vector2(-339.411987F, -146.048004F)); + builder.AddCubicBezier(new Vector2(-338.571991F, -146.528F), new Vector2(-337.600006F, -146.768005F), new Vector2(-336.496002F, -146.768005F)); + builder.AddCubicBezier(new Vector2(-335.440002F, -146.768005F), new Vector2(-334.540009F, -146.546005F), new Vector2(-333.79599F, -146.102005F)); + builder.AddCubicBezier(new Vector2(-333.052002F, -145.658005F), new Vector2(-332.476013F, -145.033997F), new Vector2(-332.067993F, -144.229996F)); + builder.AddCubicBezier(new Vector2(-331.660004F, -143.425995F), new Vector2(-331.455994F, -142.447998F), new Vector2(-331.455994F, -141.296005F)); + builder.AddLine(new Vector2(-330.268005F, -142.339996F)); + builder.AddLine(new Vector2(-342.976013F, -142.339996F)); + builder.AddLine(new Vector2(-342.976013F, -139.639999F)); + builder.AddLine(new Vector2(-328.540009F, -139.639999F)); + builder.AddCubicBezier(new Vector2(-328.467987F, -139.975998F), new Vector2(-328.420013F, -140.281998F), new Vector2(-328.395996F, -140.557999F)); + builder.AddCubicBezier(new Vector2(-328.372009F, -140.834F), new Vector2(-328.359985F, -141.091995F), new Vector2(-328.359985F, -141.332001F)); + builder.AddCubicBezier(new Vector2(-328.359985F, -142.964005F), new Vector2(-328.701996F, -144.416F), new Vector2(-329.385986F, -145.688004F)); + builder.AddCubicBezier(new Vector2(-330.070007F, -146.960007F), new Vector2(-331.023987F, -147.955994F), new Vector2(-332.247986F, -148.675995F)); + builder.AddCubicBezier(new Vector2(-333.471985F, -149.395996F), new Vector2(-334.864014F, -149.755997F), new Vector2(-336.424011F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-338.079987F, -149.755997F), new Vector2(-339.574005F, -149.365997F), new Vector2(-340.906006F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-342.238007F, -147.806F), new Vector2(-343.294006F, -146.744003F), new Vector2(-344.074005F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-344.854004F, -144.056F), new Vector2(-345.243988F, -142.544006F), new Vector2(-345.243988F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-345.243988F, -139.160004F), new Vector2(-344.847992F, -137.636002F), new Vector2(-344.056F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-343.264008F, -134.947998F), new Vector2(-342.190002F, -133.886002F), new Vector2(-340.834015F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-339.477997F, -132.326004F), new Vector2(-337.936005F, -131.936005F), new Vector2(-336.208008F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-334.864014F, -131.936005F), new Vector2(-333.604004F, -132.188004F), new Vector2(-332.428009F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1041() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-348.843994F, -158F)); + builder.AddLine(new Vector2(-352.119995F, -158F)); + builder.AddLine(new Vector2(-352.119995F, -145.220001F)); + builder.AddLine(new Vector2(-351.507996F, -141.080002F)); + builder.AddLine(new Vector2(-352.119995F, -136.904007F)); + builder.AddLine(new Vector2(-352.119995F, -132.296005F)); + builder.AddLine(new Vector2(-348.843994F, -132.296005F)); + builder.AddLine(new Vector2(-348.843994F, -158F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-360.165985F, -135.733994F)); + builder.AddCubicBezier(new Vector2(-360.993988F, -136.225998F), new Vector2(-361.641998F, -136.916F), new Vector2(-362.109985F, -137.804001F)); + builder.AddCubicBezier(new Vector2(-362.578003F, -138.692001F), new Vector2(-362.812012F, -139.712006F), new Vector2(-362.812012F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-362.812012F, -142.016006F), new Vector2(-362.578003F, -143.029999F), new Vector2(-362.109985F, -143.906006F)); + builder.AddCubicBezier(new Vector2(-361.641998F, -144.781998F), new Vector2(-361F, -145.466003F), new Vector2(-360.18399F, -145.957993F)); + builder.AddCubicBezier(new Vector2(-359.368011F, -146.449997F), new Vector2(-358.420013F, -146.695999F), new Vector2(-357.339996F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-356.26001F, -146.695999F), new Vector2(-355.312012F, -146.444F), new Vector2(-354.496002F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-353.679993F, -145.436005F), new Vector2(-353.044006F, -144.746002F), new Vector2(-352.588013F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-352.131989F, -142.994003F), new Vector2(-351.903992F, -141.979996F), new Vector2(-351.903992F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-351.903992F, -139.699997F), new Vector2(-352.131989F, -138.697998F), new Vector2(-352.588013F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-353.044006F, -136.945999F), new Vector2(-353.679993F, -136.255997F), new Vector2(-354.496002F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-355.312012F, -135.248001F), new Vector2(-356.26001F, -134.996002F), new Vector2(-357.339996F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-358.395996F, -134.996002F), new Vector2(-359.338013F, -135.242004F), new Vector2(-360.165985F, -135.733994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-354.35199F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-353.320007F, -133.285995F), new Vector2(-352.492004F, -134.035995F), new Vector2(-351.868011F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-351.243988F, -135.955994F), new Vector2(-350.895996F, -137.048004F), new Vector2(-350.824005F, -138.272003F)); + builder.AddLine(new Vector2(-350.824005F, -143.419998F)); + builder.AddCubicBezier(new Vector2(-350.895996F, -144.667999F), new Vector2(-351.25F, -145.766006F), new Vector2(-351.885986F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-352.522003F, -147.662003F), new Vector2(-353.355988F, -148.406006F), new Vector2(-354.388F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-355.420013F, -149.485992F), new Vector2(-356.584015F, -149.755997F), new Vector2(-357.880005F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-359.440002F, -149.755997F), new Vector2(-360.843994F, -149.360001F), new Vector2(-362.09201F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-363.339996F, -147.776001F), new Vector2(-364.329987F, -146.707993F), new Vector2(-365.062012F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-365.794006F, -144.020004F), new Vector2(-366.160004F, -142.507996F), new Vector2(-366.160004F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-366.160004F, -139.147995F), new Vector2(-365.794006F, -137.636002F), new Vector2(-365.062012F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-364.329987F, -134.947998F), new Vector2(-363.339996F, -133.886002F), new Vector2(-362.09201F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-360.843994F, -132.326004F), new Vector2(-359.440002F, -131.936005F), new Vector2(-357.880005F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-356.559998F, -131.936005F), new Vector2(-355.384003F, -132.205994F), new Vector2(-354.35199F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1042() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-370.011993F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-369.627991F, -153.806F), new Vector2(-369.436005F, -154.304001F), new Vector2(-369.436005F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-369.436005F, -155.479996F), new Vector2(-369.627991F, -155.966003F), new Vector2(-370.011993F, -156.362F)); + builder.AddCubicBezier(new Vector2(-370.395996F, -156.757996F), new Vector2(-370.888F, -156.955994F), new Vector2(-371.488007F, -156.955994F)); + builder.AddCubicBezier(new Vector2(-372.088013F, -156.955994F), new Vector2(-372.579987F, -156.757996F), new Vector2(-372.963989F, -156.362F)); + builder.AddCubicBezier(new Vector2(-373.347992F, -155.966003F), new Vector2(-373.540009F, -155.479996F), new Vector2(-373.540009F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-373.540009F, -154.304001F), new Vector2(-373.347992F, -153.806F), new Vector2(-372.963989F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-372.579987F, -153.014008F), new Vector2(-372.088013F, -152.815994F), new Vector2(-371.488007F, -152.815994F)); + builder.AddCubicBezier(new Vector2(-370.888F, -152.815994F), new Vector2(-370.395996F, -153.014008F), new Vector2(-370.011993F, -153.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-369.868011F, -132.296005F)); + builder.AddLine(new Vector2(-369.868011F, -149.395996F)); + builder.AddLine(new Vector2(-373.144012F, -149.395996F)); + builder.AddLine(new Vector2(-373.144012F, -132.296005F)); + builder.AddLine(new Vector2(-369.868011F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1043() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-383.764008F, -132.296005F)); + builder.AddLine(new Vector2(-375.915985F, -149.395996F)); + builder.AddLine(new Vector2(-379.372009F, -149.395996F)); + builder.AddLine(new Vector2(-385.708008F, -134.960007F)); + builder.AddLine(new Vector2(-383.619995F, -134.960007F)); + builder.AddLine(new Vector2(-389.920013F, -149.395996F)); + builder.AddLine(new Vector2(-393.519989F, -149.395996F)); + builder.AddLine(new Vector2(-385.671997F, -132.296005F)); + builder.AddLine(new Vector2(-383.764008F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1044() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-396.471985F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-396.088013F, -153.806F), new Vector2(-395.895996F, -154.304001F), new Vector2(-395.895996F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-395.895996F, -155.479996F), new Vector2(-396.088013F, -155.966003F), new Vector2(-396.471985F, -156.362F)); + builder.AddCubicBezier(new Vector2(-396.855988F, -156.757996F), new Vector2(-397.347992F, -156.955994F), new Vector2(-397.947998F, -156.955994F)); + builder.AddCubicBezier(new Vector2(-398.548004F, -156.955994F), new Vector2(-399.040009F, -156.757996F), new Vector2(-399.424011F, -156.362F)); + builder.AddCubicBezier(new Vector2(-399.808014F, -155.966003F), new Vector2(-400F, -155.479996F), new Vector2(-400F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-400F, -154.304001F), new Vector2(-399.808014F, -153.806F), new Vector2(-399.424011F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-399.040009F, -153.014008F), new Vector2(-398.548004F, -152.815994F), new Vector2(-397.947998F, -152.815994F)); + builder.AddCubicBezier(new Vector2(-397.347992F, -152.815994F), new Vector2(-396.855988F, -153.014008F), new Vector2(-396.471985F, -153.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-396.328003F, -132.296005F)); + builder.AddLine(new Vector2(-396.328003F, -149.395996F)); + builder.AddLine(new Vector2(-399.604004F, -149.395996F)); + builder.AddLine(new Vector2(-399.604004F, -132.296005F)); + builder.AddLine(new Vector2(-396.328003F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1045() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-404.320007F, -158F)); + builder.AddLine(new Vector2(-407.596008F, -158F)); + builder.AddLine(new Vector2(-407.596008F, -145.220001F)); + builder.AddLine(new Vector2(-406.984009F, -141.080002F)); + builder.AddLine(new Vector2(-407.596008F, -136.904007F)); + builder.AddLine(new Vector2(-407.596008F, -132.296005F)); + builder.AddLine(new Vector2(-404.320007F, -132.296005F)); + builder.AddLine(new Vector2(-404.320007F, -158F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-415.641998F, -135.733994F)); + builder.AddCubicBezier(new Vector2(-416.470001F, -136.225998F), new Vector2(-417.118011F, -136.916F), new Vector2(-417.585999F, -137.804001F)); + builder.AddCubicBezier(new Vector2(-418.053986F, -138.692001F), new Vector2(-418.287994F, -139.712006F), new Vector2(-418.287994F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-418.287994F, -142.016006F), new Vector2(-418.053986F, -143.029999F), new Vector2(-417.585999F, -143.906006F)); + builder.AddCubicBezier(new Vector2(-417.118011F, -144.781998F), new Vector2(-416.476013F, -145.466003F), new Vector2(-415.660004F, -145.957993F)); + builder.AddCubicBezier(new Vector2(-414.843994F, -146.449997F), new Vector2(-413.895996F, -146.695999F), new Vector2(-412.81601F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-411.735992F, -146.695999F), new Vector2(-410.787994F, -146.444F), new Vector2(-409.971985F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-409.156006F, -145.436005F), new Vector2(-408.519989F, -144.746002F), new Vector2(-408.063995F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-407.608002F, -142.994003F), new Vector2(-407.380005F, -141.979996F), new Vector2(-407.380005F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-407.380005F, -139.699997F), new Vector2(-407.608002F, -138.697998F), new Vector2(-408.063995F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-408.519989F, -136.945999F), new Vector2(-409.156006F, -136.255997F), new Vector2(-409.971985F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-410.787994F, -135.248001F), new Vector2(-411.735992F, -134.996002F), new Vector2(-412.81601F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-413.872009F, -134.996002F), new Vector2(-414.813995F, -135.242004F), new Vector2(-415.641998F, -135.733994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-409.828003F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-408.79599F, -133.285995F), new Vector2(-407.967987F, -134.035995F), new Vector2(-407.343994F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-406.720001F, -135.955994F), new Vector2(-406.372009F, -137.048004F), new Vector2(-406.299988F, -138.272003F)); + builder.AddLine(new Vector2(-406.299988F, -143.419998F)); + builder.AddCubicBezier(new Vector2(-406.372009F, -144.667999F), new Vector2(-406.726013F, -145.766006F), new Vector2(-407.362F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-407.997986F, -147.662003F), new Vector2(-408.832001F, -148.406006F), new Vector2(-409.864014F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-410.895996F, -149.485992F), new Vector2(-412.059998F, -149.755997F), new Vector2(-413.355988F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-414.915985F, -149.755997F), new Vector2(-416.320007F, -149.360001F), new Vector2(-417.567993F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-418.81601F, -147.776001F), new Vector2(-419.806F, -146.707993F), new Vector2(-420.537994F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-421.269989F, -144.020004F), new Vector2(-421.635986F, -142.507996F), new Vector2(-421.635986F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-421.635986F, -139.147995F), new Vector2(-421.269989F, -137.636002F), new Vector2(-420.537994F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-419.806F, -134.947998F), new Vector2(-418.81601F, -133.886002F), new Vector2(-417.567993F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-416.320007F, -132.326004F), new Vector2(-414.915985F, -131.936005F), new Vector2(-413.355988F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-412.036011F, -131.936005F), new Vector2(-410.859985F, -132.205994F), new Vector2(-409.828003F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1046() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-443.415985F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-444.256012F, -136.328003F), new Vector2(-444.915985F, -137.018005F), new Vector2(-445.395996F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-445.876007F, -138.770004F), new Vector2(-446.115997F, -139.772003F), new Vector2(-446.115997F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-446.115997F, -142.003998F), new Vector2(-445.876007F, -142.988007F), new Vector2(-445.395996F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-444.915985F, -144.716003F), new Vector2(-444.256012F, -145.393997F), new Vector2(-443.415985F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-442.575989F, -146.378006F), new Vector2(-441.627991F, -146.623993F), new Vector2(-440.571991F, -146.623993F)); + builder.AddCubicBezier(new Vector2(-439.467987F, -146.623993F), new Vector2(-438.502014F, -146.378006F), new Vector2(-437.674011F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-436.846008F, -145.393997F), new Vector2(-436.186005F, -144.716003F), new Vector2(-435.694F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-435.201996F, -142.988007F), new Vector2(-434.955994F, -142.003998F), new Vector2(-434.955994F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-434.955994F, -139.772003F), new Vector2(-435.196014F, -138.770004F), new Vector2(-435.675995F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-436.156006F, -137.018005F), new Vector2(-436.81601F, -136.328003F), new Vector2(-437.656006F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-438.496002F, -135.320007F), new Vector2(-439.467987F, -135.067993F), new Vector2(-440.571991F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-441.627991F, -135.067993F), new Vector2(-442.575989F, -135.320007F), new Vector2(-443.415985F, -135.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-436.018005F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-434.661987F, -133.916F), new Vector2(-433.588013F, -134.990005F), new Vector2(-432.79599F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-432.003998F, -137.701996F), new Vector2(-431.608002F, -139.220001F), new Vector2(-431.608002F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-431.608002F, -142.556F), new Vector2(-432.003998F, -144.056F), new Vector2(-432.79599F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-433.588013F, -146.744003F), new Vector2(-434.661987F, -147.806F), new Vector2(-436.018005F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-437.373993F, -149.365997F), new Vector2(-438.891998F, -149.755997F), new Vector2(-440.571991F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-442.227997F, -149.755997F), new Vector2(-443.727997F, -149.360001F), new Vector2(-445.071991F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-446.415985F, -147.776001F), new Vector2(-447.484009F, -146.714005F), new Vector2(-448.276001F, -145.382004F)); + builder.AddCubicBezier(new Vector2(-449.067993F, -144.050003F), new Vector2(-449.463989F, -142.556F), new Vector2(-449.463989F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-449.463989F, -139.220001F), new Vector2(-449.067993F, -137.701996F), new Vector2(-448.276001F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-447.484009F, -134.990005F), new Vector2(-446.415985F, -133.916F), new Vector2(-445.071991F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-443.727997F, -132.332001F), new Vector2(-442.227997F, -131.936005F), new Vector2(-440.571991F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-438.891998F, -131.936005F), new Vector2(-437.373993F, -132.332001F), new Vector2(-436.018005F, -133.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1047() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-450.976013F, -146.444F)); + builder.AddLine(new Vector2(-450.976013F, -149.395996F)); + builder.AddLine(new Vector2(-462.640015F, -149.395996F)); + builder.AddLine(new Vector2(-462.640015F, -146.444F)); + builder.AddLine(new Vector2(-450.976013F, -146.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-455.187988F, -132.296005F)); + builder.AddLine(new Vector2(-455.187988F, -156.559998F)); + builder.AddLine(new Vector2(-458.428009F, -156.559998F)); + builder.AddLine(new Vector2(-458.428009F, -132.296005F)); + builder.AddLine(new Vector2(-455.187988F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1048() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-473.854004F, -133.339996F)); + builder.AddCubicBezier(new Vector2(-472.713989F, -134.276001F), new Vector2(-472.144012F, -135.548004F), new Vector2(-472.144012F, -137.156006F)); + builder.AddCubicBezier(new Vector2(-472.144012F, -138.212006F), new Vector2(-472.365997F, -139.063995F), new Vector2(-472.809998F, -139.712006F)); + builder.AddCubicBezier(new Vector2(-473.253998F, -140.360001F), new Vector2(-473.824005F, -140.876007F), new Vector2(-474.519989F, -141.259995F)); + builder.AddCubicBezier(new Vector2(-475.216003F, -141.643997F), new Vector2(-475.947998F, -141.949997F), new Vector2(-476.716003F, -142.177994F)); + builder.AddCubicBezier(new Vector2(-477.484009F, -142.406006F), new Vector2(-478.221985F, -142.628006F), new Vector2(-478.929993F, -142.843994F)); + builder.AddCubicBezier(new Vector2(-479.638F, -143.059998F), new Vector2(-480.208008F, -143.324005F), new Vector2(-480.640015F, -143.636002F)); + builder.AddCubicBezier(new Vector2(-481.071991F, -143.947998F), new Vector2(-481.287994F, -144.391998F), new Vector2(-481.287994F, -144.968002F)); + builder.AddCubicBezier(new Vector2(-481.287994F, -145.520004F), new Vector2(-481.041992F, -145.964005F), new Vector2(-480.549988F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-480.058014F, -146.636002F), new Vector2(-479.343994F, -146.804001F), new Vector2(-478.40799F, -146.804001F)); + builder.AddCubicBezier(new Vector2(-477.519989F, -146.804001F), new Vector2(-476.727997F, -146.636002F), new Vector2(-476.032013F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-475.335999F, -145.964005F), new Vector2(-474.735992F, -145.483994F), new Vector2(-474.231995F, -144.860001F)); + builder.AddLine(new Vector2(-472.144012F, -146.947998F)); + builder.AddCubicBezier(new Vector2(-472.81601F, -147.884003F), new Vector2(-473.674011F, -148.585999F), new Vector2(-474.717987F, -149.054001F)); + builder.AddCubicBezier(new Vector2(-475.761993F, -149.522003F), new Vector2(-476.955994F, -149.755997F), new Vector2(-478.299988F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-479.571991F, -149.755997F), new Vector2(-480.664001F, -149.552002F), new Vector2(-481.575989F, -149.143997F)); + builder.AddCubicBezier(new Vector2(-482.488007F, -148.735992F), new Vector2(-483.190002F, -148.154007F), new Vector2(-483.682007F, -147.397995F)); + builder.AddCubicBezier(new Vector2(-484.174011F, -146.641998F), new Vector2(-484.420013F, -145.748001F), new Vector2(-484.420013F, -144.716003F)); + builder.AddCubicBezier(new Vector2(-484.420013F, -143.684006F), new Vector2(-484.197998F, -142.850006F), new Vector2(-483.753998F, -142.214005F)); + builder.AddCubicBezier(new Vector2(-483.309998F, -141.578003F), new Vector2(-482.73999F, -141.080002F), new Vector2(-482.044006F, -140.720001F)); + builder.AddCubicBezier(new Vector2(-481.347992F, -140.360001F), new Vector2(-480.609985F, -140.072006F), new Vector2(-479.829987F, -139.856003F)); + builder.AddCubicBezier(new Vector2(-479.049988F, -139.639999F), new Vector2(-478.312012F, -139.417999F), new Vector2(-477.615997F, -139.190002F)); + builder.AddCubicBezier(new Vector2(-476.920013F, -138.962006F), new Vector2(-476.350006F, -138.673996F), new Vector2(-475.906006F, -138.326004F)); + builder.AddCubicBezier(new Vector2(-475.462006F, -137.977997F), new Vector2(-475.23999F, -137.492004F), new Vector2(-475.23999F, -136.867996F)); + builder.AddCubicBezier(new Vector2(-475.23999F, -136.244003F), new Vector2(-475.515991F, -135.757996F), new Vector2(-476.067993F, -135.410004F)); + builder.AddCubicBezier(new Vector2(-476.619995F, -135.061996F), new Vector2(-477.399994F, -134.888F), new Vector2(-478.40799F, -134.888F)); + builder.AddCubicBezier(new Vector2(-479.415985F, -134.888F), new Vector2(-480.328003F, -135.074005F), new Vector2(-481.144012F, -135.445999F)); + builder.AddCubicBezier(new Vector2(-481.959991F, -135.817993F), new Vector2(-482.679993F, -136.388F), new Vector2(-483.303986F, -137.156006F)); + builder.AddLine(new Vector2(-485.391998F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-484.864014F, -134.419998F), new Vector2(-484.246002F, -133.862F), new Vector2(-483.537994F, -133.393997F)); + builder.AddCubicBezier(new Vector2(-482.829987F, -132.925995F), new Vector2(-482.044006F, -132.565994F), new Vector2(-481.179993F, -132.313995F)); + builder.AddCubicBezier(new Vector2(-480.31601F, -132.061996F), new Vector2(-479.403992F, -131.936005F), new Vector2(-478.444F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-476.523987F, -131.936005F), new Vector2(-474.993988F, -132.404007F), new Vector2(-473.854004F, -133.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1049() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-493.563995F, -145.544006F)); + builder.AddCubicBezier(new Vector2(-492.79599F, -146.311996F), new Vector2(-491.812012F, -146.695999F), new Vector2(-490.612F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-490.036011F, -146.695999F), new Vector2(-489.532013F, -146.612F), new Vector2(-489.100006F, -146.444F)); + builder.AddCubicBezier(new Vector2(-488.667999F, -146.276001F), new Vector2(-488.272003F, -146F), new Vector2(-487.911987F, -145.615997F)); + builder.AddLine(new Vector2(-485.787994F, -147.811996F)); + builder.AddCubicBezier(new Vector2(-486.388F, -148.507996F), new Vector2(-487.036011F, -149.005997F), new Vector2(-487.731995F, -149.306F)); + builder.AddCubicBezier(new Vector2(-488.428009F, -149.606003F), new Vector2(-489.208008F, -149.755997F), new Vector2(-490.071991F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-491.967987F, -149.755997F), new Vector2(-493.420013F, -149.108002F), new Vector2(-494.428009F, -147.811996F)); + builder.AddCubicBezier(new Vector2(-495.436005F, -146.516006F), new Vector2(-495.940002F, -144.776001F), new Vector2(-495.940002F, -142.591995F)); + builder.AddLine(new Vector2(-494.716003F, -142.016006F)); + builder.AddCubicBezier(new Vector2(-494.716003F, -143.600006F), new Vector2(-494.332001F, -144.776001F), new Vector2(-493.563995F, -145.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-494.716003F, -132.296005F)); + builder.AddLine(new Vector2(-494.716003F, -149.395996F)); + builder.AddLine(new Vector2(-497.955994F, -149.395996F)); + builder.AddLine(new Vector2(-497.955994F, -132.296005F)); + builder.AddLine(new Vector2(-494.716003F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1050() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-505.552002F, -132.692001F)); + builder.AddCubicBezier(new Vector2(-504.376007F, -133.195999F), new Vector2(-503.368011F, -133.927994F), new Vector2(-502.528015F, -134.888F)); + builder.AddLine(new Vector2(-504.615997F, -137.011993F)); + builder.AddCubicBezier(new Vector2(-505.191986F, -136.339996F), new Vector2(-505.881989F, -135.835999F), new Vector2(-506.686005F, -135.5F)); + builder.AddCubicBezier(new Vector2(-507.48999F, -135.164001F), new Vector2(-508.372009F, -134.996002F), new Vector2(-509.332001F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-510.484009F, -134.996002F), new Vector2(-511.503998F, -135.242004F), new Vector2(-512.392029F, -135.733994F)); + builder.AddCubicBezier(new Vector2(-513.280029F, -136.225998F), new Vector2(-513.963989F, -136.921997F), new Vector2(-514.44397F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-514.924011F, -138.722F), new Vector2(-515.164001F, -139.772003F), new Vector2(-515.164001F, -140.972F)); + builder.AddCubicBezier(new Vector2(-515.164001F, -142.147995F), new Vector2(-514.935974F, -143.167999F), new Vector2(-514.47998F, -144.031998F)); + builder.AddCubicBezier(new Vector2(-514.023987F, -144.895996F), new Vector2(-513.375977F, -145.567993F), new Vector2(-512.536011F, -146.048004F)); + builder.AddCubicBezier(new Vector2(-511.696014F, -146.528F), new Vector2(-510.723999F, -146.768005F), new Vector2(-509.619995F, -146.768005F)); + builder.AddCubicBezier(new Vector2(-508.563995F, -146.768005F), new Vector2(-507.664001F, -146.546005F), new Vector2(-506.920013F, -146.102005F)); + builder.AddCubicBezier(new Vector2(-506.175995F, -145.658005F), new Vector2(-505.600006F, -145.033997F), new Vector2(-505.191986F, -144.229996F)); + builder.AddCubicBezier(new Vector2(-504.783997F, -143.425995F), new Vector2(-504.579987F, -142.447998F), new Vector2(-504.579987F, -141.296005F)); + builder.AddLine(new Vector2(-503.391998F, -142.339996F)); + builder.AddLine(new Vector2(-516.099976F, -142.339996F)); + builder.AddLine(new Vector2(-516.099976F, -139.639999F)); + builder.AddLine(new Vector2(-501.664001F, -139.639999F)); + builder.AddCubicBezier(new Vector2(-501.59201F, -139.975998F), new Vector2(-501.544006F, -140.281998F), new Vector2(-501.519989F, -140.557999F)); + builder.AddCubicBezier(new Vector2(-501.496002F, -140.834F), new Vector2(-501.484009F, -141.091995F), new Vector2(-501.484009F, -141.332001F)); + builder.AddCubicBezier(new Vector2(-501.484009F, -142.964005F), new Vector2(-501.825989F, -144.416F), new Vector2(-502.51001F, -145.688004F)); + builder.AddCubicBezier(new Vector2(-503.194F, -146.960007F), new Vector2(-504.14801F, -147.955994F), new Vector2(-505.372009F, -148.675995F)); + builder.AddCubicBezier(new Vector2(-506.596008F, -149.395996F), new Vector2(-507.988007F, -149.755997F), new Vector2(-509.548004F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-511.20401F, -149.755997F), new Vector2(-512.697998F, -149.365997F), new Vector2(-514.030029F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-515.362F, -147.806F), new Vector2(-516.41803F, -146.744003F), new Vector2(-517.197998F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-517.978027F, -144.056F), new Vector2(-518.367981F, -142.544006F), new Vector2(-518.367981F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-518.367981F, -139.160004F), new Vector2(-517.971985F, -137.636002F), new Vector2(-517.179993F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-516.388F, -134.947998F), new Vector2(-515.314026F, -133.886002F), new Vector2(-513.958008F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-512.60199F, -132.326004F), new Vector2(-511.059998F, -131.936005F), new Vector2(-509.332001F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-507.988007F, -131.936005F), new Vector2(-506.727997F, -132.188004F), new Vector2(-505.552002F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1051() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-521.968018F, -158F)); + builder.AddLine(new Vector2(-525.244019F, -158F)); + builder.AddLine(new Vector2(-525.244019F, -145.220001F)); + builder.AddLine(new Vector2(-524.632019F, -141.080002F)); + builder.AddLine(new Vector2(-525.244019F, -136.904007F)); + builder.AddLine(new Vector2(-525.244019F, -132.296005F)); + builder.AddLine(new Vector2(-521.968018F, -132.296005F)); + builder.AddLine(new Vector2(-521.968018F, -158F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-533.289978F, -135.733994F)); + builder.AddCubicBezier(new Vector2(-534.117981F, -136.225998F), new Vector2(-534.765991F, -136.916F), new Vector2(-535.234009F, -137.804001F)); + builder.AddCubicBezier(new Vector2(-535.702026F, -138.692001F), new Vector2(-535.935974F, -139.712006F), new Vector2(-535.935974F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-535.935974F, -142.016006F), new Vector2(-535.702026F, -143.029999F), new Vector2(-535.234009F, -143.906006F)); + builder.AddCubicBezier(new Vector2(-534.765991F, -144.781998F), new Vector2(-534.124023F, -145.466003F), new Vector2(-533.307983F, -145.957993F)); + builder.AddCubicBezier(new Vector2(-532.492004F, -146.449997F), new Vector2(-531.544006F, -146.695999F), new Vector2(-530.463989F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-529.383972F, -146.695999F), new Vector2(-528.435974F, -146.444F), new Vector2(-527.619995F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-526.804016F, -145.436005F), new Vector2(-526.16803F, -144.746002F), new Vector2(-525.711975F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-525.255981F, -142.994003F), new Vector2(-525.028015F, -141.979996F), new Vector2(-525.028015F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-525.028015F, -139.699997F), new Vector2(-525.255981F, -138.697998F), new Vector2(-525.711975F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-526.16803F, -136.945999F), new Vector2(-526.804016F, -136.255997F), new Vector2(-527.619995F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-528.435974F, -135.248001F), new Vector2(-529.383972F, -134.996002F), new Vector2(-530.463989F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-531.52002F, -134.996002F), new Vector2(-532.461975F, -135.242004F), new Vector2(-533.289978F, -135.733994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-527.476013F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-526.44397F, -133.285995F), new Vector2(-525.616028F, -134.035995F), new Vector2(-524.992004F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-524.367981F, -135.955994F), new Vector2(-524.02002F, -137.048004F), new Vector2(-523.947998F, -138.272003F)); + builder.AddLine(new Vector2(-523.947998F, -143.419998F)); + builder.AddCubicBezier(new Vector2(-524.02002F, -144.667999F), new Vector2(-524.374023F, -145.766006F), new Vector2(-525.01001F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-525.645996F, -147.662003F), new Vector2(-526.47998F, -148.406006F), new Vector2(-527.512024F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-528.544006F, -149.485992F), new Vector2(-529.708008F, -149.755997F), new Vector2(-531.004028F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-532.564026F, -149.755997F), new Vector2(-533.968018F, -149.360001F), new Vector2(-535.216003F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-536.463989F, -147.776001F), new Vector2(-537.453979F, -146.707993F), new Vector2(-538.185974F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-538.91803F, -144.020004F), new Vector2(-539.283997F, -142.507996F), new Vector2(-539.283997F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-539.283997F, -139.147995F), new Vector2(-538.91803F, -137.636002F), new Vector2(-538.185974F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-537.453979F, -134.947998F), new Vector2(-536.463989F, -133.886002F), new Vector2(-535.216003F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-533.968018F, -132.326004F), new Vector2(-532.564026F, -131.936005F), new Vector2(-531.004028F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-529.684021F, -131.936005F), new Vector2(-528.507996F, -132.205994F), new Vector2(-527.476013F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1052() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-554.692017F, -132.296005F)); + builder.AddLine(new Vector2(-554.692017F, -149.395996F)); + builder.AddLine(new Vector2(-557.932007F, -149.395996F)); + builder.AddLine(new Vector2(-557.932007F, -132.296005F)); + builder.AddLine(new Vector2(-554.692017F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-542.596008F, -132.296005F)); + builder.AddLine(new Vector2(-542.596008F, -142.916F)); + builder.AddCubicBezier(new Vector2(-542.596008F, -144.091995F), new Vector2(-542.883972F, -145.201996F), new Vector2(-543.460022F, -146.246002F)); + builder.AddCubicBezier(new Vector2(-544.036011F, -147.289993F), new Vector2(-544.822021F, -148.136002F), new Vector2(-545.817993F, -148.783997F)); + builder.AddCubicBezier(new Vector2(-546.814026F, -149.432007F), new Vector2(-547.960022F, -149.755997F), new Vector2(-549.255981F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-550.552002F, -149.755997F), new Vector2(-551.716003F, -149.462006F), new Vector2(-552.747986F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-553.780029F, -148.285995F), new Vector2(-554.583984F, -147.488007F), new Vector2(-555.159973F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-555.736023F, -145.472F), new Vector2(-556.023987F, -144.320007F), new Vector2(-556.023987F, -143.024002F)); + builder.AddLine(new Vector2(-554.692017F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-554.692017F, -143.132004F), new Vector2(-554.5F, -143.899994F), new Vector2(-554.116028F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-553.731995F, -145.244003F), new Vector2(-553.203979F, -145.772003F), new Vector2(-552.531982F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-551.859985F, -146.539993F), new Vector2(-551.09198F, -146.731995F), new Vector2(-550.228027F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-548.932007F, -146.731995F), new Vector2(-547.882019F, -146.311996F), new Vector2(-547.078003F, -145.472F)); + builder.AddCubicBezier(new Vector2(-546.273987F, -144.632004F), new Vector2(-545.872009F, -143.563995F), new Vector2(-545.872009F, -142.268005F)); + builder.AddLine(new Vector2(-545.872009F, -132.296005F)); + builder.AddLine(new Vector2(-542.596008F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1053() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-562.64801F, -132.296005F)); + builder.AddLine(new Vector2(-562.64801F, -149.395996F)); + builder.AddLine(new Vector2(-565.924011F, -149.395996F)); + builder.AddLine(new Vector2(-565.924011F, -145.220001F)); + builder.AddLine(new Vector2(-565.312012F, -141.080002F)); + builder.AddLine(new Vector2(-565.924011F, -136.904007F)); + builder.AddLine(new Vector2(-565.924011F, -132.296005F)); + builder.AddLine(new Vector2(-562.64801F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-573.952026F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-574.791992F, -136.255997F), new Vector2(-575.445984F, -136.945999F), new Vector2(-575.914001F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-576.382019F, -138.697998F), new Vector2(-576.616028F, -139.712006F), new Vector2(-576.616028F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-576.616028F, -141.992004F), new Vector2(-576.382019F, -142.994003F), new Vector2(-575.914001F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-575.445984F, -144.746002F), new Vector2(-574.797974F, -145.436005F), new Vector2(-573.969971F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-573.142029F, -146.444F), new Vector2(-572.187988F, -146.695999F), new Vector2(-571.107971F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-570.028015F, -146.695999F), new Vector2(-569.085999F, -146.449997F), new Vector2(-568.281982F, -145.957993F)); + builder.AddCubicBezier(new Vector2(-567.478027F, -145.466003F), new Vector2(-566.848022F, -144.776001F), new Vector2(-566.392029F, -143.888F)); + builder.AddCubicBezier(new Vector2(-565.935974F, -143F), new Vector2(-565.708008F, -141.979996F), new Vector2(-565.708008F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-565.708008F, -139.123993F), new Vector2(-566.200012F, -137.725998F), new Vector2(-567.184021F, -136.634003F)); + builder.AddCubicBezier(new Vector2(-568.16803F, -135.542007F), new Vector2(-569.463989F, -134.996002F), new Vector2(-571.072021F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-572.151978F, -134.996002F), new Vector2(-573.112F, -135.248001F), new Vector2(-573.952026F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-568.119995F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-567.088013F, -133.285995F), new Vector2(-566.265991F, -134.035995F), new Vector2(-565.653992F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-565.041992F, -135.955994F), new Vector2(-564.700012F, -137.048004F), new Vector2(-564.627991F, -138.272003F)); + builder.AddLine(new Vector2(-564.627991F, -143.419998F)); + builder.AddCubicBezier(new Vector2(-564.700012F, -144.667999F), new Vector2(-565.047974F, -145.766006F), new Vector2(-565.671997F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-566.296021F, -147.662003F), new Vector2(-567.117981F, -148.406006F), new Vector2(-568.138F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-569.15802F, -149.485992F), new Vector2(-570.315979F, -149.755997F), new Vector2(-571.612F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-573.195984F, -149.755997F), new Vector2(-574.617981F, -149.360001F), new Vector2(-575.877991F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-577.138F, -147.776001F), new Vector2(-578.133972F, -146.707993F), new Vector2(-578.866028F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-579.598022F, -144.020004F), new Vector2(-579.963989F, -142.507996F), new Vector2(-579.963989F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-579.963989F, -139.147995F), new Vector2(-579.598022F, -137.636002F), new Vector2(-578.866028F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-578.133972F, -134.947998F), new Vector2(-577.138F, -133.886002F), new Vector2(-575.877991F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-574.617981F, -132.326004F), new Vector2(-573.195984F, -131.936005F), new Vector2(-571.612F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-570.315979F, -131.936005F), new Vector2(-569.151978F, -132.205994F), new Vector2(-568.119995F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1054() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-583.635986F, -132.296005F)); + builder.AddLine(new Vector2(-583.635986F, -158F)); + builder.AddLine(new Vector2(-586.875977F, -158F)); + builder.AddLine(new Vector2(-586.875977F, -132.296005F)); + builder.AddLine(new Vector2(-583.635986F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1055() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-592.221985F, -133.339996F)); + builder.AddCubicBezier(new Vector2(-591.08197F, -134.276001F), new Vector2(-590.512024F, -135.548004F), new Vector2(-590.512024F, -137.156006F)); + builder.AddCubicBezier(new Vector2(-590.512024F, -138.212006F), new Vector2(-590.734009F, -139.063995F), new Vector2(-591.177979F, -139.712006F)); + builder.AddCubicBezier(new Vector2(-591.622009F, -140.360001F), new Vector2(-592.192017F, -140.876007F), new Vector2(-592.888F, -141.259995F)); + builder.AddCubicBezier(new Vector2(-593.583984F, -141.643997F), new Vector2(-594.315979F, -141.949997F), new Vector2(-595.083984F, -142.177994F)); + builder.AddCubicBezier(new Vector2(-595.85199F, -142.406006F), new Vector2(-596.590027F, -142.628006F), new Vector2(-597.297974F, -142.843994F)); + builder.AddCubicBezier(new Vector2(-598.005981F, -143.059998F), new Vector2(-598.575989F, -143.324005F), new Vector2(-599.007996F, -143.636002F)); + builder.AddCubicBezier(new Vector2(-599.440002F, -143.947998F), new Vector2(-599.656006F, -144.391998F), new Vector2(-599.656006F, -144.968002F)); + builder.AddCubicBezier(new Vector2(-599.656006F, -145.520004F), new Vector2(-599.409973F, -145.964005F), new Vector2(-598.91803F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-598.426025F, -146.636002F), new Vector2(-597.711975F, -146.804001F), new Vector2(-596.776001F, -146.804001F)); + builder.AddCubicBezier(new Vector2(-595.888F, -146.804001F), new Vector2(-595.096008F, -146.636002F), new Vector2(-594.400024F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-593.703979F, -145.964005F), new Vector2(-593.104004F, -145.483994F), new Vector2(-592.599976F, -144.860001F)); + builder.AddLine(new Vector2(-590.512024F, -146.947998F)); + builder.AddCubicBezier(new Vector2(-591.184021F, -147.884003F), new Vector2(-592.041992F, -148.585999F), new Vector2(-593.085999F, -149.054001F)); + builder.AddCubicBezier(new Vector2(-594.130005F, -149.522003F), new Vector2(-595.323975F, -149.755997F), new Vector2(-596.66803F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-597.940002F, -149.755997F), new Vector2(-599.031982F, -149.552002F), new Vector2(-599.94397F, -149.143997F)); + builder.AddCubicBezier(new Vector2(-600.856018F, -148.735992F), new Vector2(-601.557983F, -148.154007F), new Vector2(-602.049988F, -147.397995F)); + builder.AddCubicBezier(new Vector2(-602.541992F, -146.641998F), new Vector2(-602.788025F, -145.748001F), new Vector2(-602.788025F, -144.716003F)); + builder.AddCubicBezier(new Vector2(-602.788025F, -143.684006F), new Vector2(-602.565979F, -142.850006F), new Vector2(-602.122009F, -142.214005F)); + builder.AddCubicBezier(new Vector2(-601.677979F, -141.578003F), new Vector2(-601.107971F, -141.080002F), new Vector2(-600.411987F, -140.720001F)); + builder.AddCubicBezier(new Vector2(-599.716003F, -140.360001F), new Vector2(-598.978027F, -140.072006F), new Vector2(-598.197998F, -139.856003F)); + builder.AddCubicBezier(new Vector2(-597.41803F, -139.639999F), new Vector2(-596.679993F, -139.417999F), new Vector2(-595.984009F, -139.190002F)); + builder.AddCubicBezier(new Vector2(-595.288025F, -138.962006F), new Vector2(-594.718018F, -138.673996F), new Vector2(-594.273987F, -138.326004F)); + builder.AddCubicBezier(new Vector2(-593.830017F, -137.977997F), new Vector2(-593.607971F, -137.492004F), new Vector2(-593.607971F, -136.867996F)); + builder.AddCubicBezier(new Vector2(-593.607971F, -136.244003F), new Vector2(-593.883972F, -135.757996F), new Vector2(-594.435974F, -135.410004F)); + builder.AddCubicBezier(new Vector2(-594.987976F, -135.061996F), new Vector2(-595.768005F, -134.888F), new Vector2(-596.776001F, -134.888F)); + builder.AddCubicBezier(new Vector2(-597.783997F, -134.888F), new Vector2(-598.695984F, -135.074005F), new Vector2(-599.512024F, -135.445999F)); + builder.AddCubicBezier(new Vector2(-600.328003F, -135.817993F), new Vector2(-601.047974F, -136.388F), new Vector2(-601.671997F, -137.156006F)); + builder.AddLine(new Vector2(-603.76001F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-603.231995F, -134.419998F), new Vector2(-602.614014F, -133.862F), new Vector2(-601.906006F, -133.393997F)); + builder.AddCubicBezier(new Vector2(-601.197998F, -132.925995F), new Vector2(-600.411987F, -132.565994F), new Vector2(-599.547974F, -132.313995F)); + builder.AddCubicBezier(new Vector2(-598.684021F, -132.061996F), new Vector2(-597.771973F, -131.936005F), new Vector2(-596.812012F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-594.892029F, -131.936005F), new Vector2(-593.362F, -132.404007F), new Vector2(-592.221985F, -133.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1056() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-614.416016F, -158F)); + builder.AddLine(new Vector2(-617.692017F, -158F)); + builder.AddLine(new Vector2(-617.692017F, -145.220001F)); + builder.AddLine(new Vector2(-617.080017F, -141.080002F)); + builder.AddLine(new Vector2(-617.692017F, -136.904007F)); + builder.AddLine(new Vector2(-617.692017F, -132.296005F)); + builder.AddLine(new Vector2(-614.416016F, -132.296005F)); + builder.AddLine(new Vector2(-614.416016F, -158F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-625.737976F, -135.733994F)); + builder.AddCubicBezier(new Vector2(-626.565979F, -136.225998F), new Vector2(-627.213989F, -136.916F), new Vector2(-627.682007F, -137.804001F)); + builder.AddCubicBezier(new Vector2(-628.150024F, -138.692001F), new Vector2(-628.383972F, -139.712006F), new Vector2(-628.383972F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-628.383972F, -142.016006F), new Vector2(-628.150024F, -143.029999F), new Vector2(-627.682007F, -143.906006F)); + builder.AddCubicBezier(new Vector2(-627.213989F, -144.781998F), new Vector2(-626.572021F, -145.466003F), new Vector2(-625.755981F, -145.957993F)); + builder.AddCubicBezier(new Vector2(-624.940002F, -146.449997F), new Vector2(-623.992004F, -146.695999F), new Vector2(-622.911987F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-621.83197F, -146.695999F), new Vector2(-620.883972F, -146.444F), new Vector2(-620.067993F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-619.252014F, -145.436005F), new Vector2(-618.616028F, -144.746002F), new Vector2(-618.159973F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-617.703979F, -142.994003F), new Vector2(-617.476013F, -141.979996F), new Vector2(-617.476013F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-617.476013F, -139.699997F), new Vector2(-617.703979F, -138.697998F), new Vector2(-618.159973F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-618.616028F, -136.945999F), new Vector2(-619.252014F, -136.255997F), new Vector2(-620.067993F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-620.883972F, -135.248001F), new Vector2(-621.83197F, -134.996002F), new Vector2(-622.911987F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-623.968018F, -134.996002F), new Vector2(-624.909973F, -135.242004F), new Vector2(-625.737976F, -135.733994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-619.924011F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-618.892029F, -133.285995F), new Vector2(-618.064026F, -134.035995F), new Vector2(-617.440002F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-616.815979F, -135.955994F), new Vector2(-616.468018F, -137.048004F), new Vector2(-616.395996F, -138.272003F)); + builder.AddLine(new Vector2(-616.395996F, -143.419998F)); + builder.AddCubicBezier(new Vector2(-616.468018F, -144.667999F), new Vector2(-616.822021F, -145.766006F), new Vector2(-617.458008F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-618.093994F, -147.662003F), new Vector2(-618.927979F, -148.406006F), new Vector2(-619.960022F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-620.992004F, -149.485992F), new Vector2(-622.156006F, -149.755997F), new Vector2(-623.452026F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-625.012024F, -149.755997F), new Vector2(-626.416016F, -149.360001F), new Vector2(-627.664001F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-628.911987F, -147.776001F), new Vector2(-629.901978F, -146.707993F), new Vector2(-630.633972F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-631.366028F, -144.020004F), new Vector2(-631.731995F, -142.507996F), new Vector2(-631.731995F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-631.731995F, -139.147995F), new Vector2(-631.366028F, -137.636002F), new Vector2(-630.633972F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-629.901978F, -134.947998F), new Vector2(-628.911987F, -133.886002F), new Vector2(-627.664001F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-626.416016F, -132.326004F), new Vector2(-625.012024F, -131.936005F), new Vector2(-623.452026F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-622.132019F, -131.936005F), new Vector2(-620.955994F, -132.205994F), new Vector2(-619.924011F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1057() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-647.140015F, -132.296005F)); + builder.AddLine(new Vector2(-647.140015F, -149.395996F)); + builder.AddLine(new Vector2(-650.380005F, -149.395996F)); + builder.AddLine(new Vector2(-650.380005F, -132.296005F)); + builder.AddLine(new Vector2(-647.140015F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-635.044006F, -132.296005F)); + builder.AddLine(new Vector2(-635.044006F, -142.916F)); + builder.AddCubicBezier(new Vector2(-635.044006F, -144.091995F), new Vector2(-635.33197F, -145.201996F), new Vector2(-635.90802F, -146.246002F)); + builder.AddCubicBezier(new Vector2(-636.484009F, -147.289993F), new Vector2(-637.27002F, -148.136002F), new Vector2(-638.265991F, -148.783997F)); + builder.AddCubicBezier(new Vector2(-639.262024F, -149.432007F), new Vector2(-640.40802F, -149.755997F), new Vector2(-641.703979F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-643F, -149.755997F), new Vector2(-644.164001F, -149.462006F), new Vector2(-645.195984F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-646.228027F, -148.285995F), new Vector2(-647.031982F, -147.488007F), new Vector2(-647.607971F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-648.184021F, -145.472F), new Vector2(-648.471985F, -144.320007F), new Vector2(-648.471985F, -143.024002F)); + builder.AddLine(new Vector2(-647.140015F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-647.140015F, -143.132004F), new Vector2(-646.947998F, -143.899994F), new Vector2(-646.564026F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-646.179993F, -145.244003F), new Vector2(-645.651978F, -145.772003F), new Vector2(-644.97998F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-644.307983F, -146.539993F), new Vector2(-643.539978F, -146.731995F), new Vector2(-642.676025F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-641.380005F, -146.731995F), new Vector2(-640.330017F, -146.311996F), new Vector2(-639.526001F, -145.472F)); + builder.AddCubicBezier(new Vector2(-638.721985F, -144.632004F), new Vector2(-638.320007F, -143.563995F), new Vector2(-638.320007F, -142.268005F)); + builder.AddLine(new Vector2(-638.320007F, -132.296005F)); + builder.AddLine(new Vector2(-635.044006F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1058() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-655.096008F, -132.296005F)); + builder.AddLine(new Vector2(-655.096008F, -149.395996F)); + builder.AddLine(new Vector2(-658.372009F, -149.395996F)); + builder.AddLine(new Vector2(-658.372009F, -145.220001F)); + builder.AddLine(new Vector2(-657.76001F, -141.080002F)); + builder.AddLine(new Vector2(-658.372009F, -136.904007F)); + builder.AddLine(new Vector2(-658.372009F, -132.296005F)); + builder.AddLine(new Vector2(-655.096008F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-666.400024F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-667.23999F, -136.255997F), new Vector2(-667.893982F, -136.945999F), new Vector2(-668.362F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-668.830017F, -138.697998F), new Vector2(-669.064026F, -139.712006F), new Vector2(-669.064026F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-669.064026F, -141.992004F), new Vector2(-668.830017F, -142.994003F), new Vector2(-668.362F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-667.893982F, -144.746002F), new Vector2(-667.245972F, -145.436005F), new Vector2(-666.41803F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-665.590027F, -146.444F), new Vector2(-664.635986F, -146.695999F), new Vector2(-663.55603F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-662.476013F, -146.695999F), new Vector2(-661.533997F, -146.449997F), new Vector2(-660.72998F, -145.957993F)); + builder.AddCubicBezier(new Vector2(-659.926025F, -145.466003F), new Vector2(-659.296021F, -144.776001F), new Vector2(-658.840027F, -143.888F)); + builder.AddCubicBezier(new Vector2(-658.383972F, -143F), new Vector2(-658.156006F, -141.979996F), new Vector2(-658.156006F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-658.156006F, -139.123993F), new Vector2(-658.64801F, -137.725998F), new Vector2(-659.632019F, -136.634003F)); + builder.AddCubicBezier(new Vector2(-660.616028F, -135.542007F), new Vector2(-661.911987F, -134.996002F), new Vector2(-663.52002F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-664.599976F, -134.996002F), new Vector2(-665.559998F, -135.248001F), new Vector2(-666.400024F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-660.567993F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-659.536011F, -133.285995F), new Vector2(-658.713989F, -134.035995F), new Vector2(-658.10199F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-657.48999F, -135.955994F), new Vector2(-657.14801F, -137.048004F), new Vector2(-657.075989F, -138.272003F)); + builder.AddLine(new Vector2(-657.075989F, -143.419998F)); + builder.AddCubicBezier(new Vector2(-657.14801F, -144.667999F), new Vector2(-657.495972F, -145.766006F), new Vector2(-658.119995F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-658.744019F, -147.662003F), new Vector2(-659.565979F, -148.406006F), new Vector2(-660.585999F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-661.606018F, -149.485992F), new Vector2(-662.763977F, -149.755997F), new Vector2(-664.059998F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-665.643982F, -149.755997F), new Vector2(-667.065979F, -149.360001F), new Vector2(-668.325989F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-669.585999F, -147.776001F), new Vector2(-670.58197F, -146.707993F), new Vector2(-671.314026F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-672.046021F, -144.020004F), new Vector2(-672.411987F, -142.507996F), new Vector2(-672.411987F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-672.411987F, -139.147995F), new Vector2(-672.046021F, -137.636002F), new Vector2(-671.314026F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-670.58197F, -134.947998F), new Vector2(-669.585999F, -133.886002F), new Vector2(-668.325989F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-667.065979F, -132.326004F), new Vector2(-665.643982F, -131.936005F), new Vector2(-664.059998F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-662.763977F, -131.936005F), new Vector2(-661.599976F, -132.205994F), new Vector2(-660.567993F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1059() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-684.130005F, -133.339996F)); + builder.AddCubicBezier(new Vector2(-682.98999F, -134.276001F), new Vector2(-682.419983F, -135.548004F), new Vector2(-682.419983F, -137.156006F)); + builder.AddCubicBezier(new Vector2(-682.419983F, -138.212006F), new Vector2(-682.642029F, -139.063995F), new Vector2(-683.085999F, -139.712006F)); + builder.AddCubicBezier(new Vector2(-683.530029F, -140.360001F), new Vector2(-684.099976F, -140.876007F), new Vector2(-684.796021F, -141.259995F)); + builder.AddCubicBezier(new Vector2(-685.492004F, -141.643997F), new Vector2(-686.223999F, -141.949997F), new Vector2(-686.992004F, -142.177994F)); + builder.AddCubicBezier(new Vector2(-687.76001F, -142.406006F), new Vector2(-688.497986F, -142.628006F), new Vector2(-689.205994F, -142.843994F)); + builder.AddCubicBezier(new Vector2(-689.914001F, -143.059998F), new Vector2(-690.484009F, -143.324005F), new Vector2(-690.916016F, -143.636002F)); + builder.AddCubicBezier(new Vector2(-691.348022F, -143.947998F), new Vector2(-691.564026F, -144.391998F), new Vector2(-691.564026F, -144.968002F)); + builder.AddCubicBezier(new Vector2(-691.564026F, -145.520004F), new Vector2(-691.317993F, -145.964005F), new Vector2(-690.825989F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-690.333984F, -146.636002F), new Vector2(-689.619995F, -146.804001F), new Vector2(-688.684021F, -146.804001F)); + builder.AddCubicBezier(new Vector2(-687.796021F, -146.804001F), new Vector2(-687.004028F, -146.636002F), new Vector2(-686.307983F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-685.612F, -145.964005F), new Vector2(-685.012024F, -145.483994F), new Vector2(-684.507996F, -144.860001F)); + builder.AddLine(new Vector2(-682.419983F, -146.947998F)); + builder.AddCubicBezier(new Vector2(-683.09198F, -147.884003F), new Vector2(-683.950012F, -148.585999F), new Vector2(-684.994019F, -149.054001F)); + builder.AddCubicBezier(new Vector2(-686.038025F, -149.522003F), new Vector2(-687.231995F, -149.755997F), new Vector2(-688.575989F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-689.848022F, -149.755997F), new Vector2(-690.940002F, -149.552002F), new Vector2(-691.85199F, -149.143997F)); + builder.AddCubicBezier(new Vector2(-692.763977F, -148.735992F), new Vector2(-693.466003F, -148.154007F), new Vector2(-693.958008F, -147.397995F)); + builder.AddCubicBezier(new Vector2(-694.450012F, -146.641998F), new Vector2(-694.695984F, -145.748001F), new Vector2(-694.695984F, -144.716003F)); + builder.AddCubicBezier(new Vector2(-694.695984F, -143.684006F), new Vector2(-694.473999F, -142.850006F), new Vector2(-694.030029F, -142.214005F)); + builder.AddCubicBezier(new Vector2(-693.585999F, -141.578003F), new Vector2(-693.015991F, -141.080002F), new Vector2(-692.320007F, -140.720001F)); + builder.AddCubicBezier(new Vector2(-691.624023F, -140.360001F), new Vector2(-690.885986F, -140.072006F), new Vector2(-690.106018F, -139.856003F)); + builder.AddCubicBezier(new Vector2(-689.325989F, -139.639999F), new Vector2(-688.588013F, -139.417999F), new Vector2(-687.892029F, -139.190002F)); + builder.AddCubicBezier(new Vector2(-687.195984F, -138.962006F), new Vector2(-686.625977F, -138.673996F), new Vector2(-686.182007F, -138.326004F)); + builder.AddCubicBezier(new Vector2(-685.737976F, -137.977997F), new Vector2(-685.515991F, -137.492004F), new Vector2(-685.515991F, -136.867996F)); + builder.AddCubicBezier(new Vector2(-685.515991F, -136.244003F), new Vector2(-685.791992F, -135.757996F), new Vector2(-686.343994F, -135.410004F)); + builder.AddCubicBezier(new Vector2(-686.895996F, -135.061996F), new Vector2(-687.676025F, -134.888F), new Vector2(-688.684021F, -134.888F)); + builder.AddCubicBezier(new Vector2(-689.692017F, -134.888F), new Vector2(-690.604004F, -135.074005F), new Vector2(-691.419983F, -135.445999F)); + builder.AddCubicBezier(new Vector2(-692.236023F, -135.817993F), new Vector2(-692.955994F, -136.388F), new Vector2(-693.580017F, -137.156006F)); + builder.AddLine(new Vector2(-695.66803F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-695.140015F, -134.419998F), new Vector2(-694.521973F, -133.862F), new Vector2(-693.814026F, -133.393997F)); + builder.AddCubicBezier(new Vector2(-693.106018F, -132.925995F), new Vector2(-692.320007F, -132.565994F), new Vector2(-691.455994F, -132.313995F)); + builder.AddCubicBezier(new Vector2(-690.59198F, -132.061996F), new Vector2(-689.679993F, -131.936005F), new Vector2(-688.719971F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-686.799988F, -131.936005F), new Vector2(-685.27002F, -132.404007F), new Vector2(-684.130005F, -133.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1060() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-709.564026F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-710.403992F, -136.328003F), new Vector2(-711.064026F, -137.018005F), new Vector2(-711.544006F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-712.023987F, -138.770004F), new Vector2(-712.263977F, -139.772003F), new Vector2(-712.263977F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-712.263977F, -142.003998F), new Vector2(-712.023987F, -142.988007F), new Vector2(-711.544006F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-711.064026F, -144.716003F), new Vector2(-710.403992F, -145.393997F), new Vector2(-709.564026F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-708.723999F, -146.378006F), new Vector2(-707.776001F, -146.623993F), new Vector2(-706.719971F, -146.623993F)); + builder.AddCubicBezier(new Vector2(-705.616028F, -146.623993F), new Vector2(-704.650024F, -146.378006F), new Vector2(-703.822021F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-702.994019F, -145.393997F), new Vector2(-702.333984F, -144.716003F), new Vector2(-701.84198F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-701.349976F, -142.988007F), new Vector2(-701.104004F, -142.003998F), new Vector2(-701.104004F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-701.104004F, -139.772003F), new Vector2(-701.343994F, -138.770004F), new Vector2(-701.823975F, -137.893997F)); + builder.AddCubicBezier(new Vector2(-702.304016F, -137.018005F), new Vector2(-702.963989F, -136.328003F), new Vector2(-703.804016F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-704.643982F, -135.320007F), new Vector2(-705.616028F, -135.067993F), new Vector2(-706.719971F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-707.776001F, -135.067993F), new Vector2(-708.723999F, -135.320007F), new Vector2(-709.564026F, -135.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-702.166016F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-700.809998F, -133.916F), new Vector2(-699.736023F, -134.990005F), new Vector2(-698.94397F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-698.151978F, -137.701996F), new Vector2(-697.755981F, -139.220001F), new Vector2(-697.755981F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-697.755981F, -142.556F), new Vector2(-698.151978F, -144.056F), new Vector2(-698.94397F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-699.736023F, -146.744003F), new Vector2(-700.809998F, -147.806F), new Vector2(-702.166016F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-703.521973F, -149.365997F), new Vector2(-705.039978F, -149.755997F), new Vector2(-706.719971F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-708.375977F, -149.755997F), new Vector2(-709.875977F, -149.360001F), new Vector2(-711.219971F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-712.564026F, -147.776001F), new Vector2(-713.632019F, -146.714005F), new Vector2(-714.424011F, -145.382004F)); + builder.AddCubicBezier(new Vector2(-715.216003F, -144.050003F), new Vector2(-715.612F, -142.556F), new Vector2(-715.612F, -140.899994F)); + builder.AddCubicBezier(new Vector2(-715.612F, -139.220001F), new Vector2(-715.216003F, -137.701996F), new Vector2(-714.424011F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-713.632019F, -134.990005F), new Vector2(-712.564026F, -133.916F), new Vector2(-711.219971F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-709.875977F, -132.332001F), new Vector2(-708.375977F, -131.936005F), new Vector2(-706.719971F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-705.039978F, -131.936005F), new Vector2(-703.521973F, -132.332001F), new Vector2(-702.166016F, -133.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1061() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-719.427979F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-719.044006F, -153.806F), new Vector2(-718.85199F, -154.304001F), new Vector2(-718.85199F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-718.85199F, -155.479996F), new Vector2(-719.044006F, -155.966003F), new Vector2(-719.427979F, -156.362F)); + builder.AddCubicBezier(new Vector2(-719.812012F, -156.757996F), new Vector2(-720.304016F, -156.955994F), new Vector2(-720.903992F, -156.955994F)); + builder.AddCubicBezier(new Vector2(-721.504028F, -156.955994F), new Vector2(-721.995972F, -156.757996F), new Vector2(-722.380005F, -156.362F)); + builder.AddCubicBezier(new Vector2(-722.763977F, -155.966003F), new Vector2(-722.955994F, -155.479996F), new Vector2(-722.955994F, -154.904007F)); + builder.AddCubicBezier(new Vector2(-722.955994F, -154.304001F), new Vector2(-722.763977F, -153.806F), new Vector2(-722.380005F, -153.410004F)); + builder.AddCubicBezier(new Vector2(-721.995972F, -153.014008F), new Vector2(-721.504028F, -152.815994F), new Vector2(-720.903992F, -152.815994F)); + builder.AddCubicBezier(new Vector2(-720.304016F, -152.815994F), new Vector2(-719.812012F, -153.014008F), new Vector2(-719.427979F, -153.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-719.283997F, -132.296005F)); + builder.AddLine(new Vector2(-719.283997F, -149.395996F)); + builder.AddLine(new Vector2(-722.559998F, -149.395996F)); + builder.AddLine(new Vector2(-722.559998F, -132.296005F)); + builder.AddLine(new Vector2(-719.283997F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1062() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-732.604004F, -145.544006F)); + builder.AddCubicBezier(new Vector2(-731.835999F, -146.311996F), new Vector2(-730.85199F, -146.695999F), new Vector2(-729.651978F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-729.075989F, -146.695999F), new Vector2(-728.572021F, -146.612F), new Vector2(-728.140015F, -146.444F)); + builder.AddCubicBezier(new Vector2(-727.708008F, -146.276001F), new Vector2(-727.312012F, -146F), new Vector2(-726.952026F, -145.615997F)); + builder.AddLine(new Vector2(-724.828003F, -147.811996F)); + builder.AddCubicBezier(new Vector2(-725.427979F, -148.507996F), new Vector2(-726.075989F, -149.005997F), new Vector2(-726.771973F, -149.306F)); + builder.AddCubicBezier(new Vector2(-727.468018F, -149.606003F), new Vector2(-728.247986F, -149.755997F), new Vector2(-729.112F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-731.007996F, -149.755997F), new Vector2(-732.460022F, -149.108002F), new Vector2(-733.468018F, -147.811996F)); + builder.AddCubicBezier(new Vector2(-734.476013F, -146.516006F), new Vector2(-734.97998F, -144.776001F), new Vector2(-734.97998F, -142.591995F)); + builder.AddLine(new Vector2(-733.755981F, -142.016006F)); + builder.AddCubicBezier(new Vector2(-733.755981F, -143.600006F), new Vector2(-733.372009F, -144.776001F), new Vector2(-732.604004F, -145.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-733.755981F, -132.296005F)); + builder.AddLine(new Vector2(-733.755981F, -149.395996F)); + builder.AddLine(new Vector2(-736.995972F, -149.395996F)); + builder.AddLine(new Vector2(-736.995972F, -132.296005F)); + builder.AddLine(new Vector2(-733.755981F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1063() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-741.711975F, -132.296005F)); + builder.AddLine(new Vector2(-741.711975F, -149.395996F)); + builder.AddLine(new Vector2(-744.987976F, -149.395996F)); + builder.AddLine(new Vector2(-744.987976F, -145.220001F)); + builder.AddLine(new Vector2(-744.375977F, -141.080002F)); + builder.AddLine(new Vector2(-744.987976F, -136.904007F)); + builder.AddLine(new Vector2(-744.987976F, -132.296005F)); + builder.AddLine(new Vector2(-741.711975F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-753.015991F, -135.751999F)); + builder.AddCubicBezier(new Vector2(-753.856018F, -136.255997F), new Vector2(-754.51001F, -136.945999F), new Vector2(-754.978027F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-755.445984F, -138.697998F), new Vector2(-755.679993F, -139.712006F), new Vector2(-755.679993F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-755.679993F, -141.992004F), new Vector2(-755.445984F, -142.994003F), new Vector2(-754.978027F, -143.869995F)); + builder.AddCubicBezier(new Vector2(-754.51001F, -144.746002F), new Vector2(-753.862F, -145.436005F), new Vector2(-753.033997F, -145.940002F)); + builder.AddCubicBezier(new Vector2(-752.205994F, -146.444F), new Vector2(-751.252014F, -146.695999F), new Vector2(-750.171997F, -146.695999F)); + builder.AddCubicBezier(new Vector2(-749.09198F, -146.695999F), new Vector2(-748.150024F, -146.449997F), new Vector2(-747.346008F, -145.957993F)); + builder.AddCubicBezier(new Vector2(-746.541992F, -145.466003F), new Vector2(-745.911987F, -144.776001F), new Vector2(-745.455994F, -143.888F)); + builder.AddCubicBezier(new Vector2(-745F, -143F), new Vector2(-744.771973F, -141.979996F), new Vector2(-744.771973F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-744.771973F, -139.123993F), new Vector2(-745.263977F, -137.725998F), new Vector2(-746.247986F, -136.634003F)); + builder.AddCubicBezier(new Vector2(-747.231995F, -135.542007F), new Vector2(-748.528015F, -134.996002F), new Vector2(-750.135986F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-751.216003F, -134.996002F), new Vector2(-752.176025F, -135.248001F), new Vector2(-753.015991F, -135.751999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-747.184021F, -132.746002F)); + builder.AddCubicBezier(new Vector2(-746.151978F, -133.285995F), new Vector2(-745.330017F, -134.035995F), new Vector2(-744.718018F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-744.106018F, -135.955994F), new Vector2(-743.763977F, -137.048004F), new Vector2(-743.692017F, -138.272003F)); + builder.AddLine(new Vector2(-743.692017F, -143.419998F)); + builder.AddCubicBezier(new Vector2(-743.763977F, -144.667999F), new Vector2(-744.112F, -145.766006F), new Vector2(-744.736023F, -146.714005F)); + builder.AddCubicBezier(new Vector2(-745.359985F, -147.662003F), new Vector2(-746.182007F, -148.406006F), new Vector2(-747.202026F, -148.945999F)); + builder.AddCubicBezier(new Vector2(-748.221985F, -149.485992F), new Vector2(-749.380005F, -149.755997F), new Vector2(-750.676025F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-752.26001F, -149.755997F), new Vector2(-753.682007F, -149.360001F), new Vector2(-754.942017F, -148.567993F)); + builder.AddCubicBezier(new Vector2(-756.202026F, -147.776001F), new Vector2(-757.197998F, -146.707993F), new Vector2(-757.929993F, -145.363998F)); + builder.AddCubicBezier(new Vector2(-758.661987F, -144.020004F), new Vector2(-759.028015F, -142.507996F), new Vector2(-759.028015F, -140.828003F)); + builder.AddCubicBezier(new Vector2(-759.028015F, -139.147995F), new Vector2(-758.661987F, -137.636002F), new Vector2(-757.929993F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-757.197998F, -134.947998F), new Vector2(-756.202026F, -133.886002F), new Vector2(-754.942017F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-753.682007F, -132.326004F), new Vector2(-752.26001F, -131.936005F), new Vector2(-750.676025F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-749.380005F, -131.936005F), new Vector2(-748.216003F, -132.205994F), new Vector2(-747.184021F, -132.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1064() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-774.435974F, -132.296005F)); + builder.AddLine(new Vector2(-774.435974F, -149.395996F)); + builder.AddLine(new Vector2(-777.676025F, -149.395996F)); + builder.AddLine(new Vector2(-777.676025F, -132.296005F)); + builder.AddLine(new Vector2(-774.435974F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-762.340027F, -132.296005F)); + builder.AddLine(new Vector2(-762.340027F, -142.916F)); + builder.AddCubicBezier(new Vector2(-762.340027F, -144.091995F), new Vector2(-762.627991F, -145.201996F), new Vector2(-763.203979F, -146.246002F)); + builder.AddCubicBezier(new Vector2(-763.780029F, -147.289993F), new Vector2(-764.565979F, -148.136002F), new Vector2(-765.562012F, -148.783997F)); + builder.AddCubicBezier(new Vector2(-766.557983F, -149.432007F), new Vector2(-767.703979F, -149.755997F), new Vector2(-769F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-770.296021F, -149.755997F), new Vector2(-771.460022F, -149.462006F), new Vector2(-772.492004F, -148.873993F)); + builder.AddCubicBezier(new Vector2(-773.523987F, -148.285995F), new Vector2(-774.328003F, -147.488007F), new Vector2(-774.903992F, -146.479996F)); + builder.AddCubicBezier(new Vector2(-775.47998F, -145.472F), new Vector2(-775.768005F, -144.320007F), new Vector2(-775.768005F, -143.024002F)); + builder.AddLine(new Vector2(-774.435974F, -142.268005F)); + builder.AddCubicBezier(new Vector2(-774.435974F, -143.132004F), new Vector2(-774.244019F, -143.899994F), new Vector2(-773.859985F, -144.572006F)); + builder.AddCubicBezier(new Vector2(-773.476013F, -145.244003F), new Vector2(-772.947998F, -145.772003F), new Vector2(-772.276001F, -146.156006F)); + builder.AddCubicBezier(new Vector2(-771.604004F, -146.539993F), new Vector2(-770.835999F, -146.731995F), new Vector2(-769.971985F, -146.731995F)); + builder.AddCubicBezier(new Vector2(-768.676025F, -146.731995F), new Vector2(-767.625977F, -146.311996F), new Vector2(-766.822021F, -145.472F)); + builder.AddCubicBezier(new Vector2(-766.018005F, -144.632004F), new Vector2(-765.616028F, -143.563995F), new Vector2(-765.616028F, -142.268005F)); + builder.AddLine(new Vector2(-765.616028F, -132.296005F)); + builder.AddLine(new Vector2(-762.340027F, -132.296005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1065() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-785.271973F, -132.692001F)); + builder.AddCubicBezier(new Vector2(-784.096008F, -133.195999F), new Vector2(-783.088013F, -133.927994F), new Vector2(-782.247986F, -134.888F)); + builder.AddLine(new Vector2(-784.335999F, -137.011993F)); + builder.AddCubicBezier(new Vector2(-784.911987F, -136.339996F), new Vector2(-785.60199F, -135.835999F), new Vector2(-786.406006F, -135.5F)); + builder.AddCubicBezier(new Vector2(-787.210022F, -135.164001F), new Vector2(-788.09198F, -134.996002F), new Vector2(-789.052002F, -134.996002F)); + builder.AddCubicBezier(new Vector2(-790.203979F, -134.996002F), new Vector2(-791.223999F, -135.242004F), new Vector2(-792.112F, -135.733994F)); + builder.AddCubicBezier(new Vector2(-793F, -136.225998F), new Vector2(-793.684021F, -136.921997F), new Vector2(-794.164001F, -137.822006F)); + builder.AddCubicBezier(new Vector2(-794.643982F, -138.722F), new Vector2(-794.883972F, -139.772003F), new Vector2(-794.883972F, -140.972F)); + builder.AddCubicBezier(new Vector2(-794.883972F, -142.147995F), new Vector2(-794.656006F, -143.167999F), new Vector2(-794.200012F, -144.031998F)); + builder.AddCubicBezier(new Vector2(-793.744019F, -144.895996F), new Vector2(-793.096008F, -145.567993F), new Vector2(-792.255981F, -146.048004F)); + builder.AddCubicBezier(new Vector2(-791.416016F, -146.528F), new Vector2(-790.44397F, -146.768005F), new Vector2(-789.340027F, -146.768005F)); + builder.AddCubicBezier(new Vector2(-788.283997F, -146.768005F), new Vector2(-787.383972F, -146.546005F), new Vector2(-786.640015F, -146.102005F)); + builder.AddCubicBezier(new Vector2(-785.895996F, -145.658005F), new Vector2(-785.320007F, -145.033997F), new Vector2(-784.911987F, -144.229996F)); + builder.AddCubicBezier(new Vector2(-784.504028F, -143.425995F), new Vector2(-784.299988F, -142.447998F), new Vector2(-784.299988F, -141.296005F)); + builder.AddLine(new Vector2(-783.112F, -142.339996F)); + builder.AddLine(new Vector2(-795.820007F, -142.339996F)); + builder.AddLine(new Vector2(-795.820007F, -139.639999F)); + builder.AddLine(new Vector2(-781.383972F, -139.639999F)); + builder.AddCubicBezier(new Vector2(-781.312012F, -139.975998F), new Vector2(-781.263977F, -140.281998F), new Vector2(-781.23999F, -140.557999F)); + builder.AddCubicBezier(new Vector2(-781.216003F, -140.834F), new Vector2(-781.203979F, -141.091995F), new Vector2(-781.203979F, -141.332001F)); + builder.AddCubicBezier(new Vector2(-781.203979F, -142.964005F), new Vector2(-781.546021F, -144.416F), new Vector2(-782.22998F, -145.688004F)); + builder.AddCubicBezier(new Vector2(-782.914001F, -146.960007F), new Vector2(-783.867981F, -147.955994F), new Vector2(-785.09198F, -148.675995F)); + builder.AddCubicBezier(new Vector2(-786.315979F, -149.395996F), new Vector2(-787.708008F, -149.755997F), new Vector2(-789.268005F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-790.924011F, -149.755997F), new Vector2(-792.41803F, -149.365997F), new Vector2(-793.75F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-795.08197F, -147.806F), new Vector2(-796.138F, -146.744003F), new Vector2(-796.91803F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-797.697998F, -144.056F), new Vector2(-798.088013F, -142.544006F), new Vector2(-798.088013F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-798.088013F, -139.160004F), new Vector2(-797.692017F, -137.636002F), new Vector2(-796.900024F, -136.292007F)); + builder.AddCubicBezier(new Vector2(-796.107971F, -134.947998F), new Vector2(-795.033997F, -133.886002F), new Vector2(-793.677979F, -133.106003F)); + builder.AddCubicBezier(new Vector2(-792.322021F, -132.326004F), new Vector2(-790.780029F, -131.936005F), new Vector2(-789.052002F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-787.708008F, -131.936005F), new Vector2(-786.447998F, -132.188004F), new Vector2(-785.271973F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1066() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-802.75F, -132.692001F)); + builder.AddCubicBezier(new Vector2(-801.609985F, -133.195999F), new Vector2(-800.643982F, -133.904007F), new Vector2(-799.85199F, -134.815994F)); + builder.AddLine(new Vector2(-801.976013F, -136.975998F)); + builder.AddCubicBezier(new Vector2(-802.528015F, -136.352005F), new Vector2(-803.182007F, -135.878006F), new Vector2(-803.937988F, -135.554001F)); + builder.AddCubicBezier(new Vector2(-804.69397F, -135.229996F), new Vector2(-805.528015F, -135.067993F), new Vector2(-806.440002F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-807.52002F, -135.067993F), new Vector2(-808.47998F, -135.320007F), new Vector2(-809.320007F, -135.824005F)); + builder.AddCubicBezier(new Vector2(-810.159973F, -136.328003F), new Vector2(-810.820007F, -137.011993F), new Vector2(-811.299988F, -137.876007F)); + builder.AddCubicBezier(new Vector2(-811.780029F, -138.740005F), new Vector2(-812.02002F, -139.735992F), new Vector2(-812.02002F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-812.02002F, -141.992004F), new Vector2(-811.780029F, -142.988007F), new Vector2(-811.299988F, -143.852005F)); + builder.AddCubicBezier(new Vector2(-810.820007F, -144.716003F), new Vector2(-810.159973F, -145.393997F), new Vector2(-809.320007F, -145.886002F)); + builder.AddCubicBezier(new Vector2(-808.47998F, -146.378006F), new Vector2(-807.52002F, -146.623993F), new Vector2(-806.440002F, -146.623993F)); + builder.AddCubicBezier(new Vector2(-805.552002F, -146.623993F), new Vector2(-804.723999F, -146.462006F), new Vector2(-803.955994F, -146.138F)); + builder.AddCubicBezier(new Vector2(-803.187988F, -145.813995F), new Vector2(-802.539978F, -145.339996F), new Vector2(-802.012024F, -144.716003F)); + builder.AddLine(new Vector2(-799.85199F, -146.876007F)); + builder.AddCubicBezier(new Vector2(-800.66803F, -147.811996F), new Vector2(-801.640015F, -148.526001F), new Vector2(-802.768005F, -149.018005F)); + builder.AddCubicBezier(new Vector2(-803.895996F, -149.509995F), new Vector2(-805.119995F, -149.755997F), new Vector2(-806.440002F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-808.119995F, -149.755997F), new Vector2(-809.638F, -149.365997F), new Vector2(-810.994019F, -148.585999F)); + builder.AddCubicBezier(new Vector2(-812.349976F, -147.806F), new Vector2(-813.41803F, -146.744003F), new Vector2(-814.197998F, -145.399994F)); + builder.AddCubicBezier(new Vector2(-814.978027F, -144.056F), new Vector2(-815.367981F, -142.544006F), new Vector2(-815.367981F, -140.863998F)); + builder.AddCubicBezier(new Vector2(-815.367981F, -139.207993F), new Vector2(-814.978027F, -137.701996F), new Vector2(-814.197998F, -136.345993F)); + builder.AddCubicBezier(new Vector2(-813.41803F, -134.990005F), new Vector2(-812.349976F, -133.916F), new Vector2(-810.994019F, -133.123993F)); + builder.AddCubicBezier(new Vector2(-809.638F, -132.332001F), new Vector2(-808.119995F, -131.936005F), new Vector2(-806.440002F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-805.119995F, -131.936005F), new Vector2(-803.890015F, -132.188004F), new Vector2(-802.75F, -132.692001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1067() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-819.598022F, -133.339996F)); + builder.AddCubicBezier(new Vector2(-818.458008F, -134.276001F), new Vector2(-817.888F, -135.548004F), new Vector2(-817.888F, -137.156006F)); + builder.AddCubicBezier(new Vector2(-817.888F, -138.212006F), new Vector2(-818.109985F, -139.063995F), new Vector2(-818.554016F, -139.712006F)); + builder.AddCubicBezier(new Vector2(-818.997986F, -140.360001F), new Vector2(-819.567993F, -140.876007F), new Vector2(-820.263977F, -141.259995F)); + builder.AddCubicBezier(new Vector2(-820.960022F, -141.643997F), new Vector2(-821.692017F, -141.949997F), new Vector2(-822.460022F, -142.177994F)); + builder.AddCubicBezier(new Vector2(-823.228027F, -142.406006F), new Vector2(-823.966003F, -142.628006F), new Vector2(-824.674011F, -142.843994F)); + builder.AddCubicBezier(new Vector2(-825.382019F, -143.059998F), new Vector2(-825.952026F, -143.324005F), new Vector2(-826.383972F, -143.636002F)); + builder.AddCubicBezier(new Vector2(-826.815979F, -143.947998F), new Vector2(-827.031982F, -144.391998F), new Vector2(-827.031982F, -144.968002F)); + builder.AddCubicBezier(new Vector2(-827.031982F, -145.520004F), new Vector2(-826.786011F, -145.964005F), new Vector2(-826.294006F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-825.802002F, -146.636002F), new Vector2(-825.088013F, -146.804001F), new Vector2(-824.151978F, -146.804001F)); + builder.AddCubicBezier(new Vector2(-823.263977F, -146.804001F), new Vector2(-822.471985F, -146.636002F), new Vector2(-821.776001F, -146.300003F)); + builder.AddCubicBezier(new Vector2(-821.080017F, -145.964005F), new Vector2(-820.47998F, -145.483994F), new Vector2(-819.976013F, -144.860001F)); + builder.AddLine(new Vector2(-817.888F, -146.947998F)); + builder.AddCubicBezier(new Vector2(-818.559998F, -147.884003F), new Vector2(-819.41803F, -148.585999F), new Vector2(-820.461975F, -149.054001F)); + builder.AddCubicBezier(new Vector2(-821.505981F, -149.522003F), new Vector2(-822.700012F, -149.755997F), new Vector2(-824.044006F, -149.755997F)); + builder.AddCubicBezier(new Vector2(-825.315979F, -149.755997F), new Vector2(-826.40802F, -149.552002F), new Vector2(-827.320007F, -149.143997F)); + builder.AddCubicBezier(new Vector2(-828.231995F, -148.735992F), new Vector2(-828.934021F, -148.154007F), new Vector2(-829.426025F, -147.397995F)); + builder.AddCubicBezier(new Vector2(-829.91803F, -146.641998F), new Vector2(-830.164001F, -145.748001F), new Vector2(-830.164001F, -144.716003F)); + builder.AddCubicBezier(new Vector2(-830.164001F, -143.684006F), new Vector2(-829.942017F, -142.850006F), new Vector2(-829.497986F, -142.214005F)); + builder.AddCubicBezier(new Vector2(-829.054016F, -141.578003F), new Vector2(-828.484009F, -141.080002F), new Vector2(-827.788025F, -140.720001F)); + builder.AddCubicBezier(new Vector2(-827.09198F, -140.360001F), new Vector2(-826.354004F, -140.072006F), new Vector2(-825.573975F, -139.856003F)); + builder.AddCubicBezier(new Vector2(-824.794006F, -139.639999F), new Vector2(-824.05603F, -139.417999F), new Vector2(-823.359985F, -139.190002F)); + builder.AddCubicBezier(new Vector2(-822.664001F, -138.962006F), new Vector2(-822.093994F, -138.673996F), new Vector2(-821.650024F, -138.326004F)); + builder.AddCubicBezier(new Vector2(-821.205994F, -137.977997F), new Vector2(-820.984009F, -137.492004F), new Vector2(-820.984009F, -136.867996F)); + builder.AddCubicBezier(new Vector2(-820.984009F, -136.244003F), new Vector2(-821.26001F, -135.757996F), new Vector2(-821.812012F, -135.410004F)); + builder.AddCubicBezier(new Vector2(-822.364014F, -135.061996F), new Vector2(-823.143982F, -134.888F), new Vector2(-824.151978F, -134.888F)); + builder.AddCubicBezier(new Vector2(-825.159973F, -134.888F), new Vector2(-826.072021F, -135.074005F), new Vector2(-826.888F, -135.445999F)); + builder.AddCubicBezier(new Vector2(-827.703979F, -135.817993F), new Vector2(-828.424011F, -136.388F), new Vector2(-829.047974F, -137.156006F)); + builder.AddLine(new Vector2(-831.135986F, -135.067993F)); + builder.AddCubicBezier(new Vector2(-830.607971F, -134.419998F), new Vector2(-829.98999F, -133.862F), new Vector2(-829.281982F, -133.393997F)); + builder.AddCubicBezier(new Vector2(-828.573975F, -132.925995F), new Vector2(-827.788025F, -132.565994F), new Vector2(-826.924011F, -132.313995F)); + builder.AddCubicBezier(new Vector2(-826.059998F, -132.061996F), new Vector2(-825.14801F, -131.936005F), new Vector2(-824.187988F, -131.936005F)); + builder.AddCubicBezier(new Vector2(-822.268005F, -131.936005F), new Vector2(-820.737976F, -132.404007F), new Vector2(-819.598022F, -133.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1068() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(684.104004F, -201.199997F)); + builder.AddLine(new Vector2(680.828003F, -201.199997F)); + builder.AddLine(new Vector2(680.828003F, -188.419998F)); + builder.AddLine(new Vector2(681.440002F, -184.279999F)); + builder.AddLine(new Vector2(680.828003F, -180.104004F)); + builder.AddLine(new Vector2(680.828003F, -175.496002F)); + builder.AddLine(new Vector2(684.104004F, -175.496002F)); + builder.AddLine(new Vector2(684.104004F, -201.199997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(672.781982F, -178.934006F)); + builder.AddCubicBezier(new Vector2(671.953979F, -179.425995F), new Vector2(671.30603F, -180.115997F), new Vector2(670.838013F, -181.003998F)); + builder.AddCubicBezier(new Vector2(670.369995F, -181.891998F), new Vector2(670.135986F, -182.912003F), new Vector2(670.135986F, -184.063995F)); + builder.AddCubicBezier(new Vector2(670.135986F, -185.216003F), new Vector2(670.369995F, -186.229996F), new Vector2(670.838013F, -187.106003F)); + builder.AddCubicBezier(new Vector2(671.30603F, -187.981995F), new Vector2(671.947998F, -188.666F), new Vector2(672.763977F, -189.158005F)); + builder.AddCubicBezier(new Vector2(673.580017F, -189.649994F), new Vector2(674.528015F, -189.895996F), new Vector2(675.607971F, -189.895996F)); + builder.AddCubicBezier(new Vector2(676.687988F, -189.895996F), new Vector2(677.635986F, -189.643997F), new Vector2(678.452026F, -189.139999F)); + builder.AddCubicBezier(new Vector2(679.268005F, -188.636002F), new Vector2(679.903992F, -187.945999F), new Vector2(680.359985F, -187.070007F)); + builder.AddCubicBezier(new Vector2(680.815979F, -186.194F), new Vector2(681.044006F, -185.179993F), new Vector2(681.044006F, -184.028F)); + builder.AddCubicBezier(new Vector2(681.044006F, -182.899994F), new Vector2(680.815979F, -181.897995F), new Vector2(680.359985F, -181.022003F)); + builder.AddCubicBezier(new Vector2(679.903992F, -180.145996F), new Vector2(679.268005F, -179.455994F), new Vector2(678.452026F, -178.951996F)); + builder.AddCubicBezier(new Vector2(677.635986F, -178.447998F), new Vector2(676.687988F, -178.195999F), new Vector2(675.607971F, -178.195999F)); + builder.AddCubicBezier(new Vector2(674.552002F, -178.195999F), new Vector2(673.609985F, -178.442001F), new Vector2(672.781982F, -178.934006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(678.596008F, -175.945999F)); + builder.AddCubicBezier(new Vector2(679.627991F, -176.485992F), new Vector2(680.455994F, -177.235992F), new Vector2(681.080017F, -178.195999F)); + builder.AddCubicBezier(new Vector2(681.703979F, -179.156006F), new Vector2(682.052002F, -180.248001F), new Vector2(682.124023F, -181.472F)); + builder.AddLine(new Vector2(682.124023F, -186.619995F)); + builder.AddCubicBezier(new Vector2(682.052002F, -187.867996F), new Vector2(681.697998F, -188.966003F), new Vector2(681.062012F, -189.914001F)); + builder.AddCubicBezier(new Vector2(680.426025F, -190.862F), new Vector2(679.59198F, -191.606003F), new Vector2(678.559998F, -192.145996F)); + builder.AddCubicBezier(new Vector2(677.528015F, -192.686005F), new Vector2(676.364014F, -192.955994F), new Vector2(675.067993F, -192.955994F)); + builder.AddCubicBezier(new Vector2(673.507996F, -192.955994F), new Vector2(672.104004F, -192.559998F), new Vector2(670.856018F, -191.768005F)); + builder.AddCubicBezier(new Vector2(669.607971F, -190.975998F), new Vector2(668.617981F, -189.908005F), new Vector2(667.885986F, -188.563995F)); + builder.AddCubicBezier(new Vector2(667.153992F, -187.220001F), new Vector2(666.788025F, -185.707993F), new Vector2(666.788025F, -184.028F)); + builder.AddCubicBezier(new Vector2(666.788025F, -182.348007F), new Vector2(667.153992F, -180.835999F), new Vector2(667.885986F, -179.492004F)); + builder.AddCubicBezier(new Vector2(668.617981F, -178.147995F), new Vector2(669.607971F, -177.085999F), new Vector2(670.856018F, -176.306F)); + builder.AddCubicBezier(new Vector2(672.104004F, -175.526001F), new Vector2(673.507996F, -175.136002F), new Vector2(675.067993F, -175.136002F)); + builder.AddCubicBezier(new Vector2(676.388F, -175.136002F), new Vector2(677.564026F, -175.406006F), new Vector2(678.596008F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1069() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(660.271973F, -175.891998F)); + builder.AddCubicBezier(new Vector2(661.447998F, -176.395996F), new Vector2(662.455994F, -177.128006F), new Vector2(663.296021F, -178.087997F)); + builder.AddLine(new Vector2(661.208008F, -180.212006F)); + builder.AddCubicBezier(new Vector2(660.632019F, -179.539993F), new Vector2(659.942017F, -179.035995F), new Vector2(659.138F, -178.699997F)); + builder.AddCubicBezier(new Vector2(658.333984F, -178.363998F), new Vector2(657.452026F, -178.195999F), new Vector2(656.492004F, -178.195999F)); + builder.AddCubicBezier(new Vector2(655.340027F, -178.195999F), new Vector2(654.320007F, -178.442001F), new Vector2(653.432007F, -178.934006F)); + builder.AddCubicBezier(new Vector2(652.544006F, -179.425995F), new Vector2(651.859985F, -180.121994F), new Vector2(651.380005F, -181.022003F)); + builder.AddCubicBezier(new Vector2(650.900024F, -181.921997F), new Vector2(650.659973F, -182.972F), new Vector2(650.659973F, -184.171997F)); + builder.AddCubicBezier(new Vector2(650.659973F, -185.348007F), new Vector2(650.888F, -186.367996F), new Vector2(651.343994F, -187.231995F)); + builder.AddCubicBezier(new Vector2(651.799988F, -188.095993F), new Vector2(652.447998F, -188.768005F), new Vector2(653.288025F, -189.248001F)); + builder.AddCubicBezier(new Vector2(654.127991F, -189.727997F), new Vector2(655.099976F, -189.968002F), new Vector2(656.203979F, -189.968002F)); + builder.AddCubicBezier(new Vector2(657.26001F, -189.968002F), new Vector2(658.159973F, -189.746002F), new Vector2(658.903992F, -189.302002F)); + builder.AddCubicBezier(new Vector2(659.64801F, -188.858002F), new Vector2(660.223999F, -188.233994F), new Vector2(660.632019F, -187.429993F)); + builder.AddCubicBezier(new Vector2(661.039978F, -186.626007F), new Vector2(661.244019F, -185.647995F), new Vector2(661.244019F, -184.496002F)); + builder.AddLine(new Vector2(662.432007F, -185.539993F)); + builder.AddLine(new Vector2(649.723999F, -185.539993F)); + builder.AddLine(new Vector2(649.723999F, -182.839996F)); + builder.AddLine(new Vector2(664.159973F, -182.839996F)); + builder.AddCubicBezier(new Vector2(664.231995F, -183.175995F), new Vector2(664.280029F, -183.481995F), new Vector2(664.304016F, -183.757996F)); + builder.AddCubicBezier(new Vector2(664.328003F, -184.033997F), new Vector2(664.340027F, -184.292007F), new Vector2(664.340027F, -184.531998F)); + builder.AddCubicBezier(new Vector2(664.340027F, -186.164001F), new Vector2(663.997986F, -187.615997F), new Vector2(663.314026F, -188.888F)); + builder.AddCubicBezier(new Vector2(662.630005F, -190.160004F), new Vector2(661.676025F, -191.156006F), new Vector2(660.452026F, -191.876007F)); + builder.AddCubicBezier(new Vector2(659.228027F, -192.595993F), new Vector2(657.835999F, -192.955994F), new Vector2(656.276001F, -192.955994F)); + builder.AddCubicBezier(new Vector2(654.619995F, -192.955994F), new Vector2(653.125977F, -192.565994F), new Vector2(651.794006F, -191.785995F)); + builder.AddCubicBezier(new Vector2(650.461975F, -191.005997F), new Vector2(649.406006F, -189.944F), new Vector2(648.625977F, -188.600006F)); + builder.AddCubicBezier(new Vector2(647.846008F, -187.255997F), new Vector2(647.455994F, -185.744003F), new Vector2(647.455994F, -184.063995F)); + builder.AddCubicBezier(new Vector2(647.455994F, -182.360001F), new Vector2(647.85199F, -180.835999F), new Vector2(648.643982F, -179.492004F)); + builder.AddCubicBezier(new Vector2(649.435974F, -178.147995F), new Vector2(650.51001F, -177.085999F), new Vector2(651.866028F, -176.306F)); + builder.AddCubicBezier(new Vector2(653.221985F, -175.526001F), new Vector2(654.763977F, -175.136002F), new Vector2(656.492004F, -175.136002F)); + builder.AddCubicBezier(new Vector2(657.835999F, -175.136002F), new Vector2(659.096008F, -175.388F), new Vector2(660.271973F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1070() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(645.94397F, -189.643997F)); + builder.AddLine(new Vector2(645.94397F, -192.595993F)); + builder.AddLine(new Vector2(634.280029F, -192.595993F)); + builder.AddLine(new Vector2(634.280029F, -189.643997F)); + builder.AddLine(new Vector2(645.94397F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(641.731995F, -175.496002F)); + builder.AddLine(new Vector2(641.731995F, -199.759995F)); + builder.AddLine(new Vector2(638.492004F, -199.759995F)); + builder.AddLine(new Vector2(638.492004F, -175.496002F)); + builder.AddLine(new Vector2(641.731995F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1071() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(631.219971F, -175.496002F)); + builder.AddLine(new Vector2(631.219971F, -192.595993F)); + builder.AddLine(new Vector2(627.94397F, -192.595993F)); + builder.AddLine(new Vector2(627.94397F, -188.419998F)); + builder.AddLine(new Vector2(628.55603F, -184.279999F)); + builder.AddLine(new Vector2(627.94397F, -180.104004F)); + builder.AddLine(new Vector2(627.94397F, -175.496002F)); + builder.AddLine(new Vector2(631.219971F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(619.916016F, -178.951996F)); + builder.AddCubicBezier(new Vector2(619.075989F, -179.455994F), new Vector2(618.421997F, -180.145996F), new Vector2(617.953979F, -181.022003F)); + builder.AddCubicBezier(new Vector2(617.486023F, -181.897995F), new Vector2(617.252014F, -182.912003F), new Vector2(617.252014F, -184.063995F)); + builder.AddCubicBezier(new Vector2(617.252014F, -185.192001F), new Vector2(617.486023F, -186.194F), new Vector2(617.953979F, -187.070007F)); + builder.AddCubicBezier(new Vector2(618.421997F, -187.945999F), new Vector2(619.070007F, -188.636002F), new Vector2(619.89801F, -189.139999F)); + builder.AddCubicBezier(new Vector2(620.726013F, -189.643997F), new Vector2(621.679993F, -189.895996F), new Vector2(622.76001F, -189.895996F)); + builder.AddCubicBezier(new Vector2(623.840027F, -189.895996F), new Vector2(624.781982F, -189.649994F), new Vector2(625.585999F, -189.158005F)); + builder.AddCubicBezier(new Vector2(626.390015F, -188.666F), new Vector2(627.02002F, -187.975998F), new Vector2(627.476013F, -187.087997F)); + builder.AddCubicBezier(new Vector2(627.932007F, -186.199997F), new Vector2(628.159973F, -185.179993F), new Vector2(628.159973F, -184.028F)); + builder.AddCubicBezier(new Vector2(628.159973F, -182.324005F), new Vector2(627.66803F, -180.925995F), new Vector2(626.684021F, -179.834F)); + builder.AddCubicBezier(new Vector2(625.700012F, -178.742004F), new Vector2(624.403992F, -178.195999F), new Vector2(622.796021F, -178.195999F)); + builder.AddCubicBezier(new Vector2(621.716003F, -178.195999F), new Vector2(620.755981F, -178.447998F), new Vector2(619.916016F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(625.747986F, -175.945999F)); + builder.AddCubicBezier(new Vector2(626.780029F, -176.485992F), new Vector2(627.60199F, -177.235992F), new Vector2(628.213989F, -178.195999F)); + builder.AddCubicBezier(new Vector2(628.825989F, -179.156006F), new Vector2(629.16803F, -180.248001F), new Vector2(629.23999F, -181.472F)); + builder.AddLine(new Vector2(629.23999F, -186.619995F)); + builder.AddCubicBezier(new Vector2(629.16803F, -187.867996F), new Vector2(628.820007F, -188.966003F), new Vector2(628.195984F, -189.914001F)); + builder.AddCubicBezier(new Vector2(627.572021F, -190.862F), new Vector2(626.75F, -191.606003F), new Vector2(625.72998F, -192.145996F)); + builder.AddCubicBezier(new Vector2(624.710022F, -192.686005F), new Vector2(623.552002F, -192.955994F), new Vector2(622.255981F, -192.955994F)); + builder.AddCubicBezier(new Vector2(620.671997F, -192.955994F), new Vector2(619.25F, -192.559998F), new Vector2(617.98999F, -191.768005F)); + builder.AddCubicBezier(new Vector2(616.72998F, -190.975998F), new Vector2(615.734009F, -189.908005F), new Vector2(615.002014F, -188.563995F)); + builder.AddCubicBezier(new Vector2(614.27002F, -187.220001F), new Vector2(613.903992F, -185.707993F), new Vector2(613.903992F, -184.028F)); + builder.AddCubicBezier(new Vector2(613.903992F, -182.348007F), new Vector2(614.27002F, -180.835999F), new Vector2(615.002014F, -179.492004F)); + builder.AddCubicBezier(new Vector2(615.734009F, -178.147995F), new Vector2(616.72998F, -177.085999F), new Vector2(617.98999F, -176.306F)); + builder.AddCubicBezier(new Vector2(619.25F, -175.526001F), new Vector2(620.671997F, -175.136002F), new Vector2(622.255981F, -175.136002F)); + builder.AddCubicBezier(new Vector2(623.552002F, -175.136002F), new Vector2(624.716003F, -175.406006F), new Vector2(625.747986F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1072() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(609.205994F, -175.891998F)); + builder.AddCubicBezier(new Vector2(610.346008F, -176.395996F), new Vector2(611.312012F, -177.104004F), new Vector2(612.104004F, -178.016006F)); + builder.AddLine(new Vector2(609.97998F, -180.175995F)); + builder.AddCubicBezier(new Vector2(609.427979F, -179.552002F), new Vector2(608.773987F, -179.078003F), new Vector2(608.018005F, -178.753998F)); + builder.AddCubicBezier(new Vector2(607.262024F, -178.429993F), new Vector2(606.427979F, -178.268005F), new Vector2(605.515991F, -178.268005F)); + builder.AddCubicBezier(new Vector2(604.435974F, -178.268005F), new Vector2(603.476013F, -178.520004F), new Vector2(602.635986F, -179.024002F)); + builder.AddCubicBezier(new Vector2(601.796021F, -179.528F), new Vector2(601.135986F, -180.212006F), new Vector2(600.656006F, -181.076004F)); + builder.AddCubicBezier(new Vector2(600.176025F, -181.940002F), new Vector2(599.935974F, -182.936005F), new Vector2(599.935974F, -184.063995F)); + builder.AddCubicBezier(new Vector2(599.935974F, -185.192001F), new Vector2(600.176025F, -186.188004F), new Vector2(600.656006F, -187.052002F)); + builder.AddCubicBezier(new Vector2(601.135986F, -187.916F), new Vector2(601.796021F, -188.593994F), new Vector2(602.635986F, -189.085999F)); + builder.AddCubicBezier(new Vector2(603.476013F, -189.578003F), new Vector2(604.435974F, -189.824005F), new Vector2(605.515991F, -189.824005F)); + builder.AddCubicBezier(new Vector2(606.403992F, -189.824005F), new Vector2(607.231995F, -189.662003F), new Vector2(608F, -189.337997F)); + builder.AddCubicBezier(new Vector2(608.768005F, -189.014008F), new Vector2(609.416016F, -188.539993F), new Vector2(609.94397F, -187.916F)); + builder.AddLine(new Vector2(612.104004F, -190.076004F)); + builder.AddCubicBezier(new Vector2(611.288025F, -191.011993F), new Vector2(610.315979F, -191.725998F), new Vector2(609.187988F, -192.218002F)); + builder.AddCubicBezier(new Vector2(608.059998F, -192.710007F), new Vector2(606.835999F, -192.955994F), new Vector2(605.515991F, -192.955994F)); + builder.AddCubicBezier(new Vector2(603.835999F, -192.955994F), new Vector2(602.317993F, -192.565994F), new Vector2(600.961975F, -191.785995F)); + builder.AddCubicBezier(new Vector2(599.606018F, -191.005997F), new Vector2(598.538025F, -189.944F), new Vector2(597.757996F, -188.600006F)); + builder.AddCubicBezier(new Vector2(596.978027F, -187.255997F), new Vector2(596.588013F, -185.744003F), new Vector2(596.588013F, -184.063995F)); + builder.AddCubicBezier(new Vector2(596.588013F, -182.408005F), new Vector2(596.978027F, -180.901993F), new Vector2(597.757996F, -179.546005F)); + builder.AddCubicBezier(new Vector2(598.538025F, -178.190002F), new Vector2(599.606018F, -177.115997F), new Vector2(600.961975F, -176.324005F)); + builder.AddCubicBezier(new Vector2(602.317993F, -175.531998F), new Vector2(603.835999F, -175.136002F), new Vector2(605.515991F, -175.136002F)); + builder.AddCubicBezier(new Vector2(606.835999F, -175.136002F), new Vector2(608.065979F, -175.388F), new Vector2(609.205994F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1073() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(592.771973F, -196.610001F)); + builder.AddCubicBezier(new Vector2(593.156006F, -197.005997F), new Vector2(593.348022F, -197.503998F), new Vector2(593.348022F, -198.104004F)); + builder.AddCubicBezier(new Vector2(593.348022F, -198.679993F), new Vector2(593.156006F, -199.166F), new Vector2(592.771973F, -199.561996F)); + builder.AddCubicBezier(new Vector2(592.388F, -199.957993F), new Vector2(591.895996F, -200.156006F), new Vector2(591.296021F, -200.156006F)); + builder.AddCubicBezier(new Vector2(590.695984F, -200.156006F), new Vector2(590.203979F, -199.957993F), new Vector2(589.820007F, -199.561996F)); + builder.AddCubicBezier(new Vector2(589.435974F, -199.166F), new Vector2(589.244019F, -198.679993F), new Vector2(589.244019F, -198.104004F)); + builder.AddCubicBezier(new Vector2(589.244019F, -197.503998F), new Vector2(589.435974F, -197.005997F), new Vector2(589.820007F, -196.610001F)); + builder.AddCubicBezier(new Vector2(590.203979F, -196.214005F), new Vector2(590.695984F, -196.016006F), new Vector2(591.296021F, -196.016006F)); + builder.AddCubicBezier(new Vector2(591.895996F, -196.016006F), new Vector2(592.388F, -196.214005F), new Vector2(592.771973F, -196.610001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(592.916016F, -175.496002F)); + builder.AddLine(new Vector2(592.916016F, -192.595993F)); + builder.AddLine(new Vector2(589.640015F, -192.595993F)); + builder.AddLine(new Vector2(589.640015F, -175.496002F)); + builder.AddLine(new Vector2(592.916016F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1074() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(579.596008F, -188.744003F)); + builder.AddCubicBezier(new Vector2(580.364014F, -189.511993F), new Vector2(581.348022F, -189.895996F), new Vector2(582.547974F, -189.895996F)); + builder.AddCubicBezier(new Vector2(583.124023F, -189.895996F), new Vector2(583.627991F, -189.811996F), new Vector2(584.059998F, -189.643997F)); + builder.AddCubicBezier(new Vector2(584.492004F, -189.475998F), new Vector2(584.888F, -189.199997F), new Vector2(585.247986F, -188.815994F)); + builder.AddLine(new Vector2(587.372009F, -191.011993F)); + builder.AddCubicBezier(new Vector2(586.771973F, -191.707993F), new Vector2(586.124023F, -192.205994F), new Vector2(585.427979F, -192.505997F)); + builder.AddCubicBezier(new Vector2(584.731995F, -192.806F), new Vector2(583.952026F, -192.955994F), new Vector2(583.088013F, -192.955994F)); + builder.AddCubicBezier(new Vector2(581.192017F, -192.955994F), new Vector2(579.73999F, -192.307999F), new Vector2(578.731995F, -191.011993F)); + builder.AddCubicBezier(new Vector2(577.723999F, -189.716003F), new Vector2(577.219971F, -187.975998F), new Vector2(577.219971F, -185.792007F)); + builder.AddLine(new Vector2(578.44397F, -185.216003F)); + builder.AddCubicBezier(new Vector2(578.44397F, -186.800003F), new Vector2(578.828003F, -187.975998F), new Vector2(579.596008F, -188.744003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(578.44397F, -175.496002F)); + builder.AddLine(new Vector2(578.44397F, -192.595993F)); + builder.AddLine(new Vector2(575.203979F, -192.595993F)); + builder.AddLine(new Vector2(575.203979F, -175.496002F)); + builder.AddLine(new Vector2(578.44397F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1075() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(559.885986F, -178.951996F)); + builder.AddCubicBezier(new Vector2(559.057983F, -179.455994F), new Vector2(558.421997F, -180.145996F), new Vector2(557.978027F, -181.022003F)); + builder.AddCubicBezier(new Vector2(557.533997F, -181.897995F), new Vector2(557.312012F, -182.899994F), new Vector2(557.312012F, -184.028F)); + builder.AddCubicBezier(new Vector2(557.312012F, -185.179993F), new Vector2(557.539978F, -186.194F), new Vector2(557.995972F, -187.070007F)); + builder.AddCubicBezier(new Vector2(558.452026F, -187.945999F), new Vector2(559.088013F, -188.636002F), new Vector2(559.903992F, -189.139999F)); + builder.AddCubicBezier(new Vector2(560.719971F, -189.643997F), new Vector2(561.656006F, -189.895996F), new Vector2(562.711975F, -189.895996F)); + builder.AddCubicBezier(new Vector2(563.791992F, -189.895996F), new Vector2(564.73999F, -189.643997F), new Vector2(565.55603F, -189.139999F)); + builder.AddCubicBezier(new Vector2(566.372009F, -188.636002F), new Vector2(567.013977F, -187.945999F), new Vector2(567.481995F, -187.070007F)); + builder.AddCubicBezier(new Vector2(567.950012F, -186.194F), new Vector2(568.184021F, -185.192001F), new Vector2(568.184021F, -184.063995F)); + builder.AddCubicBezier(new Vector2(568.184021F, -182.912003F), new Vector2(567.950012F, -181.897995F), new Vector2(567.481995F, -181.022003F)); + builder.AddCubicBezier(new Vector2(567.013977F, -180.145996F), new Vector2(566.372009F, -179.455994F), new Vector2(565.55603F, -178.951996F)); + builder.AddCubicBezier(new Vector2(564.73999F, -178.447998F), new Vector2(563.791992F, -178.195999F), new Vector2(562.711975F, -178.195999F)); + builder.AddCubicBezier(new Vector2(561.656006F, -178.195999F), new Vector2(560.713989F, -178.447998F), new Vector2(559.885986F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(557.492004F, -175.496002F)); + builder.AddLine(new Vector2(557.492004F, -180.104004F)); + builder.AddLine(new Vector2(556.880005F, -184.279999F)); + builder.AddLine(new Vector2(557.492004F, -188.419998F)); + builder.AddLine(new Vector2(557.492004F, -201.199997F)); + builder.AddLine(new Vector2(554.252014F, -201.199997F)); + builder.AddLine(new Vector2(554.252014F, -175.496002F)); + builder.AddLine(new Vector2(557.492004F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(567.481995F, -176.306F)); + builder.AddCubicBezier(new Vector2(568.742004F, -177.085999F), new Vector2(569.731995F, -178.147995F), new Vector2(570.452026F, -179.492004F)); + builder.AddCubicBezier(new Vector2(571.171997F, -180.835999F), new Vector2(571.531982F, -182.348007F), new Vector2(571.531982F, -184.028F)); + builder.AddCubicBezier(new Vector2(571.531982F, -185.707993F), new Vector2(571.171997F, -187.220001F), new Vector2(570.452026F, -188.563995F)); + builder.AddCubicBezier(new Vector2(569.731995F, -189.908005F), new Vector2(568.742004F, -190.975998F), new Vector2(567.481995F, -191.768005F)); + builder.AddCubicBezier(new Vector2(566.221985F, -192.559998F), new Vector2(564.812012F, -192.955994F), new Vector2(563.252014F, -192.955994F)); + builder.AddCubicBezier(new Vector2(561.97998F, -192.955994F), new Vector2(560.822021F, -192.686005F), new Vector2(559.778015F, -192.145996F)); + builder.AddCubicBezier(new Vector2(558.734009F, -191.606003F), new Vector2(557.893982F, -190.862F), new Vector2(557.257996F, -189.914001F)); + builder.AddCubicBezier(new Vector2(556.622009F, -188.966003F), new Vector2(556.268005F, -187.867996F), new Vector2(556.195984F, -186.619995F)); + builder.AddLine(new Vector2(556.195984F, -181.472F)); + builder.AddCubicBezier(new Vector2(556.268005F, -180.248001F), new Vector2(556.616028F, -179.156006F), new Vector2(557.23999F, -178.195999F)); + builder.AddCubicBezier(new Vector2(557.864014F, -177.235992F), new Vector2(558.697998F, -176.485992F), new Vector2(559.742004F, -175.945999F)); + builder.AddCubicBezier(new Vector2(560.786011F, -175.406006F), new Vector2(561.955994F, -175.136002F), new Vector2(563.252014F, -175.136002F)); + builder.AddCubicBezier(new Vector2(564.812012F, -175.136002F), new Vector2(566.221985F, -175.526001F), new Vector2(567.481995F, -176.306F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1076() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(549.536011F, -175.496002F)); + builder.AddLine(new Vector2(549.536011F, -192.595993F)); + builder.AddLine(new Vector2(546.26001F, -192.595993F)); + builder.AddLine(new Vector2(546.26001F, -188.419998F)); + builder.AddLine(new Vector2(546.872009F, -184.279999F)); + builder.AddLine(new Vector2(546.26001F, -180.104004F)); + builder.AddLine(new Vector2(546.26001F, -175.496002F)); + builder.AddLine(new Vector2(549.536011F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(538.231995F, -178.951996F)); + builder.AddCubicBezier(new Vector2(537.392029F, -179.455994F), new Vector2(536.737976F, -180.145996F), new Vector2(536.27002F, -181.022003F)); + builder.AddCubicBezier(new Vector2(535.802002F, -181.897995F), new Vector2(535.567993F, -182.912003F), new Vector2(535.567993F, -184.063995F)); + builder.AddCubicBezier(new Vector2(535.567993F, -185.192001F), new Vector2(535.802002F, -186.194F), new Vector2(536.27002F, -187.070007F)); + builder.AddCubicBezier(new Vector2(536.737976F, -187.945999F), new Vector2(537.385986F, -188.636002F), new Vector2(538.213989F, -189.139999F)); + builder.AddCubicBezier(new Vector2(539.041992F, -189.643997F), new Vector2(539.995972F, -189.895996F), new Vector2(541.075989F, -189.895996F)); + builder.AddCubicBezier(new Vector2(542.156006F, -189.895996F), new Vector2(543.098022F, -189.649994F), new Vector2(543.901978F, -189.158005F)); + builder.AddCubicBezier(new Vector2(544.705994F, -188.666F), new Vector2(545.335999F, -187.975998F), new Vector2(545.791992F, -187.087997F)); + builder.AddCubicBezier(new Vector2(546.247986F, -186.199997F), new Vector2(546.476013F, -185.179993F), new Vector2(546.476013F, -184.028F)); + builder.AddCubicBezier(new Vector2(546.476013F, -182.324005F), new Vector2(545.984009F, -180.925995F), new Vector2(545F, -179.834F)); + builder.AddCubicBezier(new Vector2(544.015991F, -178.742004F), new Vector2(542.719971F, -178.195999F), new Vector2(541.112F, -178.195999F)); + builder.AddCubicBezier(new Vector2(540.031982F, -178.195999F), new Vector2(539.072021F, -178.447998F), new Vector2(538.231995F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(544.064026F, -175.945999F)); + builder.AddCubicBezier(new Vector2(545.096008F, -176.485992F), new Vector2(545.91803F, -177.235992F), new Vector2(546.530029F, -178.195999F)); + builder.AddCubicBezier(new Vector2(547.142029F, -179.156006F), new Vector2(547.484009F, -180.248001F), new Vector2(547.55603F, -181.472F)); + builder.AddLine(new Vector2(547.55603F, -186.619995F)); + builder.AddCubicBezier(new Vector2(547.484009F, -187.867996F), new Vector2(547.135986F, -188.966003F), new Vector2(546.512024F, -189.914001F)); + builder.AddCubicBezier(new Vector2(545.888F, -190.862F), new Vector2(545.065979F, -191.606003F), new Vector2(544.046021F, -192.145996F)); + builder.AddCubicBezier(new Vector2(543.026001F, -192.686005F), new Vector2(541.867981F, -192.955994F), new Vector2(540.572021F, -192.955994F)); + builder.AddCubicBezier(new Vector2(538.987976F, -192.955994F), new Vector2(537.565979F, -192.559998F), new Vector2(536.30603F, -191.768005F)); + builder.AddCubicBezier(new Vector2(535.046021F, -190.975998F), new Vector2(534.049988F, -189.908005F), new Vector2(533.317993F, -188.563995F)); + builder.AddCubicBezier(new Vector2(532.585999F, -187.220001F), new Vector2(532.219971F, -185.707993F), new Vector2(532.219971F, -184.028F)); + builder.AddCubicBezier(new Vector2(532.219971F, -182.348007F), new Vector2(532.585999F, -180.835999F), new Vector2(533.317993F, -179.492004F)); + builder.AddCubicBezier(new Vector2(534.049988F, -178.147995F), new Vector2(535.046021F, -177.085999F), new Vector2(536.30603F, -176.306F)); + builder.AddCubicBezier(new Vector2(537.565979F, -175.526001F), new Vector2(538.987976F, -175.136002F), new Vector2(540.572021F, -175.136002F)); + builder.AddCubicBezier(new Vector2(541.867981F, -175.136002F), new Vector2(543.031982F, -175.406006F), new Vector2(544.064026F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1077() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(531.031982F, -189.643997F)); + builder.AddLine(new Vector2(531.031982F, -192.595993F)); + builder.AddLine(new Vector2(518.143982F, -192.595993F)); + builder.AddLine(new Vector2(518.143982F, -189.643997F)); + builder.AddLine(new Vector2(531.031982F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(525.596008F, -175.496002F)); + builder.AddLine(new Vector2(525.596008F, -195.151993F)); + builder.AddCubicBezier(new Vector2(525.596008F, -196.207993F), new Vector2(525.877991F, -197.029999F), new Vector2(526.442017F, -197.617996F)); + builder.AddCubicBezier(new Vector2(527.005981F, -198.205994F), new Vector2(527.804016F, -198.5F), new Vector2(528.835999F, -198.5F)); + builder.AddCubicBezier(new Vector2(529.388F, -198.5F), new Vector2(529.856018F, -198.416F), new Vector2(530.23999F, -198.248001F)); + builder.AddCubicBezier(new Vector2(530.624023F, -198.080002F), new Vector2(530.971985F, -197.828003F), new Vector2(531.283997F, -197.492004F)); + builder.AddLine(new Vector2(533.40802F, -199.580002F)); + builder.AddCubicBezier(new Vector2(532.807983F, -200.227997F), new Vector2(532.14801F, -200.720001F), new Vector2(531.427979F, -201.056F)); + builder.AddCubicBezier(new Vector2(530.708008F, -201.391998F), new Vector2(529.856018F, -201.559998F), new Vector2(528.872009F, -201.559998F)); + builder.AddCubicBezier(new Vector2(527.575989F, -201.559998F), new Vector2(526.435974F, -201.283997F), new Vector2(525.452026F, -200.731995F)); + builder.AddCubicBezier(new Vector2(524.468018F, -200.179993F), new Vector2(523.700012F, -199.423996F), new Vector2(523.14801F, -198.464005F)); + builder.AddCubicBezier(new Vector2(522.596008F, -197.503998F), new Vector2(522.320007F, -196.399994F), new Vector2(522.320007F, -195.151993F)); + builder.AddLine(new Vector2(522.320007F, -175.496002F)); + builder.AddLine(new Vector2(525.596008F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1078() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(496.526001F, -179.546005F)); + builder.AddCubicBezier(new Vector2(495.697998F, -180.014008F), new Vector2(495.049988F, -180.667999F), new Vector2(494.582001F, -181.507996F)); + builder.AddCubicBezier(new Vector2(494.114014F, -182.348007F), new Vector2(493.880005F, -183.307999F), new Vector2(493.880005F, -184.388F)); + builder.AddCubicBezier(new Vector2(493.880005F, -185.468002F), new Vector2(494.114014F, -186.421997F), new Vector2(494.582001F, -187.25F)); + builder.AddCubicBezier(new Vector2(495.049988F, -188.078003F), new Vector2(495.691986F, -188.725998F), new Vector2(496.507996F, -189.194F)); + builder.AddCubicBezier(new Vector2(497.324005F, -189.662003F), new Vector2(498.272003F, -189.895996F), new Vector2(499.35199F, -189.895996F)); + builder.AddCubicBezier(new Vector2(500.40799F, -189.895996F), new Vector2(501.338013F, -189.662003F), new Vector2(502.141998F, -189.194F)); + builder.AddCubicBezier(new Vector2(502.946014F, -188.725998F), new Vector2(503.570007F, -188.078003F), new Vector2(504.014008F, -187.25F)); + builder.AddCubicBezier(new Vector2(504.458008F, -186.421997F), new Vector2(504.679993F, -185.455994F), new Vector2(504.679993F, -184.352005F)); + builder.AddCubicBezier(new Vector2(504.679993F, -183.248001F), new Vector2(504.458008F, -182.281998F), new Vector2(504.014008F, -181.453995F)); + builder.AddCubicBezier(new Vector2(503.570007F, -180.626007F), new Vector2(502.951996F, -179.983994F), new Vector2(502.160004F, -179.528F)); + builder.AddCubicBezier(new Vector2(501.368011F, -179.072006F), new Vector2(500.432007F, -178.843994F), new Vector2(499.35199F, -178.843994F)); + builder.AddCubicBezier(new Vector2(498.29599F, -178.843994F), new Vector2(497.354004F, -179.078003F), new Vector2(496.526001F, -179.546005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(502.268005F, -176.576004F)); + builder.AddCubicBezier(new Vector2(503.299988F, -177.104004F), new Vector2(504.122009F, -177.841995F), new Vector2(504.734009F, -178.789993F)); + builder.AddCubicBezier(new Vector2(505.346008F, -179.738007F), new Vector2(505.687988F, -180.835999F), new Vector2(505.76001F, -182.084F)); + builder.AddLine(new Vector2(505.76001F, -186.619995F)); + builder.AddCubicBezier(new Vector2(505.687988F, -187.891998F), new Vector2(505.35199F, -189.001999F), new Vector2(504.752014F, -189.949997F)); + builder.AddCubicBezier(new Vector2(504.152008F, -190.897995F), new Vector2(503.329987F, -191.636002F), new Vector2(502.286011F, -192.164001F)); + builder.AddCubicBezier(new Vector2(501.242004F, -192.692001F), new Vector2(500.048004F, -192.955994F), new Vector2(498.70401F, -192.955994F)); + builder.AddCubicBezier(new Vector2(497.167999F, -192.955994F), new Vector2(495.776001F, -192.578003F), new Vector2(494.528015F, -191.822006F)); + builder.AddCubicBezier(new Vector2(493.279999F, -191.065994F), new Vector2(492.302002F, -190.046005F), new Vector2(491.593994F, -188.761993F)); + builder.AddCubicBezier(new Vector2(490.885986F, -187.477997F), new Vector2(490.532013F, -186.020004F), new Vector2(490.532013F, -184.388F)); + builder.AddCubicBezier(new Vector2(490.532013F, -182.755997F), new Vector2(490.891998F, -181.285995F), new Vector2(491.612F, -179.977997F)); + builder.AddCubicBezier(new Vector2(492.332001F, -178.669998F), new Vector2(493.309998F, -177.643997F), new Vector2(494.54599F, -176.899994F)); + builder.AddCubicBezier(new Vector2(495.782013F, -176.156006F), new Vector2(497.179993F, -175.783997F), new Vector2(498.73999F, -175.783997F)); + builder.AddCubicBezier(new Vector2(500.059998F, -175.783997F), new Vector2(501.235992F, -176.048004F), new Vector2(502.268005F, -176.576004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(503.437988F, -168.998001F)); + builder.AddCubicBezier(new Vector2(504.794006F, -169.682007F), new Vector2(505.850006F, -170.641998F), new Vector2(506.605988F, -171.878006F)); + builder.AddCubicBezier(new Vector2(507.362F, -173.113998F), new Vector2(507.73999F, -174.548004F), new Vector2(507.73999F, -176.179993F)); + builder.AddLine(new Vector2(507.73999F, -192.595993F)); + builder.AddLine(new Vector2(504.5F, -192.595993F)); + builder.AddLine(new Vector2(504.5F, -188.095993F)); + builder.AddLine(new Vector2(505.075989F, -184.279999F)); + builder.AddLine(new Vector2(504.5F, -180.427994F)); + builder.AddLine(new Vector2(504.5F, -176.179993F)); + builder.AddCubicBezier(new Vector2(504.5F, -174.619995F), new Vector2(503.984009F, -173.378006F), new Vector2(502.951996F, -172.453995F)); + builder.AddCubicBezier(new Vector2(501.920013F, -171.529999F), new Vector2(500.540009F, -171.067993F), new Vector2(498.812012F, -171.067993F)); + builder.AddCubicBezier(new Vector2(497.492004F, -171.067993F), new Vector2(496.35199F, -171.302002F), new Vector2(495.391998F, -171.770004F)); + builder.AddCubicBezier(new Vector2(494.432007F, -172.238007F), new Vector2(493.604004F, -172.916F), new Vector2(492.90799F, -173.804001F)); + builder.AddLine(new Vector2(490.783997F, -171.679993F)); + builder.AddCubicBezier(new Vector2(491.623993F, -170.503998F), new Vector2(492.716003F, -169.591995F), new Vector2(494.059998F, -168.944F)); + builder.AddCubicBezier(new Vector2(495.403992F, -168.296005F), new Vector2(496.963989F, -167.972F), new Vector2(498.73999F, -167.972F)); + builder.AddCubicBezier(new Vector2(500.515991F, -167.972F), new Vector2(502.082001F, -168.313995F), new Vector2(503.437988F, -168.998001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1079() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(475.160004F, -175.496002F)); + builder.AddLine(new Vector2(475.160004F, -192.595993F)); + builder.AddLine(new Vector2(471.920013F, -192.595993F)); + builder.AddLine(new Vector2(471.920013F, -175.496002F)); + builder.AddLine(new Vector2(475.160004F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(487.256012F, -175.496002F)); + builder.AddLine(new Vector2(487.256012F, -186.115997F)); + builder.AddCubicBezier(new Vector2(487.256012F, -187.292007F), new Vector2(486.967987F, -188.401993F), new Vector2(486.391998F, -189.445999F)); + builder.AddCubicBezier(new Vector2(485.81601F, -190.490005F), new Vector2(485.029999F, -191.335999F), new Vector2(484.033997F, -191.983994F)); + builder.AddCubicBezier(new Vector2(483.037994F, -192.632004F), new Vector2(481.891998F, -192.955994F), new Vector2(480.596008F, -192.955994F)); + builder.AddCubicBezier(new Vector2(479.299988F, -192.955994F), new Vector2(478.135986F, -192.662003F), new Vector2(477.104004F, -192.074005F)); + builder.AddCubicBezier(new Vector2(476.071991F, -191.485992F), new Vector2(475.268005F, -190.688004F), new Vector2(474.691986F, -189.679993F)); + builder.AddCubicBezier(new Vector2(474.115997F, -188.671997F), new Vector2(473.828003F, -187.520004F), new Vector2(473.828003F, -186.223999F)); + builder.AddLine(new Vector2(475.160004F, -185.468002F)); + builder.AddCubicBezier(new Vector2(475.160004F, -186.332001F), new Vector2(475.35199F, -187.100006F), new Vector2(475.735992F, -187.772003F)); + builder.AddCubicBezier(new Vector2(476.119995F, -188.444F), new Vector2(476.64801F, -188.972F), new Vector2(477.320007F, -189.356003F)); + builder.AddCubicBezier(new Vector2(477.992004F, -189.740005F), new Vector2(478.76001F, -189.932007F), new Vector2(479.623993F, -189.932007F)); + builder.AddCubicBezier(new Vector2(480.920013F, -189.932007F), new Vector2(481.970001F, -189.511993F), new Vector2(482.773987F, -188.671997F)); + builder.AddCubicBezier(new Vector2(483.578003F, -187.832001F), new Vector2(483.980011F, -186.764008F), new Vector2(483.980011F, -185.468002F)); + builder.AddLine(new Vector2(483.980011F, -175.496002F)); + builder.AddLine(new Vector2(487.256012F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1080() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(466.988007F, -196.610001F)); + builder.AddCubicBezier(new Vector2(467.372009F, -197.005997F), new Vector2(467.563995F, -197.503998F), new Vector2(467.563995F, -198.104004F)); + builder.AddCubicBezier(new Vector2(467.563995F, -198.679993F), new Vector2(467.372009F, -199.166F), new Vector2(466.988007F, -199.561996F)); + builder.AddCubicBezier(new Vector2(466.604004F, -199.957993F), new Vector2(466.112F, -200.156006F), new Vector2(465.511993F, -200.156006F)); + builder.AddCubicBezier(new Vector2(464.911987F, -200.156006F), new Vector2(464.420013F, -199.957993F), new Vector2(464.036011F, -199.561996F)); + builder.AddCubicBezier(new Vector2(463.652008F, -199.166F), new Vector2(463.459991F, -198.679993F), new Vector2(463.459991F, -198.104004F)); + builder.AddCubicBezier(new Vector2(463.459991F, -197.503998F), new Vector2(463.652008F, -197.005997F), new Vector2(464.036011F, -196.610001F)); + builder.AddCubicBezier(new Vector2(464.420013F, -196.214005F), new Vector2(464.911987F, -196.016006F), new Vector2(465.511993F, -196.016006F)); + builder.AddCubicBezier(new Vector2(466.112F, -196.016006F), new Vector2(466.604004F, -196.214005F), new Vector2(466.988007F, -196.610001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(467.131989F, -175.496002F)); + builder.AddLine(new Vector2(467.131989F, -192.595993F)); + builder.AddLine(new Vector2(463.855988F, -192.595993F)); + builder.AddLine(new Vector2(463.855988F, -175.496002F)); + builder.AddLine(new Vector2(467.131989F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1081() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(449.81601F, -175.496002F)); + builder.AddLine(new Vector2(449.81601F, -201.199997F)); + builder.AddLine(new Vector2(446.575989F, -201.199997F)); + builder.AddLine(new Vector2(446.575989F, -175.496002F)); + builder.AddLine(new Vector2(449.81601F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(461.696014F, -175.496002F)); + builder.AddLine(new Vector2(452.696014F, -185.251999F)); + builder.AddLine(new Vector2(452.552002F, -183.380005F)); + builder.AddLine(new Vector2(461.372009F, -192.595993F)); + builder.AddLine(new Vector2(457.411987F, -192.595993F)); + builder.AddLine(new Vector2(449.528015F, -184.244003F)); + builder.AddLine(new Vector2(457.519989F, -175.496002F)); + builder.AddLine(new Vector2(461.696014F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1082() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(441.859985F, -175.496002F)); + builder.AddLine(new Vector2(441.859985F, -192.595993F)); + builder.AddLine(new Vector2(438.584015F, -192.595993F)); + builder.AddLine(new Vector2(438.584015F, -188.419998F)); + builder.AddLine(new Vector2(439.196014F, -184.279999F)); + builder.AddLine(new Vector2(438.584015F, -180.104004F)); + builder.AddLine(new Vector2(438.584015F, -175.496002F)); + builder.AddLine(new Vector2(441.859985F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(430.556F, -178.951996F)); + builder.AddCubicBezier(new Vector2(429.716003F, -179.455994F), new Vector2(429.062012F, -180.145996F), new Vector2(428.593994F, -181.022003F)); + builder.AddCubicBezier(new Vector2(428.126007F, -181.897995F), new Vector2(427.891998F, -182.912003F), new Vector2(427.891998F, -184.063995F)); + builder.AddCubicBezier(new Vector2(427.891998F, -185.192001F), new Vector2(428.126007F, -186.194F), new Vector2(428.593994F, -187.070007F)); + builder.AddCubicBezier(new Vector2(429.062012F, -187.945999F), new Vector2(429.709991F, -188.636002F), new Vector2(430.537994F, -189.139999F)); + builder.AddCubicBezier(new Vector2(431.365997F, -189.643997F), new Vector2(432.320007F, -189.895996F), new Vector2(433.399994F, -189.895996F)); + builder.AddCubicBezier(new Vector2(434.480011F, -189.895996F), new Vector2(435.421997F, -189.649994F), new Vector2(436.226013F, -189.158005F)); + builder.AddCubicBezier(new Vector2(437.029999F, -188.666F), new Vector2(437.660004F, -187.975998F), new Vector2(438.115997F, -187.087997F)); + builder.AddCubicBezier(new Vector2(438.571991F, -186.199997F), new Vector2(438.799988F, -185.179993F), new Vector2(438.799988F, -184.028F)); + builder.AddCubicBezier(new Vector2(438.799988F, -182.324005F), new Vector2(438.308014F, -180.925995F), new Vector2(437.324005F, -179.834F)); + builder.AddCubicBezier(new Vector2(436.339996F, -178.742004F), new Vector2(435.044006F, -178.195999F), new Vector2(433.436005F, -178.195999F)); + builder.AddCubicBezier(new Vector2(432.355988F, -178.195999F), new Vector2(431.395996F, -178.447998F), new Vector2(430.556F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(436.388F, -175.945999F)); + builder.AddCubicBezier(new Vector2(437.420013F, -176.485992F), new Vector2(438.242004F, -177.235992F), new Vector2(438.854004F, -178.195999F)); + builder.AddCubicBezier(new Vector2(439.466003F, -179.156006F), new Vector2(439.808014F, -180.248001F), new Vector2(439.880005F, -181.472F)); + builder.AddLine(new Vector2(439.880005F, -186.619995F)); + builder.AddCubicBezier(new Vector2(439.808014F, -187.867996F), new Vector2(439.459991F, -188.966003F), new Vector2(438.835999F, -189.914001F)); + builder.AddCubicBezier(new Vector2(438.212006F, -190.862F), new Vector2(437.390015F, -191.606003F), new Vector2(436.369995F, -192.145996F)); + builder.AddCubicBezier(new Vector2(435.350006F, -192.686005F), new Vector2(434.191986F, -192.955994F), new Vector2(432.895996F, -192.955994F)); + builder.AddCubicBezier(new Vector2(431.312012F, -192.955994F), new Vector2(429.890015F, -192.559998F), new Vector2(428.630005F, -191.768005F)); + builder.AddCubicBezier(new Vector2(427.369995F, -190.975998F), new Vector2(426.373993F, -189.908005F), new Vector2(425.641998F, -188.563995F)); + builder.AddCubicBezier(new Vector2(424.910004F, -187.220001F), new Vector2(424.544006F, -185.707993F), new Vector2(424.544006F, -184.028F)); + builder.AddCubicBezier(new Vector2(424.544006F, -182.348007F), new Vector2(424.910004F, -180.835999F), new Vector2(425.641998F, -179.492004F)); + builder.AddCubicBezier(new Vector2(426.373993F, -178.147995F), new Vector2(427.369995F, -177.085999F), new Vector2(428.630005F, -176.306F)); + builder.AddCubicBezier(new Vector2(429.890015F, -175.526001F), new Vector2(431.312012F, -175.136002F), new Vector2(432.895996F, -175.136002F)); + builder.AddCubicBezier(new Vector2(434.191986F, -175.136002F), new Vector2(435.355988F, -175.406006F), new Vector2(436.388F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1083() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(421.231995F, -175.496002F)); + builder.AddLine(new Vector2(421.231995F, -186.475998F)); + builder.AddCubicBezier(new Vector2(421.231995F, -187.820007F), new Vector2(420.937988F, -188.972F), new Vector2(420.350006F, -189.932007F)); + builder.AddCubicBezier(new Vector2(419.761993F, -190.891998F), new Vector2(418.976013F, -191.636002F), new Vector2(417.992004F, -192.164001F)); + builder.AddCubicBezier(new Vector2(417.007996F, -192.692001F), new Vector2(415.891998F, -192.955994F), new Vector2(414.644012F, -192.955994F)); + builder.AddCubicBezier(new Vector2(413.444F, -192.955994F), new Vector2(412.339996F, -192.686005F), new Vector2(411.332001F, -192.145996F)); + builder.AddCubicBezier(new Vector2(410.324005F, -191.606003F), new Vector2(409.502014F, -190.862F), new Vector2(408.865997F, -189.914001F)); + builder.AddCubicBezier(new Vector2(408.230011F, -188.966003F), new Vector2(407.876007F, -187.832001F), new Vector2(407.803986F, -186.511993F)); + builder.AddLine(new Vector2(409.640015F, -185.828003F)); + builder.AddCubicBezier(new Vector2(409.640015F, -186.692001F), new Vector2(409.832001F, -187.423996F), new Vector2(410.216003F, -188.024002F)); + builder.AddCubicBezier(new Vector2(410.600006F, -188.623993F), new Vector2(411.109985F, -189.091995F), new Vector2(411.746002F, -189.427994F)); + builder.AddCubicBezier(new Vector2(412.381989F, -189.764008F), new Vector2(413.096008F, -189.932007F), new Vector2(413.888F, -189.932007F)); + builder.AddCubicBezier(new Vector2(415.040009F, -189.932007F), new Vector2(416.006012F, -189.565994F), new Vector2(416.786011F, -188.834F)); + builder.AddCubicBezier(new Vector2(417.56601F, -188.102005F), new Vector2(417.955994F, -187.100006F), new Vector2(417.955994F, -185.828003F)); + builder.AddLine(new Vector2(417.955994F, -175.496002F)); + builder.AddLine(new Vector2(421.231995F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(409.640015F, -175.496002F)); + builder.AddLine(new Vector2(409.640015F, -186.511993F)); + builder.AddCubicBezier(new Vector2(409.640015F, -187.832001F), new Vector2(409.358002F, -188.972F), new Vector2(408.794006F, -189.932007F)); + builder.AddCubicBezier(new Vector2(408.230011F, -190.891998F), new Vector2(407.462006F, -191.636002F), new Vector2(406.48999F, -192.164001F)); + builder.AddCubicBezier(new Vector2(405.518005F, -192.692001F), new Vector2(404.432007F, -192.955994F), new Vector2(403.231995F, -192.955994F)); + builder.AddCubicBezier(new Vector2(402.007996F, -192.955994F), new Vector2(400.903992F, -192.686005F), new Vector2(399.920013F, -192.145996F)); + builder.AddCubicBezier(new Vector2(398.936005F, -191.606003F), new Vector2(398.161987F, -190.856003F), new Vector2(397.597992F, -189.895996F)); + builder.AddCubicBezier(new Vector2(397.033997F, -188.936005F), new Vector2(396.752014F, -187.807999F), new Vector2(396.752014F, -186.511993F)); + builder.AddLine(new Vector2(398.084015F, -185.828003F)); + builder.AddCubicBezier(new Vector2(398.084015F, -186.692001F), new Vector2(398.276001F, -187.423996F), new Vector2(398.660004F, -188.024002F)); + builder.AddCubicBezier(new Vector2(399.044006F, -188.623993F), new Vector2(399.548004F, -189.091995F), new Vector2(400.171997F, -189.427994F)); + builder.AddCubicBezier(new Vector2(400.79599F, -189.764008F), new Vector2(401.503998F, -189.932007F), new Vector2(402.29599F, -189.932007F)); + builder.AddCubicBezier(new Vector2(403.471985F, -189.932007F), new Vector2(404.450012F, -189.565994F), new Vector2(405.230011F, -188.834F)); + builder.AddCubicBezier(new Vector2(406.01001F, -188.102005F), new Vector2(406.399994F, -187.100006F), new Vector2(406.399994F, -185.828003F)); + builder.AddLine(new Vector2(406.399994F, -175.496002F)); + builder.AddLine(new Vector2(409.640015F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(398.084015F, -175.496002F)); + builder.AddLine(new Vector2(398.084015F, -192.595993F)); + builder.AddLine(new Vector2(394.843994F, -192.595993F)); + builder.AddLine(new Vector2(394.843994F, -175.496002F)); + builder.AddLine(new Vector2(398.084015F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1084() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(373.208008F, -168.332001F)); + builder.AddLine(new Vector2(376.447998F, -175.352005F)); + builder.AddLine(new Vector2(374.612F, -178.664001F)); + builder.AddLine(new Vector2(369.608002F, -168.332001F)); + builder.AddLine(new Vector2(373.208008F, -168.332001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(376.447998F, -175.352005F)); + builder.AddLine(new Vector2(384.440002F, -192.595993F)); + builder.AddLine(new Vector2(380.839996F, -192.595993F)); + builder.AddLine(new Vector2(375.044006F, -179.095993F)); + builder.AddLine(new Vector2(376.196014F, -179.095993F)); + builder.AddLine(new Vector2(370.687988F, -192.595993F)); + builder.AddLine(new Vector2(367.088013F, -192.595993F)); + builder.AddLine(new Vector2(374.503998F, -175.352005F)); + builder.AddLine(new Vector2(376.447998F, -175.352005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1085() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(354.217987F, -178.951996F)); + builder.AddCubicBezier(new Vector2(353.390015F, -179.455994F), new Vector2(352.753998F, -180.145996F), new Vector2(352.309998F, -181.022003F)); + builder.AddCubicBezier(new Vector2(351.865997F, -181.897995F), new Vector2(351.644012F, -182.899994F), new Vector2(351.644012F, -184.028F)); + builder.AddCubicBezier(new Vector2(351.644012F, -185.179993F), new Vector2(351.872009F, -186.194F), new Vector2(352.328003F, -187.070007F)); + builder.AddCubicBezier(new Vector2(352.783997F, -187.945999F), new Vector2(353.420013F, -188.636002F), new Vector2(354.235992F, -189.139999F)); + builder.AddCubicBezier(new Vector2(355.052002F, -189.643997F), new Vector2(355.988007F, -189.895996F), new Vector2(357.044006F, -189.895996F)); + builder.AddCubicBezier(new Vector2(358.123993F, -189.895996F), new Vector2(359.071991F, -189.643997F), new Vector2(359.888F, -189.139999F)); + builder.AddCubicBezier(new Vector2(360.70401F, -188.636002F), new Vector2(361.346008F, -187.945999F), new Vector2(361.813995F, -187.070007F)); + builder.AddCubicBezier(new Vector2(362.282013F, -186.194F), new Vector2(362.515991F, -185.192001F), new Vector2(362.515991F, -184.063995F)); + builder.AddCubicBezier(new Vector2(362.515991F, -182.912003F), new Vector2(362.282013F, -181.897995F), new Vector2(361.813995F, -181.022003F)); + builder.AddCubicBezier(new Vector2(361.346008F, -180.145996F), new Vector2(360.70401F, -179.455994F), new Vector2(359.888F, -178.951996F)); + builder.AddCubicBezier(new Vector2(359.071991F, -178.447998F), new Vector2(358.123993F, -178.195999F), new Vector2(357.044006F, -178.195999F)); + builder.AddCubicBezier(new Vector2(355.988007F, -178.195999F), new Vector2(355.04599F, -178.447998F), new Vector2(354.217987F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(351.824005F, -175.496002F)); + builder.AddLine(new Vector2(351.824005F, -180.104004F)); + builder.AddLine(new Vector2(351.212006F, -184.279999F)); + builder.AddLine(new Vector2(351.824005F, -188.419998F)); + builder.AddLine(new Vector2(351.824005F, -201.199997F)); + builder.AddLine(new Vector2(348.584015F, -201.199997F)); + builder.AddLine(new Vector2(348.584015F, -175.496002F)); + builder.AddLine(new Vector2(351.824005F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(361.813995F, -176.306F)); + builder.AddCubicBezier(new Vector2(363.074005F, -177.085999F), new Vector2(364.063995F, -178.147995F), new Vector2(364.783997F, -179.492004F)); + builder.AddCubicBezier(new Vector2(365.503998F, -180.835999F), new Vector2(365.864014F, -182.348007F), new Vector2(365.864014F, -184.028F)); + builder.AddCubicBezier(new Vector2(365.864014F, -185.707993F), new Vector2(365.503998F, -187.220001F), new Vector2(364.783997F, -188.563995F)); + builder.AddCubicBezier(new Vector2(364.063995F, -189.908005F), new Vector2(363.074005F, -190.975998F), new Vector2(361.813995F, -191.768005F)); + builder.AddCubicBezier(new Vector2(360.553986F, -192.559998F), new Vector2(359.144012F, -192.955994F), new Vector2(357.584015F, -192.955994F)); + builder.AddCubicBezier(new Vector2(356.312012F, -192.955994F), new Vector2(355.153992F, -192.686005F), new Vector2(354.109985F, -192.145996F)); + builder.AddCubicBezier(new Vector2(353.06601F, -191.606003F), new Vector2(352.226013F, -190.862F), new Vector2(351.589996F, -189.914001F)); + builder.AddCubicBezier(new Vector2(350.95401F, -188.966003F), new Vector2(350.600006F, -187.867996F), new Vector2(350.528015F, -186.619995F)); + builder.AddLine(new Vector2(350.528015F, -181.472F)); + builder.AddCubicBezier(new Vector2(350.600006F, -180.248001F), new Vector2(350.947998F, -179.156006F), new Vector2(351.571991F, -178.195999F)); + builder.AddCubicBezier(new Vector2(352.196014F, -177.235992F), new Vector2(353.029999F, -176.485992F), new Vector2(354.074005F, -175.945999F)); + builder.AddCubicBezier(new Vector2(355.118011F, -175.406006F), new Vector2(356.287994F, -175.136002F), new Vector2(357.584015F, -175.136002F)); + builder.AddCubicBezier(new Vector2(359.144012F, -175.136002F), new Vector2(360.553986F, -175.526001F), new Vector2(361.813995F, -176.306F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1086() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(320.899994F, -175.496002F)); + builder.AddLine(new Vector2(325.868011F, -188.384003F)); + builder.AddLine(new Vector2(324.679993F, -188.384003F)); + builder.AddLine(new Vector2(329.612F, -175.496002F)); + builder.AddLine(new Vector2(331.519989F, -175.496002F)); + builder.AddLine(new Vector2(338.252014F, -192.595993F)); + builder.AddLine(new Vector2(334.868011F, -192.595993F)); + builder.AddLine(new Vector2(329.971985F, -179.276001F)); + builder.AddLine(new Vector2(331.052002F, -179.276001F)); + builder.AddLine(new Vector2(326.191986F, -192.595993F)); + builder.AddLine(new Vector2(324.320007F, -192.595993F)); + builder.AddLine(new Vector2(319.459991F, -179.276001F)); + builder.AddLine(new Vector2(320.540009F, -179.276001F)); + builder.AddLine(new Vector2(315.644012F, -192.595993F)); + builder.AddLine(new Vector2(312.26001F, -192.595993F)); + builder.AddLine(new Vector2(318.992004F, -175.496002F)); + builder.AddLine(new Vector2(320.899994F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1087() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(309.488007F, -175.496002F)); + builder.AddLine(new Vector2(309.488007F, -192.595993F)); + builder.AddLine(new Vector2(306.212006F, -192.595993F)); + builder.AddLine(new Vector2(306.212006F, -188.419998F)); + builder.AddLine(new Vector2(306.824005F, -184.279999F)); + builder.AddLine(new Vector2(306.212006F, -180.104004F)); + builder.AddLine(new Vector2(306.212006F, -175.496002F)); + builder.AddLine(new Vector2(309.488007F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(298.18399F, -178.951996F)); + builder.AddCubicBezier(new Vector2(297.343994F, -179.455994F), new Vector2(296.690002F, -180.145996F), new Vector2(296.221985F, -181.022003F)); + builder.AddCubicBezier(new Vector2(295.753998F, -181.897995F), new Vector2(295.519989F, -182.912003F), new Vector2(295.519989F, -184.063995F)); + builder.AddCubicBezier(new Vector2(295.519989F, -185.192001F), new Vector2(295.753998F, -186.194F), new Vector2(296.221985F, -187.070007F)); + builder.AddCubicBezier(new Vector2(296.690002F, -187.945999F), new Vector2(297.338013F, -188.636002F), new Vector2(298.165985F, -189.139999F)); + builder.AddCubicBezier(new Vector2(298.993988F, -189.643997F), new Vector2(299.947998F, -189.895996F), new Vector2(301.028015F, -189.895996F)); + builder.AddCubicBezier(new Vector2(302.108002F, -189.895996F), new Vector2(303.049988F, -189.649994F), new Vector2(303.854004F, -189.158005F)); + builder.AddCubicBezier(new Vector2(304.65799F, -188.666F), new Vector2(305.287994F, -187.975998F), new Vector2(305.743988F, -187.087997F)); + builder.AddCubicBezier(new Vector2(306.200012F, -186.199997F), new Vector2(306.428009F, -185.179993F), new Vector2(306.428009F, -184.028F)); + builder.AddCubicBezier(new Vector2(306.428009F, -182.324005F), new Vector2(305.936005F, -180.925995F), new Vector2(304.951996F, -179.834F)); + builder.AddCubicBezier(new Vector2(303.967987F, -178.742004F), new Vector2(302.671997F, -178.195999F), new Vector2(301.063995F, -178.195999F)); + builder.AddCubicBezier(new Vector2(299.984009F, -178.195999F), new Vector2(299.023987F, -178.447998F), new Vector2(298.18399F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(304.015991F, -175.945999F)); + builder.AddCubicBezier(new Vector2(305.048004F, -176.485992F), new Vector2(305.869995F, -177.235992F), new Vector2(306.481995F, -178.195999F)); + builder.AddCubicBezier(new Vector2(307.093994F, -179.156006F), new Vector2(307.436005F, -180.248001F), new Vector2(307.507996F, -181.472F)); + builder.AddLine(new Vector2(307.507996F, -186.619995F)); + builder.AddCubicBezier(new Vector2(307.436005F, -187.867996F), new Vector2(307.088013F, -188.966003F), new Vector2(306.463989F, -189.914001F)); + builder.AddCubicBezier(new Vector2(305.839996F, -190.862F), new Vector2(305.018005F, -191.606003F), new Vector2(303.997986F, -192.145996F)); + builder.AddCubicBezier(new Vector2(302.977997F, -192.686005F), new Vector2(301.820007F, -192.955994F), new Vector2(300.523987F, -192.955994F)); + builder.AddCubicBezier(new Vector2(298.940002F, -192.955994F), new Vector2(297.518005F, -192.559998F), new Vector2(296.257996F, -191.768005F)); + builder.AddCubicBezier(new Vector2(294.997986F, -190.975998F), new Vector2(294.002014F, -189.908005F), new Vector2(293.269989F, -188.563995F)); + builder.AddCubicBezier(new Vector2(292.537994F, -187.220001F), new Vector2(292.171997F, -185.707993F), new Vector2(292.171997F, -184.028F)); + builder.AddCubicBezier(new Vector2(292.171997F, -182.348007F), new Vector2(292.537994F, -180.835999F), new Vector2(293.269989F, -179.492004F)); + builder.AddCubicBezier(new Vector2(294.002014F, -178.147995F), new Vector2(294.997986F, -177.085999F), new Vector2(296.257996F, -176.306F)); + builder.AddCubicBezier(new Vector2(297.518005F, -175.526001F), new Vector2(298.940002F, -175.136002F), new Vector2(300.523987F, -175.136002F)); + builder.AddCubicBezier(new Vector2(301.820007F, -175.136002F), new Vector2(302.984009F, -175.406006F), new Vector2(304.015991F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1088() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(288.5F, -175.496002F)); + builder.AddLine(new Vector2(288.5F, -201.199997F)); + builder.AddLine(new Vector2(285.26001F, -201.199997F)); + builder.AddLine(new Vector2(285.26001F, -175.496002F)); + builder.AddLine(new Vector2(288.5F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1089() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(273.056F, -175.496002F)); + builder.AddLine(new Vector2(273.056F, -201.199997F)); + builder.AddLine(new Vector2(269.81601F, -201.199997F)); + builder.AddLine(new Vector2(269.81601F, -175.496002F)); + builder.AddLine(new Vector2(273.056F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1090() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(265.100006F, -175.496002F)); + builder.AddLine(new Vector2(265.100006F, -192.595993F)); + builder.AddLine(new Vector2(261.824005F, -192.595993F)); + builder.AddLine(new Vector2(261.824005F, -188.419998F)); + builder.AddLine(new Vector2(262.436005F, -184.279999F)); + builder.AddLine(new Vector2(261.824005F, -180.104004F)); + builder.AddLine(new Vector2(261.824005F, -175.496002F)); + builder.AddLine(new Vector2(265.100006F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(253.796005F, -178.951996F)); + builder.AddCubicBezier(new Vector2(252.955994F, -179.455994F), new Vector2(252.302002F, -180.145996F), new Vector2(251.834F, -181.022003F)); + builder.AddCubicBezier(new Vector2(251.365997F, -181.897995F), new Vector2(251.132004F, -182.912003F), new Vector2(251.132004F, -184.063995F)); + builder.AddCubicBezier(new Vector2(251.132004F, -185.192001F), new Vector2(251.365997F, -186.194F), new Vector2(251.834F, -187.070007F)); + builder.AddCubicBezier(new Vector2(252.302002F, -187.945999F), new Vector2(252.949997F, -188.636002F), new Vector2(253.778F, -189.139999F)); + builder.AddCubicBezier(new Vector2(254.606003F, -189.643997F), new Vector2(255.559998F, -189.895996F), new Vector2(256.640015F, -189.895996F)); + builder.AddCubicBezier(new Vector2(257.720001F, -189.895996F), new Vector2(258.661987F, -189.649994F), new Vector2(259.466003F, -189.158005F)); + builder.AddCubicBezier(new Vector2(260.269989F, -188.666F), new Vector2(260.899994F, -187.975998F), new Vector2(261.355988F, -187.087997F)); + builder.AddCubicBezier(new Vector2(261.812012F, -186.199997F), new Vector2(262.040009F, -185.179993F), new Vector2(262.040009F, -184.028F)); + builder.AddCubicBezier(new Vector2(262.040009F, -182.324005F), new Vector2(261.548004F, -180.925995F), new Vector2(260.563995F, -179.834F)); + builder.AddCubicBezier(new Vector2(259.579987F, -178.742004F), new Vector2(258.283997F, -178.195999F), new Vector2(256.675995F, -178.195999F)); + builder.AddCubicBezier(new Vector2(255.595993F, -178.195999F), new Vector2(254.636002F, -178.447998F), new Vector2(253.796005F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(259.627991F, -175.945999F)); + builder.AddCubicBezier(new Vector2(260.660004F, -176.485992F), new Vector2(261.481995F, -177.235992F), new Vector2(262.093994F, -178.195999F)); + builder.AddCubicBezier(new Vector2(262.705994F, -179.156006F), new Vector2(263.048004F, -180.248001F), new Vector2(263.119995F, -181.472F)); + builder.AddLine(new Vector2(263.119995F, -186.619995F)); + builder.AddCubicBezier(new Vector2(263.048004F, -187.867996F), new Vector2(262.700012F, -188.966003F), new Vector2(262.075989F, -189.914001F)); + builder.AddCubicBezier(new Vector2(261.451996F, -190.862F), new Vector2(260.630005F, -191.606003F), new Vector2(259.609985F, -192.145996F)); + builder.AddCubicBezier(new Vector2(258.589996F, -192.686005F), new Vector2(257.432007F, -192.955994F), new Vector2(256.135986F, -192.955994F)); + builder.AddCubicBezier(new Vector2(254.552002F, -192.955994F), new Vector2(253.130005F, -192.559998F), new Vector2(251.869995F, -191.768005F)); + builder.AddCubicBezier(new Vector2(250.610001F, -190.975998F), new Vector2(249.613998F, -189.908005F), new Vector2(248.882004F, -188.563995F)); + builder.AddCubicBezier(new Vector2(248.149994F, -187.220001F), new Vector2(247.783997F, -185.707993F), new Vector2(247.783997F, -184.028F)); + builder.AddCubicBezier(new Vector2(247.783997F, -182.348007F), new Vector2(248.149994F, -180.835999F), new Vector2(248.882004F, -179.492004F)); + builder.AddCubicBezier(new Vector2(249.613998F, -178.147995F), new Vector2(250.610001F, -177.085999F), new Vector2(251.869995F, -176.306F)); + builder.AddCubicBezier(new Vector2(253.130005F, -175.526001F), new Vector2(254.552002F, -175.136002F), new Vector2(256.135986F, -175.136002F)); + builder.AddCubicBezier(new Vector2(257.432007F, -175.136002F), new Vector2(258.596008F, -175.406006F), new Vector2(259.627991F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1091() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(243.932007F, -196.610001F)); + builder.AddCubicBezier(new Vector2(244.315994F, -197.005997F), new Vector2(244.507996F, -197.503998F), new Vector2(244.507996F, -198.104004F)); + builder.AddCubicBezier(new Vector2(244.507996F, -198.679993F), new Vector2(244.315994F, -199.166F), new Vector2(243.932007F, -199.561996F)); + builder.AddCubicBezier(new Vector2(243.548004F, -199.957993F), new Vector2(243.056F, -200.156006F), new Vector2(242.455994F, -200.156006F)); + builder.AddCubicBezier(new Vector2(241.856003F, -200.156006F), new Vector2(241.363998F, -199.957993F), new Vector2(240.979996F, -199.561996F)); + builder.AddCubicBezier(new Vector2(240.595993F, -199.166F), new Vector2(240.404007F, -198.679993F), new Vector2(240.404007F, -198.104004F)); + builder.AddCubicBezier(new Vector2(240.404007F, -197.503998F), new Vector2(240.595993F, -197.005997F), new Vector2(240.979996F, -196.610001F)); + builder.AddCubicBezier(new Vector2(241.363998F, -196.214005F), new Vector2(241.856003F, -196.016006F), new Vector2(242.455994F, -196.016006F)); + builder.AddCubicBezier(new Vector2(243.056F, -196.016006F), new Vector2(243.548004F, -196.214005F), new Vector2(243.932007F, -196.610001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(244.076004F, -175.496002F)); + builder.AddLine(new Vector2(244.076004F, -192.595993F)); + builder.AddLine(new Vector2(240.800003F, -192.595993F)); + builder.AddLine(new Vector2(240.800003F, -175.496002F)); + builder.AddLine(new Vector2(244.076004F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1092() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(237.632004F, -189.643997F)); + builder.AddLine(new Vector2(237.632004F, -192.595993F)); + builder.AddLine(new Vector2(225.968002F, -192.595993F)); + builder.AddLine(new Vector2(225.968002F, -189.643997F)); + builder.AddLine(new Vector2(237.632004F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(233.419998F, -175.496002F)); + builder.AddLine(new Vector2(233.419998F, -199.759995F)); + builder.AddLine(new Vector2(230.179993F, -199.759995F)); + builder.AddLine(new Vector2(230.179993F, -175.496002F)); + builder.AddLine(new Vector2(233.419998F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1093() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(217.544006F, -188.744003F)); + builder.AddCubicBezier(new Vector2(218.311996F, -189.511993F), new Vector2(219.296005F, -189.895996F), new Vector2(220.496002F, -189.895996F)); + builder.AddCubicBezier(new Vector2(221.072006F, -189.895996F), new Vector2(221.576004F, -189.811996F), new Vector2(222.007996F, -189.643997F)); + builder.AddCubicBezier(new Vector2(222.440002F, -189.475998F), new Vector2(222.835999F, -189.199997F), new Vector2(223.195999F, -188.815994F)); + builder.AddLine(new Vector2(225.320007F, -191.011993F)); + builder.AddCubicBezier(new Vector2(224.720001F, -191.707993F), new Vector2(224.072006F, -192.205994F), new Vector2(223.376007F, -192.505997F)); + builder.AddCubicBezier(new Vector2(222.679993F, -192.806F), new Vector2(221.899994F, -192.955994F), new Vector2(221.035995F, -192.955994F)); + builder.AddCubicBezier(new Vector2(219.139999F, -192.955994F), new Vector2(217.688004F, -192.307999F), new Vector2(216.679993F, -191.011993F)); + builder.AddCubicBezier(new Vector2(215.671997F, -189.716003F), new Vector2(215.167999F, -187.975998F), new Vector2(215.167999F, -185.792007F)); + builder.AddLine(new Vector2(216.391998F, -185.216003F)); + builder.AddCubicBezier(new Vector2(216.391998F, -186.800003F), new Vector2(216.776001F, -187.975998F), new Vector2(217.544006F, -188.744003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(216.391998F, -175.496002F)); + builder.AddLine(new Vector2(216.391998F, -192.595993F)); + builder.AddLine(new Vector2(213.151993F, -192.595993F)); + builder.AddLine(new Vector2(213.151993F, -175.496002F)); + builder.AddLine(new Vector2(216.391998F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1094() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(208.436005F, -175.496002F)); + builder.AddLine(new Vector2(208.436005F, -192.595993F)); + builder.AddLine(new Vector2(205.160004F, -192.595993F)); + builder.AddLine(new Vector2(205.160004F, -188.419998F)); + builder.AddLine(new Vector2(205.772003F, -184.279999F)); + builder.AddLine(new Vector2(205.160004F, -180.104004F)); + builder.AddLine(new Vector2(205.160004F, -175.496002F)); + builder.AddLine(new Vector2(208.436005F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(197.132004F, -178.951996F)); + builder.AddCubicBezier(new Vector2(196.292007F, -179.455994F), new Vector2(195.638F, -180.145996F), new Vector2(195.169998F, -181.022003F)); + builder.AddCubicBezier(new Vector2(194.701996F, -181.897995F), new Vector2(194.468002F, -182.912003F), new Vector2(194.468002F, -184.063995F)); + builder.AddCubicBezier(new Vector2(194.468002F, -185.192001F), new Vector2(194.701996F, -186.194F), new Vector2(195.169998F, -187.070007F)); + builder.AddCubicBezier(new Vector2(195.638F, -187.945999F), new Vector2(196.285995F, -188.636002F), new Vector2(197.113998F, -189.139999F)); + builder.AddCubicBezier(new Vector2(197.942001F, -189.643997F), new Vector2(198.895996F, -189.895996F), new Vector2(199.975998F, -189.895996F)); + builder.AddCubicBezier(new Vector2(201.056F, -189.895996F), new Vector2(201.998001F, -189.649994F), new Vector2(202.802002F, -189.158005F)); + builder.AddCubicBezier(new Vector2(203.606003F, -188.666F), new Vector2(204.235992F, -187.975998F), new Vector2(204.692001F, -187.087997F)); + builder.AddCubicBezier(new Vector2(205.147995F, -186.199997F), new Vector2(205.376007F, -185.179993F), new Vector2(205.376007F, -184.028F)); + builder.AddCubicBezier(new Vector2(205.376007F, -182.324005F), new Vector2(204.884003F, -180.925995F), new Vector2(203.899994F, -179.834F)); + builder.AddCubicBezier(new Vector2(202.916F, -178.742004F), new Vector2(201.619995F, -178.195999F), new Vector2(200.011993F, -178.195999F)); + builder.AddCubicBezier(new Vector2(198.932007F, -178.195999F), new Vector2(197.972F, -178.447998F), new Vector2(197.132004F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(202.964005F, -175.945999F)); + builder.AddCubicBezier(new Vector2(203.996002F, -176.485992F), new Vector2(204.817993F, -177.235992F), new Vector2(205.429993F, -178.195999F)); + builder.AddCubicBezier(new Vector2(206.042007F, -179.156006F), new Vector2(206.384003F, -180.248001F), new Vector2(206.455994F, -181.472F)); + builder.AddLine(new Vector2(206.455994F, -186.619995F)); + builder.AddCubicBezier(new Vector2(206.384003F, -187.867996F), new Vector2(206.035995F, -188.966003F), new Vector2(205.412003F, -189.914001F)); + builder.AddCubicBezier(new Vector2(204.787994F, -190.862F), new Vector2(203.966003F, -191.606003F), new Vector2(202.945999F, -192.145996F)); + builder.AddCubicBezier(new Vector2(201.925995F, -192.686005F), new Vector2(200.768005F, -192.955994F), new Vector2(199.472F, -192.955994F)); + builder.AddCubicBezier(new Vector2(197.888F, -192.955994F), new Vector2(196.466003F, -192.559998F), new Vector2(195.205994F, -191.768005F)); + builder.AddCubicBezier(new Vector2(193.945999F, -190.975998F), new Vector2(192.949997F, -189.908005F), new Vector2(192.218002F, -188.563995F)); + builder.AddCubicBezier(new Vector2(191.485992F, -187.220001F), new Vector2(191.119995F, -185.707993F), new Vector2(191.119995F, -184.028F)); + builder.AddCubicBezier(new Vector2(191.119995F, -182.348007F), new Vector2(191.485992F, -180.835999F), new Vector2(192.218002F, -179.492004F)); + builder.AddCubicBezier(new Vector2(192.949997F, -178.147995F), new Vector2(193.945999F, -177.085999F), new Vector2(195.205994F, -176.306F)); + builder.AddCubicBezier(new Vector2(196.466003F, -175.526001F), new Vector2(197.888F, -175.136002F), new Vector2(199.472F, -175.136002F)); + builder.AddCubicBezier(new Vector2(200.768005F, -175.136002F), new Vector2(201.932007F, -175.406006F), new Vector2(202.964005F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1095() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(187.807999F, -175.496002F)); + builder.AddLine(new Vector2(187.807999F, -186.475998F)); + builder.AddCubicBezier(new Vector2(187.807999F, -187.820007F), new Vector2(187.514008F, -188.972F), new Vector2(186.925995F, -189.932007F)); + builder.AddCubicBezier(new Vector2(186.337997F, -190.891998F), new Vector2(185.552002F, -191.636002F), new Vector2(184.567993F, -192.164001F)); + builder.AddCubicBezier(new Vector2(183.584F, -192.692001F), new Vector2(182.468002F, -192.955994F), new Vector2(181.220001F, -192.955994F)); + builder.AddCubicBezier(new Vector2(180.020004F, -192.955994F), new Vector2(178.916F, -192.686005F), new Vector2(177.908005F, -192.145996F)); + builder.AddCubicBezier(new Vector2(176.899994F, -191.606003F), new Vector2(176.078003F, -190.862F), new Vector2(175.442001F, -189.914001F)); + builder.AddCubicBezier(new Vector2(174.806F, -188.966003F), new Vector2(174.451996F, -187.832001F), new Vector2(174.380005F, -186.511993F)); + builder.AddLine(new Vector2(176.216003F, -185.828003F)); + builder.AddCubicBezier(new Vector2(176.216003F, -186.692001F), new Vector2(176.408005F, -187.423996F), new Vector2(176.792007F, -188.024002F)); + builder.AddCubicBezier(new Vector2(177.175995F, -188.623993F), new Vector2(177.686005F, -189.091995F), new Vector2(178.322006F, -189.427994F)); + builder.AddCubicBezier(new Vector2(178.957993F, -189.764008F), new Vector2(179.671997F, -189.932007F), new Vector2(180.464005F, -189.932007F)); + builder.AddCubicBezier(new Vector2(181.615997F, -189.932007F), new Vector2(182.582001F, -189.565994F), new Vector2(183.362F, -188.834F)); + builder.AddCubicBezier(new Vector2(184.141998F, -188.102005F), new Vector2(184.531998F, -187.100006F), new Vector2(184.531998F, -185.828003F)); + builder.AddLine(new Vector2(184.531998F, -175.496002F)); + builder.AddLine(new Vector2(187.807999F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(176.216003F, -175.496002F)); + builder.AddLine(new Vector2(176.216003F, -186.511993F)); + builder.AddCubicBezier(new Vector2(176.216003F, -187.832001F), new Vector2(175.934006F, -188.972F), new Vector2(175.369995F, -189.932007F)); + builder.AddCubicBezier(new Vector2(174.806F, -190.891998F), new Vector2(174.037994F, -191.636002F), new Vector2(173.065994F, -192.164001F)); + builder.AddCubicBezier(new Vector2(172.093994F, -192.692001F), new Vector2(171.007996F, -192.955994F), new Vector2(169.807999F, -192.955994F)); + builder.AddCubicBezier(new Vector2(168.584F, -192.955994F), new Vector2(167.479996F, -192.686005F), new Vector2(166.496002F, -192.145996F)); + builder.AddCubicBezier(new Vector2(165.511993F, -191.606003F), new Vector2(164.738007F, -190.856003F), new Vector2(164.173996F, -189.895996F)); + builder.AddCubicBezier(new Vector2(163.610001F, -188.936005F), new Vector2(163.328003F, -187.807999F), new Vector2(163.328003F, -186.511993F)); + builder.AddLine(new Vector2(164.660004F, -185.828003F)); + builder.AddCubicBezier(new Vector2(164.660004F, -186.692001F), new Vector2(164.852005F, -187.423996F), new Vector2(165.235992F, -188.024002F)); + builder.AddCubicBezier(new Vector2(165.619995F, -188.623993F), new Vector2(166.123993F, -189.091995F), new Vector2(166.748001F, -189.427994F)); + builder.AddCubicBezier(new Vector2(167.371994F, -189.764008F), new Vector2(168.080002F, -189.932007F), new Vector2(168.871994F, -189.932007F)); + builder.AddCubicBezier(new Vector2(170.048004F, -189.932007F), new Vector2(171.026001F, -189.565994F), new Vector2(171.806F, -188.834F)); + builder.AddCubicBezier(new Vector2(172.585999F, -188.102005F), new Vector2(172.975998F, -187.100006F), new Vector2(172.975998F, -185.828003F)); + builder.AddLine(new Vector2(172.975998F, -175.496002F)); + builder.AddLine(new Vector2(176.216003F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(164.660004F, -175.496002F)); + builder.AddLine(new Vector2(164.660004F, -192.595993F)); + builder.AddLine(new Vector2(161.419998F, -192.595993F)); + builder.AddLine(new Vector2(161.419998F, -175.496002F)); + builder.AddLine(new Vector2(164.660004F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1096() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(148.621994F, -176.539993F)); + builder.AddCubicBezier(new Vector2(149.761993F, -177.475998F), new Vector2(150.332001F, -178.748001F), new Vector2(150.332001F, -180.356003F)); + builder.AddCubicBezier(new Vector2(150.332001F, -181.412003F), new Vector2(150.110001F, -182.264008F), new Vector2(149.666F, -182.912003F)); + builder.AddCubicBezier(new Vector2(149.222F, -183.559998F), new Vector2(148.651993F, -184.076004F), new Vector2(147.955994F, -184.460007F)); + builder.AddCubicBezier(new Vector2(147.259995F, -184.843994F), new Vector2(146.528F, -185.149994F), new Vector2(145.759995F, -185.378006F)); + builder.AddCubicBezier(new Vector2(144.992004F, -185.606003F), new Vector2(144.253998F, -185.828003F), new Vector2(143.546005F, -186.044006F)); + builder.AddCubicBezier(new Vector2(142.837997F, -186.259995F), new Vector2(142.268005F, -186.524002F), new Vector2(141.835999F, -186.835999F)); + builder.AddCubicBezier(new Vector2(141.404007F, -187.147995F), new Vector2(141.188004F, -187.591995F), new Vector2(141.188004F, -188.167999F)); + builder.AddCubicBezier(new Vector2(141.188004F, -188.720001F), new Vector2(141.434006F, -189.164001F), new Vector2(141.925995F, -189.5F)); + builder.AddCubicBezier(new Vector2(142.417999F, -189.835999F), new Vector2(143.132004F, -190.003998F), new Vector2(144.067993F, -190.003998F)); + builder.AddCubicBezier(new Vector2(144.955994F, -190.003998F), new Vector2(145.748001F, -189.835999F), new Vector2(146.444F, -189.5F)); + builder.AddCubicBezier(new Vector2(147.139999F, -189.164001F), new Vector2(147.740005F, -188.684006F), new Vector2(148.244003F, -188.059998F)); + builder.AddLine(new Vector2(150.332001F, -190.147995F)); + builder.AddCubicBezier(new Vector2(149.660004F, -191.084F), new Vector2(148.802002F, -191.785995F), new Vector2(147.757996F, -192.253998F)); + builder.AddCubicBezier(new Vector2(146.714005F, -192.722F), new Vector2(145.520004F, -192.955994F), new Vector2(144.175995F, -192.955994F)); + builder.AddCubicBezier(new Vector2(142.904007F, -192.955994F), new Vector2(141.811996F, -192.751999F), new Vector2(140.899994F, -192.343994F)); + builder.AddCubicBezier(new Vector2(139.988007F, -191.936005F), new Vector2(139.285995F, -191.354004F), new Vector2(138.794006F, -190.598007F)); + builder.AddCubicBezier(new Vector2(138.302002F, -189.841995F), new Vector2(138.056F, -188.947998F), new Vector2(138.056F, -187.916F)); + builder.AddCubicBezier(new Vector2(138.056F, -186.884003F), new Vector2(138.278F, -186.050003F), new Vector2(138.722F, -185.414001F)); + builder.AddCubicBezier(new Vector2(139.166F, -184.778F), new Vector2(139.735992F, -184.279999F), new Vector2(140.432007F, -183.919998F)); + builder.AddCubicBezier(new Vector2(141.128006F, -183.559998F), new Vector2(141.865997F, -183.272003F), new Vector2(142.645996F, -183.056F)); + builder.AddCubicBezier(new Vector2(143.425995F, -182.839996F), new Vector2(144.164001F, -182.617996F), new Vector2(144.860001F, -182.389999F)); + builder.AddCubicBezier(new Vector2(145.556F, -182.162003F), new Vector2(146.126007F, -181.873993F), new Vector2(146.570007F, -181.526001F)); + builder.AddCubicBezier(new Vector2(147.014008F, -181.177994F), new Vector2(147.235992F, -180.692001F), new Vector2(147.235992F, -180.067993F)); + builder.AddCubicBezier(new Vector2(147.235992F, -179.444F), new Vector2(146.960007F, -178.957993F), new Vector2(146.408005F, -178.610001F)); + builder.AddCubicBezier(new Vector2(145.856003F, -178.261993F), new Vector2(145.076004F, -178.087997F), new Vector2(144.067993F, -178.087997F)); + builder.AddCubicBezier(new Vector2(143.059998F, -178.087997F), new Vector2(142.147995F, -178.274002F), new Vector2(141.332001F, -178.645996F)); + builder.AddCubicBezier(new Vector2(140.516006F, -179.018005F), new Vector2(139.796005F, -179.587997F), new Vector2(139.171997F, -180.356003F)); + builder.AddLine(new Vector2(137.084F, -178.268005F)); + builder.AddCubicBezier(new Vector2(137.612F, -177.619995F), new Vector2(138.229996F, -177.061996F), new Vector2(138.938004F, -176.593994F)); + builder.AddCubicBezier(new Vector2(139.645996F, -176.126007F), new Vector2(140.432007F, -175.766006F), new Vector2(141.296005F, -175.514008F)); + builder.AddCubicBezier(new Vector2(142.160004F, -175.261993F), new Vector2(143.072006F, -175.136002F), new Vector2(144.031998F, -175.136002F)); + builder.AddCubicBezier(new Vector2(145.951996F, -175.136002F), new Vector2(147.481995F, -175.604004F), new Vector2(148.621994F, -176.539993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1097() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(135.787994F, -189.643997F)); + builder.AddLine(new Vector2(135.787994F, -192.595993F)); + builder.AddLine(new Vector2(124.124001F, -192.595993F)); + builder.AddLine(new Vector2(124.124001F, -189.643997F)); + builder.AddLine(new Vector2(135.787994F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(131.576004F, -175.496002F)); + builder.AddLine(new Vector2(131.576004F, -199.759995F)); + builder.AddLine(new Vector2(128.335999F, -199.759995F)); + builder.AddLine(new Vector2(128.335999F, -175.496002F)); + builder.AddLine(new Vector2(131.576004F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1098() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(120.776001F, -196.610001F)); + builder.AddCubicBezier(new Vector2(121.160004F, -197.005997F), new Vector2(121.351997F, -197.503998F), new Vector2(121.351997F, -198.104004F)); + builder.AddCubicBezier(new Vector2(121.351997F, -198.679993F), new Vector2(121.160004F, -199.166F), new Vector2(120.776001F, -199.561996F)); + builder.AddCubicBezier(new Vector2(120.391998F, -199.957993F), new Vector2(119.900002F, -200.156006F), new Vector2(119.300003F, -200.156006F)); + builder.AddCubicBezier(new Vector2(118.699997F, -200.156006F), new Vector2(118.208F, -199.957993F), new Vector2(117.823997F, -199.561996F)); + builder.AddCubicBezier(new Vector2(117.440002F, -199.166F), new Vector2(117.248001F, -198.679993F), new Vector2(117.248001F, -198.104004F)); + builder.AddCubicBezier(new Vector2(117.248001F, -197.503998F), new Vector2(117.440002F, -197.005997F), new Vector2(117.823997F, -196.610001F)); + builder.AddCubicBezier(new Vector2(118.208F, -196.214005F), new Vector2(118.699997F, -196.016006F), new Vector2(119.300003F, -196.016006F)); + builder.AddCubicBezier(new Vector2(119.900002F, -196.016006F), new Vector2(120.391998F, -196.214005F), new Vector2(120.776001F, -196.610001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(120.919998F, -175.496002F)); + builder.AddLine(new Vector2(120.919998F, -192.595993F)); + builder.AddLine(new Vector2(117.643997F, -192.595993F)); + builder.AddLine(new Vector2(117.643997F, -175.496002F)); + builder.AddLine(new Vector2(120.919998F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1099() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(99.5F, -188.744003F)); + builder.AddCubicBezier(new Vector2(100.267998F, -189.511993F), new Vector2(101.251999F, -189.895996F), new Vector2(102.452003F, -189.895996F)); + builder.AddCubicBezier(new Vector2(103.028F, -189.895996F), new Vector2(103.531998F, -189.811996F), new Vector2(103.963997F, -189.643997F)); + builder.AddCubicBezier(new Vector2(104.396004F, -189.475998F), new Vector2(104.792F, -189.199997F), new Vector2(105.152F, -188.815994F)); + builder.AddLine(new Vector2(107.276001F, -191.011993F)); + builder.AddCubicBezier(new Vector2(106.676003F, -191.707993F), new Vector2(106.028F, -192.205994F), new Vector2(105.332001F, -192.505997F)); + builder.AddCubicBezier(new Vector2(104.636002F, -192.806F), new Vector2(103.856003F, -192.955994F), new Vector2(102.991997F, -192.955994F)); + builder.AddCubicBezier(new Vector2(101.096001F, -192.955994F), new Vector2(99.6439972F, -192.307999F), new Vector2(98.6360016F, -191.011993F)); + builder.AddCubicBezier(new Vector2(97.6279984F, -189.716003F), new Vector2(97.1240005F, -187.975998F), new Vector2(97.1240005F, -185.792007F)); + builder.AddLine(new Vector2(98.3479996F, -185.216003F)); + builder.AddCubicBezier(new Vector2(98.3479996F, -186.800003F), new Vector2(98.7320023F, -187.975998F), new Vector2(99.5F, -188.744003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(98.3479996F, -175.496002F)); + builder.AddLine(new Vector2(98.3479996F, -192.595993F)); + builder.AddLine(new Vector2(95.1080017F, -192.595993F)); + builder.AddLine(new Vector2(95.1080017F, -175.496002F)); + builder.AddLine(new Vector2(98.3479996F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1100() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(87.512001F, -175.891998F)); + builder.AddCubicBezier(new Vector2(88.6880035F, -176.395996F), new Vector2(89.6959991F, -177.128006F), new Vector2(90.5360031F, -178.087997F)); + builder.AddLine(new Vector2(88.447998F, -180.212006F)); + builder.AddCubicBezier(new Vector2(87.8720016F, -179.539993F), new Vector2(87.1819992F, -179.035995F), new Vector2(86.3779984F, -178.699997F)); + builder.AddCubicBezier(new Vector2(85.5739975F, -178.363998F), new Vector2(84.6920013F, -178.195999F), new Vector2(83.7320023F, -178.195999F)); + builder.AddCubicBezier(new Vector2(82.5800018F, -178.195999F), new Vector2(81.5599976F, -178.442001F), new Vector2(80.6719971F, -178.934006F)); + builder.AddCubicBezier(new Vector2(79.7839966F, -179.425995F), new Vector2(79.0999985F, -180.121994F), new Vector2(78.6200027F, -181.022003F)); + builder.AddCubicBezier(new Vector2(78.1399994F, -181.921997F), new Vector2(77.9000015F, -182.972F), new Vector2(77.9000015F, -184.171997F)); + builder.AddCubicBezier(new Vector2(77.9000015F, -185.348007F), new Vector2(78.1279984F, -186.367996F), new Vector2(78.5839996F, -187.231995F)); + builder.AddCubicBezier(new Vector2(79.0400009F, -188.095993F), new Vector2(79.6880035F, -188.768005F), new Vector2(80.5279999F, -189.248001F)); + builder.AddCubicBezier(new Vector2(81.3679962F, -189.727997F), new Vector2(82.3399963F, -189.968002F), new Vector2(83.4440002F, -189.968002F)); + builder.AddCubicBezier(new Vector2(84.5F, -189.968002F), new Vector2(85.4000015F, -189.746002F), new Vector2(86.1439972F, -189.302002F)); + builder.AddCubicBezier(new Vector2(86.8880005F, -188.858002F), new Vector2(87.4639969F, -188.233994F), new Vector2(87.8720016F, -187.429993F)); + builder.AddCubicBezier(new Vector2(88.2799988F, -186.626007F), new Vector2(88.4840012F, -185.647995F), new Vector2(88.4840012F, -184.496002F)); + builder.AddLine(new Vector2(89.6719971F, -185.539993F)); + builder.AddLine(new Vector2(76.9639969F, -185.539993F)); + builder.AddLine(new Vector2(76.9639969F, -182.839996F)); + builder.AddLine(new Vector2(91.4000015F, -182.839996F)); + builder.AddCubicBezier(new Vector2(91.4720001F, -183.175995F), new Vector2(91.5199966F, -183.481995F), new Vector2(91.5439987F, -183.757996F)); + builder.AddCubicBezier(new Vector2(91.5680008F, -184.033997F), new Vector2(91.5800018F, -184.292007F), new Vector2(91.5800018F, -184.531998F)); + builder.AddCubicBezier(new Vector2(91.5800018F, -186.164001F), new Vector2(91.237999F, -187.615997F), new Vector2(90.5540009F, -188.888F)); + builder.AddCubicBezier(new Vector2(89.8700027F, -190.160004F), new Vector2(88.9160004F, -191.156006F), new Vector2(87.6920013F, -191.876007F)); + builder.AddCubicBezier(new Vector2(86.4680023F, -192.595993F), new Vector2(85.0759964F, -192.955994F), new Vector2(83.5159988F, -192.955994F)); + builder.AddCubicBezier(new Vector2(81.8600006F, -192.955994F), new Vector2(80.3659973F, -192.565994F), new Vector2(79.0339966F, -191.785995F)); + builder.AddCubicBezier(new Vector2(77.7020035F, -191.005997F), new Vector2(76.6460037F, -189.944F), new Vector2(75.8659973F, -188.600006F)); + builder.AddCubicBezier(new Vector2(75.0859985F, -187.255997F), new Vector2(74.6959991F, -185.744003F), new Vector2(74.6959991F, -184.063995F)); + builder.AddCubicBezier(new Vector2(74.6959991F, -182.360001F), new Vector2(75.0920029F, -180.835999F), new Vector2(75.8840027F, -179.492004F)); + builder.AddCubicBezier(new Vector2(76.6760025F, -178.147995F), new Vector2(77.75F, -177.085999F), new Vector2(79.1060028F, -176.306F)); + builder.AddCubicBezier(new Vector2(80.461998F, -175.526001F), new Vector2(82.0039978F, -175.136002F), new Vector2(83.7320023F, -175.136002F)); + builder.AddCubicBezier(new Vector2(85.0759964F, -175.136002F), new Vector2(86.3359985F, -175.388F), new Vector2(87.512001F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1101() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(71.0960007F, -201.199997F)); + builder.AddLine(new Vector2(67.8199997F, -201.199997F)); + builder.AddLine(new Vector2(67.8199997F, -188.419998F)); + builder.AddLine(new Vector2(68.4319992F, -184.279999F)); + builder.AddLine(new Vector2(67.8199997F, -180.104004F)); + builder.AddLine(new Vector2(67.8199997F, -175.496002F)); + builder.AddLine(new Vector2(71.0960007F, -175.496002F)); + builder.AddLine(new Vector2(71.0960007F, -201.199997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(59.7739983F, -178.934006F)); + builder.AddCubicBezier(new Vector2(58.9459991F, -179.425995F), new Vector2(58.2980003F, -180.115997F), new Vector2(57.8300018F, -181.003998F)); + builder.AddCubicBezier(new Vector2(57.3619995F, -181.891998F), new Vector2(57.1279984F, -182.912003F), new Vector2(57.1279984F, -184.063995F)); + builder.AddCubicBezier(new Vector2(57.1279984F, -185.216003F), new Vector2(57.3619995F, -186.229996F), new Vector2(57.8300018F, -187.106003F)); + builder.AddCubicBezier(new Vector2(58.2980003F, -187.981995F), new Vector2(58.9399986F, -188.666F), new Vector2(59.7560005F, -189.158005F)); + builder.AddCubicBezier(new Vector2(60.5719986F, -189.649994F), new Vector2(61.5200005F, -189.895996F), new Vector2(62.5999985F, -189.895996F)); + builder.AddCubicBezier(new Vector2(63.6800003F, -189.895996F), new Vector2(64.6279984F, -189.643997F), new Vector2(65.4440002F, -189.139999F)); + builder.AddCubicBezier(new Vector2(66.2600021F, -188.636002F), new Vector2(66.8960037F, -187.945999F), new Vector2(67.3519974F, -187.070007F)); + builder.AddCubicBezier(new Vector2(67.8079987F, -186.194F), new Vector2(68.0360031F, -185.179993F), new Vector2(68.0360031F, -184.028F)); + builder.AddCubicBezier(new Vector2(68.0360031F, -182.899994F), new Vector2(67.8079987F, -181.897995F), new Vector2(67.3519974F, -181.022003F)); + builder.AddCubicBezier(new Vector2(66.8960037F, -180.145996F), new Vector2(66.2600021F, -179.455994F), new Vector2(65.4440002F, -178.951996F)); + builder.AddCubicBezier(new Vector2(64.6279984F, -178.447998F), new Vector2(63.6800003F, -178.195999F), new Vector2(62.5999985F, -178.195999F)); + builder.AddCubicBezier(new Vector2(61.5439987F, -178.195999F), new Vector2(60.6020012F, -178.442001F), new Vector2(59.7739983F, -178.934006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(65.5879974F, -175.945999F)); + builder.AddCubicBezier(new Vector2(66.6200027F, -176.485992F), new Vector2(67.447998F, -177.235992F), new Vector2(68.0719986F, -178.195999F)); + builder.AddCubicBezier(new Vector2(68.6959991F, -179.156006F), new Vector2(69.0439987F, -180.248001F), new Vector2(69.1159973F, -181.472F)); + builder.AddLine(new Vector2(69.1159973F, -186.619995F)); + builder.AddCubicBezier(new Vector2(69.0439987F, -187.867996F), new Vector2(68.6900024F, -188.966003F), new Vector2(68.0540009F, -189.914001F)); + builder.AddCubicBezier(new Vector2(67.4179993F, -190.862F), new Vector2(66.5839996F, -191.606003F), new Vector2(65.552002F, -192.145996F)); + builder.AddCubicBezier(new Vector2(64.5199966F, -192.686005F), new Vector2(63.355999F, -192.955994F), new Vector2(62.0600014F, -192.955994F)); + builder.AddCubicBezier(new Vector2(60.5F, -192.955994F), new Vector2(59.0960007F, -192.559998F), new Vector2(57.8479996F, -191.768005F)); + builder.AddCubicBezier(new Vector2(56.5999985F, -190.975998F), new Vector2(55.6100006F, -189.908005F), new Vector2(54.8779984F, -188.563995F)); + builder.AddCubicBezier(new Vector2(54.1459999F, -187.220001F), new Vector2(53.7799988F, -185.707993F), new Vector2(53.7799988F, -184.028F)); + builder.AddCubicBezier(new Vector2(53.7799988F, -182.348007F), new Vector2(54.1459999F, -180.835999F), new Vector2(54.8779984F, -179.492004F)); + builder.AddCubicBezier(new Vector2(55.6100006F, -178.147995F), new Vector2(56.5999985F, -177.085999F), new Vector2(57.8479996F, -176.306F)); + builder.AddCubicBezier(new Vector2(59.0960007F, -175.526001F), new Vector2(60.5F, -175.136002F), new Vector2(62.0600014F, -175.136002F)); + builder.AddCubicBezier(new Vector2(63.3800011F, -175.136002F), new Vector2(64.5559998F, -175.406006F), new Vector2(65.5879974F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1102() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(38.3720016F, -175.496002F)); + builder.AddLine(new Vector2(38.3720016F, -192.595993F)); + builder.AddLine(new Vector2(35.132F, -192.595993F)); + builder.AddLine(new Vector2(35.132F, -175.496002F)); + builder.AddLine(new Vector2(38.3720016F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(50.4679985F, -175.496002F)); + builder.AddLine(new Vector2(50.4679985F, -186.115997F)); + builder.AddCubicBezier(new Vector2(50.4679985F, -187.292007F), new Vector2(50.1800003F, -188.401993F), new Vector2(49.6040001F, -189.445999F)); + builder.AddCubicBezier(new Vector2(49.0279999F, -190.490005F), new Vector2(48.2420006F, -191.335999F), new Vector2(47.2459984F, -191.983994F)); + builder.AddCubicBezier(new Vector2(46.25F, -192.632004F), new Vector2(45.1040001F, -192.955994F), new Vector2(43.8079987F, -192.955994F)); + builder.AddCubicBezier(new Vector2(42.512001F, -192.955994F), new Vector2(41.3479996F, -192.662003F), new Vector2(40.3160019F, -192.074005F)); + builder.AddCubicBezier(new Vector2(39.2840004F, -191.485992F), new Vector2(38.4799995F, -190.688004F), new Vector2(37.9039993F, -189.679993F)); + builder.AddCubicBezier(new Vector2(37.3279991F, -188.671997F), new Vector2(37.0400009F, -187.520004F), new Vector2(37.0400009F, -186.223999F)); + builder.AddLine(new Vector2(38.3720016F, -185.468002F)); + builder.AddCubicBezier(new Vector2(38.3720016F, -186.332001F), new Vector2(38.5639992F, -187.100006F), new Vector2(38.9480019F, -187.772003F)); + builder.AddCubicBezier(new Vector2(39.3320007F, -188.444F), new Vector2(39.8600006F, -188.972F), new Vector2(40.5320015F, -189.356003F)); + builder.AddCubicBezier(new Vector2(41.2039986F, -189.740005F), new Vector2(41.9720001F, -189.932007F), new Vector2(42.8359985F, -189.932007F)); + builder.AddCubicBezier(new Vector2(44.132F, -189.932007F), new Vector2(45.1819992F, -189.511993F), new Vector2(45.9860001F, -188.671997F)); + builder.AddCubicBezier(new Vector2(46.7900009F, -187.832001F), new Vector2(47.1920013F, -186.764008F), new Vector2(47.1920013F, -185.468002F)); + builder.AddLine(new Vector2(47.1920013F, -175.496002F)); + builder.AddLine(new Vector2(50.4679985F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1103() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(27.2479992F, -176.126007F)); + builder.AddCubicBezier(new Vector2(28.3519993F, -176.738007F), new Vector2(29.2159996F, -177.608002F), new Vector2(29.8400002F, -178.735992F)); + builder.AddCubicBezier(new Vector2(30.4640007F, -179.863998F), new Vector2(30.7759991F, -181.171997F), new Vector2(30.7759991F, -182.660004F)); + builder.AddLine(new Vector2(30.7759991F, -192.595993F)); + builder.AddLine(new Vector2(27.5359993F, -192.595993F)); + builder.AddLine(new Vector2(27.5359993F, -182.804001F)); + builder.AddCubicBezier(new Vector2(27.5359993F, -181.388F), new Vector2(27.1760006F, -180.278F), new Vector2(26.4559994F, -179.473999F)); + builder.AddCubicBezier(new Vector2(25.7360001F, -178.669998F), new Vector2(24.7399998F, -178.268005F), new Vector2(23.4680004F, -178.268005F)); + builder.AddCubicBezier(new Vector2(22.6280003F, -178.268005F), new Vector2(21.8959999F, -178.447998F), new Vector2(21.2719994F, -178.807999F)); + builder.AddCubicBezier(new Vector2(20.6480007F, -179.167999F), new Vector2(20.1739998F, -179.690002F), new Vector2(19.8500004F, -180.373993F)); + builder.AddCubicBezier(new Vector2(19.5259991F, -181.057999F), new Vector2(19.3640003F, -181.867996F), new Vector2(19.3640003F, -182.804001F)); + builder.AddLine(new Vector2(19.3640003F, -192.595993F)); + builder.AddLine(new Vector2(16.1240005F, -192.595993F)); + builder.AddLine(new Vector2(16.1240005F, -182.660004F)); + builder.AddCubicBezier(new Vector2(16.1240005F, -181.171997F), new Vector2(16.4360008F, -179.863998F), new Vector2(17.0599995F, -178.735992F)); + builder.AddCubicBezier(new Vector2(17.684F, -177.608002F), new Vector2(18.5540009F, -176.738007F), new Vector2(19.6700001F, -176.126007F)); + builder.AddCubicBezier(new Vector2(20.7859993F, -175.514008F), new Vector2(22.052F, -175.207993F), new Vector2(23.4680004F, -175.207993F)); + builder.AddCubicBezier(new Vector2(24.8840008F, -175.207993F), new Vector2(26.1439991F, -175.514008F), new Vector2(27.2479992F, -176.126007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1104() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-5.07999992F, -168.332001F)); + builder.AddLine(new Vector2(-1.84000003F, -175.352005F)); + builder.AddLine(new Vector2(-3.67600012F, -178.664001F)); + builder.AddLine(new Vector2(-8.68000031F, -168.332001F)); + builder.AddLine(new Vector2(-5.07999992F, -168.332001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-1.84000003F, -175.352005F)); + builder.AddLine(new Vector2(6.15199995F, -192.595993F)); + builder.AddLine(new Vector2(2.55200005F, -192.595993F)); + builder.AddLine(new Vector2(-3.24399996F, -179.095993F)); + builder.AddLine(new Vector2(-2.09200001F, -179.095993F)); + builder.AddLine(new Vector2(-7.5999999F, -192.595993F)); + builder.AddLine(new Vector2(-11.1999998F, -192.595993F)); + builder.AddLine(new Vector2(-3.78399992F, -175.352005F)); + builder.AddLine(new Vector2(-1.84000003F, -175.352005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1105() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-19.1560001F, -188.744003F)); + builder.AddCubicBezier(new Vector2(-18.3880005F, -189.511993F), new Vector2(-17.4039993F, -189.895996F), new Vector2(-16.2040005F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-15.6280003F, -189.895996F), new Vector2(-15.1239996F, -189.811996F), new Vector2(-14.6920004F, -189.643997F)); + builder.AddCubicBezier(new Vector2(-14.2600002F, -189.475998F), new Vector2(-13.8640003F, -189.199997F), new Vector2(-13.5039997F, -188.815994F)); + builder.AddLine(new Vector2(-11.3800001F, -191.011993F)); + builder.AddCubicBezier(new Vector2(-11.9799995F, -191.707993F), new Vector2(-12.6280003F, -192.205994F), new Vector2(-13.3240004F, -192.505997F)); + builder.AddCubicBezier(new Vector2(-14.0200005F, -192.806F), new Vector2(-14.8000002F, -192.955994F), new Vector2(-15.6639996F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-17.5599995F, -192.955994F), new Vector2(-19.0119991F, -192.307999F), new Vector2(-20.0200005F, -191.011993F)); + builder.AddCubicBezier(new Vector2(-21.0279999F, -189.716003F), new Vector2(-21.5319996F, -187.975998F), new Vector2(-21.5319996F, -185.792007F)); + builder.AddLine(new Vector2(-20.3080006F, -185.216003F)); + builder.AddCubicBezier(new Vector2(-20.3080006F, -186.800003F), new Vector2(-19.9239998F, -187.975998F), new Vector2(-19.1560001F, -188.744003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-20.3080006F, -175.496002F)); + builder.AddLine(new Vector2(-20.3080006F, -192.595993F)); + builder.AddLine(new Vector2(-23.5480003F, -192.595993F)); + builder.AddLine(new Vector2(-23.5480003F, -175.496002F)); + builder.AddLine(new Vector2(-20.3080006F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1106() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-26.7159996F, -189.643997F)); + builder.AddLine(new Vector2(-26.7159996F, -192.595993F)); + builder.AddLine(new Vector2(-38.3800011F, -192.595993F)); + builder.AddLine(new Vector2(-38.3800011F, -189.643997F)); + builder.AddLine(new Vector2(-26.7159996F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-30.9279995F, -175.496002F)); + builder.AddLine(new Vector2(-30.9279995F, -199.759995F)); + builder.AddLine(new Vector2(-34.1679993F, -199.759995F)); + builder.AddLine(new Vector2(-34.1679993F, -175.496002F)); + builder.AddLine(new Vector2(-30.9279995F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1107() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-53.0680008F, -175.496002F)); + builder.AddLine(new Vector2(-53.0680008F, -192.595993F)); + builder.AddLine(new Vector2(-56.3079987F, -192.595993F)); + builder.AddLine(new Vector2(-56.3079987F, -175.496002F)); + builder.AddLine(new Vector2(-53.0680008F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-40.9720001F, -175.496002F)); + builder.AddLine(new Vector2(-40.9720001F, -186.115997F)); + builder.AddCubicBezier(new Vector2(-40.9720001F, -187.292007F), new Vector2(-41.2599983F, -188.401993F), new Vector2(-41.8359985F, -189.445999F)); + builder.AddCubicBezier(new Vector2(-42.4119987F, -190.490005F), new Vector2(-43.1980019F, -191.335999F), new Vector2(-44.1940002F, -191.983994F)); + builder.AddCubicBezier(new Vector2(-45.1899986F, -192.632004F), new Vector2(-46.3359985F, -192.955994F), new Vector2(-47.632F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-48.9280014F, -192.955994F), new Vector2(-50.0919991F, -192.662003F), new Vector2(-51.1240005F, -192.074005F)); + builder.AddCubicBezier(new Vector2(-52.1559982F, -191.485992F), new Vector2(-52.9599991F, -190.688004F), new Vector2(-53.5359993F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-54.1119995F, -188.671997F), new Vector2(-54.4000015F, -187.520004F), new Vector2(-54.4000015F, -186.223999F)); + builder.AddLine(new Vector2(-53.0680008F, -185.468002F)); + builder.AddCubicBezier(new Vector2(-53.0680008F, -186.332001F), new Vector2(-52.8759995F, -187.100006F), new Vector2(-52.4920006F, -187.772003F)); + builder.AddCubicBezier(new Vector2(-52.1080017F, -188.444F), new Vector2(-51.5800018F, -188.972F), new Vector2(-50.9080009F, -189.356003F)); + builder.AddCubicBezier(new Vector2(-50.2360001F, -189.740005F), new Vector2(-49.4679985F, -189.932007F), new Vector2(-48.6040001F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-47.3079987F, -189.932007F), new Vector2(-46.2579994F, -189.511993F), new Vector2(-45.4539986F, -188.671997F)); + builder.AddCubicBezier(new Vector2(-44.6500015F, -187.832001F), new Vector2(-44.2480011F, -186.764008F), new Vector2(-44.2480011F, -185.468002F)); + builder.AddLine(new Vector2(-44.2480011F, -175.496002F)); + builder.AddLine(new Vector2(-40.9720001F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1108() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-64.1920013F, -176.126007F)); + builder.AddCubicBezier(new Vector2(-63.0880013F, -176.738007F), new Vector2(-62.223999F, -177.608002F), new Vector2(-61.5999985F, -178.735992F)); + builder.AddCubicBezier(new Vector2(-60.9760017F, -179.863998F), new Vector2(-60.6640015F, -181.171997F), new Vector2(-60.6640015F, -182.660004F)); + builder.AddLine(new Vector2(-60.6640015F, -192.595993F)); + builder.AddLine(new Vector2(-63.9039993F, -192.595993F)); + builder.AddLine(new Vector2(-63.9039993F, -182.804001F)); + builder.AddCubicBezier(new Vector2(-63.9039993F, -181.388F), new Vector2(-64.2639999F, -180.278F), new Vector2(-64.9840012F, -179.473999F)); + builder.AddCubicBezier(new Vector2(-65.7040024F, -178.669998F), new Vector2(-66.6999969F, -178.268005F), new Vector2(-67.9720001F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-68.8119965F, -178.268005F), new Vector2(-69.5439987F, -178.447998F), new Vector2(-70.1679993F, -178.807999F)); + builder.AddCubicBezier(new Vector2(-70.7919998F, -179.167999F), new Vector2(-71.2659988F, -179.690002F), new Vector2(-71.5899963F, -180.373993F)); + builder.AddCubicBezier(new Vector2(-71.9140015F, -181.057999F), new Vector2(-72.0759964F, -181.867996F), new Vector2(-72.0759964F, -182.804001F)); + builder.AddLine(new Vector2(-72.0759964F, -192.595993F)); + builder.AddLine(new Vector2(-75.3160019F, -192.595993F)); + builder.AddLine(new Vector2(-75.3160019F, -182.660004F)); + builder.AddCubicBezier(new Vector2(-75.3160019F, -181.171997F), new Vector2(-75.0039978F, -179.863998F), new Vector2(-74.3799973F, -178.735992F)); + builder.AddCubicBezier(new Vector2(-73.7559967F, -177.608002F), new Vector2(-72.8860016F, -176.738007F), new Vector2(-71.7699966F, -176.126007F)); + builder.AddCubicBezier(new Vector2(-70.6539993F, -175.514008F), new Vector2(-69.3880005F, -175.207993F), new Vector2(-67.9720001F, -175.207993F)); + builder.AddCubicBezier(new Vector2(-66.5559998F, -175.207993F), new Vector2(-65.2959976F, -175.514008F), new Vector2(-64.1920013F, -176.126007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1109() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-90.2919998F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-91.1320038F, -179.528F), new Vector2(-91.7919998F, -180.218002F), new Vector2(-92.2720032F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-92.7519989F, -181.970001F), new Vector2(-92.9919968F, -182.972F), new Vector2(-92.9919968F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-92.9919968F, -185.203995F), new Vector2(-92.7519989F, -186.188004F), new Vector2(-92.2720032F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-91.7919998F, -187.916F), new Vector2(-91.1320038F, -188.593994F), new Vector2(-90.2919998F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-89.4520035F, -189.578003F), new Vector2(-88.5039978F, -189.824005F), new Vector2(-87.447998F, -189.824005F)); + builder.AddCubicBezier(new Vector2(-86.3440018F, -189.824005F), new Vector2(-85.3779984F, -189.578003F), new Vector2(-84.5500031F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-83.7220001F, -188.593994F), new Vector2(-83.0619965F, -187.916F), new Vector2(-82.5699997F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-82.0780029F, -186.188004F), new Vector2(-81.8320007F, -185.203995F), new Vector2(-81.8320007F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-81.8320007F, -182.972F), new Vector2(-82.0719986F, -181.970001F), new Vector2(-82.552002F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-83.0319977F, -180.218002F), new Vector2(-83.6920013F, -179.528F), new Vector2(-84.5319977F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-85.3720016F, -178.520004F), new Vector2(-86.3440018F, -178.268005F), new Vector2(-87.447998F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-88.5039978F, -178.268005F), new Vector2(-89.4520035F, -178.520004F), new Vector2(-90.2919998F, -179.024002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-82.8939972F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-81.538002F, -177.115997F), new Vector2(-80.4639969F, -178.190002F), new Vector2(-79.6719971F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-78.8799973F, -180.901993F), new Vector2(-78.4840012F, -182.419998F), new Vector2(-78.4840012F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-78.4840012F, -185.755997F), new Vector2(-78.8799973F, -187.255997F), new Vector2(-79.6719971F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-80.4639969F, -189.944F), new Vector2(-81.538002F, -191.005997F), new Vector2(-82.8939972F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-84.25F, -192.565994F), new Vector2(-85.7679977F, -192.955994F), new Vector2(-87.447998F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-89.1039963F, -192.955994F), new Vector2(-90.6039963F, -192.559998F), new Vector2(-91.947998F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-93.2919998F, -190.975998F), new Vector2(-94.3600006F, -189.914001F), new Vector2(-95.1520004F, -188.582001F)); + builder.AddCubicBezier(new Vector2(-95.9440002F, -187.25F), new Vector2(-96.3399963F, -185.755997F), new Vector2(-96.3399963F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-96.3399963F, -182.419998F), new Vector2(-95.9440002F, -180.901993F), new Vector2(-95.1520004F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-94.3600006F, -178.190002F), new Vector2(-93.2919998F, -177.115997F), new Vector2(-91.947998F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-90.6039963F, -175.531998F), new Vector2(-89.1039963F, -175.136002F), new Vector2(-87.447998F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-85.7679977F, -175.136002F), new Vector2(-84.25F, -175.531998F), new Vector2(-82.8939972F, -176.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1110() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-101.001999F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-99.8619995F, -176.395996F), new Vector2(-98.8960037F, -177.104004F), new Vector2(-98.1039963F, -178.016006F)); + builder.AddLine(new Vector2(-100.227997F, -180.175995F)); + builder.AddCubicBezier(new Vector2(-100.779999F, -179.552002F), new Vector2(-101.433998F, -179.078003F), new Vector2(-102.190002F, -178.753998F)); + builder.AddCubicBezier(new Vector2(-102.945999F, -178.429993F), new Vector2(-103.779999F, -178.268005F), new Vector2(-104.692001F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-105.772003F, -178.268005F), new Vector2(-106.732002F, -178.520004F), new Vector2(-107.571999F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-108.412003F, -179.528F), new Vector2(-109.071999F, -180.212006F), new Vector2(-109.552002F, -181.076004F)); + builder.AddCubicBezier(new Vector2(-110.031998F, -181.940002F), new Vector2(-110.272003F, -182.936005F), new Vector2(-110.272003F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-110.272003F, -185.192001F), new Vector2(-110.031998F, -186.188004F), new Vector2(-109.552002F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-109.071999F, -187.916F), new Vector2(-108.412003F, -188.593994F), new Vector2(-107.571999F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-106.732002F, -189.578003F), new Vector2(-105.772003F, -189.824005F), new Vector2(-104.692001F, -189.824005F)); + builder.AddCubicBezier(new Vector2(-103.804001F, -189.824005F), new Vector2(-102.975998F, -189.662003F), new Vector2(-102.208F, -189.337997F)); + builder.AddCubicBezier(new Vector2(-101.440002F, -189.014008F), new Vector2(-100.792F, -188.539993F), new Vector2(-100.264F, -187.916F)); + builder.AddLine(new Vector2(-98.1039963F, -190.076004F)); + builder.AddCubicBezier(new Vector2(-98.9199982F, -191.011993F), new Vector2(-99.8919983F, -191.725998F), new Vector2(-101.019997F, -192.218002F)); + builder.AddCubicBezier(new Vector2(-102.148003F, -192.710007F), new Vector2(-103.372002F, -192.955994F), new Vector2(-104.692001F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-106.372002F, -192.955994F), new Vector2(-107.889999F, -192.565994F), new Vector2(-109.246002F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-110.601997F, -191.005997F), new Vector2(-111.669998F, -189.944F), new Vector2(-112.449997F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-113.230003F, -187.255997F), new Vector2(-113.620003F, -185.744003F), new Vector2(-113.620003F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-113.620003F, -182.408005F), new Vector2(-113.230003F, -180.901993F), new Vector2(-112.449997F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-111.669998F, -178.190002F), new Vector2(-110.601997F, -177.115997F), new Vector2(-109.246002F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-107.889999F, -175.531998F), new Vector2(-106.372002F, -175.136002F), new Vector2(-104.692001F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-103.372002F, -175.136002F), new Vector2(-102.141998F, -175.388F), new Vector2(-101.001999F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1111() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-127.552002F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-126.375999F, -176.395996F), new Vector2(-125.367996F, -177.128006F), new Vector2(-124.528F, -178.087997F)); + builder.AddLine(new Vector2(-126.615997F, -180.212006F)); + builder.AddCubicBezier(new Vector2(-127.192001F, -179.539993F), new Vector2(-127.882004F, -179.035995F), new Vector2(-128.686005F, -178.699997F)); + builder.AddCubicBezier(new Vector2(-129.490005F, -178.363998F), new Vector2(-130.371994F, -178.195999F), new Vector2(-131.332001F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-132.483994F, -178.195999F), new Vector2(-133.503998F, -178.442001F), new Vector2(-134.391998F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-135.279999F, -179.425995F), new Vector2(-135.964005F, -180.121994F), new Vector2(-136.444F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-136.923996F, -181.921997F), new Vector2(-137.164001F, -182.972F), new Vector2(-137.164001F, -184.171997F)); + builder.AddCubicBezier(new Vector2(-137.164001F, -185.348007F), new Vector2(-136.936005F, -186.367996F), new Vector2(-136.479996F, -187.231995F)); + builder.AddCubicBezier(new Vector2(-136.024002F, -188.095993F), new Vector2(-135.376007F, -188.768005F), new Vector2(-134.535995F, -189.248001F)); + builder.AddCubicBezier(new Vector2(-133.695999F, -189.727997F), new Vector2(-132.723999F, -189.968002F), new Vector2(-131.619995F, -189.968002F)); + builder.AddCubicBezier(new Vector2(-130.563995F, -189.968002F), new Vector2(-129.664001F, -189.746002F), new Vector2(-128.919998F, -189.302002F)); + builder.AddCubicBezier(new Vector2(-128.175995F, -188.858002F), new Vector2(-127.599998F, -188.233994F), new Vector2(-127.192001F, -187.429993F)); + builder.AddCubicBezier(new Vector2(-126.783997F, -186.626007F), new Vector2(-126.580002F, -185.647995F), new Vector2(-126.580002F, -184.496002F)); + builder.AddLine(new Vector2(-125.391998F, -185.539993F)); + builder.AddLine(new Vector2(-138.100006F, -185.539993F)); + builder.AddLine(new Vector2(-138.100006F, -182.839996F)); + builder.AddLine(new Vector2(-123.664001F, -182.839996F)); + builder.AddCubicBezier(new Vector2(-123.592003F, -183.175995F), new Vector2(-123.543999F, -183.481995F), new Vector2(-123.519997F, -183.757996F)); + builder.AddCubicBezier(new Vector2(-123.496002F, -184.033997F), new Vector2(-123.484001F, -184.292007F), new Vector2(-123.484001F, -184.531998F)); + builder.AddCubicBezier(new Vector2(-123.484001F, -186.164001F), new Vector2(-123.825996F, -187.615997F), new Vector2(-124.510002F, -188.888F)); + builder.AddCubicBezier(new Vector2(-125.194F, -190.160004F), new Vector2(-126.148003F, -191.156006F), new Vector2(-127.372002F, -191.876007F)); + builder.AddCubicBezier(new Vector2(-128.595993F, -192.595993F), new Vector2(-129.988007F, -192.955994F), new Vector2(-131.548004F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-133.203995F, -192.955994F), new Vector2(-134.697998F, -192.565994F), new Vector2(-136.029999F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-137.362F, -191.005997F), new Vector2(-138.417999F, -189.944F), new Vector2(-139.197998F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-139.977997F, -187.255997F), new Vector2(-140.367996F, -185.744003F), new Vector2(-140.367996F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-140.367996F, -182.360001F), new Vector2(-139.972F, -180.835999F), new Vector2(-139.179993F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-138.388F, -178.147995F), new Vector2(-137.313995F, -177.085999F), new Vector2(-135.957993F, -176.306F)); + builder.AddCubicBezier(new Vector2(-134.602005F, -175.526001F), new Vector2(-133.059998F, -175.136002F), new Vector2(-131.332001F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-129.988007F, -175.136002F), new Vector2(-128.727997F, -175.388F), new Vector2(-127.552002F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1112() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-155.740005F, -175.496002F)); + builder.AddLine(new Vector2(-155.740005F, -201.199997F)); + builder.AddLine(new Vector2(-158.979996F, -201.199997F)); + builder.AddLine(new Vector2(-158.979996F, -175.496002F)); + builder.AddLine(new Vector2(-155.740005F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-143.643997F, -175.496002F)); + builder.AddLine(new Vector2(-143.643997F, -186.115997F)); + builder.AddCubicBezier(new Vector2(-143.643997F, -187.460007F), new Vector2(-143.932007F, -188.647995F), new Vector2(-144.507996F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-145.084F, -190.712006F), new Vector2(-145.869995F, -191.516006F), new Vector2(-146.865997F, -192.091995F)); + builder.AddCubicBezier(new Vector2(-147.862F, -192.667999F), new Vector2(-149.007996F, -192.955994F), new Vector2(-150.304001F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-151.600006F, -192.955994F), new Vector2(-152.764008F, -192.662003F), new Vector2(-153.796005F, -192.074005F)); + builder.AddCubicBezier(new Vector2(-154.828003F, -191.485992F), new Vector2(-155.632004F, -190.688004F), new Vector2(-156.207993F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-156.783997F, -188.671997F), new Vector2(-157.072006F, -187.520004F), new Vector2(-157.072006F, -186.223999F)); + builder.AddLine(new Vector2(-155.740005F, -185.468002F)); + builder.AddCubicBezier(new Vector2(-155.740005F, -186.332001F), new Vector2(-155.548004F, -187.100006F), new Vector2(-155.164001F, -187.772003F)); + builder.AddCubicBezier(new Vector2(-154.779999F, -188.444F), new Vector2(-154.251999F, -188.972F), new Vector2(-153.580002F, -189.356003F)); + builder.AddCubicBezier(new Vector2(-152.908005F, -189.740005F), new Vector2(-152.139999F, -189.932007F), new Vector2(-151.276001F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-149.979996F, -189.932007F), new Vector2(-148.929993F, -189.511993F), new Vector2(-148.126007F, -188.671997F)); + builder.AddCubicBezier(new Vector2(-147.322006F, -187.832001F), new Vector2(-146.919998F, -186.764008F), new Vector2(-146.919998F, -185.468002F)); + builder.AddLine(new Vector2(-146.919998F, -175.496002F)); + builder.AddLine(new Vector2(-143.643997F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1113() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-162.147995F, -189.643997F)); + builder.AddLine(new Vector2(-162.147995F, -192.595993F)); + builder.AddLine(new Vector2(-173.811996F, -192.595993F)); + builder.AddLine(new Vector2(-173.811996F, -189.643997F)); + builder.AddLine(new Vector2(-162.147995F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-166.360001F, -175.496002F)); + builder.AddLine(new Vector2(-166.360001F, -199.759995F)); + builder.AddLine(new Vector2(-169.600006F, -199.759995F)); + builder.AddLine(new Vector2(-169.600006F, -175.496002F)); + builder.AddLine(new Vector2(-166.360001F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1114() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-184.395996F, -201.199997F)); + builder.AddLine(new Vector2(-187.671997F, -201.199997F)); + builder.AddLine(new Vector2(-187.671997F, -188.419998F)); + builder.AddLine(new Vector2(-187.059998F, -184.279999F)); + builder.AddLine(new Vector2(-187.671997F, -180.104004F)); + builder.AddLine(new Vector2(-187.671997F, -175.496002F)); + builder.AddLine(new Vector2(-184.395996F, -175.496002F)); + builder.AddLine(new Vector2(-184.395996F, -201.199997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-195.718002F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-196.546005F, -179.425995F), new Vector2(-197.194F, -180.115997F), new Vector2(-197.662003F, -181.003998F)); + builder.AddCubicBezier(new Vector2(-198.130005F, -181.891998F), new Vector2(-198.363998F, -182.912003F), new Vector2(-198.363998F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-198.363998F, -185.216003F), new Vector2(-198.130005F, -186.229996F), new Vector2(-197.662003F, -187.106003F)); + builder.AddCubicBezier(new Vector2(-197.194F, -187.981995F), new Vector2(-196.552002F, -188.666F), new Vector2(-195.735992F, -189.158005F)); + builder.AddCubicBezier(new Vector2(-194.919998F, -189.649994F), new Vector2(-193.972F, -189.895996F), new Vector2(-192.891998F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-191.811996F, -189.895996F), new Vector2(-190.863998F, -189.643997F), new Vector2(-190.048004F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-189.231995F, -188.636002F), new Vector2(-188.595993F, -187.945999F), new Vector2(-188.139999F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-187.684006F, -186.194F), new Vector2(-187.455994F, -185.179993F), new Vector2(-187.455994F, -184.028F)); + builder.AddCubicBezier(new Vector2(-187.455994F, -182.899994F), new Vector2(-187.684006F, -181.897995F), new Vector2(-188.139999F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-188.595993F, -180.145996F), new Vector2(-189.231995F, -179.455994F), new Vector2(-190.048004F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-190.863998F, -178.447998F), new Vector2(-191.811996F, -178.195999F), new Vector2(-192.891998F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-193.947998F, -178.195999F), new Vector2(-194.889999F, -178.442001F), new Vector2(-195.718002F, -178.934006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-189.904007F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-188.871994F, -176.485992F), new Vector2(-188.044006F, -177.235992F), new Vector2(-187.419998F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-186.796005F, -179.156006F), new Vector2(-186.447998F, -180.248001F), new Vector2(-186.376007F, -181.472F)); + builder.AddLine(new Vector2(-186.376007F, -186.619995F)); + builder.AddCubicBezier(new Vector2(-186.447998F, -187.867996F), new Vector2(-186.802002F, -188.966003F), new Vector2(-187.438004F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-188.074005F, -190.862F), new Vector2(-188.908005F, -191.606003F), new Vector2(-189.940002F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-190.972F, -192.686005F), new Vector2(-192.136002F, -192.955994F), new Vector2(-193.432007F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-194.992004F, -192.955994F), new Vector2(-196.395996F, -192.559998F), new Vector2(-197.643997F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-198.891998F, -190.975998F), new Vector2(-199.882004F, -189.908005F), new Vector2(-200.613998F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-201.345993F, -187.220001F), new Vector2(-201.712006F, -185.707993F), new Vector2(-201.712006F, -184.028F)); + builder.AddCubicBezier(new Vector2(-201.712006F, -182.348007F), new Vector2(-201.345993F, -180.835999F), new Vector2(-200.613998F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-199.882004F, -178.147995F), new Vector2(-198.891998F, -177.085999F), new Vector2(-197.643997F, -176.306F)); + builder.AddCubicBezier(new Vector2(-196.395996F, -175.526001F), new Vector2(-194.992004F, -175.136002F), new Vector2(-193.432007F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-192.112F, -175.136002F), new Vector2(-190.936005F, -175.406006F), new Vector2(-189.904007F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1115() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-205.348007F, -175.496002F)); + builder.AddLine(new Vector2(-205.348007F, -192.595993F)); + builder.AddLine(new Vector2(-208.623993F, -192.595993F)); + builder.AddLine(new Vector2(-208.623993F, -188.419998F)); + builder.AddLine(new Vector2(-208.011993F, -184.279999F)); + builder.AddLine(new Vector2(-208.623993F, -180.104004F)); + builder.AddLine(new Vector2(-208.623993F, -175.496002F)); + builder.AddLine(new Vector2(-205.348007F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-216.651993F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-217.492004F, -179.455994F), new Vector2(-218.145996F, -180.145996F), new Vector2(-218.613998F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-219.082001F, -181.897995F), new Vector2(-219.315994F, -182.912003F), new Vector2(-219.315994F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-219.315994F, -185.192001F), new Vector2(-219.082001F, -186.194F), new Vector2(-218.613998F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-218.145996F, -187.945999F), new Vector2(-217.498001F, -188.636002F), new Vector2(-216.669998F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-215.841995F, -189.643997F), new Vector2(-214.888F, -189.895996F), new Vector2(-213.807999F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-212.727997F, -189.895996F), new Vector2(-211.785995F, -189.649994F), new Vector2(-210.981995F, -189.158005F)); + builder.AddCubicBezier(new Vector2(-210.177994F, -188.666F), new Vector2(-209.548004F, -187.975998F), new Vector2(-209.091995F, -187.087997F)); + builder.AddCubicBezier(new Vector2(-208.636002F, -186.199997F), new Vector2(-208.408005F, -185.179993F), new Vector2(-208.408005F, -184.028F)); + builder.AddCubicBezier(new Vector2(-208.408005F, -182.324005F), new Vector2(-208.899994F, -180.925995F), new Vector2(-209.884003F, -179.834F)); + builder.AddCubicBezier(new Vector2(-210.867996F, -178.742004F), new Vector2(-212.164001F, -178.195999F), new Vector2(-213.772003F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-214.852005F, -178.195999F), new Vector2(-215.811996F, -178.447998F), new Vector2(-216.651993F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-210.820007F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-209.787994F, -176.485992F), new Vector2(-208.966003F, -177.235992F), new Vector2(-208.354004F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-207.742004F, -179.156006F), new Vector2(-207.399994F, -180.248001F), new Vector2(-207.328003F, -181.472F)); + builder.AddLine(new Vector2(-207.328003F, -186.619995F)); + builder.AddCubicBezier(new Vector2(-207.399994F, -187.867996F), new Vector2(-207.748001F, -188.966003F), new Vector2(-208.371994F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-208.996002F, -190.862F), new Vector2(-209.817993F, -191.606003F), new Vector2(-210.837997F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-211.858002F, -192.686005F), new Vector2(-213.016006F, -192.955994F), new Vector2(-214.311996F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-215.895996F, -192.955994F), new Vector2(-217.317993F, -192.559998F), new Vector2(-218.578003F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-219.837997F, -190.975998F), new Vector2(-220.834F, -189.908005F), new Vector2(-221.565994F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-222.298004F, -187.220001F), new Vector2(-222.664001F, -185.707993F), new Vector2(-222.664001F, -184.028F)); + builder.AddCubicBezier(new Vector2(-222.664001F, -182.348007F), new Vector2(-222.298004F, -180.835999F), new Vector2(-221.565994F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-220.834F, -178.147995F), new Vector2(-219.837997F, -177.085999F), new Vector2(-218.578003F, -176.306F)); + builder.AddCubicBezier(new Vector2(-217.317993F, -175.526001F), new Vector2(-215.895996F, -175.136002F), new Vector2(-214.311996F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-213.016006F, -175.136002F), new Vector2(-211.852005F, -175.406006F), new Vector2(-210.820007F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1116() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-229.179993F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-228.003998F, -176.395996F), new Vector2(-226.996002F, -177.128006F), new Vector2(-226.156006F, -178.087997F)); + builder.AddLine(new Vector2(-228.244003F, -180.212006F)); + builder.AddCubicBezier(new Vector2(-228.820007F, -179.539993F), new Vector2(-229.509995F, -179.035995F), new Vector2(-230.313995F, -178.699997F)); + builder.AddCubicBezier(new Vector2(-231.117996F, -178.363998F), new Vector2(-232F, -178.195999F), new Vector2(-232.960007F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-234.112F, -178.195999F), new Vector2(-235.132004F, -178.442001F), new Vector2(-236.020004F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-236.908005F, -179.425995F), new Vector2(-237.591995F, -180.121994F), new Vector2(-238.072006F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-238.552002F, -181.921997F), new Vector2(-238.792007F, -182.972F), new Vector2(-238.792007F, -184.171997F)); + builder.AddCubicBezier(new Vector2(-238.792007F, -185.348007F), new Vector2(-238.563995F, -186.367996F), new Vector2(-238.108002F, -187.231995F)); + builder.AddCubicBezier(new Vector2(-237.651993F, -188.095993F), new Vector2(-237.003998F, -188.768005F), new Vector2(-236.164001F, -189.248001F)); + builder.AddCubicBezier(new Vector2(-235.324005F, -189.727997F), new Vector2(-234.352005F, -189.968002F), new Vector2(-233.248001F, -189.968002F)); + builder.AddCubicBezier(new Vector2(-232.192001F, -189.968002F), new Vector2(-231.292007F, -189.746002F), new Vector2(-230.548004F, -189.302002F)); + builder.AddCubicBezier(new Vector2(-229.804001F, -188.858002F), new Vector2(-229.227997F, -188.233994F), new Vector2(-228.820007F, -187.429993F)); + builder.AddCubicBezier(new Vector2(-228.412003F, -186.626007F), new Vector2(-228.207993F, -185.647995F), new Vector2(-228.207993F, -184.496002F)); + builder.AddLine(new Vector2(-227.020004F, -185.539993F)); + builder.AddLine(new Vector2(-239.727997F, -185.539993F)); + builder.AddLine(new Vector2(-239.727997F, -182.839996F)); + builder.AddLine(new Vector2(-225.292007F, -182.839996F)); + builder.AddCubicBezier(new Vector2(-225.220001F, -183.175995F), new Vector2(-225.171997F, -183.481995F), new Vector2(-225.147995F, -183.757996F)); + builder.AddCubicBezier(new Vector2(-225.123993F, -184.033997F), new Vector2(-225.112F, -184.292007F), new Vector2(-225.112F, -184.531998F)); + builder.AddCubicBezier(new Vector2(-225.112F, -186.164001F), new Vector2(-225.453995F, -187.615997F), new Vector2(-226.138F, -188.888F)); + builder.AddCubicBezier(new Vector2(-226.822006F, -190.160004F), new Vector2(-227.776001F, -191.156006F), new Vector2(-229F, -191.876007F)); + builder.AddCubicBezier(new Vector2(-230.223999F, -192.595993F), new Vector2(-231.615997F, -192.955994F), new Vector2(-233.175995F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-234.832001F, -192.955994F), new Vector2(-236.326004F, -192.565994F), new Vector2(-237.658005F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-238.990005F, -191.005997F), new Vector2(-240.046005F, -189.944F), new Vector2(-240.826004F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-241.606003F, -187.255997F), new Vector2(-241.996002F, -185.744003F), new Vector2(-241.996002F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-241.996002F, -182.360001F), new Vector2(-241.600006F, -180.835999F), new Vector2(-240.807999F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-240.016006F, -178.147995F), new Vector2(-238.942001F, -177.085999F), new Vector2(-237.585999F, -176.306F)); + builder.AddCubicBezier(new Vector2(-236.229996F, -175.526001F), new Vector2(-234.688004F, -175.136002F), new Vector2(-232.960007F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-231.615997F, -175.136002F), new Vector2(-230.356003F, -175.388F), new Vector2(-229.179993F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1117() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-245.632004F, -175.496002F)); + builder.AddLine(new Vector2(-245.632004F, -201.199997F)); + builder.AddLine(new Vector2(-248.871994F, -201.199997F)); + builder.AddLine(new Vector2(-248.871994F, -175.496002F)); + builder.AddLine(new Vector2(-245.632004F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1118() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-270.507996F, -168.332001F)); + builder.AddLine(new Vector2(-267.268005F, -175.352005F)); + builder.AddLine(new Vector2(-269.104004F, -178.664001F)); + builder.AddLine(new Vector2(-274.108002F, -168.332001F)); + builder.AddLine(new Vector2(-270.507996F, -168.332001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-267.268005F, -175.352005F)); + builder.AddLine(new Vector2(-259.276001F, -192.595993F)); + builder.AddLine(new Vector2(-262.876007F, -192.595993F)); + builder.AddLine(new Vector2(-268.671997F, -179.095993F)); + builder.AddLine(new Vector2(-267.519989F, -179.095993F)); + builder.AddLine(new Vector2(-273.028015F, -192.595993F)); + builder.AddLine(new Vector2(-276.627991F, -192.595993F)); + builder.AddLine(new Vector2(-269.212006F, -175.352005F)); + builder.AddLine(new Vector2(-267.268005F, -175.352005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1119() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-279.579987F, -175.496002F)); + builder.AddLine(new Vector2(-279.579987F, -201.199997F)); + builder.AddLine(new Vector2(-282.820007F, -201.199997F)); + builder.AddLine(new Vector2(-282.820007F, -175.496002F)); + builder.AddLine(new Vector2(-279.579987F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1120() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-287.536011F, -175.496002F)); + builder.AddLine(new Vector2(-287.536011F, -192.595993F)); + builder.AddLine(new Vector2(-290.812012F, -192.595993F)); + builder.AddLine(new Vector2(-290.812012F, -188.419998F)); + builder.AddLine(new Vector2(-290.200012F, -184.279999F)); + builder.AddLine(new Vector2(-290.812012F, -180.104004F)); + builder.AddLine(new Vector2(-290.812012F, -175.496002F)); + builder.AddLine(new Vector2(-287.536011F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-298.839996F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-299.679993F, -179.455994F), new Vector2(-300.334015F, -180.145996F), new Vector2(-300.802002F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-301.269989F, -181.897995F), new Vector2(-301.503998F, -182.912003F), new Vector2(-301.503998F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-301.503998F, -185.192001F), new Vector2(-301.269989F, -186.194F), new Vector2(-300.802002F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-300.334015F, -187.945999F), new Vector2(-299.686005F, -188.636002F), new Vector2(-298.858002F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-298.029999F, -189.643997F), new Vector2(-297.075989F, -189.895996F), new Vector2(-295.996002F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-294.915985F, -189.895996F), new Vector2(-293.973999F, -189.649994F), new Vector2(-293.170013F, -189.158005F)); + builder.AddCubicBezier(new Vector2(-292.365997F, -188.666F), new Vector2(-291.735992F, -187.975998F), new Vector2(-291.279999F, -187.087997F)); + builder.AddCubicBezier(new Vector2(-290.824005F, -186.199997F), new Vector2(-290.596008F, -185.179993F), new Vector2(-290.596008F, -184.028F)); + builder.AddCubicBezier(new Vector2(-290.596008F, -182.324005F), new Vector2(-291.088013F, -180.925995F), new Vector2(-292.071991F, -179.834F)); + builder.AddCubicBezier(new Vector2(-293.056F, -178.742004F), new Vector2(-294.35199F, -178.195999F), new Vector2(-295.959991F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-297.040009F, -178.195999F), new Vector2(-298F, -178.447998F), new Vector2(-298.839996F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-293.007996F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-291.976013F, -176.485992F), new Vector2(-291.153992F, -177.235992F), new Vector2(-290.541992F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-289.929993F, -179.156006F), new Vector2(-289.588013F, -180.248001F), new Vector2(-289.515991F, -181.472F)); + builder.AddLine(new Vector2(-289.515991F, -186.619995F)); + builder.AddCubicBezier(new Vector2(-289.588013F, -187.867996F), new Vector2(-289.936005F, -188.966003F), new Vector2(-290.559998F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-291.18399F, -190.862F), new Vector2(-292.006012F, -191.606003F), new Vector2(-293.026001F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-294.04599F, -192.686005F), new Vector2(-295.20401F, -192.955994F), new Vector2(-296.5F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-298.084015F, -192.955994F), new Vector2(-299.506012F, -192.559998F), new Vector2(-300.765991F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-302.026001F, -190.975998F), new Vector2(-303.022003F, -189.908005F), new Vector2(-303.753998F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-304.485992F, -187.220001F), new Vector2(-304.85199F, -185.707993F), new Vector2(-304.85199F, -184.028F)); + builder.AddCubicBezier(new Vector2(-304.85199F, -182.348007F), new Vector2(-304.485992F, -180.835999F), new Vector2(-303.753998F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-303.022003F, -178.147995F), new Vector2(-302.026001F, -177.085999F), new Vector2(-300.765991F, -176.306F)); + builder.AddCubicBezier(new Vector2(-299.506012F, -175.526001F), new Vector2(-298.084015F, -175.136002F), new Vector2(-296.5F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-295.20401F, -175.136002F), new Vector2(-294.040009F, -175.406006F), new Vector2(-293.007996F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1121() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-308.70401F, -196.610001F)); + builder.AddCubicBezier(new Vector2(-308.320007F, -197.005997F), new Vector2(-308.127991F, -197.503998F), new Vector2(-308.127991F, -198.104004F)); + builder.AddCubicBezier(new Vector2(-308.127991F, -198.679993F), new Vector2(-308.320007F, -199.166F), new Vector2(-308.70401F, -199.561996F)); + builder.AddCubicBezier(new Vector2(-309.088013F, -199.957993F), new Vector2(-309.579987F, -200.156006F), new Vector2(-310.179993F, -200.156006F)); + builder.AddCubicBezier(new Vector2(-310.779999F, -200.156006F), new Vector2(-311.272003F, -199.957993F), new Vector2(-311.656006F, -199.561996F)); + builder.AddCubicBezier(new Vector2(-312.040009F, -199.166F), new Vector2(-312.231995F, -198.679993F), new Vector2(-312.231995F, -198.104004F)); + builder.AddCubicBezier(new Vector2(-312.231995F, -197.503998F), new Vector2(-312.040009F, -197.005997F), new Vector2(-311.656006F, -196.610001F)); + builder.AddCubicBezier(new Vector2(-311.272003F, -196.214005F), new Vector2(-310.779999F, -196.016006F), new Vector2(-310.179993F, -196.016006F)); + builder.AddCubicBezier(new Vector2(-309.579987F, -196.016006F), new Vector2(-309.088013F, -196.214005F), new Vector2(-308.70401F, -196.610001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-308.559998F, -175.496002F)); + builder.AddLine(new Vector2(-308.559998F, -192.595993F)); + builder.AddLine(new Vector2(-311.835999F, -192.595993F)); + builder.AddLine(new Vector2(-311.835999F, -175.496002F)); + builder.AddLine(new Vector2(-308.559998F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1122() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-315.003998F, -189.643997F)); + builder.AddLine(new Vector2(-315.003998F, -192.595993F)); + builder.AddLine(new Vector2(-326.667999F, -192.595993F)); + builder.AddLine(new Vector2(-326.667999F, -189.643997F)); + builder.AddLine(new Vector2(-315.003998F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-319.216003F, -175.496002F)); + builder.AddLine(new Vector2(-319.216003F, -199.759995F)); + builder.AddLine(new Vector2(-322.455994F, -199.759995F)); + builder.AddLine(new Vector2(-322.455994F, -175.496002F)); + builder.AddLine(new Vector2(-319.216003F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1123() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-341.355988F, -175.496002F)); + builder.AddLine(new Vector2(-341.355988F, -192.595993F)); + builder.AddLine(new Vector2(-344.596008F, -192.595993F)); + builder.AddLine(new Vector2(-344.596008F, -175.496002F)); + builder.AddLine(new Vector2(-341.355988F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-329.26001F, -175.496002F)); + builder.AddLine(new Vector2(-329.26001F, -186.115997F)); + builder.AddCubicBezier(new Vector2(-329.26001F, -187.292007F), new Vector2(-329.548004F, -188.401993F), new Vector2(-330.123993F, -189.445999F)); + builder.AddCubicBezier(new Vector2(-330.700012F, -190.490005F), new Vector2(-331.485992F, -191.335999F), new Vector2(-332.481995F, -191.983994F)); + builder.AddCubicBezier(new Vector2(-333.477997F, -192.632004F), new Vector2(-334.623993F, -192.955994F), new Vector2(-335.920013F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-337.216003F, -192.955994F), new Vector2(-338.380005F, -192.662003F), new Vector2(-339.411987F, -192.074005F)); + builder.AddCubicBezier(new Vector2(-340.444F, -191.485992F), new Vector2(-341.247986F, -190.688004F), new Vector2(-341.824005F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-342.399994F, -188.671997F), new Vector2(-342.687988F, -187.520004F), new Vector2(-342.687988F, -186.223999F)); + builder.AddLine(new Vector2(-341.355988F, -185.468002F)); + builder.AddCubicBezier(new Vector2(-341.355988F, -186.332001F), new Vector2(-341.164001F, -187.100006F), new Vector2(-340.779999F, -187.772003F)); + builder.AddCubicBezier(new Vector2(-340.395996F, -188.444F), new Vector2(-339.868011F, -188.972F), new Vector2(-339.196014F, -189.356003F)); + builder.AddCubicBezier(new Vector2(-338.523987F, -189.740005F), new Vector2(-337.756012F, -189.932007F), new Vector2(-336.891998F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-335.596008F, -189.932007F), new Vector2(-334.54599F, -189.511993F), new Vector2(-333.742004F, -188.671997F)); + builder.AddCubicBezier(new Vector2(-332.937988F, -187.832001F), new Vector2(-332.536011F, -186.764008F), new Vector2(-332.536011F, -185.468002F)); + builder.AddLine(new Vector2(-332.536011F, -175.496002F)); + builder.AddLine(new Vector2(-329.26001F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1124() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-352.191986F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-351.015991F, -176.395996F), new Vector2(-350.007996F, -177.128006F), new Vector2(-349.167999F, -178.087997F)); + builder.AddLine(new Vector2(-351.256012F, -180.212006F)); + builder.AddCubicBezier(new Vector2(-351.832001F, -179.539993F), new Vector2(-352.522003F, -179.035995F), new Vector2(-353.325989F, -178.699997F)); + builder.AddCubicBezier(new Vector2(-354.130005F, -178.363998F), new Vector2(-355.011993F, -178.195999F), new Vector2(-355.971985F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-357.123993F, -178.195999F), new Vector2(-358.144012F, -178.442001F), new Vector2(-359.032013F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-359.920013F, -179.425995F), new Vector2(-360.604004F, -180.121994F), new Vector2(-361.084015F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-361.563995F, -181.921997F), new Vector2(-361.803986F, -182.972F), new Vector2(-361.803986F, -184.171997F)); + builder.AddCubicBezier(new Vector2(-361.803986F, -185.348007F), new Vector2(-361.575989F, -186.367996F), new Vector2(-361.119995F, -187.231995F)); + builder.AddCubicBezier(new Vector2(-360.664001F, -188.095993F), new Vector2(-360.015991F, -188.768005F), new Vector2(-359.175995F, -189.248001F)); + builder.AddCubicBezier(new Vector2(-358.335999F, -189.727997F), new Vector2(-357.364014F, -189.968002F), new Vector2(-356.26001F, -189.968002F)); + builder.AddCubicBezier(new Vector2(-355.20401F, -189.968002F), new Vector2(-354.303986F, -189.746002F), new Vector2(-353.559998F, -189.302002F)); + builder.AddCubicBezier(new Vector2(-352.81601F, -188.858002F), new Vector2(-352.23999F, -188.233994F), new Vector2(-351.832001F, -187.429993F)); + builder.AddCubicBezier(new Vector2(-351.424011F, -186.626007F), new Vector2(-351.220001F, -185.647995F), new Vector2(-351.220001F, -184.496002F)); + builder.AddLine(new Vector2(-350.032013F, -185.539993F)); + builder.AddLine(new Vector2(-362.73999F, -185.539993F)); + builder.AddLine(new Vector2(-362.73999F, -182.839996F)); + builder.AddLine(new Vector2(-348.303986F, -182.839996F)); + builder.AddCubicBezier(new Vector2(-348.231995F, -183.175995F), new Vector2(-348.18399F, -183.481995F), new Vector2(-348.160004F, -183.757996F)); + builder.AddCubicBezier(new Vector2(-348.135986F, -184.033997F), new Vector2(-348.123993F, -184.292007F), new Vector2(-348.123993F, -184.531998F)); + builder.AddCubicBezier(new Vector2(-348.123993F, -186.164001F), new Vector2(-348.466003F, -187.615997F), new Vector2(-349.149994F, -188.888F)); + builder.AddCubicBezier(new Vector2(-349.834015F, -190.160004F), new Vector2(-350.787994F, -191.156006F), new Vector2(-352.011993F, -191.876007F)); + builder.AddCubicBezier(new Vector2(-353.235992F, -192.595993F), new Vector2(-354.627991F, -192.955994F), new Vector2(-356.187988F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-357.843994F, -192.955994F), new Vector2(-359.338013F, -192.565994F), new Vector2(-360.670013F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-362.002014F, -191.005997F), new Vector2(-363.058014F, -189.944F), new Vector2(-363.838013F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-364.618011F, -187.255997F), new Vector2(-365.007996F, -185.744003F), new Vector2(-365.007996F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-365.007996F, -182.360001F), new Vector2(-364.612F, -180.835999F), new Vector2(-363.820007F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-363.028015F, -178.147995F), new Vector2(-361.95401F, -177.085999F), new Vector2(-360.597992F, -176.306F)); + builder.AddCubicBezier(new Vector2(-359.242004F, -175.526001F), new Vector2(-357.700012F, -175.136002F), new Vector2(-355.971985F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-354.627991F, -175.136002F), new Vector2(-353.368011F, -175.388F), new Vector2(-352.191986F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1125() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-366.519989F, -189.643997F)); + builder.AddLine(new Vector2(-366.519989F, -192.595993F)); + builder.AddLine(new Vector2(-378.18399F, -192.595993F)); + builder.AddLine(new Vector2(-378.18399F, -189.643997F)); + builder.AddLine(new Vector2(-366.519989F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-370.731995F, -175.496002F)); + builder.AddLine(new Vector2(-370.731995F, -199.759995F)); + builder.AddLine(new Vector2(-373.971985F, -199.759995F)); + builder.AddLine(new Vector2(-373.971985F, -175.496002F)); + builder.AddLine(new Vector2(-370.731995F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1126() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-391.467987F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-392.308014F, -179.528F), new Vector2(-392.967987F, -180.218002F), new Vector2(-393.447998F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-393.928009F, -181.970001F), new Vector2(-394.167999F, -182.972F), new Vector2(-394.167999F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-394.167999F, -185.203995F), new Vector2(-393.928009F, -186.188004F), new Vector2(-393.447998F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-392.967987F, -187.916F), new Vector2(-392.308014F, -188.593994F), new Vector2(-391.467987F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-390.627991F, -189.578003F), new Vector2(-389.679993F, -189.824005F), new Vector2(-388.623993F, -189.824005F)); + builder.AddCubicBezier(new Vector2(-387.519989F, -189.824005F), new Vector2(-386.553986F, -189.578003F), new Vector2(-385.726013F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-384.89801F, -188.593994F), new Vector2(-384.238007F, -187.916F), new Vector2(-383.746002F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-383.253998F, -186.188004F), new Vector2(-383.007996F, -185.203995F), new Vector2(-383.007996F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-383.007996F, -182.972F), new Vector2(-383.247986F, -181.970001F), new Vector2(-383.727997F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-384.208008F, -180.218002F), new Vector2(-384.868011F, -179.528F), new Vector2(-385.708008F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-386.548004F, -178.520004F), new Vector2(-387.519989F, -178.268005F), new Vector2(-388.623993F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-389.679993F, -178.268005F), new Vector2(-390.627991F, -178.520004F), new Vector2(-391.467987F, -179.024002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-384.070007F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-382.713989F, -177.115997F), new Vector2(-381.640015F, -178.190002F), new Vector2(-380.847992F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-380.056F, -180.901993F), new Vector2(-379.660004F, -182.419998F), new Vector2(-379.660004F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-379.660004F, -185.755997F), new Vector2(-380.056F, -187.255997F), new Vector2(-380.847992F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-381.640015F, -189.944F), new Vector2(-382.713989F, -191.005997F), new Vector2(-384.070007F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-385.425995F, -192.565994F), new Vector2(-386.944F, -192.955994F), new Vector2(-388.623993F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-390.279999F, -192.955994F), new Vector2(-391.779999F, -192.559998F), new Vector2(-393.123993F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-394.467987F, -190.975998F), new Vector2(-395.536011F, -189.914001F), new Vector2(-396.328003F, -188.582001F)); + builder.AddCubicBezier(new Vector2(-397.119995F, -187.25F), new Vector2(-397.515991F, -185.755997F), new Vector2(-397.515991F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-397.515991F, -182.419998F), new Vector2(-397.119995F, -180.901993F), new Vector2(-396.328003F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-395.536011F, -178.190002F), new Vector2(-394.467987F, -177.115997F), new Vector2(-393.123993F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-391.779999F, -175.531998F), new Vector2(-390.279999F, -175.136002F), new Vector2(-388.623993F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-386.944F, -175.136002F), new Vector2(-385.425995F, -175.531998F), new Vector2(-384.070007F, -176.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1127() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-411.717987F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-412.54599F, -179.455994F), new Vector2(-413.182007F, -180.145996F), new Vector2(-413.626007F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-414.070007F, -181.897995F), new Vector2(-414.291992F, -182.899994F), new Vector2(-414.291992F, -184.028F)); + builder.AddCubicBezier(new Vector2(-414.291992F, -185.179993F), new Vector2(-414.063995F, -186.194F), new Vector2(-413.608002F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-413.152008F, -187.945999F), new Vector2(-412.515991F, -188.636002F), new Vector2(-411.700012F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-410.884003F, -189.643997F), new Vector2(-409.947998F, -189.895996F), new Vector2(-408.891998F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-407.812012F, -189.895996F), new Vector2(-406.864014F, -189.643997F), new Vector2(-406.048004F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-405.231995F, -188.636002F), new Vector2(-404.589996F, -187.945999F), new Vector2(-404.122009F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-403.653992F, -186.194F), new Vector2(-403.420013F, -185.192001F), new Vector2(-403.420013F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-403.420013F, -182.912003F), new Vector2(-403.653992F, -181.897995F), new Vector2(-404.122009F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-404.589996F, -180.145996F), new Vector2(-405.231995F, -179.455994F), new Vector2(-406.048004F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-406.864014F, -178.447998F), new Vector2(-407.812012F, -178.195999F), new Vector2(-408.891998F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-409.947998F, -178.195999F), new Vector2(-410.890015F, -178.447998F), new Vector2(-411.717987F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-414.112F, -168.332001F)); + builder.AddLine(new Vector2(-414.112F, -179.779999F)); + builder.AddLine(new Vector2(-414.723999F, -183.955994F)); + builder.AddLine(new Vector2(-414.112F, -188.095993F)); + builder.AddLine(new Vector2(-414.112F, -192.595993F)); + builder.AddLine(new Vector2(-417.35199F, -192.595993F)); + builder.AddLine(new Vector2(-417.35199F, -168.332001F)); + builder.AddLine(new Vector2(-414.112F, -168.332001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-404.122009F, -176.306F)); + builder.AddCubicBezier(new Vector2(-402.862F, -177.085999F), new Vector2(-401.872009F, -178.147995F), new Vector2(-401.152008F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-400.432007F, -180.835999F), new Vector2(-400.071991F, -182.348007F), new Vector2(-400.071991F, -184.028F)); + builder.AddCubicBezier(new Vector2(-400.071991F, -185.707993F), new Vector2(-400.432007F, -187.220001F), new Vector2(-401.152008F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-401.872009F, -189.908005F), new Vector2(-402.862F, -190.975998F), new Vector2(-404.122009F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-405.381989F, -192.559998F), new Vector2(-406.791992F, -192.955994F), new Vector2(-408.35199F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-409.623993F, -192.955994F), new Vector2(-410.782013F, -192.686005F), new Vector2(-411.825989F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-412.869995F, -191.606003F), new Vector2(-413.709991F, -190.862F), new Vector2(-414.346008F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-414.981995F, -188.966003F), new Vector2(-415.335999F, -187.867996F), new Vector2(-415.40799F, -186.619995F)); + builder.AddLine(new Vector2(-415.40799F, -181.472F)); + builder.AddCubicBezier(new Vector2(-415.335999F, -180.248001F), new Vector2(-414.988007F, -179.156006F), new Vector2(-414.364014F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-413.73999F, -177.235992F), new Vector2(-412.906006F, -176.485992F), new Vector2(-411.862F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-410.817993F, -175.406006F), new Vector2(-409.64801F, -175.136002F), new Vector2(-408.35199F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-406.791992F, -175.136002F), new Vector2(-405.381989F, -175.526001F), new Vector2(-404.122009F, -176.306F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1128() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-427.971985F, -189.643997F)); + builder.AddLine(new Vector2(-427.971985F, -192.595993F)); + builder.AddLine(new Vector2(-439.635986F, -192.595993F)); + builder.AddLine(new Vector2(-439.635986F, -189.643997F)); + builder.AddLine(new Vector2(-427.971985F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-432.18399F, -175.496002F)); + builder.AddLine(new Vector2(-432.18399F, -199.759995F)); + builder.AddLine(new Vector2(-435.424011F, -199.759995F)); + builder.AddLine(new Vector2(-435.424011F, -175.496002F)); + builder.AddLine(new Vector2(-432.18399F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1129() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-454.324005F, -175.496002F)); + builder.AddLine(new Vector2(-454.324005F, -201.199997F)); + builder.AddLine(new Vector2(-457.563995F, -201.199997F)); + builder.AddLine(new Vector2(-457.563995F, -175.496002F)); + builder.AddLine(new Vector2(-454.324005F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-442.227997F, -175.496002F)); + builder.AddLine(new Vector2(-442.227997F, -186.115997F)); + builder.AddCubicBezier(new Vector2(-442.227997F, -187.460007F), new Vector2(-442.515991F, -188.647995F), new Vector2(-443.09201F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-443.667999F, -190.712006F), new Vector2(-444.45401F, -191.516006F), new Vector2(-445.450012F, -192.091995F)); + builder.AddCubicBezier(new Vector2(-446.446014F, -192.667999F), new Vector2(-447.59201F, -192.955994F), new Vector2(-448.888F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-450.18399F, -192.955994F), new Vector2(-451.347992F, -192.662003F), new Vector2(-452.380005F, -192.074005F)); + builder.AddCubicBezier(new Vector2(-453.411987F, -191.485992F), new Vector2(-454.216003F, -190.688004F), new Vector2(-454.791992F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-455.368011F, -188.671997F), new Vector2(-455.656006F, -187.520004F), new Vector2(-455.656006F, -186.223999F)); + builder.AddLine(new Vector2(-454.324005F, -185.468002F)); + builder.AddCubicBezier(new Vector2(-454.324005F, -186.332001F), new Vector2(-454.131989F, -187.100006F), new Vector2(-453.747986F, -187.772003F)); + builder.AddCubicBezier(new Vector2(-453.364014F, -188.444F), new Vector2(-452.835999F, -188.972F), new Vector2(-452.164001F, -189.356003F)); + builder.AddCubicBezier(new Vector2(-451.492004F, -189.740005F), new Vector2(-450.723999F, -189.932007F), new Vector2(-449.859985F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-448.563995F, -189.932007F), new Vector2(-447.514008F, -189.511993F), new Vector2(-446.709991F, -188.671997F)); + builder.AddCubicBezier(new Vector2(-445.906006F, -187.832001F), new Vector2(-445.503998F, -186.764008F), new Vector2(-445.503998F, -185.468002F)); + builder.AddLine(new Vector2(-445.503998F, -175.496002F)); + builder.AddLine(new Vector2(-442.227997F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1130() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-473.493988F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-474.321991F, -180.014008F), new Vector2(-474.970001F, -180.667999F), new Vector2(-475.437988F, -181.507996F)); + builder.AddCubicBezier(new Vector2(-475.906006F, -182.348007F), new Vector2(-476.140015F, -183.307999F), new Vector2(-476.140015F, -184.388F)); + builder.AddCubicBezier(new Vector2(-476.140015F, -185.468002F), new Vector2(-475.906006F, -186.421997F), new Vector2(-475.437988F, -187.25F)); + builder.AddCubicBezier(new Vector2(-474.970001F, -188.078003F), new Vector2(-474.328003F, -188.725998F), new Vector2(-473.511993F, -189.194F)); + builder.AddCubicBezier(new Vector2(-472.696014F, -189.662003F), new Vector2(-471.747986F, -189.895996F), new Vector2(-470.667999F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-469.612F, -189.895996F), new Vector2(-468.682007F, -189.662003F), new Vector2(-467.877991F, -189.194F)); + builder.AddCubicBezier(new Vector2(-467.074005F, -188.725998F), new Vector2(-466.450012F, -188.078003F), new Vector2(-466.006012F, -187.25F)); + builder.AddCubicBezier(new Vector2(-465.562012F, -186.421997F), new Vector2(-465.339996F, -185.455994F), new Vector2(-465.339996F, -184.352005F)); + builder.AddCubicBezier(new Vector2(-465.339996F, -183.248001F), new Vector2(-465.562012F, -182.281998F), new Vector2(-466.006012F, -181.453995F)); + builder.AddCubicBezier(new Vector2(-466.450012F, -180.626007F), new Vector2(-467.067993F, -179.983994F), new Vector2(-467.859985F, -179.528F)); + builder.AddCubicBezier(new Vector2(-468.652008F, -179.072006F), new Vector2(-469.588013F, -178.843994F), new Vector2(-470.667999F, -178.843994F)); + builder.AddCubicBezier(new Vector2(-471.723999F, -178.843994F), new Vector2(-472.665985F, -179.078003F), new Vector2(-473.493988F, -179.546005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-467.752014F, -176.576004F)); + builder.AddCubicBezier(new Vector2(-466.720001F, -177.104004F), new Vector2(-465.89801F, -177.841995F), new Vector2(-465.286011F, -178.789993F)); + builder.AddCubicBezier(new Vector2(-464.674011F, -179.738007F), new Vector2(-464.332001F, -180.835999F), new Vector2(-464.26001F, -182.084F)); + builder.AddLine(new Vector2(-464.26001F, -186.619995F)); + builder.AddCubicBezier(new Vector2(-464.332001F, -187.891998F), new Vector2(-464.667999F, -189.001999F), new Vector2(-465.268005F, -189.949997F)); + builder.AddCubicBezier(new Vector2(-465.868011F, -190.897995F), new Vector2(-466.690002F, -191.636002F), new Vector2(-467.734009F, -192.164001F)); + builder.AddCubicBezier(new Vector2(-468.778015F, -192.692001F), new Vector2(-469.971985F, -192.955994F), new Vector2(-471.31601F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-472.85199F, -192.955994F), new Vector2(-474.243988F, -192.578003F), new Vector2(-475.492004F, -191.822006F)); + builder.AddCubicBezier(new Vector2(-476.73999F, -191.065994F), new Vector2(-477.717987F, -190.046005F), new Vector2(-478.425995F, -188.761993F)); + builder.AddCubicBezier(new Vector2(-479.134003F, -187.477997F), new Vector2(-479.488007F, -186.020004F), new Vector2(-479.488007F, -184.388F)); + builder.AddCubicBezier(new Vector2(-479.488007F, -182.755997F), new Vector2(-479.127991F, -181.285995F), new Vector2(-478.40799F, -179.977997F)); + builder.AddCubicBezier(new Vector2(-477.687988F, -178.669998F), new Vector2(-476.709991F, -177.643997F), new Vector2(-475.473999F, -176.899994F)); + builder.AddCubicBezier(new Vector2(-474.238007F, -176.156006F), new Vector2(-472.839996F, -175.783997F), new Vector2(-471.279999F, -175.783997F)); + builder.AddCubicBezier(new Vector2(-469.959991F, -175.783997F), new Vector2(-468.783997F, -176.048004F), new Vector2(-467.752014F, -176.576004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-466.582001F, -168.998001F)); + builder.AddCubicBezier(new Vector2(-465.226013F, -169.682007F), new Vector2(-464.170013F, -170.641998F), new Vector2(-463.414001F, -171.878006F)); + builder.AddCubicBezier(new Vector2(-462.65799F, -173.113998F), new Vector2(-462.279999F, -174.548004F), new Vector2(-462.279999F, -176.179993F)); + builder.AddLine(new Vector2(-462.279999F, -192.595993F)); + builder.AddLine(new Vector2(-465.519989F, -192.595993F)); + builder.AddLine(new Vector2(-465.519989F, -188.095993F)); + builder.AddLine(new Vector2(-464.944F, -184.279999F)); + builder.AddLine(new Vector2(-465.519989F, -180.427994F)); + builder.AddLine(new Vector2(-465.519989F, -176.179993F)); + builder.AddCubicBezier(new Vector2(-465.519989F, -174.619995F), new Vector2(-466.036011F, -173.378006F), new Vector2(-467.067993F, -172.453995F)); + builder.AddCubicBezier(new Vector2(-468.100006F, -171.529999F), new Vector2(-469.480011F, -171.067993F), new Vector2(-471.208008F, -171.067993F)); + builder.AddCubicBezier(new Vector2(-472.528015F, -171.067993F), new Vector2(-473.667999F, -171.302002F), new Vector2(-474.627991F, -171.770004F)); + builder.AddCubicBezier(new Vector2(-475.588013F, -172.238007F), new Vector2(-476.415985F, -172.916F), new Vector2(-477.112F, -173.804001F)); + builder.AddLine(new Vector2(-479.235992F, -171.679993F)); + builder.AddCubicBezier(new Vector2(-478.395996F, -170.503998F), new Vector2(-477.303986F, -169.591995F), new Vector2(-475.959991F, -168.944F)); + builder.AddCubicBezier(new Vector2(-474.615997F, -168.296005F), new Vector2(-473.056F, -167.972F), new Vector2(-471.279999F, -167.972F)); + builder.AddCubicBezier(new Vector2(-469.503998F, -167.972F), new Vector2(-467.937988F, -168.313995F), new Vector2(-466.582001F, -168.998001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1131() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-483.303986F, -196.610001F)); + builder.AddCubicBezier(new Vector2(-482.920013F, -197.005997F), new Vector2(-482.727997F, -197.503998F), new Vector2(-482.727997F, -198.104004F)); + builder.AddCubicBezier(new Vector2(-482.727997F, -198.679993F), new Vector2(-482.920013F, -199.166F), new Vector2(-483.303986F, -199.561996F)); + builder.AddCubicBezier(new Vector2(-483.687988F, -199.957993F), new Vector2(-484.179993F, -200.156006F), new Vector2(-484.779999F, -200.156006F)); + builder.AddCubicBezier(new Vector2(-485.380005F, -200.156006F), new Vector2(-485.872009F, -199.957993F), new Vector2(-486.256012F, -199.561996F)); + builder.AddCubicBezier(new Vector2(-486.640015F, -199.166F), new Vector2(-486.832001F, -198.679993F), new Vector2(-486.832001F, -198.104004F)); + builder.AddCubicBezier(new Vector2(-486.832001F, -197.503998F), new Vector2(-486.640015F, -197.005997F), new Vector2(-486.256012F, -196.610001F)); + builder.AddCubicBezier(new Vector2(-485.872009F, -196.214005F), new Vector2(-485.380005F, -196.016006F), new Vector2(-484.779999F, -196.016006F)); + builder.AddCubicBezier(new Vector2(-484.179993F, -196.016006F), new Vector2(-483.687988F, -196.214005F), new Vector2(-483.303986F, -196.610001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-483.160004F, -175.496002F)); + builder.AddLine(new Vector2(-483.160004F, -192.595993F)); + builder.AddLine(new Vector2(-486.436005F, -192.595993F)); + builder.AddLine(new Vector2(-486.436005F, -175.496002F)); + builder.AddLine(new Vector2(-483.160004F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1132() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-490.828003F, -175.496002F)); + builder.AddLine(new Vector2(-490.828003F, -186.475998F)); + builder.AddCubicBezier(new Vector2(-490.828003F, -187.820007F), new Vector2(-491.122009F, -188.972F), new Vector2(-491.709991F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-492.298004F, -190.891998F), new Vector2(-493.084015F, -191.636002F), new Vector2(-494.067993F, -192.164001F)); + builder.AddCubicBezier(new Vector2(-495.052002F, -192.692001F), new Vector2(-496.167999F, -192.955994F), new Vector2(-497.415985F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-498.615997F, -192.955994F), new Vector2(-499.720001F, -192.686005F), new Vector2(-500.727997F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-501.735992F, -191.606003F), new Vector2(-502.558014F, -190.862F), new Vector2(-503.194F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-503.829987F, -188.966003F), new Vector2(-504.18399F, -187.832001F), new Vector2(-504.256012F, -186.511993F)); + builder.AddLine(new Vector2(-502.420013F, -185.828003F)); + builder.AddCubicBezier(new Vector2(-502.420013F, -186.692001F), new Vector2(-502.227997F, -187.423996F), new Vector2(-501.843994F, -188.024002F)); + builder.AddCubicBezier(new Vector2(-501.459991F, -188.623993F), new Vector2(-500.950012F, -189.091995F), new Vector2(-500.313995F, -189.427994F)); + builder.AddCubicBezier(new Vector2(-499.678009F, -189.764008F), new Vector2(-498.963989F, -189.932007F), new Vector2(-498.171997F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-497.019989F, -189.932007F), new Vector2(-496.053986F, -189.565994F), new Vector2(-495.273987F, -188.834F)); + builder.AddCubicBezier(new Vector2(-494.493988F, -188.102005F), new Vector2(-494.104004F, -187.100006F), new Vector2(-494.104004F, -185.828003F)); + builder.AddLine(new Vector2(-494.104004F, -175.496002F)); + builder.AddLine(new Vector2(-490.828003F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-502.420013F, -175.496002F)); + builder.AddLine(new Vector2(-502.420013F, -186.511993F)); + builder.AddCubicBezier(new Vector2(-502.420013F, -187.832001F), new Vector2(-502.701996F, -188.972F), new Vector2(-503.265991F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-503.829987F, -190.891998F), new Vector2(-504.597992F, -191.636002F), new Vector2(-505.570007F, -192.164001F)); + builder.AddCubicBezier(new Vector2(-506.541992F, -192.692001F), new Vector2(-507.627991F, -192.955994F), new Vector2(-508.828003F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-510.052002F, -192.955994F), new Vector2(-511.156006F, -192.686005F), new Vector2(-512.140015F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-513.124023F, -191.606003F), new Vector2(-513.89801F, -190.856003F), new Vector2(-514.461975F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-515.026001F, -188.936005F), new Vector2(-515.307983F, -187.807999F), new Vector2(-515.307983F, -186.511993F)); + builder.AddLine(new Vector2(-513.976013F, -185.828003F)); + builder.AddCubicBezier(new Vector2(-513.976013F, -186.692001F), new Vector2(-513.783997F, -187.423996F), new Vector2(-513.400024F, -188.024002F)); + builder.AddCubicBezier(new Vector2(-513.015991F, -188.623993F), new Vector2(-512.512024F, -189.091995F), new Vector2(-511.888F, -189.427994F)); + builder.AddCubicBezier(new Vector2(-511.264008F, -189.764008F), new Vector2(-510.556F, -189.932007F), new Vector2(-509.764008F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-508.588013F, -189.932007F), new Vector2(-507.609985F, -189.565994F), new Vector2(-506.829987F, -188.834F)); + builder.AddCubicBezier(new Vector2(-506.049988F, -188.102005F), new Vector2(-505.660004F, -187.100006F), new Vector2(-505.660004F, -185.828003F)); + builder.AddLine(new Vector2(-505.660004F, -175.496002F)); + builder.AddLine(new Vector2(-502.420013F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-513.976013F, -175.496002F)); + builder.AddLine(new Vector2(-513.976013F, -192.595993F)); + builder.AddLine(new Vector2(-517.216003F, -192.595993F)); + builder.AddLine(new Vector2(-517.216003F, -175.496002F)); + builder.AddLine(new Vector2(-513.976013F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1133() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-529.383972F, -201.199997F)); + builder.AddLine(new Vector2(-532.659973F, -201.199997F)); + builder.AddLine(new Vector2(-532.659973F, -188.419998F)); + builder.AddLine(new Vector2(-532.047974F, -184.279999F)); + builder.AddLine(new Vector2(-532.659973F, -180.104004F)); + builder.AddLine(new Vector2(-532.659973F, -175.496002F)); + builder.AddLine(new Vector2(-529.383972F, -175.496002F)); + builder.AddLine(new Vector2(-529.383972F, -201.199997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-540.705994F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-541.533997F, -179.425995F), new Vector2(-542.182007F, -180.115997F), new Vector2(-542.650024F, -181.003998F)); + builder.AddCubicBezier(new Vector2(-543.117981F, -181.891998F), new Vector2(-543.35199F, -182.912003F), new Vector2(-543.35199F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-543.35199F, -185.216003F), new Vector2(-543.117981F, -186.229996F), new Vector2(-542.650024F, -187.106003F)); + builder.AddCubicBezier(new Vector2(-542.182007F, -187.981995F), new Vector2(-541.539978F, -188.666F), new Vector2(-540.723999F, -189.158005F)); + builder.AddCubicBezier(new Vector2(-539.90802F, -189.649994F), new Vector2(-538.960022F, -189.895996F), new Vector2(-537.880005F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-536.799988F, -189.895996F), new Vector2(-535.85199F, -189.643997F), new Vector2(-535.036011F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-534.219971F, -188.636002F), new Vector2(-533.583984F, -187.945999F), new Vector2(-533.127991F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-532.671997F, -186.194F), new Vector2(-532.44397F, -185.179993F), new Vector2(-532.44397F, -184.028F)); + builder.AddCubicBezier(new Vector2(-532.44397F, -182.899994F), new Vector2(-532.671997F, -181.897995F), new Vector2(-533.127991F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-533.583984F, -180.145996F), new Vector2(-534.219971F, -179.455994F), new Vector2(-535.036011F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-535.85199F, -178.447998F), new Vector2(-536.799988F, -178.195999F), new Vector2(-537.880005F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-538.935974F, -178.195999F), new Vector2(-539.877991F, -178.442001F), new Vector2(-540.705994F, -178.934006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-534.892029F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-533.859985F, -176.485992F), new Vector2(-533.031982F, -177.235992F), new Vector2(-532.40802F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-531.783997F, -179.156006F), new Vector2(-531.435974F, -180.248001F), new Vector2(-531.364014F, -181.472F)); + builder.AddLine(new Vector2(-531.364014F, -186.619995F)); + builder.AddCubicBezier(new Vector2(-531.435974F, -187.867996F), new Vector2(-531.789978F, -188.966003F), new Vector2(-532.426025F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-533.062012F, -190.862F), new Vector2(-533.895996F, -191.606003F), new Vector2(-534.927979F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-535.960022F, -192.686005F), new Vector2(-537.124023F, -192.955994F), new Vector2(-538.419983F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-539.97998F, -192.955994F), new Vector2(-541.383972F, -192.559998F), new Vector2(-542.632019F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-543.880005F, -190.975998F), new Vector2(-544.869995F, -189.908005F), new Vector2(-545.60199F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-546.333984F, -187.220001F), new Vector2(-546.700012F, -185.707993F), new Vector2(-546.700012F, -184.028F)); + builder.AddCubicBezier(new Vector2(-546.700012F, -182.348007F), new Vector2(-546.333984F, -180.835999F), new Vector2(-545.60199F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-544.869995F, -178.147995F), new Vector2(-543.880005F, -177.085999F), new Vector2(-542.632019F, -176.306F)); + builder.AddCubicBezier(new Vector2(-541.383972F, -175.526001F), new Vector2(-539.97998F, -175.136002F), new Vector2(-538.419983F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-537.099976F, -175.136002F), new Vector2(-535.924011F, -175.406006F), new Vector2(-534.892029F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1134() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-562.107971F, -175.496002F)); + builder.AddLine(new Vector2(-562.107971F, -192.595993F)); + builder.AddLine(new Vector2(-565.348022F, -192.595993F)); + builder.AddLine(new Vector2(-565.348022F, -175.496002F)); + builder.AddLine(new Vector2(-562.107971F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-550.012024F, -175.496002F)); + builder.AddLine(new Vector2(-550.012024F, -186.115997F)); + builder.AddCubicBezier(new Vector2(-550.012024F, -187.292007F), new Vector2(-550.299988F, -188.401993F), new Vector2(-550.875977F, -189.445999F)); + builder.AddCubicBezier(new Vector2(-551.452026F, -190.490005F), new Vector2(-552.237976F, -191.335999F), new Vector2(-553.234009F, -191.983994F)); + builder.AddCubicBezier(new Vector2(-554.22998F, -192.632004F), new Vector2(-555.375977F, -192.955994F), new Vector2(-556.671997F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-557.968018F, -192.955994F), new Vector2(-559.132019F, -192.662003F), new Vector2(-560.164001F, -192.074005F)); + builder.AddCubicBezier(new Vector2(-561.195984F, -191.485992F), new Vector2(-562F, -190.688004F), new Vector2(-562.575989F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-563.151978F, -188.671997F), new Vector2(-563.440002F, -187.520004F), new Vector2(-563.440002F, -186.223999F)); + builder.AddLine(new Vector2(-562.107971F, -185.468002F)); + builder.AddCubicBezier(new Vector2(-562.107971F, -186.332001F), new Vector2(-561.916016F, -187.100006F), new Vector2(-561.531982F, -187.772003F)); + builder.AddCubicBezier(new Vector2(-561.14801F, -188.444F), new Vector2(-560.619995F, -188.972F), new Vector2(-559.947998F, -189.356003F)); + builder.AddCubicBezier(new Vector2(-559.276001F, -189.740005F), new Vector2(-558.507996F, -189.932007F), new Vector2(-557.643982F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-556.348022F, -189.932007F), new Vector2(-555.297974F, -189.511993F), new Vector2(-554.494019F, -188.671997F)); + builder.AddCubicBezier(new Vector2(-553.690002F, -187.832001F), new Vector2(-553.288025F, -186.764008F), new Vector2(-553.288025F, -185.468002F)); + builder.AddLine(new Vector2(-553.288025F, -175.496002F)); + builder.AddLine(new Vector2(-550.012024F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1135() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-570.064026F, -175.496002F)); + builder.AddLine(new Vector2(-570.064026F, -192.595993F)); + builder.AddLine(new Vector2(-573.340027F, -192.595993F)); + builder.AddLine(new Vector2(-573.340027F, -188.419998F)); + builder.AddLine(new Vector2(-572.728027F, -184.279999F)); + builder.AddLine(new Vector2(-573.340027F, -180.104004F)); + builder.AddLine(new Vector2(-573.340027F, -175.496002F)); + builder.AddLine(new Vector2(-570.064026F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-581.367981F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-582.208008F, -179.455994F), new Vector2(-582.862F, -180.145996F), new Vector2(-583.330017F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-583.797974F, -181.897995F), new Vector2(-584.031982F, -182.912003F), new Vector2(-584.031982F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-584.031982F, -185.192001F), new Vector2(-583.797974F, -186.194F), new Vector2(-583.330017F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-582.862F, -187.945999F), new Vector2(-582.213989F, -188.636002F), new Vector2(-581.385986F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-580.557983F, -189.643997F), new Vector2(-579.604004F, -189.895996F), new Vector2(-578.523987F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-577.44397F, -189.895996F), new Vector2(-576.502014F, -189.649994F), new Vector2(-575.697998F, -189.158005F)); + builder.AddCubicBezier(new Vector2(-574.893982F, -188.666F), new Vector2(-574.263977F, -187.975998F), new Vector2(-573.807983F, -187.087997F)); + builder.AddCubicBezier(new Vector2(-573.35199F, -186.199997F), new Vector2(-573.124023F, -185.179993F), new Vector2(-573.124023F, -184.028F)); + builder.AddCubicBezier(new Vector2(-573.124023F, -182.324005F), new Vector2(-573.616028F, -180.925995F), new Vector2(-574.599976F, -179.834F)); + builder.AddCubicBezier(new Vector2(-575.583984F, -178.742004F), new Vector2(-576.880005F, -178.195999F), new Vector2(-578.487976F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-579.567993F, -178.195999F), new Vector2(-580.528015F, -178.447998F), new Vector2(-581.367981F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-575.536011F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-574.504028F, -176.485992F), new Vector2(-573.682007F, -177.235992F), new Vector2(-573.070007F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-572.458008F, -179.156006F), new Vector2(-572.116028F, -180.248001F), new Vector2(-572.044006F, -181.472F)); + builder.AddLine(new Vector2(-572.044006F, -186.619995F)); + builder.AddCubicBezier(new Vector2(-572.116028F, -187.867996F), new Vector2(-572.463989F, -188.966003F), new Vector2(-573.088013F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-573.711975F, -190.862F), new Vector2(-574.533997F, -191.606003F), new Vector2(-575.554016F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-576.573975F, -192.686005F), new Vector2(-577.731995F, -192.955994F), new Vector2(-579.028015F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-580.612F, -192.955994F), new Vector2(-582.033997F, -192.559998F), new Vector2(-583.294006F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-584.554016F, -190.975998F), new Vector2(-585.549988F, -189.908005F), new Vector2(-586.281982F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-587.013977F, -187.220001F), new Vector2(-587.380005F, -185.707993F), new Vector2(-587.380005F, -184.028F)); + builder.AddCubicBezier(new Vector2(-587.380005F, -182.348007F), new Vector2(-587.013977F, -180.835999F), new Vector2(-586.281982F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-585.549988F, -178.147995F), new Vector2(-584.554016F, -177.085999F), new Vector2(-583.294006F, -176.306F)); + builder.AddCubicBezier(new Vector2(-582.033997F, -175.526001F), new Vector2(-580.612F, -175.136002F), new Vector2(-579.028015F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-577.731995F, -175.136002F), new Vector2(-576.567993F, -175.406006F), new Vector2(-575.536011F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1136() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-610.23999F, -175.496002F)); + builder.AddLine(new Vector2(-610.23999F, -192.595993F)); + builder.AddLine(new Vector2(-613.47998F, -192.595993F)); + builder.AddLine(new Vector2(-613.47998F, -175.496002F)); + builder.AddLine(new Vector2(-610.23999F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-598.143982F, -175.496002F)); + builder.AddLine(new Vector2(-598.143982F, -186.115997F)); + builder.AddCubicBezier(new Vector2(-598.143982F, -187.292007F), new Vector2(-598.432007F, -188.401993F), new Vector2(-599.007996F, -189.445999F)); + builder.AddCubicBezier(new Vector2(-599.583984F, -190.490005F), new Vector2(-600.369995F, -191.335999F), new Vector2(-601.366028F, -191.983994F)); + builder.AddCubicBezier(new Vector2(-602.362F, -192.632004F), new Vector2(-603.507996F, -192.955994F), new Vector2(-604.804016F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-606.099976F, -192.955994F), new Vector2(-607.263977F, -192.662003F), new Vector2(-608.296021F, -192.074005F)); + builder.AddCubicBezier(new Vector2(-609.328003F, -191.485992F), new Vector2(-610.132019F, -190.688004F), new Vector2(-610.708008F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-611.283997F, -188.671997F), new Vector2(-611.572021F, -187.520004F), new Vector2(-611.572021F, -186.223999F)); + builder.AddLine(new Vector2(-610.23999F, -185.468002F)); + builder.AddCubicBezier(new Vector2(-610.23999F, -186.332001F), new Vector2(-610.047974F, -187.100006F), new Vector2(-609.664001F, -187.772003F)); + builder.AddCubicBezier(new Vector2(-609.280029F, -188.444F), new Vector2(-608.752014F, -188.972F), new Vector2(-608.080017F, -189.356003F)); + builder.AddCubicBezier(new Vector2(-607.40802F, -189.740005F), new Vector2(-606.640015F, -189.932007F), new Vector2(-605.776001F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-604.47998F, -189.932007F), new Vector2(-603.429993F, -189.511993F), new Vector2(-602.625977F, -188.671997F)); + builder.AddCubicBezier(new Vector2(-601.822021F, -187.832001F), new Vector2(-601.419983F, -186.764008F), new Vector2(-601.419983F, -185.468002F)); + builder.AddLine(new Vector2(-601.419983F, -175.496002F)); + builder.AddLine(new Vector2(-598.143982F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1137() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-628.888F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-629.728027F, -179.528F), new Vector2(-630.388F, -180.218002F), new Vector2(-630.867981F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-631.348022F, -181.970001F), new Vector2(-631.588013F, -182.972F), new Vector2(-631.588013F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-631.588013F, -185.203995F), new Vector2(-631.348022F, -186.188004F), new Vector2(-630.867981F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-630.388F, -187.916F), new Vector2(-629.728027F, -188.593994F), new Vector2(-628.888F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-628.047974F, -189.578003F), new Vector2(-627.099976F, -189.824005F), new Vector2(-626.044006F, -189.824005F)); + builder.AddCubicBezier(new Vector2(-624.940002F, -189.824005F), new Vector2(-623.973999F, -189.578003F), new Vector2(-623.145996F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-622.317993F, -188.593994F), new Vector2(-621.65802F, -187.916F), new Vector2(-621.166016F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-620.674011F, -186.188004F), new Vector2(-620.427979F, -185.203995F), new Vector2(-620.427979F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-620.427979F, -182.972F), new Vector2(-620.66803F, -181.970001F), new Vector2(-621.14801F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-621.627991F, -180.218002F), new Vector2(-622.288025F, -179.528F), new Vector2(-623.127991F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-623.968018F, -178.520004F), new Vector2(-624.940002F, -178.268005F), new Vector2(-626.044006F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-627.099976F, -178.268005F), new Vector2(-628.047974F, -178.520004F), new Vector2(-628.888F, -179.024002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-621.48999F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-620.133972F, -177.115997F), new Vector2(-619.059998F, -178.190002F), new Vector2(-618.268005F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-617.476013F, -180.901993F), new Vector2(-617.080017F, -182.419998F), new Vector2(-617.080017F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-617.080017F, -185.755997F), new Vector2(-617.476013F, -187.255997F), new Vector2(-618.268005F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-619.059998F, -189.944F), new Vector2(-620.133972F, -191.005997F), new Vector2(-621.48999F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-622.846008F, -192.565994F), new Vector2(-624.364014F, -192.955994F), new Vector2(-626.044006F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-627.700012F, -192.955994F), new Vector2(-629.200012F, -192.559998F), new Vector2(-630.544006F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-631.888F, -190.975998F), new Vector2(-632.955994F, -189.914001F), new Vector2(-633.747986F, -188.582001F)); + builder.AddCubicBezier(new Vector2(-634.539978F, -187.25F), new Vector2(-634.935974F, -185.755997F), new Vector2(-634.935974F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-634.935974F, -182.419998F), new Vector2(-634.539978F, -180.901993F), new Vector2(-633.747986F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-632.955994F, -178.190002F), new Vector2(-631.888F, -177.115997F), new Vector2(-630.544006F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-629.200012F, -175.531998F), new Vector2(-627.700012F, -175.136002F), new Vector2(-626.044006F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-624.364014F, -175.136002F), new Vector2(-622.846008F, -175.531998F), new Vector2(-621.48999F, -176.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1138() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-638.752014F, -196.610001F)); + builder.AddCubicBezier(new Vector2(-638.367981F, -197.005997F), new Vector2(-638.176025F, -197.503998F), new Vector2(-638.176025F, -198.104004F)); + builder.AddCubicBezier(new Vector2(-638.176025F, -198.679993F), new Vector2(-638.367981F, -199.166F), new Vector2(-638.752014F, -199.561996F)); + builder.AddCubicBezier(new Vector2(-639.135986F, -199.957993F), new Vector2(-639.627991F, -200.156006F), new Vector2(-640.228027F, -200.156006F)); + builder.AddCubicBezier(new Vector2(-640.828003F, -200.156006F), new Vector2(-641.320007F, -199.957993F), new Vector2(-641.703979F, -199.561996F)); + builder.AddCubicBezier(new Vector2(-642.088013F, -199.166F), new Vector2(-642.280029F, -198.679993F), new Vector2(-642.280029F, -198.104004F)); + builder.AddCubicBezier(new Vector2(-642.280029F, -197.503998F), new Vector2(-642.088013F, -197.005997F), new Vector2(-641.703979F, -196.610001F)); + builder.AddCubicBezier(new Vector2(-641.320007F, -196.214005F), new Vector2(-640.828003F, -196.016006F), new Vector2(-640.228027F, -196.016006F)); + builder.AddCubicBezier(new Vector2(-639.627991F, -196.016006F), new Vector2(-639.135986F, -196.214005F), new Vector2(-638.752014F, -196.610001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-638.607971F, -175.496002F)); + builder.AddLine(new Vector2(-638.607971F, -192.595993F)); + builder.AddLine(new Vector2(-641.883972F, -192.595993F)); + builder.AddLine(new Vector2(-641.883972F, -175.496002F)); + builder.AddLine(new Vector2(-638.607971F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1139() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-645.052002F, -189.643997F)); + builder.AddLine(new Vector2(-645.052002F, -192.595993F)); + builder.AddLine(new Vector2(-656.716003F, -192.595993F)); + builder.AddLine(new Vector2(-656.716003F, -189.643997F)); + builder.AddLine(new Vector2(-645.052002F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-649.263977F, -175.496002F)); + builder.AddLine(new Vector2(-649.263977F, -199.759995F)); + builder.AddLine(new Vector2(-652.504028F, -199.759995F)); + builder.AddLine(new Vector2(-652.504028F, -175.496002F)); + builder.AddLine(new Vector2(-649.263977F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1140() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-659.776001F, -175.496002F)); + builder.AddLine(new Vector2(-659.776001F, -192.595993F)); + builder.AddLine(new Vector2(-663.052002F, -192.595993F)); + builder.AddLine(new Vector2(-663.052002F, -188.419998F)); + builder.AddLine(new Vector2(-662.440002F, -184.279999F)); + builder.AddLine(new Vector2(-663.052002F, -180.104004F)); + builder.AddLine(new Vector2(-663.052002F, -175.496002F)); + builder.AddLine(new Vector2(-659.776001F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-671.080017F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-671.919983F, -179.455994F), new Vector2(-672.573975F, -180.145996F), new Vector2(-673.041992F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-673.51001F, -181.897995F), new Vector2(-673.744019F, -182.912003F), new Vector2(-673.744019F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-673.744019F, -185.192001F), new Vector2(-673.51001F, -186.194F), new Vector2(-673.041992F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-672.573975F, -187.945999F), new Vector2(-671.926025F, -188.636002F), new Vector2(-671.098022F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-670.27002F, -189.643997F), new Vector2(-669.315979F, -189.895996F), new Vector2(-668.236023F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-667.156006F, -189.895996F), new Vector2(-666.213989F, -189.649994F), new Vector2(-665.409973F, -189.158005F)); + builder.AddCubicBezier(new Vector2(-664.606018F, -188.666F), new Vector2(-663.976013F, -187.975998F), new Vector2(-663.52002F, -187.087997F)); + builder.AddCubicBezier(new Vector2(-663.064026F, -186.199997F), new Vector2(-662.835999F, -185.179993F), new Vector2(-662.835999F, -184.028F)); + builder.AddCubicBezier(new Vector2(-662.835999F, -182.324005F), new Vector2(-663.328003F, -180.925995F), new Vector2(-664.312012F, -179.834F)); + builder.AddCubicBezier(new Vector2(-665.296021F, -178.742004F), new Vector2(-666.59198F, -178.195999F), new Vector2(-668.200012F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-669.280029F, -178.195999F), new Vector2(-670.23999F, -178.447998F), new Vector2(-671.080017F, -178.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-665.247986F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-664.216003F, -176.485992F), new Vector2(-663.393982F, -177.235992F), new Vector2(-662.781982F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-662.169983F, -179.156006F), new Vector2(-661.828003F, -180.248001F), new Vector2(-661.755981F, -181.472F)); + builder.AddLine(new Vector2(-661.755981F, -186.619995F)); + builder.AddCubicBezier(new Vector2(-661.828003F, -187.867996F), new Vector2(-662.176025F, -188.966003F), new Vector2(-662.799988F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-663.424011F, -190.862F), new Vector2(-664.245972F, -191.606003F), new Vector2(-665.265991F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-666.286011F, -192.686005F), new Vector2(-667.44397F, -192.955994F), new Vector2(-668.73999F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-670.323975F, -192.955994F), new Vector2(-671.745972F, -192.559998F), new Vector2(-673.005981F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-674.265991F, -190.975998F), new Vector2(-675.262024F, -189.908005F), new Vector2(-675.994019F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-676.726013F, -187.220001F), new Vector2(-677.09198F, -185.707993F), new Vector2(-677.09198F, -184.028F)); + builder.AddCubicBezier(new Vector2(-677.09198F, -182.348007F), new Vector2(-676.726013F, -180.835999F), new Vector2(-675.994019F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-675.262024F, -178.147995F), new Vector2(-674.265991F, -177.085999F), new Vector2(-673.005981F, -176.306F)); + builder.AddCubicBezier(new Vector2(-671.745972F, -175.526001F), new Vector2(-670.323975F, -175.136002F), new Vector2(-668.73999F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-667.44397F, -175.136002F), new Vector2(-666.280029F, -175.406006F), new Vector2(-665.247986F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1141() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-685.515991F, -188.744003F)); + builder.AddCubicBezier(new Vector2(-684.747986F, -189.511993F), new Vector2(-683.763977F, -189.895996F), new Vector2(-682.564026F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-681.987976F, -189.895996F), new Vector2(-681.484009F, -189.811996F), new Vector2(-681.052002F, -189.643997F)); + builder.AddCubicBezier(new Vector2(-680.619995F, -189.475998F), new Vector2(-680.223999F, -189.199997F), new Vector2(-679.864014F, -188.815994F)); + builder.AddLine(new Vector2(-677.73999F, -191.011993F)); + builder.AddCubicBezier(new Vector2(-678.340027F, -191.707993F), new Vector2(-678.987976F, -192.205994F), new Vector2(-679.684021F, -192.505997F)); + builder.AddCubicBezier(new Vector2(-680.380005F, -192.806F), new Vector2(-681.159973F, -192.955994F), new Vector2(-682.023987F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-683.919983F, -192.955994F), new Vector2(-685.372009F, -192.307999F), new Vector2(-686.380005F, -191.011993F)); + builder.AddCubicBezier(new Vector2(-687.388F, -189.716003F), new Vector2(-687.892029F, -187.975998F), new Vector2(-687.892029F, -185.792007F)); + builder.AddLine(new Vector2(-686.66803F, -185.216003F)); + builder.AddCubicBezier(new Vector2(-686.66803F, -186.800003F), new Vector2(-686.283997F, -187.975998F), new Vector2(-685.515991F, -188.744003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-686.66803F, -175.496002F)); + builder.AddLine(new Vector2(-686.66803F, -192.595993F)); + builder.AddLine(new Vector2(-689.90802F, -192.595993F)); + builder.AddLine(new Vector2(-689.90802F, -175.496002F)); + builder.AddLine(new Vector2(-686.66803F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1142() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-693.075989F, -189.643997F)); + builder.AddLine(new Vector2(-693.075989F, -192.595993F)); + builder.AddLine(new Vector2(-704.73999F, -192.595993F)); + builder.AddLine(new Vector2(-704.73999F, -189.643997F)); + builder.AddLine(new Vector2(-693.075989F, -189.643997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-697.288025F, -175.496002F)); + builder.AddLine(new Vector2(-697.288025F, -199.759995F)); + builder.AddLine(new Vector2(-700.528015F, -199.759995F)); + builder.AddLine(new Vector2(-700.528015F, -175.496002F)); + builder.AddLine(new Vector2(-697.288025F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1143() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-708.502014F, -176.539993F)); + builder.AddCubicBezier(new Vector2(-707.362F, -177.475998F), new Vector2(-706.791992F, -178.748001F), new Vector2(-706.791992F, -180.356003F)); + builder.AddCubicBezier(new Vector2(-706.791992F, -181.412003F), new Vector2(-707.013977F, -182.264008F), new Vector2(-707.458008F, -182.912003F)); + builder.AddCubicBezier(new Vector2(-707.901978F, -183.559998F), new Vector2(-708.471985F, -184.076004F), new Vector2(-709.16803F, -184.460007F)); + builder.AddCubicBezier(new Vector2(-709.864014F, -184.843994F), new Vector2(-710.596008F, -185.149994F), new Vector2(-711.364014F, -185.378006F)); + builder.AddCubicBezier(new Vector2(-712.132019F, -185.606003F), new Vector2(-712.869995F, -185.828003F), new Vector2(-713.578003F, -186.044006F)); + builder.AddCubicBezier(new Vector2(-714.286011F, -186.259995F), new Vector2(-714.856018F, -186.524002F), new Vector2(-715.288025F, -186.835999F)); + builder.AddCubicBezier(new Vector2(-715.719971F, -187.147995F), new Vector2(-715.935974F, -187.591995F), new Vector2(-715.935974F, -188.167999F)); + builder.AddCubicBezier(new Vector2(-715.935974F, -188.720001F), new Vector2(-715.690002F, -189.164001F), new Vector2(-715.197998F, -189.5F)); + builder.AddCubicBezier(new Vector2(-714.705994F, -189.835999F), new Vector2(-713.992004F, -190.003998F), new Vector2(-713.05603F, -190.003998F)); + builder.AddCubicBezier(new Vector2(-712.16803F, -190.003998F), new Vector2(-711.375977F, -189.835999F), new Vector2(-710.679993F, -189.5F)); + builder.AddCubicBezier(new Vector2(-709.984009F, -189.164001F), new Vector2(-709.383972F, -188.684006F), new Vector2(-708.880005F, -188.059998F)); + builder.AddLine(new Vector2(-706.791992F, -190.147995F)); + builder.AddCubicBezier(new Vector2(-707.463989F, -191.084F), new Vector2(-708.322021F, -191.785995F), new Vector2(-709.366028F, -192.253998F)); + builder.AddCubicBezier(new Vector2(-710.409973F, -192.722F), new Vector2(-711.604004F, -192.955994F), new Vector2(-712.947998F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-714.219971F, -192.955994F), new Vector2(-715.312012F, -192.751999F), new Vector2(-716.223999F, -192.343994F)); + builder.AddCubicBezier(new Vector2(-717.135986F, -191.936005F), new Vector2(-717.838013F, -191.354004F), new Vector2(-718.330017F, -190.598007F)); + builder.AddCubicBezier(new Vector2(-718.822021F, -189.841995F), new Vector2(-719.067993F, -188.947998F), new Vector2(-719.067993F, -187.916F)); + builder.AddCubicBezier(new Vector2(-719.067993F, -186.884003F), new Vector2(-718.846008F, -186.050003F), new Vector2(-718.401978F, -185.414001F)); + builder.AddCubicBezier(new Vector2(-717.958008F, -184.778F), new Vector2(-717.388F, -184.279999F), new Vector2(-716.692017F, -183.919998F)); + builder.AddCubicBezier(new Vector2(-715.995972F, -183.559998F), new Vector2(-715.257996F, -183.272003F), new Vector2(-714.478027F, -183.056F)); + builder.AddCubicBezier(new Vector2(-713.697998F, -182.839996F), new Vector2(-712.960022F, -182.617996F), new Vector2(-712.263977F, -182.389999F)); + builder.AddCubicBezier(new Vector2(-711.567993F, -182.162003F), new Vector2(-710.997986F, -181.873993F), new Vector2(-710.554016F, -181.526001F)); + builder.AddCubicBezier(new Vector2(-710.109985F, -181.177994F), new Vector2(-709.888F, -180.692001F), new Vector2(-709.888F, -180.067993F)); + builder.AddCubicBezier(new Vector2(-709.888F, -179.444F), new Vector2(-710.164001F, -178.957993F), new Vector2(-710.716003F, -178.610001F)); + builder.AddCubicBezier(new Vector2(-711.268005F, -178.261993F), new Vector2(-712.047974F, -178.087997F), new Vector2(-713.05603F, -178.087997F)); + builder.AddCubicBezier(new Vector2(-714.064026F, -178.087997F), new Vector2(-714.976013F, -178.274002F), new Vector2(-715.791992F, -178.645996F)); + builder.AddCubicBezier(new Vector2(-716.607971F, -179.018005F), new Vector2(-717.328003F, -179.587997F), new Vector2(-717.952026F, -180.356003F)); + builder.AddLine(new Vector2(-720.039978F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-719.512024F, -177.619995F), new Vector2(-718.893982F, -177.061996F), new Vector2(-718.185974F, -176.593994F)); + builder.AddCubicBezier(new Vector2(-717.478027F, -176.126007F), new Vector2(-716.692017F, -175.766006F), new Vector2(-715.828003F, -175.514008F)); + builder.AddCubicBezier(new Vector2(-714.963989F, -175.261993F), new Vector2(-714.052002F, -175.136002F), new Vector2(-713.09198F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-711.171997F, -175.136002F), new Vector2(-709.642029F, -175.604004F), new Vector2(-708.502014F, -176.539993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1144() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-735.015991F, -175.496002F)); + builder.AddLine(new Vector2(-735.015991F, -192.595993F)); + builder.AddLine(new Vector2(-738.255981F, -192.595993F)); + builder.AddLine(new Vector2(-738.255981F, -175.496002F)); + builder.AddLine(new Vector2(-735.015991F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-722.919983F, -175.496002F)); + builder.AddLine(new Vector2(-722.919983F, -186.115997F)); + builder.AddCubicBezier(new Vector2(-722.919983F, -187.292007F), new Vector2(-723.208008F, -188.401993F), new Vector2(-723.783997F, -189.445999F)); + builder.AddCubicBezier(new Vector2(-724.359985F, -190.490005F), new Vector2(-725.145996F, -191.335999F), new Vector2(-726.142029F, -191.983994F)); + builder.AddCubicBezier(new Vector2(-727.138F, -192.632004F), new Vector2(-728.283997F, -192.955994F), new Vector2(-729.580017F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-730.875977F, -192.955994F), new Vector2(-732.039978F, -192.662003F), new Vector2(-733.072021F, -192.074005F)); + builder.AddCubicBezier(new Vector2(-734.104004F, -191.485992F), new Vector2(-734.90802F, -190.688004F), new Vector2(-735.484009F, -189.679993F)); + builder.AddCubicBezier(new Vector2(-736.059998F, -188.671997F), new Vector2(-736.348022F, -187.520004F), new Vector2(-736.348022F, -186.223999F)); + builder.AddLine(new Vector2(-735.015991F, -185.468002F)); + builder.AddCubicBezier(new Vector2(-735.015991F, -186.332001F), new Vector2(-734.823975F, -187.100006F), new Vector2(-734.440002F, -187.772003F)); + builder.AddCubicBezier(new Vector2(-734.05603F, -188.444F), new Vector2(-733.528015F, -188.972F), new Vector2(-732.856018F, -189.356003F)); + builder.AddCubicBezier(new Vector2(-732.184021F, -189.740005F), new Vector2(-731.416016F, -189.932007F), new Vector2(-730.552002F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-729.255981F, -189.932007F), new Vector2(-728.205994F, -189.511993F), new Vector2(-727.401978F, -188.671997F)); + builder.AddCubicBezier(new Vector2(-726.598022F, -187.832001F), new Vector2(-726.195984F, -186.764008F), new Vector2(-726.195984F, -185.468002F)); + builder.AddLine(new Vector2(-726.195984F, -175.496002F)); + builder.AddLine(new Vector2(-722.919983F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1145() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-753.664001F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-754.504028F, -179.528F), new Vector2(-755.164001F, -180.218002F), new Vector2(-755.643982F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-756.124023F, -181.970001F), new Vector2(-756.364014F, -182.972F), new Vector2(-756.364014F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-756.364014F, -185.203995F), new Vector2(-756.124023F, -186.188004F), new Vector2(-755.643982F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-755.164001F, -187.916F), new Vector2(-754.504028F, -188.593994F), new Vector2(-753.664001F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-752.823975F, -189.578003F), new Vector2(-751.875977F, -189.824005F), new Vector2(-750.820007F, -189.824005F)); + builder.AddCubicBezier(new Vector2(-749.716003F, -189.824005F), new Vector2(-748.75F, -189.578003F), new Vector2(-747.921997F, -189.085999F)); + builder.AddCubicBezier(new Vector2(-747.093994F, -188.593994F), new Vector2(-746.434021F, -187.916F), new Vector2(-745.942017F, -187.052002F)); + builder.AddCubicBezier(new Vector2(-745.450012F, -186.188004F), new Vector2(-745.203979F, -185.203995F), new Vector2(-745.203979F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-745.203979F, -182.972F), new Vector2(-745.44397F, -181.970001F), new Vector2(-745.924011F, -181.093994F)); + builder.AddCubicBezier(new Vector2(-746.403992F, -180.218002F), new Vector2(-747.064026F, -179.528F), new Vector2(-747.903992F, -179.024002F)); + builder.AddCubicBezier(new Vector2(-748.744019F, -178.520004F), new Vector2(-749.716003F, -178.268005F), new Vector2(-750.820007F, -178.268005F)); + builder.AddCubicBezier(new Vector2(-751.875977F, -178.268005F), new Vector2(-752.823975F, -178.520004F), new Vector2(-753.664001F, -179.024002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-746.265991F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-744.909973F, -177.115997F), new Vector2(-743.835999F, -178.190002F), new Vector2(-743.044006F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-742.252014F, -180.901993F), new Vector2(-741.856018F, -182.419998F), new Vector2(-741.856018F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-741.856018F, -185.755997F), new Vector2(-742.252014F, -187.255997F), new Vector2(-743.044006F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-743.835999F, -189.944F), new Vector2(-744.909973F, -191.005997F), new Vector2(-746.265991F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-747.622009F, -192.565994F), new Vector2(-749.140015F, -192.955994F), new Vector2(-750.820007F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-752.476013F, -192.955994F), new Vector2(-753.976013F, -192.559998F), new Vector2(-755.320007F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-756.664001F, -190.975998F), new Vector2(-757.731995F, -189.914001F), new Vector2(-758.523987F, -188.582001F)); + builder.AddCubicBezier(new Vector2(-759.315979F, -187.25F), new Vector2(-759.711975F, -185.755997F), new Vector2(-759.711975F, -184.100006F)); + builder.AddCubicBezier(new Vector2(-759.711975F, -182.419998F), new Vector2(-759.315979F, -180.901993F), new Vector2(-758.523987F, -179.546005F)); + builder.AddCubicBezier(new Vector2(-757.731995F, -178.190002F), new Vector2(-756.664001F, -177.115997F), new Vector2(-755.320007F, -176.324005F)); + builder.AddCubicBezier(new Vector2(-753.976013F, -175.531998F), new Vector2(-752.476013F, -175.136002F), new Vector2(-750.820007F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-749.140015F, -175.136002F), new Vector2(-747.622009F, -175.531998F), new Vector2(-746.265991F, -176.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1146() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-762.987976F, -175.496002F)); + builder.AddLine(new Vector2(-762.987976F, -186.475998F)); + builder.AddCubicBezier(new Vector2(-762.987976F, -187.820007F), new Vector2(-763.281982F, -188.972F), new Vector2(-763.869995F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-764.458008F, -190.891998F), new Vector2(-765.244019F, -191.636002F), new Vector2(-766.228027F, -192.164001F)); + builder.AddCubicBezier(new Vector2(-767.211975F, -192.692001F), new Vector2(-768.328003F, -192.955994F), new Vector2(-769.575989F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-770.776001F, -192.955994F), new Vector2(-771.880005F, -192.686005F), new Vector2(-772.888F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-773.895996F, -191.606003F), new Vector2(-774.718018F, -190.862F), new Vector2(-775.354004F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-775.98999F, -188.966003F), new Vector2(-776.343994F, -187.832001F), new Vector2(-776.416016F, -186.511993F)); + builder.AddLine(new Vector2(-774.580017F, -185.828003F)); + builder.AddCubicBezier(new Vector2(-774.580017F, -186.692001F), new Vector2(-774.388F, -187.423996F), new Vector2(-774.004028F, -188.024002F)); + builder.AddCubicBezier(new Vector2(-773.619995F, -188.623993F), new Vector2(-773.109985F, -189.091995F), new Vector2(-772.473999F, -189.427994F)); + builder.AddCubicBezier(new Vector2(-771.838013F, -189.764008F), new Vector2(-771.124023F, -189.932007F), new Vector2(-770.33197F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-769.179993F, -189.932007F), new Vector2(-768.213989F, -189.565994F), new Vector2(-767.434021F, -188.834F)); + builder.AddCubicBezier(new Vector2(-766.653992F, -188.102005F), new Vector2(-766.263977F, -187.100006F), new Vector2(-766.263977F, -185.828003F)); + builder.AddLine(new Vector2(-766.263977F, -175.496002F)); + builder.AddLine(new Vector2(-762.987976F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-774.580017F, -175.496002F)); + builder.AddLine(new Vector2(-774.580017F, -186.511993F)); + builder.AddCubicBezier(new Vector2(-774.580017F, -187.832001F), new Vector2(-774.862F, -188.972F), new Vector2(-775.426025F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-775.98999F, -190.891998F), new Vector2(-776.757996F, -191.636002F), new Vector2(-777.72998F, -192.164001F)); + builder.AddCubicBezier(new Vector2(-778.702026F, -192.692001F), new Vector2(-779.788025F, -192.955994F), new Vector2(-780.987976F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-782.211975F, -192.955994F), new Vector2(-783.315979F, -192.686005F), new Vector2(-784.299988F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-785.283997F, -191.606003F), new Vector2(-786.057983F, -190.856003F), new Vector2(-786.622009F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-787.185974F, -188.936005F), new Vector2(-787.468018F, -187.807999F), new Vector2(-787.468018F, -186.511993F)); + builder.AddLine(new Vector2(-786.135986F, -185.828003F)); + builder.AddCubicBezier(new Vector2(-786.135986F, -186.692001F), new Vector2(-785.94397F, -187.423996F), new Vector2(-785.559998F, -188.024002F)); + builder.AddCubicBezier(new Vector2(-785.176025F, -188.623993F), new Vector2(-784.671997F, -189.091995F), new Vector2(-784.047974F, -189.427994F)); + builder.AddCubicBezier(new Vector2(-783.424011F, -189.764008F), new Vector2(-782.716003F, -189.932007F), new Vector2(-781.924011F, -189.932007F)); + builder.AddCubicBezier(new Vector2(-780.747986F, -189.932007F), new Vector2(-779.77002F, -189.565994F), new Vector2(-778.98999F, -188.834F)); + builder.AddCubicBezier(new Vector2(-778.210022F, -188.102005F), new Vector2(-777.820007F, -187.100006F), new Vector2(-777.820007F, -185.828003F)); + builder.AddLine(new Vector2(-777.820007F, -175.496002F)); + builder.AddLine(new Vector2(-774.580017F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-786.135986F, -175.496002F)); + builder.AddLine(new Vector2(-786.135986F, -192.595993F)); + builder.AddLine(new Vector2(-789.375977F, -192.595993F)); + builder.AddLine(new Vector2(-789.375977F, -175.496002F)); + builder.AddLine(new Vector2(-786.135986F, -175.496002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1147() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-796.971985F, -175.891998F)); + builder.AddCubicBezier(new Vector2(-795.796021F, -176.395996F), new Vector2(-794.788025F, -177.128006F), new Vector2(-793.947998F, -178.087997F)); + builder.AddLine(new Vector2(-796.036011F, -180.212006F)); + builder.AddCubicBezier(new Vector2(-796.612F, -179.539993F), new Vector2(-797.302002F, -179.035995F), new Vector2(-798.106018F, -178.699997F)); + builder.AddCubicBezier(new Vector2(-798.909973F, -178.363998F), new Vector2(-799.791992F, -178.195999F), new Vector2(-800.752014F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-801.903992F, -178.195999F), new Vector2(-802.924011F, -178.442001F), new Vector2(-803.812012F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-804.700012F, -179.425995F), new Vector2(-805.383972F, -180.121994F), new Vector2(-805.864014F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-806.343994F, -181.921997F), new Vector2(-806.583984F, -182.972F), new Vector2(-806.583984F, -184.171997F)); + builder.AddCubicBezier(new Vector2(-806.583984F, -185.348007F), new Vector2(-806.356018F, -186.367996F), new Vector2(-805.900024F, -187.231995F)); + builder.AddCubicBezier(new Vector2(-805.44397F, -188.095993F), new Vector2(-804.796021F, -188.768005F), new Vector2(-803.955994F, -189.248001F)); + builder.AddCubicBezier(new Vector2(-803.116028F, -189.727997F), new Vector2(-802.143982F, -189.968002F), new Vector2(-801.039978F, -189.968002F)); + builder.AddCubicBezier(new Vector2(-799.984009F, -189.968002F), new Vector2(-799.083984F, -189.746002F), new Vector2(-798.340027F, -189.302002F)); + builder.AddCubicBezier(new Vector2(-797.596008F, -188.858002F), new Vector2(-797.02002F, -188.233994F), new Vector2(-796.612F, -187.429993F)); + builder.AddCubicBezier(new Vector2(-796.203979F, -186.626007F), new Vector2(-796F, -185.647995F), new Vector2(-796F, -184.496002F)); + builder.AddLine(new Vector2(-794.812012F, -185.539993F)); + builder.AddLine(new Vector2(-807.52002F, -185.539993F)); + builder.AddLine(new Vector2(-807.52002F, -182.839996F)); + builder.AddLine(new Vector2(-793.083984F, -182.839996F)); + builder.AddCubicBezier(new Vector2(-793.012024F, -183.175995F), new Vector2(-792.963989F, -183.481995F), new Vector2(-792.940002F, -183.757996F)); + builder.AddCubicBezier(new Vector2(-792.916016F, -184.033997F), new Vector2(-792.903992F, -184.292007F), new Vector2(-792.903992F, -184.531998F)); + builder.AddCubicBezier(new Vector2(-792.903992F, -186.164001F), new Vector2(-793.245972F, -187.615997F), new Vector2(-793.929993F, -188.888F)); + builder.AddCubicBezier(new Vector2(-794.614014F, -190.160004F), new Vector2(-795.567993F, -191.156006F), new Vector2(-796.791992F, -191.876007F)); + builder.AddCubicBezier(new Vector2(-798.015991F, -192.595993F), new Vector2(-799.40802F, -192.955994F), new Vector2(-800.968018F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-802.624023F, -192.955994F), new Vector2(-804.117981F, -192.565994F), new Vector2(-805.450012F, -191.785995F)); + builder.AddCubicBezier(new Vector2(-806.781982F, -191.005997F), new Vector2(-807.838013F, -189.944F), new Vector2(-808.617981F, -188.600006F)); + builder.AddCubicBezier(new Vector2(-809.39801F, -187.255997F), new Vector2(-809.788025F, -185.744003F), new Vector2(-809.788025F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-809.788025F, -182.360001F), new Vector2(-809.392029F, -180.835999F), new Vector2(-808.599976F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-807.807983F, -178.147995F), new Vector2(-806.734009F, -177.085999F), new Vector2(-805.377991F, -176.306F)); + builder.AddCubicBezier(new Vector2(-804.021973F, -175.526001F), new Vector2(-802.47998F, -175.136002F), new Vector2(-800.752014F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-799.40802F, -175.136002F), new Vector2(-798.14801F, -175.388F), new Vector2(-796.971985F, -175.891998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1148() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-813.388F, -201.199997F)); + builder.AddLine(new Vector2(-816.664001F, -201.199997F)); + builder.AddLine(new Vector2(-816.664001F, -188.419998F)); + builder.AddLine(new Vector2(-816.052002F, -184.279999F)); + builder.AddLine(new Vector2(-816.664001F, -180.104004F)); + builder.AddLine(new Vector2(-816.664001F, -175.496002F)); + builder.AddLine(new Vector2(-813.388F, -175.496002F)); + builder.AddLine(new Vector2(-813.388F, -201.199997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-824.710022F, -178.934006F)); + builder.AddCubicBezier(new Vector2(-825.538025F, -179.425995F), new Vector2(-826.185974F, -180.115997F), new Vector2(-826.653992F, -181.003998F)); + builder.AddCubicBezier(new Vector2(-827.122009F, -181.891998F), new Vector2(-827.356018F, -182.912003F), new Vector2(-827.356018F, -184.063995F)); + builder.AddCubicBezier(new Vector2(-827.356018F, -185.216003F), new Vector2(-827.122009F, -186.229996F), new Vector2(-826.653992F, -187.106003F)); + builder.AddCubicBezier(new Vector2(-826.185974F, -187.981995F), new Vector2(-825.544006F, -188.666F), new Vector2(-824.728027F, -189.158005F)); + builder.AddCubicBezier(new Vector2(-823.911987F, -189.649994F), new Vector2(-822.963989F, -189.895996F), new Vector2(-821.883972F, -189.895996F)); + builder.AddCubicBezier(new Vector2(-820.804016F, -189.895996F), new Vector2(-819.856018F, -189.643997F), new Vector2(-819.039978F, -189.139999F)); + builder.AddCubicBezier(new Vector2(-818.223999F, -188.636002F), new Vector2(-817.588013F, -187.945999F), new Vector2(-817.132019F, -187.070007F)); + builder.AddCubicBezier(new Vector2(-816.676025F, -186.194F), new Vector2(-816.447998F, -185.179993F), new Vector2(-816.447998F, -184.028F)); + builder.AddCubicBezier(new Vector2(-816.447998F, -182.899994F), new Vector2(-816.676025F, -181.897995F), new Vector2(-817.132019F, -181.022003F)); + builder.AddCubicBezier(new Vector2(-817.588013F, -180.145996F), new Vector2(-818.223999F, -179.455994F), new Vector2(-819.039978F, -178.951996F)); + builder.AddCubicBezier(new Vector2(-819.856018F, -178.447998F), new Vector2(-820.804016F, -178.195999F), new Vector2(-821.883972F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-822.940002F, -178.195999F), new Vector2(-823.882019F, -178.442001F), new Vector2(-824.710022F, -178.934006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-818.895996F, -175.945999F)); + builder.AddCubicBezier(new Vector2(-817.864014F, -176.485992F), new Vector2(-817.036011F, -177.235992F), new Vector2(-816.411987F, -178.195999F)); + builder.AddCubicBezier(new Vector2(-815.788025F, -179.156006F), new Vector2(-815.440002F, -180.248001F), new Vector2(-815.367981F, -181.472F)); + builder.AddLine(new Vector2(-815.367981F, -186.619995F)); + builder.AddCubicBezier(new Vector2(-815.440002F, -187.867996F), new Vector2(-815.794006F, -188.966003F), new Vector2(-816.429993F, -189.914001F)); + builder.AddCubicBezier(new Vector2(-817.065979F, -190.862F), new Vector2(-817.900024F, -191.606003F), new Vector2(-818.932007F, -192.145996F)); + builder.AddCubicBezier(new Vector2(-819.963989F, -192.686005F), new Vector2(-821.127991F, -192.955994F), new Vector2(-822.424011F, -192.955994F)); + builder.AddCubicBezier(new Vector2(-823.984009F, -192.955994F), new Vector2(-825.388F, -192.559998F), new Vector2(-826.635986F, -191.768005F)); + builder.AddCubicBezier(new Vector2(-827.883972F, -190.975998F), new Vector2(-828.874023F, -189.908005F), new Vector2(-829.606018F, -188.563995F)); + builder.AddCubicBezier(new Vector2(-830.338013F, -187.220001F), new Vector2(-830.703979F, -185.707993F), new Vector2(-830.703979F, -184.028F)); + builder.AddCubicBezier(new Vector2(-830.703979F, -182.348007F), new Vector2(-830.338013F, -180.835999F), new Vector2(-829.606018F, -179.492004F)); + builder.AddCubicBezier(new Vector2(-828.874023F, -178.147995F), new Vector2(-827.883972F, -177.085999F), new Vector2(-826.635986F, -176.306F)); + builder.AddCubicBezier(new Vector2(-825.388F, -175.526001F), new Vector2(-823.984009F, -175.136002F), new Vector2(-822.424011F, -175.136002F)); + builder.AddCubicBezier(new Vector2(-821.104004F, -175.136002F), new Vector2(-819.927979F, -175.406006F), new Vector2(-818.895996F, -175.945999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1149() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(636.656006F, -232.843994F)); + builder.AddLine(new Vector2(636.656006F, -235.796005F)); + builder.AddLine(new Vector2(623.768005F, -235.796005F)); + builder.AddLine(new Vector2(623.768005F, -232.843994F)); + builder.AddLine(new Vector2(636.656006F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(631.219971F, -218.695999F)); + builder.AddLine(new Vector2(631.219971F, -238.352005F)); + builder.AddCubicBezier(new Vector2(631.219971F, -239.408005F), new Vector2(631.502014F, -240.229996F), new Vector2(632.065979F, -240.817993F)); + builder.AddCubicBezier(new Vector2(632.630005F, -241.406006F), new Vector2(633.427979F, -241.699997F), new Vector2(634.460022F, -241.699997F)); + builder.AddCubicBezier(new Vector2(635.012024F, -241.699997F), new Vector2(635.47998F, -241.615997F), new Vector2(635.864014F, -241.447998F)); + builder.AddCubicBezier(new Vector2(636.247986F, -241.279999F), new Vector2(636.596008F, -241.028F), new Vector2(636.90802F, -240.692001F)); + builder.AddLine(new Vector2(639.031982F, -242.779999F)); + builder.AddCubicBezier(new Vector2(638.432007F, -243.427994F), new Vector2(637.771973F, -243.919998F), new Vector2(637.052002F, -244.255997F)); + builder.AddCubicBezier(new Vector2(636.33197F, -244.591995F), new Vector2(635.47998F, -244.759995F), new Vector2(634.495972F, -244.759995F)); + builder.AddCubicBezier(new Vector2(633.200012F, -244.759995F), new Vector2(632.059998F, -244.483994F), new Vector2(631.075989F, -243.932007F)); + builder.AddCubicBezier(new Vector2(630.09198F, -243.380005F), new Vector2(629.323975F, -242.623993F), new Vector2(628.771973F, -241.664001F)); + builder.AddCubicBezier(new Vector2(628.219971F, -240.703995F), new Vector2(627.94397F, -239.600006F), new Vector2(627.94397F, -238.352005F)); + builder.AddLine(new Vector2(627.94397F, -218.695999F)); + builder.AddLine(new Vector2(631.219971F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1150() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(610.664001F, -222.223999F)); + builder.AddCubicBezier(new Vector2(609.823975F, -222.727997F), new Vector2(609.164001F, -223.417999F), new Vector2(608.684021F, -224.294006F)); + builder.AddCubicBezier(new Vector2(608.203979F, -225.169998F), new Vector2(607.963989F, -226.171997F), new Vector2(607.963989F, -227.300003F)); + builder.AddCubicBezier(new Vector2(607.963989F, -228.404007F), new Vector2(608.203979F, -229.388F), new Vector2(608.684021F, -230.251999F)); + builder.AddCubicBezier(new Vector2(609.164001F, -231.115997F), new Vector2(609.823975F, -231.794006F), new Vector2(610.664001F, -232.285995F)); + builder.AddCubicBezier(new Vector2(611.504028F, -232.778F), new Vector2(612.452026F, -233.024002F), new Vector2(613.507996F, -233.024002F)); + builder.AddCubicBezier(new Vector2(614.612F, -233.024002F), new Vector2(615.578003F, -232.778F), new Vector2(616.406006F, -232.285995F)); + builder.AddCubicBezier(new Vector2(617.234009F, -231.794006F), new Vector2(617.893982F, -231.115997F), new Vector2(618.385986F, -230.251999F)); + builder.AddCubicBezier(new Vector2(618.877991F, -229.388F), new Vector2(619.124023F, -228.404007F), new Vector2(619.124023F, -227.300003F)); + builder.AddCubicBezier(new Vector2(619.124023F, -226.171997F), new Vector2(618.883972F, -225.169998F), new Vector2(618.403992F, -224.294006F)); + builder.AddCubicBezier(new Vector2(617.924011F, -223.417999F), new Vector2(617.263977F, -222.727997F), new Vector2(616.424011F, -222.223999F)); + builder.AddCubicBezier(new Vector2(615.583984F, -221.720001F), new Vector2(614.612F, -221.468002F), new Vector2(613.507996F, -221.468002F)); + builder.AddCubicBezier(new Vector2(612.452026F, -221.468002F), new Vector2(611.504028F, -221.720001F), new Vector2(610.664001F, -222.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(618.062012F, -219.524002F)); + builder.AddCubicBezier(new Vector2(619.41803F, -220.315994F), new Vector2(620.492004F, -221.389999F), new Vector2(621.283997F, -222.746002F)); + builder.AddCubicBezier(new Vector2(622.075989F, -224.102005F), new Vector2(622.471985F, -225.619995F), new Vector2(622.471985F, -227.300003F)); + builder.AddCubicBezier(new Vector2(622.471985F, -228.955994F), new Vector2(622.075989F, -230.455994F), new Vector2(621.283997F, -231.800003F)); + builder.AddCubicBezier(new Vector2(620.492004F, -233.143997F), new Vector2(619.41803F, -234.205994F), new Vector2(618.062012F, -234.985992F)); + builder.AddCubicBezier(new Vector2(616.705994F, -235.766006F), new Vector2(615.187988F, -236.156006F), new Vector2(613.507996F, -236.156006F)); + builder.AddCubicBezier(new Vector2(611.85199F, -236.156006F), new Vector2(610.35199F, -235.759995F), new Vector2(609.007996F, -234.968002F)); + builder.AddCubicBezier(new Vector2(607.664001F, -234.175995F), new Vector2(606.596008F, -233.113998F), new Vector2(605.804016F, -231.781998F)); + builder.AddCubicBezier(new Vector2(605.012024F, -230.449997F), new Vector2(604.616028F, -228.955994F), new Vector2(604.616028F, -227.300003F)); + builder.AddCubicBezier(new Vector2(604.616028F, -225.619995F), new Vector2(605.012024F, -224.102005F), new Vector2(605.804016F, -222.746002F)); + builder.AddCubicBezier(new Vector2(606.596008F, -221.389999F), new Vector2(607.664001F, -220.315994F), new Vector2(609.007996F, -219.524002F)); + builder.AddCubicBezier(new Vector2(610.35199F, -218.731995F), new Vector2(611.85199F, -218.335999F), new Vector2(613.507996F, -218.335999F)); + builder.AddCubicBezier(new Vector2(615.187988F, -218.335999F), new Vector2(616.705994F, -218.731995F), new Vector2(618.062012F, -219.524002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1151() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(590.684021F, -219.091995F)); + builder.AddCubicBezier(new Vector2(591.859985F, -219.595993F), new Vector2(592.867981F, -220.328003F), new Vector2(593.708008F, -221.287994F)); + builder.AddLine(new Vector2(591.619995F, -223.412003F)); + builder.AddCubicBezier(new Vector2(591.044006F, -222.740005F), new Vector2(590.354004F, -222.235992F), new Vector2(589.549988F, -221.899994F)); + builder.AddCubicBezier(new Vector2(588.745972F, -221.563995F), new Vector2(587.864014F, -221.395996F), new Vector2(586.903992F, -221.395996F)); + builder.AddCubicBezier(new Vector2(585.752014F, -221.395996F), new Vector2(584.731995F, -221.641998F), new Vector2(583.843994F, -222.134003F)); + builder.AddCubicBezier(new Vector2(582.955994F, -222.626007F), new Vector2(582.271973F, -223.322006F), new Vector2(581.791992F, -224.222F)); + builder.AddCubicBezier(new Vector2(581.312012F, -225.121994F), new Vector2(581.072021F, -226.171997F), new Vector2(581.072021F, -227.371994F)); + builder.AddCubicBezier(new Vector2(581.072021F, -228.548004F), new Vector2(581.299988F, -229.567993F), new Vector2(581.755981F, -230.432007F)); + builder.AddCubicBezier(new Vector2(582.211975F, -231.296005F), new Vector2(582.859985F, -231.968002F), new Vector2(583.700012F, -232.447998F)); + builder.AddCubicBezier(new Vector2(584.539978F, -232.927994F), new Vector2(585.512024F, -233.167999F), new Vector2(586.616028F, -233.167999F)); + builder.AddCubicBezier(new Vector2(587.671997F, -233.167999F), new Vector2(588.572021F, -232.945999F), new Vector2(589.315979F, -232.501999F)); + builder.AddCubicBezier(new Vector2(590.059998F, -232.057999F), new Vector2(590.635986F, -231.434006F), new Vector2(591.044006F, -230.630005F)); + builder.AddCubicBezier(new Vector2(591.452026F, -229.826004F), new Vector2(591.656006F, -228.848007F), new Vector2(591.656006F, -227.695999F)); + builder.AddLine(new Vector2(592.843994F, -228.740005F)); + builder.AddLine(new Vector2(580.135986F, -228.740005F)); + builder.AddLine(new Vector2(580.135986F, -226.039993F)); + builder.AddLine(new Vector2(594.572021F, -226.039993F)); + builder.AddCubicBezier(new Vector2(594.643982F, -226.376007F), new Vector2(594.692017F, -226.682007F), new Vector2(594.716003F, -226.957993F)); + builder.AddCubicBezier(new Vector2(594.73999F, -227.233994F), new Vector2(594.752014F, -227.492004F), new Vector2(594.752014F, -227.731995F)); + builder.AddCubicBezier(new Vector2(594.752014F, -229.363998F), new Vector2(594.409973F, -230.815994F), new Vector2(593.726013F, -232.087997F)); + builder.AddCubicBezier(new Vector2(593.041992F, -233.360001F), new Vector2(592.088013F, -234.356003F), new Vector2(590.864014F, -235.076004F)); + builder.AddCubicBezier(new Vector2(589.640015F, -235.796005F), new Vector2(588.247986F, -236.156006F), new Vector2(586.687988F, -236.156006F)); + builder.AddCubicBezier(new Vector2(585.031982F, -236.156006F), new Vector2(583.538025F, -235.766006F), new Vector2(582.205994F, -234.985992F)); + builder.AddCubicBezier(new Vector2(580.874023F, -234.205994F), new Vector2(579.817993F, -233.143997F), new Vector2(579.038025F, -231.800003F)); + builder.AddCubicBezier(new Vector2(578.257996F, -230.455994F), new Vector2(577.867981F, -228.944F), new Vector2(577.867981F, -227.264008F)); + builder.AddCubicBezier(new Vector2(577.867981F, -225.559998F), new Vector2(578.263977F, -224.035995F), new Vector2(579.05603F, -222.692001F)); + builder.AddCubicBezier(new Vector2(579.848022F, -221.348007F), new Vector2(580.921997F, -220.285995F), new Vector2(582.278015F, -219.505997F)); + builder.AddCubicBezier(new Vector2(583.633972F, -218.725998F), new Vector2(585.176025F, -218.335999F), new Vector2(586.903992F, -218.335999F)); + builder.AddCubicBezier(new Vector2(588.247986F, -218.335999F), new Vector2(589.507996F, -218.587997F), new Vector2(590.684021F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1152() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(569.012024F, -218.695999F)); + builder.AddLine(new Vector2(576.859985F, -235.796005F)); + builder.AddLine(new Vector2(573.403992F, -235.796005F)); + builder.AddLine(new Vector2(567.067993F, -221.360001F)); + builder.AddLine(new Vector2(569.156006F, -221.360001F)); + builder.AddLine(new Vector2(562.856018F, -235.796005F)); + builder.AddLine(new Vector2(559.255981F, -235.796005F)); + builder.AddLine(new Vector2(567.104004F, -218.695999F)); + builder.AddLine(new Vector2(569.012024F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1153() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(556.52002F, -218.695999F)); + builder.AddLine(new Vector2(556.52002F, -235.796005F)); + builder.AddLine(new Vector2(553.244019F, -235.796005F)); + builder.AddLine(new Vector2(553.244019F, -231.619995F)); + builder.AddLine(new Vector2(553.856018F, -227.479996F)); + builder.AddLine(new Vector2(553.244019F, -223.304001F)); + builder.AddLine(new Vector2(553.244019F, -218.695999F)); + builder.AddLine(new Vector2(556.52002F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(545.216003F, -222.151993F)); + builder.AddCubicBezier(new Vector2(544.375977F, -222.656006F), new Vector2(543.721985F, -223.345993F), new Vector2(543.254028F, -224.222F)); + builder.AddCubicBezier(new Vector2(542.786011F, -225.098007F), new Vector2(542.552002F, -226.112F), new Vector2(542.552002F, -227.264008F)); + builder.AddCubicBezier(new Vector2(542.552002F, -228.391998F), new Vector2(542.786011F, -229.393997F), new Vector2(543.254028F, -230.270004F)); + builder.AddCubicBezier(new Vector2(543.721985F, -231.145996F), new Vector2(544.369995F, -231.835999F), new Vector2(545.197998F, -232.339996F)); + builder.AddCubicBezier(new Vector2(546.026001F, -232.843994F), new Vector2(546.97998F, -233.095993F), new Vector2(548.059998F, -233.095993F)); + builder.AddCubicBezier(new Vector2(549.140015F, -233.095993F), new Vector2(550.08197F, -232.850006F), new Vector2(550.885986F, -232.358002F)); + builder.AddCubicBezier(new Vector2(551.690002F, -231.865997F), new Vector2(552.320007F, -231.175995F), new Vector2(552.776001F, -230.287994F)); + builder.AddCubicBezier(new Vector2(553.231995F, -229.399994F), new Vector2(553.460022F, -228.380005F), new Vector2(553.460022F, -227.227997F)); + builder.AddCubicBezier(new Vector2(553.460022F, -225.524002F), new Vector2(552.968018F, -224.126007F), new Vector2(551.984009F, -223.033997F)); + builder.AddCubicBezier(new Vector2(551F, -221.942001F), new Vector2(549.703979F, -221.395996F), new Vector2(548.096008F, -221.395996F)); + builder.AddCubicBezier(new Vector2(547.015991F, -221.395996F), new Vector2(546.05603F, -221.647995F), new Vector2(545.216003F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(551.047974F, -219.145996F)); + builder.AddCubicBezier(new Vector2(552.080017F, -219.686005F), new Vector2(552.901978F, -220.436005F), new Vector2(553.513977F, -221.395996F)); + builder.AddCubicBezier(new Vector2(554.125977F, -222.356003F), new Vector2(554.468018F, -223.447998F), new Vector2(554.539978F, -224.671997F)); + builder.AddLine(new Vector2(554.539978F, -229.820007F)); + builder.AddCubicBezier(new Vector2(554.468018F, -231.067993F), new Vector2(554.119995F, -232.166F), new Vector2(553.495972F, -233.113998F)); + builder.AddCubicBezier(new Vector2(552.872009F, -234.061996F), new Vector2(552.049988F, -234.806F), new Vector2(551.030029F, -235.345993F)); + builder.AddCubicBezier(new Vector2(550.01001F, -235.886002F), new Vector2(548.85199F, -236.156006F), new Vector2(547.55603F, -236.156006F)); + builder.AddCubicBezier(new Vector2(545.971985F, -236.156006F), new Vector2(544.549988F, -235.759995F), new Vector2(543.289978F, -234.968002F)); + builder.AddCubicBezier(new Vector2(542.030029F, -234.175995F), new Vector2(541.033997F, -233.108002F), new Vector2(540.302002F, -231.764008F)); + builder.AddCubicBezier(new Vector2(539.570007F, -230.419998F), new Vector2(539.203979F, -228.908005F), new Vector2(539.203979F, -227.227997F)); + builder.AddCubicBezier(new Vector2(539.203979F, -225.548004F), new Vector2(539.570007F, -224.035995F), new Vector2(540.302002F, -222.692001F)); + builder.AddCubicBezier(new Vector2(541.033997F, -221.348007F), new Vector2(542.030029F, -220.285995F), new Vector2(543.289978F, -219.505997F)); + builder.AddCubicBezier(new Vector2(544.549988F, -218.725998F), new Vector2(545.971985F, -218.335999F), new Vector2(547.55603F, -218.335999F)); + builder.AddCubicBezier(new Vector2(548.85199F, -218.335999F), new Vector2(550.015991F, -218.606003F), new Vector2(551.047974F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1154() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(520.55603F, -218.695999F)); + builder.AddLine(new Vector2(525.523987F, -231.584F)); + builder.AddLine(new Vector2(524.335999F, -231.584F)); + builder.AddLine(new Vector2(529.268005F, -218.695999F)); + builder.AddLine(new Vector2(531.176025F, -218.695999F)); + builder.AddLine(new Vector2(537.90802F, -235.796005F)); + builder.AddLine(new Vector2(534.523987F, -235.796005F)); + builder.AddLine(new Vector2(529.627991F, -222.475998F)); + builder.AddLine(new Vector2(530.708008F, -222.475998F)); + builder.AddLine(new Vector2(525.848022F, -235.796005F)); + builder.AddLine(new Vector2(523.976013F, -235.796005F)); + builder.AddLine(new Vector2(519.116028F, -222.475998F)); + builder.AddLine(new Vector2(520.195984F, -222.475998F)); + builder.AddLine(new Vector2(515.299988F, -235.796005F)); + builder.AddLine(new Vector2(511.915985F, -235.796005F)); + builder.AddLine(new Vector2(518.64801F, -218.695999F)); + builder.AddLine(new Vector2(520.55603F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1155() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(503.167999F, -232.843994F)); + builder.AddLine(new Vector2(503.167999F, -235.796005F)); + builder.AddLine(new Vector2(491.503998F, -235.796005F)); + builder.AddLine(new Vector2(491.503998F, -232.843994F)); + builder.AddLine(new Vector2(503.167999F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(498.955994F, -218.695999F)); + builder.AddLine(new Vector2(498.955994F, -242.960007F)); + builder.AddLine(new Vector2(495.716003F, -242.960007F)); + builder.AddLine(new Vector2(495.716003F, -218.695999F)); + builder.AddLine(new Vector2(498.955994F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1156() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(490.496002F, -235.796005F)); + builder.AddLine(new Vector2(486.716003F, -235.796005F)); + builder.AddLine(new Vector2(481.963989F, -229.100006F)); + builder.AddLine(new Vector2(483.872009F, -226.796005F)); + builder.AddLine(new Vector2(490.496002F, -235.796005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(477.716003F, -218.695999F)); + builder.AddLine(new Vector2(482.791992F, -225.824005F)); + builder.AddLine(new Vector2(480.955994F, -228.199997F)); + builder.AddLine(new Vector2(473.899994F, -218.695999F)); + builder.AddLine(new Vector2(477.716003F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(490.820007F, -218.695999F)); + builder.AddLine(new Vector2(483.619995F, -228.632004F)); + builder.AddLine(new Vector2(483.007996F, -229.136002F)); + builder.AddLine(new Vector2(478.14801F, -235.796005F)); + builder.AddLine(new Vector2(474.187988F, -235.796005F)); + builder.AddLine(new Vector2(480.955994F, -226.723999F)); + builder.AddLine(new Vector2(481.567993F, -226.184006F)); + builder.AddLine(new Vector2(486.895996F, -218.695999F)); + builder.AddLine(new Vector2(490.820007F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1157() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(468.608002F, -219.091995F)); + builder.AddCubicBezier(new Vector2(469.783997F, -219.595993F), new Vector2(470.791992F, -220.328003F), new Vector2(471.631989F, -221.287994F)); + builder.AddLine(new Vector2(469.544006F, -223.412003F)); + builder.AddCubicBezier(new Vector2(468.967987F, -222.740005F), new Vector2(468.278015F, -222.235992F), new Vector2(467.473999F, -221.899994F)); + builder.AddCubicBezier(new Vector2(466.670013F, -221.563995F), new Vector2(465.787994F, -221.395996F), new Vector2(464.828003F, -221.395996F)); + builder.AddCubicBezier(new Vector2(463.675995F, -221.395996F), new Vector2(462.656006F, -221.641998F), new Vector2(461.768005F, -222.134003F)); + builder.AddCubicBezier(new Vector2(460.880005F, -222.626007F), new Vector2(460.196014F, -223.322006F), new Vector2(459.716003F, -224.222F)); + builder.AddCubicBezier(new Vector2(459.235992F, -225.121994F), new Vector2(458.996002F, -226.171997F), new Vector2(458.996002F, -227.371994F)); + builder.AddCubicBezier(new Vector2(458.996002F, -228.548004F), new Vector2(459.223999F, -229.567993F), new Vector2(459.679993F, -230.432007F)); + builder.AddCubicBezier(new Vector2(460.135986F, -231.296005F), new Vector2(460.783997F, -231.968002F), new Vector2(461.623993F, -232.447998F)); + builder.AddCubicBezier(new Vector2(462.463989F, -232.927994F), new Vector2(463.436005F, -233.167999F), new Vector2(464.540009F, -233.167999F)); + builder.AddCubicBezier(new Vector2(465.596008F, -233.167999F), new Vector2(466.496002F, -232.945999F), new Vector2(467.23999F, -232.501999F)); + builder.AddCubicBezier(new Vector2(467.984009F, -232.057999F), new Vector2(468.559998F, -231.434006F), new Vector2(468.967987F, -230.630005F)); + builder.AddCubicBezier(new Vector2(469.376007F, -229.826004F), new Vector2(469.579987F, -228.848007F), new Vector2(469.579987F, -227.695999F)); + builder.AddLine(new Vector2(470.768005F, -228.740005F)); + builder.AddLine(new Vector2(458.059998F, -228.740005F)); + builder.AddLine(new Vector2(458.059998F, -226.039993F)); + builder.AddLine(new Vector2(472.496002F, -226.039993F)); + builder.AddCubicBezier(new Vector2(472.567993F, -226.376007F), new Vector2(472.615997F, -226.682007F), new Vector2(472.640015F, -226.957993F)); + builder.AddCubicBezier(new Vector2(472.664001F, -227.233994F), new Vector2(472.675995F, -227.492004F), new Vector2(472.675995F, -227.731995F)); + builder.AddCubicBezier(new Vector2(472.675995F, -229.363998F), new Vector2(472.334015F, -230.815994F), new Vector2(471.649994F, -232.087997F)); + builder.AddCubicBezier(new Vector2(470.966003F, -233.360001F), new Vector2(470.011993F, -234.356003F), new Vector2(468.787994F, -235.076004F)); + builder.AddCubicBezier(new Vector2(467.563995F, -235.796005F), new Vector2(466.171997F, -236.156006F), new Vector2(464.612F, -236.156006F)); + builder.AddCubicBezier(new Vector2(462.955994F, -236.156006F), new Vector2(461.462006F, -235.766006F), new Vector2(460.130005F, -234.985992F)); + builder.AddCubicBezier(new Vector2(458.798004F, -234.205994F), new Vector2(457.742004F, -233.143997F), new Vector2(456.962006F, -231.800003F)); + builder.AddCubicBezier(new Vector2(456.182007F, -230.455994F), new Vector2(455.791992F, -228.944F), new Vector2(455.791992F, -227.264008F)); + builder.AddCubicBezier(new Vector2(455.791992F, -225.559998F), new Vector2(456.187988F, -224.035995F), new Vector2(456.980011F, -222.692001F)); + builder.AddCubicBezier(new Vector2(457.772003F, -221.348007F), new Vector2(458.846008F, -220.285995F), new Vector2(460.201996F, -219.505997F)); + builder.AddCubicBezier(new Vector2(461.558014F, -218.725998F), new Vector2(463.100006F, -218.335999F), new Vector2(464.828003F, -218.335999F)); + builder.AddCubicBezier(new Vector2(466.171997F, -218.335999F), new Vector2(467.432007F, -218.587997F), new Vector2(468.608002F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1158() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(440.420013F, -218.695999F)); + builder.AddLine(new Vector2(440.420013F, -235.796005F)); + builder.AddLine(new Vector2(437.179993F, -235.796005F)); + builder.AddLine(new Vector2(437.179993F, -218.695999F)); + builder.AddLine(new Vector2(440.420013F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(452.515991F, -218.695999F)); + builder.AddLine(new Vector2(452.515991F, -229.315994F)); + builder.AddCubicBezier(new Vector2(452.515991F, -230.492004F), new Vector2(452.227997F, -231.602005F), new Vector2(451.652008F, -232.645996F)); + builder.AddCubicBezier(new Vector2(451.075989F, -233.690002F), new Vector2(450.290009F, -234.535995F), new Vector2(449.294006F, -235.184006F)); + builder.AddCubicBezier(new Vector2(448.298004F, -235.832001F), new Vector2(447.152008F, -236.156006F), new Vector2(445.855988F, -236.156006F)); + builder.AddCubicBezier(new Vector2(444.559998F, -236.156006F), new Vector2(443.395996F, -235.862F), new Vector2(442.364014F, -235.274002F)); + builder.AddCubicBezier(new Vector2(441.332001F, -234.686005F), new Vector2(440.528015F, -233.888F), new Vector2(439.951996F, -232.880005F)); + builder.AddCubicBezier(new Vector2(439.376007F, -231.871994F), new Vector2(439.088013F, -230.720001F), new Vector2(439.088013F, -229.423996F)); + builder.AddLine(new Vector2(440.420013F, -228.667999F)); + builder.AddCubicBezier(new Vector2(440.420013F, -229.531998F), new Vector2(440.612F, -230.300003F), new Vector2(440.996002F, -230.972F)); + builder.AddCubicBezier(new Vector2(441.380005F, -231.643997F), new Vector2(441.90799F, -232.171997F), new Vector2(442.579987F, -232.556F)); + builder.AddCubicBezier(new Vector2(443.252014F, -232.940002F), new Vector2(444.019989F, -233.132004F), new Vector2(444.884003F, -233.132004F)); + builder.AddCubicBezier(new Vector2(446.179993F, -233.132004F), new Vector2(447.230011F, -232.712006F), new Vector2(448.033997F, -231.871994F)); + builder.AddCubicBezier(new Vector2(448.838013F, -231.031998F), new Vector2(449.23999F, -229.964005F), new Vector2(449.23999F, -228.667999F)); + builder.AddLine(new Vector2(449.23999F, -218.695999F)); + builder.AddLine(new Vector2(452.515991F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1159() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(425.011993F, -218.695999F)); + builder.AddLine(new Vector2(425.011993F, -235.796005F)); + builder.AddLine(new Vector2(421.735992F, -235.796005F)); + builder.AddLine(new Vector2(421.735992F, -231.619995F)); + builder.AddLine(new Vector2(422.347992F, -227.479996F)); + builder.AddLine(new Vector2(421.735992F, -223.304001F)); + builder.AddLine(new Vector2(421.735992F, -218.695999F)); + builder.AddLine(new Vector2(425.011993F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(413.708008F, -222.151993F)); + builder.AddCubicBezier(new Vector2(412.868011F, -222.656006F), new Vector2(412.213989F, -223.345993F), new Vector2(411.746002F, -224.222F)); + builder.AddCubicBezier(new Vector2(411.278015F, -225.098007F), new Vector2(411.044006F, -226.112F), new Vector2(411.044006F, -227.264008F)); + builder.AddCubicBezier(new Vector2(411.044006F, -228.391998F), new Vector2(411.278015F, -229.393997F), new Vector2(411.746002F, -230.270004F)); + builder.AddCubicBezier(new Vector2(412.213989F, -231.145996F), new Vector2(412.862F, -231.835999F), new Vector2(413.690002F, -232.339996F)); + builder.AddCubicBezier(new Vector2(414.518005F, -232.843994F), new Vector2(415.471985F, -233.095993F), new Vector2(416.552002F, -233.095993F)); + builder.AddCubicBezier(new Vector2(417.631989F, -233.095993F), new Vector2(418.574005F, -232.850006F), new Vector2(419.377991F, -232.358002F)); + builder.AddCubicBezier(new Vector2(420.182007F, -231.865997F), new Vector2(420.812012F, -231.175995F), new Vector2(421.268005F, -230.287994F)); + builder.AddCubicBezier(new Vector2(421.723999F, -229.399994F), new Vector2(421.951996F, -228.380005F), new Vector2(421.951996F, -227.227997F)); + builder.AddCubicBezier(new Vector2(421.951996F, -225.524002F), new Vector2(421.459991F, -224.126007F), new Vector2(420.476013F, -223.033997F)); + builder.AddCubicBezier(new Vector2(419.492004F, -221.942001F), new Vector2(418.196014F, -221.395996F), new Vector2(416.588013F, -221.395996F)); + builder.AddCubicBezier(new Vector2(415.507996F, -221.395996F), new Vector2(414.548004F, -221.647995F), new Vector2(413.708008F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(419.540009F, -219.145996F)); + builder.AddCubicBezier(new Vector2(420.571991F, -219.686005F), new Vector2(421.394012F, -220.436005F), new Vector2(422.006012F, -221.395996F)); + builder.AddCubicBezier(new Vector2(422.618011F, -222.356003F), new Vector2(422.959991F, -223.447998F), new Vector2(423.032013F, -224.671997F)); + builder.AddLine(new Vector2(423.032013F, -229.820007F)); + builder.AddCubicBezier(new Vector2(422.959991F, -231.067993F), new Vector2(422.612F, -232.166F), new Vector2(421.988007F, -233.113998F)); + builder.AddCubicBezier(new Vector2(421.364014F, -234.061996F), new Vector2(420.541992F, -234.806F), new Vector2(419.522003F, -235.345993F)); + builder.AddCubicBezier(new Vector2(418.502014F, -235.886002F), new Vector2(417.343994F, -236.156006F), new Vector2(416.048004F, -236.156006F)); + builder.AddCubicBezier(new Vector2(414.463989F, -236.156006F), new Vector2(413.041992F, -235.759995F), new Vector2(411.782013F, -234.968002F)); + builder.AddCubicBezier(new Vector2(410.522003F, -234.175995F), new Vector2(409.526001F, -233.108002F), new Vector2(408.794006F, -231.764008F)); + builder.AddCubicBezier(new Vector2(408.062012F, -230.419998F), new Vector2(407.696014F, -228.908005F), new Vector2(407.696014F, -227.227997F)); + builder.AddCubicBezier(new Vector2(407.696014F, -225.548004F), new Vector2(408.062012F, -224.035995F), new Vector2(408.794006F, -222.692001F)); + builder.AddCubicBezier(new Vector2(409.526001F, -221.348007F), new Vector2(410.522003F, -220.285995F), new Vector2(411.782013F, -219.505997F)); + builder.AddCubicBezier(new Vector2(413.041992F, -218.725998F), new Vector2(414.463989F, -218.335999F), new Vector2(416.048004F, -218.335999F)); + builder.AddCubicBezier(new Vector2(417.343994F, -218.335999F), new Vector2(418.507996F, -218.606003F), new Vector2(419.540009F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1160() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(398.084015F, -232.843994F)); + builder.AddLine(new Vector2(398.084015F, -235.796005F)); + builder.AddLine(new Vector2(385.196014F, -235.796005F)); + builder.AddLine(new Vector2(385.196014F, -232.843994F)); + builder.AddLine(new Vector2(398.084015F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(392.64801F, -218.695999F)); + builder.AddLine(new Vector2(392.64801F, -238.352005F)); + builder.AddCubicBezier(new Vector2(392.64801F, -239.408005F), new Vector2(392.929993F, -240.229996F), new Vector2(393.493988F, -240.817993F)); + builder.AddCubicBezier(new Vector2(394.058014F, -241.406006F), new Vector2(394.855988F, -241.699997F), new Vector2(395.888F, -241.699997F)); + builder.AddCubicBezier(new Vector2(396.440002F, -241.699997F), new Vector2(396.90799F, -241.615997F), new Vector2(397.291992F, -241.447998F)); + builder.AddCubicBezier(new Vector2(397.675995F, -241.279999F), new Vector2(398.023987F, -241.028F), new Vector2(398.335999F, -240.692001F)); + builder.AddLine(new Vector2(400.459991F, -242.779999F)); + builder.AddCubicBezier(new Vector2(399.859985F, -243.427994F), new Vector2(399.200012F, -243.919998F), new Vector2(398.480011F, -244.255997F)); + builder.AddCubicBezier(new Vector2(397.76001F, -244.591995F), new Vector2(396.90799F, -244.759995F), new Vector2(395.924011F, -244.759995F)); + builder.AddCubicBezier(new Vector2(394.627991F, -244.759995F), new Vector2(393.488007F, -244.483994F), new Vector2(392.503998F, -243.932007F)); + builder.AddCubicBezier(new Vector2(391.519989F, -243.380005F), new Vector2(390.752014F, -242.623993F), new Vector2(390.200012F, -241.664001F)); + builder.AddCubicBezier(new Vector2(389.64801F, -240.703995F), new Vector2(389.372009F, -239.600006F), new Vector2(389.372009F, -238.352005F)); + builder.AddLine(new Vector2(389.372009F, -218.695999F)); + builder.AddLine(new Vector2(392.64801F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1161() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(372.09201F, -222.223999F)); + builder.AddCubicBezier(new Vector2(371.252014F, -222.727997F), new Vector2(370.59201F, -223.417999F), new Vector2(370.112F, -224.294006F)); + builder.AddCubicBezier(new Vector2(369.631989F, -225.169998F), new Vector2(369.391998F, -226.171997F), new Vector2(369.391998F, -227.300003F)); + builder.AddCubicBezier(new Vector2(369.391998F, -228.404007F), new Vector2(369.631989F, -229.388F), new Vector2(370.112F, -230.251999F)); + builder.AddCubicBezier(new Vector2(370.59201F, -231.115997F), new Vector2(371.252014F, -231.794006F), new Vector2(372.09201F, -232.285995F)); + builder.AddCubicBezier(new Vector2(372.932007F, -232.778F), new Vector2(373.880005F, -233.024002F), new Vector2(374.936005F, -233.024002F)); + builder.AddCubicBezier(new Vector2(376.040009F, -233.024002F), new Vector2(377.006012F, -232.778F), new Vector2(377.834015F, -232.285995F)); + builder.AddCubicBezier(new Vector2(378.661987F, -231.794006F), new Vector2(379.321991F, -231.115997F), new Vector2(379.813995F, -230.251999F)); + builder.AddCubicBezier(new Vector2(380.306F, -229.388F), new Vector2(380.552002F, -228.404007F), new Vector2(380.552002F, -227.300003F)); + builder.AddCubicBezier(new Vector2(380.552002F, -226.171997F), new Vector2(380.312012F, -225.169998F), new Vector2(379.832001F, -224.294006F)); + builder.AddCubicBezier(new Vector2(379.35199F, -223.417999F), new Vector2(378.691986F, -222.727997F), new Vector2(377.85199F, -222.223999F)); + builder.AddCubicBezier(new Vector2(377.011993F, -221.720001F), new Vector2(376.040009F, -221.468002F), new Vector2(374.936005F, -221.468002F)); + builder.AddCubicBezier(new Vector2(373.880005F, -221.468002F), new Vector2(372.932007F, -221.720001F), new Vector2(372.09201F, -222.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(379.48999F, -219.524002F)); + builder.AddCubicBezier(new Vector2(380.846008F, -220.315994F), new Vector2(381.920013F, -221.389999F), new Vector2(382.712006F, -222.746002F)); + builder.AddCubicBezier(new Vector2(383.503998F, -224.102005F), new Vector2(383.899994F, -225.619995F), new Vector2(383.899994F, -227.300003F)); + builder.AddCubicBezier(new Vector2(383.899994F, -228.955994F), new Vector2(383.503998F, -230.455994F), new Vector2(382.712006F, -231.800003F)); + builder.AddCubicBezier(new Vector2(381.920013F, -233.143997F), new Vector2(380.846008F, -234.205994F), new Vector2(379.48999F, -234.985992F)); + builder.AddCubicBezier(new Vector2(378.134003F, -235.766006F), new Vector2(376.615997F, -236.156006F), new Vector2(374.936005F, -236.156006F)); + builder.AddCubicBezier(new Vector2(373.279999F, -236.156006F), new Vector2(371.779999F, -235.759995F), new Vector2(370.436005F, -234.968002F)); + builder.AddCubicBezier(new Vector2(369.09201F, -234.175995F), new Vector2(368.023987F, -233.113998F), new Vector2(367.231995F, -231.781998F)); + builder.AddCubicBezier(new Vector2(366.440002F, -230.449997F), new Vector2(366.044006F, -228.955994F), new Vector2(366.044006F, -227.300003F)); + builder.AddCubicBezier(new Vector2(366.044006F, -225.619995F), new Vector2(366.440002F, -224.102005F), new Vector2(367.231995F, -222.746002F)); + builder.AddCubicBezier(new Vector2(368.023987F, -221.389999F), new Vector2(369.09201F, -220.315994F), new Vector2(370.436005F, -219.524002F)); + builder.AddCubicBezier(new Vector2(371.779999F, -218.731995F), new Vector2(373.279999F, -218.335999F), new Vector2(374.936005F, -218.335999F)); + builder.AddCubicBezier(new Vector2(376.615997F, -218.335999F), new Vector2(378.134003F, -218.731995F), new Vector2(379.48999F, -219.524002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1162() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(352.112F, -219.091995F)); + builder.AddCubicBezier(new Vector2(353.287994F, -219.595993F), new Vector2(354.29599F, -220.328003F), new Vector2(355.135986F, -221.287994F)); + builder.AddLine(new Vector2(353.048004F, -223.412003F)); + builder.AddCubicBezier(new Vector2(352.471985F, -222.740005F), new Vector2(351.782013F, -222.235992F), new Vector2(350.977997F, -221.899994F)); + builder.AddCubicBezier(new Vector2(350.174011F, -221.563995F), new Vector2(349.291992F, -221.395996F), new Vector2(348.332001F, -221.395996F)); + builder.AddCubicBezier(new Vector2(347.179993F, -221.395996F), new Vector2(346.160004F, -221.641998F), new Vector2(345.272003F, -222.134003F)); + builder.AddCubicBezier(new Vector2(344.384003F, -222.626007F), new Vector2(343.700012F, -223.322006F), new Vector2(343.220001F, -224.222F)); + builder.AddCubicBezier(new Vector2(342.73999F, -225.121994F), new Vector2(342.5F, -226.171997F), new Vector2(342.5F, -227.371994F)); + builder.AddCubicBezier(new Vector2(342.5F, -228.548004F), new Vector2(342.727997F, -229.567993F), new Vector2(343.18399F, -230.432007F)); + builder.AddCubicBezier(new Vector2(343.640015F, -231.296005F), new Vector2(344.287994F, -231.968002F), new Vector2(345.127991F, -232.447998F)); + builder.AddCubicBezier(new Vector2(345.967987F, -232.927994F), new Vector2(346.940002F, -233.167999F), new Vector2(348.044006F, -233.167999F)); + builder.AddCubicBezier(new Vector2(349.100006F, -233.167999F), new Vector2(350F, -232.945999F), new Vector2(350.743988F, -232.501999F)); + builder.AddCubicBezier(new Vector2(351.488007F, -232.057999F), new Vector2(352.063995F, -231.434006F), new Vector2(352.471985F, -230.630005F)); + builder.AddCubicBezier(new Vector2(352.880005F, -229.826004F), new Vector2(353.084015F, -228.848007F), new Vector2(353.084015F, -227.695999F)); + builder.AddLine(new Vector2(354.272003F, -228.740005F)); + builder.AddLine(new Vector2(341.563995F, -228.740005F)); + builder.AddLine(new Vector2(341.563995F, -226.039993F)); + builder.AddLine(new Vector2(356F, -226.039993F)); + builder.AddCubicBezier(new Vector2(356.071991F, -226.376007F), new Vector2(356.119995F, -226.682007F), new Vector2(356.144012F, -226.957993F)); + builder.AddCubicBezier(new Vector2(356.167999F, -227.233994F), new Vector2(356.179993F, -227.492004F), new Vector2(356.179993F, -227.731995F)); + builder.AddCubicBezier(new Vector2(356.179993F, -229.363998F), new Vector2(355.838013F, -230.815994F), new Vector2(355.153992F, -232.087997F)); + builder.AddCubicBezier(new Vector2(354.470001F, -233.360001F), new Vector2(353.515991F, -234.356003F), new Vector2(352.291992F, -235.076004F)); + builder.AddCubicBezier(new Vector2(351.067993F, -235.796005F), new Vector2(349.675995F, -236.156006F), new Vector2(348.115997F, -236.156006F)); + builder.AddCubicBezier(new Vector2(346.459991F, -236.156006F), new Vector2(344.966003F, -235.766006F), new Vector2(343.634003F, -234.985992F)); + builder.AddCubicBezier(new Vector2(342.302002F, -234.205994F), new Vector2(341.246002F, -233.143997F), new Vector2(340.466003F, -231.800003F)); + builder.AddCubicBezier(new Vector2(339.686005F, -230.455994F), new Vector2(339.29599F, -228.944F), new Vector2(339.29599F, -227.264008F)); + builder.AddCubicBezier(new Vector2(339.29599F, -225.559998F), new Vector2(339.691986F, -224.035995F), new Vector2(340.484009F, -222.692001F)); + builder.AddCubicBezier(new Vector2(341.276001F, -221.348007F), new Vector2(342.350006F, -220.285995F), new Vector2(343.705994F, -219.505997F)); + builder.AddCubicBezier(new Vector2(345.062012F, -218.725998F), new Vector2(346.604004F, -218.335999F), new Vector2(348.332001F, -218.335999F)); + builder.AddCubicBezier(new Vector2(349.675995F, -218.335999F), new Vector2(350.936005F, -218.587997F), new Vector2(352.112F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1163() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(335.06601F, -219.740005F)); + builder.AddCubicBezier(new Vector2(336.205994F, -220.675995F), new Vector2(336.776001F, -221.947998F), new Vector2(336.776001F, -223.556F)); + builder.AddCubicBezier(new Vector2(336.776001F, -224.612F), new Vector2(336.553986F, -225.464005F), new Vector2(336.109985F, -226.112F)); + builder.AddCubicBezier(new Vector2(335.665985F, -226.759995F), new Vector2(335.096008F, -227.276001F), new Vector2(334.399994F, -227.660004F)); + builder.AddCubicBezier(new Vector2(333.70401F, -228.044006F), new Vector2(332.971985F, -228.350006F), new Vector2(332.20401F, -228.578003F)); + builder.AddCubicBezier(new Vector2(331.436005F, -228.806F), new Vector2(330.697998F, -229.028F), new Vector2(329.98999F, -229.244003F)); + builder.AddCubicBezier(new Vector2(329.282013F, -229.460007F), new Vector2(328.712006F, -229.723999F), new Vector2(328.279999F, -230.035995F)); + builder.AddCubicBezier(new Vector2(327.847992F, -230.348007F), new Vector2(327.631989F, -230.792007F), new Vector2(327.631989F, -231.367996F)); + builder.AddCubicBezier(new Vector2(327.631989F, -231.919998F), new Vector2(327.877991F, -232.363998F), new Vector2(328.369995F, -232.699997F)); + builder.AddCubicBezier(new Vector2(328.862F, -233.035995F), new Vector2(329.575989F, -233.203995F), new Vector2(330.511993F, -233.203995F)); + builder.AddCubicBezier(new Vector2(331.399994F, -233.203995F), new Vector2(332.191986F, -233.035995F), new Vector2(332.888F, -232.699997F)); + builder.AddCubicBezier(new Vector2(333.584015F, -232.363998F), new Vector2(334.18399F, -231.884003F), new Vector2(334.687988F, -231.259995F)); + builder.AddLine(new Vector2(336.776001F, -233.348007F)); + builder.AddCubicBezier(new Vector2(336.104004F, -234.283997F), new Vector2(335.246002F, -234.985992F), new Vector2(334.201996F, -235.453995F)); + builder.AddCubicBezier(new Vector2(333.15799F, -235.921997F), new Vector2(331.963989F, -236.156006F), new Vector2(330.619995F, -236.156006F)); + builder.AddCubicBezier(new Vector2(329.347992F, -236.156006F), new Vector2(328.256012F, -235.951996F), new Vector2(327.343994F, -235.544006F)); + builder.AddCubicBezier(new Vector2(326.432007F, -235.136002F), new Vector2(325.730011F, -234.554001F), new Vector2(325.238007F, -233.798004F)); + builder.AddCubicBezier(new Vector2(324.746002F, -233.042007F), new Vector2(324.5F, -232.147995F), new Vector2(324.5F, -231.115997F)); + builder.AddCubicBezier(new Vector2(324.5F, -230.084F), new Vector2(324.721985F, -229.25F), new Vector2(325.165985F, -228.613998F)); + builder.AddCubicBezier(new Vector2(325.609985F, -227.977997F), new Vector2(326.179993F, -227.479996F), new Vector2(326.876007F, -227.119995F)); + builder.AddCubicBezier(new Vector2(327.571991F, -226.759995F), new Vector2(328.309998F, -226.472F), new Vector2(329.089996F, -226.255997F)); + builder.AddCubicBezier(new Vector2(329.869995F, -226.039993F), new Vector2(330.608002F, -225.817993F), new Vector2(331.303986F, -225.589996F)); + builder.AddCubicBezier(new Vector2(332F, -225.362F), new Vector2(332.570007F, -225.074005F), new Vector2(333.014008F, -224.725998F)); + builder.AddCubicBezier(new Vector2(333.458008F, -224.378006F), new Vector2(333.679993F, -223.891998F), new Vector2(333.679993F, -223.268005F)); + builder.AddCubicBezier(new Vector2(333.679993F, -222.643997F), new Vector2(333.403992F, -222.158005F), new Vector2(332.85199F, -221.809998F)); + builder.AddCubicBezier(new Vector2(332.299988F, -221.462006F), new Vector2(331.519989F, -221.287994F), new Vector2(330.511993F, -221.287994F)); + builder.AddCubicBezier(new Vector2(329.503998F, -221.287994F), new Vector2(328.59201F, -221.473999F), new Vector2(327.776001F, -221.845993F)); + builder.AddCubicBezier(new Vector2(326.959991F, -222.218002F), new Vector2(326.23999F, -222.787994F), new Vector2(325.615997F, -223.556F)); + builder.AddLine(new Vector2(323.528015F, -221.468002F)); + builder.AddCubicBezier(new Vector2(324.056F, -220.820007F), new Vector2(324.674011F, -220.261993F), new Vector2(325.381989F, -219.794006F)); + builder.AddCubicBezier(new Vector2(326.089996F, -219.326004F), new Vector2(326.876007F, -218.966003F), new Vector2(327.73999F, -218.714005F)); + builder.AddCubicBezier(new Vector2(328.604004F, -218.462006F), new Vector2(329.515991F, -218.335999F), new Vector2(330.476013F, -218.335999F)); + builder.AddCubicBezier(new Vector2(332.395996F, -218.335999F), new Vector2(333.925995F, -218.804001F), new Vector2(335.06601F, -219.740005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1164() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(320.324005F, -218.695999F)); + builder.AddLine(new Vector2(320.324005F, -235.796005F)); + builder.AddLine(new Vector2(317.048004F, -235.796005F)); + builder.AddLine(new Vector2(317.048004F, -231.619995F)); + builder.AddLine(new Vector2(317.660004F, -227.479996F)); + builder.AddLine(new Vector2(317.048004F, -223.304001F)); + builder.AddLine(new Vector2(317.048004F, -218.695999F)); + builder.AddLine(new Vector2(320.324005F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(309.019989F, -222.151993F)); + builder.AddCubicBezier(new Vector2(308.179993F, -222.656006F), new Vector2(307.526001F, -223.345993F), new Vector2(307.058014F, -224.222F)); + builder.AddCubicBezier(new Vector2(306.589996F, -225.098007F), new Vector2(306.355988F, -226.112F), new Vector2(306.355988F, -227.264008F)); + builder.AddCubicBezier(new Vector2(306.355988F, -228.391998F), new Vector2(306.589996F, -229.393997F), new Vector2(307.058014F, -230.270004F)); + builder.AddCubicBezier(new Vector2(307.526001F, -231.145996F), new Vector2(308.174011F, -231.835999F), new Vector2(309.002014F, -232.339996F)); + builder.AddCubicBezier(new Vector2(309.829987F, -232.843994F), new Vector2(310.783997F, -233.095993F), new Vector2(311.864014F, -233.095993F)); + builder.AddCubicBezier(new Vector2(312.944F, -233.095993F), new Vector2(313.885986F, -232.850006F), new Vector2(314.690002F, -232.358002F)); + builder.AddCubicBezier(new Vector2(315.493988F, -231.865997F), new Vector2(316.123993F, -231.175995F), new Vector2(316.579987F, -230.287994F)); + builder.AddCubicBezier(new Vector2(317.036011F, -229.399994F), new Vector2(317.264008F, -228.380005F), new Vector2(317.264008F, -227.227997F)); + builder.AddCubicBezier(new Vector2(317.264008F, -225.524002F), new Vector2(316.772003F, -224.126007F), new Vector2(315.787994F, -223.033997F)); + builder.AddCubicBezier(new Vector2(314.803986F, -221.942001F), new Vector2(313.507996F, -221.395996F), new Vector2(311.899994F, -221.395996F)); + builder.AddCubicBezier(new Vector2(310.820007F, -221.395996F), new Vector2(309.859985F, -221.647995F), new Vector2(309.019989F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(314.85199F, -219.145996F)); + builder.AddCubicBezier(new Vector2(315.884003F, -219.686005F), new Vector2(316.705994F, -220.436005F), new Vector2(317.317993F, -221.395996F)); + builder.AddCubicBezier(new Vector2(317.929993F, -222.356003F), new Vector2(318.272003F, -223.447998F), new Vector2(318.343994F, -224.671997F)); + builder.AddLine(new Vector2(318.343994F, -229.820007F)); + builder.AddCubicBezier(new Vector2(318.272003F, -231.067993F), new Vector2(317.924011F, -232.166F), new Vector2(317.299988F, -233.113998F)); + builder.AddCubicBezier(new Vector2(316.675995F, -234.061996F), new Vector2(315.854004F, -234.806F), new Vector2(314.834015F, -235.345993F)); + builder.AddCubicBezier(new Vector2(313.813995F, -235.886002F), new Vector2(312.656006F, -236.156006F), new Vector2(311.359985F, -236.156006F)); + builder.AddCubicBezier(new Vector2(309.776001F, -236.156006F), new Vector2(308.354004F, -235.759995F), new Vector2(307.093994F, -234.968002F)); + builder.AddCubicBezier(new Vector2(305.834015F, -234.175995F), new Vector2(304.838013F, -233.108002F), new Vector2(304.105988F, -231.764008F)); + builder.AddCubicBezier(new Vector2(303.373993F, -230.419998F), new Vector2(303.007996F, -228.908005F), new Vector2(303.007996F, -227.227997F)); + builder.AddCubicBezier(new Vector2(303.007996F, -225.548004F), new Vector2(303.373993F, -224.035995F), new Vector2(304.105988F, -222.692001F)); + builder.AddCubicBezier(new Vector2(304.838013F, -221.348007F), new Vector2(305.834015F, -220.285995F), new Vector2(307.093994F, -219.505997F)); + builder.AddCubicBezier(new Vector2(308.354004F, -218.725998F), new Vector2(309.776001F, -218.335999F), new Vector2(311.359985F, -218.335999F)); + builder.AddCubicBezier(new Vector2(312.656006F, -218.335999F), new Vector2(313.820007F, -218.606003F), new Vector2(314.85199F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1165() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(298.309998F, -219.091995F)); + builder.AddCubicBezier(new Vector2(299.450012F, -219.595993F), new Vector2(300.415985F, -220.304001F), new Vector2(301.208008F, -221.216003F)); + builder.AddLine(new Vector2(299.084015F, -223.376007F)); + builder.AddCubicBezier(new Vector2(298.532013F, -222.751999F), new Vector2(297.877991F, -222.278F), new Vector2(297.122009F, -221.953995F)); + builder.AddCubicBezier(new Vector2(296.365997F, -221.630005F), new Vector2(295.532013F, -221.468002F), new Vector2(294.619995F, -221.468002F)); + builder.AddCubicBezier(new Vector2(293.540009F, -221.468002F), new Vector2(292.579987F, -221.720001F), new Vector2(291.73999F, -222.223999F)); + builder.AddCubicBezier(new Vector2(290.899994F, -222.727997F), new Vector2(290.23999F, -223.412003F), new Vector2(289.76001F, -224.276001F)); + builder.AddCubicBezier(new Vector2(289.279999F, -225.139999F), new Vector2(289.040009F, -226.136002F), new Vector2(289.040009F, -227.264008F)); + builder.AddCubicBezier(new Vector2(289.040009F, -228.391998F), new Vector2(289.279999F, -229.388F), new Vector2(289.76001F, -230.251999F)); + builder.AddCubicBezier(new Vector2(290.23999F, -231.115997F), new Vector2(290.899994F, -231.794006F), new Vector2(291.73999F, -232.285995F)); + builder.AddCubicBezier(new Vector2(292.579987F, -232.778F), new Vector2(293.540009F, -233.024002F), new Vector2(294.619995F, -233.024002F)); + builder.AddCubicBezier(new Vector2(295.507996F, -233.024002F), new Vector2(296.335999F, -232.862F), new Vector2(297.104004F, -232.537994F)); + builder.AddCubicBezier(new Vector2(297.872009F, -232.214005F), new Vector2(298.519989F, -231.740005F), new Vector2(299.048004F, -231.115997F)); + builder.AddLine(new Vector2(301.208008F, -233.276001F)); + builder.AddCubicBezier(new Vector2(300.391998F, -234.212006F), new Vector2(299.420013F, -234.925995F), new Vector2(298.291992F, -235.417999F)); + builder.AddCubicBezier(new Vector2(297.164001F, -235.910004F), new Vector2(295.940002F, -236.156006F), new Vector2(294.619995F, -236.156006F)); + builder.AddCubicBezier(new Vector2(292.940002F, -236.156006F), new Vector2(291.421997F, -235.766006F), new Vector2(290.06601F, -234.985992F)); + builder.AddCubicBezier(new Vector2(288.709991F, -234.205994F), new Vector2(287.641998F, -233.143997F), new Vector2(286.862F, -231.800003F)); + builder.AddCubicBezier(new Vector2(286.082001F, -230.455994F), new Vector2(285.691986F, -228.944F), new Vector2(285.691986F, -227.264008F)); + builder.AddCubicBezier(new Vector2(285.691986F, -225.608002F), new Vector2(286.082001F, -224.102005F), new Vector2(286.862F, -222.746002F)); + builder.AddCubicBezier(new Vector2(287.641998F, -221.389999F), new Vector2(288.709991F, -220.315994F), new Vector2(290.06601F, -219.524002F)); + builder.AddCubicBezier(new Vector2(291.421997F, -218.731995F), new Vector2(292.940002F, -218.335999F), new Vector2(294.619995F, -218.335999F)); + builder.AddCubicBezier(new Vector2(295.940002F, -218.335999F), new Vector2(297.170013F, -218.587997F), new Vector2(298.309998F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1166() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(262.868011F, -218.695999F)); + builder.AddLine(new Vector2(262.868011F, -235.796005F)); + builder.AddLine(new Vector2(259.627991F, -235.796005F)); + builder.AddLine(new Vector2(259.627991F, -218.695999F)); + builder.AddLine(new Vector2(262.868011F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(274.963989F, -218.695999F)); + builder.AddLine(new Vector2(274.963989F, -229.315994F)); + builder.AddCubicBezier(new Vector2(274.963989F, -230.492004F), new Vector2(274.675995F, -231.602005F), new Vector2(274.100006F, -232.645996F)); + builder.AddCubicBezier(new Vector2(273.523987F, -233.690002F), new Vector2(272.738007F, -234.535995F), new Vector2(271.742004F, -235.184006F)); + builder.AddCubicBezier(new Vector2(270.746002F, -235.832001F), new Vector2(269.600006F, -236.156006F), new Vector2(268.303986F, -236.156006F)); + builder.AddCubicBezier(new Vector2(267.007996F, -236.156006F), new Vector2(265.843994F, -235.862F), new Vector2(264.812012F, -235.274002F)); + builder.AddCubicBezier(new Vector2(263.779999F, -234.686005F), new Vector2(262.976013F, -233.888F), new Vector2(262.399994F, -232.880005F)); + builder.AddCubicBezier(new Vector2(261.824005F, -231.871994F), new Vector2(261.536011F, -230.720001F), new Vector2(261.536011F, -229.423996F)); + builder.AddLine(new Vector2(262.868011F, -228.667999F)); + builder.AddCubicBezier(new Vector2(262.868011F, -229.531998F), new Vector2(263.059998F, -230.300003F), new Vector2(263.444F, -230.972F)); + builder.AddCubicBezier(new Vector2(263.828003F, -231.643997F), new Vector2(264.355988F, -232.171997F), new Vector2(265.028015F, -232.556F)); + builder.AddCubicBezier(new Vector2(265.700012F, -232.940002F), new Vector2(266.467987F, -233.132004F), new Vector2(267.332001F, -233.132004F)); + builder.AddCubicBezier(new Vector2(268.627991F, -233.132004F), new Vector2(269.678009F, -232.712006F), new Vector2(270.481995F, -231.871994F)); + builder.AddCubicBezier(new Vector2(271.286011F, -231.031998F), new Vector2(271.687988F, -229.964005F), new Vector2(271.687988F, -228.667999F)); + builder.AddLine(new Vector2(271.687988F, -218.695999F)); + builder.AddLine(new Vector2(274.963989F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1167() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(254.695999F, -239.809998F)); + builder.AddCubicBezier(new Vector2(255.080002F, -240.205994F), new Vector2(255.272003F, -240.703995F), new Vector2(255.272003F, -241.304001F)); + builder.AddCubicBezier(new Vector2(255.272003F, -241.880005F), new Vector2(255.080002F, -242.365997F), new Vector2(254.695999F, -242.761993F)); + builder.AddCubicBezier(new Vector2(254.311996F, -243.158005F), new Vector2(253.820007F, -243.356003F), new Vector2(253.220001F, -243.356003F)); + builder.AddCubicBezier(new Vector2(252.619995F, -243.356003F), new Vector2(252.128006F, -243.158005F), new Vector2(251.744003F, -242.761993F)); + builder.AddCubicBezier(new Vector2(251.360001F, -242.365997F), new Vector2(251.167999F, -241.880005F), new Vector2(251.167999F, -241.304001F)); + builder.AddCubicBezier(new Vector2(251.167999F, -240.703995F), new Vector2(251.360001F, -240.205994F), new Vector2(251.744003F, -239.809998F)); + builder.AddCubicBezier(new Vector2(252.128006F, -239.414001F), new Vector2(252.619995F, -239.216003F), new Vector2(253.220001F, -239.216003F)); + builder.AddCubicBezier(new Vector2(253.820007F, -239.216003F), new Vector2(254.311996F, -239.414001F), new Vector2(254.695999F, -239.809998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(254.839996F, -218.695999F)); + builder.AddLine(new Vector2(254.839996F, -235.796005F)); + builder.AddLine(new Vector2(251.563995F, -235.796005F)); + builder.AddLine(new Vector2(251.563995F, -218.695999F)); + builder.AddLine(new Vector2(254.839996F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1168() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(239.395996F, -244.399994F)); + builder.AddLine(new Vector2(236.119995F, -244.399994F)); + builder.AddLine(new Vector2(236.119995F, -231.619995F)); + builder.AddLine(new Vector2(236.731995F, -227.479996F)); + builder.AddLine(new Vector2(236.119995F, -223.304001F)); + builder.AddLine(new Vector2(236.119995F, -218.695999F)); + builder.AddLine(new Vector2(239.395996F, -218.695999F)); + builder.AddLine(new Vector2(239.395996F, -244.399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(228.074005F, -222.134003F)); + builder.AddCubicBezier(new Vector2(227.246002F, -222.626007F), new Vector2(226.598007F, -223.315994F), new Vector2(226.130005F, -224.203995F)); + builder.AddCubicBezier(new Vector2(225.662003F, -225.091995F), new Vector2(225.427994F, -226.112F), new Vector2(225.427994F, -227.264008F)); + builder.AddCubicBezier(new Vector2(225.427994F, -228.416F), new Vector2(225.662003F, -229.429993F), new Vector2(226.130005F, -230.306F)); + builder.AddCubicBezier(new Vector2(226.598007F, -231.182007F), new Vector2(227.240005F, -231.865997F), new Vector2(228.056F, -232.358002F)); + builder.AddCubicBezier(new Vector2(228.871994F, -232.850006F), new Vector2(229.820007F, -233.095993F), new Vector2(230.899994F, -233.095993F)); + builder.AddCubicBezier(new Vector2(231.979996F, -233.095993F), new Vector2(232.927994F, -232.843994F), new Vector2(233.744003F, -232.339996F)); + builder.AddCubicBezier(new Vector2(234.559998F, -231.835999F), new Vector2(235.195999F, -231.145996F), new Vector2(235.651993F, -230.270004F)); + builder.AddCubicBezier(new Vector2(236.108002F, -229.393997F), new Vector2(236.335999F, -228.380005F), new Vector2(236.335999F, -227.227997F)); + builder.AddCubicBezier(new Vector2(236.335999F, -226.100006F), new Vector2(236.108002F, -225.098007F), new Vector2(235.651993F, -224.222F)); + builder.AddCubicBezier(new Vector2(235.195999F, -223.345993F), new Vector2(234.559998F, -222.656006F), new Vector2(233.744003F, -222.151993F)); + builder.AddCubicBezier(new Vector2(232.927994F, -221.647995F), new Vector2(231.979996F, -221.395996F), new Vector2(230.899994F, -221.395996F)); + builder.AddCubicBezier(new Vector2(229.843994F, -221.395996F), new Vector2(228.901993F, -221.641998F), new Vector2(228.074005F, -222.134003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(233.888F, -219.145996F)); + builder.AddCubicBezier(new Vector2(234.919998F, -219.686005F), new Vector2(235.748001F, -220.436005F), new Vector2(236.371994F, -221.395996F)); + builder.AddCubicBezier(new Vector2(236.996002F, -222.356003F), new Vector2(237.343994F, -223.447998F), new Vector2(237.416F, -224.671997F)); + builder.AddLine(new Vector2(237.416F, -229.820007F)); + builder.AddCubicBezier(new Vector2(237.343994F, -231.067993F), new Vector2(236.990005F, -232.166F), new Vector2(236.354004F, -233.113998F)); + builder.AddCubicBezier(new Vector2(235.718002F, -234.061996F), new Vector2(234.884003F, -234.806F), new Vector2(233.852005F, -235.345993F)); + builder.AddCubicBezier(new Vector2(232.820007F, -235.886002F), new Vector2(231.656006F, -236.156006F), new Vector2(230.360001F, -236.156006F)); + builder.AddCubicBezier(new Vector2(228.800003F, -236.156006F), new Vector2(227.395996F, -235.759995F), new Vector2(226.147995F, -234.968002F)); + builder.AddCubicBezier(new Vector2(224.899994F, -234.175995F), new Vector2(223.910004F, -233.108002F), new Vector2(223.177994F, -231.764008F)); + builder.AddCubicBezier(new Vector2(222.445999F, -230.419998F), new Vector2(222.080002F, -228.908005F), new Vector2(222.080002F, -227.227997F)); + builder.AddCubicBezier(new Vector2(222.080002F, -225.548004F), new Vector2(222.445999F, -224.035995F), new Vector2(223.177994F, -222.692001F)); + builder.AddCubicBezier(new Vector2(223.910004F, -221.348007F), new Vector2(224.899994F, -220.285995F), new Vector2(226.147995F, -219.505997F)); + builder.AddCubicBezier(new Vector2(227.395996F, -218.725998F), new Vector2(228.800003F, -218.335999F), new Vector2(230.360001F, -218.335999F)); + builder.AddCubicBezier(new Vector2(231.679993F, -218.335999F), new Vector2(232.856003F, -218.606003F), new Vector2(233.888F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1169() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(215.563995F, -219.091995F)); + builder.AddCubicBezier(new Vector2(216.740005F, -219.595993F), new Vector2(217.748001F, -220.328003F), new Vector2(218.587997F, -221.287994F)); + builder.AddLine(new Vector2(216.5F, -223.412003F)); + builder.AddCubicBezier(new Vector2(215.923996F, -222.740005F), new Vector2(215.233994F, -222.235992F), new Vector2(214.429993F, -221.899994F)); + builder.AddCubicBezier(new Vector2(213.626007F, -221.563995F), new Vector2(212.744003F, -221.395996F), new Vector2(211.783997F, -221.395996F)); + builder.AddCubicBezier(new Vector2(210.632004F, -221.395996F), new Vector2(209.612F, -221.641998F), new Vector2(208.723999F, -222.134003F)); + builder.AddCubicBezier(new Vector2(207.835999F, -222.626007F), new Vector2(207.151993F, -223.322006F), new Vector2(206.671997F, -224.222F)); + builder.AddCubicBezier(new Vector2(206.192001F, -225.121994F), new Vector2(205.951996F, -226.171997F), new Vector2(205.951996F, -227.371994F)); + builder.AddCubicBezier(new Vector2(205.951996F, -228.548004F), new Vector2(206.179993F, -229.567993F), new Vector2(206.636002F, -230.432007F)); + builder.AddCubicBezier(new Vector2(207.091995F, -231.296005F), new Vector2(207.740005F, -231.968002F), new Vector2(208.580002F, -232.447998F)); + builder.AddCubicBezier(new Vector2(209.419998F, -232.927994F), new Vector2(210.391998F, -233.167999F), new Vector2(211.496002F, -233.167999F)); + builder.AddCubicBezier(new Vector2(212.552002F, -233.167999F), new Vector2(213.451996F, -232.945999F), new Vector2(214.195999F, -232.501999F)); + builder.AddCubicBezier(new Vector2(214.940002F, -232.057999F), new Vector2(215.516006F, -231.434006F), new Vector2(215.923996F, -230.630005F)); + builder.AddCubicBezier(new Vector2(216.332001F, -229.826004F), new Vector2(216.535995F, -228.848007F), new Vector2(216.535995F, -227.695999F)); + builder.AddLine(new Vector2(217.723999F, -228.740005F)); + builder.AddLine(new Vector2(205.016006F, -228.740005F)); + builder.AddLine(new Vector2(205.016006F, -226.039993F)); + builder.AddLine(new Vector2(219.451996F, -226.039993F)); + builder.AddCubicBezier(new Vector2(219.524002F, -226.376007F), new Vector2(219.572006F, -226.682007F), new Vector2(219.595993F, -226.957993F)); + builder.AddCubicBezier(new Vector2(219.619995F, -227.233994F), new Vector2(219.632004F, -227.492004F), new Vector2(219.632004F, -227.731995F)); + builder.AddCubicBezier(new Vector2(219.632004F, -229.363998F), new Vector2(219.289993F, -230.815994F), new Vector2(218.606003F, -232.087997F)); + builder.AddCubicBezier(new Vector2(217.921997F, -233.360001F), new Vector2(216.968002F, -234.356003F), new Vector2(215.744003F, -235.076004F)); + builder.AddCubicBezier(new Vector2(214.520004F, -235.796005F), new Vector2(213.128006F, -236.156006F), new Vector2(211.567993F, -236.156006F)); + builder.AddCubicBezier(new Vector2(209.912003F, -236.156006F), new Vector2(208.417999F, -235.766006F), new Vector2(207.085999F, -234.985992F)); + builder.AddCubicBezier(new Vector2(205.753998F, -234.205994F), new Vector2(204.697998F, -233.143997F), new Vector2(203.917999F, -231.800003F)); + builder.AddCubicBezier(new Vector2(203.138F, -230.455994F), new Vector2(202.748001F, -228.944F), new Vector2(202.748001F, -227.264008F)); + builder.AddCubicBezier(new Vector2(202.748001F, -225.559998F), new Vector2(203.143997F, -224.035995F), new Vector2(203.936005F, -222.692001F)); + builder.AddCubicBezier(new Vector2(204.727997F, -221.348007F), new Vector2(205.802002F, -220.285995F), new Vector2(207.158005F, -219.505997F)); + builder.AddCubicBezier(new Vector2(208.514008F, -218.725998F), new Vector2(210.056F, -218.335999F), new Vector2(211.783997F, -218.335999F)); + builder.AddCubicBezier(new Vector2(213.128006F, -218.335999F), new Vector2(214.388F, -218.587997F), new Vector2(215.563995F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1170() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(190.615997F, -211.531998F)); + builder.AddLine(new Vector2(193.856003F, -218.552002F)); + builder.AddLine(new Vector2(192.020004F, -221.863998F)); + builder.AddLine(new Vector2(187.016006F, -211.531998F)); + builder.AddLine(new Vector2(190.615997F, -211.531998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(193.856003F, -218.552002F)); + builder.AddLine(new Vector2(201.848007F, -235.796005F)); + builder.AddLine(new Vector2(198.248001F, -235.796005F)); + builder.AddLine(new Vector2(192.451996F, -222.296005F)); + builder.AddLine(new Vector2(193.604004F, -222.296005F)); + builder.AddLine(new Vector2(188.095993F, -235.796005F)); + builder.AddLine(new Vector2(184.496002F, -235.796005F)); + builder.AddLine(new Vector2(191.912003F, -218.552002F)); + builder.AddLine(new Vector2(193.856003F, -218.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1171() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(171.535995F, -222.223999F)); + builder.AddCubicBezier(new Vector2(170.695999F, -222.727997F), new Vector2(170.035995F, -223.417999F), new Vector2(169.556F, -224.294006F)); + builder.AddCubicBezier(new Vector2(169.076004F, -225.169998F), new Vector2(168.835999F, -226.171997F), new Vector2(168.835999F, -227.300003F)); + builder.AddCubicBezier(new Vector2(168.835999F, -228.404007F), new Vector2(169.076004F, -229.388F), new Vector2(169.556F, -230.251999F)); + builder.AddCubicBezier(new Vector2(170.035995F, -231.115997F), new Vector2(170.695999F, -231.794006F), new Vector2(171.535995F, -232.285995F)); + builder.AddCubicBezier(new Vector2(172.376007F, -232.778F), new Vector2(173.324005F, -233.024002F), new Vector2(174.380005F, -233.024002F)); + builder.AddCubicBezier(new Vector2(175.483994F, -233.024002F), new Vector2(176.449997F, -232.778F), new Vector2(177.278F, -232.285995F)); + builder.AddCubicBezier(new Vector2(178.106003F, -231.794006F), new Vector2(178.766006F, -231.115997F), new Vector2(179.257996F, -230.251999F)); + builder.AddCubicBezier(new Vector2(179.75F, -229.388F), new Vector2(179.996002F, -228.404007F), new Vector2(179.996002F, -227.300003F)); + builder.AddCubicBezier(new Vector2(179.996002F, -226.171997F), new Vector2(179.755997F, -225.169998F), new Vector2(179.276001F, -224.294006F)); + builder.AddCubicBezier(new Vector2(178.796005F, -223.417999F), new Vector2(178.136002F, -222.727997F), new Vector2(177.296005F, -222.223999F)); + builder.AddCubicBezier(new Vector2(176.455994F, -221.720001F), new Vector2(175.483994F, -221.468002F), new Vector2(174.380005F, -221.468002F)); + builder.AddCubicBezier(new Vector2(173.324005F, -221.468002F), new Vector2(172.376007F, -221.720001F), new Vector2(171.535995F, -222.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(178.934006F, -219.524002F)); + builder.AddCubicBezier(new Vector2(180.289993F, -220.315994F), new Vector2(181.363998F, -221.389999F), new Vector2(182.156006F, -222.746002F)); + builder.AddCubicBezier(new Vector2(182.947998F, -224.102005F), new Vector2(183.343994F, -225.619995F), new Vector2(183.343994F, -227.300003F)); + builder.AddCubicBezier(new Vector2(183.343994F, -228.955994F), new Vector2(182.947998F, -230.455994F), new Vector2(182.156006F, -231.800003F)); + builder.AddCubicBezier(new Vector2(181.363998F, -233.143997F), new Vector2(180.289993F, -234.205994F), new Vector2(178.934006F, -234.985992F)); + builder.AddCubicBezier(new Vector2(177.578003F, -235.766006F), new Vector2(176.059998F, -236.156006F), new Vector2(174.380005F, -236.156006F)); + builder.AddCubicBezier(new Vector2(172.723999F, -236.156006F), new Vector2(171.223999F, -235.759995F), new Vector2(169.880005F, -234.968002F)); + builder.AddCubicBezier(new Vector2(168.535995F, -234.175995F), new Vector2(167.468002F, -233.113998F), new Vector2(166.675995F, -231.781998F)); + builder.AddCubicBezier(new Vector2(165.884003F, -230.449997F), new Vector2(165.488007F, -228.955994F), new Vector2(165.488007F, -227.300003F)); + builder.AddCubicBezier(new Vector2(165.488007F, -225.619995F), new Vector2(165.884003F, -224.102005F), new Vector2(166.675995F, -222.746002F)); + builder.AddCubicBezier(new Vector2(167.468002F, -221.389999F), new Vector2(168.535995F, -220.315994F), new Vector2(169.880005F, -219.524002F)); + builder.AddCubicBezier(new Vector2(171.223999F, -218.731995F), new Vector2(172.723999F, -218.335999F), new Vector2(174.380005F, -218.335999F)); + builder.AddCubicBezier(new Vector2(176.059998F, -218.335999F), new Vector2(177.578003F, -218.731995F), new Vector2(178.934006F, -219.524002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1172() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(161.852005F, -218.695999F)); + builder.AddLine(new Vector2(161.852005F, -244.399994F)); + builder.AddLine(new Vector2(158.612F, -244.399994F)); + builder.AddLine(new Vector2(158.612F, -218.695999F)); + builder.AddLine(new Vector2(161.852005F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1173() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(143.294006F, -222.151993F)); + builder.AddCubicBezier(new Vector2(142.466003F, -222.656006F), new Vector2(141.830002F, -223.345993F), new Vector2(141.386002F, -224.222F)); + builder.AddCubicBezier(new Vector2(140.942001F, -225.098007F), new Vector2(140.720001F, -226.100006F), new Vector2(140.720001F, -227.227997F)); + builder.AddCubicBezier(new Vector2(140.720001F, -228.380005F), new Vector2(140.947998F, -229.393997F), new Vector2(141.404007F, -230.270004F)); + builder.AddCubicBezier(new Vector2(141.860001F, -231.145996F), new Vector2(142.496002F, -231.835999F), new Vector2(143.311996F, -232.339996F)); + builder.AddCubicBezier(new Vector2(144.128006F, -232.843994F), new Vector2(145.063995F, -233.095993F), new Vector2(146.119995F, -233.095993F)); + builder.AddCubicBezier(new Vector2(147.199997F, -233.095993F), new Vector2(148.147995F, -232.843994F), new Vector2(148.964005F, -232.339996F)); + builder.AddCubicBezier(new Vector2(149.779999F, -231.835999F), new Vector2(150.421997F, -231.145996F), new Vector2(150.889999F, -230.270004F)); + builder.AddCubicBezier(new Vector2(151.358002F, -229.393997F), new Vector2(151.591995F, -228.391998F), new Vector2(151.591995F, -227.264008F)); + builder.AddCubicBezier(new Vector2(151.591995F, -226.112F), new Vector2(151.358002F, -225.098007F), new Vector2(150.889999F, -224.222F)); + builder.AddCubicBezier(new Vector2(150.421997F, -223.345993F), new Vector2(149.779999F, -222.656006F), new Vector2(148.964005F, -222.151993F)); + builder.AddCubicBezier(new Vector2(148.147995F, -221.647995F), new Vector2(147.199997F, -221.395996F), new Vector2(146.119995F, -221.395996F)); + builder.AddCubicBezier(new Vector2(145.063995F, -221.395996F), new Vector2(144.121994F, -221.647995F), new Vector2(143.294006F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(140.899994F, -211.531998F)); + builder.AddLine(new Vector2(140.899994F, -222.979996F)); + builder.AddLine(new Vector2(140.287994F, -227.156006F)); + builder.AddLine(new Vector2(140.899994F, -231.296005F)); + builder.AddLine(new Vector2(140.899994F, -235.796005F)); + builder.AddLine(new Vector2(137.660004F, -235.796005F)); + builder.AddLine(new Vector2(137.660004F, -211.531998F)); + builder.AddLine(new Vector2(140.899994F, -211.531998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(150.889999F, -219.505997F)); + builder.AddCubicBezier(new Vector2(152.149994F, -220.285995F), new Vector2(153.139999F, -221.348007F), new Vector2(153.860001F, -222.692001F)); + builder.AddCubicBezier(new Vector2(154.580002F, -224.035995F), new Vector2(154.940002F, -225.548004F), new Vector2(154.940002F, -227.227997F)); + builder.AddCubicBezier(new Vector2(154.940002F, -228.908005F), new Vector2(154.580002F, -230.419998F), new Vector2(153.860001F, -231.764008F)); + builder.AddCubicBezier(new Vector2(153.139999F, -233.108002F), new Vector2(152.149994F, -234.175995F), new Vector2(150.889999F, -234.968002F)); + builder.AddCubicBezier(new Vector2(149.630005F, -235.759995F), new Vector2(148.220001F, -236.156006F), new Vector2(146.660004F, -236.156006F)); + builder.AddCubicBezier(new Vector2(145.388F, -236.156006F), new Vector2(144.229996F, -235.886002F), new Vector2(143.186005F, -235.345993F)); + builder.AddCubicBezier(new Vector2(142.141998F, -234.806F), new Vector2(141.302002F, -234.061996F), new Vector2(140.666F, -233.113998F)); + builder.AddCubicBezier(new Vector2(140.029999F, -232.166F), new Vector2(139.675995F, -231.067993F), new Vector2(139.604004F, -229.820007F)); + builder.AddLine(new Vector2(139.604004F, -224.671997F)); + builder.AddCubicBezier(new Vector2(139.675995F, -223.447998F), new Vector2(140.024002F, -222.356003F), new Vector2(140.647995F, -221.395996F)); + builder.AddCubicBezier(new Vector2(141.272003F, -220.436005F), new Vector2(142.106003F, -219.686005F), new Vector2(143.149994F, -219.145996F)); + builder.AddCubicBezier(new Vector2(144.194F, -218.606003F), new Vector2(145.363998F, -218.335999F), new Vector2(146.660004F, -218.335999F)); + builder.AddCubicBezier(new Vector2(148.220001F, -218.335999F), new Vector2(149.630005F, -218.725998F), new Vector2(150.889999F, -219.505997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1174() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(130.063995F, -219.091995F)); + builder.AddCubicBezier(new Vector2(131.240005F, -219.595993F), new Vector2(132.248001F, -220.328003F), new Vector2(133.087997F, -221.287994F)); + builder.AddLine(new Vector2(131F, -223.412003F)); + builder.AddCubicBezier(new Vector2(130.423996F, -222.740005F), new Vector2(129.733994F, -222.235992F), new Vector2(128.929993F, -221.899994F)); + builder.AddCubicBezier(new Vector2(128.126007F, -221.563995F), new Vector2(127.244003F, -221.395996F), new Vector2(126.283997F, -221.395996F)); + builder.AddCubicBezier(new Vector2(125.132004F, -221.395996F), new Vector2(124.112F, -221.641998F), new Vector2(123.223999F, -222.134003F)); + builder.AddCubicBezier(new Vector2(122.335999F, -222.626007F), new Vector2(121.652F, -223.322006F), new Vector2(121.171997F, -224.222F)); + builder.AddCubicBezier(new Vector2(120.692001F, -225.121994F), new Vector2(120.452003F, -226.171997F), new Vector2(120.452003F, -227.371994F)); + builder.AddCubicBezier(new Vector2(120.452003F, -228.548004F), new Vector2(120.68F, -229.567993F), new Vector2(121.136002F, -230.432007F)); + builder.AddCubicBezier(new Vector2(121.592003F, -231.296005F), new Vector2(122.239998F, -231.968002F), new Vector2(123.080002F, -232.447998F)); + builder.AddCubicBezier(new Vector2(123.919998F, -232.927994F), new Vector2(124.891998F, -233.167999F), new Vector2(125.996002F, -233.167999F)); + builder.AddCubicBezier(new Vector2(127.052002F, -233.167999F), new Vector2(127.952003F, -232.945999F), new Vector2(128.695999F, -232.501999F)); + builder.AddCubicBezier(new Vector2(129.440002F, -232.057999F), new Vector2(130.016006F, -231.434006F), new Vector2(130.423996F, -230.630005F)); + builder.AddCubicBezier(new Vector2(130.832001F, -229.826004F), new Vector2(131.035995F, -228.848007F), new Vector2(131.035995F, -227.695999F)); + builder.AddLine(new Vector2(132.223999F, -228.740005F)); + builder.AddLine(new Vector2(119.515999F, -228.740005F)); + builder.AddLine(new Vector2(119.515999F, -226.039993F)); + builder.AddLine(new Vector2(133.951996F, -226.039993F)); + builder.AddCubicBezier(new Vector2(134.024002F, -226.376007F), new Vector2(134.072006F, -226.682007F), new Vector2(134.095993F, -226.957993F)); + builder.AddCubicBezier(new Vector2(134.119995F, -227.233994F), new Vector2(134.132004F, -227.492004F), new Vector2(134.132004F, -227.731995F)); + builder.AddCubicBezier(new Vector2(134.132004F, -229.363998F), new Vector2(133.789993F, -230.815994F), new Vector2(133.106003F, -232.087997F)); + builder.AddCubicBezier(new Vector2(132.421997F, -233.360001F), new Vector2(131.468002F, -234.356003F), new Vector2(130.244003F, -235.076004F)); + builder.AddCubicBezier(new Vector2(129.020004F, -235.796005F), new Vector2(127.627998F, -236.156006F), new Vector2(126.068001F, -236.156006F)); + builder.AddCubicBezier(new Vector2(124.412003F, -236.156006F), new Vector2(122.917999F, -235.766006F), new Vector2(121.585999F, -234.985992F)); + builder.AddCubicBezier(new Vector2(120.253998F, -234.205994F), new Vector2(119.197998F, -233.143997F), new Vector2(118.417999F, -231.800003F)); + builder.AddCubicBezier(new Vector2(117.638F, -230.455994F), new Vector2(117.248001F, -228.944F), new Vector2(117.248001F, -227.264008F)); + builder.AddCubicBezier(new Vector2(117.248001F, -225.559998F), new Vector2(117.643997F, -224.035995F), new Vector2(118.435997F, -222.692001F)); + builder.AddCubicBezier(new Vector2(119.227997F, -221.348007F), new Vector2(120.302002F, -220.285995F), new Vector2(121.657997F, -219.505997F)); + builder.AddCubicBezier(new Vector2(123.014F, -218.725998F), new Vector2(124.556F, -218.335999F), new Vector2(126.283997F, -218.335999F)); + builder.AddCubicBezier(new Vector2(127.627998F, -218.335999F), new Vector2(128.888F, -218.587997F), new Vector2(130.063995F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1175() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(113.648003F, -244.399994F)); + builder.AddLine(new Vector2(110.372002F, -244.399994F)); + builder.AddLine(new Vector2(110.372002F, -231.619995F)); + builder.AddLine(new Vector2(110.984001F, -227.479996F)); + builder.AddLine(new Vector2(110.372002F, -223.304001F)); + builder.AddLine(new Vector2(110.372002F, -218.695999F)); + builder.AddLine(new Vector2(113.648003F, -218.695999F)); + builder.AddLine(new Vector2(113.648003F, -244.399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(102.325996F, -222.134003F)); + builder.AddCubicBezier(new Vector2(101.498001F, -222.626007F), new Vector2(100.849998F, -223.315994F), new Vector2(100.382004F, -224.203995F)); + builder.AddCubicBezier(new Vector2(99.9140015F, -225.091995F), new Vector2(99.6800003F, -226.112F), new Vector2(99.6800003F, -227.264008F)); + builder.AddCubicBezier(new Vector2(99.6800003F, -228.416F), new Vector2(99.9140015F, -229.429993F), new Vector2(100.382004F, -230.306F)); + builder.AddCubicBezier(new Vector2(100.849998F, -231.182007F), new Vector2(101.491997F, -231.865997F), new Vector2(102.307999F, -232.358002F)); + builder.AddCubicBezier(new Vector2(103.124001F, -232.850006F), new Vector2(104.071999F, -233.095993F), new Vector2(105.152F, -233.095993F)); + builder.AddCubicBezier(new Vector2(106.232002F, -233.095993F), new Vector2(107.18F, -232.843994F), new Vector2(107.996002F, -232.339996F)); + builder.AddCubicBezier(new Vector2(108.811996F, -231.835999F), new Vector2(109.447998F, -231.145996F), new Vector2(109.903999F, -230.270004F)); + builder.AddCubicBezier(new Vector2(110.360001F, -229.393997F), new Vector2(110.587997F, -228.380005F), new Vector2(110.587997F, -227.227997F)); + builder.AddCubicBezier(new Vector2(110.587997F, -226.100006F), new Vector2(110.360001F, -225.098007F), new Vector2(109.903999F, -224.222F)); + builder.AddCubicBezier(new Vector2(109.447998F, -223.345993F), new Vector2(108.811996F, -222.656006F), new Vector2(107.996002F, -222.151993F)); + builder.AddCubicBezier(new Vector2(107.18F, -221.647995F), new Vector2(106.232002F, -221.395996F), new Vector2(105.152F, -221.395996F)); + builder.AddCubicBezier(new Vector2(104.096001F, -221.395996F), new Vector2(103.153999F, -221.641998F), new Vector2(102.325996F, -222.134003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(108.139999F, -219.145996F)); + builder.AddCubicBezier(new Vector2(109.171997F, -219.686005F), new Vector2(110F, -220.436005F), new Vector2(110.624001F, -221.395996F)); + builder.AddCubicBezier(new Vector2(111.248001F, -222.356003F), new Vector2(111.596001F, -223.447998F), new Vector2(111.667999F, -224.671997F)); + builder.AddLine(new Vector2(111.667999F, -229.820007F)); + builder.AddCubicBezier(new Vector2(111.596001F, -231.067993F), new Vector2(111.241997F, -232.166F), new Vector2(110.606003F, -233.113998F)); + builder.AddCubicBezier(new Vector2(109.970001F, -234.061996F), new Vector2(109.136002F, -234.806F), new Vector2(108.103996F, -235.345993F)); + builder.AddCubicBezier(new Vector2(107.071999F, -235.886002F), new Vector2(105.907997F, -236.156006F), new Vector2(104.612F, -236.156006F)); + builder.AddCubicBezier(new Vector2(103.052002F, -236.156006F), new Vector2(101.648003F, -235.759995F), new Vector2(100.400002F, -234.968002F)); + builder.AddCubicBezier(new Vector2(99.1520004F, -234.175995F), new Vector2(98.1620026F, -233.108002F), new Vector2(97.4300003F, -231.764008F)); + builder.AddCubicBezier(new Vector2(96.697998F, -230.419998F), new Vector2(96.3320007F, -228.908005F), new Vector2(96.3320007F, -227.227997F)); + builder.AddCubicBezier(new Vector2(96.3320007F, -225.548004F), new Vector2(96.697998F, -224.035995F), new Vector2(97.4300003F, -222.692001F)); + builder.AddCubicBezier(new Vector2(98.1620026F, -221.348007F), new Vector2(99.1520004F, -220.285995F), new Vector2(100.400002F, -219.505997F)); + builder.AddCubicBezier(new Vector2(101.648003F, -218.725998F), new Vector2(103.052002F, -218.335999F), new Vector2(104.612F, -218.335999F)); + builder.AddCubicBezier(new Vector2(105.931999F, -218.335999F), new Vector2(107.108002F, -218.606003F), new Vector2(108.139999F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1176() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(73.4720001F, -218.695999F)); + builder.AddLine(new Vector2(73.4720001F, -235.796005F)); + builder.AddLine(new Vector2(70.2320023F, -235.796005F)); + builder.AddLine(new Vector2(70.2320023F, -218.695999F)); + builder.AddLine(new Vector2(73.4720001F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(85.5680008F, -218.695999F)); + builder.AddLine(new Vector2(85.5680008F, -229.315994F)); + builder.AddCubicBezier(new Vector2(85.5680008F, -230.492004F), new Vector2(85.2799988F, -231.602005F), new Vector2(84.7040024F, -232.645996F)); + builder.AddCubicBezier(new Vector2(84.1279984F, -233.690002F), new Vector2(83.3420029F, -234.535995F), new Vector2(82.3460007F, -235.184006F)); + builder.AddCubicBezier(new Vector2(81.3499985F, -235.832001F), new Vector2(80.2040024F, -236.156006F), new Vector2(78.9079971F, -236.156006F)); + builder.AddCubicBezier(new Vector2(77.6119995F, -236.156006F), new Vector2(76.447998F, -235.862F), new Vector2(75.4160004F, -235.274002F)); + builder.AddCubicBezier(new Vector2(74.3840027F, -234.686005F), new Vector2(73.5800018F, -233.888F), new Vector2(73.0039978F, -232.880005F)); + builder.AddCubicBezier(new Vector2(72.4280014F, -231.871994F), new Vector2(72.1399994F, -230.720001F), new Vector2(72.1399994F, -229.423996F)); + builder.AddLine(new Vector2(73.4720001F, -228.667999F)); + builder.AddCubicBezier(new Vector2(73.4720001F, -229.531998F), new Vector2(73.6640015F, -230.300003F), new Vector2(74.0479965F, -230.972F)); + builder.AddCubicBezier(new Vector2(74.4319992F, -231.643997F), new Vector2(74.9599991F, -232.171997F), new Vector2(75.6320038F, -232.556F)); + builder.AddCubicBezier(new Vector2(76.3040009F, -232.940002F), new Vector2(77.0719986F, -233.132004F), new Vector2(77.935997F, -233.132004F)); + builder.AddCubicBezier(new Vector2(79.2320023F, -233.132004F), new Vector2(80.2819977F, -232.712006F), new Vector2(81.0859985F, -231.871994F)); + builder.AddCubicBezier(new Vector2(81.8899994F, -231.031998F), new Vector2(82.2919998F, -229.964005F), new Vector2(82.2919998F, -228.667999F)); + builder.AddLine(new Vector2(82.2919998F, -218.695999F)); + builder.AddLine(new Vector2(85.5680008F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1177() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(62.6360016F, -219.091995F)); + builder.AddCubicBezier(new Vector2(63.8120003F, -219.595993F), new Vector2(64.8199997F, -220.328003F), new Vector2(65.6600037F, -221.287994F)); + builder.AddLine(new Vector2(63.5719986F, -223.412003F)); + builder.AddCubicBezier(new Vector2(62.9959984F, -222.740005F), new Vector2(62.3059998F, -222.235992F), new Vector2(61.5019989F, -221.899994F)); + builder.AddCubicBezier(new Vector2(60.6980019F, -221.563995F), new Vector2(59.8160019F, -221.395996F), new Vector2(58.855999F, -221.395996F)); + builder.AddCubicBezier(new Vector2(57.7039986F, -221.395996F), new Vector2(56.6839981F, -221.641998F), new Vector2(55.7960014F, -222.134003F)); + builder.AddCubicBezier(new Vector2(54.9080009F, -222.626007F), new Vector2(54.223999F, -223.322006F), new Vector2(53.7439995F, -224.222F)); + builder.AddCubicBezier(new Vector2(53.2639999F, -225.121994F), new Vector2(53.0239983F, -226.171997F), new Vector2(53.0239983F, -227.371994F)); + builder.AddCubicBezier(new Vector2(53.0239983F, -228.548004F), new Vector2(53.2519989F, -229.567993F), new Vector2(53.7080002F, -230.432007F)); + builder.AddCubicBezier(new Vector2(54.1640015F, -231.296005F), new Vector2(54.8120003F, -231.968002F), new Vector2(55.6520004F, -232.447998F)); + builder.AddCubicBezier(new Vector2(56.4920006F, -232.927994F), new Vector2(57.4640007F, -233.167999F), new Vector2(58.5680008F, -233.167999F)); + builder.AddCubicBezier(new Vector2(59.6240005F, -233.167999F), new Vector2(60.5239983F, -232.945999F), new Vector2(61.2680016F, -232.501999F)); + builder.AddCubicBezier(new Vector2(62.012001F, -232.057999F), new Vector2(62.5880013F, -231.434006F), new Vector2(62.9959984F, -230.630005F)); + builder.AddCubicBezier(new Vector2(63.4039993F, -229.826004F), new Vector2(63.6080017F, -228.848007F), new Vector2(63.6080017F, -227.695999F)); + builder.AddLine(new Vector2(64.7959976F, -228.740005F)); + builder.AddLine(new Vector2(52.0880013F, -228.740005F)); + builder.AddLine(new Vector2(52.0880013F, -226.039993F)); + builder.AddLine(new Vector2(66.5240021F, -226.039993F)); + builder.AddCubicBezier(new Vector2(66.5960007F, -226.376007F), new Vector2(66.6439972F, -226.682007F), new Vector2(66.6679993F, -226.957993F)); + builder.AddCubicBezier(new Vector2(66.6920013F, -227.233994F), new Vector2(66.7040024F, -227.492004F), new Vector2(66.7040024F, -227.731995F)); + builder.AddCubicBezier(new Vector2(66.7040024F, -229.363998F), new Vector2(66.3619995F, -230.815994F), new Vector2(65.6780014F, -232.087997F)); + builder.AddCubicBezier(new Vector2(64.9940033F, -233.360001F), new Vector2(64.0400009F, -234.356003F), new Vector2(62.8160019F, -235.076004F)); + builder.AddCubicBezier(new Vector2(61.5919991F, -235.796005F), new Vector2(60.2000008F, -236.156006F), new Vector2(58.6399994F, -236.156006F)); + builder.AddCubicBezier(new Vector2(56.9840012F, -236.156006F), new Vector2(55.4900017F, -235.766006F), new Vector2(54.1580009F, -234.985992F)); + builder.AddCubicBezier(new Vector2(52.8260002F, -234.205994F), new Vector2(51.7700005F, -233.143997F), new Vector2(50.9900017F, -231.800003F)); + builder.AddCubicBezier(new Vector2(50.2099991F, -230.455994F), new Vector2(49.8199997F, -228.944F), new Vector2(49.8199997F, -227.264008F)); + builder.AddCubicBezier(new Vector2(49.8199997F, -225.559998F), new Vector2(50.2159996F, -224.035995F), new Vector2(51.0079994F, -222.692001F)); + builder.AddCubicBezier(new Vector2(51.7999992F, -221.348007F), new Vector2(52.8740005F, -220.285995F), new Vector2(54.2299995F, -219.505997F)); + builder.AddCubicBezier(new Vector2(55.5859985F, -218.725998F), new Vector2(57.1279984F, -218.335999F), new Vector2(58.855999F, -218.335999F)); + builder.AddCubicBezier(new Vector2(60.2000008F, -218.335999F), new Vector2(61.4599991F, -218.587997F), new Vector2(62.6360016F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1178() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(43.3400002F, -219.091995F)); + builder.AddCubicBezier(new Vector2(44.5159988F, -219.595993F), new Vector2(45.5239983F, -220.328003F), new Vector2(46.3639984F, -221.287994F)); + builder.AddLine(new Vector2(44.276001F, -223.412003F)); + builder.AddCubicBezier(new Vector2(43.7000008F, -222.740005F), new Vector2(43.0099983F, -222.235992F), new Vector2(42.2060013F, -221.899994F)); + builder.AddCubicBezier(new Vector2(41.4020004F, -221.563995F), new Vector2(40.5200005F, -221.395996F), new Vector2(39.5600014F, -221.395996F)); + builder.AddCubicBezier(new Vector2(38.4080009F, -221.395996F), new Vector2(37.3880005F, -221.641998F), new Vector2(36.5F, -222.134003F)); + builder.AddCubicBezier(new Vector2(35.6119995F, -222.626007F), new Vector2(34.9280014F, -223.322006F), new Vector2(34.4480019F, -224.222F)); + builder.AddCubicBezier(new Vector2(33.9679985F, -225.121994F), new Vector2(33.7280006F, -226.171997F), new Vector2(33.7280006F, -227.371994F)); + builder.AddCubicBezier(new Vector2(33.7280006F, -228.548004F), new Vector2(33.9560013F, -229.567993F), new Vector2(34.4119987F, -230.432007F)); + builder.AddCubicBezier(new Vector2(34.868F, -231.296005F), new Vector2(35.5159988F, -231.968002F), new Vector2(36.355999F, -232.447998F)); + builder.AddCubicBezier(new Vector2(37.1959991F, -232.927994F), new Vector2(38.1679993F, -233.167999F), new Vector2(39.2719994F, -233.167999F)); + builder.AddCubicBezier(new Vector2(40.3279991F, -233.167999F), new Vector2(41.2280006F, -232.945999F), new Vector2(41.9720001F, -232.501999F)); + builder.AddCubicBezier(new Vector2(42.7159996F, -232.057999F), new Vector2(43.2919998F, -231.434006F), new Vector2(43.7000008F, -230.630005F)); + builder.AddCubicBezier(new Vector2(44.1080017F, -229.826004F), new Vector2(44.3120003F, -228.848007F), new Vector2(44.3120003F, -227.695999F)); + builder.AddLine(new Vector2(45.5F, -228.740005F)); + builder.AddLine(new Vector2(32.7919998F, -228.740005F)); + builder.AddLine(new Vector2(32.7919998F, -226.039993F)); + builder.AddLine(new Vector2(47.2280006F, -226.039993F)); + builder.AddCubicBezier(new Vector2(47.2999992F, -226.376007F), new Vector2(47.3479996F, -226.682007F), new Vector2(47.3720016F, -226.957993F)); + builder.AddCubicBezier(new Vector2(47.3959999F, -227.233994F), new Vector2(47.4080009F, -227.492004F), new Vector2(47.4080009F, -227.731995F)); + builder.AddCubicBezier(new Vector2(47.4080009F, -229.363998F), new Vector2(47.0660019F, -230.815994F), new Vector2(46.382F, -232.087997F)); + builder.AddCubicBezier(new Vector2(45.6980019F, -233.360001F), new Vector2(44.7439995F, -234.356003F), new Vector2(43.5200005F, -235.076004F)); + builder.AddCubicBezier(new Vector2(42.2960014F, -235.796005F), new Vector2(40.9039993F, -236.156006F), new Vector2(39.3440018F, -236.156006F)); + builder.AddCubicBezier(new Vector2(37.6879997F, -236.156006F), new Vector2(36.1940002F, -235.766006F), new Vector2(34.8619995F, -234.985992F)); + builder.AddCubicBezier(new Vector2(33.5299988F, -234.205994F), new Vector2(32.473999F, -233.143997F), new Vector2(31.6940002F, -231.800003F)); + builder.AddCubicBezier(new Vector2(30.9139996F, -230.455994F), new Vector2(30.5240002F, -228.944F), new Vector2(30.5240002F, -227.264008F)); + builder.AddCubicBezier(new Vector2(30.5240002F, -225.559998F), new Vector2(30.9200001F, -224.035995F), new Vector2(31.7119999F, -222.692001F)); + builder.AddCubicBezier(new Vector2(32.5040016F, -221.348007F), new Vector2(33.5779991F, -220.285995F), new Vector2(34.9339981F, -219.505997F)); + builder.AddCubicBezier(new Vector2(36.2900009F, -218.725998F), new Vector2(37.8320007F, -218.335999F), new Vector2(39.5600014F, -218.335999F)); + builder.AddCubicBezier(new Vector2(40.9039993F, -218.335999F), new Vector2(42.1640015F, -218.587997F), new Vector2(43.3400002F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1179() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(16.3220005F, -222.151993F)); + builder.AddCubicBezier(new Vector2(15.4940004F, -222.656006F), new Vector2(14.8579998F, -223.345993F), new Vector2(14.4139996F, -224.222F)); + builder.AddCubicBezier(new Vector2(13.9700003F, -225.098007F), new Vector2(13.7480001F, -226.100006F), new Vector2(13.7480001F, -227.227997F)); + builder.AddCubicBezier(new Vector2(13.7480001F, -228.380005F), new Vector2(13.9759998F, -229.393997F), new Vector2(14.4320002F, -230.270004F)); + builder.AddCubicBezier(new Vector2(14.8879995F, -231.145996F), new Vector2(15.5240002F, -231.835999F), new Vector2(16.3400002F, -232.339996F)); + builder.AddCubicBezier(new Vector2(17.1560001F, -232.843994F), new Vector2(18.0919991F, -233.095993F), new Vector2(19.1480007F, -233.095993F)); + builder.AddCubicBezier(new Vector2(20.2280006F, -233.095993F), new Vector2(21.1760006F, -232.843994F), new Vector2(21.9920006F, -232.339996F)); + builder.AddCubicBezier(new Vector2(22.8080006F, -231.835999F), new Vector2(23.4500008F, -231.145996F), new Vector2(23.9179993F, -230.270004F)); + builder.AddCubicBezier(new Vector2(24.3859997F, -229.393997F), new Vector2(24.6200008F, -228.391998F), new Vector2(24.6200008F, -227.264008F)); + builder.AddCubicBezier(new Vector2(24.6200008F, -226.112F), new Vector2(24.3859997F, -225.098007F), new Vector2(23.9179993F, -224.222F)); + builder.AddCubicBezier(new Vector2(23.4500008F, -223.345993F), new Vector2(22.8080006F, -222.656006F), new Vector2(21.9920006F, -222.151993F)); + builder.AddCubicBezier(new Vector2(21.1760006F, -221.647995F), new Vector2(20.2280006F, -221.395996F), new Vector2(19.1480007F, -221.395996F)); + builder.AddCubicBezier(new Vector2(18.0919991F, -221.395996F), new Vector2(17.1499996F, -221.647995F), new Vector2(16.3220005F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(13.9280005F, -218.695999F)); + builder.AddLine(new Vector2(13.9280005F, -223.304001F)); + builder.AddLine(new Vector2(13.316F, -227.479996F)); + builder.AddLine(new Vector2(13.9280005F, -231.619995F)); + builder.AddLine(new Vector2(13.9280005F, -244.399994F)); + builder.AddLine(new Vector2(10.6879997F, -244.399994F)); + builder.AddLine(new Vector2(10.6879997F, -218.695999F)); + builder.AddLine(new Vector2(13.9280005F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(23.9179993F, -219.505997F)); + builder.AddCubicBezier(new Vector2(25.1779995F, -220.285995F), new Vector2(26.1679993F, -221.348007F), new Vector2(26.8880005F, -222.692001F)); + builder.AddCubicBezier(new Vector2(27.6079998F, -224.035995F), new Vector2(27.9680004F, -225.548004F), new Vector2(27.9680004F, -227.227997F)); + builder.AddCubicBezier(new Vector2(27.9680004F, -228.908005F), new Vector2(27.6079998F, -230.419998F), new Vector2(26.8880005F, -231.764008F)); + builder.AddCubicBezier(new Vector2(26.1679993F, -233.108002F), new Vector2(25.1779995F, -234.175995F), new Vector2(23.9179993F, -234.968002F)); + builder.AddCubicBezier(new Vector2(22.6580009F, -235.759995F), new Vector2(21.2479992F, -236.156006F), new Vector2(19.6879997F, -236.156006F)); + builder.AddCubicBezier(new Vector2(18.4160004F, -236.156006F), new Vector2(17.2579994F, -235.886002F), new Vector2(16.2140007F, -235.345993F)); + builder.AddCubicBezier(new Vector2(15.1700001F, -234.806F), new Vector2(14.3299999F, -234.061996F), new Vector2(13.6940002F, -233.113998F)); + builder.AddCubicBezier(new Vector2(13.0579996F, -232.166F), new Vector2(12.7040005F, -231.067993F), new Vector2(12.632F, -229.820007F)); + builder.AddLine(new Vector2(12.632F, -224.671997F)); + builder.AddCubicBezier(new Vector2(12.7040005F, -223.447998F), new Vector2(13.052F, -222.356003F), new Vector2(13.6759996F, -221.395996F)); + builder.AddCubicBezier(new Vector2(14.3000002F, -220.436005F), new Vector2(15.1339998F, -219.686005F), new Vector2(16.1779995F, -219.145996F)); + builder.AddCubicBezier(new Vector2(17.2220001F, -218.606003F), new Vector2(18.3920002F, -218.335999F), new Vector2(19.6879997F, -218.335999F)); + builder.AddCubicBezier(new Vector2(21.2479992F, -218.335999F), new Vector2(22.6580009F, -218.725998F), new Vector2(23.9179993F, -219.505997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1180() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-4.36000013F, -219.091995F)); + builder.AddCubicBezier(new Vector2(-3.18400002F, -219.595993F), new Vector2(-2.17600012F, -220.328003F), new Vector2(-1.33599997F, -221.287994F)); + builder.AddLine(new Vector2(-3.42400002F, -223.412003F)); + builder.AddCubicBezier(new Vector2(-4F, -222.740005F), new Vector2(-4.69000006F, -222.235992F), new Vector2(-5.49399996F, -221.899994F)); + builder.AddCubicBezier(new Vector2(-6.29799986F, -221.563995F), new Vector2(-7.17999983F, -221.395996F), new Vector2(-8.14000034F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-9.29199982F, -221.395996F), new Vector2(-10.3120003F, -221.641998F), new Vector2(-11.1999998F, -222.134003F)); + builder.AddCubicBezier(new Vector2(-12.0880003F, -222.626007F), new Vector2(-12.7720003F, -223.322006F), new Vector2(-13.2519999F, -224.222F)); + builder.AddCubicBezier(new Vector2(-13.7320004F, -225.121994F), new Vector2(-13.9720001F, -226.171997F), new Vector2(-13.9720001F, -227.371994F)); + builder.AddCubicBezier(new Vector2(-13.9720001F, -228.548004F), new Vector2(-13.7440004F, -229.567993F), new Vector2(-13.2880001F, -230.432007F)); + builder.AddCubicBezier(new Vector2(-12.8319998F, -231.296005F), new Vector2(-12.184F, -231.968002F), new Vector2(-11.3439999F, -232.447998F)); + builder.AddCubicBezier(new Vector2(-10.5039997F, -232.927994F), new Vector2(-9.53199959F, -233.167999F), new Vector2(-8.42800045F, -233.167999F)); + builder.AddCubicBezier(new Vector2(-7.37200022F, -233.167999F), new Vector2(-6.47200012F, -232.945999F), new Vector2(-5.72800016F, -232.501999F)); + builder.AddCubicBezier(new Vector2(-4.98400021F, -232.057999F), new Vector2(-4.40799999F, -231.434006F), new Vector2(-4F, -230.630005F)); + builder.AddCubicBezier(new Vector2(-3.59200001F, -229.826004F), new Vector2(-3.38800001F, -228.848007F), new Vector2(-3.38800001F, -227.695999F)); + builder.AddLine(new Vector2(-2.20000005F, -228.740005F)); + builder.AddLine(new Vector2(-14.908F, -228.740005F)); + builder.AddLine(new Vector2(-14.908F, -226.039993F)); + builder.AddLine(new Vector2(-0.472000003F, -226.039993F)); + builder.AddCubicBezier(new Vector2(-0.400000006F, -226.376007F), new Vector2(-0.351999998F, -226.682007F), new Vector2(-0.328000009F, -226.957993F)); + builder.AddCubicBezier(new Vector2(-0.30399999F, -227.233994F), new Vector2(-0.291999996F, -227.492004F), new Vector2(-0.291999996F, -227.731995F)); + builder.AddCubicBezier(new Vector2(-0.291999996F, -229.363998F), new Vector2(-0.634000003F, -230.815994F), new Vector2(-1.31799996F, -232.087997F)); + builder.AddCubicBezier(new Vector2(-2.00200009F, -233.360001F), new Vector2(-2.95600009F, -234.356003F), new Vector2(-4.17999983F, -235.076004F)); + builder.AddCubicBezier(new Vector2(-5.40399981F, -235.796005F), new Vector2(-6.796F, -236.156006F), new Vector2(-8.35599995F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-10.0120001F, -236.156006F), new Vector2(-11.5059996F, -235.766006F), new Vector2(-12.8380003F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-14.1700001F, -234.205994F), new Vector2(-15.2259998F, -233.143997F), new Vector2(-16.0060005F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-16.7859993F, -230.455994F), new Vector2(-17.1760006F, -228.944F), new Vector2(-17.1760006F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-17.1760006F, -225.559998F), new Vector2(-16.7800007F, -224.035995F), new Vector2(-15.9879999F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-15.1960001F, -221.348007F), new Vector2(-14.1219997F, -220.285995F), new Vector2(-12.7659998F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-11.4099998F, -218.725998F), new Vector2(-9.86800003F, -218.335999F), new Vector2(-8.14000034F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-6.796F, -218.335999F), new Vector2(-5.53599977F, -218.587997F), new Vector2(-4.36000013F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1181() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-26.0319996F, -218.695999F)); + builder.AddLine(new Vector2(-18.184F, -235.796005F)); + builder.AddLine(new Vector2(-21.6399994F, -235.796005F)); + builder.AddLine(new Vector2(-27.9759998F, -221.360001F)); + builder.AddLine(new Vector2(-25.8880005F, -221.360001F)); + builder.AddLine(new Vector2(-32.1879997F, -235.796005F)); + builder.AddLine(new Vector2(-35.7879982F, -235.796005F)); + builder.AddLine(new Vector2(-27.9400005F, -218.695999F)); + builder.AddLine(new Vector2(-26.0319996F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1182() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-38.5239983F, -218.695999F)); + builder.AddLine(new Vector2(-38.5239983F, -235.796005F)); + builder.AddLine(new Vector2(-41.7999992F, -235.796005F)); + builder.AddLine(new Vector2(-41.7999992F, -231.619995F)); + builder.AddLine(new Vector2(-41.1879997F, -227.479996F)); + builder.AddLine(new Vector2(-41.7999992F, -223.304001F)); + builder.AddLine(new Vector2(-41.7999992F, -218.695999F)); + builder.AddLine(new Vector2(-38.5239983F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-49.8279991F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-50.6679993F, -222.656006F), new Vector2(-51.3219986F, -223.345993F), new Vector2(-51.7900009F, -224.222F)); + builder.AddCubicBezier(new Vector2(-52.2579994F, -225.098007F), new Vector2(-52.4920006F, -226.112F), new Vector2(-52.4920006F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-52.4920006F, -228.391998F), new Vector2(-52.2579994F, -229.393997F), new Vector2(-51.7900009F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-51.3219986F, -231.145996F), new Vector2(-50.6739998F, -231.835999F), new Vector2(-49.8460007F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-49.0180016F, -232.843994F), new Vector2(-48.0639992F, -233.095993F), new Vector2(-46.9840012F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-45.9039993F, -233.095993F), new Vector2(-44.9620018F, -232.850006F), new Vector2(-44.1580009F, -232.358002F)); + builder.AddCubicBezier(new Vector2(-43.3540001F, -231.865997F), new Vector2(-42.723999F, -231.175995F), new Vector2(-42.2680016F, -230.287994F)); + builder.AddCubicBezier(new Vector2(-41.8120003F, -229.399994F), new Vector2(-41.5839996F, -228.380005F), new Vector2(-41.5839996F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-41.5839996F, -225.524002F), new Vector2(-42.0760002F, -224.126007F), new Vector2(-43.0600014F, -223.033997F)); + builder.AddCubicBezier(new Vector2(-44.0439987F, -221.942001F), new Vector2(-45.3400002F, -221.395996F), new Vector2(-46.9480019F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-48.0279999F, -221.395996F), new Vector2(-48.987999F, -221.647995F), new Vector2(-49.8279991F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-43.9959984F, -219.145996F)); + builder.AddCubicBezier(new Vector2(-42.9640007F, -219.686005F), new Vector2(-42.1419983F, -220.436005F), new Vector2(-41.5299988F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-40.9179993F, -222.356003F), new Vector2(-40.5760002F, -223.447998F), new Vector2(-40.5040016F, -224.671997F)); + builder.AddLine(new Vector2(-40.5040016F, -229.820007F)); + builder.AddCubicBezier(new Vector2(-40.5760002F, -231.067993F), new Vector2(-40.9239998F, -232.166F), new Vector2(-41.5480003F, -233.113998F)); + builder.AddCubicBezier(new Vector2(-42.1720009F, -234.061996F), new Vector2(-42.9939995F, -234.806F), new Vector2(-44.0139999F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-45.0340004F, -235.886002F), new Vector2(-46.1920013F, -236.156006F), new Vector2(-47.487999F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-49.0719986F, -236.156006F), new Vector2(-50.4939995F, -235.759995F), new Vector2(-51.7540016F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-53.0139999F, -234.175995F), new Vector2(-54.0099983F, -233.108002F), new Vector2(-54.7420006F, -231.764008F)); + builder.AddCubicBezier(new Vector2(-55.473999F, -230.419998F), new Vector2(-55.8400002F, -228.908005F), new Vector2(-55.8400002F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-55.8400002F, -225.548004F), new Vector2(-55.473999F, -224.035995F), new Vector2(-54.7420006F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-54.0099983F, -221.348007F), new Vector2(-53.0139999F, -220.285995F), new Vector2(-51.7540016F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-50.4939995F, -218.725998F), new Vector2(-49.0719986F, -218.335999F), new Vector2(-47.487999F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-46.1920013F, -218.335999F), new Vector2(-45.0279999F, -218.606003F), new Vector2(-43.9959984F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1183() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-71.2480011F, -218.695999F)); + builder.AddLine(new Vector2(-71.2480011F, -244.399994F)); + builder.AddLine(new Vector2(-74.487999F, -244.399994F)); + builder.AddLine(new Vector2(-74.487999F, -218.695999F)); + builder.AddLine(new Vector2(-71.2480011F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-59.1520004F, -218.695999F)); + builder.AddLine(new Vector2(-59.1520004F, -229.315994F)); + builder.AddCubicBezier(new Vector2(-59.1520004F, -230.660004F), new Vector2(-59.4399986F, -231.848007F), new Vector2(-60.0159988F, -232.880005F)); + builder.AddCubicBezier(new Vector2(-60.5919991F, -233.912003F), new Vector2(-61.3779984F, -234.716003F), new Vector2(-62.3740005F, -235.292007F)); + builder.AddCubicBezier(new Vector2(-63.3699989F, -235.867996F), new Vector2(-64.5159988F, -236.156006F), new Vector2(-65.8119965F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-67.1080017F, -236.156006F), new Vector2(-68.2720032F, -235.862F), new Vector2(-69.3040009F, -235.274002F)); + builder.AddCubicBezier(new Vector2(-70.3359985F, -234.686005F), new Vector2(-71.1399994F, -233.888F), new Vector2(-71.7160034F, -232.880005F)); + builder.AddCubicBezier(new Vector2(-72.2919998F, -231.871994F), new Vector2(-72.5800018F, -230.720001F), new Vector2(-72.5800018F, -229.423996F)); + builder.AddLine(new Vector2(-71.2480011F, -228.667999F)); + builder.AddCubicBezier(new Vector2(-71.2480011F, -229.531998F), new Vector2(-71.0559998F, -230.300003F), new Vector2(-70.6719971F, -230.972F)); + builder.AddCubicBezier(new Vector2(-70.288002F, -231.643997F), new Vector2(-69.7600021F, -232.171997F), new Vector2(-69.0879974F, -232.556F)); + builder.AddCubicBezier(new Vector2(-68.4160004F, -232.940002F), new Vector2(-67.6480026F, -233.132004F), new Vector2(-66.7839966F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-65.487999F, -233.132004F), new Vector2(-64.4380035F, -232.712006F), new Vector2(-63.6339989F, -231.871994F)); + builder.AddCubicBezier(new Vector2(-62.8300018F, -231.031998F), new Vector2(-62.4280014F, -229.964005F), new Vector2(-62.4280014F, -228.667999F)); + builder.AddLine(new Vector2(-62.4280014F, -218.695999F)); + builder.AddLine(new Vector2(-59.1520004F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1184() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-87.2860031F, -219.740005F)); + builder.AddCubicBezier(new Vector2(-86.1460037F, -220.675995F), new Vector2(-85.5759964F, -221.947998F), new Vector2(-85.5759964F, -223.556F)); + builder.AddCubicBezier(new Vector2(-85.5759964F, -224.612F), new Vector2(-85.7979965F, -225.464005F), new Vector2(-86.2419968F, -226.112F)); + builder.AddCubicBezier(new Vector2(-86.685997F, -226.759995F), new Vector2(-87.2559967F, -227.276001F), new Vector2(-87.9520035F, -227.660004F)); + builder.AddCubicBezier(new Vector2(-88.6480026F, -228.044006F), new Vector2(-89.3799973F, -228.350006F), new Vector2(-90.1480026F, -228.578003F)); + builder.AddCubicBezier(new Vector2(-90.9160004F, -228.806F), new Vector2(-91.6539993F, -229.028F), new Vector2(-92.3619995F, -229.244003F)); + builder.AddCubicBezier(new Vector2(-93.0699997F, -229.460007F), new Vector2(-93.6399994F, -229.723999F), new Vector2(-94.0719986F, -230.035995F)); + builder.AddCubicBezier(new Vector2(-94.5039978F, -230.348007F), new Vector2(-94.7200012F, -230.792007F), new Vector2(-94.7200012F, -231.367996F)); + builder.AddCubicBezier(new Vector2(-94.7200012F, -231.919998F), new Vector2(-94.473999F, -232.363998F), new Vector2(-93.9820023F, -232.699997F)); + builder.AddCubicBezier(new Vector2(-93.4899979F, -233.035995F), new Vector2(-92.776001F, -233.203995F), new Vector2(-91.8399963F, -233.203995F)); + builder.AddCubicBezier(new Vector2(-90.9520035F, -233.203995F), new Vector2(-90.1600037F, -233.035995F), new Vector2(-89.4639969F, -232.699997F)); + builder.AddCubicBezier(new Vector2(-88.7679977F, -232.363998F), new Vector2(-88.1679993F, -231.884003F), new Vector2(-87.6640015F, -231.259995F)); + builder.AddLine(new Vector2(-85.5759964F, -233.348007F)); + builder.AddCubicBezier(new Vector2(-86.2480011F, -234.283997F), new Vector2(-87.1060028F, -234.985992F), new Vector2(-88.1500015F, -235.453995F)); + builder.AddCubicBezier(new Vector2(-89.1940002F, -235.921997F), new Vector2(-90.3880005F, -236.156006F), new Vector2(-91.7320023F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-93.0039978F, -236.156006F), new Vector2(-94.0960007F, -235.951996F), new Vector2(-95.0080032F, -235.544006F)); + builder.AddCubicBezier(new Vector2(-95.9199982F, -235.136002F), new Vector2(-96.6220016F, -234.554001F), new Vector2(-97.1139984F, -233.798004F)); + builder.AddCubicBezier(new Vector2(-97.6060028F, -233.042007F), new Vector2(-97.8519974F, -232.147995F), new Vector2(-97.8519974F, -231.115997F)); + builder.AddCubicBezier(new Vector2(-97.8519974F, -230.084F), new Vector2(-97.6299973F, -229.25F), new Vector2(-97.185997F, -228.613998F)); + builder.AddCubicBezier(new Vector2(-96.7419968F, -227.977997F), new Vector2(-96.1719971F, -227.479996F), new Vector2(-95.4759979F, -227.119995F)); + builder.AddCubicBezier(new Vector2(-94.7799988F, -226.759995F), new Vector2(-94.0419998F, -226.472F), new Vector2(-93.262001F, -226.255997F)); + builder.AddCubicBezier(new Vector2(-92.4820023F, -226.039993F), new Vector2(-91.7440033F, -225.817993F), new Vector2(-91.0479965F, -225.589996F)); + builder.AddCubicBezier(new Vector2(-90.3519974F, -225.362F), new Vector2(-89.7819977F, -225.074005F), new Vector2(-89.3379974F, -224.725998F)); + builder.AddCubicBezier(new Vector2(-88.8939972F, -224.378006F), new Vector2(-88.6719971F, -223.891998F), new Vector2(-88.6719971F, -223.268005F)); + builder.AddCubicBezier(new Vector2(-88.6719971F, -222.643997F), new Vector2(-88.947998F, -222.158005F), new Vector2(-89.5F, -221.809998F)); + builder.AddCubicBezier(new Vector2(-90.052002F, -221.462006F), new Vector2(-90.8320007F, -221.287994F), new Vector2(-91.8399963F, -221.287994F)); + builder.AddCubicBezier(new Vector2(-92.8479996F, -221.287994F), new Vector2(-93.7600021F, -221.473999F), new Vector2(-94.5759964F, -221.845993F)); + builder.AddCubicBezier(new Vector2(-95.3919983F, -222.218002F), new Vector2(-96.1119995F, -222.787994F), new Vector2(-96.7360001F, -223.556F)); + builder.AddLine(new Vector2(-98.8239975F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-98.2959976F, -220.820007F), new Vector2(-97.6780014F, -220.261993F), new Vector2(-96.9700012F, -219.794006F)); + builder.AddCubicBezier(new Vector2(-96.262001F, -219.326004F), new Vector2(-95.4759979F, -218.966003F), new Vector2(-94.6119995F, -218.714005F)); + builder.AddCubicBezier(new Vector2(-93.7480011F, -218.462006F), new Vector2(-92.8359985F, -218.335999F), new Vector2(-91.8759995F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-89.9560013F, -218.335999F), new Vector2(-88.4260025F, -218.804001F), new Vector2(-87.2860031F, -219.740005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1185() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-104.907997F, -219.091995F)); + builder.AddCubicBezier(new Vector2(-103.732002F, -219.595993F), new Vector2(-102.723999F, -220.328003F), new Vector2(-101.884003F, -221.287994F)); + builder.AddLine(new Vector2(-103.972F, -223.412003F)); + builder.AddCubicBezier(new Vector2(-104.547997F, -222.740005F), new Vector2(-105.237999F, -222.235992F), new Vector2(-106.042F, -221.899994F)); + builder.AddCubicBezier(new Vector2(-106.846001F, -221.563995F), new Vector2(-107.727997F, -221.395996F), new Vector2(-108.688004F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-109.839996F, -221.395996F), new Vector2(-110.860001F, -221.641998F), new Vector2(-111.748001F, -222.134003F)); + builder.AddCubicBezier(new Vector2(-112.636002F, -222.626007F), new Vector2(-113.32F, -223.322006F), new Vector2(-113.800003F, -224.222F)); + builder.AddCubicBezier(new Vector2(-114.279999F, -225.121994F), new Vector2(-114.519997F, -226.171997F), new Vector2(-114.519997F, -227.371994F)); + builder.AddCubicBezier(new Vector2(-114.519997F, -228.548004F), new Vector2(-114.292F, -229.567993F), new Vector2(-113.835999F, -230.432007F)); + builder.AddCubicBezier(new Vector2(-113.379997F, -231.296005F), new Vector2(-112.732002F, -231.968002F), new Vector2(-111.891998F, -232.447998F)); + builder.AddCubicBezier(new Vector2(-111.052002F, -232.927994F), new Vector2(-110.080002F, -233.167999F), new Vector2(-108.975998F, -233.167999F)); + builder.AddCubicBezier(new Vector2(-107.919998F, -233.167999F), new Vector2(-107.019997F, -232.945999F), new Vector2(-106.276001F, -232.501999F)); + builder.AddCubicBezier(new Vector2(-105.531998F, -232.057999F), new Vector2(-104.956001F, -231.434006F), new Vector2(-104.547997F, -230.630005F)); + builder.AddCubicBezier(new Vector2(-104.139999F, -229.826004F), new Vector2(-103.935997F, -228.848007F), new Vector2(-103.935997F, -227.695999F)); + builder.AddLine(new Vector2(-102.748001F, -228.740005F)); + builder.AddLine(new Vector2(-115.456001F, -228.740005F)); + builder.AddLine(new Vector2(-115.456001F, -226.039993F)); + builder.AddLine(new Vector2(-101.019997F, -226.039993F)); + builder.AddCubicBezier(new Vector2(-100.947998F, -226.376007F), new Vector2(-100.900002F, -226.682007F), new Vector2(-100.875999F, -226.957993F)); + builder.AddCubicBezier(new Vector2(-100.851997F, -227.233994F), new Vector2(-100.839996F, -227.492004F), new Vector2(-100.839996F, -227.731995F)); + builder.AddCubicBezier(new Vector2(-100.839996F, -229.363998F), new Vector2(-101.181999F, -230.815994F), new Vector2(-101.865997F, -232.087997F)); + builder.AddCubicBezier(new Vector2(-102.550003F, -233.360001F), new Vector2(-103.503998F, -234.356003F), new Vector2(-104.727997F, -235.076004F)); + builder.AddCubicBezier(new Vector2(-105.952003F, -235.796005F), new Vector2(-107.344002F, -236.156006F), new Vector2(-108.903999F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-110.559998F, -236.156006F), new Vector2(-112.054001F, -235.766006F), new Vector2(-113.386002F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-114.718002F, -234.205994F), new Vector2(-115.774002F, -233.143997F), new Vector2(-116.554001F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-117.334F, -230.455994F), new Vector2(-117.723999F, -228.944F), new Vector2(-117.723999F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-117.723999F, -225.559998F), new Vector2(-117.328003F, -224.035995F), new Vector2(-116.536003F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-115.744003F, -221.348007F), new Vector2(-114.669998F, -220.285995F), new Vector2(-113.314003F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-111.958F, -218.725998F), new Vector2(-110.416F, -218.335999F), new Vector2(-108.688004F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-107.344002F, -218.335999F), new Vector2(-106.084F, -218.587997F), new Vector2(-104.907997F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1186() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-122.386002F, -219.091995F)); + builder.AddCubicBezier(new Vector2(-121.246002F, -219.595993F), new Vector2(-120.279999F, -220.304001F), new Vector2(-119.487999F, -221.216003F)); + builder.AddLine(new Vector2(-121.612F, -223.376007F)); + builder.AddCubicBezier(new Vector2(-122.164001F, -222.751999F), new Vector2(-122.818001F, -222.278F), new Vector2(-123.573997F, -221.953995F)); + builder.AddCubicBezier(new Vector2(-124.330002F, -221.630005F), new Vector2(-125.164001F, -221.468002F), new Vector2(-126.075996F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-127.155998F, -221.468002F), new Vector2(-128.115997F, -221.720001F), new Vector2(-128.955994F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-129.796005F, -222.727997F), new Vector2(-130.455994F, -223.412003F), new Vector2(-130.936005F, -224.276001F)); + builder.AddCubicBezier(new Vector2(-131.416F, -225.139999F), new Vector2(-131.656006F, -226.136002F), new Vector2(-131.656006F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-131.656006F, -228.391998F), new Vector2(-131.416F, -229.388F), new Vector2(-130.936005F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-130.455994F, -231.115997F), new Vector2(-129.796005F, -231.794006F), new Vector2(-128.955994F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-128.115997F, -232.778F), new Vector2(-127.155998F, -233.024002F), new Vector2(-126.075996F, -233.024002F)); + builder.AddCubicBezier(new Vector2(-125.188004F, -233.024002F), new Vector2(-124.360001F, -232.862F), new Vector2(-123.592003F, -232.537994F)); + builder.AddCubicBezier(new Vector2(-122.823997F, -232.214005F), new Vector2(-122.176003F, -231.740005F), new Vector2(-121.648003F, -231.115997F)); + builder.AddLine(new Vector2(-119.487999F, -233.276001F)); + builder.AddCubicBezier(new Vector2(-120.304001F, -234.212006F), new Vector2(-121.276001F, -234.925995F), new Vector2(-122.403999F, -235.417999F)); + builder.AddCubicBezier(new Vector2(-123.531998F, -235.910004F), new Vector2(-124.755997F, -236.156006F), new Vector2(-126.075996F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-127.755997F, -236.156006F), new Vector2(-129.274002F, -235.766006F), new Vector2(-130.630005F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-131.985992F, -234.205994F), new Vector2(-133.054001F, -233.143997F), new Vector2(-133.834F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-134.613998F, -230.455994F), new Vector2(-135.003998F, -228.944F), new Vector2(-135.003998F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-135.003998F, -225.608002F), new Vector2(-134.613998F, -224.102005F), new Vector2(-133.834F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-133.054001F, -221.389999F), new Vector2(-131.985992F, -220.315994F), new Vector2(-130.630005F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-129.274002F, -218.731995F), new Vector2(-127.755997F, -218.335999F), new Vector2(-126.075996F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-124.755997F, -218.335999F), new Vector2(-123.526001F, -218.587997F), new Vector2(-122.386002F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1187() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-143.391998F, -231.944F)); + builder.AddCubicBezier(new Vector2(-142.623993F, -232.712006F), new Vector2(-141.639999F, -233.095993F), new Vector2(-140.440002F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-139.863998F, -233.095993F), new Vector2(-139.360001F, -233.011993F), new Vector2(-138.927994F, -232.843994F)); + builder.AddCubicBezier(new Vector2(-138.496002F, -232.675995F), new Vector2(-138.100006F, -232.399994F), new Vector2(-137.740005F, -232.016006F)); + builder.AddLine(new Vector2(-135.615997F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-136.216003F, -234.908005F), new Vector2(-136.863998F, -235.406006F), new Vector2(-137.559998F, -235.705994F)); + builder.AddCubicBezier(new Vector2(-138.255997F, -236.005997F), new Vector2(-139.035995F, -236.156006F), new Vector2(-139.899994F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-141.796005F, -236.156006F), new Vector2(-143.248001F, -235.507996F), new Vector2(-144.255997F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-145.264008F, -232.916F), new Vector2(-145.768005F, -231.175995F), new Vector2(-145.768005F, -228.992004F)); + builder.AddLine(new Vector2(-144.544006F, -228.416F)); + builder.AddCubicBezier(new Vector2(-144.544006F, -230F), new Vector2(-144.160004F, -231.175995F), new Vector2(-143.391998F, -231.944F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-144.544006F, -218.695999F)); + builder.AddLine(new Vector2(-144.544006F, -235.796005F)); + builder.AddLine(new Vector2(-147.783997F, -235.796005F)); + builder.AddLine(new Vector2(-147.783997F, -218.695999F)); + builder.AddLine(new Vector2(-144.544006F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1188() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-163.192001F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-164.031998F, -222.727997F), new Vector2(-164.692001F, -223.417999F), new Vector2(-165.171997F, -224.294006F)); + builder.AddCubicBezier(new Vector2(-165.651993F, -225.169998F), new Vector2(-165.891998F, -226.171997F), new Vector2(-165.891998F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-165.891998F, -228.404007F), new Vector2(-165.651993F, -229.388F), new Vector2(-165.171997F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-164.692001F, -231.115997F), new Vector2(-164.031998F, -231.794006F), new Vector2(-163.192001F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-162.352005F, -232.778F), new Vector2(-161.404007F, -233.024002F), new Vector2(-160.348007F, -233.024002F)); + builder.AddCubicBezier(new Vector2(-159.244003F, -233.024002F), new Vector2(-158.278F, -232.778F), new Vector2(-157.449997F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-156.621994F, -231.794006F), new Vector2(-155.962006F, -231.115997F), new Vector2(-155.470001F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-154.977997F, -229.388F), new Vector2(-154.731995F, -228.404007F), new Vector2(-154.731995F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-154.731995F, -226.171997F), new Vector2(-154.972F, -225.169998F), new Vector2(-155.451996F, -224.294006F)); + builder.AddCubicBezier(new Vector2(-155.932007F, -223.417999F), new Vector2(-156.591995F, -222.727997F), new Vector2(-157.432007F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-158.272003F, -221.720001F), new Vector2(-159.244003F, -221.468002F), new Vector2(-160.348007F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-161.404007F, -221.468002F), new Vector2(-162.352005F, -221.720001F), new Vector2(-163.192001F, -222.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-155.794006F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-154.438004F, -220.315994F), new Vector2(-153.363998F, -221.389999F), new Vector2(-152.572006F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-151.779999F, -224.102005F), new Vector2(-151.384003F, -225.619995F), new Vector2(-151.384003F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-151.384003F, -228.955994F), new Vector2(-151.779999F, -230.455994F), new Vector2(-152.572006F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-153.363998F, -233.143997F), new Vector2(-154.438004F, -234.205994F), new Vector2(-155.794006F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-157.149994F, -235.766006F), new Vector2(-158.667999F, -236.156006F), new Vector2(-160.348007F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-162.003998F, -236.156006F), new Vector2(-163.503998F, -235.759995F), new Vector2(-164.848007F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-166.192001F, -234.175995F), new Vector2(-167.259995F, -233.113998F), new Vector2(-168.052002F, -231.781998F)); + builder.AddCubicBezier(new Vector2(-168.843994F, -230.449997F), new Vector2(-169.240005F, -228.955994F), new Vector2(-169.240005F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-169.240005F, -225.619995F), new Vector2(-168.843994F, -224.102005F), new Vector2(-168.052002F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-167.259995F, -221.389999F), new Vector2(-166.192001F, -220.315994F), new Vector2(-164.848007F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-163.503998F, -218.731995F), new Vector2(-162.003998F, -218.335999F), new Vector2(-160.348007F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-158.667999F, -218.335999F), new Vector2(-157.149994F, -218.731995F), new Vector2(-155.794006F, -219.524002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1189() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-170.391998F, -232.843994F)); + builder.AddLine(new Vector2(-170.391998F, -235.796005F)); + builder.AddLine(new Vector2(-183.279999F, -235.796005F)); + builder.AddLine(new Vector2(-183.279999F, -232.843994F)); + builder.AddLine(new Vector2(-170.391998F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-175.828003F, -218.695999F)); + builder.AddLine(new Vector2(-175.828003F, -238.352005F)); + builder.AddCubicBezier(new Vector2(-175.828003F, -239.408005F), new Vector2(-175.546005F, -240.229996F), new Vector2(-174.981995F, -240.817993F)); + builder.AddCubicBezier(new Vector2(-174.417999F, -241.406006F), new Vector2(-173.619995F, -241.699997F), new Vector2(-172.587997F, -241.699997F)); + builder.AddCubicBezier(new Vector2(-172.035995F, -241.699997F), new Vector2(-171.567993F, -241.615997F), new Vector2(-171.184006F, -241.447998F)); + builder.AddCubicBezier(new Vector2(-170.800003F, -241.279999F), new Vector2(-170.451996F, -241.028F), new Vector2(-170.139999F, -240.692001F)); + builder.AddLine(new Vector2(-168.016006F, -242.779999F)); + builder.AddCubicBezier(new Vector2(-168.615997F, -243.427994F), new Vector2(-169.276001F, -243.919998F), new Vector2(-169.996002F, -244.255997F)); + builder.AddCubicBezier(new Vector2(-170.716003F, -244.591995F), new Vector2(-171.567993F, -244.759995F), new Vector2(-172.552002F, -244.759995F)); + builder.AddCubicBezier(new Vector2(-173.848007F, -244.759995F), new Vector2(-174.988007F, -244.483994F), new Vector2(-175.972F, -243.932007F)); + builder.AddCubicBezier(new Vector2(-176.955994F, -243.380005F), new Vector2(-177.723999F, -242.623993F), new Vector2(-178.276001F, -241.664001F)); + builder.AddCubicBezier(new Vector2(-178.828003F, -240.703995F), new Vector2(-179.104004F, -239.600006F), new Vector2(-179.104004F, -238.352005F)); + builder.AddLine(new Vector2(-179.104004F, -218.695999F)); + builder.AddLine(new Vector2(-175.828003F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1190() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-203.151993F, -211.531998F)); + builder.AddLine(new Vector2(-199.912003F, -218.552002F)); + builder.AddLine(new Vector2(-201.748001F, -221.863998F)); + builder.AddLine(new Vector2(-206.751999F, -211.531998F)); + builder.AddLine(new Vector2(-203.151993F, -211.531998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-199.912003F, -218.552002F)); + builder.AddLine(new Vector2(-191.919998F, -235.796005F)); + builder.AddLine(new Vector2(-195.520004F, -235.796005F)); + builder.AddLine(new Vector2(-201.315994F, -222.296005F)); + builder.AddLine(new Vector2(-200.164001F, -222.296005F)); + builder.AddLine(new Vector2(-205.671997F, -235.796005F)); + builder.AddLine(new Vector2(-209.272003F, -235.796005F)); + builder.AddLine(new Vector2(-201.856003F, -218.552002F)); + builder.AddLine(new Vector2(-199.912003F, -218.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1191() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-217.227997F, -231.944F)); + builder.AddCubicBezier(new Vector2(-216.460007F, -232.712006F), new Vector2(-215.475998F, -233.095993F), new Vector2(-214.276001F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-213.699997F, -233.095993F), new Vector2(-213.195999F, -233.011993F), new Vector2(-212.764008F, -232.843994F)); + builder.AddCubicBezier(new Vector2(-212.332001F, -232.675995F), new Vector2(-211.936005F, -232.399994F), new Vector2(-211.576004F, -232.016006F)); + builder.AddLine(new Vector2(-209.451996F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-210.052002F, -234.908005F), new Vector2(-210.699997F, -235.406006F), new Vector2(-211.395996F, -235.705994F)); + builder.AddCubicBezier(new Vector2(-212.091995F, -236.005997F), new Vector2(-212.871994F, -236.156006F), new Vector2(-213.735992F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-215.632004F, -236.156006F), new Vector2(-217.084F, -235.507996F), new Vector2(-218.091995F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-219.100006F, -232.916F), new Vector2(-219.604004F, -231.175995F), new Vector2(-219.604004F, -228.992004F)); + builder.AddLine(new Vector2(-218.380005F, -228.416F)); + builder.AddCubicBezier(new Vector2(-218.380005F, -230F), new Vector2(-217.996002F, -231.175995F), new Vector2(-217.227997F, -231.944F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-218.380005F, -218.695999F)); + builder.AddLine(new Vector2(-218.380005F, -235.796005F)); + builder.AddLine(new Vector2(-221.619995F, -235.796005F)); + builder.AddLine(new Vector2(-221.619995F, -218.695999F)); + builder.AddLine(new Vector2(-218.380005F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1192() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-226.335999F, -218.695999F)); + builder.AddLine(new Vector2(-226.335999F, -235.796005F)); + builder.AddLine(new Vector2(-229.612F, -235.796005F)); + builder.AddLine(new Vector2(-229.612F, -231.619995F)); + builder.AddLine(new Vector2(-229F, -227.479996F)); + builder.AddLine(new Vector2(-229.612F, -223.304001F)); + builder.AddLine(new Vector2(-229.612F, -218.695999F)); + builder.AddLine(new Vector2(-226.335999F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-237.639999F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-238.479996F, -222.656006F), new Vector2(-239.134003F, -223.345993F), new Vector2(-239.602005F, -224.222F)); + builder.AddCubicBezier(new Vector2(-240.070007F, -225.098007F), new Vector2(-240.304001F, -226.112F), new Vector2(-240.304001F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-240.304001F, -228.391998F), new Vector2(-240.070007F, -229.393997F), new Vector2(-239.602005F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-239.134003F, -231.145996F), new Vector2(-238.485992F, -231.835999F), new Vector2(-237.658005F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-236.830002F, -232.843994F), new Vector2(-235.876007F, -233.095993F), new Vector2(-234.796005F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-233.716003F, -233.095993F), new Vector2(-232.774002F, -232.850006F), new Vector2(-231.970001F, -232.358002F)); + builder.AddCubicBezier(new Vector2(-231.166F, -231.865997F), new Vector2(-230.535995F, -231.175995F), new Vector2(-230.080002F, -230.287994F)); + builder.AddCubicBezier(new Vector2(-229.623993F, -229.399994F), new Vector2(-229.395996F, -228.380005F), new Vector2(-229.395996F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-229.395996F, -225.524002F), new Vector2(-229.888F, -224.126007F), new Vector2(-230.871994F, -223.033997F)); + builder.AddCubicBezier(new Vector2(-231.856003F, -221.942001F), new Vector2(-233.151993F, -221.395996F), new Vector2(-234.759995F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-235.839996F, -221.395996F), new Vector2(-236.800003F, -221.647995F), new Vector2(-237.639999F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-231.807999F, -219.145996F)); + builder.AddCubicBezier(new Vector2(-230.776001F, -219.686005F), new Vector2(-229.953995F, -220.436005F), new Vector2(-229.341995F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-228.729996F, -222.356003F), new Vector2(-228.388F, -223.447998F), new Vector2(-228.315994F, -224.671997F)); + builder.AddLine(new Vector2(-228.315994F, -229.820007F)); + builder.AddCubicBezier(new Vector2(-228.388F, -231.067993F), new Vector2(-228.735992F, -232.166F), new Vector2(-229.360001F, -233.113998F)); + builder.AddCubicBezier(new Vector2(-229.983994F, -234.061996F), new Vector2(-230.806F, -234.806F), new Vector2(-231.826004F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-232.845993F, -235.886002F), new Vector2(-234.003998F, -236.156006F), new Vector2(-235.300003F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-236.884003F, -236.156006F), new Vector2(-238.306F, -235.759995F), new Vector2(-239.565994F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-240.826004F, -234.175995F), new Vector2(-241.822006F, -233.108002F), new Vector2(-242.554001F, -231.764008F)); + builder.AddCubicBezier(new Vector2(-243.285995F, -230.419998F), new Vector2(-243.651993F, -228.908005F), new Vector2(-243.651993F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-243.651993F, -225.548004F), new Vector2(-243.285995F, -224.035995F), new Vector2(-242.554001F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-241.822006F, -221.348007F), new Vector2(-240.826004F, -220.285995F), new Vector2(-239.565994F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-238.306F, -218.725998F), new Vector2(-236.884003F, -218.335999F), new Vector2(-235.300003F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-234.003998F, -218.335999F), new Vector2(-232.839996F, -218.606003F), new Vector2(-231.807999F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1193() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-245.199997F, -232.843994F)); + builder.AddLine(new Vector2(-245.199997F, -235.796005F)); + builder.AddLine(new Vector2(-256.864014F, -235.796005F)); + builder.AddLine(new Vector2(-256.864014F, -232.843994F)); + builder.AddLine(new Vector2(-245.199997F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-249.412003F, -218.695999F)); + builder.AddLine(new Vector2(-249.412003F, -242.960007F)); + builder.AddLine(new Vector2(-252.651993F, -242.960007F)); + builder.AddLine(new Vector2(-252.651993F, -218.695999F)); + builder.AddLine(new Vector2(-249.412003F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1194() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-260.212006F, -239.809998F)); + builder.AddCubicBezier(new Vector2(-259.828003F, -240.205994F), new Vector2(-259.635986F, -240.703995F), new Vector2(-259.635986F, -241.304001F)); + builder.AddCubicBezier(new Vector2(-259.635986F, -241.880005F), new Vector2(-259.828003F, -242.365997F), new Vector2(-260.212006F, -242.761993F)); + builder.AddCubicBezier(new Vector2(-260.596008F, -243.158005F), new Vector2(-261.088013F, -243.356003F), new Vector2(-261.687988F, -243.356003F)); + builder.AddCubicBezier(new Vector2(-262.287994F, -243.356003F), new Vector2(-262.779999F, -243.158005F), new Vector2(-263.164001F, -242.761993F)); + builder.AddCubicBezier(new Vector2(-263.548004F, -242.365997F), new Vector2(-263.73999F, -241.880005F), new Vector2(-263.73999F, -241.304001F)); + builder.AddCubicBezier(new Vector2(-263.73999F, -240.703995F), new Vector2(-263.548004F, -240.205994F), new Vector2(-263.164001F, -239.809998F)); + builder.AddCubicBezier(new Vector2(-262.779999F, -239.414001F), new Vector2(-262.287994F, -239.216003F), new Vector2(-261.687988F, -239.216003F)); + builder.AddCubicBezier(new Vector2(-261.088013F, -239.216003F), new Vector2(-260.596008F, -239.414001F), new Vector2(-260.212006F, -239.809998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-260.067993F, -218.695999F)); + builder.AddLine(new Vector2(-260.067993F, -235.796005F)); + builder.AddLine(new Vector2(-263.343994F, -235.796005F)); + builder.AddLine(new Vector2(-263.343994F, -218.695999F)); + builder.AddLine(new Vector2(-260.067993F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1195() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-268.096008F, -218.695999F)); + builder.AddLine(new Vector2(-268.096008F, -244.399994F)); + builder.AddLine(new Vector2(-271.335999F, -244.399994F)); + builder.AddLine(new Vector2(-271.335999F, -218.695999F)); + builder.AddLine(new Vector2(-268.096008F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1196() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-276.268005F, -239.809998F)); + builder.AddCubicBezier(new Vector2(-275.884003F, -240.205994F), new Vector2(-275.691986F, -240.703995F), new Vector2(-275.691986F, -241.304001F)); + builder.AddCubicBezier(new Vector2(-275.691986F, -241.880005F), new Vector2(-275.884003F, -242.365997F), new Vector2(-276.268005F, -242.761993F)); + builder.AddCubicBezier(new Vector2(-276.652008F, -243.158005F), new Vector2(-277.144012F, -243.356003F), new Vector2(-277.743988F, -243.356003F)); + builder.AddCubicBezier(new Vector2(-278.343994F, -243.356003F), new Vector2(-278.835999F, -243.158005F), new Vector2(-279.220001F, -242.761993F)); + builder.AddCubicBezier(new Vector2(-279.604004F, -242.365997F), new Vector2(-279.79599F, -241.880005F), new Vector2(-279.79599F, -241.304001F)); + builder.AddCubicBezier(new Vector2(-279.79599F, -240.703995F), new Vector2(-279.604004F, -240.205994F), new Vector2(-279.220001F, -239.809998F)); + builder.AddCubicBezier(new Vector2(-278.835999F, -239.414001F), new Vector2(-278.343994F, -239.216003F), new Vector2(-277.743988F, -239.216003F)); + builder.AddCubicBezier(new Vector2(-277.144012F, -239.216003F), new Vector2(-276.652008F, -239.414001F), new Vector2(-276.268005F, -239.809998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-276.123993F, -218.695999F)); + builder.AddLine(new Vector2(-276.123993F, -235.796005F)); + builder.AddLine(new Vector2(-279.399994F, -235.796005F)); + builder.AddLine(new Vector2(-279.399994F, -218.695999F)); + builder.AddLine(new Vector2(-276.123993F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1197() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-283.791992F, -218.695999F)); + builder.AddLine(new Vector2(-283.791992F, -229.675995F)); + builder.AddCubicBezier(new Vector2(-283.791992F, -231.020004F), new Vector2(-284.085999F, -232.171997F), new Vector2(-284.674011F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-285.261993F, -234.091995F), new Vector2(-286.048004F, -234.835999F), new Vector2(-287.032013F, -235.363998F)); + builder.AddCubicBezier(new Vector2(-288.015991F, -235.891998F), new Vector2(-289.131989F, -236.156006F), new Vector2(-290.380005F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-291.579987F, -236.156006F), new Vector2(-292.68399F, -235.886002F), new Vector2(-293.691986F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-294.700012F, -234.806F), new Vector2(-295.522003F, -234.061996F), new Vector2(-296.15799F, -233.113998F)); + builder.AddCubicBezier(new Vector2(-296.794006F, -232.166F), new Vector2(-297.14801F, -231.031998F), new Vector2(-297.220001F, -229.712006F)); + builder.AddLine(new Vector2(-295.384003F, -229.028F)); + builder.AddCubicBezier(new Vector2(-295.384003F, -229.891998F), new Vector2(-295.191986F, -230.623993F), new Vector2(-294.808014F, -231.223999F)); + builder.AddCubicBezier(new Vector2(-294.424011F, -231.824005F), new Vector2(-293.914001F, -232.292007F), new Vector2(-293.278015F, -232.628006F)); + builder.AddCubicBezier(new Vector2(-292.641998F, -232.964005F), new Vector2(-291.928009F, -233.132004F), new Vector2(-291.135986F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-289.984009F, -233.132004F), new Vector2(-289.018005F, -232.766006F), new Vector2(-288.238007F, -232.033997F)); + builder.AddCubicBezier(new Vector2(-287.458008F, -231.302002F), new Vector2(-287.067993F, -230.300003F), new Vector2(-287.067993F, -229.028F)); + builder.AddLine(new Vector2(-287.067993F, -218.695999F)); + builder.AddLine(new Vector2(-283.791992F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-295.384003F, -218.695999F)); + builder.AddLine(new Vector2(-295.384003F, -229.712006F)); + builder.AddCubicBezier(new Vector2(-295.384003F, -231.031998F), new Vector2(-295.665985F, -232.171997F), new Vector2(-296.230011F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-296.794006F, -234.091995F), new Vector2(-297.562012F, -234.835999F), new Vector2(-298.533997F, -235.363998F)); + builder.AddCubicBezier(new Vector2(-299.506012F, -235.891998F), new Vector2(-300.59201F, -236.156006F), new Vector2(-301.791992F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-303.015991F, -236.156006F), new Vector2(-304.119995F, -235.886002F), new Vector2(-305.104004F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-306.088013F, -234.806F), new Vector2(-306.862F, -234.056F), new Vector2(-307.425995F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-307.98999F, -232.136002F), new Vector2(-308.272003F, -231.007996F), new Vector2(-308.272003F, -229.712006F)); + builder.AddLine(new Vector2(-306.940002F, -229.028F)); + builder.AddCubicBezier(new Vector2(-306.940002F, -229.891998F), new Vector2(-306.747986F, -230.623993F), new Vector2(-306.364014F, -231.223999F)); + builder.AddCubicBezier(new Vector2(-305.980011F, -231.824005F), new Vector2(-305.476013F, -232.292007F), new Vector2(-304.85199F, -232.628006F)); + builder.AddCubicBezier(new Vector2(-304.227997F, -232.964005F), new Vector2(-303.519989F, -233.132004F), new Vector2(-302.727997F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-301.552002F, -233.132004F), new Vector2(-300.574005F, -232.766006F), new Vector2(-299.794006F, -232.033997F)); + builder.AddCubicBezier(new Vector2(-299.014008F, -231.302002F), new Vector2(-298.623993F, -230.300003F), new Vector2(-298.623993F, -229.028F)); + builder.AddLine(new Vector2(-298.623993F, -218.695999F)); + builder.AddLine(new Vector2(-295.384003F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-306.940002F, -218.695999F)); + builder.AddLine(new Vector2(-306.940002F, -235.796005F)); + builder.AddLine(new Vector2(-310.179993F, -235.796005F)); + builder.AddLine(new Vector2(-310.179993F, -218.695999F)); + builder.AddLine(new Vector2(-306.940002F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1198() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-325.227997F, -219.091995F)); + builder.AddCubicBezier(new Vector2(-324.052002F, -219.595993F), new Vector2(-323.044006F, -220.328003F), new Vector2(-322.20401F, -221.287994F)); + builder.AddLine(new Vector2(-324.291992F, -223.412003F)); + builder.AddCubicBezier(new Vector2(-324.868011F, -222.740005F), new Vector2(-325.558014F, -222.235992F), new Vector2(-326.362F, -221.899994F)); + builder.AddCubicBezier(new Vector2(-327.165985F, -221.563995F), new Vector2(-328.048004F, -221.395996F), new Vector2(-329.007996F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-330.160004F, -221.395996F), new Vector2(-331.179993F, -221.641998F), new Vector2(-332.067993F, -222.134003F)); + builder.AddCubicBezier(new Vector2(-332.955994F, -222.626007F), new Vector2(-333.640015F, -223.322006F), new Vector2(-334.119995F, -224.222F)); + builder.AddCubicBezier(new Vector2(-334.600006F, -225.121994F), new Vector2(-334.839996F, -226.171997F), new Vector2(-334.839996F, -227.371994F)); + builder.AddCubicBezier(new Vector2(-334.839996F, -228.548004F), new Vector2(-334.612F, -229.567993F), new Vector2(-334.156006F, -230.432007F)); + builder.AddCubicBezier(new Vector2(-333.700012F, -231.296005F), new Vector2(-333.052002F, -231.968002F), new Vector2(-332.212006F, -232.447998F)); + builder.AddCubicBezier(new Vector2(-331.372009F, -232.927994F), new Vector2(-330.399994F, -233.167999F), new Vector2(-329.29599F, -233.167999F)); + builder.AddCubicBezier(new Vector2(-328.23999F, -233.167999F), new Vector2(-327.339996F, -232.945999F), new Vector2(-326.596008F, -232.501999F)); + builder.AddCubicBezier(new Vector2(-325.85199F, -232.057999F), new Vector2(-325.276001F, -231.434006F), new Vector2(-324.868011F, -230.630005F)); + builder.AddCubicBezier(new Vector2(-324.459991F, -229.826004F), new Vector2(-324.256012F, -228.848007F), new Vector2(-324.256012F, -227.695999F)); + builder.AddLine(new Vector2(-323.067993F, -228.740005F)); + builder.AddLine(new Vector2(-335.776001F, -228.740005F)); + builder.AddLine(new Vector2(-335.776001F, -226.039993F)); + builder.AddLine(new Vector2(-321.339996F, -226.039993F)); + builder.AddCubicBezier(new Vector2(-321.268005F, -226.376007F), new Vector2(-321.220001F, -226.682007F), new Vector2(-321.196014F, -226.957993F)); + builder.AddCubicBezier(new Vector2(-321.171997F, -227.233994F), new Vector2(-321.160004F, -227.492004F), new Vector2(-321.160004F, -227.731995F)); + builder.AddCubicBezier(new Vector2(-321.160004F, -229.363998F), new Vector2(-321.502014F, -230.815994F), new Vector2(-322.186005F, -232.087997F)); + builder.AddCubicBezier(new Vector2(-322.869995F, -233.360001F), new Vector2(-323.824005F, -234.356003F), new Vector2(-325.048004F, -235.076004F)); + builder.AddCubicBezier(new Vector2(-326.272003F, -235.796005F), new Vector2(-327.664001F, -236.156006F), new Vector2(-329.223999F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-330.880005F, -236.156006F), new Vector2(-332.373993F, -235.766006F), new Vector2(-333.705994F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-335.037994F, -234.205994F), new Vector2(-336.093994F, -233.143997F), new Vector2(-336.873993F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-337.653992F, -230.455994F), new Vector2(-338.044006F, -228.944F), new Vector2(-338.044006F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-338.044006F, -225.559998F), new Vector2(-337.64801F, -224.035995F), new Vector2(-336.855988F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-336.063995F, -221.348007F), new Vector2(-334.98999F, -220.285995F), new Vector2(-333.634003F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-332.278015F, -218.725998F), new Vector2(-330.735992F, -218.335999F), new Vector2(-329.007996F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-327.664001F, -218.335999F), new Vector2(-326.403992F, -218.587997F), new Vector2(-325.227997F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1199() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-341.320007F, -218.695999F)); + builder.AddLine(new Vector2(-341.320007F, -229.675995F)); + builder.AddCubicBezier(new Vector2(-341.320007F, -231.020004F), new Vector2(-341.614014F, -232.171997F), new Vector2(-342.201996F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-342.790009F, -234.091995F), new Vector2(-343.575989F, -234.835999F), new Vector2(-344.559998F, -235.363998F)); + builder.AddCubicBezier(new Vector2(-345.544006F, -235.891998F), new Vector2(-346.660004F, -236.156006F), new Vector2(-347.90799F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-349.108002F, -236.156006F), new Vector2(-350.212006F, -235.886002F), new Vector2(-351.220001F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-352.227997F, -234.806F), new Vector2(-353.049988F, -234.061996F), new Vector2(-353.686005F, -233.113998F)); + builder.AddCubicBezier(new Vector2(-354.321991F, -232.166F), new Vector2(-354.675995F, -231.031998F), new Vector2(-354.747986F, -229.712006F)); + builder.AddLine(new Vector2(-352.911987F, -229.028F)); + builder.AddCubicBezier(new Vector2(-352.911987F, -229.891998F), new Vector2(-352.720001F, -230.623993F), new Vector2(-352.335999F, -231.223999F)); + builder.AddCubicBezier(new Vector2(-351.951996F, -231.824005F), new Vector2(-351.441986F, -232.292007F), new Vector2(-350.806F, -232.628006F)); + builder.AddCubicBezier(new Vector2(-350.170013F, -232.964005F), new Vector2(-349.455994F, -233.132004F), new Vector2(-348.664001F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-347.511993F, -233.132004F), new Vector2(-346.54599F, -232.766006F), new Vector2(-345.765991F, -232.033997F)); + builder.AddCubicBezier(new Vector2(-344.985992F, -231.302002F), new Vector2(-344.596008F, -230.300003F), new Vector2(-344.596008F, -229.028F)); + builder.AddLine(new Vector2(-344.596008F, -218.695999F)); + builder.AddLine(new Vector2(-341.320007F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-352.911987F, -218.695999F)); + builder.AddLine(new Vector2(-352.911987F, -229.712006F)); + builder.AddCubicBezier(new Vector2(-352.911987F, -231.031998F), new Vector2(-353.194F, -232.171997F), new Vector2(-353.757996F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-354.321991F, -234.091995F), new Vector2(-355.089996F, -234.835999F), new Vector2(-356.062012F, -235.363998F)); + builder.AddCubicBezier(new Vector2(-357.033997F, -235.891998F), new Vector2(-358.119995F, -236.156006F), new Vector2(-359.320007F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-360.544006F, -236.156006F), new Vector2(-361.64801F, -235.886002F), new Vector2(-362.631989F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-363.615997F, -234.806F), new Vector2(-364.390015F, -234.056F), new Vector2(-364.95401F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-365.518005F, -232.136002F), new Vector2(-365.799988F, -231.007996F), new Vector2(-365.799988F, -229.712006F)); + builder.AddLine(new Vector2(-364.467987F, -229.028F)); + builder.AddCubicBezier(new Vector2(-364.467987F, -229.891998F), new Vector2(-364.276001F, -230.623993F), new Vector2(-363.891998F, -231.223999F)); + builder.AddCubicBezier(new Vector2(-363.507996F, -231.824005F), new Vector2(-363.003998F, -232.292007F), new Vector2(-362.380005F, -232.628006F)); + builder.AddCubicBezier(new Vector2(-361.756012F, -232.964005F), new Vector2(-361.048004F, -233.132004F), new Vector2(-360.256012F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-359.079987F, -233.132004F), new Vector2(-358.10199F, -232.766006F), new Vector2(-357.321991F, -232.033997F)); + builder.AddCubicBezier(new Vector2(-356.541992F, -231.302002F), new Vector2(-356.152008F, -230.300003F), new Vector2(-356.152008F, -229.028F)); + builder.AddLine(new Vector2(-356.152008F, -218.695999F)); + builder.AddLine(new Vector2(-352.911987F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-364.467987F, -218.695999F)); + builder.AddLine(new Vector2(-364.467987F, -235.796005F)); + builder.AddLine(new Vector2(-367.708008F, -235.796005F)); + builder.AddLine(new Vector2(-367.708008F, -218.695999F)); + builder.AddLine(new Vector2(-364.467987F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1200() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-383.115997F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-383.955994F, -222.727997F), new Vector2(-384.615997F, -223.417999F), new Vector2(-385.096008F, -224.294006F)); + builder.AddCubicBezier(new Vector2(-385.575989F, -225.169998F), new Vector2(-385.81601F, -226.171997F), new Vector2(-385.81601F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-385.81601F, -228.404007F), new Vector2(-385.575989F, -229.388F), new Vector2(-385.096008F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-384.615997F, -231.115997F), new Vector2(-383.955994F, -231.794006F), new Vector2(-383.115997F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-382.276001F, -232.778F), new Vector2(-381.328003F, -233.024002F), new Vector2(-380.272003F, -233.024002F)); + builder.AddCubicBezier(new Vector2(-379.167999F, -233.024002F), new Vector2(-378.201996F, -232.778F), new Vector2(-377.373993F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-376.54599F, -231.794006F), new Vector2(-375.885986F, -231.115997F), new Vector2(-375.394012F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-374.902008F, -229.388F), new Vector2(-374.656006F, -228.404007F), new Vector2(-374.656006F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-374.656006F, -226.171997F), new Vector2(-374.895996F, -225.169998F), new Vector2(-375.376007F, -224.294006F)); + builder.AddCubicBezier(new Vector2(-375.855988F, -223.417999F), new Vector2(-376.515991F, -222.727997F), new Vector2(-377.355988F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-378.196014F, -221.720001F), new Vector2(-379.167999F, -221.468002F), new Vector2(-380.272003F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-381.328003F, -221.468002F), new Vector2(-382.276001F, -221.720001F), new Vector2(-383.115997F, -222.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-375.717987F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-374.362F, -220.315994F), new Vector2(-373.287994F, -221.389999F), new Vector2(-372.496002F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-371.70401F, -224.102005F), new Vector2(-371.308014F, -225.619995F), new Vector2(-371.308014F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-371.308014F, -228.955994F), new Vector2(-371.70401F, -230.455994F), new Vector2(-372.496002F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-373.287994F, -233.143997F), new Vector2(-374.362F, -234.205994F), new Vector2(-375.717987F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-377.074005F, -235.766006F), new Vector2(-378.59201F, -236.156006F), new Vector2(-380.272003F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-381.928009F, -236.156006F), new Vector2(-383.428009F, -235.759995F), new Vector2(-384.772003F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-386.115997F, -234.175995F), new Vector2(-387.18399F, -233.113998F), new Vector2(-387.976013F, -231.781998F)); + builder.AddCubicBezier(new Vector2(-388.768005F, -230.449997F), new Vector2(-389.164001F, -228.955994F), new Vector2(-389.164001F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-389.164001F, -225.619995F), new Vector2(-388.768005F, -224.102005F), new Vector2(-387.976013F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-387.18399F, -221.389999F), new Vector2(-386.115997F, -220.315994F), new Vector2(-384.772003F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-383.428009F, -218.731995F), new Vector2(-381.928009F, -218.335999F), new Vector2(-380.272003F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-378.59201F, -218.335999F), new Vector2(-377.074005F, -218.731995F), new Vector2(-375.717987F, -219.524002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1201() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-393.394012F, -219.740005F)); + builder.AddCubicBezier(new Vector2(-392.253998F, -220.675995F), new Vector2(-391.68399F, -221.947998F), new Vector2(-391.68399F, -223.556F)); + builder.AddCubicBezier(new Vector2(-391.68399F, -224.612F), new Vector2(-391.906006F, -225.464005F), new Vector2(-392.350006F, -226.112F)); + builder.AddCubicBezier(new Vector2(-392.794006F, -226.759995F), new Vector2(-393.364014F, -227.276001F), new Vector2(-394.059998F, -227.660004F)); + builder.AddCubicBezier(new Vector2(-394.756012F, -228.044006F), new Vector2(-395.488007F, -228.350006F), new Vector2(-396.256012F, -228.578003F)); + builder.AddCubicBezier(new Vector2(-397.023987F, -228.806F), new Vector2(-397.761993F, -229.028F), new Vector2(-398.470001F, -229.244003F)); + builder.AddCubicBezier(new Vector2(-399.178009F, -229.460007F), new Vector2(-399.747986F, -229.723999F), new Vector2(-400.179993F, -230.035995F)); + builder.AddCubicBezier(new Vector2(-400.612F, -230.348007F), new Vector2(-400.828003F, -230.792007F), new Vector2(-400.828003F, -231.367996F)); + builder.AddCubicBezier(new Vector2(-400.828003F, -231.919998F), new Vector2(-400.582001F, -232.363998F), new Vector2(-400.089996F, -232.699997F)); + builder.AddCubicBezier(new Vector2(-399.597992F, -233.035995F), new Vector2(-398.884003F, -233.203995F), new Vector2(-397.947998F, -233.203995F)); + builder.AddCubicBezier(new Vector2(-397.059998F, -233.203995F), new Vector2(-396.268005F, -233.035995F), new Vector2(-395.571991F, -232.699997F)); + builder.AddCubicBezier(new Vector2(-394.876007F, -232.363998F), new Vector2(-394.276001F, -231.884003F), new Vector2(-393.772003F, -231.259995F)); + builder.AddLine(new Vector2(-391.68399F, -233.348007F)); + builder.AddCubicBezier(new Vector2(-392.355988F, -234.283997F), new Vector2(-393.213989F, -234.985992F), new Vector2(-394.257996F, -235.453995F)); + builder.AddCubicBezier(new Vector2(-395.302002F, -235.921997F), new Vector2(-396.496002F, -236.156006F), new Vector2(-397.839996F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-399.112F, -236.156006F), new Vector2(-400.20401F, -235.951996F), new Vector2(-401.115997F, -235.544006F)); + builder.AddCubicBezier(new Vector2(-402.028015F, -235.136002F), new Vector2(-402.730011F, -234.554001F), new Vector2(-403.221985F, -233.798004F)); + builder.AddCubicBezier(new Vector2(-403.713989F, -233.042007F), new Vector2(-403.959991F, -232.147995F), new Vector2(-403.959991F, -231.115997F)); + builder.AddCubicBezier(new Vector2(-403.959991F, -230.084F), new Vector2(-403.738007F, -229.25F), new Vector2(-403.294006F, -228.613998F)); + builder.AddCubicBezier(new Vector2(-402.850006F, -227.977997F), new Vector2(-402.279999F, -227.479996F), new Vector2(-401.584015F, -227.119995F)); + builder.AddCubicBezier(new Vector2(-400.888F, -226.759995F), new Vector2(-400.149994F, -226.472F), new Vector2(-399.369995F, -226.255997F)); + builder.AddCubicBezier(new Vector2(-398.589996F, -226.039993F), new Vector2(-397.85199F, -225.817993F), new Vector2(-397.156006F, -225.589996F)); + builder.AddCubicBezier(new Vector2(-396.459991F, -225.362F), new Vector2(-395.890015F, -225.074005F), new Vector2(-395.446014F, -224.725998F)); + builder.AddCubicBezier(new Vector2(-395.002014F, -224.378006F), new Vector2(-394.779999F, -223.891998F), new Vector2(-394.779999F, -223.268005F)); + builder.AddCubicBezier(new Vector2(-394.779999F, -222.643997F), new Vector2(-395.056F, -222.158005F), new Vector2(-395.608002F, -221.809998F)); + builder.AddCubicBezier(new Vector2(-396.160004F, -221.462006F), new Vector2(-396.940002F, -221.287994F), new Vector2(-397.947998F, -221.287994F)); + builder.AddCubicBezier(new Vector2(-398.955994F, -221.287994F), new Vector2(-399.868011F, -221.473999F), new Vector2(-400.68399F, -221.845993F)); + builder.AddCubicBezier(new Vector2(-401.5F, -222.218002F), new Vector2(-402.220001F, -222.787994F), new Vector2(-402.843994F, -223.556F)); + builder.AddLine(new Vector2(-404.932007F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-404.403992F, -220.820007F), new Vector2(-403.786011F, -220.261993F), new Vector2(-403.078003F, -219.794006F)); + builder.AddCubicBezier(new Vector2(-402.369995F, -219.326004F), new Vector2(-401.584015F, -218.966003F), new Vector2(-400.720001F, -218.714005F)); + builder.AddCubicBezier(new Vector2(-399.855988F, -218.462006F), new Vector2(-398.944F, -218.335999F), new Vector2(-397.984009F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-396.063995F, -218.335999F), new Vector2(-394.533997F, -218.804001F), new Vector2(-393.394012F, -219.740005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1202() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-414.040009F, -232.843994F)); + builder.AddLine(new Vector2(-414.040009F, -235.796005F)); + builder.AddLine(new Vector2(-425.70401F, -235.796005F)); + builder.AddLine(new Vector2(-425.70401F, -232.843994F)); + builder.AddLine(new Vector2(-414.040009F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-418.252014F, -218.695999F)); + builder.AddLine(new Vector2(-418.252014F, -242.960007F)); + builder.AddLine(new Vector2(-421.492004F, -242.960007F)); + builder.AddLine(new Vector2(-421.492004F, -218.695999F)); + builder.AddLine(new Vector2(-418.252014F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1203() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-428.764008F, -218.695999F)); + builder.AddLine(new Vector2(-428.764008F, -235.796005F)); + builder.AddLine(new Vector2(-432.040009F, -235.796005F)); + builder.AddLine(new Vector2(-432.040009F, -231.619995F)); + builder.AddLine(new Vector2(-431.428009F, -227.479996F)); + builder.AddLine(new Vector2(-432.040009F, -223.304001F)); + builder.AddLine(new Vector2(-432.040009F, -218.695999F)); + builder.AddLine(new Vector2(-428.764008F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-440.067993F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-440.90799F, -222.656006F), new Vector2(-441.562012F, -223.345993F), new Vector2(-442.029999F, -224.222F)); + builder.AddCubicBezier(new Vector2(-442.497986F, -225.098007F), new Vector2(-442.731995F, -226.112F), new Vector2(-442.731995F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-442.731995F, -228.391998F), new Vector2(-442.497986F, -229.393997F), new Vector2(-442.029999F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-441.562012F, -231.145996F), new Vector2(-440.914001F, -231.835999F), new Vector2(-440.085999F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-439.257996F, -232.843994F), new Vector2(-438.303986F, -233.095993F), new Vector2(-437.223999F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-436.144012F, -233.095993F), new Vector2(-435.201996F, -232.850006F), new Vector2(-434.39801F, -232.358002F)); + builder.AddCubicBezier(new Vector2(-433.593994F, -231.865997F), new Vector2(-432.963989F, -231.175995F), new Vector2(-432.507996F, -230.287994F)); + builder.AddCubicBezier(new Vector2(-432.052002F, -229.399994F), new Vector2(-431.824005F, -228.380005F), new Vector2(-431.824005F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-431.824005F, -225.524002F), new Vector2(-432.31601F, -224.126007F), new Vector2(-433.299988F, -223.033997F)); + builder.AddCubicBezier(new Vector2(-434.283997F, -221.942001F), new Vector2(-435.579987F, -221.395996F), new Vector2(-437.187988F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-438.268005F, -221.395996F), new Vector2(-439.227997F, -221.647995F), new Vector2(-440.067993F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-434.235992F, -219.145996F)); + builder.AddCubicBezier(new Vector2(-433.20401F, -219.686005F), new Vector2(-432.381989F, -220.436005F), new Vector2(-431.769989F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-431.15799F, -222.356003F), new Vector2(-430.81601F, -223.447998F), new Vector2(-430.743988F, -224.671997F)); + builder.AddLine(new Vector2(-430.743988F, -229.820007F)); + builder.AddCubicBezier(new Vector2(-430.81601F, -231.067993F), new Vector2(-431.164001F, -232.166F), new Vector2(-431.787994F, -233.113998F)); + builder.AddCubicBezier(new Vector2(-432.411987F, -234.061996F), new Vector2(-433.234009F, -234.806F), new Vector2(-434.253998F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-435.273987F, -235.886002F), new Vector2(-436.432007F, -236.156006F), new Vector2(-437.727997F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-439.312012F, -236.156006F), new Vector2(-440.734009F, -235.759995F), new Vector2(-441.993988F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-443.253998F, -234.175995F), new Vector2(-444.25F, -233.108002F), new Vector2(-444.981995F, -231.764008F)); + builder.AddCubicBezier(new Vector2(-445.713989F, -230.419998F), new Vector2(-446.079987F, -228.908005F), new Vector2(-446.079987F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-446.079987F, -225.548004F), new Vector2(-445.713989F, -224.035995F), new Vector2(-444.981995F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-444.25F, -221.348007F), new Vector2(-443.253998F, -220.285995F), new Vector2(-441.993988F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-440.734009F, -218.725998F), new Vector2(-439.312012F, -218.335999F), new Vector2(-437.727997F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-436.432007F, -218.335999F), new Vector2(-435.268005F, -218.606003F), new Vector2(-434.235992F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1204() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-461.488007F, -218.695999F)); + builder.AddLine(new Vector2(-461.488007F, -244.399994F)); + builder.AddLine(new Vector2(-464.727997F, -244.399994F)); + builder.AddLine(new Vector2(-464.727997F, -218.695999F)); + builder.AddLine(new Vector2(-461.488007F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-449.391998F, -218.695999F)); + builder.AddLine(new Vector2(-449.391998F, -229.315994F)); + builder.AddCubicBezier(new Vector2(-449.391998F, -230.660004F), new Vector2(-449.679993F, -231.848007F), new Vector2(-450.256012F, -232.880005F)); + builder.AddCubicBezier(new Vector2(-450.832001F, -233.912003F), new Vector2(-451.618011F, -234.716003F), new Vector2(-452.614014F, -235.292007F)); + builder.AddCubicBezier(new Vector2(-453.609985F, -235.867996F), new Vector2(-454.756012F, -236.156006F), new Vector2(-456.052002F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-457.347992F, -236.156006F), new Vector2(-458.511993F, -235.862F), new Vector2(-459.544006F, -235.274002F)); + builder.AddCubicBezier(new Vector2(-460.575989F, -234.686005F), new Vector2(-461.380005F, -233.888F), new Vector2(-461.955994F, -232.880005F)); + builder.AddCubicBezier(new Vector2(-462.532013F, -231.871994F), new Vector2(-462.820007F, -230.720001F), new Vector2(-462.820007F, -229.423996F)); + builder.AddLine(new Vector2(-461.488007F, -228.667999F)); + builder.AddCubicBezier(new Vector2(-461.488007F, -229.531998F), new Vector2(-461.29599F, -230.300003F), new Vector2(-460.911987F, -230.972F)); + builder.AddCubicBezier(new Vector2(-460.528015F, -231.643997F), new Vector2(-460F, -232.171997F), new Vector2(-459.328003F, -232.556F)); + builder.AddCubicBezier(new Vector2(-458.656006F, -232.940002F), new Vector2(-457.888F, -233.132004F), new Vector2(-457.023987F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-455.727997F, -233.132004F), new Vector2(-454.678009F, -232.712006F), new Vector2(-453.873993F, -231.871994F)); + builder.AddCubicBezier(new Vector2(-453.070007F, -231.031998F), new Vector2(-452.667999F, -229.964005F), new Vector2(-452.667999F, -228.667999F)); + builder.AddLine(new Vector2(-452.667999F, -218.695999F)); + builder.AddLine(new Vector2(-449.391998F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1205() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-467.895996F, -232.843994F)); + builder.AddLine(new Vector2(-467.895996F, -235.796005F)); + builder.AddLine(new Vector2(-479.559998F, -235.796005F)); + builder.AddLine(new Vector2(-479.559998F, -232.843994F)); + builder.AddLine(new Vector2(-467.895996F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-472.108002F, -218.695999F)); + builder.AddLine(new Vector2(-472.108002F, -242.960007F)); + builder.AddLine(new Vector2(-475.347992F, -242.960007F)); + builder.AddLine(new Vector2(-475.347992F, -218.695999F)); + builder.AddLine(new Vector2(-472.108002F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1206() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-499.612F, -211.531998F)); + builder.AddLine(new Vector2(-496.372009F, -218.552002F)); + builder.AddLine(new Vector2(-498.208008F, -221.863998F)); + builder.AddLine(new Vector2(-503.212006F, -211.531998F)); + builder.AddLine(new Vector2(-499.612F, -211.531998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-496.372009F, -218.552002F)); + builder.AddLine(new Vector2(-488.380005F, -235.796005F)); + builder.AddLine(new Vector2(-491.980011F, -235.796005F)); + builder.AddLine(new Vector2(-497.776001F, -222.296005F)); + builder.AddLine(new Vector2(-496.623993F, -222.296005F)); + builder.AddLine(new Vector2(-502.131989F, -235.796005F)); + builder.AddLine(new Vector2(-505.731995F, -235.796005F)); + builder.AddLine(new Vector2(-498.31601F, -218.552002F)); + builder.AddLine(new Vector2(-496.372009F, -218.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1207() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-508.68399F, -218.695999F)); + builder.AddLine(new Vector2(-508.68399F, -244.399994F)); + builder.AddLine(new Vector2(-511.924011F, -244.399994F)); + builder.AddLine(new Vector2(-511.924011F, -218.695999F)); + builder.AddLine(new Vector2(-508.68399F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1208() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-516.640015F, -244.399994F)); + builder.AddLine(new Vector2(-519.916016F, -244.399994F)); + builder.AddLine(new Vector2(-519.916016F, -231.619995F)); + builder.AddLine(new Vector2(-519.304016F, -227.479996F)); + builder.AddLine(new Vector2(-519.916016F, -223.304001F)); + builder.AddLine(new Vector2(-519.916016F, -218.695999F)); + builder.AddLine(new Vector2(-516.640015F, -218.695999F)); + builder.AddLine(new Vector2(-516.640015F, -244.399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-527.961975F, -222.134003F)); + builder.AddCubicBezier(new Vector2(-528.789978F, -222.626007F), new Vector2(-529.437988F, -223.315994F), new Vector2(-529.906006F, -224.203995F)); + builder.AddCubicBezier(new Vector2(-530.374023F, -225.091995F), new Vector2(-530.607971F, -226.112F), new Vector2(-530.607971F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-530.607971F, -228.416F), new Vector2(-530.374023F, -229.429993F), new Vector2(-529.906006F, -230.306F)); + builder.AddCubicBezier(new Vector2(-529.437988F, -231.182007F), new Vector2(-528.796021F, -231.865997F), new Vector2(-527.97998F, -232.358002F)); + builder.AddCubicBezier(new Vector2(-527.164001F, -232.850006F), new Vector2(-526.216003F, -233.095993F), new Vector2(-525.135986F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-524.05603F, -233.095993F), new Vector2(-523.107971F, -232.843994F), new Vector2(-522.291992F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-521.476013F, -231.835999F), new Vector2(-520.840027F, -231.145996F), new Vector2(-520.383972F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-519.927979F, -229.393997F), new Vector2(-519.700012F, -228.380005F), new Vector2(-519.700012F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-519.700012F, -226.100006F), new Vector2(-519.927979F, -225.098007F), new Vector2(-520.383972F, -224.222F)); + builder.AddCubicBezier(new Vector2(-520.840027F, -223.345993F), new Vector2(-521.476013F, -222.656006F), new Vector2(-522.291992F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-523.107971F, -221.647995F), new Vector2(-524.05603F, -221.395996F), new Vector2(-525.135986F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-526.192017F, -221.395996F), new Vector2(-527.133972F, -221.641998F), new Vector2(-527.961975F, -222.134003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-522.14801F, -219.145996F)); + builder.AddCubicBezier(new Vector2(-521.116028F, -219.686005F), new Vector2(-520.288025F, -220.436005F), new Vector2(-519.664001F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-519.039978F, -222.356003F), new Vector2(-518.692017F, -223.447998F), new Vector2(-518.619995F, -224.671997F)); + builder.AddLine(new Vector2(-518.619995F, -229.820007F)); + builder.AddCubicBezier(new Vector2(-518.692017F, -231.067993F), new Vector2(-519.046021F, -232.166F), new Vector2(-519.682007F, -233.113998F)); + builder.AddCubicBezier(new Vector2(-520.317993F, -234.061996F), new Vector2(-521.151978F, -234.806F), new Vector2(-522.184021F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-523.216003F, -235.886002F), new Vector2(-524.380005F, -236.156006F), new Vector2(-525.676025F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-527.236023F, -236.156006F), new Vector2(-528.640015F, -235.759995F), new Vector2(-529.888F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-531.135986F, -234.175995F), new Vector2(-532.125977F, -233.108002F), new Vector2(-532.857971F, -231.764008F)); + builder.AddCubicBezier(new Vector2(-533.590027F, -230.419998F), new Vector2(-533.955994F, -228.908005F), new Vector2(-533.955994F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-533.955994F, -225.548004F), new Vector2(-533.590027F, -224.035995F), new Vector2(-532.857971F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-532.125977F, -221.348007F), new Vector2(-531.135986F, -220.285995F), new Vector2(-529.888F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-528.640015F, -218.725998F), new Vector2(-527.236023F, -218.335999F), new Vector2(-525.676025F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-524.356018F, -218.335999F), new Vector2(-523.179993F, -218.606003F), new Vector2(-522.14801F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1209() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-540.471985F, -219.091995F)); + builder.AddCubicBezier(new Vector2(-539.296021F, -219.595993F), new Vector2(-538.288025F, -220.328003F), new Vector2(-537.447998F, -221.287994F)); + builder.AddLine(new Vector2(-539.536011F, -223.412003F)); + builder.AddCubicBezier(new Vector2(-540.112F, -222.740005F), new Vector2(-540.802002F, -222.235992F), new Vector2(-541.606018F, -221.899994F)); + builder.AddCubicBezier(new Vector2(-542.409973F, -221.563995F), new Vector2(-543.291992F, -221.395996F), new Vector2(-544.252014F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-545.403992F, -221.395996F), new Vector2(-546.424011F, -221.641998F), new Vector2(-547.312012F, -222.134003F)); + builder.AddCubicBezier(new Vector2(-548.200012F, -222.626007F), new Vector2(-548.883972F, -223.322006F), new Vector2(-549.364014F, -224.222F)); + builder.AddCubicBezier(new Vector2(-549.843994F, -225.121994F), new Vector2(-550.083984F, -226.171997F), new Vector2(-550.083984F, -227.371994F)); + builder.AddCubicBezier(new Vector2(-550.083984F, -228.548004F), new Vector2(-549.856018F, -229.567993F), new Vector2(-549.400024F, -230.432007F)); + builder.AddCubicBezier(new Vector2(-548.94397F, -231.296005F), new Vector2(-548.296021F, -231.968002F), new Vector2(-547.455994F, -232.447998F)); + builder.AddCubicBezier(new Vector2(-546.616028F, -232.927994F), new Vector2(-545.643982F, -233.167999F), new Vector2(-544.539978F, -233.167999F)); + builder.AddCubicBezier(new Vector2(-543.484009F, -233.167999F), new Vector2(-542.583984F, -232.945999F), new Vector2(-541.840027F, -232.501999F)); + builder.AddCubicBezier(new Vector2(-541.096008F, -232.057999F), new Vector2(-540.52002F, -231.434006F), new Vector2(-540.112F, -230.630005F)); + builder.AddCubicBezier(new Vector2(-539.703979F, -229.826004F), new Vector2(-539.5F, -228.848007F), new Vector2(-539.5F, -227.695999F)); + builder.AddLine(new Vector2(-538.312012F, -228.740005F)); + builder.AddLine(new Vector2(-551.02002F, -228.740005F)); + builder.AddLine(new Vector2(-551.02002F, -226.039993F)); + builder.AddLine(new Vector2(-536.583984F, -226.039993F)); + builder.AddCubicBezier(new Vector2(-536.512024F, -226.376007F), new Vector2(-536.463989F, -226.682007F), new Vector2(-536.440002F, -226.957993F)); + builder.AddCubicBezier(new Vector2(-536.416016F, -227.233994F), new Vector2(-536.403992F, -227.492004F), new Vector2(-536.403992F, -227.731995F)); + builder.AddCubicBezier(new Vector2(-536.403992F, -229.363998F), new Vector2(-536.745972F, -230.815994F), new Vector2(-537.429993F, -232.087997F)); + builder.AddCubicBezier(new Vector2(-538.114014F, -233.360001F), new Vector2(-539.067993F, -234.356003F), new Vector2(-540.291992F, -235.076004F)); + builder.AddCubicBezier(new Vector2(-541.515991F, -235.796005F), new Vector2(-542.90802F, -236.156006F), new Vector2(-544.468018F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-546.124023F, -236.156006F), new Vector2(-547.617981F, -235.766006F), new Vector2(-548.950012F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-550.281982F, -234.205994F), new Vector2(-551.338013F, -233.143997F), new Vector2(-552.117981F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-552.89801F, -230.455994F), new Vector2(-553.288025F, -228.944F), new Vector2(-553.288025F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-553.288025F, -225.559998F), new Vector2(-552.892029F, -224.035995F), new Vector2(-552.099976F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-551.307983F, -221.348007F), new Vector2(-550.234009F, -220.285995F), new Vector2(-548.877991F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-547.521973F, -218.725998F), new Vector2(-545.97998F, -218.335999F), new Vector2(-544.252014F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-542.90802F, -218.335999F), new Vector2(-541.64801F, -218.587997F), new Vector2(-540.471985F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1210() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-554.799988F, -232.843994F)); + builder.AddLine(new Vector2(-554.799988F, -235.796005F)); + builder.AddLine(new Vector2(-566.463989F, -235.796005F)); + builder.AddLine(new Vector2(-566.463989F, -232.843994F)); + builder.AddLine(new Vector2(-554.799988F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-559.012024F, -218.695999F)); + builder.AddLine(new Vector2(-559.012024F, -242.960007F)); + builder.AddLine(new Vector2(-562.252014F, -242.960007F)); + builder.AddLine(new Vector2(-562.252014F, -218.695999F)); + builder.AddLine(new Vector2(-559.012024F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1211() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-574.888F, -231.944F)); + builder.AddCubicBezier(new Vector2(-574.119995F, -232.712006F), new Vector2(-573.135986F, -233.095993F), new Vector2(-571.935974F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-571.359985F, -233.095993F), new Vector2(-570.856018F, -233.011993F), new Vector2(-570.424011F, -232.843994F)); + builder.AddCubicBezier(new Vector2(-569.992004F, -232.675995F), new Vector2(-569.596008F, -232.399994F), new Vector2(-569.236023F, -232.016006F)); + builder.AddLine(new Vector2(-567.112F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-567.711975F, -234.908005F), new Vector2(-568.359985F, -235.406006F), new Vector2(-569.05603F, -235.705994F)); + builder.AddCubicBezier(new Vector2(-569.752014F, -236.005997F), new Vector2(-570.531982F, -236.156006F), new Vector2(-571.395996F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-573.291992F, -236.156006F), new Vector2(-574.744019F, -235.507996F), new Vector2(-575.752014F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-576.76001F, -232.916F), new Vector2(-577.263977F, -231.175995F), new Vector2(-577.263977F, -228.992004F)); + builder.AddLine(new Vector2(-576.039978F, -228.416F)); + builder.AddCubicBezier(new Vector2(-576.039978F, -230F), new Vector2(-575.656006F, -231.175995F), new Vector2(-574.888F, -231.944F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-576.039978F, -218.695999F)); + builder.AddLine(new Vector2(-576.039978F, -235.796005F)); + builder.AddLine(new Vector2(-579.280029F, -235.796005F)); + builder.AddLine(new Vector2(-579.280029F, -218.695999F)); + builder.AddLine(new Vector2(-576.039978F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1212() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-594.687988F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-595.528015F, -222.727997F), new Vector2(-596.187988F, -223.417999F), new Vector2(-596.66803F, -224.294006F)); + builder.AddCubicBezier(new Vector2(-597.14801F, -225.169998F), new Vector2(-597.388F, -226.171997F), new Vector2(-597.388F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-597.388F, -228.404007F), new Vector2(-597.14801F, -229.388F), new Vector2(-596.66803F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-596.187988F, -231.115997F), new Vector2(-595.528015F, -231.794006F), new Vector2(-594.687988F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-593.848022F, -232.778F), new Vector2(-592.900024F, -233.024002F), new Vector2(-591.843994F, -233.024002F)); + builder.AddCubicBezier(new Vector2(-590.73999F, -233.024002F), new Vector2(-589.773987F, -232.778F), new Vector2(-588.945984F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-588.117981F, -231.794006F), new Vector2(-587.458008F, -231.115997F), new Vector2(-586.966003F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-586.473999F, -229.388F), new Vector2(-586.228027F, -228.404007F), new Vector2(-586.228027F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-586.228027F, -226.171997F), new Vector2(-586.468018F, -225.169998F), new Vector2(-586.947998F, -224.294006F)); + builder.AddCubicBezier(new Vector2(-587.427979F, -223.417999F), new Vector2(-588.088013F, -222.727997F), new Vector2(-588.927979F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-589.768005F, -221.720001F), new Vector2(-590.73999F, -221.468002F), new Vector2(-591.843994F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-592.900024F, -221.468002F), new Vector2(-593.848022F, -221.720001F), new Vector2(-594.687988F, -222.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-587.289978F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-585.934021F, -220.315994F), new Vector2(-584.859985F, -221.389999F), new Vector2(-584.067993F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-583.276001F, -224.102005F), new Vector2(-582.880005F, -225.619995F), new Vector2(-582.880005F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-582.880005F, -228.955994F), new Vector2(-583.276001F, -230.455994F), new Vector2(-584.067993F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-584.859985F, -233.143997F), new Vector2(-585.934021F, -234.205994F), new Vector2(-587.289978F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-588.645996F, -235.766006F), new Vector2(-590.164001F, -236.156006F), new Vector2(-591.843994F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-593.5F, -236.156006F), new Vector2(-595F, -235.759995F), new Vector2(-596.343994F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-597.687988F, -234.175995F), new Vector2(-598.755981F, -233.113998F), new Vector2(-599.547974F, -231.781998F)); + builder.AddCubicBezier(new Vector2(-600.340027F, -230.449997F), new Vector2(-600.736023F, -228.955994F), new Vector2(-600.736023F, -227.300003F)); + builder.AddCubicBezier(new Vector2(-600.736023F, -225.619995F), new Vector2(-600.340027F, -224.102005F), new Vector2(-599.547974F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-598.755981F, -221.389999F), new Vector2(-597.687988F, -220.315994F), new Vector2(-596.343994F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-595F, -218.731995F), new Vector2(-593.5F, -218.335999F), new Vector2(-591.843994F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-590.164001F, -218.335999F), new Vector2(-588.645996F, -218.731995F), new Vector2(-587.289978F, -219.524002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1213() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-614.937988F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-615.765991F, -222.656006F), new Vector2(-616.401978F, -223.345993F), new Vector2(-616.846008F, -224.222F)); + builder.AddCubicBezier(new Vector2(-617.289978F, -225.098007F), new Vector2(-617.512024F, -226.100006F), new Vector2(-617.512024F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-617.512024F, -228.380005F), new Vector2(-617.283997F, -229.393997F), new Vector2(-616.828003F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-616.372009F, -231.145996F), new Vector2(-615.736023F, -231.835999F), new Vector2(-614.919983F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-614.104004F, -232.843994F), new Vector2(-613.16803F, -233.095993F), new Vector2(-612.112F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-611.031982F, -233.095993F), new Vector2(-610.083984F, -232.843994F), new Vector2(-609.268005F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-608.452026F, -231.835999F), new Vector2(-607.809998F, -231.145996F), new Vector2(-607.34198F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-606.874023F, -229.393997F), new Vector2(-606.640015F, -228.391998F), new Vector2(-606.640015F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-606.640015F, -226.112F), new Vector2(-606.874023F, -225.098007F), new Vector2(-607.34198F, -224.222F)); + builder.AddCubicBezier(new Vector2(-607.809998F, -223.345993F), new Vector2(-608.452026F, -222.656006F), new Vector2(-609.268005F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-610.083984F, -221.647995F), new Vector2(-611.031982F, -221.395996F), new Vector2(-612.112F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-613.16803F, -221.395996F), new Vector2(-614.109985F, -221.647995F), new Vector2(-614.937988F, -222.151993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-617.33197F, -211.531998F)); + builder.AddLine(new Vector2(-617.33197F, -222.979996F)); + builder.AddLine(new Vector2(-617.94397F, -227.156006F)); + builder.AddLine(new Vector2(-617.33197F, -231.296005F)); + builder.AddLine(new Vector2(-617.33197F, -235.796005F)); + builder.AddLine(new Vector2(-620.572021F, -235.796005F)); + builder.AddLine(new Vector2(-620.572021F, -211.531998F)); + builder.AddLine(new Vector2(-617.33197F, -211.531998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-607.34198F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-606.08197F, -220.285995F), new Vector2(-605.09198F, -221.348007F), new Vector2(-604.372009F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-603.651978F, -224.035995F), new Vector2(-603.291992F, -225.548004F), new Vector2(-603.291992F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-603.291992F, -228.908005F), new Vector2(-603.651978F, -230.419998F), new Vector2(-604.372009F, -231.764008F)); + builder.AddCubicBezier(new Vector2(-605.09198F, -233.108002F), new Vector2(-606.08197F, -234.175995F), new Vector2(-607.34198F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-608.60199F, -235.759995F), new Vector2(-610.012024F, -236.156006F), new Vector2(-611.572021F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-612.843994F, -236.156006F), new Vector2(-614.002014F, -235.886002F), new Vector2(-615.046021F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-616.090027F, -234.806F), new Vector2(-616.929993F, -234.061996F), new Vector2(-617.565979F, -233.113998F)); + builder.AddCubicBezier(new Vector2(-618.202026F, -232.166F), new Vector2(-618.55603F, -231.067993F), new Vector2(-618.627991F, -229.820007F)); + builder.AddLine(new Vector2(-618.627991F, -224.671997F)); + builder.AddCubicBezier(new Vector2(-618.55603F, -223.447998F), new Vector2(-618.208008F, -222.356003F), new Vector2(-617.583984F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-616.960022F, -220.436005F), new Vector2(-616.125977F, -219.686005F), new Vector2(-615.08197F, -219.145996F)); + builder.AddCubicBezier(new Vector2(-614.038025F, -218.606003F), new Vector2(-612.867981F, -218.335999F), new Vector2(-611.572021F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-610.012024F, -218.335999F), new Vector2(-608.60199F, -218.725998F), new Vector2(-607.34198F, -219.505997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1214() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-628.16803F, -219.091995F)); + builder.AddCubicBezier(new Vector2(-626.992004F, -219.595993F), new Vector2(-625.984009F, -220.328003F), new Vector2(-625.143982F, -221.287994F)); + builder.AddLine(new Vector2(-627.231995F, -223.412003F)); + builder.AddCubicBezier(new Vector2(-627.807983F, -222.740005F), new Vector2(-628.497986F, -222.235992F), new Vector2(-629.302002F, -221.899994F)); + builder.AddCubicBezier(new Vector2(-630.106018F, -221.563995F), new Vector2(-630.987976F, -221.395996F), new Vector2(-631.947998F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-633.099976F, -221.395996F), new Vector2(-634.119995F, -221.641998F), new Vector2(-635.007996F, -222.134003F)); + builder.AddCubicBezier(new Vector2(-635.895996F, -222.626007F), new Vector2(-636.580017F, -223.322006F), new Vector2(-637.059998F, -224.222F)); + builder.AddCubicBezier(new Vector2(-637.539978F, -225.121994F), new Vector2(-637.780029F, -226.171997F), new Vector2(-637.780029F, -227.371994F)); + builder.AddCubicBezier(new Vector2(-637.780029F, -228.548004F), new Vector2(-637.552002F, -229.567993F), new Vector2(-637.096008F, -230.432007F)); + builder.AddCubicBezier(new Vector2(-636.640015F, -231.296005F), new Vector2(-635.992004F, -231.968002F), new Vector2(-635.151978F, -232.447998F)); + builder.AddCubicBezier(new Vector2(-634.312012F, -232.927994F), new Vector2(-633.340027F, -233.167999F), new Vector2(-632.236023F, -233.167999F)); + builder.AddCubicBezier(new Vector2(-631.179993F, -233.167999F), new Vector2(-630.280029F, -232.945999F), new Vector2(-629.536011F, -232.501999F)); + builder.AddCubicBezier(new Vector2(-628.791992F, -232.057999F), new Vector2(-628.216003F, -231.434006F), new Vector2(-627.807983F, -230.630005F)); + builder.AddCubicBezier(new Vector2(-627.400024F, -229.826004F), new Vector2(-627.195984F, -228.848007F), new Vector2(-627.195984F, -227.695999F)); + builder.AddLine(new Vector2(-626.007996F, -228.740005F)); + builder.AddLine(new Vector2(-638.716003F, -228.740005F)); + builder.AddLine(new Vector2(-638.716003F, -226.039993F)); + builder.AddLine(new Vector2(-624.280029F, -226.039993F)); + builder.AddCubicBezier(new Vector2(-624.208008F, -226.376007F), new Vector2(-624.159973F, -226.682007F), new Vector2(-624.135986F, -226.957993F)); + builder.AddCubicBezier(new Vector2(-624.112F, -227.233994F), new Vector2(-624.099976F, -227.492004F), new Vector2(-624.099976F, -227.731995F)); + builder.AddCubicBezier(new Vector2(-624.099976F, -229.363998F), new Vector2(-624.442017F, -230.815994F), new Vector2(-625.125977F, -232.087997F)); + builder.AddCubicBezier(new Vector2(-625.809998F, -233.360001F), new Vector2(-626.763977F, -234.356003F), new Vector2(-627.987976F, -235.076004F)); + builder.AddCubicBezier(new Vector2(-629.211975F, -235.796005F), new Vector2(-630.604004F, -236.156006F), new Vector2(-632.164001F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-633.820007F, -236.156006F), new Vector2(-635.314026F, -235.766006F), new Vector2(-636.645996F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-637.978027F, -234.205994F), new Vector2(-639.033997F, -233.143997F), new Vector2(-639.814026F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-640.593994F, -230.455994F), new Vector2(-640.984009F, -228.944F), new Vector2(-640.984009F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-640.984009F, -225.559998F), new Vector2(-640.588013F, -224.035995F), new Vector2(-639.796021F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-639.004028F, -221.348007F), new Vector2(-637.929993F, -220.285995F), new Vector2(-636.573975F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-635.218018F, -218.725998F), new Vector2(-633.676025F, -218.335999F), new Vector2(-631.947998F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-630.604004F, -218.335999F), new Vector2(-629.343994F, -218.587997F), new Vector2(-628.16803F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1215() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-649.372009F, -231.944F)); + builder.AddCubicBezier(new Vector2(-648.604004F, -232.712006F), new Vector2(-647.619995F, -233.095993F), new Vector2(-646.419983F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-645.843994F, -233.095993F), new Vector2(-645.340027F, -233.011993F), new Vector2(-644.90802F, -232.843994F)); + builder.AddCubicBezier(new Vector2(-644.476013F, -232.675995F), new Vector2(-644.080017F, -232.399994F), new Vector2(-643.719971F, -232.016006F)); + builder.AddLine(new Vector2(-641.596008F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-642.195984F, -234.908005F), new Vector2(-642.843994F, -235.406006F), new Vector2(-643.539978F, -235.705994F)); + builder.AddCubicBezier(new Vector2(-644.236023F, -236.005997F), new Vector2(-645.015991F, -236.156006F), new Vector2(-645.880005F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-647.776001F, -236.156006F), new Vector2(-649.228027F, -235.507996F), new Vector2(-650.236023F, -234.212006F)); + builder.AddCubicBezier(new Vector2(-651.244019F, -232.916F), new Vector2(-651.747986F, -231.175995F), new Vector2(-651.747986F, -228.992004F)); + builder.AddLine(new Vector2(-650.523987F, -228.416F)); + builder.AddCubicBezier(new Vector2(-650.523987F, -230F), new Vector2(-650.140015F, -231.175995F), new Vector2(-649.372009F, -231.944F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-650.523987F, -218.695999F)); + builder.AddLine(new Vector2(-650.523987F, -235.796005F)); + builder.AddLine(new Vector2(-653.763977F, -235.796005F)); + builder.AddLine(new Vector2(-653.763977F, -218.695999F)); + builder.AddLine(new Vector2(-650.523987F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1216() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-664.383972F, -232.843994F)); + builder.AddLine(new Vector2(-664.383972F, -235.796005F)); + builder.AddLine(new Vector2(-676.047974F, -235.796005F)); + builder.AddLine(new Vector2(-676.047974F, -232.843994F)); + builder.AddLine(new Vector2(-664.383972F, -232.843994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-668.596008F, -218.695999F)); + builder.AddLine(new Vector2(-668.596008F, -242.960007F)); + builder.AddLine(new Vector2(-671.835999F, -242.960007F)); + builder.AddLine(new Vector2(-671.835999F, -218.695999F)); + builder.AddLine(new Vector2(-668.596008F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1217() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-679.791992F, -218.695999F)); + builder.AddLine(new Vector2(-679.791992F, -243.679993F)); + builder.AddLine(new Vector2(-683.176025F, -243.679993F)); + builder.AddLine(new Vector2(-683.176025F, -218.695999F)); + builder.AddLine(new Vector2(-679.791992F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1218() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-697.125977F, -219.037994F)); + builder.AddCubicBezier(new Vector2(-696.682007F, -219.505997F), new Vector2(-696.460022F, -220.063995F), new Vector2(-696.460022F, -220.712006F)); + builder.AddCubicBezier(new Vector2(-696.460022F, -221.384003F), new Vector2(-696.682007F, -221.942001F), new Vector2(-697.125977F, -222.386002F)); + builder.AddCubicBezier(new Vector2(-697.570007F, -222.830002F), new Vector2(-698.127991F, -223.052002F), new Vector2(-698.799988F, -223.052002F)); + builder.AddCubicBezier(new Vector2(-699.495972F, -223.052002F), new Vector2(-700.059998F, -222.830002F), new Vector2(-700.492004F, -222.386002F)); + builder.AddCubicBezier(new Vector2(-700.924011F, -221.942001F), new Vector2(-701.140015F, -221.384003F), new Vector2(-701.140015F, -220.712006F)); + builder.AddCubicBezier(new Vector2(-701.140015F, -220.063995F), new Vector2(-700.924011F, -219.505997F), new Vector2(-700.492004F, -219.037994F)); + builder.AddCubicBezier(new Vector2(-700.059998F, -218.570007F), new Vector2(-699.495972F, -218.335999F), new Vector2(-698.799988F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-698.127991F, -218.335999F), new Vector2(-697.570007F, -218.570007F), new Vector2(-697.125977F, -219.037994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1219() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-706.359985F, -244.399994F)); + builder.AddLine(new Vector2(-709.635986F, -244.399994F)); + builder.AddLine(new Vector2(-709.635986F, -231.619995F)); + builder.AddLine(new Vector2(-709.023987F, -227.479996F)); + builder.AddLine(new Vector2(-709.635986F, -223.304001F)); + builder.AddLine(new Vector2(-709.635986F, -218.695999F)); + builder.AddLine(new Vector2(-706.359985F, -218.695999F)); + builder.AddLine(new Vector2(-706.359985F, -244.399994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-717.682007F, -222.134003F)); + builder.AddCubicBezier(new Vector2(-718.51001F, -222.626007F), new Vector2(-719.15802F, -223.315994F), new Vector2(-719.625977F, -224.203995F)); + builder.AddCubicBezier(new Vector2(-720.093994F, -225.091995F), new Vector2(-720.328003F, -226.112F), new Vector2(-720.328003F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-720.328003F, -228.416F), new Vector2(-720.093994F, -229.429993F), new Vector2(-719.625977F, -230.306F)); + builder.AddCubicBezier(new Vector2(-719.15802F, -231.182007F), new Vector2(-718.515991F, -231.865997F), new Vector2(-717.700012F, -232.358002F)); + builder.AddCubicBezier(new Vector2(-716.883972F, -232.850006F), new Vector2(-715.935974F, -233.095993F), new Vector2(-714.856018F, -233.095993F)); + builder.AddCubicBezier(new Vector2(-713.776001F, -233.095993F), new Vector2(-712.828003F, -232.843994F), new Vector2(-712.012024F, -232.339996F)); + builder.AddCubicBezier(new Vector2(-711.195984F, -231.835999F), new Vector2(-710.559998F, -231.145996F), new Vector2(-710.104004F, -230.270004F)); + builder.AddCubicBezier(new Vector2(-709.64801F, -229.393997F), new Vector2(-709.419983F, -228.380005F), new Vector2(-709.419983F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-709.419983F, -226.100006F), new Vector2(-709.64801F, -225.098007F), new Vector2(-710.104004F, -224.222F)); + builder.AddCubicBezier(new Vector2(-710.559998F, -223.345993F), new Vector2(-711.195984F, -222.656006F), new Vector2(-712.012024F, -222.151993F)); + builder.AddCubicBezier(new Vector2(-712.828003F, -221.647995F), new Vector2(-713.776001F, -221.395996F), new Vector2(-714.856018F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-715.911987F, -221.395996F), new Vector2(-716.854004F, -221.641998F), new Vector2(-717.682007F, -222.134003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-711.867981F, -219.145996F)); + builder.AddCubicBezier(new Vector2(-710.835999F, -219.686005F), new Vector2(-710.007996F, -220.436005F), new Vector2(-709.383972F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-708.76001F, -222.356003F), new Vector2(-708.411987F, -223.447998F), new Vector2(-708.340027F, -224.671997F)); + builder.AddLine(new Vector2(-708.340027F, -229.820007F)); + builder.AddCubicBezier(new Vector2(-708.411987F, -231.067993F), new Vector2(-708.765991F, -232.166F), new Vector2(-709.401978F, -233.113998F)); + builder.AddCubicBezier(new Vector2(-710.038025F, -234.061996F), new Vector2(-710.872009F, -234.806F), new Vector2(-711.903992F, -235.345993F)); + builder.AddCubicBezier(new Vector2(-712.935974F, -235.886002F), new Vector2(-714.099976F, -236.156006F), new Vector2(-715.395996F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-716.955994F, -236.156006F), new Vector2(-718.359985F, -235.759995F), new Vector2(-719.607971F, -234.968002F)); + builder.AddCubicBezier(new Vector2(-720.856018F, -234.175995F), new Vector2(-721.846008F, -233.108002F), new Vector2(-722.578003F, -231.764008F)); + builder.AddCubicBezier(new Vector2(-723.309998F, -230.419998F), new Vector2(-723.676025F, -228.908005F), new Vector2(-723.676025F, -227.227997F)); + builder.AddCubicBezier(new Vector2(-723.676025F, -225.548004F), new Vector2(-723.309998F, -224.035995F), new Vector2(-722.578003F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-721.846008F, -221.348007F), new Vector2(-720.856018F, -220.285995F), new Vector2(-719.607971F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-718.359985F, -218.725998F), new Vector2(-716.955994F, -218.335999F), new Vector2(-715.395996F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-714.075989F, -218.335999F), new Vector2(-712.900024F, -218.606003F), new Vector2(-711.867981F, -219.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1220() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-730.192017F, -219.091995F)); + builder.AddCubicBezier(new Vector2(-729.015991F, -219.595993F), new Vector2(-728.007996F, -220.328003F), new Vector2(-727.16803F, -221.287994F)); + builder.AddLine(new Vector2(-729.255981F, -223.412003F)); + builder.AddCubicBezier(new Vector2(-729.83197F, -222.740005F), new Vector2(-730.521973F, -222.235992F), new Vector2(-731.325989F, -221.899994F)); + builder.AddCubicBezier(new Vector2(-732.130005F, -221.563995F), new Vector2(-733.012024F, -221.395996F), new Vector2(-733.971985F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-735.124023F, -221.395996F), new Vector2(-736.143982F, -221.641998F), new Vector2(-737.031982F, -222.134003F)); + builder.AddCubicBezier(new Vector2(-737.919983F, -222.626007F), new Vector2(-738.604004F, -223.322006F), new Vector2(-739.083984F, -224.222F)); + builder.AddCubicBezier(new Vector2(-739.564026F, -225.121994F), new Vector2(-739.804016F, -226.171997F), new Vector2(-739.804016F, -227.371994F)); + builder.AddCubicBezier(new Vector2(-739.804016F, -228.548004F), new Vector2(-739.575989F, -229.567993F), new Vector2(-739.119995F, -230.432007F)); + builder.AddCubicBezier(new Vector2(-738.664001F, -231.296005F), new Vector2(-738.015991F, -231.968002F), new Vector2(-737.176025F, -232.447998F)); + builder.AddCubicBezier(new Vector2(-736.335999F, -232.927994F), new Vector2(-735.364014F, -233.167999F), new Vector2(-734.26001F, -233.167999F)); + builder.AddCubicBezier(new Vector2(-733.203979F, -233.167999F), new Vector2(-732.304016F, -232.945999F), new Vector2(-731.559998F, -232.501999F)); + builder.AddCubicBezier(new Vector2(-730.815979F, -232.057999F), new Vector2(-730.23999F, -231.434006F), new Vector2(-729.83197F, -230.630005F)); + builder.AddCubicBezier(new Vector2(-729.424011F, -229.826004F), new Vector2(-729.219971F, -228.848007F), new Vector2(-729.219971F, -227.695999F)); + builder.AddLine(new Vector2(-728.031982F, -228.740005F)); + builder.AddLine(new Vector2(-740.73999F, -228.740005F)); + builder.AddLine(new Vector2(-740.73999F, -226.039993F)); + builder.AddLine(new Vector2(-726.304016F, -226.039993F)); + builder.AddCubicBezier(new Vector2(-726.231995F, -226.376007F), new Vector2(-726.184021F, -226.682007F), new Vector2(-726.159973F, -226.957993F)); + builder.AddCubicBezier(new Vector2(-726.135986F, -227.233994F), new Vector2(-726.124023F, -227.492004F), new Vector2(-726.124023F, -227.731995F)); + builder.AddCubicBezier(new Vector2(-726.124023F, -229.363998F), new Vector2(-726.466003F, -230.815994F), new Vector2(-727.150024F, -232.087997F)); + builder.AddCubicBezier(new Vector2(-727.833984F, -233.360001F), new Vector2(-728.788025F, -234.356003F), new Vector2(-730.012024F, -235.076004F)); + builder.AddCubicBezier(new Vector2(-731.236023F, -235.796005F), new Vector2(-732.627991F, -236.156006F), new Vector2(-734.187988F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-735.843994F, -236.156006F), new Vector2(-737.338013F, -235.766006F), new Vector2(-738.669983F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-740.002014F, -234.205994F), new Vector2(-741.057983F, -233.143997F), new Vector2(-741.838013F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-742.617981F, -230.455994F), new Vector2(-743.007996F, -228.944F), new Vector2(-743.007996F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-743.007996F, -225.559998F), new Vector2(-742.612F, -224.035995F), new Vector2(-741.820007F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-741.028015F, -221.348007F), new Vector2(-739.953979F, -220.285995F), new Vector2(-738.598022F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-737.242004F, -218.725998F), new Vector2(-735.700012F, -218.335999F), new Vector2(-733.971985F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-732.627991F, -218.335999F), new Vector2(-731.367981F, -218.587997F), new Vector2(-730.192017F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1221() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-747.669983F, -219.091995F)); + builder.AddCubicBezier(new Vector2(-746.530029F, -219.595993F), new Vector2(-745.564026F, -220.304001F), new Vector2(-744.771973F, -221.216003F)); + builder.AddLine(new Vector2(-746.895996F, -223.376007F)); + builder.AddCubicBezier(new Vector2(-747.447998F, -222.751999F), new Vector2(-748.10199F, -222.278F), new Vector2(-748.857971F, -221.953995F)); + builder.AddCubicBezier(new Vector2(-749.614014F, -221.630005F), new Vector2(-750.447998F, -221.468002F), new Vector2(-751.359985F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-752.440002F, -221.468002F), new Vector2(-753.400024F, -221.720001F), new Vector2(-754.23999F, -222.223999F)); + builder.AddCubicBezier(new Vector2(-755.080017F, -222.727997F), new Vector2(-755.73999F, -223.412003F), new Vector2(-756.219971F, -224.276001F)); + builder.AddCubicBezier(new Vector2(-756.700012F, -225.139999F), new Vector2(-756.940002F, -226.136002F), new Vector2(-756.940002F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-756.940002F, -228.391998F), new Vector2(-756.700012F, -229.388F), new Vector2(-756.219971F, -230.251999F)); + builder.AddCubicBezier(new Vector2(-755.73999F, -231.115997F), new Vector2(-755.080017F, -231.794006F), new Vector2(-754.23999F, -232.285995F)); + builder.AddCubicBezier(new Vector2(-753.400024F, -232.778F), new Vector2(-752.440002F, -233.024002F), new Vector2(-751.359985F, -233.024002F)); + builder.AddCubicBezier(new Vector2(-750.471985F, -233.024002F), new Vector2(-749.643982F, -232.862F), new Vector2(-748.875977F, -232.537994F)); + builder.AddCubicBezier(new Vector2(-748.107971F, -232.214005F), new Vector2(-747.460022F, -231.740005F), new Vector2(-746.932007F, -231.115997F)); + builder.AddLine(new Vector2(-744.771973F, -233.276001F)); + builder.AddCubicBezier(new Vector2(-745.588013F, -234.212006F), new Vector2(-746.559998F, -234.925995F), new Vector2(-747.687988F, -235.417999F)); + builder.AddCubicBezier(new Vector2(-748.815979F, -235.910004F), new Vector2(-750.039978F, -236.156006F), new Vector2(-751.359985F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-753.039978F, -236.156006F), new Vector2(-754.557983F, -235.766006F), new Vector2(-755.914001F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-757.27002F, -234.205994F), new Vector2(-758.338013F, -233.143997F), new Vector2(-759.117981F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-759.89801F, -230.455994F), new Vector2(-760.288025F, -228.944F), new Vector2(-760.288025F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-760.288025F, -225.608002F), new Vector2(-759.89801F, -224.102005F), new Vector2(-759.117981F, -222.746002F)); + builder.AddCubicBezier(new Vector2(-758.338013F, -221.389999F), new Vector2(-757.27002F, -220.315994F), new Vector2(-755.914001F, -219.524002F)); + builder.AddCubicBezier(new Vector2(-754.557983F, -218.731995F), new Vector2(-753.039978F, -218.335999F), new Vector2(-751.359985F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-750.039978F, -218.335999F), new Vector2(-748.809998F, -218.587997F), new Vector2(-747.669983F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1222() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-775.659973F, -218.695999F)); + builder.AddLine(new Vector2(-775.659973F, -235.796005F)); + builder.AddLine(new Vector2(-778.900024F, -235.796005F)); + builder.AddLine(new Vector2(-778.900024F, -218.695999F)); + builder.AddLine(new Vector2(-775.659973F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-763.564026F, -218.695999F)); + builder.AddLine(new Vector2(-763.564026F, -229.315994F)); + builder.AddCubicBezier(new Vector2(-763.564026F, -230.492004F), new Vector2(-763.85199F, -231.602005F), new Vector2(-764.427979F, -232.645996F)); + builder.AddCubicBezier(new Vector2(-765.004028F, -233.690002F), new Vector2(-765.789978F, -234.535995F), new Vector2(-766.786011F, -235.184006F)); + builder.AddCubicBezier(new Vector2(-767.781982F, -235.832001F), new Vector2(-768.927979F, -236.156006F), new Vector2(-770.223999F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-771.52002F, -236.156006F), new Vector2(-772.684021F, -235.862F), new Vector2(-773.716003F, -235.274002F)); + builder.AddCubicBezier(new Vector2(-774.747986F, -234.686005F), new Vector2(-775.552002F, -233.888F), new Vector2(-776.127991F, -232.880005F)); + builder.AddCubicBezier(new Vector2(-776.703979F, -231.871994F), new Vector2(-776.992004F, -230.720001F), new Vector2(-776.992004F, -229.423996F)); + builder.AddLine(new Vector2(-775.659973F, -228.667999F)); + builder.AddCubicBezier(new Vector2(-775.659973F, -229.531998F), new Vector2(-775.468018F, -230.300003F), new Vector2(-775.083984F, -230.972F)); + builder.AddCubicBezier(new Vector2(-774.700012F, -231.643997F), new Vector2(-774.171997F, -232.171997F), new Vector2(-773.5F, -232.556F)); + builder.AddCubicBezier(new Vector2(-772.828003F, -232.940002F), new Vector2(-772.059998F, -233.132004F), new Vector2(-771.195984F, -233.132004F)); + builder.AddCubicBezier(new Vector2(-769.900024F, -233.132004F), new Vector2(-768.849976F, -232.712006F), new Vector2(-768.046021F, -231.871994F)); + builder.AddCubicBezier(new Vector2(-767.242004F, -231.031998F), new Vector2(-766.840027F, -229.964005F), new Vector2(-766.840027F, -228.667999F)); + builder.AddLine(new Vector2(-766.840027F, -218.695999F)); + builder.AddLine(new Vector2(-763.564026F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1223() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-786.495972F, -219.091995F)); + builder.AddCubicBezier(new Vector2(-785.320007F, -219.595993F), new Vector2(-784.312012F, -220.328003F), new Vector2(-783.471985F, -221.287994F)); + builder.AddLine(new Vector2(-785.559998F, -223.412003F)); + builder.AddCubicBezier(new Vector2(-786.135986F, -222.740005F), new Vector2(-786.825989F, -222.235992F), new Vector2(-787.630005F, -221.899994F)); + builder.AddCubicBezier(new Vector2(-788.434021F, -221.563995F), new Vector2(-789.315979F, -221.395996F), new Vector2(-790.276001F, -221.395996F)); + builder.AddCubicBezier(new Vector2(-791.427979F, -221.395996F), new Vector2(-792.447998F, -221.641998F), new Vector2(-793.335999F, -222.134003F)); + builder.AddCubicBezier(new Vector2(-794.223999F, -222.626007F), new Vector2(-794.90802F, -223.322006F), new Vector2(-795.388F, -224.222F)); + builder.AddCubicBezier(new Vector2(-795.867981F, -225.121994F), new Vector2(-796.107971F, -226.171997F), new Vector2(-796.107971F, -227.371994F)); + builder.AddCubicBezier(new Vector2(-796.107971F, -228.548004F), new Vector2(-795.880005F, -229.567993F), new Vector2(-795.424011F, -230.432007F)); + builder.AddCubicBezier(new Vector2(-794.968018F, -231.296005F), new Vector2(-794.320007F, -231.968002F), new Vector2(-793.47998F, -232.447998F)); + builder.AddCubicBezier(new Vector2(-792.640015F, -232.927994F), new Vector2(-791.66803F, -233.167999F), new Vector2(-790.564026F, -233.167999F)); + builder.AddCubicBezier(new Vector2(-789.507996F, -233.167999F), new Vector2(-788.607971F, -232.945999F), new Vector2(-787.864014F, -232.501999F)); + builder.AddCubicBezier(new Vector2(-787.119995F, -232.057999F), new Vector2(-786.544006F, -231.434006F), new Vector2(-786.135986F, -230.630005F)); + builder.AddCubicBezier(new Vector2(-785.728027F, -229.826004F), new Vector2(-785.523987F, -228.848007F), new Vector2(-785.523987F, -227.695999F)); + builder.AddLine(new Vector2(-784.335999F, -228.740005F)); + builder.AddLine(new Vector2(-797.044006F, -228.740005F)); + builder.AddLine(new Vector2(-797.044006F, -226.039993F)); + builder.AddLine(new Vector2(-782.607971F, -226.039993F)); + builder.AddCubicBezier(new Vector2(-782.536011F, -226.376007F), new Vector2(-782.487976F, -226.682007F), new Vector2(-782.463989F, -226.957993F)); + builder.AddCubicBezier(new Vector2(-782.440002F, -227.233994F), new Vector2(-782.427979F, -227.492004F), new Vector2(-782.427979F, -227.731995F)); + builder.AddCubicBezier(new Vector2(-782.427979F, -229.363998F), new Vector2(-782.77002F, -230.815994F), new Vector2(-783.453979F, -232.087997F)); + builder.AddCubicBezier(new Vector2(-784.138F, -233.360001F), new Vector2(-785.09198F, -234.356003F), new Vector2(-786.315979F, -235.076004F)); + builder.AddCubicBezier(new Vector2(-787.539978F, -235.796005F), new Vector2(-788.932007F, -236.156006F), new Vector2(-790.492004F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-792.14801F, -236.156006F), new Vector2(-793.642029F, -235.766006F), new Vector2(-794.973999F, -234.985992F)); + builder.AddCubicBezier(new Vector2(-796.30603F, -234.205994F), new Vector2(-797.362F, -233.143997F), new Vector2(-798.142029F, -231.800003F)); + builder.AddCubicBezier(new Vector2(-798.921997F, -230.455994F), new Vector2(-799.312012F, -228.944F), new Vector2(-799.312012F, -227.264008F)); + builder.AddCubicBezier(new Vector2(-799.312012F, -225.559998F), new Vector2(-798.916016F, -224.035995F), new Vector2(-798.124023F, -222.692001F)); + builder.AddCubicBezier(new Vector2(-797.33197F, -221.348007F), new Vector2(-796.257996F, -220.285995F), new Vector2(-794.901978F, -219.505997F)); + builder.AddCubicBezier(new Vector2(-793.546021F, -218.725998F), new Vector2(-792.004028F, -218.335999F), new Vector2(-790.276001F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-788.932007F, -218.335999F), new Vector2(-787.671997F, -218.587997F), new Vector2(-786.495972F, -219.091995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1224() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-802.947998F, -218.695999F)); + builder.AddLine(new Vector2(-802.947998F, -244.399994F)); + builder.AddLine(new Vector2(-806.187988F, -244.399994F)); + builder.AddLine(new Vector2(-806.187988F, -218.695999F)); + builder.AddLine(new Vector2(-802.947998F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1225() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-811.119995F, -239.809998F)); + builder.AddCubicBezier(new Vector2(-810.736023F, -240.205994F), new Vector2(-810.544006F, -240.703995F), new Vector2(-810.544006F, -241.304001F)); + builder.AddCubicBezier(new Vector2(-810.544006F, -241.880005F), new Vector2(-810.736023F, -242.365997F), new Vector2(-811.119995F, -242.761993F)); + builder.AddCubicBezier(new Vector2(-811.504028F, -243.158005F), new Vector2(-811.995972F, -243.356003F), new Vector2(-812.596008F, -243.356003F)); + builder.AddCubicBezier(new Vector2(-813.195984F, -243.356003F), new Vector2(-813.687988F, -243.158005F), new Vector2(-814.072021F, -242.761993F)); + builder.AddCubicBezier(new Vector2(-814.455994F, -242.365997F), new Vector2(-814.64801F, -241.880005F), new Vector2(-814.64801F, -241.304001F)); + builder.AddCubicBezier(new Vector2(-814.64801F, -240.703995F), new Vector2(-814.455994F, -240.205994F), new Vector2(-814.072021F, -239.809998F)); + builder.AddCubicBezier(new Vector2(-813.687988F, -239.414001F), new Vector2(-813.195984F, -239.216003F), new Vector2(-812.596008F, -239.216003F)); + builder.AddCubicBezier(new Vector2(-811.995972F, -239.216003F), new Vector2(-811.504028F, -239.414001F), new Vector2(-811.119995F, -239.809998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-810.976013F, -218.695999F)); + builder.AddLine(new Vector2(-810.976013F, -235.796005F)); + builder.AddLine(new Vector2(-814.252014F, -235.796005F)); + builder.AddLine(new Vector2(-814.252014F, -218.695999F)); + builder.AddLine(new Vector2(-810.976013F, -218.695999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1226() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-819.598022F, -219.740005F)); + builder.AddCubicBezier(new Vector2(-818.458008F, -220.675995F), new Vector2(-817.888F, -221.947998F), new Vector2(-817.888F, -223.556F)); + builder.AddCubicBezier(new Vector2(-817.888F, -224.612F), new Vector2(-818.109985F, -225.464005F), new Vector2(-818.554016F, -226.112F)); + builder.AddCubicBezier(new Vector2(-818.997986F, -226.759995F), new Vector2(-819.567993F, -227.276001F), new Vector2(-820.263977F, -227.660004F)); + builder.AddCubicBezier(new Vector2(-820.960022F, -228.044006F), new Vector2(-821.692017F, -228.350006F), new Vector2(-822.460022F, -228.578003F)); + builder.AddCubicBezier(new Vector2(-823.228027F, -228.806F), new Vector2(-823.966003F, -229.028F), new Vector2(-824.674011F, -229.244003F)); + builder.AddCubicBezier(new Vector2(-825.382019F, -229.460007F), new Vector2(-825.952026F, -229.723999F), new Vector2(-826.383972F, -230.035995F)); + builder.AddCubicBezier(new Vector2(-826.815979F, -230.348007F), new Vector2(-827.031982F, -230.792007F), new Vector2(-827.031982F, -231.367996F)); + builder.AddCubicBezier(new Vector2(-827.031982F, -231.919998F), new Vector2(-826.786011F, -232.363998F), new Vector2(-826.294006F, -232.699997F)); + builder.AddCubicBezier(new Vector2(-825.802002F, -233.035995F), new Vector2(-825.088013F, -233.203995F), new Vector2(-824.151978F, -233.203995F)); + builder.AddCubicBezier(new Vector2(-823.263977F, -233.203995F), new Vector2(-822.471985F, -233.035995F), new Vector2(-821.776001F, -232.699997F)); + builder.AddCubicBezier(new Vector2(-821.080017F, -232.363998F), new Vector2(-820.47998F, -231.884003F), new Vector2(-819.976013F, -231.259995F)); + builder.AddLine(new Vector2(-817.888F, -233.348007F)); + builder.AddCubicBezier(new Vector2(-818.559998F, -234.283997F), new Vector2(-819.41803F, -234.985992F), new Vector2(-820.461975F, -235.453995F)); + builder.AddCubicBezier(new Vector2(-821.505981F, -235.921997F), new Vector2(-822.700012F, -236.156006F), new Vector2(-824.044006F, -236.156006F)); + builder.AddCubicBezier(new Vector2(-825.315979F, -236.156006F), new Vector2(-826.40802F, -235.951996F), new Vector2(-827.320007F, -235.544006F)); + builder.AddCubicBezier(new Vector2(-828.231995F, -235.136002F), new Vector2(-828.934021F, -234.554001F), new Vector2(-829.426025F, -233.798004F)); + builder.AddCubicBezier(new Vector2(-829.91803F, -233.042007F), new Vector2(-830.164001F, -232.147995F), new Vector2(-830.164001F, -231.115997F)); + builder.AddCubicBezier(new Vector2(-830.164001F, -230.084F), new Vector2(-829.942017F, -229.25F), new Vector2(-829.497986F, -228.613998F)); + builder.AddCubicBezier(new Vector2(-829.054016F, -227.977997F), new Vector2(-828.484009F, -227.479996F), new Vector2(-827.788025F, -227.119995F)); + builder.AddCubicBezier(new Vector2(-827.09198F, -226.759995F), new Vector2(-826.354004F, -226.472F), new Vector2(-825.573975F, -226.255997F)); + builder.AddCubicBezier(new Vector2(-824.794006F, -226.039993F), new Vector2(-824.05603F, -225.817993F), new Vector2(-823.359985F, -225.589996F)); + builder.AddCubicBezier(new Vector2(-822.664001F, -225.362F), new Vector2(-822.093994F, -225.074005F), new Vector2(-821.650024F, -224.725998F)); + builder.AddCubicBezier(new Vector2(-821.205994F, -224.378006F), new Vector2(-820.984009F, -223.891998F), new Vector2(-820.984009F, -223.268005F)); + builder.AddCubicBezier(new Vector2(-820.984009F, -222.643997F), new Vector2(-821.26001F, -222.158005F), new Vector2(-821.812012F, -221.809998F)); + builder.AddCubicBezier(new Vector2(-822.364014F, -221.462006F), new Vector2(-823.143982F, -221.287994F), new Vector2(-824.151978F, -221.287994F)); + builder.AddCubicBezier(new Vector2(-825.159973F, -221.287994F), new Vector2(-826.072021F, -221.473999F), new Vector2(-826.888F, -221.845993F)); + builder.AddCubicBezier(new Vector2(-827.703979F, -222.218002F), new Vector2(-828.424011F, -222.787994F), new Vector2(-829.047974F, -223.556F)); + builder.AddLine(new Vector2(-831.135986F, -221.468002F)); + builder.AddCubicBezier(new Vector2(-830.607971F, -220.820007F), new Vector2(-829.98999F, -220.261993F), new Vector2(-829.281982F, -219.794006F)); + builder.AddCubicBezier(new Vector2(-828.573975F, -219.326004F), new Vector2(-827.788025F, -218.966003F), new Vector2(-826.924011F, -218.714005F)); + builder.AddCubicBezier(new Vector2(-826.059998F, -218.462006F), new Vector2(-825.14801F, -218.335999F), new Vector2(-824.187988F, -218.335999F)); + builder.AddCubicBezier(new Vector2(-822.268005F, -218.335999F), new Vector2(-820.737976F, -218.804001F), new Vector2(-819.598022F, -219.740005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1227() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(793.940002F, -254.731995F)); + builder.AddLine(new Vector2(797.179993F, -261.752014F)); + builder.AddLine(new Vector2(795.343994F, -265.063995F)); + builder.AddLine(new Vector2(790.340027F, -254.731995F)); + builder.AddLine(new Vector2(793.940002F, -254.731995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(797.179993F, -261.752014F)); + builder.AddLine(new Vector2(805.171997F, -278.996002F)); + builder.AddLine(new Vector2(801.572021F, -278.996002F)); + builder.AddLine(new Vector2(795.776001F, -265.496002F)); + builder.AddLine(new Vector2(796.927979F, -265.496002F)); + builder.AddLine(new Vector2(791.419983F, -278.996002F)); + builder.AddLine(new Vector2(787.820007F, -278.996002F)); + builder.AddLine(new Vector2(795.236023F, -261.752014F)); + builder.AddLine(new Vector2(797.179993F, -261.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1228() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(784.867981F, -261.895996F)); + builder.AddLine(new Vector2(784.867981F, -287.600006F)); + builder.AddLine(new Vector2(781.627991F, -287.600006F)); + builder.AddLine(new Vector2(781.627991F, -261.895996F)); + builder.AddLine(new Vector2(784.867981F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1229() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(774.031982F, -262.291992F)); + builder.AddCubicBezier(new Vector2(775.208008F, -262.79599F), new Vector2(776.216003F, -263.528015F), new Vector2(777.05603F, -264.488007F)); + builder.AddLine(new Vector2(774.968018F, -266.612F)); + builder.AddCubicBezier(new Vector2(774.392029F, -265.940002F), new Vector2(773.702026F, -265.436005F), new Vector2(772.89801F, -265.100006F)); + builder.AddCubicBezier(new Vector2(772.093994F, -264.764008F), new Vector2(771.211975F, -264.596008F), new Vector2(770.252014F, -264.596008F)); + builder.AddCubicBezier(new Vector2(769.099976F, -264.596008F), new Vector2(768.080017F, -264.84201F), new Vector2(767.192017F, -265.334015F)); + builder.AddCubicBezier(new Vector2(766.304016F, -265.825989F), new Vector2(765.619995F, -266.522003F), new Vector2(765.140015F, -267.421997F)); + builder.AddCubicBezier(new Vector2(764.659973F, -268.321991F), new Vector2(764.419983F, -269.372009F), new Vector2(764.419983F, -270.571991F)); + builder.AddCubicBezier(new Vector2(764.419983F, -271.747986F), new Vector2(764.64801F, -272.768005F), new Vector2(765.104004F, -273.631989F)); + builder.AddCubicBezier(new Vector2(765.559998F, -274.496002F), new Vector2(766.208008F, -275.167999F), new Vector2(767.047974F, -275.64801F)); + builder.AddCubicBezier(new Vector2(767.888F, -276.127991F), new Vector2(768.859985F, -276.368011F), new Vector2(769.963989F, -276.368011F)); + builder.AddCubicBezier(new Vector2(771.02002F, -276.368011F), new Vector2(771.919983F, -276.145996F), new Vector2(772.664001F, -275.701996F)); + builder.AddCubicBezier(new Vector2(773.40802F, -275.257996F), new Vector2(773.984009F, -274.634003F), new Vector2(774.392029F, -273.829987F)); + builder.AddCubicBezier(new Vector2(774.799988F, -273.026001F), new Vector2(775.004028F, -272.048004F), new Vector2(775.004028F, -270.895996F)); + builder.AddLine(new Vector2(776.192017F, -271.940002F)); + builder.AddLine(new Vector2(763.484009F, -271.940002F)); + builder.AddLine(new Vector2(763.484009F, -269.23999F)); + builder.AddLine(new Vector2(777.919983F, -269.23999F)); + builder.AddCubicBezier(new Vector2(777.992004F, -269.575989F), new Vector2(778.039978F, -269.881989F), new Vector2(778.064026F, -270.15799F)); + builder.AddCubicBezier(new Vector2(778.088013F, -270.43399F), new Vector2(778.099976F, -270.691986F), new Vector2(778.099976F, -270.932007F)); + builder.AddCubicBezier(new Vector2(778.099976F, -272.563995F), new Vector2(777.757996F, -274.015991F), new Vector2(777.073975F, -275.287994F)); + builder.AddCubicBezier(new Vector2(776.390015F, -276.559998F), new Vector2(775.435974F, -277.556F), new Vector2(774.211975F, -278.276001F)); + builder.AddCubicBezier(new Vector2(772.987976F, -278.996002F), new Vector2(771.596008F, -279.355988F), new Vector2(770.036011F, -279.355988F)); + builder.AddCubicBezier(new Vector2(768.380005F, -279.355988F), new Vector2(766.885986F, -278.966003F), new Vector2(765.554016F, -278.186005F)); + builder.AddCubicBezier(new Vector2(764.221985F, -277.406006F), new Vector2(763.166016F, -276.343994F), new Vector2(762.385986F, -275F)); + builder.AddCubicBezier(new Vector2(761.606018F, -273.656006F), new Vector2(761.216003F, -272.144012F), new Vector2(761.216003F, -270.463989F)); + builder.AddCubicBezier(new Vector2(761.216003F, -268.76001F), new Vector2(761.612F, -267.235992F), new Vector2(762.403992F, -265.891998F)); + builder.AddCubicBezier(new Vector2(763.195984F, -264.548004F), new Vector2(764.27002F, -263.485992F), new Vector2(765.625977F, -262.705994F)); + builder.AddCubicBezier(new Vector2(766.981995F, -261.925995F), new Vector2(768.523987F, -261.536011F), new Vector2(770.252014F, -261.536011F)); + builder.AddCubicBezier(new Vector2(771.596008F, -261.536011F), new Vector2(772.856018F, -261.787994F), new Vector2(774.031982F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1230() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(759.703979F, -276.044006F)); + builder.AddLine(new Vector2(759.703979F, -278.996002F)); + builder.AddLine(new Vector2(748.039978F, -278.996002F)); + builder.AddLine(new Vector2(748.039978F, -276.044006F)); + builder.AddLine(new Vector2(759.703979F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(755.492004F, -261.895996F)); + builder.AddLine(new Vector2(755.492004F, -286.160004F)); + builder.AddLine(new Vector2(752.252014F, -286.160004F)); + builder.AddLine(new Vector2(752.252014F, -261.895996F)); + builder.AddLine(new Vector2(755.492004F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1231() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(742.531982F, -262.291992F)); + builder.AddCubicBezier(new Vector2(743.708008F, -262.79599F), new Vector2(744.716003F, -263.528015F), new Vector2(745.55603F, -264.488007F)); + builder.AddLine(new Vector2(743.468018F, -266.612F)); + builder.AddCubicBezier(new Vector2(742.892029F, -265.940002F), new Vector2(742.202026F, -265.436005F), new Vector2(741.39801F, -265.100006F)); + builder.AddCubicBezier(new Vector2(740.593994F, -264.764008F), new Vector2(739.711975F, -264.596008F), new Vector2(738.752014F, -264.596008F)); + builder.AddCubicBezier(new Vector2(737.599976F, -264.596008F), new Vector2(736.580017F, -264.84201F), new Vector2(735.692017F, -265.334015F)); + builder.AddCubicBezier(new Vector2(734.804016F, -265.825989F), new Vector2(734.119995F, -266.522003F), new Vector2(733.640015F, -267.421997F)); + builder.AddCubicBezier(new Vector2(733.159973F, -268.321991F), new Vector2(732.919983F, -269.372009F), new Vector2(732.919983F, -270.571991F)); + builder.AddCubicBezier(new Vector2(732.919983F, -271.747986F), new Vector2(733.14801F, -272.768005F), new Vector2(733.604004F, -273.631989F)); + builder.AddCubicBezier(new Vector2(734.059998F, -274.496002F), new Vector2(734.708008F, -275.167999F), new Vector2(735.547974F, -275.64801F)); + builder.AddCubicBezier(new Vector2(736.388F, -276.127991F), new Vector2(737.359985F, -276.368011F), new Vector2(738.463989F, -276.368011F)); + builder.AddCubicBezier(new Vector2(739.52002F, -276.368011F), new Vector2(740.419983F, -276.145996F), new Vector2(741.164001F, -275.701996F)); + builder.AddCubicBezier(new Vector2(741.90802F, -275.257996F), new Vector2(742.484009F, -274.634003F), new Vector2(742.892029F, -273.829987F)); + builder.AddCubicBezier(new Vector2(743.299988F, -273.026001F), new Vector2(743.504028F, -272.048004F), new Vector2(743.504028F, -270.895996F)); + builder.AddLine(new Vector2(744.692017F, -271.940002F)); + builder.AddLine(new Vector2(731.984009F, -271.940002F)); + builder.AddLine(new Vector2(731.984009F, -269.23999F)); + builder.AddLine(new Vector2(746.419983F, -269.23999F)); + builder.AddCubicBezier(new Vector2(746.492004F, -269.575989F), new Vector2(746.539978F, -269.881989F), new Vector2(746.564026F, -270.15799F)); + builder.AddCubicBezier(new Vector2(746.588013F, -270.43399F), new Vector2(746.599976F, -270.691986F), new Vector2(746.599976F, -270.932007F)); + builder.AddCubicBezier(new Vector2(746.599976F, -272.563995F), new Vector2(746.257996F, -274.015991F), new Vector2(745.573975F, -275.287994F)); + builder.AddCubicBezier(new Vector2(744.890015F, -276.559998F), new Vector2(743.935974F, -277.556F), new Vector2(742.711975F, -278.276001F)); + builder.AddCubicBezier(new Vector2(741.487976F, -278.996002F), new Vector2(740.096008F, -279.355988F), new Vector2(738.536011F, -279.355988F)); + builder.AddCubicBezier(new Vector2(736.880005F, -279.355988F), new Vector2(735.385986F, -278.966003F), new Vector2(734.054016F, -278.186005F)); + builder.AddCubicBezier(new Vector2(732.721985F, -277.406006F), new Vector2(731.666016F, -276.343994F), new Vector2(730.885986F, -275F)); + builder.AddCubicBezier(new Vector2(730.106018F, -273.656006F), new Vector2(729.716003F, -272.144012F), new Vector2(729.716003F, -270.463989F)); + builder.AddCubicBezier(new Vector2(729.716003F, -268.76001F), new Vector2(730.112F, -267.235992F), new Vector2(730.903992F, -265.891998F)); + builder.AddCubicBezier(new Vector2(731.695984F, -264.548004F), new Vector2(732.77002F, -263.485992F), new Vector2(734.125977F, -262.705994F)); + builder.AddCubicBezier(new Vector2(735.481995F, -261.925995F), new Vector2(737.023987F, -261.536011F), new Vector2(738.752014F, -261.536011F)); + builder.AddCubicBezier(new Vector2(740.096008F, -261.536011F), new Vector2(741.356018F, -261.787994F), new Vector2(742.531982F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1232() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(726.080017F, -261.895996F)); + builder.AddLine(new Vector2(726.080017F, -287.600006F)); + builder.AddLine(new Vector2(722.840027F, -287.600006F)); + builder.AddLine(new Vector2(722.840027F, -261.895996F)); + builder.AddLine(new Vector2(726.080017F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1233() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(707.521973F, -265.35199F)); + builder.AddCubicBezier(new Vector2(706.69397F, -265.855988F), new Vector2(706.057983F, -266.54599F), new Vector2(705.614014F, -267.421997F)); + builder.AddCubicBezier(new Vector2(705.169983F, -268.298004F), new Vector2(704.947998F, -269.299988F), new Vector2(704.947998F, -270.428009F)); + builder.AddCubicBezier(new Vector2(704.947998F, -271.579987F), new Vector2(705.176025F, -272.593994F), new Vector2(705.632019F, -273.470001F)); + builder.AddCubicBezier(new Vector2(706.088013F, -274.346008F), new Vector2(706.723999F, -275.036011F), new Vector2(707.539978F, -275.540009F)); + builder.AddCubicBezier(new Vector2(708.356018F, -276.044006F), new Vector2(709.291992F, -276.29599F), new Vector2(710.348022F, -276.29599F)); + builder.AddCubicBezier(new Vector2(711.427979F, -276.29599F), new Vector2(712.375977F, -276.044006F), new Vector2(713.192017F, -275.540009F)); + builder.AddCubicBezier(new Vector2(714.007996F, -275.036011F), new Vector2(714.650024F, -274.346008F), new Vector2(715.117981F, -273.470001F)); + builder.AddCubicBezier(new Vector2(715.585999F, -272.593994F), new Vector2(715.820007F, -271.59201F), new Vector2(715.820007F, -270.463989F)); + builder.AddCubicBezier(new Vector2(715.820007F, -269.312012F), new Vector2(715.585999F, -268.298004F), new Vector2(715.117981F, -267.421997F)); + builder.AddCubicBezier(new Vector2(714.650024F, -266.54599F), new Vector2(714.007996F, -265.855988F), new Vector2(713.192017F, -265.35199F)); + builder.AddCubicBezier(new Vector2(712.375977F, -264.847992F), new Vector2(711.427979F, -264.596008F), new Vector2(710.348022F, -264.596008F)); + builder.AddCubicBezier(new Vector2(709.291992F, -264.596008F), new Vector2(708.349976F, -264.847992F), new Vector2(707.521973F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(705.127991F, -254.731995F)); + builder.AddLine(new Vector2(705.127991F, -266.179993F)); + builder.AddLine(new Vector2(704.515991F, -270.355988F)); + builder.AddLine(new Vector2(705.127991F, -274.496002F)); + builder.AddLine(new Vector2(705.127991F, -278.996002F)); + builder.AddLine(new Vector2(701.888F, -278.996002F)); + builder.AddLine(new Vector2(701.888F, -254.731995F)); + builder.AddLine(new Vector2(705.127991F, -254.731995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(715.117981F, -262.705994F)); + builder.AddCubicBezier(new Vector2(716.377991F, -263.485992F), new Vector2(717.367981F, -264.548004F), new Vector2(718.088013F, -265.891998F)); + builder.AddCubicBezier(new Vector2(718.807983F, -267.235992F), new Vector2(719.16803F, -268.747986F), new Vector2(719.16803F, -270.428009F)); + builder.AddCubicBezier(new Vector2(719.16803F, -272.108002F), new Vector2(718.807983F, -273.619995F), new Vector2(718.088013F, -274.963989F)); + builder.AddCubicBezier(new Vector2(717.367981F, -276.308014F), new Vector2(716.377991F, -277.376007F), new Vector2(715.117981F, -278.167999F)); + builder.AddCubicBezier(new Vector2(713.857971F, -278.959991F), new Vector2(712.447998F, -279.355988F), new Vector2(710.888F, -279.355988F)); + builder.AddCubicBezier(new Vector2(709.616028F, -279.355988F), new Vector2(708.458008F, -279.085999F), new Vector2(707.414001F, -278.54599F)); + builder.AddCubicBezier(new Vector2(706.369995F, -278.006012F), new Vector2(705.530029F, -277.261993F), new Vector2(704.893982F, -276.313995F)); + builder.AddCubicBezier(new Vector2(704.257996F, -275.365997F), new Vector2(703.903992F, -274.268005F), new Vector2(703.83197F, -273.019989F)); + builder.AddLine(new Vector2(703.83197F, -267.872009F)); + builder.AddCubicBezier(new Vector2(703.903992F, -266.64801F), new Vector2(704.252014F, -265.556F), new Vector2(704.875977F, -264.596008F)); + builder.AddCubicBezier(new Vector2(705.5F, -263.635986F), new Vector2(706.333984F, -262.885986F), new Vector2(707.377991F, -262.346008F)); + builder.AddCubicBezier(new Vector2(708.421997F, -261.806F), new Vector2(709.59198F, -261.536011F), new Vector2(710.888F, -261.536011F)); + builder.AddCubicBezier(new Vector2(712.447998F, -261.536011F), new Vector2(713.857971F, -261.925995F), new Vector2(715.117981F, -262.705994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1234() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(697.495972F, -261.895996F)); + builder.AddLine(new Vector2(697.495972F, -272.876007F)); + builder.AddCubicBezier(new Vector2(697.495972F, -274.220001F), new Vector2(697.202026F, -275.372009F), new Vector2(696.614014F, -276.332001F)); + builder.AddCubicBezier(new Vector2(696.026001F, -277.291992F), new Vector2(695.23999F, -278.036011F), new Vector2(694.255981F, -278.563995F)); + builder.AddCubicBezier(new Vector2(693.271973F, -279.09201F), new Vector2(692.156006F, -279.355988F), new Vector2(690.90802F, -279.355988F)); + builder.AddCubicBezier(new Vector2(689.708008F, -279.355988F), new Vector2(688.604004F, -279.085999F), new Vector2(687.596008F, -278.54599F)); + builder.AddCubicBezier(new Vector2(686.588013F, -278.006012F), new Vector2(685.765991F, -277.261993F), new Vector2(685.130005F, -276.313995F)); + builder.AddCubicBezier(new Vector2(684.494019F, -275.365997F), new Vector2(684.140015F, -274.231995F), new Vector2(684.067993F, -272.911987F)); + builder.AddLine(new Vector2(685.903992F, -272.227997F)); + builder.AddCubicBezier(new Vector2(685.903992F, -273.09201F), new Vector2(686.096008F, -273.824005F), new Vector2(686.47998F, -274.424011F)); + builder.AddCubicBezier(new Vector2(686.864014F, -275.023987F), new Vector2(687.374023F, -275.492004F), new Vector2(688.01001F, -275.828003F)); + builder.AddCubicBezier(new Vector2(688.645996F, -276.164001F), new Vector2(689.359985F, -276.332001F), new Vector2(690.151978F, -276.332001F)); + builder.AddCubicBezier(new Vector2(691.304016F, -276.332001F), new Vector2(692.27002F, -275.966003F), new Vector2(693.049988F, -275.234009F)); + builder.AddCubicBezier(new Vector2(693.830017F, -274.502014F), new Vector2(694.219971F, -273.5F), new Vector2(694.219971F, -272.227997F)); + builder.AddLine(new Vector2(694.219971F, -261.895996F)); + builder.AddLine(new Vector2(697.495972F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(685.903992F, -261.895996F)); + builder.AddLine(new Vector2(685.903992F, -272.911987F)); + builder.AddCubicBezier(new Vector2(685.903992F, -274.231995F), new Vector2(685.622009F, -275.372009F), new Vector2(685.057983F, -276.332001F)); + builder.AddCubicBezier(new Vector2(684.494019F, -277.291992F), new Vector2(683.726013F, -278.036011F), new Vector2(682.754028F, -278.563995F)); + builder.AddCubicBezier(new Vector2(681.781982F, -279.09201F), new Vector2(680.695984F, -279.355988F), new Vector2(679.495972F, -279.355988F)); + builder.AddCubicBezier(new Vector2(678.271973F, -279.355988F), new Vector2(677.16803F, -279.085999F), new Vector2(676.184021F, -278.54599F)); + builder.AddCubicBezier(new Vector2(675.200012F, -278.006012F), new Vector2(674.426025F, -277.256012F), new Vector2(673.862F, -276.29599F)); + builder.AddCubicBezier(new Vector2(673.297974F, -275.335999F), new Vector2(673.015991F, -274.208008F), new Vector2(673.015991F, -272.911987F)); + builder.AddLine(new Vector2(674.348022F, -272.227997F)); + builder.AddCubicBezier(new Vector2(674.348022F, -273.09201F), new Vector2(674.539978F, -273.824005F), new Vector2(674.924011F, -274.424011F)); + builder.AddCubicBezier(new Vector2(675.307983F, -275.023987F), new Vector2(675.812012F, -275.492004F), new Vector2(676.435974F, -275.828003F)); + builder.AddCubicBezier(new Vector2(677.059998F, -276.164001F), new Vector2(677.768005F, -276.332001F), new Vector2(678.559998F, -276.332001F)); + builder.AddCubicBezier(new Vector2(679.736023F, -276.332001F), new Vector2(680.713989F, -275.966003F), new Vector2(681.494019F, -275.234009F)); + builder.AddCubicBezier(new Vector2(682.273987F, -274.502014F), new Vector2(682.664001F, -273.5F), new Vector2(682.664001F, -272.227997F)); + builder.AddLine(new Vector2(682.664001F, -261.895996F)); + builder.AddLine(new Vector2(685.903992F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(674.348022F, -261.895996F)); + builder.AddLine(new Vector2(674.348022F, -278.996002F)); + builder.AddLine(new Vector2(671.107971F, -278.996002F)); + builder.AddLine(new Vector2(671.107971F, -261.895996F)); + builder.AddLine(new Vector2(674.348022F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1235() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(655.700012F, -265.424011F)); + builder.AddCubicBezier(new Vector2(654.859985F, -265.928009F), new Vector2(654.200012F, -266.618011F), new Vector2(653.719971F, -267.493988F)); + builder.AddCubicBezier(new Vector2(653.23999F, -268.369995F), new Vector2(653F, -269.372009F), new Vector2(653F, -270.5F)); + builder.AddCubicBezier(new Vector2(653F, -271.604004F), new Vector2(653.23999F, -272.588013F), new Vector2(653.719971F, -273.451996F)); + builder.AddCubicBezier(new Vector2(654.200012F, -274.31601F), new Vector2(654.859985F, -274.993988F), new Vector2(655.700012F, -275.485992F)); + builder.AddCubicBezier(new Vector2(656.539978F, -275.977997F), new Vector2(657.487976F, -276.223999F), new Vector2(658.544006F, -276.223999F)); + builder.AddCubicBezier(new Vector2(659.64801F, -276.223999F), new Vector2(660.614014F, -275.977997F), new Vector2(661.442017F, -275.485992F)); + builder.AddCubicBezier(new Vector2(662.27002F, -274.993988F), new Vector2(662.929993F, -274.31601F), new Vector2(663.421997F, -273.451996F)); + builder.AddCubicBezier(new Vector2(663.914001F, -272.588013F), new Vector2(664.159973F, -271.604004F), new Vector2(664.159973F, -270.5F)); + builder.AddCubicBezier(new Vector2(664.159973F, -269.372009F), new Vector2(663.919983F, -268.369995F), new Vector2(663.440002F, -267.493988F)); + builder.AddCubicBezier(new Vector2(662.960022F, -266.618011F), new Vector2(662.299988F, -265.928009F), new Vector2(661.460022F, -265.424011F)); + builder.AddCubicBezier(new Vector2(660.619995F, -264.920013F), new Vector2(659.64801F, -264.667999F), new Vector2(658.544006F, -264.667999F)); + builder.AddCubicBezier(new Vector2(657.487976F, -264.667999F), new Vector2(656.539978F, -264.920013F), new Vector2(655.700012F, -265.424011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(663.098022F, -262.723999F)); + builder.AddCubicBezier(new Vector2(664.453979F, -263.515991F), new Vector2(665.528015F, -264.589996F), new Vector2(666.320007F, -265.946014F)); + builder.AddCubicBezier(new Vector2(667.112F, -267.302002F), new Vector2(667.507996F, -268.820007F), new Vector2(667.507996F, -270.5F)); + builder.AddCubicBezier(new Vector2(667.507996F, -272.156006F), new Vector2(667.112F, -273.656006F), new Vector2(666.320007F, -275F)); + builder.AddCubicBezier(new Vector2(665.528015F, -276.343994F), new Vector2(664.453979F, -277.406006F), new Vector2(663.098022F, -278.186005F)); + builder.AddCubicBezier(new Vector2(661.742004F, -278.966003F), new Vector2(660.223999F, -279.355988F), new Vector2(658.544006F, -279.355988F)); + builder.AddCubicBezier(new Vector2(656.888F, -279.355988F), new Vector2(655.388F, -278.959991F), new Vector2(654.044006F, -278.167999F)); + builder.AddCubicBezier(new Vector2(652.700012F, -277.376007F), new Vector2(651.632019F, -276.313995F), new Vector2(650.840027F, -274.981995F)); + builder.AddCubicBezier(new Vector2(650.047974F, -273.649994F), new Vector2(649.651978F, -272.156006F), new Vector2(649.651978F, -270.5F)); + builder.AddCubicBezier(new Vector2(649.651978F, -268.820007F), new Vector2(650.047974F, -267.302002F), new Vector2(650.840027F, -265.946014F)); + builder.AddCubicBezier(new Vector2(651.632019F, -264.589996F), new Vector2(652.700012F, -263.515991F), new Vector2(654.044006F, -262.723999F)); + builder.AddCubicBezier(new Vector2(655.388F, -261.932007F), new Vector2(656.888F, -261.536011F), new Vector2(658.544006F, -261.536011F)); + builder.AddCubicBezier(new Vector2(660.223999F, -261.536011F), new Vector2(661.742004F, -261.932007F), new Vector2(663.098022F, -262.723999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1236() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(644.98999F, -262.291992F)); + builder.AddCubicBezier(new Vector2(646.130005F, -262.79599F), new Vector2(647.096008F, -263.503998F), new Vector2(647.888F, -264.415985F)); + builder.AddLine(new Vector2(645.763977F, -266.575989F)); + builder.AddCubicBezier(new Vector2(645.211975F, -265.951996F), new Vector2(644.557983F, -265.477997F), new Vector2(643.802002F, -265.153992F)); + builder.AddCubicBezier(new Vector2(643.046021F, -264.829987F), new Vector2(642.211975F, -264.667999F), new Vector2(641.299988F, -264.667999F)); + builder.AddCubicBezier(new Vector2(640.219971F, -264.667999F), new Vector2(639.26001F, -264.920013F), new Vector2(638.419983F, -265.424011F)); + builder.AddCubicBezier(new Vector2(637.580017F, -265.928009F), new Vector2(636.919983F, -266.612F), new Vector2(636.440002F, -267.476013F)); + builder.AddCubicBezier(new Vector2(635.960022F, -268.339996F), new Vector2(635.719971F, -269.335999F), new Vector2(635.719971F, -270.463989F)); + builder.AddCubicBezier(new Vector2(635.719971F, -271.59201F), new Vector2(635.960022F, -272.588013F), new Vector2(636.440002F, -273.451996F)); + builder.AddCubicBezier(new Vector2(636.919983F, -274.31601F), new Vector2(637.580017F, -274.993988F), new Vector2(638.419983F, -275.485992F)); + builder.AddCubicBezier(new Vector2(639.26001F, -275.977997F), new Vector2(640.219971F, -276.223999F), new Vector2(641.299988F, -276.223999F)); + builder.AddCubicBezier(new Vector2(642.187988F, -276.223999F), new Vector2(643.015991F, -276.062012F), new Vector2(643.783997F, -275.738007F)); + builder.AddCubicBezier(new Vector2(644.552002F, -275.414001F), new Vector2(645.200012F, -274.940002F), new Vector2(645.728027F, -274.31601F)); + builder.AddLine(new Vector2(647.888F, -276.476013F)); + builder.AddCubicBezier(new Vector2(647.072021F, -277.411987F), new Vector2(646.099976F, -278.126007F), new Vector2(644.971985F, -278.618011F)); + builder.AddCubicBezier(new Vector2(643.843994F, -279.109985F), new Vector2(642.619995F, -279.355988F), new Vector2(641.299988F, -279.355988F)); + builder.AddCubicBezier(new Vector2(639.619995F, -279.355988F), new Vector2(638.10199F, -278.966003F), new Vector2(636.745972F, -278.186005F)); + builder.AddCubicBezier(new Vector2(635.390015F, -277.406006F), new Vector2(634.322021F, -276.343994F), new Vector2(633.541992F, -275F)); + builder.AddCubicBezier(new Vector2(632.762024F, -273.656006F), new Vector2(632.372009F, -272.144012F), new Vector2(632.372009F, -270.463989F)); + builder.AddCubicBezier(new Vector2(632.372009F, -268.808014F), new Vector2(632.762024F, -267.302002F), new Vector2(633.541992F, -265.946014F)); + builder.AddCubicBezier(new Vector2(634.322021F, -264.589996F), new Vector2(635.390015F, -263.515991F), new Vector2(636.745972F, -262.723999F)); + builder.AddCubicBezier(new Vector2(638.10199F, -261.932007F), new Vector2(639.619995F, -261.536011F), new Vector2(641.299988F, -261.536011F)); + builder.AddCubicBezier(new Vector2(642.619995F, -261.536011F), new Vector2(643.849976F, -261.787994F), new Vector2(644.98999F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1237() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(618.440002F, -262.291992F)); + builder.AddCubicBezier(new Vector2(619.616028F, -262.79599F), new Vector2(620.624023F, -263.528015F), new Vector2(621.463989F, -264.488007F)); + builder.AddLine(new Vector2(619.375977F, -266.612F)); + builder.AddCubicBezier(new Vector2(618.799988F, -265.940002F), new Vector2(618.109985F, -265.436005F), new Vector2(617.30603F, -265.100006F)); + builder.AddCubicBezier(new Vector2(616.502014F, -264.764008F), new Vector2(615.619995F, -264.596008F), new Vector2(614.659973F, -264.596008F)); + builder.AddCubicBezier(new Vector2(613.507996F, -264.596008F), new Vector2(612.487976F, -264.84201F), new Vector2(611.599976F, -265.334015F)); + builder.AddCubicBezier(new Vector2(610.711975F, -265.825989F), new Vector2(610.028015F, -266.522003F), new Vector2(609.547974F, -267.421997F)); + builder.AddCubicBezier(new Vector2(609.067993F, -268.321991F), new Vector2(608.828003F, -269.372009F), new Vector2(608.828003F, -270.571991F)); + builder.AddCubicBezier(new Vector2(608.828003F, -271.747986F), new Vector2(609.05603F, -272.768005F), new Vector2(609.512024F, -273.631989F)); + builder.AddCubicBezier(new Vector2(609.968018F, -274.496002F), new Vector2(610.616028F, -275.167999F), new Vector2(611.455994F, -275.64801F)); + builder.AddCubicBezier(new Vector2(612.296021F, -276.127991F), new Vector2(613.268005F, -276.368011F), new Vector2(614.372009F, -276.368011F)); + builder.AddCubicBezier(new Vector2(615.427979F, -276.368011F), new Vector2(616.328003F, -276.145996F), new Vector2(617.072021F, -275.701996F)); + builder.AddCubicBezier(new Vector2(617.815979F, -275.257996F), new Vector2(618.392029F, -274.634003F), new Vector2(618.799988F, -273.829987F)); + builder.AddCubicBezier(new Vector2(619.208008F, -273.026001F), new Vector2(619.411987F, -272.048004F), new Vector2(619.411987F, -270.895996F)); + builder.AddLine(new Vector2(620.599976F, -271.940002F)); + builder.AddLine(new Vector2(607.892029F, -271.940002F)); + builder.AddLine(new Vector2(607.892029F, -269.23999F)); + builder.AddLine(new Vector2(622.328003F, -269.23999F)); + builder.AddCubicBezier(new Vector2(622.400024F, -269.575989F), new Vector2(622.447998F, -269.881989F), new Vector2(622.471985F, -270.15799F)); + builder.AddCubicBezier(new Vector2(622.495972F, -270.43399F), new Vector2(622.507996F, -270.691986F), new Vector2(622.507996F, -270.932007F)); + builder.AddCubicBezier(new Vector2(622.507996F, -272.563995F), new Vector2(622.166016F, -274.015991F), new Vector2(621.481995F, -275.287994F)); + builder.AddCubicBezier(new Vector2(620.797974F, -276.559998F), new Vector2(619.843994F, -277.556F), new Vector2(618.619995F, -278.276001F)); + builder.AddCubicBezier(new Vector2(617.395996F, -278.996002F), new Vector2(616.004028F, -279.355988F), new Vector2(614.44397F, -279.355988F)); + builder.AddCubicBezier(new Vector2(612.788025F, -279.355988F), new Vector2(611.294006F, -278.966003F), new Vector2(609.961975F, -278.186005F)); + builder.AddCubicBezier(new Vector2(608.630005F, -277.406006F), new Vector2(607.573975F, -276.343994F), new Vector2(606.794006F, -275F)); + builder.AddCubicBezier(new Vector2(606.013977F, -273.656006F), new Vector2(605.624023F, -272.144012F), new Vector2(605.624023F, -270.463989F)); + builder.AddCubicBezier(new Vector2(605.624023F, -268.76001F), new Vector2(606.02002F, -267.235992F), new Vector2(606.812012F, -265.891998F)); + builder.AddCubicBezier(new Vector2(607.604004F, -264.548004F), new Vector2(608.677979F, -263.485992F), new Vector2(610.033997F, -262.705994F)); + builder.AddCubicBezier(new Vector2(611.390015F, -261.925995F), new Vector2(612.932007F, -261.536011F), new Vector2(614.659973F, -261.536011F)); + builder.AddCubicBezier(new Vector2(616.004028F, -261.536011F), new Vector2(617.263977F, -261.787994F), new Vector2(618.440002F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1238() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(597.236023F, -275.144012F)); + builder.AddCubicBezier(new Vector2(598.004028F, -275.911987F), new Vector2(598.987976F, -276.29599F), new Vector2(600.187988F, -276.29599F)); + builder.AddCubicBezier(new Vector2(600.763977F, -276.29599F), new Vector2(601.268005F, -276.212006F), new Vector2(601.700012F, -276.044006F)); + builder.AddCubicBezier(new Vector2(602.132019F, -275.876007F), new Vector2(602.528015F, -275.600006F), new Vector2(602.888F, -275.216003F)); + builder.AddLine(new Vector2(605.012024F, -277.411987F)); + builder.AddCubicBezier(new Vector2(604.411987F, -278.108002F), new Vector2(603.763977F, -278.605988F), new Vector2(603.067993F, -278.906006F)); + builder.AddCubicBezier(new Vector2(602.372009F, -279.205994F), new Vector2(601.59198F, -279.355988F), new Vector2(600.728027F, -279.355988F)); + builder.AddCubicBezier(new Vector2(598.83197F, -279.355988F), new Vector2(597.380005F, -278.708008F), new Vector2(596.372009F, -277.411987F)); + builder.AddCubicBezier(new Vector2(595.364014F, -276.115997F), new Vector2(594.859985F, -274.376007F), new Vector2(594.859985F, -272.191986F)); + builder.AddLine(new Vector2(596.083984F, -271.615997F)); + builder.AddCubicBezier(new Vector2(596.083984F, -273.200012F), new Vector2(596.468018F, -274.376007F), new Vector2(597.236023F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(596.083984F, -261.895996F)); + builder.AddLine(new Vector2(596.083984F, -278.996002F)); + builder.AddLine(new Vector2(592.843994F, -278.996002F)); + builder.AddLine(new Vector2(592.843994F, -261.895996F)); + builder.AddLine(new Vector2(596.083984F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1239() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(588.127991F, -261.895996F)); + builder.AddLine(new Vector2(588.127991F, -278.996002F)); + builder.AddLine(new Vector2(584.85199F, -278.996002F)); + builder.AddLine(new Vector2(584.85199F, -274.820007F)); + builder.AddLine(new Vector2(585.463989F, -270.679993F)); + builder.AddLine(new Vector2(584.85199F, -266.503998F)); + builder.AddLine(new Vector2(584.85199F, -261.895996F)); + builder.AddLine(new Vector2(588.127991F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(576.823975F, -265.35199F)); + builder.AddCubicBezier(new Vector2(575.984009F, -265.855988F), new Vector2(575.330017F, -266.54599F), new Vector2(574.862F, -267.421997F)); + builder.AddCubicBezier(new Vector2(574.393982F, -268.298004F), new Vector2(574.159973F, -269.312012F), new Vector2(574.159973F, -270.463989F)); + builder.AddCubicBezier(new Vector2(574.159973F, -271.59201F), new Vector2(574.393982F, -272.593994F), new Vector2(574.862F, -273.470001F)); + builder.AddCubicBezier(new Vector2(575.330017F, -274.346008F), new Vector2(575.978027F, -275.036011F), new Vector2(576.80603F, -275.540009F)); + builder.AddCubicBezier(new Vector2(577.633972F, -276.044006F), new Vector2(578.588013F, -276.29599F), new Vector2(579.66803F, -276.29599F)); + builder.AddCubicBezier(new Vector2(580.747986F, -276.29599F), new Vector2(581.690002F, -276.049988F), new Vector2(582.494019F, -275.558014F)); + builder.AddCubicBezier(new Vector2(583.297974F, -275.06601F), new Vector2(583.927979F, -274.376007F), new Vector2(584.383972F, -273.488007F)); + builder.AddCubicBezier(new Vector2(584.840027F, -272.600006F), new Vector2(585.067993F, -271.579987F), new Vector2(585.067993F, -270.428009F)); + builder.AddCubicBezier(new Vector2(585.067993F, -268.723999F), new Vector2(584.575989F, -267.325989F), new Vector2(583.59198F, -266.234009F)); + builder.AddCubicBezier(new Vector2(582.607971F, -265.141998F), new Vector2(581.312012F, -264.596008F), new Vector2(579.703979F, -264.596008F)); + builder.AddCubicBezier(new Vector2(578.624023F, -264.596008F), new Vector2(577.664001F, -264.847992F), new Vector2(576.823975F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(582.656006F, -262.346008F)); + builder.AddCubicBezier(new Vector2(583.687988F, -262.885986F), new Vector2(584.51001F, -263.635986F), new Vector2(585.122009F, -264.596008F)); + builder.AddCubicBezier(new Vector2(585.734009F, -265.556F), new Vector2(586.075989F, -266.64801F), new Vector2(586.14801F, -267.872009F)); + builder.AddLine(new Vector2(586.14801F, -273.019989F)); + builder.AddCubicBezier(new Vector2(586.075989F, -274.268005F), new Vector2(585.728027F, -275.365997F), new Vector2(585.104004F, -276.313995F)); + builder.AddCubicBezier(new Vector2(584.47998F, -277.261993F), new Vector2(583.65802F, -278.006012F), new Vector2(582.638F, -278.54599F)); + builder.AddCubicBezier(new Vector2(581.617981F, -279.085999F), new Vector2(580.460022F, -279.355988F), new Vector2(579.164001F, -279.355988F)); + builder.AddCubicBezier(new Vector2(577.580017F, -279.355988F), new Vector2(576.15802F, -278.959991F), new Vector2(574.89801F, -278.167999F)); + builder.AddCubicBezier(new Vector2(573.638F, -277.376007F), new Vector2(572.642029F, -276.308014F), new Vector2(571.909973F, -274.963989F)); + builder.AddCubicBezier(new Vector2(571.177979F, -273.619995F), new Vector2(570.812012F, -272.108002F), new Vector2(570.812012F, -270.428009F)); + builder.AddCubicBezier(new Vector2(570.812012F, -268.747986F), new Vector2(571.177979F, -267.235992F), new Vector2(571.909973F, -265.891998F)); + builder.AddCubicBezier(new Vector2(572.642029F, -264.548004F), new Vector2(573.638F, -263.485992F), new Vector2(574.89801F, -262.705994F)); + builder.AddCubicBezier(new Vector2(576.15802F, -261.925995F), new Vector2(577.580017F, -261.536011F), new Vector2(579.164001F, -261.536011F)); + builder.AddCubicBezier(new Vector2(580.460022F, -261.536011F), new Vector2(581.624023F, -261.806F), new Vector2(582.656006F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1240() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(559.093994F, -262.940002F)); + builder.AddCubicBezier(new Vector2(560.234009F, -263.876007F), new Vector2(560.804016F, -265.14801F), new Vector2(560.804016F, -266.756012F)); + builder.AddCubicBezier(new Vector2(560.804016F, -267.812012F), new Vector2(560.58197F, -268.664001F), new Vector2(560.138F, -269.312012F)); + builder.AddCubicBezier(new Vector2(559.69397F, -269.959991F), new Vector2(559.124023F, -270.476013F), new Vector2(558.427979F, -270.859985F)); + builder.AddCubicBezier(new Vector2(557.731995F, -271.243988F), new Vector2(557F, -271.549988F), new Vector2(556.231995F, -271.778015F)); + builder.AddCubicBezier(new Vector2(555.463989F, -272.006012F), new Vector2(554.726013F, -272.227997F), new Vector2(554.018005F, -272.444F)); + builder.AddCubicBezier(new Vector2(553.309998F, -272.660004F), new Vector2(552.73999F, -272.924011F), new Vector2(552.307983F, -273.235992F)); + builder.AddCubicBezier(new Vector2(551.875977F, -273.548004F), new Vector2(551.659973F, -273.992004F), new Vector2(551.659973F, -274.567993F)); + builder.AddCubicBezier(new Vector2(551.659973F, -275.119995F), new Vector2(551.906006F, -275.563995F), new Vector2(552.39801F, -275.899994F)); + builder.AddCubicBezier(new Vector2(552.890015F, -276.235992F), new Vector2(553.604004F, -276.403992F), new Vector2(554.539978F, -276.403992F)); + builder.AddCubicBezier(new Vector2(555.427979F, -276.403992F), new Vector2(556.219971F, -276.235992F), new Vector2(556.916016F, -275.899994F)); + builder.AddCubicBezier(new Vector2(557.612F, -275.563995F), new Vector2(558.211975F, -275.084015F), new Vector2(558.716003F, -274.459991F)); + builder.AddLine(new Vector2(560.804016F, -276.548004F)); + builder.AddCubicBezier(new Vector2(560.132019F, -277.484009F), new Vector2(559.273987F, -278.186005F), new Vector2(558.22998F, -278.653992F)); + builder.AddCubicBezier(new Vector2(557.185974F, -279.122009F), new Vector2(555.992004F, -279.355988F), new Vector2(554.64801F, -279.355988F)); + builder.AddCubicBezier(new Vector2(553.375977F, -279.355988F), new Vector2(552.283997F, -279.152008F), new Vector2(551.372009F, -278.743988F)); + builder.AddCubicBezier(new Vector2(550.460022F, -278.335999F), new Vector2(549.757996F, -277.753998F), new Vector2(549.265991F, -276.997986F)); + builder.AddCubicBezier(new Vector2(548.773987F, -276.242004F), new Vector2(548.528015F, -275.347992F), new Vector2(548.528015F, -274.31601F)); + builder.AddCubicBezier(new Vector2(548.528015F, -273.283997F), new Vector2(548.75F, -272.450012F), new Vector2(549.19397F, -271.813995F)); + builder.AddCubicBezier(new Vector2(549.638F, -271.178009F), new Vector2(550.208008F, -270.679993F), new Vector2(550.903992F, -270.320007F)); + builder.AddCubicBezier(new Vector2(551.599976F, -269.959991F), new Vector2(552.338013F, -269.671997F), new Vector2(553.117981F, -269.455994F)); + builder.AddCubicBezier(new Vector2(553.89801F, -269.23999F), new Vector2(554.635986F, -269.018005F), new Vector2(555.33197F, -268.790009F)); + builder.AddCubicBezier(new Vector2(556.028015F, -268.562012F), new Vector2(556.598022F, -268.273987F), new Vector2(557.041992F, -267.925995F)); + builder.AddCubicBezier(new Vector2(557.486023F, -267.578003F), new Vector2(557.708008F, -267.09201F), new Vector2(557.708008F, -266.467987F)); + builder.AddCubicBezier(new Vector2(557.708008F, -265.843994F), new Vector2(557.432007F, -265.358002F), new Vector2(556.880005F, -265.01001F)); + builder.AddCubicBezier(new Vector2(556.328003F, -264.661987F), new Vector2(555.547974F, -264.488007F), new Vector2(554.539978F, -264.488007F)); + builder.AddCubicBezier(new Vector2(553.531982F, -264.488007F), new Vector2(552.619995F, -264.674011F), new Vector2(551.804016F, -265.04599F)); + builder.AddCubicBezier(new Vector2(550.987976F, -265.417999F), new Vector2(550.268005F, -265.988007F), new Vector2(549.643982F, -266.756012F)); + builder.AddLine(new Vector2(547.55603F, -264.667999F)); + builder.AddCubicBezier(new Vector2(548.083984F, -264.019989F), new Vector2(548.702026F, -263.462006F), new Vector2(549.409973F, -262.993988F)); + builder.AddCubicBezier(new Vector2(550.117981F, -262.526001F), new Vector2(550.903992F, -262.165985F), new Vector2(551.768005F, -261.914001F)); + builder.AddCubicBezier(new Vector2(552.632019F, -261.661987F), new Vector2(553.544006F, -261.536011F), new Vector2(554.504028F, -261.536011F)); + builder.AddCubicBezier(new Vector2(556.424011F, -261.536011F), new Vector2(557.953979F, -262.003998F), new Vector2(559.093994F, -262.940002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1241() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(539.383972F, -275.144012F)); + builder.AddCubicBezier(new Vector2(540.151978F, -275.911987F), new Vector2(541.135986F, -276.29599F), new Vector2(542.335999F, -276.29599F)); + builder.AddCubicBezier(new Vector2(542.911987F, -276.29599F), new Vector2(543.416016F, -276.212006F), new Vector2(543.848022F, -276.044006F)); + builder.AddCubicBezier(new Vector2(544.280029F, -275.876007F), new Vector2(544.676025F, -275.600006F), new Vector2(545.036011F, -275.216003F)); + builder.AddLine(new Vector2(547.159973F, -277.411987F)); + builder.AddCubicBezier(new Vector2(546.559998F, -278.108002F), new Vector2(545.911987F, -278.605988F), new Vector2(545.216003F, -278.906006F)); + builder.AddCubicBezier(new Vector2(544.52002F, -279.205994F), new Vector2(543.73999F, -279.355988F), new Vector2(542.875977F, -279.355988F)); + builder.AddCubicBezier(new Vector2(540.97998F, -279.355988F), new Vector2(539.528015F, -278.708008F), new Vector2(538.52002F, -277.411987F)); + builder.AddCubicBezier(new Vector2(537.512024F, -276.115997F), new Vector2(537.007996F, -274.376007F), new Vector2(537.007996F, -272.191986F)); + builder.AddLine(new Vector2(538.231995F, -271.615997F)); + builder.AddCubicBezier(new Vector2(538.231995F, -273.200012F), new Vector2(538.616028F, -274.376007F), new Vector2(539.383972F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(538.231995F, -261.895996F)); + builder.AddLine(new Vector2(538.231995F, -278.996002F)); + builder.AddLine(new Vector2(534.992004F, -278.996002F)); + builder.AddLine(new Vector2(534.992004F, -261.895996F)); + builder.AddLine(new Vector2(538.231995F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1242() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(527.395996F, -262.291992F)); + builder.AddCubicBezier(new Vector2(528.572021F, -262.79599F), new Vector2(529.580017F, -263.528015F), new Vector2(530.419983F, -264.488007F)); + builder.AddLine(new Vector2(528.33197F, -266.612F)); + builder.AddCubicBezier(new Vector2(527.755981F, -265.940002F), new Vector2(527.065979F, -265.436005F), new Vector2(526.262024F, -265.100006F)); + builder.AddCubicBezier(new Vector2(525.458008F, -264.764008F), new Vector2(524.575989F, -264.596008F), new Vector2(523.616028F, -264.596008F)); + builder.AddCubicBezier(new Vector2(522.463989F, -264.596008F), new Vector2(521.44397F, -264.84201F), new Vector2(520.55603F, -265.334015F)); + builder.AddCubicBezier(new Vector2(519.66803F, -265.825989F), new Vector2(518.984009F, -266.522003F), new Vector2(518.504028F, -267.421997F)); + builder.AddCubicBezier(new Vector2(518.023987F, -268.321991F), new Vector2(517.783997F, -269.372009F), new Vector2(517.783997F, -270.571991F)); + builder.AddCubicBezier(new Vector2(517.783997F, -271.747986F), new Vector2(518.012024F, -272.768005F), new Vector2(518.468018F, -273.631989F)); + builder.AddCubicBezier(new Vector2(518.924011F, -274.496002F), new Vector2(519.572021F, -275.167999F), new Vector2(520.411987F, -275.64801F)); + builder.AddCubicBezier(new Vector2(521.252014F, -276.127991F), new Vector2(522.223999F, -276.368011F), new Vector2(523.328003F, -276.368011F)); + builder.AddCubicBezier(new Vector2(524.383972F, -276.368011F), new Vector2(525.283997F, -276.145996F), new Vector2(526.028015F, -275.701996F)); + builder.AddCubicBezier(new Vector2(526.771973F, -275.257996F), new Vector2(527.348022F, -274.634003F), new Vector2(527.755981F, -273.829987F)); + builder.AddCubicBezier(new Vector2(528.164001F, -273.026001F), new Vector2(528.367981F, -272.048004F), new Vector2(528.367981F, -270.895996F)); + builder.AddLine(new Vector2(529.55603F, -271.940002F)); + builder.AddLine(new Vector2(516.848022F, -271.940002F)); + builder.AddLine(new Vector2(516.848022F, -269.23999F)); + builder.AddLine(new Vector2(531.283997F, -269.23999F)); + builder.AddCubicBezier(new Vector2(531.356018F, -269.575989F), new Vector2(531.403992F, -269.881989F), new Vector2(531.427979F, -270.15799F)); + builder.AddCubicBezier(new Vector2(531.452026F, -270.43399F), new Vector2(531.463989F, -270.691986F), new Vector2(531.463989F, -270.932007F)); + builder.AddCubicBezier(new Vector2(531.463989F, -272.563995F), new Vector2(531.122009F, -274.015991F), new Vector2(530.437988F, -275.287994F)); + builder.AddCubicBezier(new Vector2(529.754028F, -276.559998F), new Vector2(528.799988F, -277.556F), new Vector2(527.575989F, -278.276001F)); + builder.AddCubicBezier(new Vector2(526.35199F, -278.996002F), new Vector2(524.960022F, -279.355988F), new Vector2(523.400024F, -279.355988F)); + builder.AddCubicBezier(new Vector2(521.744019F, -279.355988F), new Vector2(520.25F, -278.966003F), new Vector2(518.91803F, -278.186005F)); + builder.AddCubicBezier(new Vector2(517.585999F, -277.406006F), new Vector2(516.530029F, -276.343994F), new Vector2(515.75F, -275F)); + builder.AddCubicBezier(new Vector2(514.969971F, -273.656006F), new Vector2(514.580017F, -272.144012F), new Vector2(514.580017F, -270.463989F)); + builder.AddCubicBezier(new Vector2(514.580017F, -268.76001F), new Vector2(514.976013F, -267.235992F), new Vector2(515.768005F, -265.891998F)); + builder.AddCubicBezier(new Vector2(516.559998F, -264.548004F), new Vector2(517.633972F, -263.485992F), new Vector2(518.98999F, -262.705994F)); + builder.AddCubicBezier(new Vector2(520.346008F, -261.925995F), new Vector2(521.888F, -261.536011F), new Vector2(523.616028F, -261.536011F)); + builder.AddCubicBezier(new Vector2(524.960022F, -261.536011F), new Vector2(526.219971F, -261.787994F), new Vector2(527.395996F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1243() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(513.067993F, -276.044006F)); + builder.AddLine(new Vector2(513.067993F, -278.996002F)); + builder.AddLine(new Vector2(501.403992F, -278.996002F)); + builder.AddLine(new Vector2(501.403992F, -276.044006F)); + builder.AddLine(new Vector2(513.067993F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(508.855988F, -261.895996F)); + builder.AddLine(new Vector2(508.855988F, -286.160004F)); + builder.AddLine(new Vector2(505.615997F, -286.160004F)); + builder.AddLine(new Vector2(505.615997F, -261.895996F)); + builder.AddLine(new Vector2(508.855988F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1244() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(497.641998F, -262.940002F)); + builder.AddCubicBezier(new Vector2(498.782013F, -263.876007F), new Vector2(499.35199F, -265.14801F), new Vector2(499.35199F, -266.756012F)); + builder.AddCubicBezier(new Vector2(499.35199F, -267.812012F), new Vector2(499.130005F, -268.664001F), new Vector2(498.686005F, -269.312012F)); + builder.AddCubicBezier(new Vector2(498.242004F, -269.959991F), new Vector2(497.671997F, -270.476013F), new Vector2(496.976013F, -270.859985F)); + builder.AddCubicBezier(new Vector2(496.279999F, -271.243988F), new Vector2(495.548004F, -271.549988F), new Vector2(494.779999F, -271.778015F)); + builder.AddCubicBezier(new Vector2(494.011993F, -272.006012F), new Vector2(493.273987F, -272.227997F), new Vector2(492.56601F, -272.444F)); + builder.AddCubicBezier(new Vector2(491.858002F, -272.660004F), new Vector2(491.287994F, -272.924011F), new Vector2(490.855988F, -273.235992F)); + builder.AddCubicBezier(new Vector2(490.424011F, -273.548004F), new Vector2(490.208008F, -273.992004F), new Vector2(490.208008F, -274.567993F)); + builder.AddCubicBezier(new Vector2(490.208008F, -275.119995F), new Vector2(490.45401F, -275.563995F), new Vector2(490.946014F, -275.899994F)); + builder.AddCubicBezier(new Vector2(491.437988F, -276.235992F), new Vector2(492.152008F, -276.403992F), new Vector2(493.088013F, -276.403992F)); + builder.AddCubicBezier(new Vector2(493.976013F, -276.403992F), new Vector2(494.768005F, -276.235992F), new Vector2(495.463989F, -275.899994F)); + builder.AddCubicBezier(new Vector2(496.160004F, -275.563995F), new Vector2(496.76001F, -275.084015F), new Vector2(497.264008F, -274.459991F)); + builder.AddLine(new Vector2(499.35199F, -276.548004F)); + builder.AddCubicBezier(new Vector2(498.679993F, -277.484009F), new Vector2(497.821991F, -278.186005F), new Vector2(496.778015F, -278.653992F)); + builder.AddCubicBezier(new Vector2(495.734009F, -279.122009F), new Vector2(494.540009F, -279.355988F), new Vector2(493.196014F, -279.355988F)); + builder.AddCubicBezier(new Vector2(491.924011F, -279.355988F), new Vector2(490.832001F, -279.152008F), new Vector2(489.920013F, -278.743988F)); + builder.AddCubicBezier(new Vector2(489.007996F, -278.335999F), new Vector2(488.306F, -277.753998F), new Vector2(487.813995F, -276.997986F)); + builder.AddCubicBezier(new Vector2(487.321991F, -276.242004F), new Vector2(487.075989F, -275.347992F), new Vector2(487.075989F, -274.31601F)); + builder.AddCubicBezier(new Vector2(487.075989F, -273.283997F), new Vector2(487.298004F, -272.450012F), new Vector2(487.742004F, -271.813995F)); + builder.AddCubicBezier(new Vector2(488.186005F, -271.178009F), new Vector2(488.756012F, -270.679993F), new Vector2(489.451996F, -270.320007F)); + builder.AddCubicBezier(new Vector2(490.14801F, -269.959991F), new Vector2(490.885986F, -269.671997F), new Vector2(491.665985F, -269.455994F)); + builder.AddCubicBezier(new Vector2(492.446014F, -269.23999F), new Vector2(493.18399F, -269.018005F), new Vector2(493.880005F, -268.790009F)); + builder.AddCubicBezier(new Vector2(494.575989F, -268.562012F), new Vector2(495.145996F, -268.273987F), new Vector2(495.589996F, -267.925995F)); + builder.AddCubicBezier(new Vector2(496.033997F, -267.578003F), new Vector2(496.256012F, -267.09201F), new Vector2(496.256012F, -266.467987F)); + builder.AddCubicBezier(new Vector2(496.256012F, -265.843994F), new Vector2(495.980011F, -265.358002F), new Vector2(495.428009F, -265.01001F)); + builder.AddCubicBezier(new Vector2(494.876007F, -264.661987F), new Vector2(494.096008F, -264.488007F), new Vector2(493.088013F, -264.488007F)); + builder.AddCubicBezier(new Vector2(492.079987F, -264.488007F), new Vector2(491.167999F, -264.674011F), new Vector2(490.35199F, -265.04599F)); + builder.AddCubicBezier(new Vector2(489.536011F, -265.417999F), new Vector2(488.81601F, -265.988007F), new Vector2(488.191986F, -266.756012F)); + builder.AddLine(new Vector2(486.104004F, -264.667999F)); + builder.AddCubicBezier(new Vector2(486.631989F, -264.019989F), new Vector2(487.25F, -263.462006F), new Vector2(487.958008F, -262.993988F)); + builder.AddCubicBezier(new Vector2(488.665985F, -262.526001F), new Vector2(489.451996F, -262.165985F), new Vector2(490.31601F, -261.914001F)); + builder.AddCubicBezier(new Vector2(491.179993F, -261.661987F), new Vector2(492.09201F, -261.536011F), new Vector2(493.052002F, -261.536011F)); + builder.AddCubicBezier(new Vector2(494.971985F, -261.536011F), new Vector2(496.502014F, -262.003998F), new Vector2(497.641998F, -262.940002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1245() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(482.899994F, -261.895996F)); + builder.AddLine(new Vector2(482.899994F, -278.996002F)); + builder.AddLine(new Vector2(479.623993F, -278.996002F)); + builder.AddLine(new Vector2(479.623993F, -274.820007F)); + builder.AddLine(new Vector2(480.235992F, -270.679993F)); + builder.AddLine(new Vector2(479.623993F, -266.503998F)); + builder.AddLine(new Vector2(479.623993F, -261.895996F)); + builder.AddLine(new Vector2(482.899994F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(471.596008F, -265.35199F)); + builder.AddCubicBezier(new Vector2(470.756012F, -265.855988F), new Vector2(470.10199F, -266.54599F), new Vector2(469.634003F, -267.421997F)); + builder.AddCubicBezier(new Vector2(469.165985F, -268.298004F), new Vector2(468.932007F, -269.312012F), new Vector2(468.932007F, -270.463989F)); + builder.AddCubicBezier(new Vector2(468.932007F, -271.59201F), new Vector2(469.165985F, -272.593994F), new Vector2(469.634003F, -273.470001F)); + builder.AddCubicBezier(new Vector2(470.10199F, -274.346008F), new Vector2(470.75F, -275.036011F), new Vector2(471.578003F, -275.540009F)); + builder.AddCubicBezier(new Vector2(472.406006F, -276.044006F), new Vector2(473.359985F, -276.29599F), new Vector2(474.440002F, -276.29599F)); + builder.AddCubicBezier(new Vector2(475.519989F, -276.29599F), new Vector2(476.462006F, -276.049988F), new Vector2(477.265991F, -275.558014F)); + builder.AddCubicBezier(new Vector2(478.070007F, -275.06601F), new Vector2(478.700012F, -274.376007F), new Vector2(479.156006F, -273.488007F)); + builder.AddCubicBezier(new Vector2(479.612F, -272.600006F), new Vector2(479.839996F, -271.579987F), new Vector2(479.839996F, -270.428009F)); + builder.AddCubicBezier(new Vector2(479.839996F, -268.723999F), new Vector2(479.347992F, -267.325989F), new Vector2(478.364014F, -266.234009F)); + builder.AddCubicBezier(new Vector2(477.380005F, -265.141998F), new Vector2(476.084015F, -264.596008F), new Vector2(474.476013F, -264.596008F)); + builder.AddCubicBezier(new Vector2(473.395996F, -264.596008F), new Vector2(472.436005F, -264.847992F), new Vector2(471.596008F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(477.428009F, -262.346008F)); + builder.AddCubicBezier(new Vector2(478.459991F, -262.885986F), new Vector2(479.282013F, -263.635986F), new Vector2(479.894012F, -264.596008F)); + builder.AddCubicBezier(new Vector2(480.506012F, -265.556F), new Vector2(480.847992F, -266.64801F), new Vector2(480.920013F, -267.872009F)); + builder.AddLine(new Vector2(480.920013F, -273.019989F)); + builder.AddCubicBezier(new Vector2(480.847992F, -274.268005F), new Vector2(480.5F, -275.365997F), new Vector2(479.876007F, -276.313995F)); + builder.AddCubicBezier(new Vector2(479.252014F, -277.261993F), new Vector2(478.429993F, -278.006012F), new Vector2(477.410004F, -278.54599F)); + builder.AddCubicBezier(new Vector2(476.390015F, -279.085999F), new Vector2(475.231995F, -279.355988F), new Vector2(473.936005F, -279.355988F)); + builder.AddCubicBezier(new Vector2(472.35199F, -279.355988F), new Vector2(470.929993F, -278.959991F), new Vector2(469.670013F, -278.167999F)); + builder.AddCubicBezier(new Vector2(468.410004F, -277.376007F), new Vector2(467.414001F, -276.308014F), new Vector2(466.682007F, -274.963989F)); + builder.AddCubicBezier(new Vector2(465.950012F, -273.619995F), new Vector2(465.584015F, -272.108002F), new Vector2(465.584015F, -270.428009F)); + builder.AddCubicBezier(new Vector2(465.584015F, -268.747986F), new Vector2(465.950012F, -267.235992F), new Vector2(466.682007F, -265.891998F)); + builder.AddCubicBezier(new Vector2(467.414001F, -264.548004F), new Vector2(468.410004F, -263.485992F), new Vector2(469.670013F, -262.705994F)); + builder.AddCubicBezier(new Vector2(470.929993F, -261.925995F), new Vector2(472.35199F, -261.536011F), new Vector2(473.936005F, -261.536011F)); + builder.AddCubicBezier(new Vector2(475.231995F, -261.536011F), new Vector2(476.395996F, -261.806F), new Vector2(477.428009F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1246() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(460.885986F, -262.291992F)); + builder.AddCubicBezier(new Vector2(462.026001F, -262.79599F), new Vector2(462.992004F, -263.503998F), new Vector2(463.783997F, -264.415985F)); + builder.AddLine(new Vector2(461.660004F, -266.575989F)); + builder.AddCubicBezier(new Vector2(461.108002F, -265.951996F), new Vector2(460.45401F, -265.477997F), new Vector2(459.697998F, -265.153992F)); + builder.AddCubicBezier(new Vector2(458.941986F, -264.829987F), new Vector2(458.108002F, -264.667999F), new Vector2(457.196014F, -264.667999F)); + builder.AddCubicBezier(new Vector2(456.115997F, -264.667999F), new Vector2(455.156006F, -264.920013F), new Vector2(454.31601F, -265.424011F)); + builder.AddCubicBezier(new Vector2(453.476013F, -265.928009F), new Vector2(452.81601F, -266.612F), new Vector2(452.335999F, -267.476013F)); + builder.AddCubicBezier(new Vector2(451.855988F, -268.339996F), new Vector2(451.615997F, -269.335999F), new Vector2(451.615997F, -270.463989F)); + builder.AddCubicBezier(new Vector2(451.615997F, -271.59201F), new Vector2(451.855988F, -272.588013F), new Vector2(452.335999F, -273.451996F)); + builder.AddCubicBezier(new Vector2(452.81601F, -274.31601F), new Vector2(453.476013F, -274.993988F), new Vector2(454.31601F, -275.485992F)); + builder.AddCubicBezier(new Vector2(455.156006F, -275.977997F), new Vector2(456.115997F, -276.223999F), new Vector2(457.196014F, -276.223999F)); + builder.AddCubicBezier(new Vector2(458.084015F, -276.223999F), new Vector2(458.911987F, -276.062012F), new Vector2(459.679993F, -275.738007F)); + builder.AddCubicBezier(new Vector2(460.447998F, -275.414001F), new Vector2(461.096008F, -274.940002F), new Vector2(461.623993F, -274.31601F)); + builder.AddLine(new Vector2(463.783997F, -276.476013F)); + builder.AddCubicBezier(new Vector2(462.967987F, -277.411987F), new Vector2(461.996002F, -278.126007F), new Vector2(460.868011F, -278.618011F)); + builder.AddCubicBezier(new Vector2(459.73999F, -279.109985F), new Vector2(458.515991F, -279.355988F), new Vector2(457.196014F, -279.355988F)); + builder.AddCubicBezier(new Vector2(455.515991F, -279.355988F), new Vector2(453.997986F, -278.966003F), new Vector2(452.641998F, -278.186005F)); + builder.AddCubicBezier(new Vector2(451.286011F, -277.406006F), new Vector2(450.217987F, -276.343994F), new Vector2(449.437988F, -275F)); + builder.AddCubicBezier(new Vector2(448.65799F, -273.656006F), new Vector2(448.268005F, -272.144012F), new Vector2(448.268005F, -270.463989F)); + builder.AddCubicBezier(new Vector2(448.268005F, -268.808014F), new Vector2(448.65799F, -267.302002F), new Vector2(449.437988F, -265.946014F)); + builder.AddCubicBezier(new Vector2(450.217987F, -264.589996F), new Vector2(451.286011F, -263.515991F), new Vector2(452.641998F, -262.723999F)); + builder.AddCubicBezier(new Vector2(453.997986F, -261.932007F), new Vector2(455.515991F, -261.536011F), new Vector2(457.196014F, -261.536011F)); + builder.AddCubicBezier(new Vector2(458.515991F, -261.536011F), new Vector2(459.746002F, -261.787994F), new Vector2(460.885986F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1247() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(444.667999F, -287.600006F)); + builder.AddLine(new Vector2(441.391998F, -287.600006F)); + builder.AddLine(new Vector2(441.391998F, -274.820007F)); + builder.AddLine(new Vector2(442.003998F, -270.679993F)); + builder.AddLine(new Vector2(441.391998F, -266.503998F)); + builder.AddLine(new Vector2(441.391998F, -261.895996F)); + builder.AddLine(new Vector2(444.667999F, -261.895996F)); + builder.AddLine(new Vector2(444.667999F, -287.600006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(433.346008F, -265.334015F)); + builder.AddCubicBezier(new Vector2(432.518005F, -265.825989F), new Vector2(431.869995F, -266.515991F), new Vector2(431.402008F, -267.403992F)); + builder.AddCubicBezier(new Vector2(430.93399F, -268.291992F), new Vector2(430.700012F, -269.312012F), new Vector2(430.700012F, -270.463989F)); + builder.AddCubicBezier(new Vector2(430.700012F, -271.615997F), new Vector2(430.93399F, -272.630005F), new Vector2(431.402008F, -273.506012F)); + builder.AddCubicBezier(new Vector2(431.869995F, -274.381989F), new Vector2(432.511993F, -275.06601F), new Vector2(433.328003F, -275.558014F)); + builder.AddCubicBezier(new Vector2(434.144012F, -276.049988F), new Vector2(435.09201F, -276.29599F), new Vector2(436.171997F, -276.29599F)); + builder.AddCubicBezier(new Vector2(437.252014F, -276.29599F), new Vector2(438.200012F, -276.044006F), new Vector2(439.015991F, -275.540009F)); + builder.AddCubicBezier(new Vector2(439.832001F, -275.036011F), new Vector2(440.467987F, -274.346008F), new Vector2(440.924011F, -273.470001F)); + builder.AddCubicBezier(new Vector2(441.380005F, -272.593994F), new Vector2(441.608002F, -271.579987F), new Vector2(441.608002F, -270.428009F)); + builder.AddCubicBezier(new Vector2(441.608002F, -269.299988F), new Vector2(441.380005F, -268.298004F), new Vector2(440.924011F, -267.421997F)); + builder.AddCubicBezier(new Vector2(440.467987F, -266.54599F), new Vector2(439.832001F, -265.855988F), new Vector2(439.015991F, -265.35199F)); + builder.AddCubicBezier(new Vector2(438.200012F, -264.847992F), new Vector2(437.252014F, -264.596008F), new Vector2(436.171997F, -264.596008F)); + builder.AddCubicBezier(new Vector2(435.115997F, -264.596008F), new Vector2(434.174011F, -264.84201F), new Vector2(433.346008F, -265.334015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(439.160004F, -262.346008F)); + builder.AddCubicBezier(new Vector2(440.191986F, -262.885986F), new Vector2(441.019989F, -263.635986F), new Vector2(441.644012F, -264.596008F)); + builder.AddCubicBezier(new Vector2(442.268005F, -265.556F), new Vector2(442.615997F, -266.64801F), new Vector2(442.687988F, -267.872009F)); + builder.AddLine(new Vector2(442.687988F, -273.019989F)); + builder.AddCubicBezier(new Vector2(442.615997F, -274.268005F), new Vector2(442.261993F, -275.365997F), new Vector2(441.626007F, -276.313995F)); + builder.AddCubicBezier(new Vector2(440.98999F, -277.261993F), new Vector2(440.156006F, -278.006012F), new Vector2(439.123993F, -278.54599F)); + builder.AddCubicBezier(new Vector2(438.09201F, -279.085999F), new Vector2(436.928009F, -279.355988F), new Vector2(435.631989F, -279.355988F)); + builder.AddCubicBezier(new Vector2(434.071991F, -279.355988F), new Vector2(432.667999F, -278.959991F), new Vector2(431.420013F, -278.167999F)); + builder.AddCubicBezier(new Vector2(430.171997F, -277.376007F), new Vector2(429.182007F, -276.308014F), new Vector2(428.450012F, -274.963989F)); + builder.AddCubicBezier(new Vector2(427.717987F, -273.619995F), new Vector2(427.35199F, -272.108002F), new Vector2(427.35199F, -270.428009F)); + builder.AddCubicBezier(new Vector2(427.35199F, -268.747986F), new Vector2(427.717987F, -267.235992F), new Vector2(428.450012F, -265.891998F)); + builder.AddCubicBezier(new Vector2(429.182007F, -264.548004F), new Vector2(430.171997F, -263.485992F), new Vector2(431.420013F, -262.705994F)); + builder.AddCubicBezier(new Vector2(432.667999F, -261.925995F), new Vector2(434.071991F, -261.536011F), new Vector2(435.631989F, -261.536011F)); + builder.AddCubicBezier(new Vector2(436.951996F, -261.536011F), new Vector2(438.127991F, -261.806F), new Vector2(439.160004F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1248() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(423.716003F, -261.895996F)); + builder.AddLine(new Vector2(423.716003F, -278.996002F)); + builder.AddLine(new Vector2(420.440002F, -278.996002F)); + builder.AddLine(new Vector2(420.440002F, -274.820007F)); + builder.AddLine(new Vector2(421.052002F, -270.679993F)); + builder.AddLine(new Vector2(420.440002F, -266.503998F)); + builder.AddLine(new Vector2(420.440002F, -261.895996F)); + builder.AddLine(new Vector2(423.716003F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(412.411987F, -265.35199F)); + builder.AddCubicBezier(new Vector2(411.571991F, -265.855988F), new Vector2(410.917999F, -266.54599F), new Vector2(410.450012F, -267.421997F)); + builder.AddCubicBezier(new Vector2(409.981995F, -268.298004F), new Vector2(409.747986F, -269.312012F), new Vector2(409.747986F, -270.463989F)); + builder.AddCubicBezier(new Vector2(409.747986F, -271.59201F), new Vector2(409.981995F, -272.593994F), new Vector2(410.450012F, -273.470001F)); + builder.AddCubicBezier(new Vector2(410.917999F, -274.346008F), new Vector2(411.56601F, -275.036011F), new Vector2(412.394012F, -275.540009F)); + builder.AddCubicBezier(new Vector2(413.221985F, -276.044006F), new Vector2(414.175995F, -276.29599F), new Vector2(415.256012F, -276.29599F)); + builder.AddCubicBezier(new Vector2(416.335999F, -276.29599F), new Vector2(417.278015F, -276.049988F), new Vector2(418.082001F, -275.558014F)); + builder.AddCubicBezier(new Vector2(418.885986F, -275.06601F), new Vector2(419.515991F, -274.376007F), new Vector2(419.971985F, -273.488007F)); + builder.AddCubicBezier(new Vector2(420.428009F, -272.600006F), new Vector2(420.656006F, -271.579987F), new Vector2(420.656006F, -270.428009F)); + builder.AddCubicBezier(new Vector2(420.656006F, -268.723999F), new Vector2(420.164001F, -267.325989F), new Vector2(419.179993F, -266.234009F)); + builder.AddCubicBezier(new Vector2(418.196014F, -265.141998F), new Vector2(416.899994F, -264.596008F), new Vector2(415.291992F, -264.596008F)); + builder.AddCubicBezier(new Vector2(414.212006F, -264.596008F), new Vector2(413.252014F, -264.847992F), new Vector2(412.411987F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(418.243988F, -262.346008F)); + builder.AddCubicBezier(new Vector2(419.276001F, -262.885986F), new Vector2(420.097992F, -263.635986F), new Vector2(420.709991F, -264.596008F)); + builder.AddCubicBezier(new Vector2(421.321991F, -265.556F), new Vector2(421.664001F, -266.64801F), new Vector2(421.735992F, -267.872009F)); + builder.AddLine(new Vector2(421.735992F, -273.019989F)); + builder.AddCubicBezier(new Vector2(421.664001F, -274.268005F), new Vector2(421.31601F, -275.365997F), new Vector2(420.691986F, -276.313995F)); + builder.AddCubicBezier(new Vector2(420.067993F, -277.261993F), new Vector2(419.246002F, -278.006012F), new Vector2(418.226013F, -278.54599F)); + builder.AddCubicBezier(new Vector2(417.205994F, -279.085999F), new Vector2(416.048004F, -279.355988F), new Vector2(414.752014F, -279.355988F)); + builder.AddCubicBezier(new Vector2(413.167999F, -279.355988F), new Vector2(411.746002F, -278.959991F), new Vector2(410.485992F, -278.167999F)); + builder.AddCubicBezier(new Vector2(409.226013F, -277.376007F), new Vector2(408.230011F, -276.308014F), new Vector2(407.497986F, -274.963989F)); + builder.AddCubicBezier(new Vector2(406.765991F, -273.619995F), new Vector2(406.399994F, -272.108002F), new Vector2(406.399994F, -270.428009F)); + builder.AddCubicBezier(new Vector2(406.399994F, -268.747986F), new Vector2(406.765991F, -267.235992F), new Vector2(407.497986F, -265.891998F)); + builder.AddCubicBezier(new Vector2(408.230011F, -264.548004F), new Vector2(409.226013F, -263.485992F), new Vector2(410.485992F, -262.705994F)); + builder.AddCubicBezier(new Vector2(411.746002F, -261.925995F), new Vector2(413.167999F, -261.536011F), new Vector2(414.752014F, -261.536011F)); + builder.AddCubicBezier(new Vector2(416.048004F, -261.536011F), new Vector2(417.212006F, -261.806F), new Vector2(418.243988F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1249() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(392.071991F, -265.424011F)); + builder.AddCubicBezier(new Vector2(391.231995F, -265.928009F), new Vector2(390.571991F, -266.618011F), new Vector2(390.09201F, -267.493988F)); + builder.AddCubicBezier(new Vector2(389.612F, -268.369995F), new Vector2(389.372009F, -269.372009F), new Vector2(389.372009F, -270.5F)); + builder.AddCubicBezier(new Vector2(389.372009F, -271.604004F), new Vector2(389.612F, -272.588013F), new Vector2(390.09201F, -273.451996F)); + builder.AddCubicBezier(new Vector2(390.571991F, -274.31601F), new Vector2(391.231995F, -274.993988F), new Vector2(392.071991F, -275.485992F)); + builder.AddCubicBezier(new Vector2(392.911987F, -275.977997F), new Vector2(393.859985F, -276.223999F), new Vector2(394.915985F, -276.223999F)); + builder.AddCubicBezier(new Vector2(396.019989F, -276.223999F), new Vector2(396.985992F, -275.977997F), new Vector2(397.813995F, -275.485992F)); + builder.AddCubicBezier(new Vector2(398.641998F, -274.993988F), new Vector2(399.302002F, -274.31601F), new Vector2(399.794006F, -273.451996F)); + builder.AddCubicBezier(new Vector2(400.286011F, -272.588013F), new Vector2(400.532013F, -271.604004F), new Vector2(400.532013F, -270.5F)); + builder.AddCubicBezier(new Vector2(400.532013F, -269.372009F), new Vector2(400.291992F, -268.369995F), new Vector2(399.812012F, -267.493988F)); + builder.AddCubicBezier(new Vector2(399.332001F, -266.618011F), new Vector2(398.671997F, -265.928009F), new Vector2(397.832001F, -265.424011F)); + builder.AddCubicBezier(new Vector2(396.992004F, -264.920013F), new Vector2(396.019989F, -264.667999F), new Vector2(394.915985F, -264.667999F)); + builder.AddCubicBezier(new Vector2(393.859985F, -264.667999F), new Vector2(392.911987F, -264.920013F), new Vector2(392.071991F, -265.424011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(399.470001F, -262.723999F)); + builder.AddCubicBezier(new Vector2(400.825989F, -263.515991F), new Vector2(401.899994F, -264.589996F), new Vector2(402.691986F, -265.946014F)); + builder.AddCubicBezier(new Vector2(403.484009F, -267.302002F), new Vector2(403.880005F, -268.820007F), new Vector2(403.880005F, -270.5F)); + builder.AddCubicBezier(new Vector2(403.880005F, -272.156006F), new Vector2(403.484009F, -273.656006F), new Vector2(402.691986F, -275F)); + builder.AddCubicBezier(new Vector2(401.899994F, -276.343994F), new Vector2(400.825989F, -277.406006F), new Vector2(399.470001F, -278.186005F)); + builder.AddCubicBezier(new Vector2(398.114014F, -278.966003F), new Vector2(396.596008F, -279.355988F), new Vector2(394.915985F, -279.355988F)); + builder.AddCubicBezier(new Vector2(393.26001F, -279.355988F), new Vector2(391.76001F, -278.959991F), new Vector2(390.415985F, -278.167999F)); + builder.AddCubicBezier(new Vector2(389.071991F, -277.376007F), new Vector2(388.003998F, -276.313995F), new Vector2(387.212006F, -274.981995F)); + builder.AddCubicBezier(new Vector2(386.420013F, -273.649994F), new Vector2(386.023987F, -272.156006F), new Vector2(386.023987F, -270.5F)); + builder.AddCubicBezier(new Vector2(386.023987F, -268.820007F), new Vector2(386.420013F, -267.302002F), new Vector2(387.212006F, -265.946014F)); + builder.AddCubicBezier(new Vector2(388.003998F, -264.589996F), new Vector2(389.071991F, -263.515991F), new Vector2(390.415985F, -262.723999F)); + builder.AddCubicBezier(new Vector2(391.76001F, -261.932007F), new Vector2(393.26001F, -261.536011F), new Vector2(394.915985F, -261.536011F)); + builder.AddCubicBezier(new Vector2(396.596008F, -261.536011F), new Vector2(398.114014F, -261.932007F), new Vector2(399.470001F, -262.723999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1250() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(377.635986F, -275.144012F)); + builder.AddCubicBezier(new Vector2(378.403992F, -275.911987F), new Vector2(379.388F, -276.29599F), new Vector2(380.588013F, -276.29599F)); + builder.AddCubicBezier(new Vector2(381.164001F, -276.29599F), new Vector2(381.667999F, -276.212006F), new Vector2(382.100006F, -276.044006F)); + builder.AddCubicBezier(new Vector2(382.532013F, -275.876007F), new Vector2(382.928009F, -275.600006F), new Vector2(383.287994F, -275.216003F)); + builder.AddLine(new Vector2(385.411987F, -277.411987F)); + builder.AddCubicBezier(new Vector2(384.812012F, -278.108002F), new Vector2(384.164001F, -278.605988F), new Vector2(383.467987F, -278.906006F)); + builder.AddCubicBezier(new Vector2(382.772003F, -279.205994F), new Vector2(381.992004F, -279.355988F), new Vector2(381.127991F, -279.355988F)); + builder.AddCubicBezier(new Vector2(379.231995F, -279.355988F), new Vector2(377.779999F, -278.708008F), new Vector2(376.772003F, -277.411987F)); + builder.AddCubicBezier(new Vector2(375.764008F, -276.115997F), new Vector2(375.26001F, -274.376007F), new Vector2(375.26001F, -272.191986F)); + builder.AddLine(new Vector2(376.484009F, -271.615997F)); + builder.AddCubicBezier(new Vector2(376.484009F, -273.200012F), new Vector2(376.868011F, -274.376007F), new Vector2(377.635986F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(376.484009F, -261.895996F)); + builder.AddLine(new Vector2(376.484009F, -278.996002F)); + builder.AddLine(new Vector2(373.243988F, -278.996002F)); + builder.AddLine(new Vector2(373.243988F, -261.895996F)); + builder.AddLine(new Vector2(376.484009F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1251() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(357.925995F, -265.35199F)); + builder.AddCubicBezier(new Vector2(357.097992F, -265.855988F), new Vector2(356.462006F, -266.54599F), new Vector2(356.018005F, -267.421997F)); + builder.AddCubicBezier(new Vector2(355.574005F, -268.298004F), new Vector2(355.35199F, -269.299988F), new Vector2(355.35199F, -270.428009F)); + builder.AddCubicBezier(new Vector2(355.35199F, -271.579987F), new Vector2(355.579987F, -272.593994F), new Vector2(356.036011F, -273.470001F)); + builder.AddCubicBezier(new Vector2(356.492004F, -274.346008F), new Vector2(357.127991F, -275.036011F), new Vector2(357.944F, -275.540009F)); + builder.AddCubicBezier(new Vector2(358.76001F, -276.044006F), new Vector2(359.696014F, -276.29599F), new Vector2(360.752014F, -276.29599F)); + builder.AddCubicBezier(new Vector2(361.832001F, -276.29599F), new Vector2(362.779999F, -276.044006F), new Vector2(363.596008F, -275.540009F)); + builder.AddCubicBezier(new Vector2(364.411987F, -275.036011F), new Vector2(365.053986F, -274.346008F), new Vector2(365.522003F, -273.470001F)); + builder.AddCubicBezier(new Vector2(365.98999F, -272.593994F), new Vector2(366.223999F, -271.59201F), new Vector2(366.223999F, -270.463989F)); + builder.AddCubicBezier(new Vector2(366.223999F, -269.312012F), new Vector2(365.98999F, -268.298004F), new Vector2(365.522003F, -267.421997F)); + builder.AddCubicBezier(new Vector2(365.053986F, -266.54599F), new Vector2(364.411987F, -265.855988F), new Vector2(363.596008F, -265.35199F)); + builder.AddCubicBezier(new Vector2(362.779999F, -264.847992F), new Vector2(361.832001F, -264.596008F), new Vector2(360.752014F, -264.596008F)); + builder.AddCubicBezier(new Vector2(359.696014F, -264.596008F), new Vector2(358.753998F, -264.847992F), new Vector2(357.925995F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(355.532013F, -261.895996F)); + builder.AddLine(new Vector2(355.532013F, -266.503998F)); + builder.AddLine(new Vector2(354.920013F, -270.679993F)); + builder.AddLine(new Vector2(355.532013F, -274.820007F)); + builder.AddLine(new Vector2(355.532013F, -287.600006F)); + builder.AddLine(new Vector2(352.291992F, -287.600006F)); + builder.AddLine(new Vector2(352.291992F, -261.895996F)); + builder.AddLine(new Vector2(355.532013F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(365.522003F, -262.705994F)); + builder.AddCubicBezier(new Vector2(366.782013F, -263.485992F), new Vector2(367.772003F, -264.548004F), new Vector2(368.492004F, -265.891998F)); + builder.AddCubicBezier(new Vector2(369.212006F, -267.235992F), new Vector2(369.571991F, -268.747986F), new Vector2(369.571991F, -270.428009F)); + builder.AddCubicBezier(new Vector2(369.571991F, -272.108002F), new Vector2(369.212006F, -273.619995F), new Vector2(368.492004F, -274.963989F)); + builder.AddCubicBezier(new Vector2(367.772003F, -276.308014F), new Vector2(366.782013F, -277.376007F), new Vector2(365.522003F, -278.167999F)); + builder.AddCubicBezier(new Vector2(364.261993F, -278.959991F), new Vector2(362.85199F, -279.355988F), new Vector2(361.291992F, -279.355988F)); + builder.AddCubicBezier(new Vector2(360.019989F, -279.355988F), new Vector2(358.862F, -279.085999F), new Vector2(357.817993F, -278.54599F)); + builder.AddCubicBezier(new Vector2(356.773987F, -278.006012F), new Vector2(355.93399F, -277.261993F), new Vector2(355.298004F, -276.313995F)); + builder.AddCubicBezier(new Vector2(354.661987F, -275.365997F), new Vector2(354.308014F, -274.268005F), new Vector2(354.235992F, -273.019989F)); + builder.AddLine(new Vector2(354.235992F, -267.872009F)); + builder.AddCubicBezier(new Vector2(354.308014F, -266.64801F), new Vector2(354.656006F, -265.556F), new Vector2(355.279999F, -264.596008F)); + builder.AddCubicBezier(new Vector2(355.903992F, -263.635986F), new Vector2(356.738007F, -262.885986F), new Vector2(357.782013F, -262.346008F)); + builder.AddCubicBezier(new Vector2(358.825989F, -261.806F), new Vector2(359.996002F, -261.536011F), new Vector2(361.291992F, -261.536011F)); + builder.AddCubicBezier(new Vector2(362.85199F, -261.536011F), new Vector2(364.261993F, -261.925995F), new Vector2(365.522003F, -262.705994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1252() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(331.268005F, -261.895996F)); + builder.AddLine(new Vector2(341.347992F, -286.880005F)); + builder.AddLine(new Vector2(337.712006F, -286.880005F)); + builder.AddLine(new Vector2(329.395996F, -265.747986F)); + builder.AddLine(new Vector2(330.727997F, -265.747986F)); + builder.AddLine(new Vector2(322.484009F, -286.880005F)); + builder.AddLine(new Vector2(318.776001F, -286.880005F)); + builder.AddLine(new Vector2(328.820007F, -261.895996F)); + builder.AddLine(new Vector2(331.268005F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1253() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(318.09201F, -283.783997F)); + builder.AddLine(new Vector2(318.09201F, -286.880005F)); + builder.AddLine(new Vector2(297.752014F, -286.880005F)); + builder.AddLine(new Vector2(297.752014F, -283.783997F)); + builder.AddLine(new Vector2(318.09201F, -283.783997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(309.631989F, -261.895996F)); + builder.AddLine(new Vector2(309.631989F, -286.160004F)); + builder.AddLine(new Vector2(306.212006F, -286.160004F)); + builder.AddLine(new Vector2(306.212006F, -261.895996F)); + builder.AddLine(new Vector2(309.631989F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1254() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(287.455994F, -287.600006F)); + builder.AddLine(new Vector2(284.179993F, -287.600006F)); + builder.AddLine(new Vector2(284.179993F, -274.820007F)); + builder.AddLine(new Vector2(284.791992F, -270.679993F)); + builder.AddLine(new Vector2(284.179993F, -266.503998F)); + builder.AddLine(new Vector2(284.179993F, -261.895996F)); + builder.AddLine(new Vector2(287.455994F, -261.895996F)); + builder.AddLine(new Vector2(287.455994F, -287.600006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(276.134003F, -265.334015F)); + builder.AddCubicBezier(new Vector2(275.306F, -265.825989F), new Vector2(274.65799F, -266.515991F), new Vector2(274.190002F, -267.403992F)); + builder.AddCubicBezier(new Vector2(273.721985F, -268.291992F), new Vector2(273.488007F, -269.312012F), new Vector2(273.488007F, -270.463989F)); + builder.AddCubicBezier(new Vector2(273.488007F, -271.615997F), new Vector2(273.721985F, -272.630005F), new Vector2(274.190002F, -273.506012F)); + builder.AddCubicBezier(new Vector2(274.65799F, -274.381989F), new Vector2(275.299988F, -275.06601F), new Vector2(276.115997F, -275.558014F)); + builder.AddCubicBezier(new Vector2(276.932007F, -276.049988F), new Vector2(277.880005F, -276.29599F), new Vector2(278.959991F, -276.29599F)); + builder.AddCubicBezier(new Vector2(280.040009F, -276.29599F), new Vector2(280.988007F, -276.044006F), new Vector2(281.803986F, -275.540009F)); + builder.AddCubicBezier(new Vector2(282.619995F, -275.036011F), new Vector2(283.256012F, -274.346008F), new Vector2(283.712006F, -273.470001F)); + builder.AddCubicBezier(new Vector2(284.167999F, -272.593994F), new Vector2(284.395996F, -271.579987F), new Vector2(284.395996F, -270.428009F)); + builder.AddCubicBezier(new Vector2(284.395996F, -269.299988F), new Vector2(284.167999F, -268.298004F), new Vector2(283.712006F, -267.421997F)); + builder.AddCubicBezier(new Vector2(283.256012F, -266.54599F), new Vector2(282.619995F, -265.855988F), new Vector2(281.803986F, -265.35199F)); + builder.AddCubicBezier(new Vector2(280.988007F, -264.847992F), new Vector2(280.040009F, -264.596008F), new Vector2(278.959991F, -264.596008F)); + builder.AddCubicBezier(new Vector2(277.903992F, -264.596008F), new Vector2(276.962006F, -264.84201F), new Vector2(276.134003F, -265.334015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(281.947998F, -262.346008F)); + builder.AddCubicBezier(new Vector2(282.980011F, -262.885986F), new Vector2(283.808014F, -263.635986F), new Vector2(284.432007F, -264.596008F)); + builder.AddCubicBezier(new Vector2(285.056F, -265.556F), new Vector2(285.403992F, -266.64801F), new Vector2(285.476013F, -267.872009F)); + builder.AddLine(new Vector2(285.476013F, -273.019989F)); + builder.AddCubicBezier(new Vector2(285.403992F, -274.268005F), new Vector2(285.049988F, -275.365997F), new Vector2(284.414001F, -276.313995F)); + builder.AddCubicBezier(new Vector2(283.778015F, -277.261993F), new Vector2(282.944F, -278.006012F), new Vector2(281.911987F, -278.54599F)); + builder.AddCubicBezier(new Vector2(280.880005F, -279.085999F), new Vector2(279.716003F, -279.355988F), new Vector2(278.420013F, -279.355988F)); + builder.AddCubicBezier(new Vector2(276.859985F, -279.355988F), new Vector2(275.455994F, -278.959991F), new Vector2(274.208008F, -278.167999F)); + builder.AddCubicBezier(new Vector2(272.959991F, -277.376007F), new Vector2(271.970001F, -276.308014F), new Vector2(271.238007F, -274.963989F)); + builder.AddCubicBezier(new Vector2(270.506012F, -273.619995F), new Vector2(270.140015F, -272.108002F), new Vector2(270.140015F, -270.428009F)); + builder.AddCubicBezier(new Vector2(270.140015F, -268.747986F), new Vector2(270.506012F, -267.235992F), new Vector2(271.238007F, -265.891998F)); + builder.AddCubicBezier(new Vector2(271.970001F, -264.548004F), new Vector2(272.959991F, -263.485992F), new Vector2(274.208008F, -262.705994F)); + builder.AddCubicBezier(new Vector2(275.455994F, -261.925995F), new Vector2(276.859985F, -261.536011F), new Vector2(278.420013F, -261.536011F)); + builder.AddCubicBezier(new Vector2(279.73999F, -261.536011F), new Vector2(280.915985F, -261.806F), new Vector2(281.947998F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1255() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(254.731995F, -261.895996F)); + builder.AddLine(new Vector2(254.731995F, -278.996002F)); + builder.AddLine(new Vector2(251.492004F, -278.996002F)); + builder.AddLine(new Vector2(251.492004F, -261.895996F)); + builder.AddLine(new Vector2(254.731995F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(266.828003F, -261.895996F)); + builder.AddLine(new Vector2(266.828003F, -272.515991F)); + builder.AddCubicBezier(new Vector2(266.828003F, -273.691986F), new Vector2(266.540009F, -274.802002F), new Vector2(265.963989F, -275.846008F)); + builder.AddCubicBezier(new Vector2(265.388F, -276.890015F), new Vector2(264.60199F, -277.735992F), new Vector2(263.605988F, -278.384003F)); + builder.AddCubicBezier(new Vector2(262.609985F, -279.032013F), new Vector2(261.463989F, -279.355988F), new Vector2(260.167999F, -279.355988F)); + builder.AddCubicBezier(new Vector2(258.872009F, -279.355988F), new Vector2(257.708008F, -279.062012F), new Vector2(256.675995F, -278.473999F)); + builder.AddCubicBezier(new Vector2(255.643997F, -277.885986F), new Vector2(254.839996F, -277.088013F), new Vector2(254.264008F, -276.079987F)); + builder.AddCubicBezier(new Vector2(253.688004F, -275.071991F), new Vector2(253.399994F, -273.920013F), new Vector2(253.399994F, -272.623993F)); + builder.AddLine(new Vector2(254.731995F, -271.868011F)); + builder.AddCubicBezier(new Vector2(254.731995F, -272.731995F), new Vector2(254.923996F, -273.5F), new Vector2(255.307999F, -274.171997F)); + builder.AddCubicBezier(new Vector2(255.692001F, -274.843994F), new Vector2(256.220001F, -275.372009F), new Vector2(256.891998F, -275.756012F)); + builder.AddCubicBezier(new Vector2(257.563995F, -276.140015F), new Vector2(258.332001F, -276.332001F), new Vector2(259.196014F, -276.332001F)); + builder.AddCubicBezier(new Vector2(260.492004F, -276.332001F), new Vector2(261.541992F, -275.911987F), new Vector2(262.346008F, -275.071991F)); + builder.AddCubicBezier(new Vector2(263.149994F, -274.231995F), new Vector2(263.552002F, -273.164001F), new Vector2(263.552002F, -271.868011F)); + builder.AddLine(new Vector2(263.552002F, -261.895996F)); + builder.AddLine(new Vector2(266.828003F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1256() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(246.776001F, -261.895996F)); + builder.AddLine(new Vector2(246.776001F, -278.996002F)); + builder.AddLine(new Vector2(243.5F, -278.996002F)); + builder.AddLine(new Vector2(243.5F, -274.820007F)); + builder.AddLine(new Vector2(244.112F, -270.679993F)); + builder.AddLine(new Vector2(243.5F, -266.503998F)); + builder.AddLine(new Vector2(243.5F, -261.895996F)); + builder.AddLine(new Vector2(246.776001F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(235.472F, -265.35199F)); + builder.AddCubicBezier(new Vector2(234.632004F, -265.855988F), new Vector2(233.977997F, -266.54599F), new Vector2(233.509995F, -267.421997F)); + builder.AddCubicBezier(new Vector2(233.042007F, -268.298004F), new Vector2(232.807999F, -269.312012F), new Vector2(232.807999F, -270.463989F)); + builder.AddCubicBezier(new Vector2(232.807999F, -271.59201F), new Vector2(233.042007F, -272.593994F), new Vector2(233.509995F, -273.470001F)); + builder.AddCubicBezier(new Vector2(233.977997F, -274.346008F), new Vector2(234.626007F, -275.036011F), new Vector2(235.453995F, -275.540009F)); + builder.AddCubicBezier(new Vector2(236.281998F, -276.044006F), new Vector2(237.235992F, -276.29599F), new Vector2(238.315994F, -276.29599F)); + builder.AddCubicBezier(new Vector2(239.395996F, -276.29599F), new Vector2(240.337997F, -276.049988F), new Vector2(241.141998F, -275.558014F)); + builder.AddCubicBezier(new Vector2(241.945999F, -275.06601F), new Vector2(242.576004F, -274.376007F), new Vector2(243.031998F, -273.488007F)); + builder.AddCubicBezier(new Vector2(243.488007F, -272.600006F), new Vector2(243.716003F, -271.579987F), new Vector2(243.716003F, -270.428009F)); + builder.AddCubicBezier(new Vector2(243.716003F, -268.723999F), new Vector2(243.223999F, -267.325989F), new Vector2(242.240005F, -266.234009F)); + builder.AddCubicBezier(new Vector2(241.255997F, -265.141998F), new Vector2(239.960007F, -264.596008F), new Vector2(238.352005F, -264.596008F)); + builder.AddCubicBezier(new Vector2(237.272003F, -264.596008F), new Vector2(236.311996F, -264.847992F), new Vector2(235.472F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(241.304001F, -262.346008F)); + builder.AddCubicBezier(new Vector2(242.335999F, -262.885986F), new Vector2(243.158005F, -263.635986F), new Vector2(243.770004F, -264.596008F)); + builder.AddCubicBezier(new Vector2(244.382004F, -265.556F), new Vector2(244.723999F, -266.64801F), new Vector2(244.796005F, -267.872009F)); + builder.AddLine(new Vector2(244.796005F, -273.019989F)); + builder.AddCubicBezier(new Vector2(244.723999F, -274.268005F), new Vector2(244.376007F, -275.365997F), new Vector2(243.751999F, -276.313995F)); + builder.AddCubicBezier(new Vector2(243.128006F, -277.261993F), new Vector2(242.306F, -278.006012F), new Vector2(241.285995F, -278.54599F)); + builder.AddCubicBezier(new Vector2(240.266006F, -279.085999F), new Vector2(239.108002F, -279.355988F), new Vector2(237.811996F, -279.355988F)); + builder.AddCubicBezier(new Vector2(236.227997F, -279.355988F), new Vector2(234.806F, -278.959991F), new Vector2(233.546005F, -278.167999F)); + builder.AddCubicBezier(new Vector2(232.285995F, -277.376007F), new Vector2(231.289993F, -276.308014F), new Vector2(230.557999F, -274.963989F)); + builder.AddCubicBezier(new Vector2(229.826004F, -273.619995F), new Vector2(229.460007F, -272.108002F), new Vector2(229.460007F, -270.428009F)); + builder.AddCubicBezier(new Vector2(229.460007F, -268.747986F), new Vector2(229.826004F, -267.235992F), new Vector2(230.557999F, -265.891998F)); + builder.AddCubicBezier(new Vector2(231.289993F, -264.548004F), new Vector2(232.285995F, -263.485992F), new Vector2(233.546005F, -262.705994F)); + builder.AddCubicBezier(new Vector2(234.806F, -261.925995F), new Vector2(236.227997F, -261.536011F), new Vector2(237.811996F, -261.536011F)); + builder.AddCubicBezier(new Vector2(239.108002F, -261.536011F), new Vector2(240.272003F, -261.806F), new Vector2(241.304001F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1257() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(216.175995F, -261.806F)); + builder.AddCubicBezier(new Vector2(217.112F, -263.425995F), new Vector2(217.832001F, -265.196014F), new Vector2(218.335999F, -267.115997F)); + builder.AddCubicBezier(new Vector2(218.839996F, -269.036011F), new Vector2(219.091995F, -271.028015F), new Vector2(219.091995F, -273.09201F)); + builder.AddCubicBezier(new Vector2(219.091995F, -275.156006F), new Vector2(218.839996F, -277.14801F), new Vector2(218.335999F, -279.067993F)); + builder.AddCubicBezier(new Vector2(217.832001F, -280.988007F), new Vector2(217.112F, -282.757996F), new Vector2(216.175995F, -284.377991F)); + builder.AddCubicBezier(new Vector2(215.240005F, -285.997986F), new Vector2(214.112F, -287.359985F), new Vector2(212.792007F, -288.463989F)); + builder.AddLine(new Vector2(210.884003F, -286.772003F)); + builder.AddCubicBezier(new Vector2(212.612F, -285.283997F), new Vector2(213.932007F, -283.364014F), new Vector2(214.843994F, -281.011993F)); + builder.AddCubicBezier(new Vector2(215.755997F, -278.660004F), new Vector2(216.212006F, -276.019989F), new Vector2(216.212006F, -273.09201F)); + builder.AddCubicBezier(new Vector2(216.212006F, -270.187988F), new Vector2(215.755997F, -267.559998F), new Vector2(214.843994F, -265.208008F)); + builder.AddCubicBezier(new Vector2(213.932007F, -262.855988F), new Vector2(212.612F, -260.924011F), new Vector2(210.884003F, -259.411987F)); + builder.AddLine(new Vector2(212.792007F, -257.720001F)); + builder.AddCubicBezier(new Vector2(214.112F, -258.824005F), new Vector2(215.240005F, -260.186005F), new Vector2(216.175995F, -261.806F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1258() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(201.524002F, -275.144012F)); + builder.AddCubicBezier(new Vector2(202.292007F, -275.911987F), new Vector2(203.276001F, -276.29599F), new Vector2(204.475998F, -276.29599F)); + builder.AddCubicBezier(new Vector2(205.052002F, -276.29599F), new Vector2(205.556F, -276.212006F), new Vector2(205.988007F, -276.044006F)); + builder.AddCubicBezier(new Vector2(206.419998F, -275.876007F), new Vector2(206.815994F, -275.600006F), new Vector2(207.175995F, -275.216003F)); + builder.AddLine(new Vector2(209.300003F, -277.411987F)); + builder.AddCubicBezier(new Vector2(208.699997F, -278.108002F), new Vector2(208.052002F, -278.605988F), new Vector2(207.356003F, -278.906006F)); + builder.AddCubicBezier(new Vector2(206.660004F, -279.205994F), new Vector2(205.880005F, -279.355988F), new Vector2(205.016006F, -279.355988F)); + builder.AddCubicBezier(new Vector2(203.119995F, -279.355988F), new Vector2(201.667999F, -278.708008F), new Vector2(200.660004F, -277.411987F)); + builder.AddCubicBezier(new Vector2(199.651993F, -276.115997F), new Vector2(199.147995F, -274.376007F), new Vector2(199.147995F, -272.191986F)); + builder.AddLine(new Vector2(200.371994F, -271.615997F)); + builder.AddCubicBezier(new Vector2(200.371994F, -273.200012F), new Vector2(200.755997F, -274.376007F), new Vector2(201.524002F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(200.371994F, -261.895996F)); + builder.AddLine(new Vector2(200.371994F, -278.996002F)); + builder.AddLine(new Vector2(197.132004F, -278.996002F)); + builder.AddLine(new Vector2(197.132004F, -261.895996F)); + builder.AddLine(new Vector2(200.371994F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1259() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(189.535995F, -262.291992F)); + builder.AddCubicBezier(new Vector2(190.712006F, -262.79599F), new Vector2(191.720001F, -263.528015F), new Vector2(192.559998F, -264.488007F)); + builder.AddLine(new Vector2(190.472F, -266.612F)); + builder.AddCubicBezier(new Vector2(189.895996F, -265.940002F), new Vector2(189.205994F, -265.436005F), new Vector2(188.401993F, -265.100006F)); + builder.AddCubicBezier(new Vector2(187.598007F, -264.764008F), new Vector2(186.716003F, -264.596008F), new Vector2(185.755997F, -264.596008F)); + builder.AddCubicBezier(new Vector2(184.604004F, -264.596008F), new Vector2(183.584F, -264.84201F), new Vector2(182.695999F, -265.334015F)); + builder.AddCubicBezier(new Vector2(181.807999F, -265.825989F), new Vector2(181.123993F, -266.522003F), new Vector2(180.643997F, -267.421997F)); + builder.AddCubicBezier(new Vector2(180.164001F, -268.321991F), new Vector2(179.923996F, -269.372009F), new Vector2(179.923996F, -270.571991F)); + builder.AddCubicBezier(new Vector2(179.923996F, -271.747986F), new Vector2(180.151993F, -272.768005F), new Vector2(180.608002F, -273.631989F)); + builder.AddCubicBezier(new Vector2(181.063995F, -274.496002F), new Vector2(181.712006F, -275.167999F), new Vector2(182.552002F, -275.64801F)); + builder.AddCubicBezier(new Vector2(183.391998F, -276.127991F), new Vector2(184.363998F, -276.368011F), new Vector2(185.468002F, -276.368011F)); + builder.AddCubicBezier(new Vector2(186.524002F, -276.368011F), new Vector2(187.423996F, -276.145996F), new Vector2(188.167999F, -275.701996F)); + builder.AddCubicBezier(new Vector2(188.912003F, -275.257996F), new Vector2(189.488007F, -274.634003F), new Vector2(189.895996F, -273.829987F)); + builder.AddCubicBezier(new Vector2(190.304001F, -273.026001F), new Vector2(190.507996F, -272.048004F), new Vector2(190.507996F, -270.895996F)); + builder.AddLine(new Vector2(191.695999F, -271.940002F)); + builder.AddLine(new Vector2(178.988007F, -271.940002F)); + builder.AddLine(new Vector2(178.988007F, -269.23999F)); + builder.AddLine(new Vector2(193.423996F, -269.23999F)); + builder.AddCubicBezier(new Vector2(193.496002F, -269.575989F), new Vector2(193.544006F, -269.881989F), new Vector2(193.567993F, -270.15799F)); + builder.AddCubicBezier(new Vector2(193.591995F, -270.43399F), new Vector2(193.604004F, -270.691986F), new Vector2(193.604004F, -270.932007F)); + builder.AddCubicBezier(new Vector2(193.604004F, -272.563995F), new Vector2(193.261993F, -274.015991F), new Vector2(192.578003F, -275.287994F)); + builder.AddCubicBezier(new Vector2(191.893997F, -276.559998F), new Vector2(190.940002F, -277.556F), new Vector2(189.716003F, -278.276001F)); + builder.AddCubicBezier(new Vector2(188.492004F, -278.996002F), new Vector2(187.100006F, -279.355988F), new Vector2(185.539993F, -279.355988F)); + builder.AddCubicBezier(new Vector2(183.884003F, -279.355988F), new Vector2(182.389999F, -278.966003F), new Vector2(181.057999F, -278.186005F)); + builder.AddCubicBezier(new Vector2(179.725998F, -277.406006F), new Vector2(178.669998F, -276.343994F), new Vector2(177.889999F, -275F)); + builder.AddCubicBezier(new Vector2(177.110001F, -273.656006F), new Vector2(176.720001F, -272.144012F), new Vector2(176.720001F, -270.463989F)); + builder.AddCubicBezier(new Vector2(176.720001F, -268.76001F), new Vector2(177.115997F, -267.235992F), new Vector2(177.908005F, -265.891998F)); + builder.AddCubicBezier(new Vector2(178.699997F, -264.548004F), new Vector2(179.774002F, -263.485992F), new Vector2(181.130005F, -262.705994F)); + builder.AddCubicBezier(new Vector2(182.485992F, -261.925995F), new Vector2(184.028F, -261.536011F), new Vector2(185.755997F, -261.536011F)); + builder.AddCubicBezier(new Vector2(187.100006F, -261.536011F), new Vector2(188.360001F, -261.787994F), new Vector2(189.535995F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1260() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(175.207993F, -276.044006F)); + builder.AddLine(new Vector2(175.207993F, -278.996002F)); + builder.AddLine(new Vector2(163.544006F, -278.996002F)); + builder.AddLine(new Vector2(163.544006F, -276.044006F)); + builder.AddLine(new Vector2(175.207993F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(170.996002F, -261.895996F)); + builder.AddLine(new Vector2(170.996002F, -286.160004F)); + builder.AddLine(new Vector2(167.755997F, -286.160004F)); + builder.AddLine(new Vector2(167.755997F, -261.895996F)); + builder.AddLine(new Vector2(170.996002F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1261() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(162.608002F, -276.044006F)); + builder.AddLine(new Vector2(162.608002F, -278.996002F)); + builder.AddLine(new Vector2(150.944F, -278.996002F)); + builder.AddLine(new Vector2(150.944F, -276.044006F)); + builder.AddLine(new Vector2(162.608002F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(158.395996F, -261.895996F)); + builder.AddLine(new Vector2(158.395996F, -286.160004F)); + builder.AddLine(new Vector2(155.156006F, -286.160004F)); + builder.AddLine(new Vector2(155.156006F, -261.895996F)); + builder.AddLine(new Vector2(158.395996F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1262() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(147.595993F, -283.01001F)); + builder.AddCubicBezier(new Vector2(147.979996F, -283.406006F), new Vector2(148.171997F, -283.903992F), new Vector2(148.171997F, -284.503998F)); + builder.AddCubicBezier(new Vector2(148.171997F, -285.079987F), new Vector2(147.979996F, -285.56601F), new Vector2(147.595993F, -285.962006F)); + builder.AddCubicBezier(new Vector2(147.212006F, -286.358002F), new Vector2(146.720001F, -286.556F), new Vector2(146.119995F, -286.556F)); + builder.AddCubicBezier(new Vector2(145.520004F, -286.556F), new Vector2(145.028F, -286.358002F), new Vector2(144.643997F, -285.962006F)); + builder.AddCubicBezier(new Vector2(144.259995F, -285.56601F), new Vector2(144.067993F, -285.079987F), new Vector2(144.067993F, -284.503998F)); + builder.AddCubicBezier(new Vector2(144.067993F, -283.903992F), new Vector2(144.259995F, -283.406006F), new Vector2(144.643997F, -283.01001F)); + builder.AddCubicBezier(new Vector2(145.028F, -282.614014F), new Vector2(145.520004F, -282.415985F), new Vector2(146.119995F, -282.415985F)); + builder.AddCubicBezier(new Vector2(146.720001F, -282.415985F), new Vector2(147.212006F, -282.614014F), new Vector2(147.595993F, -283.01001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(147.740005F, -261.895996F)); + builder.AddLine(new Vector2(147.740005F, -278.996002F)); + builder.AddLine(new Vector2(144.464005F, -278.996002F)); + builder.AddLine(new Vector2(144.464005F, -261.895996F)); + builder.AddLine(new Vector2(147.740005F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1263() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(124.519997F, -261.895996F)); + builder.AddLine(new Vector2(129.488007F, -274.783997F)); + builder.AddLine(new Vector2(128.300003F, -274.783997F)); + builder.AddLine(new Vector2(133.231995F, -261.895996F)); + builder.AddLine(new Vector2(135.139999F, -261.895996F)); + builder.AddLine(new Vector2(141.871994F, -278.996002F)); + builder.AddLine(new Vector2(138.488007F, -278.996002F)); + builder.AddLine(new Vector2(133.591995F, -265.675995F)); + builder.AddLine(new Vector2(134.671997F, -265.675995F)); + builder.AddLine(new Vector2(129.811996F, -278.996002F)); + builder.AddLine(new Vector2(127.940002F, -278.996002F)); + builder.AddLine(new Vector2(123.080002F, -265.675995F)); + builder.AddLine(new Vector2(124.160004F, -265.675995F)); + builder.AddLine(new Vector2(119.264F, -278.996002F)); + builder.AddLine(new Vector2(115.879997F, -278.996002F)); + builder.AddLine(new Vector2(122.612F, -261.895996F)); + builder.AddLine(new Vector2(124.519997F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1264() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(118.220001F, -283.783997F)); + builder.AddLine(new Vector2(118.220001F, -286.880005F)); + builder.AddLine(new Vector2(97.8799973F, -286.880005F)); + builder.AddLine(new Vector2(97.8799973F, -283.783997F)); + builder.AddLine(new Vector2(118.220001F, -283.783997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(109.760002F, -261.895996F)); + builder.AddLine(new Vector2(109.760002F, -286.160004F)); + builder.AddLine(new Vector2(106.339996F, -286.160004F)); + builder.AddLine(new Vector2(106.339996F, -261.895996F)); + builder.AddLine(new Vector2(109.760002F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1265() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(78.1159973F, -254.731995F)); + builder.AddLine(new Vector2(81.3560028F, -261.752014F)); + builder.AddLine(new Vector2(79.5199966F, -265.063995F)); + builder.AddLine(new Vector2(74.5159988F, -254.731995F)); + builder.AddLine(new Vector2(78.1159973F, -254.731995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(81.3560028F, -261.752014F)); + builder.AddLine(new Vector2(89.3479996F, -278.996002F)); + builder.AddLine(new Vector2(85.7480011F, -278.996002F)); + builder.AddLine(new Vector2(79.9520035F, -265.496002F)); + builder.AddLine(new Vector2(81.1039963F, -265.496002F)); + builder.AddLine(new Vector2(75.5960007F, -278.996002F)); + builder.AddLine(new Vector2(71.9960022F, -278.996002F)); + builder.AddLine(new Vector2(79.4120026F, -261.752014F)); + builder.AddLine(new Vector2(81.3560028F, -261.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1266() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(69.0439987F, -261.895996F)); + builder.AddLine(new Vector2(69.0439987F, -287.600006F)); + builder.AddLine(new Vector2(65.8040009F, -287.600006F)); + builder.AddLine(new Vector2(65.8040009F, -261.895996F)); + builder.AddLine(new Vector2(69.0439987F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1267() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(55.7599983F, -275.144012F)); + builder.AddCubicBezier(new Vector2(56.5279999F, -275.911987F), new Vector2(57.512001F, -276.29599F), new Vector2(58.7120018F, -276.29599F)); + builder.AddCubicBezier(new Vector2(59.2879982F, -276.29599F), new Vector2(59.7919998F, -276.212006F), new Vector2(60.223999F, -276.044006F)); + builder.AddCubicBezier(new Vector2(60.6559982F, -275.876007F), new Vector2(61.0519981F, -275.600006F), new Vector2(61.4119987F, -275.216003F)); + builder.AddLine(new Vector2(63.5359993F, -277.411987F)); + builder.AddCubicBezier(new Vector2(62.9360008F, -278.108002F), new Vector2(62.2879982F, -278.605988F), new Vector2(61.5919991F, -278.906006F)); + builder.AddCubicBezier(new Vector2(60.8959999F, -279.205994F), new Vector2(60.1160011F, -279.355988F), new Vector2(59.2519989F, -279.355988F)); + builder.AddCubicBezier(new Vector2(57.355999F, -279.355988F), new Vector2(55.9039993F, -278.708008F), new Vector2(54.8959999F, -277.411987F)); + builder.AddCubicBezier(new Vector2(53.8880005F, -276.115997F), new Vector2(53.3839989F, -274.376007F), new Vector2(53.3839989F, -272.191986F)); + builder.AddLine(new Vector2(54.6080017F, -271.615997F)); + builder.AddCubicBezier(new Vector2(54.6080017F, -273.200012F), new Vector2(54.9920006F, -274.376007F), new Vector2(55.7599983F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(54.6080017F, -261.895996F)); + builder.AddLine(new Vector2(54.6080017F, -278.996002F)); + builder.AddLine(new Vector2(51.368F, -278.996002F)); + builder.AddLine(new Vector2(51.368F, -261.895996F)); + builder.AddLine(new Vector2(54.6080017F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1268() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(43.7719994F, -262.291992F)); + builder.AddCubicBezier(new Vector2(44.9480019F, -262.79599F), new Vector2(45.9560013F, -263.528015F), new Vector2(46.7960014F, -264.488007F)); + builder.AddLine(new Vector2(44.7080002F, -266.612F)); + builder.AddCubicBezier(new Vector2(44.132F, -265.940002F), new Vector2(43.4420013F, -265.436005F), new Vector2(42.6380005F, -265.100006F)); + builder.AddCubicBezier(new Vector2(41.8339996F, -264.764008F), new Vector2(40.9519997F, -264.596008F), new Vector2(39.9920006F, -264.596008F)); + builder.AddCubicBezier(new Vector2(38.8400002F, -264.596008F), new Vector2(37.8199997F, -264.84201F), new Vector2(36.9319992F, -265.334015F)); + builder.AddCubicBezier(new Vector2(36.0439987F, -265.825989F), new Vector2(35.3600006F, -266.522003F), new Vector2(34.8800011F, -267.421997F)); + builder.AddCubicBezier(new Vector2(34.4000015F, -268.321991F), new Vector2(34.1599998F, -269.372009F), new Vector2(34.1599998F, -270.571991F)); + builder.AddCubicBezier(new Vector2(34.1599998F, -271.747986F), new Vector2(34.3880005F, -272.768005F), new Vector2(34.8440018F, -273.631989F)); + builder.AddCubicBezier(new Vector2(35.2999992F, -274.496002F), new Vector2(35.9480019F, -275.167999F), new Vector2(36.7879982F, -275.64801F)); + builder.AddCubicBezier(new Vector2(37.6279984F, -276.127991F), new Vector2(38.5999985F, -276.368011F), new Vector2(39.7039986F, -276.368011F)); + builder.AddCubicBezier(new Vector2(40.7599983F, -276.368011F), new Vector2(41.6599998F, -276.145996F), new Vector2(42.4039993F, -275.701996F)); + builder.AddCubicBezier(new Vector2(43.1479988F, -275.257996F), new Vector2(43.723999F, -274.634003F), new Vector2(44.132F, -273.829987F)); + builder.AddCubicBezier(new Vector2(44.5400009F, -273.026001F), new Vector2(44.7439995F, -272.048004F), new Vector2(44.7439995F, -270.895996F)); + builder.AddLine(new Vector2(45.9319992F, -271.940002F)); + builder.AddLine(new Vector2(33.223999F, -271.940002F)); + builder.AddLine(new Vector2(33.223999F, -269.23999F)); + builder.AddLine(new Vector2(47.6599998F, -269.23999F)); + builder.AddCubicBezier(new Vector2(47.7319984F, -269.575989F), new Vector2(47.7799988F, -269.881989F), new Vector2(47.8040009F, -270.15799F)); + builder.AddCubicBezier(new Vector2(47.8279991F, -270.43399F), new Vector2(47.8400002F, -270.691986F), new Vector2(47.8400002F, -270.932007F)); + builder.AddCubicBezier(new Vector2(47.8400002F, -272.563995F), new Vector2(47.4980011F, -274.015991F), new Vector2(46.8139992F, -275.287994F)); + builder.AddCubicBezier(new Vector2(46.1300011F, -276.559998F), new Vector2(45.1759987F, -277.556F), new Vector2(43.9519997F, -278.276001F)); + builder.AddCubicBezier(new Vector2(42.7280006F, -278.996002F), new Vector2(41.3359985F, -279.355988F), new Vector2(39.776001F, -279.355988F)); + builder.AddCubicBezier(new Vector2(38.1199989F, -279.355988F), new Vector2(36.6259995F, -278.966003F), new Vector2(35.2939987F, -278.186005F)); + builder.AddCubicBezier(new Vector2(33.9620018F, -277.406006F), new Vector2(32.9059982F, -276.343994F), new Vector2(32.1259995F, -275F)); + builder.AddCubicBezier(new Vector2(31.3460007F, -273.656006F), new Vector2(30.9559994F, -272.144012F), new Vector2(30.9559994F, -270.463989F)); + builder.AddCubicBezier(new Vector2(30.9559994F, -268.76001F), new Vector2(31.3519993F, -267.235992F), new Vector2(32.144001F, -265.891998F)); + builder.AddCubicBezier(new Vector2(32.9360008F, -264.548004F), new Vector2(34.0099983F, -263.485992F), new Vector2(35.3660011F, -262.705994F)); + builder.AddCubicBezier(new Vector2(36.7220001F, -261.925995F), new Vector2(38.2639999F, -261.536011F), new Vector2(39.9920006F, -261.536011F)); + builder.AddCubicBezier(new Vector2(41.3359985F, -261.536011F), new Vector2(42.5960007F, -261.787994F), new Vector2(43.7719994F, -262.291992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1269() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(27.6800003F, -261.895996F)); + builder.AddLine(new Vector2(27.6800003F, -272.876007F)); + builder.AddCubicBezier(new Vector2(27.6800003F, -274.220001F), new Vector2(27.3859997F, -275.372009F), new Vector2(26.7980003F, -276.332001F)); + builder.AddCubicBezier(new Vector2(26.2099991F, -277.291992F), new Vector2(25.4239998F, -278.036011F), new Vector2(24.4400005F, -278.563995F)); + builder.AddCubicBezier(new Vector2(23.4559994F, -279.09201F), new Vector2(22.3400002F, -279.355988F), new Vector2(21.0919991F, -279.355988F)); + builder.AddCubicBezier(new Vector2(19.8920002F, -279.355988F), new Vector2(18.7880001F, -279.085999F), new Vector2(17.7800007F, -278.54599F)); + builder.AddCubicBezier(new Vector2(16.7719994F, -278.006012F), new Vector2(15.9499998F, -277.261993F), new Vector2(15.3140001F, -276.313995F)); + builder.AddCubicBezier(new Vector2(14.6780005F, -275.365997F), new Vector2(14.3240004F, -274.231995F), new Vector2(14.2519999F, -272.911987F)); + builder.AddLine(new Vector2(16.0879993F, -272.227997F)); + builder.AddCubicBezier(new Vector2(16.0879993F, -273.09201F), new Vector2(16.2800007F, -273.824005F), new Vector2(16.6639996F, -274.424011F)); + builder.AddCubicBezier(new Vector2(17.0480003F, -275.023987F), new Vector2(17.5580006F, -275.492004F), new Vector2(18.1940002F, -275.828003F)); + builder.AddCubicBezier(new Vector2(18.8299999F, -276.164001F), new Vector2(19.5440006F, -276.332001F), new Vector2(20.3360004F, -276.332001F)); + builder.AddCubicBezier(new Vector2(21.4880009F, -276.332001F), new Vector2(22.4540005F, -275.966003F), new Vector2(23.2339993F, -275.234009F)); + builder.AddCubicBezier(new Vector2(24.0139999F, -274.502014F), new Vector2(24.4039993F, -273.5F), new Vector2(24.4039993F, -272.227997F)); + builder.AddLine(new Vector2(24.4039993F, -261.895996F)); + builder.AddLine(new Vector2(27.6800003F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(16.0879993F, -261.895996F)); + builder.AddLine(new Vector2(16.0879993F, -272.911987F)); + builder.AddCubicBezier(new Vector2(16.0879993F, -274.231995F), new Vector2(15.8059998F, -275.372009F), new Vector2(15.2419996F, -276.332001F)); + builder.AddCubicBezier(new Vector2(14.6780005F, -277.291992F), new Vector2(13.9099998F, -278.036011F), new Vector2(12.9379997F, -278.563995F)); + builder.AddCubicBezier(new Vector2(11.9659996F, -279.09201F), new Vector2(10.8800001F, -279.355988F), new Vector2(9.68000031F, -279.355988F)); + builder.AddCubicBezier(new Vector2(8.45600033F, -279.355988F), new Vector2(7.35200024F, -279.085999F), new Vector2(6.36800003F, -278.54599F)); + builder.AddCubicBezier(new Vector2(5.38399982F, -278.006012F), new Vector2(4.61000013F, -277.256012F), new Vector2(4.046F, -276.29599F)); + builder.AddCubicBezier(new Vector2(3.48200011F, -275.335999F), new Vector2(3.20000005F, -274.208008F), new Vector2(3.20000005F, -272.911987F)); + builder.AddLine(new Vector2(4.53200006F, -272.227997F)); + builder.AddCubicBezier(new Vector2(4.53200006F, -273.09201F), new Vector2(4.72399998F, -273.824005F), new Vector2(5.1079998F, -274.424011F)); + builder.AddCubicBezier(new Vector2(5.4920001F, -275.023987F), new Vector2(5.99599981F, -275.492004F), new Vector2(6.61999989F, -275.828003F)); + builder.AddCubicBezier(new Vector2(7.24399996F, -276.164001F), new Vector2(7.95200014F, -276.332001F), new Vector2(8.74400043F, -276.332001F)); + builder.AddCubicBezier(new Vector2(9.92000008F, -276.332001F), new Vector2(10.8979998F, -275.966003F), new Vector2(11.6780005F, -275.234009F)); + builder.AddCubicBezier(new Vector2(12.4580002F, -274.502014F), new Vector2(12.8479996F, -273.5F), new Vector2(12.8479996F, -272.227997F)); + builder.AddLine(new Vector2(12.8479996F, -261.895996F)); + builder.AddLine(new Vector2(16.0879993F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(4.53200006F, -261.895996F)); + builder.AddLine(new Vector2(4.53200006F, -278.996002F)); + builder.AddLine(new Vector2(1.29200006F, -278.996002F)); + builder.AddLine(new Vector2(1.29200006F, -261.895996F)); + builder.AddLine(new Vector2(4.53200006F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1270() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-8.82400036F, -275.144012F)); + builder.AddCubicBezier(new Vector2(-8.05599976F, -275.911987F), new Vector2(-7.07200003F, -276.29599F), new Vector2(-5.87200022F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-5.296F, -276.29599F), new Vector2(-4.79199982F, -276.212006F), new Vector2(-4.36000013F, -276.044006F)); + builder.AddCubicBezier(new Vector2(-3.92799997F, -275.876007F), new Vector2(-3.53200006F, -275.600006F), new Vector2(-3.17199993F, -275.216003F)); + builder.AddLine(new Vector2(-1.04799998F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-1.648F, -278.108002F), new Vector2(-2.296F, -278.605988F), new Vector2(-2.9920001F, -278.906006F)); + builder.AddCubicBezier(new Vector2(-3.68799996F, -279.205994F), new Vector2(-4.46799994F, -279.355988F), new Vector2(-5.33199978F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-7.22800016F, -279.355988F), new Vector2(-8.68000031F, -278.708008F), new Vector2(-9.68799973F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-10.6960001F, -276.115997F), new Vector2(-11.1999998F, -274.376007F), new Vector2(-11.1999998F, -272.191986F)); + builder.AddLine(new Vector2(-9.97599983F, -271.615997F)); + builder.AddCubicBezier(new Vector2(-9.97599983F, -273.200012F), new Vector2(-9.59200001F, -274.376007F), new Vector2(-8.82400036F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-9.97599983F, -261.895996F)); + builder.AddLine(new Vector2(-9.97599983F, -278.996002F)); + builder.AddLine(new Vector2(-13.2159996F, -278.996002F)); + builder.AddLine(new Vector2(-13.2159996F, -261.895996F)); + builder.AddLine(new Vector2(-9.97599983F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1271() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-28.6240005F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-29.4640007F, -265.928009F), new Vector2(-30.1240005F, -266.618011F), new Vector2(-30.6040001F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-31.0839996F, -268.369995F), new Vector2(-31.3239994F, -269.372009F), new Vector2(-31.3239994F, -270.5F)); + builder.AddCubicBezier(new Vector2(-31.3239994F, -271.604004F), new Vector2(-31.0839996F, -272.588013F), new Vector2(-30.6040001F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-30.1240005F, -274.31601F), new Vector2(-29.4640007F, -274.993988F), new Vector2(-28.6240005F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-27.7840004F, -275.977997F), new Vector2(-26.8360004F, -276.223999F), new Vector2(-25.7800007F, -276.223999F)); + builder.AddCubicBezier(new Vector2(-24.6760006F, -276.223999F), new Vector2(-23.7099991F, -275.977997F), new Vector2(-22.882F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-22.0540009F, -274.993988F), new Vector2(-21.3939991F, -274.31601F), new Vector2(-20.9020004F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-20.4099998F, -272.588013F), new Vector2(-20.1639996F, -271.604004F), new Vector2(-20.1639996F, -270.5F)); + builder.AddCubicBezier(new Vector2(-20.1639996F, -269.372009F), new Vector2(-20.4039993F, -268.369995F), new Vector2(-20.8840008F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-21.3640003F, -266.618011F), new Vector2(-22.0240002F, -265.928009F), new Vector2(-22.8640003F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-23.7040005F, -264.920013F), new Vector2(-24.6760006F, -264.667999F), new Vector2(-25.7800007F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-26.8360004F, -264.667999F), new Vector2(-27.7840004F, -264.920013F), new Vector2(-28.6240005F, -265.424011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-21.2259998F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-19.8700008F, -263.515991F), new Vector2(-18.7959995F, -264.589996F), new Vector2(-18.0039997F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-17.2119999F, -267.302002F), new Vector2(-16.816F, -268.820007F), new Vector2(-16.816F, -270.5F)); + builder.AddCubicBezier(new Vector2(-16.816F, -272.156006F), new Vector2(-17.2119999F, -273.656006F), new Vector2(-18.0039997F, -275F)); + builder.AddCubicBezier(new Vector2(-18.7959995F, -276.343994F), new Vector2(-19.8700008F, -277.406006F), new Vector2(-21.2259998F, -278.186005F)); + builder.AddCubicBezier(new Vector2(-22.5820007F, -278.966003F), new Vector2(-24.1000004F, -279.355988F), new Vector2(-25.7800007F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-27.4360008F, -279.355988F), new Vector2(-28.9360008F, -278.959991F), new Vector2(-30.2800007F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-31.6240005F, -277.376007F), new Vector2(-32.6920013F, -276.313995F), new Vector2(-33.4840012F, -274.981995F)); + builder.AddCubicBezier(new Vector2(-34.276001F, -273.649994F), new Vector2(-34.6720009F, -272.156006F), new Vector2(-34.6720009F, -270.5F)); + builder.AddCubicBezier(new Vector2(-34.6720009F, -268.820007F), new Vector2(-34.276001F, -267.302002F), new Vector2(-33.4840012F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-32.6920013F, -264.589996F), new Vector2(-31.6240005F, -263.515991F), new Vector2(-30.2800007F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-28.9360008F, -261.932007F), new Vector2(-27.4360008F, -261.536011F), new Vector2(-25.7800007F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-24.1000004F, -261.536011F), new Vector2(-22.5820007F, -261.932007F), new Vector2(-21.2259998F, -262.723999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1272() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-35.8240013F, -276.044006F)); + builder.AddLine(new Vector2(-35.8240013F, -278.996002F)); + builder.AddLine(new Vector2(-48.7120018F, -278.996002F)); + builder.AddLine(new Vector2(-48.7120018F, -276.044006F)); + builder.AddLine(new Vector2(-35.8240013F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-41.2599983F, -261.895996F)); + builder.AddLine(new Vector2(-41.2599983F, -281.552002F)); + builder.AddCubicBezier(new Vector2(-41.2599983F, -282.608002F), new Vector2(-40.9780006F, -283.429993F), new Vector2(-40.4140015F, -284.018005F)); + builder.AddCubicBezier(new Vector2(-39.8499985F, -284.605988F), new Vector2(-39.0519981F, -284.899994F), new Vector2(-38.0200005F, -284.899994F)); + builder.AddCubicBezier(new Vector2(-37.4679985F, -284.899994F), new Vector2(-37F, -284.81601F), new Vector2(-36.6160011F, -284.64801F)); + builder.AddCubicBezier(new Vector2(-36.2319984F, -284.480011F), new Vector2(-35.8839989F, -284.227997F), new Vector2(-35.5719986F, -283.891998F)); + builder.AddLine(new Vector2(-33.4480019F, -285.980011F)); + builder.AddCubicBezier(new Vector2(-34.0480003F, -286.627991F), new Vector2(-34.7080002F, -287.119995F), new Vector2(-35.4280014F, -287.455994F)); + builder.AddCubicBezier(new Vector2(-36.1479988F, -287.791992F), new Vector2(-37F, -287.959991F), new Vector2(-37.9840012F, -287.959991F)); + builder.AddCubicBezier(new Vector2(-39.2799988F, -287.959991F), new Vector2(-40.4199982F, -287.68399F), new Vector2(-41.4039993F, -287.131989F)); + builder.AddCubicBezier(new Vector2(-42.3880005F, -286.579987F), new Vector2(-43.1559982F, -285.824005F), new Vector2(-43.7080002F, -284.864014F)); + builder.AddCubicBezier(new Vector2(-44.2599983F, -283.903992F), new Vector2(-44.5359993F, -282.799988F), new Vector2(-44.5359993F, -281.552002F)); + builder.AddLine(new Vector2(-44.5359993F, -261.895996F)); + builder.AddLine(new Vector2(-41.2599983F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1273() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-50.368F, -259.411987F)); + builder.AddCubicBezier(new Vector2(-52.0719986F, -260.924011F), new Vector2(-53.3860016F, -262.855988F), new Vector2(-54.3100014F, -265.208008F)); + builder.AddCubicBezier(new Vector2(-55.2340012F, -267.559998F), new Vector2(-55.6959991F, -270.187988F), new Vector2(-55.6959991F, -273.09201F)); + builder.AddCubicBezier(new Vector2(-55.6959991F, -276.019989F), new Vector2(-55.2340012F, -278.660004F), new Vector2(-54.3100014F, -281.011993F)); + builder.AddCubicBezier(new Vector2(-53.3860016F, -283.364014F), new Vector2(-52.0719986F, -285.283997F), new Vector2(-50.368F, -286.772003F)); + builder.AddLine(new Vector2(-52.2400017F, -288.463989F)); + builder.AddCubicBezier(new Vector2(-53.5600014F, -287.359985F), new Vector2(-54.6879997F, -285.997986F), new Vector2(-55.6240005F, -284.377991F)); + builder.AddCubicBezier(new Vector2(-56.5600014F, -282.757996F), new Vector2(-57.2799988F, -280.988007F), new Vector2(-57.7840004F, -279.067993F)); + builder.AddCubicBezier(new Vector2(-58.2879982F, -277.14801F), new Vector2(-58.5400009F, -275.156006F), new Vector2(-58.5400009F, -273.09201F)); + builder.AddCubicBezier(new Vector2(-58.5400009F, -271.028015F), new Vector2(-58.2879982F, -269.036011F), new Vector2(-57.7840004F, -267.115997F)); + builder.AddCubicBezier(new Vector2(-57.2799988F, -265.196014F), new Vector2(-56.5600014F, -263.425995F), new Vector2(-55.6240005F, -261.806F)); + builder.AddCubicBezier(new Vector2(-54.6879997F, -260.186005F), new Vector2(-53.5600014F, -258.824005F), new Vector2(-52.2400017F, -257.720001F)); + builder.AddLine(new Vector2(-50.368F, -259.411987F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1274() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-69.1240005F, -286.880005F)); + builder.AddLine(new Vector2(-72.9759979F, -286.880005F)); + builder.AddLine(new Vector2(-80.6439972F, -275.971985F)); + builder.AddLine(new Vector2(-78.3759995F, -273.955994F)); + builder.AddLine(new Vector2(-69.1240005F, -286.880005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-87.6279984F, -261.895996F)); + builder.AddLine(new Vector2(-79.4560013F, -273.164001F)); + builder.AddLine(new Vector2(-81.7600021F, -275.179993F)); + builder.AddLine(new Vector2(-91.4440002F, -261.895996F)); + builder.AddLine(new Vector2(-87.6279984F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-68.7279968F, -261.895996F)); + builder.AddLine(new Vector2(-78.5920029F, -276.115997F)); + builder.AddLine(new Vector2(-79.2040024F, -276.115997F)); + builder.AddLine(new Vector2(-86.9800034F, -286.880005F)); + builder.AddLine(new Vector2(-91.012001F, -286.880005F)); + builder.AddLine(new Vector2(-81.1480026F, -273.343994F)); + builder.AddLine(new Vector2(-80.5360031F, -273.343994F)); + builder.AddLine(new Vector2(-72.723999F, -261.895996F)); + builder.AddLine(new Vector2(-68.7279968F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1275() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-102.316002F, -287.600006F)); + builder.AddLine(new Vector2(-105.592003F, -287.600006F)); + builder.AddLine(new Vector2(-105.592003F, -274.820007F)); + builder.AddLine(new Vector2(-104.980003F, -270.679993F)); + builder.AddLine(new Vector2(-105.592003F, -266.503998F)); + builder.AddLine(new Vector2(-105.592003F, -261.895996F)); + builder.AddLine(new Vector2(-102.316002F, -261.895996F)); + builder.AddLine(new Vector2(-102.316002F, -287.600006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-113.638F, -265.334015F)); + builder.AddCubicBezier(new Vector2(-114.466003F, -265.825989F), new Vector2(-115.113998F, -266.515991F), new Vector2(-115.582001F, -267.403992F)); + builder.AddCubicBezier(new Vector2(-116.050003F, -268.291992F), new Vector2(-116.283997F, -269.312012F), new Vector2(-116.283997F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-116.283997F, -271.615997F), new Vector2(-116.050003F, -272.630005F), new Vector2(-115.582001F, -273.506012F)); + builder.AddCubicBezier(new Vector2(-115.113998F, -274.381989F), new Vector2(-114.472F, -275.06601F), new Vector2(-113.655998F, -275.558014F)); + builder.AddCubicBezier(new Vector2(-112.839996F, -276.049988F), new Vector2(-111.891998F, -276.29599F), new Vector2(-110.811996F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-109.732002F, -276.29599F), new Vector2(-108.783997F, -276.044006F), new Vector2(-107.968002F, -275.540009F)); + builder.AddCubicBezier(new Vector2(-107.152F, -275.036011F), new Vector2(-106.515999F, -274.346008F), new Vector2(-106.059998F, -273.470001F)); + builder.AddCubicBezier(new Vector2(-105.603996F, -272.593994F), new Vector2(-105.375999F, -271.579987F), new Vector2(-105.375999F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-105.375999F, -269.299988F), new Vector2(-105.603996F, -268.298004F), new Vector2(-106.059998F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-106.515999F, -266.54599F), new Vector2(-107.152F, -265.855988F), new Vector2(-107.968002F, -265.35199F)); + builder.AddCubicBezier(new Vector2(-108.783997F, -264.847992F), new Vector2(-109.732002F, -264.596008F), new Vector2(-110.811996F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-111.867996F, -264.596008F), new Vector2(-112.809998F, -264.84201F), new Vector2(-113.638F, -265.334015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-107.823997F, -262.346008F)); + builder.AddCubicBezier(new Vector2(-106.792F, -262.885986F), new Vector2(-105.963997F, -263.635986F), new Vector2(-105.339996F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-104.716003F, -265.556F), new Vector2(-104.367996F, -266.64801F), new Vector2(-104.295998F, -267.872009F)); + builder.AddLine(new Vector2(-104.295998F, -273.019989F)); + builder.AddCubicBezier(new Vector2(-104.367996F, -274.268005F), new Vector2(-104.722F, -275.365997F), new Vector2(-105.358002F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-105.994003F, -277.261993F), new Vector2(-106.828003F, -278.006012F), new Vector2(-107.860001F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-108.891998F, -279.085999F), new Vector2(-110.056F, -279.355988F), new Vector2(-111.351997F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-112.912003F, -279.355988F), new Vector2(-114.316002F, -278.959991F), new Vector2(-115.564003F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-116.811996F, -277.376007F), new Vector2(-117.802002F, -276.308014F), new Vector2(-118.533997F, -274.963989F)); + builder.AddCubicBezier(new Vector2(-119.265999F, -273.619995F), new Vector2(-119.632004F, -272.108002F), new Vector2(-119.632004F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-119.632004F, -268.747986F), new Vector2(-119.265999F, -267.235992F), new Vector2(-118.533997F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-117.802002F, -264.548004F), new Vector2(-116.811996F, -263.485992F), new Vector2(-115.564003F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-114.316002F, -261.925995F), new Vector2(-112.912003F, -261.536011F), new Vector2(-111.351997F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-110.031998F, -261.536011F), new Vector2(-108.856003F, -261.806F), new Vector2(-107.823997F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1276() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-135.039993F, -261.895996F)); + builder.AddLine(new Vector2(-135.039993F, -278.996002F)); + builder.AddLine(new Vector2(-138.279999F, -278.996002F)); + builder.AddLine(new Vector2(-138.279999F, -261.895996F)); + builder.AddLine(new Vector2(-135.039993F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-122.944F, -261.895996F)); + builder.AddLine(new Vector2(-122.944F, -272.515991F)); + builder.AddCubicBezier(new Vector2(-122.944F, -273.691986F), new Vector2(-123.232002F, -274.802002F), new Vector2(-123.807999F, -275.846008F)); + builder.AddCubicBezier(new Vector2(-124.384003F, -276.890015F), new Vector2(-125.169998F, -277.735992F), new Vector2(-126.166F, -278.384003F)); + builder.AddCubicBezier(new Vector2(-127.162003F, -279.032013F), new Vector2(-128.307999F, -279.355988F), new Vector2(-129.604004F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-130.899994F, -279.355988F), new Vector2(-132.063995F, -279.062012F), new Vector2(-133.095993F, -278.473999F)); + builder.AddCubicBezier(new Vector2(-134.128006F, -277.885986F), new Vector2(-134.932007F, -277.088013F), new Vector2(-135.507996F, -276.079987F)); + builder.AddCubicBezier(new Vector2(-136.084F, -275.071991F), new Vector2(-136.371994F, -273.920013F), new Vector2(-136.371994F, -272.623993F)); + builder.AddLine(new Vector2(-135.039993F, -271.868011F)); + builder.AddCubicBezier(new Vector2(-135.039993F, -272.731995F), new Vector2(-134.848007F, -273.5F), new Vector2(-134.464005F, -274.171997F)); + builder.AddCubicBezier(new Vector2(-134.080002F, -274.843994F), new Vector2(-133.552002F, -275.372009F), new Vector2(-132.880005F, -275.756012F)); + builder.AddCubicBezier(new Vector2(-132.207993F, -276.140015F), new Vector2(-131.440002F, -276.332001F), new Vector2(-130.576004F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-129.279999F, -276.332001F), new Vector2(-128.229996F, -275.911987F), new Vector2(-127.426003F, -275.071991F)); + builder.AddCubicBezier(new Vector2(-126.622002F, -274.231995F), new Vector2(-126.220001F, -273.164001F), new Vector2(-126.220001F, -271.868011F)); + builder.AddLine(new Vector2(-126.220001F, -261.895996F)); + builder.AddLine(new Vector2(-122.944F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1277() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-142.996002F, -261.895996F)); + builder.AddLine(new Vector2(-142.996002F, -278.996002F)); + builder.AddLine(new Vector2(-146.272003F, -278.996002F)); + builder.AddLine(new Vector2(-146.272003F, -274.820007F)); + builder.AddLine(new Vector2(-145.660004F, -270.679993F)); + builder.AddLine(new Vector2(-146.272003F, -266.503998F)); + builder.AddLine(new Vector2(-146.272003F, -261.895996F)); + builder.AddLine(new Vector2(-142.996002F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-154.300003F, -265.35199F)); + builder.AddCubicBezier(new Vector2(-155.139999F, -265.855988F), new Vector2(-155.794006F, -266.54599F), new Vector2(-156.261993F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-156.729996F, -268.298004F), new Vector2(-156.964005F, -269.312012F), new Vector2(-156.964005F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-156.964005F, -271.59201F), new Vector2(-156.729996F, -272.593994F), new Vector2(-156.261993F, -273.470001F)); + builder.AddCubicBezier(new Vector2(-155.794006F, -274.346008F), new Vector2(-155.145996F, -275.036011F), new Vector2(-154.317993F, -275.540009F)); + builder.AddCubicBezier(new Vector2(-153.490005F, -276.044006F), new Vector2(-152.535995F, -276.29599F), new Vector2(-151.455994F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-150.376007F, -276.29599F), new Vector2(-149.434006F, -276.049988F), new Vector2(-148.630005F, -275.558014F)); + builder.AddCubicBezier(new Vector2(-147.826004F, -275.06601F), new Vector2(-147.195999F, -274.376007F), new Vector2(-146.740005F, -273.488007F)); + builder.AddCubicBezier(new Vector2(-146.283997F, -272.600006F), new Vector2(-146.056F, -271.579987F), new Vector2(-146.056F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-146.056F, -268.723999F), new Vector2(-146.548004F, -267.325989F), new Vector2(-147.531998F, -266.234009F)); + builder.AddCubicBezier(new Vector2(-148.516006F, -265.141998F), new Vector2(-149.811996F, -264.596008F), new Vector2(-151.419998F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-152.5F, -264.596008F), new Vector2(-153.460007F, -264.847992F), new Vector2(-154.300003F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-148.468002F, -262.346008F)); + builder.AddCubicBezier(new Vector2(-147.436005F, -262.885986F), new Vector2(-146.613998F, -263.635986F), new Vector2(-146.001999F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-145.389999F, -265.556F), new Vector2(-145.048004F, -266.64801F), new Vector2(-144.975998F, -267.872009F)); + builder.AddLine(new Vector2(-144.975998F, -273.019989F)); + builder.AddCubicBezier(new Vector2(-145.048004F, -274.268005F), new Vector2(-145.395996F, -275.365997F), new Vector2(-146.020004F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-146.643997F, -277.261993F), new Vector2(-147.466003F, -278.006012F), new Vector2(-148.485992F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-149.505997F, -279.085999F), new Vector2(-150.664001F, -279.355988F), new Vector2(-151.960007F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-153.544006F, -279.355988F), new Vector2(-154.966003F, -278.959991F), new Vector2(-156.225998F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-157.485992F, -277.376007F), new Vector2(-158.481995F, -276.308014F), new Vector2(-159.214005F, -274.963989F)); + builder.AddCubicBezier(new Vector2(-159.945999F, -273.619995F), new Vector2(-160.311996F, -272.108002F), new Vector2(-160.311996F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-160.311996F, -268.747986F), new Vector2(-159.945999F, -267.235992F), new Vector2(-159.214005F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-158.481995F, -264.548004F), new Vector2(-157.485992F, -263.485992F), new Vector2(-156.225998F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-154.966003F, -261.925995F), new Vector2(-153.544006F, -261.536011F), new Vector2(-151.960007F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-150.664001F, -261.536011F), new Vector2(-149.5F, -261.806F), new Vector2(-148.468002F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1278() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-171.076004F, -261.895996F)); + builder.AddLine(new Vector2(-171.076004F, -272.876007F)); + builder.AddCubicBezier(new Vector2(-171.076004F, -274.220001F), new Vector2(-171.369995F, -275.372009F), new Vector2(-171.957993F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-172.546005F, -277.291992F), new Vector2(-173.332001F, -278.036011F), new Vector2(-174.315994F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-175.300003F, -279.09201F), new Vector2(-176.416F, -279.355988F), new Vector2(-177.664001F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-178.863998F, -279.355988F), new Vector2(-179.968002F, -279.085999F), new Vector2(-180.975998F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-181.983994F, -278.006012F), new Vector2(-182.806F, -277.261993F), new Vector2(-183.442001F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-184.078003F, -275.365997F), new Vector2(-184.432007F, -274.231995F), new Vector2(-184.503998F, -272.911987F)); + builder.AddLine(new Vector2(-182.667999F, -272.227997F)); + builder.AddCubicBezier(new Vector2(-182.667999F, -273.09201F), new Vector2(-182.475998F, -273.824005F), new Vector2(-182.091995F, -274.424011F)); + builder.AddCubicBezier(new Vector2(-181.707993F, -275.023987F), new Vector2(-181.197998F, -275.492004F), new Vector2(-180.561996F, -275.828003F)); + builder.AddCubicBezier(new Vector2(-179.925995F, -276.164001F), new Vector2(-179.212006F, -276.332001F), new Vector2(-178.419998F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-177.268005F, -276.332001F), new Vector2(-176.302002F, -275.966003F), new Vector2(-175.522003F, -275.234009F)); + builder.AddCubicBezier(new Vector2(-174.742004F, -274.502014F), new Vector2(-174.352005F, -273.5F), new Vector2(-174.352005F, -272.227997F)); + builder.AddLine(new Vector2(-174.352005F, -261.895996F)); + builder.AddLine(new Vector2(-171.076004F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-182.667999F, -261.895996F)); + builder.AddLine(new Vector2(-182.667999F, -272.911987F)); + builder.AddCubicBezier(new Vector2(-182.667999F, -274.231995F), new Vector2(-182.949997F, -275.372009F), new Vector2(-183.514008F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-184.078003F, -277.291992F), new Vector2(-184.845993F, -278.036011F), new Vector2(-185.817993F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-186.789993F, -279.09201F), new Vector2(-187.876007F, -279.355988F), new Vector2(-189.076004F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-190.300003F, -279.355988F), new Vector2(-191.404007F, -279.085999F), new Vector2(-192.388F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-193.371994F, -278.006012F), new Vector2(-194.145996F, -277.256012F), new Vector2(-194.710007F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-195.274002F, -275.335999F), new Vector2(-195.556F, -274.208008F), new Vector2(-195.556F, -272.911987F)); + builder.AddLine(new Vector2(-194.223999F, -272.227997F)); + builder.AddCubicBezier(new Vector2(-194.223999F, -273.09201F), new Vector2(-194.031998F, -273.824005F), new Vector2(-193.647995F, -274.424011F)); + builder.AddCubicBezier(new Vector2(-193.264008F, -275.023987F), new Vector2(-192.759995F, -275.492004F), new Vector2(-192.136002F, -275.828003F)); + builder.AddCubicBezier(new Vector2(-191.511993F, -276.164001F), new Vector2(-190.804001F, -276.332001F), new Vector2(-190.011993F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-188.835999F, -276.332001F), new Vector2(-187.858002F, -275.966003F), new Vector2(-187.078003F, -275.234009F)); + builder.AddCubicBezier(new Vector2(-186.298004F, -274.502014F), new Vector2(-185.908005F, -273.5F), new Vector2(-185.908005F, -272.227997F)); + builder.AddLine(new Vector2(-185.908005F, -261.895996F)); + builder.AddLine(new Vector2(-182.667999F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-194.223999F, -261.895996F)); + builder.AddLine(new Vector2(-194.223999F, -278.996002F)); + builder.AddLine(new Vector2(-197.464005F, -278.996002F)); + builder.AddLine(new Vector2(-197.464005F, -261.895996F)); + builder.AddLine(new Vector2(-194.223999F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1279() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-202.179993F, -261.895996F)); + builder.AddLine(new Vector2(-202.179993F, -278.996002F)); + builder.AddLine(new Vector2(-205.455994F, -278.996002F)); + builder.AddLine(new Vector2(-205.455994F, -274.820007F)); + builder.AddLine(new Vector2(-204.843994F, -270.679993F)); + builder.AddLine(new Vector2(-205.455994F, -266.503998F)); + builder.AddLine(new Vector2(-205.455994F, -261.895996F)); + builder.AddLine(new Vector2(-202.179993F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-213.483994F, -265.35199F)); + builder.AddCubicBezier(new Vector2(-214.324005F, -265.855988F), new Vector2(-214.977997F, -266.54599F), new Vector2(-215.445999F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-215.914001F, -268.298004F), new Vector2(-216.147995F, -269.312012F), new Vector2(-216.147995F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-216.147995F, -271.59201F), new Vector2(-215.914001F, -272.593994F), new Vector2(-215.445999F, -273.470001F)); + builder.AddCubicBezier(new Vector2(-214.977997F, -274.346008F), new Vector2(-214.330002F, -275.036011F), new Vector2(-213.501999F, -275.540009F)); + builder.AddCubicBezier(new Vector2(-212.673996F, -276.044006F), new Vector2(-211.720001F, -276.29599F), new Vector2(-210.639999F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-209.559998F, -276.29599F), new Vector2(-208.617996F, -276.049988F), new Vector2(-207.813995F, -275.558014F)); + builder.AddCubicBezier(new Vector2(-207.009995F, -275.06601F), new Vector2(-206.380005F, -274.376007F), new Vector2(-205.923996F, -273.488007F)); + builder.AddCubicBezier(new Vector2(-205.468002F, -272.600006F), new Vector2(-205.240005F, -271.579987F), new Vector2(-205.240005F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-205.240005F, -268.723999F), new Vector2(-205.731995F, -267.325989F), new Vector2(-206.716003F, -266.234009F)); + builder.AddCubicBezier(new Vector2(-207.699997F, -265.141998F), new Vector2(-208.996002F, -264.596008F), new Vector2(-210.604004F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-211.684006F, -264.596008F), new Vector2(-212.643997F, -264.847992F), new Vector2(-213.483994F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-207.651993F, -262.346008F)); + builder.AddCubicBezier(new Vector2(-206.619995F, -262.885986F), new Vector2(-205.798004F, -263.635986F), new Vector2(-205.186005F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-204.574005F, -265.556F), new Vector2(-204.231995F, -266.64801F), new Vector2(-204.160004F, -267.872009F)); + builder.AddLine(new Vector2(-204.160004F, -273.019989F)); + builder.AddCubicBezier(new Vector2(-204.231995F, -274.268005F), new Vector2(-204.580002F, -275.365997F), new Vector2(-205.203995F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-205.828003F, -277.261993F), new Vector2(-206.649994F, -278.006012F), new Vector2(-207.669998F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-208.690002F, -279.085999F), new Vector2(-209.848007F, -279.355988F), new Vector2(-211.143997F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-212.727997F, -279.355988F), new Vector2(-214.149994F, -278.959991F), new Vector2(-215.410004F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-216.669998F, -277.376007F), new Vector2(-217.666F, -276.308014F), new Vector2(-218.397995F, -274.963989F)); + builder.AddCubicBezier(new Vector2(-219.130005F, -273.619995F), new Vector2(-219.496002F, -272.108002F), new Vector2(-219.496002F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-219.496002F, -268.747986F), new Vector2(-219.130005F, -267.235992F), new Vector2(-218.397995F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-217.666F, -264.548004F), new Vector2(-216.669998F, -263.485992F), new Vector2(-215.410004F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-214.149994F, -261.925995F), new Vector2(-212.727997F, -261.536011F), new Vector2(-211.143997F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-209.848007F, -261.536011F), new Vector2(-208.684006F, -261.806F), new Vector2(-207.651993F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1280() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-227.919998F, -275.144012F)); + builder.AddCubicBezier(new Vector2(-227.151993F, -275.911987F), new Vector2(-226.167999F, -276.29599F), new Vector2(-224.968002F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-224.391998F, -276.29599F), new Vector2(-223.888F, -276.212006F), new Vector2(-223.455994F, -276.044006F)); + builder.AddCubicBezier(new Vector2(-223.024002F, -275.876007F), new Vector2(-222.628006F, -275.600006F), new Vector2(-222.268005F, -275.216003F)); + builder.AddLine(new Vector2(-220.143997F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-220.744003F, -278.108002F), new Vector2(-221.391998F, -278.605988F), new Vector2(-222.087997F, -278.906006F)); + builder.AddCubicBezier(new Vector2(-222.783997F, -279.205994F), new Vector2(-223.563995F, -279.355988F), new Vector2(-224.427994F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-226.324005F, -279.355988F), new Vector2(-227.776001F, -278.708008F), new Vector2(-228.783997F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-229.792007F, -276.115997F), new Vector2(-230.296005F, -274.376007F), new Vector2(-230.296005F, -272.191986F)); + builder.AddLine(new Vector2(-229.072006F, -271.615997F)); + builder.AddCubicBezier(new Vector2(-229.072006F, -273.200012F), new Vector2(-228.688004F, -274.376007F), new Vector2(-227.919998F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-229.072006F, -261.895996F)); + builder.AddLine(new Vector2(-229.072006F, -278.996002F)); + builder.AddLine(new Vector2(-232.311996F, -278.996002F)); + builder.AddLine(new Vector2(-232.311996F, -261.895996F)); + builder.AddLine(new Vector2(-229.072006F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1281() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-248.242004F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-249.070007F, -266.414001F), new Vector2(-249.718002F, -267.067993F), new Vector2(-250.186005F, -267.90799F)); + builder.AddCubicBezier(new Vector2(-250.654007F, -268.747986F), new Vector2(-250.888F, -269.708008F), new Vector2(-250.888F, -270.787994F)); + builder.AddCubicBezier(new Vector2(-250.888F, -271.868011F), new Vector2(-250.654007F, -272.821991F), new Vector2(-250.186005F, -273.649994F)); + builder.AddCubicBezier(new Vector2(-249.718002F, -274.477997F), new Vector2(-249.076004F, -275.126007F), new Vector2(-248.259995F, -275.593994F)); + builder.AddCubicBezier(new Vector2(-247.444F, -276.062012F), new Vector2(-246.496002F, -276.29599F), new Vector2(-245.416F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-244.360001F, -276.29599F), new Vector2(-243.429993F, -276.062012F), new Vector2(-242.626007F, -275.593994F)); + builder.AddCubicBezier(new Vector2(-241.822006F, -275.126007F), new Vector2(-241.197998F, -274.477997F), new Vector2(-240.753998F, -273.649994F)); + builder.AddCubicBezier(new Vector2(-240.309998F, -272.821991F), new Vector2(-240.087997F, -271.855988F), new Vector2(-240.087997F, -270.752014F)); + builder.AddCubicBezier(new Vector2(-240.087997F, -269.64801F), new Vector2(-240.309998F, -268.682007F), new Vector2(-240.753998F, -267.854004F)); + builder.AddCubicBezier(new Vector2(-241.197998F, -267.026001F), new Vector2(-241.815994F, -266.384003F), new Vector2(-242.608002F, -265.928009F)); + builder.AddCubicBezier(new Vector2(-243.399994F, -265.471985F), new Vector2(-244.335999F, -265.243988F), new Vector2(-245.416F, -265.243988F)); + builder.AddCubicBezier(new Vector2(-246.472F, -265.243988F), new Vector2(-247.414001F, -265.477997F), new Vector2(-248.242004F, -265.946014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-242.5F, -262.976013F)); + builder.AddCubicBezier(new Vector2(-241.468002F, -263.503998F), new Vector2(-240.645996F, -264.242004F), new Vector2(-240.033997F, -265.190002F)); + builder.AddCubicBezier(new Vector2(-239.421997F, -266.138F), new Vector2(-239.080002F, -267.235992F), new Vector2(-239.007996F, -268.484009F)); + builder.AddLine(new Vector2(-239.007996F, -273.019989F)); + builder.AddCubicBezier(new Vector2(-239.080002F, -274.291992F), new Vector2(-239.416F, -275.402008F), new Vector2(-240.016006F, -276.350006F)); + builder.AddCubicBezier(new Vector2(-240.615997F, -277.298004F), new Vector2(-241.438004F, -278.036011F), new Vector2(-242.481995F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-243.526001F, -279.09201F), new Vector2(-244.720001F, -279.355988F), new Vector2(-246.063995F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-247.600006F, -279.355988F), new Vector2(-248.992004F, -278.977997F), new Vector2(-250.240005F, -278.221985F)); + builder.AddCubicBezier(new Vector2(-251.488007F, -277.466003F), new Vector2(-252.466003F, -276.446014F), new Vector2(-253.173996F, -275.161987F)); + builder.AddCubicBezier(new Vector2(-253.882004F, -273.877991F), new Vector2(-254.235992F, -272.420013F), new Vector2(-254.235992F, -270.787994F)); + builder.AddCubicBezier(new Vector2(-254.235992F, -269.156006F), new Vector2(-253.876007F, -267.686005F), new Vector2(-253.156006F, -266.377991F)); + builder.AddCubicBezier(new Vector2(-252.436005F, -265.070007F), new Vector2(-251.457993F, -264.044006F), new Vector2(-250.222F, -263.299988F)); + builder.AddCubicBezier(new Vector2(-248.985992F, -262.556F), new Vector2(-247.587997F, -262.18399F), new Vector2(-246.028F, -262.18399F)); + builder.AddCubicBezier(new Vector2(-244.707993F, -262.18399F), new Vector2(-243.531998F, -262.447998F), new Vector2(-242.5F, -262.976013F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-241.330002F, -255.397995F)); + builder.AddCubicBezier(new Vector2(-239.973999F, -256.082001F), new Vector2(-238.917999F, -257.041992F), new Vector2(-238.162003F, -258.278015F)); + builder.AddCubicBezier(new Vector2(-237.406006F, -259.514008F), new Vector2(-237.028F, -260.947998F), new Vector2(-237.028F, -262.579987F)); + builder.AddLine(new Vector2(-237.028F, -278.996002F)); + builder.AddLine(new Vector2(-240.268005F, -278.996002F)); + builder.AddLine(new Vector2(-240.268005F, -274.496002F)); + builder.AddLine(new Vector2(-239.692001F, -270.679993F)); + builder.AddLine(new Vector2(-240.268005F, -266.828003F)); + builder.AddLine(new Vector2(-240.268005F, -262.579987F)); + builder.AddCubicBezier(new Vector2(-240.268005F, -261.019989F), new Vector2(-240.783997F, -259.778015F), new Vector2(-241.815994F, -258.854004F)); + builder.AddCubicBezier(new Vector2(-242.848007F, -257.929993F), new Vector2(-244.227997F, -257.467987F), new Vector2(-245.955994F, -257.467987F)); + builder.AddCubicBezier(new Vector2(-247.276001F, -257.467987F), new Vector2(-248.416F, -257.701996F), new Vector2(-249.376007F, -258.170013F)); + builder.AddCubicBezier(new Vector2(-250.335999F, -258.638F), new Vector2(-251.164001F, -259.31601F), new Vector2(-251.860001F, -260.20401F)); + builder.AddLine(new Vector2(-253.983994F, -258.079987F)); + builder.AddCubicBezier(new Vector2(-253.143997F, -256.903992F), new Vector2(-252.052002F, -255.992004F), new Vector2(-250.707993F, -255.343994F)); + builder.AddCubicBezier(new Vector2(-249.363998F, -254.695999F), new Vector2(-247.804001F, -254.371994F), new Vector2(-246.028F, -254.371994F)); + builder.AddCubicBezier(new Vector2(-244.251999F, -254.371994F), new Vector2(-242.686005F, -254.714005F), new Vector2(-241.330002F, -255.397995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1282() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-257.835999F, -261.895996F)); + builder.AddLine(new Vector2(-257.835999F, -278.996002F)); + builder.AddLine(new Vector2(-261.112F, -278.996002F)); + builder.AddLine(new Vector2(-261.112F, -274.820007F)); + builder.AddLine(new Vector2(-260.5F, -270.679993F)); + builder.AddLine(new Vector2(-261.112F, -266.503998F)); + builder.AddLine(new Vector2(-261.112F, -261.895996F)); + builder.AddLine(new Vector2(-257.835999F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-269.140015F, -265.35199F)); + builder.AddCubicBezier(new Vector2(-269.980011F, -265.855988F), new Vector2(-270.634003F, -266.54599F), new Vector2(-271.10199F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-271.570007F, -268.298004F), new Vector2(-271.803986F, -269.312012F), new Vector2(-271.803986F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-271.803986F, -271.59201F), new Vector2(-271.570007F, -272.593994F), new Vector2(-271.10199F, -273.470001F)); + builder.AddCubicBezier(new Vector2(-270.634003F, -274.346008F), new Vector2(-269.985992F, -275.036011F), new Vector2(-269.15799F, -275.540009F)); + builder.AddCubicBezier(new Vector2(-268.329987F, -276.044006F), new Vector2(-267.376007F, -276.29599F), new Vector2(-266.29599F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-265.216003F, -276.29599F), new Vector2(-264.273987F, -276.049988F), new Vector2(-263.470001F, -275.558014F)); + builder.AddCubicBezier(new Vector2(-262.665985F, -275.06601F), new Vector2(-262.036011F, -274.376007F), new Vector2(-261.579987F, -273.488007F)); + builder.AddCubicBezier(new Vector2(-261.123993F, -272.600006F), new Vector2(-260.895996F, -271.579987F), new Vector2(-260.895996F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-260.895996F, -268.723999F), new Vector2(-261.388F, -267.325989F), new Vector2(-262.372009F, -266.234009F)); + builder.AddCubicBezier(new Vector2(-263.355988F, -265.141998F), new Vector2(-264.652008F, -264.596008F), new Vector2(-266.26001F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-267.339996F, -264.596008F), new Vector2(-268.299988F, -264.847992F), new Vector2(-269.140015F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-263.308014F, -262.346008F)); + builder.AddCubicBezier(new Vector2(-262.276001F, -262.885986F), new Vector2(-261.45401F, -263.635986F), new Vector2(-260.84201F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-260.230011F, -265.556F), new Vector2(-259.888F, -266.64801F), new Vector2(-259.81601F, -267.872009F)); + builder.AddLine(new Vector2(-259.81601F, -273.019989F)); + builder.AddCubicBezier(new Vector2(-259.888F, -274.268005F), new Vector2(-260.235992F, -275.365997F), new Vector2(-260.859985F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-261.484009F, -277.261993F), new Vector2(-262.306F, -278.006012F), new Vector2(-263.325989F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-264.346008F, -279.085999F), new Vector2(-265.503998F, -279.355988F), new Vector2(-266.799988F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-268.384003F, -279.355988F), new Vector2(-269.806F, -278.959991F), new Vector2(-271.06601F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-272.325989F, -277.376007F), new Vector2(-273.321991F, -276.308014F), new Vector2(-274.053986F, -274.963989F)); + builder.AddCubicBezier(new Vector2(-274.786011F, -273.619995F), new Vector2(-275.152008F, -272.108002F), new Vector2(-275.152008F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-275.152008F, -268.747986F), new Vector2(-274.786011F, -267.235992F), new Vector2(-274.053986F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-273.321991F, -264.548004F), new Vector2(-272.325989F, -263.485992F), new Vector2(-271.06601F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-269.806F, -261.925995F), new Vector2(-268.384003F, -261.536011F), new Vector2(-266.799988F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-265.503998F, -261.536011F), new Vector2(-264.339996F, -261.806F), new Vector2(-263.308014F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1283() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-276.700012F, -276.044006F)); + builder.AddLine(new Vector2(-276.700012F, -278.996002F)); + builder.AddLine(new Vector2(-288.364014F, -278.996002F)); + builder.AddLine(new Vector2(-288.364014F, -276.044006F)); + builder.AddLine(new Vector2(-276.700012F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-280.911987F, -261.895996F)); + builder.AddLine(new Vector2(-280.911987F, -286.160004F)); + builder.AddLine(new Vector2(-284.152008F, -286.160004F)); + builder.AddLine(new Vector2(-284.152008F, -261.895996F)); + builder.AddLine(new Vector2(-280.911987F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1284() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-292.126007F, -262.940002F)); + builder.AddCubicBezier(new Vector2(-290.985992F, -263.876007F), new Vector2(-290.415985F, -265.14801F), new Vector2(-290.415985F, -266.756012F)); + builder.AddCubicBezier(new Vector2(-290.415985F, -267.812012F), new Vector2(-290.638F, -268.664001F), new Vector2(-291.082001F, -269.312012F)); + builder.AddCubicBezier(new Vector2(-291.526001F, -269.959991F), new Vector2(-292.096008F, -270.476013F), new Vector2(-292.791992F, -270.859985F)); + builder.AddCubicBezier(new Vector2(-293.488007F, -271.243988F), new Vector2(-294.220001F, -271.549988F), new Vector2(-294.988007F, -271.778015F)); + builder.AddCubicBezier(new Vector2(-295.756012F, -272.006012F), new Vector2(-296.493988F, -272.227997F), new Vector2(-297.201996F, -272.444F)); + builder.AddCubicBezier(new Vector2(-297.910004F, -272.660004F), new Vector2(-298.480011F, -272.924011F), new Vector2(-298.911987F, -273.235992F)); + builder.AddCubicBezier(new Vector2(-299.343994F, -273.548004F), new Vector2(-299.559998F, -273.992004F), new Vector2(-299.559998F, -274.567993F)); + builder.AddCubicBezier(new Vector2(-299.559998F, -275.119995F), new Vector2(-299.313995F, -275.563995F), new Vector2(-298.821991F, -275.899994F)); + builder.AddCubicBezier(new Vector2(-298.329987F, -276.235992F), new Vector2(-297.615997F, -276.403992F), new Vector2(-296.679993F, -276.403992F)); + builder.AddCubicBezier(new Vector2(-295.791992F, -276.403992F), new Vector2(-295F, -276.235992F), new Vector2(-294.303986F, -275.899994F)); + builder.AddCubicBezier(new Vector2(-293.608002F, -275.563995F), new Vector2(-293.007996F, -275.084015F), new Vector2(-292.503998F, -274.459991F)); + builder.AddLine(new Vector2(-290.415985F, -276.548004F)); + builder.AddCubicBezier(new Vector2(-291.088013F, -277.484009F), new Vector2(-291.946014F, -278.186005F), new Vector2(-292.98999F, -278.653992F)); + builder.AddCubicBezier(new Vector2(-294.033997F, -279.122009F), new Vector2(-295.227997F, -279.355988F), new Vector2(-296.571991F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-297.843994F, -279.355988F), new Vector2(-298.936005F, -279.152008F), new Vector2(-299.847992F, -278.743988F)); + builder.AddCubicBezier(new Vector2(-300.76001F, -278.335999F), new Vector2(-301.462006F, -277.753998F), new Vector2(-301.95401F, -276.997986F)); + builder.AddCubicBezier(new Vector2(-302.446014F, -276.242004F), new Vector2(-302.691986F, -275.347992F), new Vector2(-302.691986F, -274.31601F)); + builder.AddCubicBezier(new Vector2(-302.691986F, -273.283997F), new Vector2(-302.470001F, -272.450012F), new Vector2(-302.026001F, -271.813995F)); + builder.AddCubicBezier(new Vector2(-301.582001F, -271.178009F), new Vector2(-301.011993F, -270.679993F), new Vector2(-300.31601F, -270.320007F)); + builder.AddCubicBezier(new Vector2(-299.619995F, -269.959991F), new Vector2(-298.881989F, -269.671997F), new Vector2(-298.10199F, -269.455994F)); + builder.AddCubicBezier(new Vector2(-297.321991F, -269.23999F), new Vector2(-296.584015F, -269.018005F), new Vector2(-295.888F, -268.790009F)); + builder.AddCubicBezier(new Vector2(-295.191986F, -268.562012F), new Vector2(-294.622009F, -268.273987F), new Vector2(-294.178009F, -267.925995F)); + builder.AddCubicBezier(new Vector2(-293.734009F, -267.578003F), new Vector2(-293.511993F, -267.09201F), new Vector2(-293.511993F, -266.467987F)); + builder.AddCubicBezier(new Vector2(-293.511993F, -265.843994F), new Vector2(-293.787994F, -265.358002F), new Vector2(-294.339996F, -265.01001F)); + builder.AddCubicBezier(new Vector2(-294.891998F, -264.661987F), new Vector2(-295.671997F, -264.488007F), new Vector2(-296.679993F, -264.488007F)); + builder.AddCubicBezier(new Vector2(-297.687988F, -264.488007F), new Vector2(-298.600006F, -264.674011F), new Vector2(-299.415985F, -265.04599F)); + builder.AddCubicBezier(new Vector2(-300.231995F, -265.417999F), new Vector2(-300.951996F, -265.988007F), new Vector2(-301.575989F, -266.756012F)); + builder.AddLine(new Vector2(-303.664001F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-303.135986F, -264.019989F), new Vector2(-302.518005F, -263.462006F), new Vector2(-301.809998F, -262.993988F)); + builder.AddCubicBezier(new Vector2(-301.10199F, -262.526001F), new Vector2(-300.31601F, -262.165985F), new Vector2(-299.451996F, -261.914001F)); + builder.AddCubicBezier(new Vector2(-298.588013F, -261.661987F), new Vector2(-297.675995F, -261.536011F), new Vector2(-296.716003F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-294.79599F, -261.536011F), new Vector2(-293.265991F, -262.003998F), new Vector2(-292.126007F, -262.940002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1285() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-318.640015F, -261.895996F)); + builder.AddLine(new Vector2(-318.640015F, -278.996002F)); + builder.AddLine(new Vector2(-321.880005F, -278.996002F)); + builder.AddLine(new Vector2(-321.880005F, -261.895996F)); + builder.AddLine(new Vector2(-318.640015F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-306.544006F, -261.895996F)); + builder.AddLine(new Vector2(-306.544006F, -272.515991F)); + builder.AddCubicBezier(new Vector2(-306.544006F, -273.691986F), new Vector2(-306.832001F, -274.802002F), new Vector2(-307.40799F, -275.846008F)); + builder.AddCubicBezier(new Vector2(-307.984009F, -276.890015F), new Vector2(-308.769989F, -277.735992F), new Vector2(-309.765991F, -278.384003F)); + builder.AddCubicBezier(new Vector2(-310.761993F, -279.032013F), new Vector2(-311.90799F, -279.355988F), new Vector2(-313.20401F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-314.5F, -279.355988F), new Vector2(-315.664001F, -279.062012F), new Vector2(-316.696014F, -278.473999F)); + builder.AddCubicBezier(new Vector2(-317.727997F, -277.885986F), new Vector2(-318.532013F, -277.088013F), new Vector2(-319.108002F, -276.079987F)); + builder.AddCubicBezier(new Vector2(-319.68399F, -275.071991F), new Vector2(-319.971985F, -273.920013F), new Vector2(-319.971985F, -272.623993F)); + builder.AddLine(new Vector2(-318.640015F, -271.868011F)); + builder.AddCubicBezier(new Vector2(-318.640015F, -272.731995F), new Vector2(-318.447998F, -273.5F), new Vector2(-318.063995F, -274.171997F)); + builder.AddCubicBezier(new Vector2(-317.679993F, -274.843994F), new Vector2(-317.152008F, -275.372009F), new Vector2(-316.480011F, -275.756012F)); + builder.AddCubicBezier(new Vector2(-315.808014F, -276.140015F), new Vector2(-315.040009F, -276.332001F), new Vector2(-314.175995F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-312.880005F, -276.332001F), new Vector2(-311.829987F, -275.911987F), new Vector2(-311.026001F, -275.071991F)); + builder.AddCubicBezier(new Vector2(-310.221985F, -274.231995F), new Vector2(-309.820007F, -273.164001F), new Vector2(-309.820007F, -271.868011F)); + builder.AddLine(new Vector2(-309.820007F, -261.895996F)); + builder.AddLine(new Vector2(-306.544006F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1286() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-327.208008F, -261.895996F)); + builder.AddLine(new Vector2(-327.208008F, -286.880005F)); + builder.AddLine(new Vector2(-330.59201F, -286.880005F)); + builder.AddLine(new Vector2(-330.59201F, -261.895996F)); + builder.AddLine(new Vector2(-327.208008F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1287() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-346.503998F, -256.928009F)); + builder.AddLine(new Vector2(-344.09201F, -261.391998F)); + builder.AddCubicBezier(new Vector2(-343.779999F, -261.992004F), new Vector2(-343.570007F, -262.477997F), new Vector2(-343.462006F, -262.850006F)); + builder.AddCubicBezier(new Vector2(-343.354004F, -263.221985F), new Vector2(-343.299988F, -263.540009F), new Vector2(-343.299988F, -263.803986F)); + builder.AddCubicBezier(new Vector2(-343.299988F, -264.5F), new Vector2(-343.540009F, -265.082001F), new Vector2(-344.019989F, -265.549988F)); + builder.AddCubicBezier(new Vector2(-344.5F, -266.018005F), new Vector2(-345.052002F, -266.252014F), new Vector2(-345.675995F, -266.252014F)); + builder.AddCubicBezier(new Vector2(-346.372009F, -266.252014F), new Vector2(-346.947998F, -266.018005F), new Vector2(-347.403992F, -265.549988F)); + builder.AddCubicBezier(new Vector2(-347.859985F, -265.082001F), new Vector2(-348.088013F, -264.5F), new Vector2(-348.088013F, -263.803986F)); + builder.AddCubicBezier(new Vector2(-348.088013F, -263.179993F), new Vector2(-347.877991F, -262.65799F), new Vector2(-347.458008F, -262.238007F)); + builder.AddCubicBezier(new Vector2(-347.037994F, -261.817993F), new Vector2(-346.575989F, -261.608002F), new Vector2(-346.071991F, -261.608002F)); + builder.AddCubicBezier(new Vector2(-345.832001F, -261.608002F), new Vector2(-345.615997F, -261.691986F), new Vector2(-345.424011F, -261.859985F)); + builder.AddCubicBezier(new Vector2(-345.231995F, -262.028015F), new Vector2(-345.075989F, -262.243988F), new Vector2(-344.955994F, -262.507996F)); + builder.AddLine(new Vector2(-346.108002F, -262.220001F)); + builder.AddLine(new Vector2(-348.339996F, -257.936005F)); + builder.AddLine(new Vector2(-346.503998F, -256.928009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1288() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-362.631989F, -261.895996F)); + builder.AddLine(new Vector2(-362.631989F, -287.600006F)); + builder.AddLine(new Vector2(-365.872009F, -287.600006F)); + builder.AddLine(new Vector2(-365.872009F, -261.895996F)); + builder.AddLine(new Vector2(-362.631989F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-350.752014F, -261.895996F)); + builder.AddLine(new Vector2(-359.752014F, -271.652008F)); + builder.AddLine(new Vector2(-359.895996F, -269.779999F)); + builder.AddLine(new Vector2(-351.075989F, -278.996002F)); + builder.AddLine(new Vector2(-355.036011F, -278.996002F)); + builder.AddLine(new Vector2(-362.920013F, -270.644012F)); + builder.AddLine(new Vector2(-354.928009F, -261.895996F)); + builder.AddLine(new Vector2(-350.752014F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1289() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-381.279999F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-382.119995F, -265.928009F), new Vector2(-382.779999F, -266.618011F), new Vector2(-383.26001F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-383.73999F, -268.369995F), new Vector2(-383.980011F, -269.372009F), new Vector2(-383.980011F, -270.5F)); + builder.AddCubicBezier(new Vector2(-383.980011F, -271.604004F), new Vector2(-383.73999F, -272.588013F), new Vector2(-383.26001F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-382.779999F, -274.31601F), new Vector2(-382.119995F, -274.993988F), new Vector2(-381.279999F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-380.440002F, -275.977997F), new Vector2(-379.492004F, -276.223999F), new Vector2(-378.436005F, -276.223999F)); + builder.AddCubicBezier(new Vector2(-377.332001F, -276.223999F), new Vector2(-376.365997F, -275.977997F), new Vector2(-375.537994F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-374.709991F, -274.993988F), new Vector2(-374.049988F, -274.31601F), new Vector2(-373.558014F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-373.06601F, -272.588013F), new Vector2(-372.820007F, -271.604004F), new Vector2(-372.820007F, -270.5F)); + builder.AddCubicBezier(new Vector2(-372.820007F, -269.372009F), new Vector2(-373.059998F, -268.369995F), new Vector2(-373.540009F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-374.019989F, -266.618011F), new Vector2(-374.679993F, -265.928009F), new Vector2(-375.519989F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-376.359985F, -264.920013F), new Vector2(-377.332001F, -264.667999F), new Vector2(-378.436005F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-379.492004F, -264.667999F), new Vector2(-380.440002F, -264.920013F), new Vector2(-381.279999F, -265.424011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-373.881989F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-372.526001F, -263.515991F), new Vector2(-371.451996F, -264.589996F), new Vector2(-370.660004F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-369.868011F, -267.302002F), new Vector2(-369.471985F, -268.820007F), new Vector2(-369.471985F, -270.5F)); + builder.AddCubicBezier(new Vector2(-369.471985F, -272.156006F), new Vector2(-369.868011F, -273.656006F), new Vector2(-370.660004F, -275F)); + builder.AddCubicBezier(new Vector2(-371.451996F, -276.343994F), new Vector2(-372.526001F, -277.406006F), new Vector2(-373.881989F, -278.186005F)); + builder.AddCubicBezier(new Vector2(-375.238007F, -278.966003F), new Vector2(-376.756012F, -279.355988F), new Vector2(-378.436005F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-380.09201F, -279.355988F), new Vector2(-381.59201F, -278.959991F), new Vector2(-382.936005F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-384.279999F, -277.376007F), new Vector2(-385.347992F, -276.313995F), new Vector2(-386.140015F, -274.981995F)); + builder.AddCubicBezier(new Vector2(-386.932007F, -273.649994F), new Vector2(-387.328003F, -272.156006F), new Vector2(-387.328003F, -270.5F)); + builder.AddCubicBezier(new Vector2(-387.328003F, -268.820007F), new Vector2(-386.932007F, -267.302002F), new Vector2(-386.140015F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-385.347992F, -264.589996F), new Vector2(-384.279999F, -263.515991F), new Vector2(-382.936005F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-381.59201F, -261.932007F), new Vector2(-380.09201F, -261.536011F), new Vector2(-378.436005F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-376.756012F, -261.536011F), new Vector2(-375.238007F, -261.932007F), new Vector2(-373.881989F, -262.723999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1290() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-384.951996F, -283.783997F)); + builder.AddLine(new Vector2(-384.951996F, -286.880005F)); + builder.AddLine(new Vector2(-405.291992F, -286.880005F)); + builder.AddLine(new Vector2(-405.291992F, -283.783997F)); + builder.AddLine(new Vector2(-384.951996F, -283.783997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-393.411987F, -261.895996F)); + builder.AddLine(new Vector2(-393.411987F, -286.160004F)); + builder.AddLine(new Vector2(-396.832001F, -286.160004F)); + builder.AddLine(new Vector2(-396.832001F, -261.895996F)); + builder.AddLine(new Vector2(-393.411987F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1291() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-418.68399F, -261.895996F)); + builder.AddLine(new Vector2(-418.68399F, -287.600006F)); + builder.AddLine(new Vector2(-421.924011F, -287.600006F)); + builder.AddLine(new Vector2(-421.924011F, -261.895996F)); + builder.AddLine(new Vector2(-418.68399F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-406.803986F, -261.895996F)); + builder.AddLine(new Vector2(-415.803986F, -271.652008F)); + builder.AddLine(new Vector2(-415.947998F, -269.779999F)); + builder.AddLine(new Vector2(-407.127991F, -278.996002F)); + builder.AddLine(new Vector2(-411.088013F, -278.996002F)); + builder.AddLine(new Vector2(-418.971985F, -270.644012F)); + builder.AddLine(new Vector2(-410.980011F, -261.895996F)); + builder.AddLine(new Vector2(-406.803986F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1292() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-426.855988F, -283.01001F)); + builder.AddCubicBezier(new Vector2(-426.471985F, -283.406006F), new Vector2(-426.279999F, -283.903992F), new Vector2(-426.279999F, -284.503998F)); + builder.AddCubicBezier(new Vector2(-426.279999F, -285.079987F), new Vector2(-426.471985F, -285.56601F), new Vector2(-426.855988F, -285.962006F)); + builder.AddCubicBezier(new Vector2(-427.23999F, -286.358002F), new Vector2(-427.731995F, -286.556F), new Vector2(-428.332001F, -286.556F)); + builder.AddCubicBezier(new Vector2(-428.932007F, -286.556F), new Vector2(-429.424011F, -286.358002F), new Vector2(-429.808014F, -285.962006F)); + builder.AddCubicBezier(new Vector2(-430.191986F, -285.56601F), new Vector2(-430.384003F, -285.079987F), new Vector2(-430.384003F, -284.503998F)); + builder.AddCubicBezier(new Vector2(-430.384003F, -283.903992F), new Vector2(-430.191986F, -283.406006F), new Vector2(-429.808014F, -283.01001F)); + builder.AddCubicBezier(new Vector2(-429.424011F, -282.614014F), new Vector2(-428.932007F, -282.415985F), new Vector2(-428.332001F, -282.415985F)); + builder.AddCubicBezier(new Vector2(-427.731995F, -282.415985F), new Vector2(-427.23999F, -282.614014F), new Vector2(-426.855988F, -283.01001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-426.712006F, -261.895996F)); + builder.AddLine(new Vector2(-426.712006F, -278.996002F)); + builder.AddLine(new Vector2(-429.988007F, -278.996002F)); + builder.AddLine(new Vector2(-429.988007F, -261.895996F)); + builder.AddLine(new Vector2(-426.712006F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1293() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-433.444F, -283.783997F)); + builder.AddLine(new Vector2(-433.444F, -286.880005F)); + builder.AddLine(new Vector2(-453.783997F, -286.880005F)); + builder.AddLine(new Vector2(-453.783997F, -283.783997F)); + builder.AddLine(new Vector2(-433.444F, -283.783997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-441.903992F, -261.895996F)); + builder.AddLine(new Vector2(-441.903992F, -286.160004F)); + builder.AddLine(new Vector2(-445.324005F, -286.160004F)); + builder.AddLine(new Vector2(-445.324005F, -261.895996F)); + builder.AddLine(new Vector2(-441.903992F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1294() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-463.756012F, -261.895996F)); + builder.AddLine(new Vector2(-463.756012F, -272.876007F)); + builder.AddCubicBezier(new Vector2(-463.756012F, -274.220001F), new Vector2(-464.049988F, -275.372009F), new Vector2(-464.638F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-465.226013F, -277.291992F), new Vector2(-466.011993F, -278.036011F), new Vector2(-466.996002F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-467.980011F, -279.09201F), new Vector2(-469.096008F, -279.355988F), new Vector2(-470.343994F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-471.544006F, -279.355988F), new Vector2(-472.64801F, -279.085999F), new Vector2(-473.656006F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-474.664001F, -278.006012F), new Vector2(-475.485992F, -277.261993F), new Vector2(-476.122009F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-476.757996F, -275.365997F), new Vector2(-477.112F, -274.231995F), new Vector2(-477.18399F, -272.911987F)); + builder.AddLine(new Vector2(-475.347992F, -272.227997F)); + builder.AddCubicBezier(new Vector2(-475.347992F, -273.09201F), new Vector2(-475.156006F, -273.824005F), new Vector2(-474.772003F, -274.424011F)); + builder.AddCubicBezier(new Vector2(-474.388F, -275.023987F), new Vector2(-473.877991F, -275.492004F), new Vector2(-473.242004F, -275.828003F)); + builder.AddCubicBezier(new Vector2(-472.605988F, -276.164001F), new Vector2(-471.891998F, -276.332001F), new Vector2(-471.100006F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-469.947998F, -276.332001F), new Vector2(-468.981995F, -275.966003F), new Vector2(-468.201996F, -275.234009F)); + builder.AddCubicBezier(new Vector2(-467.421997F, -274.502014F), new Vector2(-467.032013F, -273.5F), new Vector2(-467.032013F, -272.227997F)); + builder.AddLine(new Vector2(-467.032013F, -261.895996F)); + builder.AddLine(new Vector2(-463.756012F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-475.347992F, -261.895996F)); + builder.AddLine(new Vector2(-475.347992F, -272.911987F)); + builder.AddCubicBezier(new Vector2(-475.347992F, -274.231995F), new Vector2(-475.630005F, -275.372009F), new Vector2(-476.194F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-476.757996F, -277.291992F), new Vector2(-477.526001F, -278.036011F), new Vector2(-478.497986F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-479.470001F, -279.09201F), new Vector2(-480.556F, -279.355988F), new Vector2(-481.756012F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-482.980011F, -279.355988F), new Vector2(-484.084015F, -279.085999F), new Vector2(-485.067993F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-486.052002F, -278.006012F), new Vector2(-486.825989F, -277.256012F), new Vector2(-487.390015F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-487.95401F, -275.335999F), new Vector2(-488.235992F, -274.208008F), new Vector2(-488.235992F, -272.911987F)); + builder.AddLine(new Vector2(-486.903992F, -272.227997F)); + builder.AddCubicBezier(new Vector2(-486.903992F, -273.09201F), new Vector2(-486.712006F, -273.824005F), new Vector2(-486.328003F, -274.424011F)); + builder.AddCubicBezier(new Vector2(-485.944F, -275.023987F), new Vector2(-485.440002F, -275.492004F), new Vector2(-484.81601F, -275.828003F)); + builder.AddCubicBezier(new Vector2(-484.191986F, -276.164001F), new Vector2(-483.484009F, -276.332001F), new Vector2(-482.691986F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-481.515991F, -276.332001F), new Vector2(-480.537994F, -275.966003F), new Vector2(-479.757996F, -275.234009F)); + builder.AddCubicBezier(new Vector2(-478.977997F, -274.502014F), new Vector2(-478.588013F, -273.5F), new Vector2(-478.588013F, -272.227997F)); + builder.AddLine(new Vector2(-478.588013F, -261.895996F)); + builder.AddLine(new Vector2(-475.347992F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-486.903992F, -261.895996F)); + builder.AddLine(new Vector2(-486.903992F, -278.996002F)); + builder.AddLine(new Vector2(-490.144012F, -278.996002F)); + builder.AddLine(new Vector2(-490.144012F, -261.895996F)); + builder.AddLine(new Vector2(-486.903992F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1295() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-505.552002F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-506.391998F, -265.928009F), new Vector2(-507.052002F, -266.618011F), new Vector2(-507.532013F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-508.011993F, -268.369995F), new Vector2(-508.252014F, -269.372009F), new Vector2(-508.252014F, -270.5F)); + builder.AddCubicBezier(new Vector2(-508.252014F, -271.604004F), new Vector2(-508.011993F, -272.588013F), new Vector2(-507.532013F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-507.052002F, -274.31601F), new Vector2(-506.391998F, -274.993988F), new Vector2(-505.552002F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-504.712006F, -275.977997F), new Vector2(-503.764008F, -276.223999F), new Vector2(-502.708008F, -276.223999F)); + builder.AddCubicBezier(new Vector2(-501.604004F, -276.223999F), new Vector2(-500.638F, -275.977997F), new Vector2(-499.809998F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-498.981995F, -274.993988F), new Vector2(-498.321991F, -274.31601F), new Vector2(-497.829987F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-497.338013F, -272.588013F), new Vector2(-497.09201F, -271.604004F), new Vector2(-497.09201F, -270.5F)); + builder.AddCubicBezier(new Vector2(-497.09201F, -269.372009F), new Vector2(-497.332001F, -268.369995F), new Vector2(-497.812012F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-498.291992F, -266.618011F), new Vector2(-498.951996F, -265.928009F), new Vector2(-499.791992F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-500.631989F, -264.920013F), new Vector2(-501.604004F, -264.667999F), new Vector2(-502.708008F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-503.764008F, -264.667999F), new Vector2(-504.712006F, -264.920013F), new Vector2(-505.552002F, -265.424011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-498.153992F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-496.798004F, -263.515991F), new Vector2(-495.723999F, -264.589996F), new Vector2(-494.932007F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-494.140015F, -267.302002F), new Vector2(-493.743988F, -268.820007F), new Vector2(-493.743988F, -270.5F)); + builder.AddCubicBezier(new Vector2(-493.743988F, -272.156006F), new Vector2(-494.140015F, -273.656006F), new Vector2(-494.932007F, -275F)); + builder.AddCubicBezier(new Vector2(-495.723999F, -276.343994F), new Vector2(-496.798004F, -277.406006F), new Vector2(-498.153992F, -278.186005F)); + builder.AddCubicBezier(new Vector2(-499.51001F, -278.966003F), new Vector2(-501.028015F, -279.355988F), new Vector2(-502.708008F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-504.364014F, -279.355988F), new Vector2(-505.864014F, -278.959991F), new Vector2(-507.208008F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-508.552002F, -277.376007F), new Vector2(-509.619995F, -276.313995F), new Vector2(-510.411987F, -274.981995F)); + builder.AddCubicBezier(new Vector2(-511.20401F, -273.649994F), new Vector2(-511.600006F, -272.156006F), new Vector2(-511.600006F, -270.5F)); + builder.AddCubicBezier(new Vector2(-511.600006F, -268.820007F), new Vector2(-511.20401F, -267.302002F), new Vector2(-510.411987F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-509.619995F, -264.589996F), new Vector2(-508.552002F, -263.515991F), new Vector2(-507.208008F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-505.864014F, -261.932007F), new Vector2(-504.364014F, -261.536011F), new Vector2(-502.708008F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-501.028015F, -261.536011F), new Vector2(-499.51001F, -261.932007F), new Vector2(-498.153992F, -262.723999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1296() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-519.987976F, -275.144012F)); + builder.AddCubicBezier(new Vector2(-519.219971F, -275.911987F), new Vector2(-518.236023F, -276.29599F), new Vector2(-517.036011F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-516.460022F, -276.29599F), new Vector2(-515.955994F, -276.212006F), new Vector2(-515.523987F, -276.044006F)); + builder.AddCubicBezier(new Vector2(-515.09198F, -275.876007F), new Vector2(-514.695984F, -275.600006F), new Vector2(-514.335999F, -275.216003F)); + builder.AddLine(new Vector2(-512.211975F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-512.812012F, -278.108002F), new Vector2(-513.460022F, -278.605988F), new Vector2(-514.156006F, -278.906006F)); + builder.AddCubicBezier(new Vector2(-514.85199F, -279.205994F), new Vector2(-515.632019F, -279.355988F), new Vector2(-516.495972F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-518.392029F, -279.355988F), new Vector2(-519.843994F, -278.708008F), new Vector2(-520.85199F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-521.859985F, -276.115997F), new Vector2(-522.364014F, -274.376007F), new Vector2(-522.364014F, -272.191986F)); + builder.AddLine(new Vector2(-521.140015F, -271.615997F)); + builder.AddCubicBezier(new Vector2(-521.140015F, -273.200012F), new Vector2(-520.755981F, -274.376007F), new Vector2(-519.987976F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-521.140015F, -261.895996F)); + builder.AddLine(new Vector2(-521.140015F, -278.996002F)); + builder.AddLine(new Vector2(-524.380005F, -278.996002F)); + builder.AddLine(new Vector2(-524.380005F, -261.895996F)); + builder.AddLine(new Vector2(-521.140015F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1297() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-526.971985F, -276.044006F)); + builder.AddLine(new Vector2(-526.971985F, -278.996002F)); + builder.AddLine(new Vector2(-539.859985F, -278.996002F)); + builder.AddLine(new Vector2(-539.859985F, -276.044006F)); + builder.AddLine(new Vector2(-526.971985F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-532.40802F, -261.895996F)); + builder.AddLine(new Vector2(-532.40802F, -281.552002F)); + builder.AddCubicBezier(new Vector2(-532.40802F, -282.608002F), new Vector2(-532.125977F, -283.429993F), new Vector2(-531.562012F, -284.018005F)); + builder.AddCubicBezier(new Vector2(-530.997986F, -284.605988F), new Vector2(-530.200012F, -284.899994F), new Vector2(-529.16803F, -284.899994F)); + builder.AddCubicBezier(new Vector2(-528.616028F, -284.899994F), new Vector2(-528.14801F, -284.81601F), new Vector2(-527.763977F, -284.64801F)); + builder.AddCubicBezier(new Vector2(-527.380005F, -284.480011F), new Vector2(-527.031982F, -284.227997F), new Vector2(-526.719971F, -283.891998F)); + builder.AddLine(new Vector2(-524.596008F, -285.980011F)); + builder.AddCubicBezier(new Vector2(-525.195984F, -286.627991F), new Vector2(-525.856018F, -287.119995F), new Vector2(-526.575989F, -287.455994F)); + builder.AddCubicBezier(new Vector2(-527.296021F, -287.791992F), new Vector2(-528.14801F, -287.959991F), new Vector2(-529.132019F, -287.959991F)); + builder.AddCubicBezier(new Vector2(-530.427979F, -287.959991F), new Vector2(-531.567993F, -287.68399F), new Vector2(-532.552002F, -287.131989F)); + builder.AddCubicBezier(new Vector2(-533.536011F, -286.579987F), new Vector2(-534.304016F, -285.824005F), new Vector2(-534.856018F, -284.864014F)); + builder.AddCubicBezier(new Vector2(-535.40802F, -283.903992F), new Vector2(-535.684021F, -282.799988F), new Vector2(-535.684021F, -281.552002F)); + builder.AddLine(new Vector2(-535.684021F, -261.895996F)); + builder.AddLine(new Vector2(-532.40802F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1298() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-561.478027F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-562.30603F, -266.414001F), new Vector2(-562.953979F, -267.067993F), new Vector2(-563.421997F, -267.90799F)); + builder.AddCubicBezier(new Vector2(-563.890015F, -268.747986F), new Vector2(-564.124023F, -269.708008F), new Vector2(-564.124023F, -270.787994F)); + builder.AddCubicBezier(new Vector2(-564.124023F, -271.868011F), new Vector2(-563.890015F, -272.821991F), new Vector2(-563.421997F, -273.649994F)); + builder.AddCubicBezier(new Vector2(-562.953979F, -274.477997F), new Vector2(-562.312012F, -275.126007F), new Vector2(-561.495972F, -275.593994F)); + builder.AddCubicBezier(new Vector2(-560.679993F, -276.062012F), new Vector2(-559.731995F, -276.29599F), new Vector2(-558.651978F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-557.596008F, -276.29599F), new Vector2(-556.666016F, -276.062012F), new Vector2(-555.862F, -275.593994F)); + builder.AddCubicBezier(new Vector2(-555.057983F, -275.126007F), new Vector2(-554.434021F, -274.477997F), new Vector2(-553.98999F, -273.649994F)); + builder.AddCubicBezier(new Vector2(-553.546021F, -272.821991F), new Vector2(-553.323975F, -271.855988F), new Vector2(-553.323975F, -270.752014F)); + builder.AddCubicBezier(new Vector2(-553.323975F, -269.64801F), new Vector2(-553.546021F, -268.682007F), new Vector2(-553.98999F, -267.854004F)); + builder.AddCubicBezier(new Vector2(-554.434021F, -267.026001F), new Vector2(-555.052002F, -266.384003F), new Vector2(-555.843994F, -265.928009F)); + builder.AddCubicBezier(new Vector2(-556.635986F, -265.471985F), new Vector2(-557.572021F, -265.243988F), new Vector2(-558.651978F, -265.243988F)); + builder.AddCubicBezier(new Vector2(-559.708008F, -265.243988F), new Vector2(-560.650024F, -265.477997F), new Vector2(-561.478027F, -265.946014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-555.736023F, -262.976013F)); + builder.AddCubicBezier(new Vector2(-554.703979F, -263.503998F), new Vector2(-553.882019F, -264.242004F), new Vector2(-553.27002F, -265.190002F)); + builder.AddCubicBezier(new Vector2(-552.65802F, -266.138F), new Vector2(-552.315979F, -267.235992F), new Vector2(-552.244019F, -268.484009F)); + builder.AddLine(new Vector2(-552.244019F, -273.019989F)); + builder.AddCubicBezier(new Vector2(-552.315979F, -274.291992F), new Vector2(-552.651978F, -275.402008F), new Vector2(-553.252014F, -276.350006F)); + builder.AddCubicBezier(new Vector2(-553.85199F, -277.298004F), new Vector2(-554.674011F, -278.036011F), new Vector2(-555.718018F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-556.762024F, -279.09201F), new Vector2(-557.955994F, -279.355988F), new Vector2(-559.299988F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-560.835999F, -279.355988F), new Vector2(-562.228027F, -278.977997F), new Vector2(-563.476013F, -278.221985F)); + builder.AddCubicBezier(new Vector2(-564.723999F, -277.466003F), new Vector2(-565.702026F, -276.446014F), new Vector2(-566.409973F, -275.161987F)); + builder.AddCubicBezier(new Vector2(-567.117981F, -273.877991F), new Vector2(-567.471985F, -272.420013F), new Vector2(-567.471985F, -270.787994F)); + builder.AddCubicBezier(new Vector2(-567.471985F, -269.156006F), new Vector2(-567.112F, -267.686005F), new Vector2(-566.392029F, -266.377991F)); + builder.AddCubicBezier(new Vector2(-565.671997F, -265.070007F), new Vector2(-564.69397F, -264.044006F), new Vector2(-563.458008F, -263.299988F)); + builder.AddCubicBezier(new Vector2(-562.221985F, -262.556F), new Vector2(-560.823975F, -262.18399F), new Vector2(-559.263977F, -262.18399F)); + builder.AddCubicBezier(new Vector2(-557.94397F, -262.18399F), new Vector2(-556.768005F, -262.447998F), new Vector2(-555.736023F, -262.976013F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-554.565979F, -255.397995F)); + builder.AddCubicBezier(new Vector2(-553.210022F, -256.082001F), new Vector2(-552.153992F, -257.041992F), new Vector2(-551.39801F, -258.278015F)); + builder.AddCubicBezier(new Vector2(-550.642029F, -259.514008F), new Vector2(-550.263977F, -260.947998F), new Vector2(-550.263977F, -262.579987F)); + builder.AddLine(new Vector2(-550.263977F, -278.996002F)); + builder.AddLine(new Vector2(-553.504028F, -278.996002F)); + builder.AddLine(new Vector2(-553.504028F, -274.496002F)); + builder.AddLine(new Vector2(-552.927979F, -270.679993F)); + builder.AddLine(new Vector2(-553.504028F, -266.828003F)); + builder.AddLine(new Vector2(-553.504028F, -262.579987F)); + builder.AddCubicBezier(new Vector2(-553.504028F, -261.019989F), new Vector2(-554.02002F, -259.778015F), new Vector2(-555.052002F, -258.854004F)); + builder.AddCubicBezier(new Vector2(-556.083984F, -257.929993F), new Vector2(-557.463989F, -257.467987F), new Vector2(-559.192017F, -257.467987F)); + builder.AddCubicBezier(new Vector2(-560.512024F, -257.467987F), new Vector2(-561.651978F, -257.701996F), new Vector2(-562.612F, -258.170013F)); + builder.AddCubicBezier(new Vector2(-563.572021F, -258.638F), new Vector2(-564.400024F, -259.31601F), new Vector2(-565.096008F, -260.20401F)); + builder.AddLine(new Vector2(-567.219971F, -258.079987F)); + builder.AddCubicBezier(new Vector2(-566.380005F, -256.903992F), new Vector2(-565.288025F, -255.992004F), new Vector2(-563.94397F, -255.343994F)); + builder.AddCubicBezier(new Vector2(-562.599976F, -254.695999F), new Vector2(-561.039978F, -254.371994F), new Vector2(-559.263977F, -254.371994F)); + builder.AddCubicBezier(new Vector2(-557.487976F, -254.371994F), new Vector2(-555.921997F, -254.714005F), new Vector2(-554.565979F, -255.397995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1299() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-582.843994F, -261.895996F)); + builder.AddLine(new Vector2(-582.843994F, -278.996002F)); + builder.AddLine(new Vector2(-586.083984F, -278.996002F)); + builder.AddLine(new Vector2(-586.083984F, -261.895996F)); + builder.AddLine(new Vector2(-582.843994F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-570.747986F, -261.895996F)); + builder.AddLine(new Vector2(-570.747986F, -272.515991F)); + builder.AddCubicBezier(new Vector2(-570.747986F, -273.691986F), new Vector2(-571.036011F, -274.802002F), new Vector2(-571.612F, -275.846008F)); + builder.AddCubicBezier(new Vector2(-572.187988F, -276.890015F), new Vector2(-572.973999F, -277.735992F), new Vector2(-573.969971F, -278.384003F)); + builder.AddCubicBezier(new Vector2(-574.966003F, -279.032013F), new Vector2(-576.112F, -279.355988F), new Vector2(-577.40802F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-578.703979F, -279.355988F), new Vector2(-579.867981F, -279.062012F), new Vector2(-580.900024F, -278.473999F)); + builder.AddCubicBezier(new Vector2(-581.932007F, -277.885986F), new Vector2(-582.736023F, -277.088013F), new Vector2(-583.312012F, -276.079987F)); + builder.AddCubicBezier(new Vector2(-583.888F, -275.071991F), new Vector2(-584.176025F, -273.920013F), new Vector2(-584.176025F, -272.623993F)); + builder.AddLine(new Vector2(-582.843994F, -271.868011F)); + builder.AddCubicBezier(new Vector2(-582.843994F, -272.731995F), new Vector2(-582.651978F, -273.5F), new Vector2(-582.268005F, -274.171997F)); + builder.AddCubicBezier(new Vector2(-581.883972F, -274.843994F), new Vector2(-581.356018F, -275.372009F), new Vector2(-580.684021F, -275.756012F)); + builder.AddCubicBezier(new Vector2(-580.012024F, -276.140015F), new Vector2(-579.244019F, -276.332001F), new Vector2(-578.380005F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-577.083984F, -276.332001F), new Vector2(-576.033997F, -275.911987F), new Vector2(-575.22998F, -275.071991F)); + builder.AddCubicBezier(new Vector2(-574.426025F, -274.231995F), new Vector2(-574.023987F, -273.164001F), new Vector2(-574.023987F, -271.868011F)); + builder.AddLine(new Vector2(-574.023987F, -261.895996F)); + builder.AddLine(new Vector2(-570.747986F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1300() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-591.015991F, -283.01001F)); + builder.AddCubicBezier(new Vector2(-590.632019F, -283.406006F), new Vector2(-590.440002F, -283.903992F), new Vector2(-590.440002F, -284.503998F)); + builder.AddCubicBezier(new Vector2(-590.440002F, -285.079987F), new Vector2(-590.632019F, -285.56601F), new Vector2(-591.015991F, -285.962006F)); + builder.AddCubicBezier(new Vector2(-591.400024F, -286.358002F), new Vector2(-591.892029F, -286.556F), new Vector2(-592.492004F, -286.556F)); + builder.AddCubicBezier(new Vector2(-593.09198F, -286.556F), new Vector2(-593.583984F, -286.358002F), new Vector2(-593.968018F, -285.962006F)); + builder.AddCubicBezier(new Vector2(-594.35199F, -285.56601F), new Vector2(-594.544006F, -285.079987F), new Vector2(-594.544006F, -284.503998F)); + builder.AddCubicBezier(new Vector2(-594.544006F, -283.903992F), new Vector2(-594.35199F, -283.406006F), new Vector2(-593.968018F, -283.01001F)); + builder.AddCubicBezier(new Vector2(-593.583984F, -282.614014F), new Vector2(-593.09198F, -282.415985F), new Vector2(-592.492004F, -282.415985F)); + builder.AddCubicBezier(new Vector2(-591.892029F, -282.415985F), new Vector2(-591.400024F, -282.614014F), new Vector2(-591.015991F, -283.01001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-590.872009F, -261.895996F)); + builder.AddLine(new Vector2(-590.872009F, -278.996002F)); + builder.AddLine(new Vector2(-594.14801F, -278.996002F)); + builder.AddLine(new Vector2(-594.14801F, -261.895996F)); + builder.AddLine(new Vector2(-590.872009F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1301() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-597.315979F, -276.044006F)); + builder.AddLine(new Vector2(-597.315979F, -278.996002F)); + builder.AddLine(new Vector2(-608.97998F, -278.996002F)); + builder.AddLine(new Vector2(-608.97998F, -276.044006F)); + builder.AddLine(new Vector2(-597.315979F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-601.528015F, -261.895996F)); + builder.AddLine(new Vector2(-601.528015F, -286.160004F)); + builder.AddLine(new Vector2(-604.768005F, -286.160004F)); + builder.AddLine(new Vector2(-604.768005F, -261.895996F)); + builder.AddLine(new Vector2(-601.528015F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1302() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-617.403992F, -275.144012F)); + builder.AddCubicBezier(new Vector2(-616.635986F, -275.911987F), new Vector2(-615.651978F, -276.29599F), new Vector2(-614.452026F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-613.875977F, -276.29599F), new Vector2(-613.372009F, -276.212006F), new Vector2(-612.940002F, -276.044006F)); + builder.AddCubicBezier(new Vector2(-612.507996F, -275.876007F), new Vector2(-612.112F, -275.600006F), new Vector2(-611.752014F, -275.216003F)); + builder.AddLine(new Vector2(-609.627991F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-610.228027F, -278.108002F), new Vector2(-610.875977F, -278.605988F), new Vector2(-611.572021F, -278.906006F)); + builder.AddCubicBezier(new Vector2(-612.268005F, -279.205994F), new Vector2(-613.047974F, -279.355988F), new Vector2(-613.911987F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-615.807983F, -279.355988F), new Vector2(-617.26001F, -278.708008F), new Vector2(-618.268005F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-619.276001F, -276.115997F), new Vector2(-619.780029F, -274.376007F), new Vector2(-619.780029F, -272.191986F)); + builder.AddLine(new Vector2(-618.55603F, -271.615997F)); + builder.AddCubicBezier(new Vector2(-618.55603F, -273.200012F), new Vector2(-618.171997F, -274.376007F), new Vector2(-617.403992F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-618.55603F, -261.895996F)); + builder.AddLine(new Vector2(-618.55603F, -278.996002F)); + builder.AddLine(new Vector2(-621.796021F, -278.996002F)); + builder.AddLine(new Vector2(-621.796021F, -261.895996F)); + builder.AddLine(new Vector2(-618.55603F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1303() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-626.512024F, -261.895996F)); + builder.AddLine(new Vector2(-626.512024F, -278.996002F)); + builder.AddLine(new Vector2(-629.788025F, -278.996002F)); + builder.AddLine(new Vector2(-629.788025F, -274.820007F)); + builder.AddLine(new Vector2(-629.176025F, -270.679993F)); + builder.AddLine(new Vector2(-629.788025F, -266.503998F)); + builder.AddLine(new Vector2(-629.788025F, -261.895996F)); + builder.AddLine(new Vector2(-626.512024F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-637.815979F, -265.35199F)); + builder.AddCubicBezier(new Vector2(-638.656006F, -265.855988F), new Vector2(-639.309998F, -266.54599F), new Vector2(-639.778015F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-640.245972F, -268.298004F), new Vector2(-640.47998F, -269.312012F), new Vector2(-640.47998F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-640.47998F, -271.59201F), new Vector2(-640.245972F, -272.593994F), new Vector2(-639.778015F, -273.470001F)); + builder.AddCubicBezier(new Vector2(-639.309998F, -274.346008F), new Vector2(-638.661987F, -275.036011F), new Vector2(-637.833984F, -275.540009F)); + builder.AddCubicBezier(new Vector2(-637.005981F, -276.044006F), new Vector2(-636.052002F, -276.29599F), new Vector2(-634.971985F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-633.892029F, -276.29599F), new Vector2(-632.950012F, -276.049988F), new Vector2(-632.145996F, -275.558014F)); + builder.AddCubicBezier(new Vector2(-631.34198F, -275.06601F), new Vector2(-630.711975F, -274.376007F), new Vector2(-630.255981F, -273.488007F)); + builder.AddCubicBezier(new Vector2(-629.799988F, -272.600006F), new Vector2(-629.572021F, -271.579987F), new Vector2(-629.572021F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-629.572021F, -268.723999F), new Vector2(-630.064026F, -267.325989F), new Vector2(-631.047974F, -266.234009F)); + builder.AddCubicBezier(new Vector2(-632.031982F, -265.141998F), new Vector2(-633.328003F, -264.596008F), new Vector2(-634.935974F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-636.015991F, -264.596008F), new Vector2(-636.976013F, -264.847992F), new Vector2(-637.815979F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-631.984009F, -262.346008F)); + builder.AddCubicBezier(new Vector2(-630.952026F, -262.885986F), new Vector2(-630.130005F, -263.635986F), new Vector2(-629.518005F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-628.906006F, -265.556F), new Vector2(-628.564026F, -266.64801F), new Vector2(-628.492004F, -267.872009F)); + builder.AddLine(new Vector2(-628.492004F, -273.019989F)); + builder.AddCubicBezier(new Vector2(-628.564026F, -274.268005F), new Vector2(-628.911987F, -275.365997F), new Vector2(-629.536011F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-630.159973F, -277.261993F), new Vector2(-630.981995F, -278.006012F), new Vector2(-632.002014F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-633.021973F, -279.085999F), new Vector2(-634.179993F, -279.355988F), new Vector2(-635.476013F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-637.059998F, -279.355988F), new Vector2(-638.481995F, -278.959991F), new Vector2(-639.742004F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-641.002014F, -277.376007F), new Vector2(-641.997986F, -276.308014F), new Vector2(-642.72998F, -274.963989F)); + builder.AddCubicBezier(new Vector2(-643.461975F, -273.619995F), new Vector2(-643.828003F, -272.108002F), new Vector2(-643.828003F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-643.828003F, -268.747986F), new Vector2(-643.461975F, -267.235992F), new Vector2(-642.72998F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-641.997986F, -264.548004F), new Vector2(-641.002014F, -263.485992F), new Vector2(-639.742004F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-638.481995F, -261.925995F), new Vector2(-637.059998F, -261.536011F), new Vector2(-635.476013F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-634.179993F, -261.536011F), new Vector2(-633.015991F, -261.806F), new Vector2(-631.984009F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1304() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-645.375977F, -276.044006F)); + builder.AddLine(new Vector2(-645.375977F, -278.996002F)); + builder.AddLine(new Vector2(-657.039978F, -278.996002F)); + builder.AddLine(new Vector2(-657.039978F, -276.044006F)); + builder.AddLine(new Vector2(-645.375977F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-649.588013F, -261.895996F)); + builder.AddLine(new Vector2(-649.588013F, -286.160004F)); + builder.AddLine(new Vector2(-652.828003F, -286.160004F)); + builder.AddLine(new Vector2(-652.828003F, -261.895996F)); + builder.AddLine(new Vector2(-649.588013F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1305() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-660.802002F, -262.940002F)); + builder.AddCubicBezier(new Vector2(-659.661987F, -263.876007F), new Vector2(-659.09198F, -265.14801F), new Vector2(-659.09198F, -266.756012F)); + builder.AddCubicBezier(new Vector2(-659.09198F, -267.812012F), new Vector2(-659.314026F, -268.664001F), new Vector2(-659.757996F, -269.312012F)); + builder.AddCubicBezier(new Vector2(-660.202026F, -269.959991F), new Vector2(-660.771973F, -270.476013F), new Vector2(-661.468018F, -270.859985F)); + builder.AddCubicBezier(new Vector2(-662.164001F, -271.243988F), new Vector2(-662.895996F, -271.549988F), new Vector2(-663.664001F, -271.778015F)); + builder.AddCubicBezier(new Vector2(-664.432007F, -272.006012F), new Vector2(-665.169983F, -272.227997F), new Vector2(-665.877991F, -272.444F)); + builder.AddCubicBezier(new Vector2(-666.585999F, -272.660004F), new Vector2(-667.156006F, -272.924011F), new Vector2(-667.588013F, -273.235992F)); + builder.AddCubicBezier(new Vector2(-668.02002F, -273.548004F), new Vector2(-668.236023F, -273.992004F), new Vector2(-668.236023F, -274.567993F)); + builder.AddCubicBezier(new Vector2(-668.236023F, -275.119995F), new Vector2(-667.98999F, -275.563995F), new Vector2(-667.497986F, -275.899994F)); + builder.AddCubicBezier(new Vector2(-667.005981F, -276.235992F), new Vector2(-666.291992F, -276.403992F), new Vector2(-665.356018F, -276.403992F)); + builder.AddCubicBezier(new Vector2(-664.468018F, -276.403992F), new Vector2(-663.676025F, -276.235992F), new Vector2(-662.97998F, -275.899994F)); + builder.AddCubicBezier(new Vector2(-662.283997F, -275.563995F), new Vector2(-661.684021F, -275.084015F), new Vector2(-661.179993F, -274.459991F)); + builder.AddLine(new Vector2(-659.09198F, -276.548004F)); + builder.AddCubicBezier(new Vector2(-659.763977F, -277.484009F), new Vector2(-660.622009F, -278.186005F), new Vector2(-661.666016F, -278.653992F)); + builder.AddCubicBezier(new Vector2(-662.710022F, -279.122009F), new Vector2(-663.903992F, -279.355988F), new Vector2(-665.247986F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-666.52002F, -279.355988F), new Vector2(-667.612F, -279.152008F), new Vector2(-668.523987F, -278.743988F)); + builder.AddCubicBezier(new Vector2(-669.435974F, -278.335999F), new Vector2(-670.138F, -277.753998F), new Vector2(-670.630005F, -276.997986F)); + builder.AddCubicBezier(new Vector2(-671.122009F, -276.242004F), new Vector2(-671.367981F, -275.347992F), new Vector2(-671.367981F, -274.31601F)); + builder.AddCubicBezier(new Vector2(-671.367981F, -273.283997F), new Vector2(-671.145996F, -272.450012F), new Vector2(-670.702026F, -271.813995F)); + builder.AddCubicBezier(new Vector2(-670.257996F, -271.178009F), new Vector2(-669.687988F, -270.679993F), new Vector2(-668.992004F, -270.320007F)); + builder.AddCubicBezier(new Vector2(-668.296021F, -269.959991F), new Vector2(-667.557983F, -269.671997F), new Vector2(-666.778015F, -269.455994F)); + builder.AddCubicBezier(new Vector2(-665.997986F, -269.23999F), new Vector2(-665.26001F, -269.018005F), new Vector2(-664.564026F, -268.790009F)); + builder.AddCubicBezier(new Vector2(-663.867981F, -268.562012F), new Vector2(-663.297974F, -268.273987F), new Vector2(-662.854004F, -267.925995F)); + builder.AddCubicBezier(new Vector2(-662.409973F, -267.578003F), new Vector2(-662.187988F, -267.09201F), new Vector2(-662.187988F, -266.467987F)); + builder.AddCubicBezier(new Vector2(-662.187988F, -265.843994F), new Vector2(-662.463989F, -265.358002F), new Vector2(-663.015991F, -265.01001F)); + builder.AddCubicBezier(new Vector2(-663.567993F, -264.661987F), new Vector2(-664.348022F, -264.488007F), new Vector2(-665.356018F, -264.488007F)); + builder.AddCubicBezier(new Vector2(-666.364014F, -264.488007F), new Vector2(-667.276001F, -264.674011F), new Vector2(-668.09198F, -265.04599F)); + builder.AddCubicBezier(new Vector2(-668.90802F, -265.417999F), new Vector2(-669.627991F, -265.988007F), new Vector2(-670.252014F, -266.756012F)); + builder.AddLine(new Vector2(-672.340027F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-671.812012F, -264.019989F), new Vector2(-671.19397F, -263.462006F), new Vector2(-670.486023F, -262.993988F)); + builder.AddCubicBezier(new Vector2(-669.778015F, -262.526001F), new Vector2(-668.992004F, -262.165985F), new Vector2(-668.127991F, -261.914001F)); + builder.AddCubicBezier(new Vector2(-667.263977F, -261.661987F), new Vector2(-666.35199F, -261.536011F), new Vector2(-665.392029F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-663.471985F, -261.536011F), new Vector2(-661.942017F, -262.003998F), new Vector2(-660.802002F, -262.940002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1306() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-686.164001F, -256.928009F)); + builder.AddLine(new Vector2(-683.752014F, -261.391998F)); + builder.AddCubicBezier(new Vector2(-683.440002F, -261.992004F), new Vector2(-683.22998F, -262.477997F), new Vector2(-683.122009F, -262.850006F)); + builder.AddCubicBezier(new Vector2(-683.013977F, -263.221985F), new Vector2(-682.960022F, -263.540009F), new Vector2(-682.960022F, -263.803986F)); + builder.AddCubicBezier(new Vector2(-682.960022F, -264.5F), new Vector2(-683.200012F, -265.082001F), new Vector2(-683.679993F, -265.549988F)); + builder.AddCubicBezier(new Vector2(-684.159973F, -266.018005F), new Vector2(-684.711975F, -266.252014F), new Vector2(-685.335999F, -266.252014F)); + builder.AddCubicBezier(new Vector2(-686.031982F, -266.252014F), new Vector2(-686.607971F, -266.018005F), new Vector2(-687.064026F, -265.549988F)); + builder.AddCubicBezier(new Vector2(-687.52002F, -265.082001F), new Vector2(-687.747986F, -264.5F), new Vector2(-687.747986F, -263.803986F)); + builder.AddCubicBezier(new Vector2(-687.747986F, -263.179993F), new Vector2(-687.538025F, -262.65799F), new Vector2(-687.117981F, -262.238007F)); + builder.AddCubicBezier(new Vector2(-686.697998F, -261.817993F), new Vector2(-686.236023F, -261.608002F), new Vector2(-685.731995F, -261.608002F)); + builder.AddCubicBezier(new Vector2(-685.492004F, -261.608002F), new Vector2(-685.276001F, -261.691986F), new Vector2(-685.083984F, -261.859985F)); + builder.AddCubicBezier(new Vector2(-684.892029F, -262.028015F), new Vector2(-684.736023F, -262.243988F), new Vector2(-684.616028F, -262.507996F)); + builder.AddLine(new Vector2(-685.768005F, -262.220001F)); + builder.AddLine(new Vector2(-688F, -257.936005F)); + builder.AddLine(new Vector2(-686.164001F, -256.928009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1307() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-692.572021F, -261.895996F)); + builder.AddLine(new Vector2(-692.572021F, -272.876007F)); + builder.AddCubicBezier(new Vector2(-692.572021F, -274.220001F), new Vector2(-692.866028F, -275.372009F), new Vector2(-693.453979F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-694.041992F, -277.291992F), new Vector2(-694.828003F, -278.036011F), new Vector2(-695.812012F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-696.796021F, -279.09201F), new Vector2(-697.911987F, -279.355988F), new Vector2(-699.159973F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-700.359985F, -279.355988F), new Vector2(-701.463989F, -279.085999F), new Vector2(-702.471985F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-703.47998F, -278.006012F), new Vector2(-704.302002F, -277.261993F), new Vector2(-704.937988F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-705.573975F, -275.365997F), new Vector2(-705.927979F, -274.231995F), new Vector2(-706F, -272.911987F)); + builder.AddLine(new Vector2(-704.164001F, -272.227997F)); + builder.AddCubicBezier(new Vector2(-704.164001F, -273.09201F), new Vector2(-703.971985F, -273.824005F), new Vector2(-703.588013F, -274.424011F)); + builder.AddCubicBezier(new Vector2(-703.203979F, -275.023987F), new Vector2(-702.69397F, -275.492004F), new Vector2(-702.057983F, -275.828003F)); + builder.AddCubicBezier(new Vector2(-701.421997F, -276.164001F), new Vector2(-700.708008F, -276.332001F), new Vector2(-699.916016F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-698.763977F, -276.332001F), new Vector2(-697.797974F, -275.966003F), new Vector2(-697.018005F, -275.234009F)); + builder.AddCubicBezier(new Vector2(-696.237976F, -274.502014F), new Vector2(-695.848022F, -273.5F), new Vector2(-695.848022F, -272.227997F)); + builder.AddLine(new Vector2(-695.848022F, -261.895996F)); + builder.AddLine(new Vector2(-692.572021F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-704.164001F, -261.895996F)); + builder.AddLine(new Vector2(-704.164001F, -272.911987F)); + builder.AddCubicBezier(new Vector2(-704.164001F, -274.231995F), new Vector2(-704.445984F, -275.372009F), new Vector2(-705.01001F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-705.573975F, -277.291992F), new Vector2(-706.34198F, -278.036011F), new Vector2(-707.314026F, -278.563995F)); + builder.AddCubicBezier(new Vector2(-708.286011F, -279.09201F), new Vector2(-709.372009F, -279.355988F), new Vector2(-710.572021F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-711.796021F, -279.355988F), new Vector2(-712.900024F, -279.085999F), new Vector2(-713.883972F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-714.867981F, -278.006012F), new Vector2(-715.642029F, -277.256012F), new Vector2(-716.205994F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-716.77002F, -275.335999F), new Vector2(-717.052002F, -274.208008F), new Vector2(-717.052002F, -272.911987F)); + builder.AddLine(new Vector2(-715.719971F, -272.227997F)); + builder.AddCubicBezier(new Vector2(-715.719971F, -273.09201F), new Vector2(-715.528015F, -273.824005F), new Vector2(-715.143982F, -274.424011F)); + builder.AddCubicBezier(new Vector2(-714.76001F, -275.023987F), new Vector2(-714.255981F, -275.492004F), new Vector2(-713.632019F, -275.828003F)); + builder.AddCubicBezier(new Vector2(-713.007996F, -276.164001F), new Vector2(-712.299988F, -276.332001F), new Vector2(-711.507996F, -276.332001F)); + builder.AddCubicBezier(new Vector2(-710.33197F, -276.332001F), new Vector2(-709.354004F, -275.966003F), new Vector2(-708.573975F, -275.234009F)); + builder.AddCubicBezier(new Vector2(-707.794006F, -274.502014F), new Vector2(-707.403992F, -273.5F), new Vector2(-707.403992F, -272.227997F)); + builder.AddLine(new Vector2(-707.403992F, -261.895996F)); + builder.AddLine(new Vector2(-704.164001F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-715.719971F, -261.895996F)); + builder.AddLine(new Vector2(-715.719971F, -278.996002F)); + builder.AddLine(new Vector2(-718.960022F, -278.996002F)); + builder.AddLine(new Vector2(-718.960022F, -261.895996F)); + builder.AddLine(new Vector2(-715.719971F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1308() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-729.075989F, -275.144012F)); + builder.AddCubicBezier(new Vector2(-728.307983F, -275.911987F), new Vector2(-727.323975F, -276.29599F), new Vector2(-726.124023F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-725.547974F, -276.29599F), new Vector2(-725.044006F, -276.212006F), new Vector2(-724.612F, -276.044006F)); + builder.AddCubicBezier(new Vector2(-724.179993F, -275.876007F), new Vector2(-723.783997F, -275.600006F), new Vector2(-723.424011F, -275.216003F)); + builder.AddLine(new Vector2(-721.299988F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-721.900024F, -278.108002F), new Vector2(-722.547974F, -278.605988F), new Vector2(-723.244019F, -278.906006F)); + builder.AddCubicBezier(new Vector2(-723.940002F, -279.205994F), new Vector2(-724.719971F, -279.355988F), new Vector2(-725.583984F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-727.47998F, -279.355988F), new Vector2(-728.932007F, -278.708008F), new Vector2(-729.940002F, -277.411987F)); + builder.AddCubicBezier(new Vector2(-730.947998F, -276.115997F), new Vector2(-731.452026F, -274.376007F), new Vector2(-731.452026F, -272.191986F)); + builder.AddLine(new Vector2(-730.228027F, -271.615997F)); + builder.AddCubicBezier(new Vector2(-730.228027F, -273.200012F), new Vector2(-729.843994F, -274.376007F), new Vector2(-729.075989F, -275.144012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-730.228027F, -261.895996F)); + builder.AddLine(new Vector2(-730.228027F, -278.996002F)); + builder.AddLine(new Vector2(-733.468018F, -278.996002F)); + builder.AddLine(new Vector2(-733.468018F, -261.895996F)); + builder.AddLine(new Vector2(-730.228027F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1309() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-748.875977F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-749.716003F, -265.928009F), new Vector2(-750.375977F, -266.618011F), new Vector2(-750.856018F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-751.335999F, -268.369995F), new Vector2(-751.575989F, -269.372009F), new Vector2(-751.575989F, -270.5F)); + builder.AddCubicBezier(new Vector2(-751.575989F, -271.604004F), new Vector2(-751.335999F, -272.588013F), new Vector2(-750.856018F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-750.375977F, -274.31601F), new Vector2(-749.716003F, -274.993988F), new Vector2(-748.875977F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-748.036011F, -275.977997F), new Vector2(-747.088013F, -276.223999F), new Vector2(-746.031982F, -276.223999F)); + builder.AddCubicBezier(new Vector2(-744.927979F, -276.223999F), new Vector2(-743.961975F, -275.977997F), new Vector2(-743.133972F, -275.485992F)); + builder.AddCubicBezier(new Vector2(-742.30603F, -274.993988F), new Vector2(-741.645996F, -274.31601F), new Vector2(-741.153992F, -273.451996F)); + builder.AddCubicBezier(new Vector2(-740.661987F, -272.588013F), new Vector2(-740.416016F, -271.604004F), new Vector2(-740.416016F, -270.5F)); + builder.AddCubicBezier(new Vector2(-740.416016F, -269.372009F), new Vector2(-740.656006F, -268.369995F), new Vector2(-741.135986F, -267.493988F)); + builder.AddCubicBezier(new Vector2(-741.616028F, -266.618011F), new Vector2(-742.276001F, -265.928009F), new Vector2(-743.116028F, -265.424011F)); + builder.AddCubicBezier(new Vector2(-743.955994F, -264.920013F), new Vector2(-744.927979F, -264.667999F), new Vector2(-746.031982F, -264.667999F)); + builder.AddCubicBezier(new Vector2(-747.088013F, -264.667999F), new Vector2(-748.036011F, -264.920013F), new Vector2(-748.875977F, -265.424011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-741.478027F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-740.122009F, -263.515991F), new Vector2(-739.047974F, -264.589996F), new Vector2(-738.255981F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-737.463989F, -267.302002F), new Vector2(-737.067993F, -268.820007F), new Vector2(-737.067993F, -270.5F)); + builder.AddCubicBezier(new Vector2(-737.067993F, -272.156006F), new Vector2(-737.463989F, -273.656006F), new Vector2(-738.255981F, -275F)); + builder.AddCubicBezier(new Vector2(-739.047974F, -276.343994F), new Vector2(-740.122009F, -277.406006F), new Vector2(-741.478027F, -278.186005F)); + builder.AddCubicBezier(new Vector2(-742.833984F, -278.966003F), new Vector2(-744.35199F, -279.355988F), new Vector2(-746.031982F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-747.687988F, -279.355988F), new Vector2(-749.187988F, -278.959991F), new Vector2(-750.531982F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-751.875977F, -277.376007F), new Vector2(-752.94397F, -276.313995F), new Vector2(-753.736023F, -274.981995F)); + builder.AddCubicBezier(new Vector2(-754.528015F, -273.649994F), new Vector2(-754.924011F, -272.156006F), new Vector2(-754.924011F, -270.5F)); + builder.AddCubicBezier(new Vector2(-754.924011F, -268.820007F), new Vector2(-754.528015F, -267.302002F), new Vector2(-753.736023F, -265.946014F)); + builder.AddCubicBezier(new Vector2(-752.94397F, -264.589996F), new Vector2(-751.875977F, -263.515991F), new Vector2(-750.531982F, -262.723999F)); + builder.AddCubicBezier(new Vector2(-749.187988F, -261.932007F), new Vector2(-747.687988F, -261.536011F), new Vector2(-746.031982F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-744.35199F, -261.536011F), new Vector2(-742.833984F, -261.932007F), new Vector2(-741.478027F, -262.723999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1310() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-756.075989F, -276.044006F)); + builder.AddLine(new Vector2(-756.075989F, -278.996002F)); + builder.AddLine(new Vector2(-768.963989F, -278.996002F)); + builder.AddLine(new Vector2(-768.963989F, -276.044006F)); + builder.AddLine(new Vector2(-756.075989F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-761.512024F, -261.895996F)); + builder.AddLine(new Vector2(-761.512024F, -281.552002F)); + builder.AddCubicBezier(new Vector2(-761.512024F, -282.608002F), new Vector2(-761.22998F, -283.429993F), new Vector2(-760.666016F, -284.018005F)); + builder.AddCubicBezier(new Vector2(-760.10199F, -284.605988F), new Vector2(-759.304016F, -284.899994F), new Vector2(-758.271973F, -284.899994F)); + builder.AddCubicBezier(new Vector2(-757.719971F, -284.899994F), new Vector2(-757.252014F, -284.81601F), new Vector2(-756.867981F, -284.64801F)); + builder.AddCubicBezier(new Vector2(-756.484009F, -284.480011F), new Vector2(-756.135986F, -284.227997F), new Vector2(-755.823975F, -283.891998F)); + builder.AddLine(new Vector2(-753.700012F, -285.980011F)); + builder.AddCubicBezier(new Vector2(-754.299988F, -286.627991F), new Vector2(-754.960022F, -287.119995F), new Vector2(-755.679993F, -287.455994F)); + builder.AddCubicBezier(new Vector2(-756.400024F, -287.791992F), new Vector2(-757.252014F, -287.959991F), new Vector2(-758.236023F, -287.959991F)); + builder.AddCubicBezier(new Vector2(-759.531982F, -287.959991F), new Vector2(-760.671997F, -287.68399F), new Vector2(-761.656006F, -287.131989F)); + builder.AddCubicBezier(new Vector2(-762.640015F, -286.579987F), new Vector2(-763.40802F, -285.824005F), new Vector2(-763.960022F, -284.864014F)); + builder.AddCubicBezier(new Vector2(-764.512024F, -283.903992F), new Vector2(-764.788025F, -282.799988F), new Vector2(-764.788025F, -281.552002F)); + builder.AddLine(new Vector2(-764.788025F, -261.895996F)); + builder.AddLine(new Vector2(-761.512024F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1311() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-769.719971F, -276.044006F)); + builder.AddLine(new Vector2(-769.719971F, -278.996002F)); + builder.AddLine(new Vector2(-781.383972F, -278.996002F)); + builder.AddLine(new Vector2(-781.383972F, -276.044006F)); + builder.AddLine(new Vector2(-769.719971F, -276.044006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-773.932007F, -261.895996F)); + builder.AddLine(new Vector2(-773.932007F, -286.160004F)); + builder.AddLine(new Vector2(-777.171997F, -286.160004F)); + builder.AddLine(new Vector2(-777.171997F, -261.895996F)); + builder.AddLine(new Vector2(-773.932007F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1312() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-784.44397F, -261.895996F)); + builder.AddLine(new Vector2(-784.44397F, -278.996002F)); + builder.AddLine(new Vector2(-787.719971F, -278.996002F)); + builder.AddLine(new Vector2(-787.719971F, -274.820007F)); + builder.AddLine(new Vector2(-787.107971F, -270.679993F)); + builder.AddLine(new Vector2(-787.719971F, -266.503998F)); + builder.AddLine(new Vector2(-787.719971F, -261.895996F)); + builder.AddLine(new Vector2(-784.44397F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-795.747986F, -265.35199F)); + builder.AddCubicBezier(new Vector2(-796.588013F, -265.855988F), new Vector2(-797.242004F, -266.54599F), new Vector2(-797.710022F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-798.177979F, -268.298004F), new Vector2(-798.411987F, -269.312012F), new Vector2(-798.411987F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-798.411987F, -271.59201F), new Vector2(-798.177979F, -272.593994F), new Vector2(-797.710022F, -273.470001F)); + builder.AddCubicBezier(new Vector2(-797.242004F, -274.346008F), new Vector2(-796.593994F, -275.036011F), new Vector2(-795.765991F, -275.540009F)); + builder.AddCubicBezier(new Vector2(-794.937988F, -276.044006F), new Vector2(-793.984009F, -276.29599F), new Vector2(-792.903992F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-791.823975F, -276.29599F), new Vector2(-790.882019F, -276.049988F), new Vector2(-790.078003F, -275.558014F)); + builder.AddCubicBezier(new Vector2(-789.273987F, -275.06601F), new Vector2(-788.643982F, -274.376007F), new Vector2(-788.187988F, -273.488007F)); + builder.AddCubicBezier(new Vector2(-787.731995F, -272.600006F), new Vector2(-787.504028F, -271.579987F), new Vector2(-787.504028F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-787.504028F, -268.723999F), new Vector2(-787.995972F, -267.325989F), new Vector2(-788.97998F, -266.234009F)); + builder.AddCubicBezier(new Vector2(-789.963989F, -265.141998F), new Vector2(-791.26001F, -264.596008F), new Vector2(-792.867981F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-793.947998F, -264.596008F), new Vector2(-794.90802F, -264.847992F), new Vector2(-795.747986F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-789.916016F, -262.346008F)); + builder.AddCubicBezier(new Vector2(-788.883972F, -262.885986F), new Vector2(-788.062012F, -263.635986F), new Vector2(-787.450012F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-786.838013F, -265.556F), new Vector2(-786.495972F, -266.64801F), new Vector2(-786.424011F, -267.872009F)); + builder.AddLine(new Vector2(-786.424011F, -273.019989F)); + builder.AddCubicBezier(new Vector2(-786.495972F, -274.268005F), new Vector2(-786.843994F, -275.365997F), new Vector2(-787.468018F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-788.09198F, -277.261993F), new Vector2(-788.914001F, -278.006012F), new Vector2(-789.934021F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-790.953979F, -279.085999F), new Vector2(-792.112F, -279.355988F), new Vector2(-793.40802F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-794.992004F, -279.355988F), new Vector2(-796.414001F, -278.959991F), new Vector2(-797.674011F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-798.934021F, -277.376007F), new Vector2(-799.929993F, -276.308014F), new Vector2(-800.661987F, -274.963989F)); + builder.AddCubicBezier(new Vector2(-801.393982F, -273.619995F), new Vector2(-801.76001F, -272.108002F), new Vector2(-801.76001F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-801.76001F, -268.747986F), new Vector2(-801.393982F, -267.235992F), new Vector2(-800.661987F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-799.929993F, -264.548004F), new Vector2(-798.934021F, -263.485992F), new Vector2(-797.674011F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-796.414001F, -261.925995F), new Vector2(-794.992004F, -261.536011F), new Vector2(-793.40802F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-792.112F, -261.536011F), new Vector2(-790.947998F, -261.806F), new Vector2(-789.916016F, -262.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1313() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-805.432007F, -261.895996F)); + builder.AddLine(new Vector2(-805.432007F, -287.600006F)); + builder.AddLine(new Vector2(-808.671997F, -287.600006F)); + builder.AddLine(new Vector2(-808.671997F, -261.895996F)); + builder.AddLine(new Vector2(-805.432007F, -261.895996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1314() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-823.98999F, -265.35199F)); + builder.AddCubicBezier(new Vector2(-824.817993F, -265.855988F), new Vector2(-825.453979F, -266.54599F), new Vector2(-825.89801F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-826.34198F, -268.298004F), new Vector2(-826.564026F, -269.299988F), new Vector2(-826.564026F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-826.564026F, -271.579987F), new Vector2(-826.335999F, -272.593994F), new Vector2(-825.880005F, -273.470001F)); + builder.AddCubicBezier(new Vector2(-825.424011F, -274.346008F), new Vector2(-824.788025F, -275.036011F), new Vector2(-823.971985F, -275.540009F)); + builder.AddCubicBezier(new Vector2(-823.156006F, -276.044006F), new Vector2(-822.219971F, -276.29599F), new Vector2(-821.164001F, -276.29599F)); + builder.AddCubicBezier(new Vector2(-820.083984F, -276.29599F), new Vector2(-819.135986F, -276.044006F), new Vector2(-818.320007F, -275.540009F)); + builder.AddCubicBezier(new Vector2(-817.504028F, -275.036011F), new Vector2(-816.862F, -274.346008F), new Vector2(-816.393982F, -273.470001F)); + builder.AddCubicBezier(new Vector2(-815.926025F, -272.593994F), new Vector2(-815.692017F, -271.59201F), new Vector2(-815.692017F, -270.463989F)); + builder.AddCubicBezier(new Vector2(-815.692017F, -269.312012F), new Vector2(-815.926025F, -268.298004F), new Vector2(-816.393982F, -267.421997F)); + builder.AddCubicBezier(new Vector2(-816.862F, -266.54599F), new Vector2(-817.504028F, -265.855988F), new Vector2(-818.320007F, -265.35199F)); + builder.AddCubicBezier(new Vector2(-819.135986F, -264.847992F), new Vector2(-820.083984F, -264.596008F), new Vector2(-821.164001F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-822.219971F, -264.596008F), new Vector2(-823.161987F, -264.847992F), new Vector2(-823.98999F, -265.35199F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-826.383972F, -254.731995F)); + builder.AddLine(new Vector2(-826.383972F, -266.179993F)); + builder.AddLine(new Vector2(-826.995972F, -270.355988F)); + builder.AddLine(new Vector2(-826.383972F, -274.496002F)); + builder.AddLine(new Vector2(-826.383972F, -278.996002F)); + builder.AddLine(new Vector2(-829.624023F, -278.996002F)); + builder.AddLine(new Vector2(-829.624023F, -254.731995F)); + builder.AddLine(new Vector2(-826.383972F, -254.731995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-816.393982F, -262.705994F)); + builder.AddCubicBezier(new Vector2(-815.133972F, -263.485992F), new Vector2(-814.143982F, -264.548004F), new Vector2(-813.424011F, -265.891998F)); + builder.AddCubicBezier(new Vector2(-812.703979F, -267.235992F), new Vector2(-812.343994F, -268.747986F), new Vector2(-812.343994F, -270.428009F)); + builder.AddCubicBezier(new Vector2(-812.343994F, -272.108002F), new Vector2(-812.703979F, -273.619995F), new Vector2(-813.424011F, -274.963989F)); + builder.AddCubicBezier(new Vector2(-814.143982F, -276.308014F), new Vector2(-815.133972F, -277.376007F), new Vector2(-816.393982F, -278.167999F)); + builder.AddCubicBezier(new Vector2(-817.653992F, -278.959991F), new Vector2(-819.064026F, -279.355988F), new Vector2(-820.624023F, -279.355988F)); + builder.AddCubicBezier(new Vector2(-821.895996F, -279.355988F), new Vector2(-823.054016F, -279.085999F), new Vector2(-824.098022F, -278.54599F)); + builder.AddCubicBezier(new Vector2(-825.142029F, -278.006012F), new Vector2(-825.981995F, -277.261993F), new Vector2(-826.617981F, -276.313995F)); + builder.AddCubicBezier(new Vector2(-827.254028F, -275.365997F), new Vector2(-827.607971F, -274.268005F), new Vector2(-827.679993F, -273.019989F)); + builder.AddLine(new Vector2(-827.679993F, -267.872009F)); + builder.AddCubicBezier(new Vector2(-827.607971F, -266.64801F), new Vector2(-827.26001F, -265.556F), new Vector2(-826.635986F, -264.596008F)); + builder.AddCubicBezier(new Vector2(-826.012024F, -263.635986F), new Vector2(-825.177979F, -262.885986F), new Vector2(-824.133972F, -262.346008F)); + builder.AddCubicBezier(new Vector2(-823.090027F, -261.806F), new Vector2(-821.919983F, -261.536011F), new Vector2(-820.624023F, -261.536011F)); + builder.AddCubicBezier(new Vector2(-819.064026F, -261.536011F), new Vector2(-817.653992F, -261.925995F), new Vector2(-816.393982F, -262.705994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1315() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(723.559998F, -305.096008F)); + builder.AddLine(new Vector2(723.559998F, -322.196014F)); + builder.AddLine(new Vector2(720.283997F, -322.196014F)); + builder.AddLine(new Vector2(720.283997F, -318.019989F)); + builder.AddLine(new Vector2(720.895996F, -313.880005F)); + builder.AddLine(new Vector2(720.283997F, -309.70401F)); + builder.AddLine(new Vector2(720.283997F, -305.096008F)); + builder.AddLine(new Vector2(723.559998F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(712.255981F, -308.552002F)); + builder.AddCubicBezier(new Vector2(711.416016F, -309.056F), new Vector2(710.762024F, -309.746002F), new Vector2(710.294006F, -310.622009F)); + builder.AddCubicBezier(new Vector2(709.825989F, -311.497986F), new Vector2(709.59198F, -312.511993F), new Vector2(709.59198F, -313.664001F)); + builder.AddCubicBezier(new Vector2(709.59198F, -314.791992F), new Vector2(709.825989F, -315.794006F), new Vector2(710.294006F, -316.670013F)); + builder.AddCubicBezier(new Vector2(710.762024F, -317.54599F), new Vector2(711.409973F, -318.235992F), new Vector2(712.237976F, -318.73999F)); + builder.AddCubicBezier(new Vector2(713.065979F, -319.243988F), new Vector2(714.02002F, -319.496002F), new Vector2(715.099976F, -319.496002F)); + builder.AddCubicBezier(new Vector2(716.179993F, -319.496002F), new Vector2(717.122009F, -319.25F), new Vector2(717.926025F, -318.757996F)); + builder.AddCubicBezier(new Vector2(718.72998F, -318.265991F), new Vector2(719.359985F, -317.575989F), new Vector2(719.815979F, -316.687988F)); + builder.AddCubicBezier(new Vector2(720.271973F, -315.799988F), new Vector2(720.5F, -314.779999F), new Vector2(720.5F, -313.627991F)); + builder.AddCubicBezier(new Vector2(720.5F, -311.924011F), new Vector2(720.007996F, -310.526001F), new Vector2(719.023987F, -309.43399F)); + builder.AddCubicBezier(new Vector2(718.039978F, -308.34201F), new Vector2(716.744019F, -307.79599F), new Vector2(715.135986F, -307.79599F)); + builder.AddCubicBezier(new Vector2(714.05603F, -307.79599F), new Vector2(713.096008F, -308.048004F), new Vector2(712.255981F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(718.088013F, -305.54599F)); + builder.AddCubicBezier(new Vector2(719.119995F, -306.085999F), new Vector2(719.942017F, -306.835999F), new Vector2(720.554016F, -307.79599F)); + builder.AddCubicBezier(new Vector2(721.166016F, -308.756012F), new Vector2(721.507996F, -309.847992F), new Vector2(721.580017F, -311.071991F)); + builder.AddLine(new Vector2(721.580017F, -316.220001F)); + builder.AddCubicBezier(new Vector2(721.507996F, -317.467987F), new Vector2(721.159973F, -318.56601F), new Vector2(720.536011F, -319.514008F)); + builder.AddCubicBezier(new Vector2(719.911987F, -320.462006F), new Vector2(719.090027F, -321.205994F), new Vector2(718.070007F, -321.746002F)); + builder.AddCubicBezier(new Vector2(717.049988F, -322.286011F), new Vector2(715.892029F, -322.556F), new Vector2(714.596008F, -322.556F)); + builder.AddCubicBezier(new Vector2(713.012024F, -322.556F), new Vector2(711.590027F, -322.160004F), new Vector2(710.330017F, -321.368011F)); + builder.AddCubicBezier(new Vector2(709.070007F, -320.575989F), new Vector2(708.073975F, -319.507996F), new Vector2(707.34198F, -318.164001F)); + builder.AddCubicBezier(new Vector2(706.609985F, -316.820007F), new Vector2(706.244019F, -315.308014F), new Vector2(706.244019F, -313.627991F)); + builder.AddCubicBezier(new Vector2(706.244019F, -311.947998F), new Vector2(706.609985F, -310.436005F), new Vector2(707.34198F, -309.09201F)); + builder.AddCubicBezier(new Vector2(708.073975F, -307.747986F), new Vector2(709.070007F, -306.686005F), new Vector2(710.330017F, -305.906006F)); + builder.AddCubicBezier(new Vector2(711.590027F, -305.126007F), new Vector2(713.012024F, -304.735992F), new Vector2(714.596008F, -304.735992F)); + builder.AddCubicBezier(new Vector2(715.892029F, -304.735992F), new Vector2(717.05603F, -305.006012F), new Vector2(718.088013F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1316() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(702.392029F, -326.209991F)); + builder.AddCubicBezier(new Vector2(702.776001F, -326.605988F), new Vector2(702.968018F, -327.104004F), new Vector2(702.968018F, -327.70401F)); + builder.AddCubicBezier(new Vector2(702.968018F, -328.279999F), new Vector2(702.776001F, -328.765991F), new Vector2(702.392029F, -329.161987F)); + builder.AddCubicBezier(new Vector2(702.007996F, -329.558014F), new Vector2(701.515991F, -329.756012F), new Vector2(700.916016F, -329.756012F)); + builder.AddCubicBezier(new Vector2(700.315979F, -329.756012F), new Vector2(699.823975F, -329.558014F), new Vector2(699.440002F, -329.161987F)); + builder.AddCubicBezier(new Vector2(699.05603F, -328.765991F), new Vector2(698.864014F, -328.279999F), new Vector2(698.864014F, -327.70401F)); + builder.AddCubicBezier(new Vector2(698.864014F, -327.104004F), new Vector2(699.05603F, -326.605988F), new Vector2(699.440002F, -326.209991F)); + builder.AddCubicBezier(new Vector2(699.823975F, -325.813995F), new Vector2(700.315979F, -325.615997F), new Vector2(700.916016F, -325.615997F)); + builder.AddCubicBezier(new Vector2(701.515991F, -325.615997F), new Vector2(702.007996F, -325.813995F), new Vector2(702.392029F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(702.536011F, -305.096008F)); + builder.AddLine(new Vector2(702.536011F, -322.196014F)); + builder.AddLine(new Vector2(699.26001F, -322.196014F)); + builder.AddLine(new Vector2(699.26001F, -305.096008F)); + builder.AddLine(new Vector2(702.536011F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1317() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(694.544006F, -330.799988F)); + builder.AddLine(new Vector2(691.268005F, -330.799988F)); + builder.AddLine(new Vector2(691.268005F, -318.019989F)); + builder.AddLine(new Vector2(691.880005F, -313.880005F)); + builder.AddLine(new Vector2(691.268005F, -309.70401F)); + builder.AddLine(new Vector2(691.268005F, -305.096008F)); + builder.AddLine(new Vector2(694.544006F, -305.096008F)); + builder.AddLine(new Vector2(694.544006F, -330.799988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(683.221985F, -308.533997F)); + builder.AddCubicBezier(new Vector2(682.393982F, -309.026001F), new Vector2(681.745972F, -309.716003F), new Vector2(681.278015F, -310.604004F)); + builder.AddCubicBezier(new Vector2(680.809998F, -311.492004F), new Vector2(680.575989F, -312.511993F), new Vector2(680.575989F, -313.664001F)); + builder.AddCubicBezier(new Vector2(680.575989F, -314.81601F), new Vector2(680.809998F, -315.829987F), new Vector2(681.278015F, -316.705994F)); + builder.AddCubicBezier(new Vector2(681.745972F, -317.582001F), new Vector2(682.388F, -318.265991F), new Vector2(683.203979F, -318.757996F)); + builder.AddCubicBezier(new Vector2(684.02002F, -319.25F), new Vector2(684.968018F, -319.496002F), new Vector2(686.047974F, -319.496002F)); + builder.AddCubicBezier(new Vector2(687.127991F, -319.496002F), new Vector2(688.075989F, -319.243988F), new Vector2(688.892029F, -318.73999F)); + builder.AddCubicBezier(new Vector2(689.708008F, -318.235992F), new Vector2(690.343994F, -317.54599F), new Vector2(690.799988F, -316.670013F)); + builder.AddCubicBezier(new Vector2(691.255981F, -315.794006F), new Vector2(691.484009F, -314.779999F), new Vector2(691.484009F, -313.627991F)); + builder.AddCubicBezier(new Vector2(691.484009F, -312.5F), new Vector2(691.255981F, -311.497986F), new Vector2(690.799988F, -310.622009F)); + builder.AddCubicBezier(new Vector2(690.343994F, -309.746002F), new Vector2(689.708008F, -309.056F), new Vector2(688.892029F, -308.552002F)); + builder.AddCubicBezier(new Vector2(688.075989F, -308.048004F), new Vector2(687.127991F, -307.79599F), new Vector2(686.047974F, -307.79599F)); + builder.AddCubicBezier(new Vector2(684.992004F, -307.79599F), new Vector2(684.049988F, -308.041992F), new Vector2(683.221985F, -308.533997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(689.036011F, -305.54599F)); + builder.AddCubicBezier(new Vector2(690.067993F, -306.085999F), new Vector2(690.895996F, -306.835999F), new Vector2(691.52002F, -307.79599F)); + builder.AddCubicBezier(new Vector2(692.143982F, -308.756012F), new Vector2(692.492004F, -309.847992F), new Vector2(692.564026F, -311.071991F)); + builder.AddLine(new Vector2(692.564026F, -316.220001F)); + builder.AddCubicBezier(new Vector2(692.492004F, -317.467987F), new Vector2(692.138F, -318.56601F), new Vector2(691.502014F, -319.514008F)); + builder.AddCubicBezier(new Vector2(690.866028F, -320.462006F), new Vector2(690.031982F, -321.205994F), new Vector2(689F, -321.746002F)); + builder.AddCubicBezier(new Vector2(687.968018F, -322.286011F), new Vector2(686.804016F, -322.556F), new Vector2(685.507996F, -322.556F)); + builder.AddCubicBezier(new Vector2(683.947998F, -322.556F), new Vector2(682.544006F, -322.160004F), new Vector2(681.296021F, -321.368011F)); + builder.AddCubicBezier(new Vector2(680.047974F, -320.575989F), new Vector2(679.057983F, -319.507996F), new Vector2(678.325989F, -318.164001F)); + builder.AddCubicBezier(new Vector2(677.593994F, -316.820007F), new Vector2(677.228027F, -315.308014F), new Vector2(677.228027F, -313.627991F)); + builder.AddCubicBezier(new Vector2(677.228027F, -311.947998F), new Vector2(677.593994F, -310.436005F), new Vector2(678.325989F, -309.09201F)); + builder.AddCubicBezier(new Vector2(679.057983F, -307.747986F), new Vector2(680.047974F, -306.686005F), new Vector2(681.296021F, -305.906006F)); + builder.AddCubicBezier(new Vector2(682.544006F, -305.126007F), new Vector2(683.947998F, -304.735992F), new Vector2(685.507996F, -304.735992F)); + builder.AddCubicBezier(new Vector2(686.828003F, -304.735992F), new Vector2(688.004028F, -305.006012F), new Vector2(689.036011F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1318() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(670.711975F, -305.492004F)); + builder.AddCubicBezier(new Vector2(671.888F, -305.996002F), new Vector2(672.895996F, -306.727997F), new Vector2(673.736023F, -307.687988F)); + builder.AddLine(new Vector2(671.64801F, -309.812012F)); + builder.AddCubicBezier(new Vector2(671.072021F, -309.140015F), new Vector2(670.382019F, -308.635986F), new Vector2(669.578003F, -308.299988F)); + builder.AddCubicBezier(new Vector2(668.773987F, -307.963989F), new Vector2(667.892029F, -307.79599F), new Vector2(666.932007F, -307.79599F)); + builder.AddCubicBezier(new Vector2(665.780029F, -307.79599F), new Vector2(664.76001F, -308.041992F), new Vector2(663.872009F, -308.533997F)); + builder.AddCubicBezier(new Vector2(662.984009F, -309.026001F), new Vector2(662.299988F, -309.721985F), new Vector2(661.820007F, -310.622009F)); + builder.AddCubicBezier(new Vector2(661.340027F, -311.522003F), new Vector2(661.099976F, -312.571991F), new Vector2(661.099976F, -313.772003F)); + builder.AddCubicBezier(new Vector2(661.099976F, -314.947998F), new Vector2(661.328003F, -315.967987F), new Vector2(661.783997F, -316.832001F)); + builder.AddCubicBezier(new Vector2(662.23999F, -317.696014F), new Vector2(662.888F, -318.368011F), new Vector2(663.728027F, -318.847992F)); + builder.AddCubicBezier(new Vector2(664.567993F, -319.328003F), new Vector2(665.539978F, -319.567993F), new Vector2(666.643982F, -319.567993F)); + builder.AddCubicBezier(new Vector2(667.700012F, -319.567993F), new Vector2(668.599976F, -319.346008F), new Vector2(669.343994F, -318.902008F)); + builder.AddCubicBezier(new Vector2(670.088013F, -318.458008F), new Vector2(670.664001F, -317.834015F), new Vector2(671.072021F, -317.029999F)); + builder.AddCubicBezier(new Vector2(671.47998F, -316.226013F), new Vector2(671.684021F, -315.247986F), new Vector2(671.684021F, -314.096008F)); + builder.AddLine(new Vector2(672.872009F, -315.140015F)); + builder.AddLine(new Vector2(660.164001F, -315.140015F)); + builder.AddLine(new Vector2(660.164001F, -312.440002F)); + builder.AddLine(new Vector2(674.599976F, -312.440002F)); + builder.AddCubicBezier(new Vector2(674.671997F, -312.776001F), new Vector2(674.719971F, -313.082001F), new Vector2(674.744019F, -313.358002F)); + builder.AddCubicBezier(new Vector2(674.768005F, -313.634003F), new Vector2(674.780029F, -313.891998F), new Vector2(674.780029F, -314.131989F)); + builder.AddCubicBezier(new Vector2(674.780029F, -315.764008F), new Vector2(674.437988F, -317.216003F), new Vector2(673.754028F, -318.488007F)); + builder.AddCubicBezier(new Vector2(673.070007F, -319.76001F), new Vector2(672.116028F, -320.756012F), new Vector2(670.892029F, -321.476013F)); + builder.AddCubicBezier(new Vector2(669.66803F, -322.196014F), new Vector2(668.276001F, -322.556F), new Vector2(666.716003F, -322.556F)); + builder.AddCubicBezier(new Vector2(665.059998F, -322.556F), new Vector2(663.565979F, -322.165985F), new Vector2(662.234009F, -321.385986F)); + builder.AddCubicBezier(new Vector2(660.901978F, -320.605988F), new Vector2(659.846008F, -319.544006F), new Vector2(659.065979F, -318.200012F)); + builder.AddCubicBezier(new Vector2(658.286011F, -316.855988F), new Vector2(657.895996F, -315.343994F), new Vector2(657.895996F, -313.664001F)); + builder.AddCubicBezier(new Vector2(657.895996F, -311.959991F), new Vector2(658.291992F, -310.436005F), new Vector2(659.083984F, -309.09201F)); + builder.AddCubicBezier(new Vector2(659.875977F, -307.747986F), new Vector2(660.950012F, -306.686005F), new Vector2(662.30603F, -305.906006F)); + builder.AddCubicBezier(new Vector2(663.661987F, -305.126007F), new Vector2(665.203979F, -304.735992F), new Vector2(666.932007F, -304.735992F)); + builder.AddCubicBezier(new Vector2(668.276001F, -304.735992F), new Vector2(669.536011F, -304.988007F), new Vector2(670.711975F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1319() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(654.619995F, -305.096008F)); + builder.AddLine(new Vector2(654.619995F, -316.075989F)); + builder.AddCubicBezier(new Vector2(654.619995F, -317.420013F), new Vector2(654.325989F, -318.571991F), new Vector2(653.737976F, -319.532013F)); + builder.AddCubicBezier(new Vector2(653.150024F, -320.492004F), new Vector2(652.364014F, -321.235992F), new Vector2(651.380005F, -321.764008F)); + builder.AddCubicBezier(new Vector2(650.395996F, -322.291992F), new Vector2(649.280029F, -322.556F), new Vector2(648.031982F, -322.556F)); + builder.AddCubicBezier(new Vector2(646.83197F, -322.556F), new Vector2(645.728027F, -322.286011F), new Vector2(644.719971F, -321.746002F)); + builder.AddCubicBezier(new Vector2(643.711975F, -321.205994F), new Vector2(642.890015F, -320.462006F), new Vector2(642.254028F, -319.514008F)); + builder.AddCubicBezier(new Vector2(641.617981F, -318.56601F), new Vector2(641.263977F, -317.432007F), new Vector2(641.192017F, -316.112F)); + builder.AddLine(new Vector2(643.028015F, -315.428009F)); + builder.AddCubicBezier(new Vector2(643.028015F, -316.291992F), new Vector2(643.219971F, -317.023987F), new Vector2(643.604004F, -317.623993F)); + builder.AddCubicBezier(new Vector2(643.987976F, -318.223999F), new Vector2(644.497986F, -318.691986F), new Vector2(645.133972F, -319.028015F)); + builder.AddCubicBezier(new Vector2(645.77002F, -319.364014F), new Vector2(646.484009F, -319.532013F), new Vector2(647.276001F, -319.532013F)); + builder.AddCubicBezier(new Vector2(648.427979F, -319.532013F), new Vector2(649.393982F, -319.165985F), new Vector2(650.174011F, -318.43399F)); + builder.AddCubicBezier(new Vector2(650.953979F, -317.701996F), new Vector2(651.343994F, -316.700012F), new Vector2(651.343994F, -315.428009F)); + builder.AddLine(new Vector2(651.343994F, -305.096008F)); + builder.AddLine(new Vector2(654.619995F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(643.028015F, -305.096008F)); + builder.AddLine(new Vector2(643.028015F, -316.112F)); + builder.AddCubicBezier(new Vector2(643.028015F, -317.432007F), new Vector2(642.745972F, -318.571991F), new Vector2(642.182007F, -319.532013F)); + builder.AddCubicBezier(new Vector2(641.617981F, -320.492004F), new Vector2(640.849976F, -321.235992F), new Vector2(639.877991F, -321.764008F)); + builder.AddCubicBezier(new Vector2(638.906006F, -322.291992F), new Vector2(637.820007F, -322.556F), new Vector2(636.619995F, -322.556F)); + builder.AddCubicBezier(new Vector2(635.395996F, -322.556F), new Vector2(634.291992F, -322.286011F), new Vector2(633.307983F, -321.746002F)); + builder.AddCubicBezier(new Vector2(632.323975F, -321.205994F), new Vector2(631.549988F, -320.455994F), new Vector2(630.986023F, -319.496002F)); + builder.AddCubicBezier(new Vector2(630.421997F, -318.536011F), new Vector2(630.140015F, -317.40799F), new Vector2(630.140015F, -316.112F)); + builder.AddLine(new Vector2(631.471985F, -315.428009F)); + builder.AddCubicBezier(new Vector2(631.471985F, -316.291992F), new Vector2(631.664001F, -317.023987F), new Vector2(632.047974F, -317.623993F)); + builder.AddCubicBezier(new Vector2(632.432007F, -318.223999F), new Vector2(632.935974F, -318.691986F), new Vector2(633.559998F, -319.028015F)); + builder.AddCubicBezier(new Vector2(634.184021F, -319.364014F), new Vector2(634.892029F, -319.532013F), new Vector2(635.684021F, -319.532013F)); + builder.AddCubicBezier(new Vector2(636.859985F, -319.532013F), new Vector2(637.838013F, -319.165985F), new Vector2(638.617981F, -318.43399F)); + builder.AddCubicBezier(new Vector2(639.39801F, -317.701996F), new Vector2(639.788025F, -316.700012F), new Vector2(639.788025F, -315.428009F)); + builder.AddLine(new Vector2(639.788025F, -305.096008F)); + builder.AddLine(new Vector2(643.028015F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(631.471985F, -305.096008F)); + builder.AddLine(new Vector2(631.471985F, -322.196014F)); + builder.AddLine(new Vector2(628.231995F, -322.196014F)); + builder.AddLine(new Vector2(628.231995F, -305.096008F)); + builder.AddLine(new Vector2(631.471985F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1320() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(616.028015F, -305.096008F)); + builder.AddLine(new Vector2(616.028015F, -330.799988F)); + builder.AddLine(new Vector2(612.788025F, -330.799988F)); + builder.AddLine(new Vector2(612.788025F, -305.096008F)); + builder.AddLine(new Vector2(616.028015F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1321() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(608.072021F, -305.096008F)); + builder.AddLine(new Vector2(608.072021F, -322.196014F)); + builder.AddLine(new Vector2(604.796021F, -322.196014F)); + builder.AddLine(new Vector2(604.796021F, -318.019989F)); + builder.AddLine(new Vector2(605.40802F, -313.880005F)); + builder.AddLine(new Vector2(604.796021F, -309.70401F)); + builder.AddLine(new Vector2(604.796021F, -305.096008F)); + builder.AddLine(new Vector2(608.072021F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(596.768005F, -308.552002F)); + builder.AddCubicBezier(new Vector2(595.927979F, -309.056F), new Vector2(595.273987F, -309.746002F), new Vector2(594.80603F, -310.622009F)); + builder.AddCubicBezier(new Vector2(594.338013F, -311.497986F), new Vector2(594.104004F, -312.511993F), new Vector2(594.104004F, -313.664001F)); + builder.AddCubicBezier(new Vector2(594.104004F, -314.791992F), new Vector2(594.338013F, -315.794006F), new Vector2(594.80603F, -316.670013F)); + builder.AddCubicBezier(new Vector2(595.273987F, -317.54599F), new Vector2(595.921997F, -318.235992F), new Vector2(596.75F, -318.73999F)); + builder.AddCubicBezier(new Vector2(597.578003F, -319.243988F), new Vector2(598.531982F, -319.496002F), new Vector2(599.612F, -319.496002F)); + builder.AddCubicBezier(new Vector2(600.692017F, -319.496002F), new Vector2(601.633972F, -319.25F), new Vector2(602.437988F, -318.757996F)); + builder.AddCubicBezier(new Vector2(603.242004F, -318.265991F), new Vector2(603.872009F, -317.575989F), new Vector2(604.328003F, -316.687988F)); + builder.AddCubicBezier(new Vector2(604.783997F, -315.799988F), new Vector2(605.012024F, -314.779999F), new Vector2(605.012024F, -313.627991F)); + builder.AddCubicBezier(new Vector2(605.012024F, -311.924011F), new Vector2(604.52002F, -310.526001F), new Vector2(603.536011F, -309.43399F)); + builder.AddCubicBezier(new Vector2(602.552002F, -308.34201F), new Vector2(601.255981F, -307.79599F), new Vector2(599.64801F, -307.79599F)); + builder.AddCubicBezier(new Vector2(598.567993F, -307.79599F), new Vector2(597.607971F, -308.048004F), new Vector2(596.768005F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(602.599976F, -305.54599F)); + builder.AddCubicBezier(new Vector2(603.632019F, -306.085999F), new Vector2(604.453979F, -306.835999F), new Vector2(605.065979F, -307.79599F)); + builder.AddCubicBezier(new Vector2(605.677979F, -308.756012F), new Vector2(606.02002F, -309.847992F), new Vector2(606.09198F, -311.071991F)); + builder.AddLine(new Vector2(606.09198F, -316.220001F)); + builder.AddCubicBezier(new Vector2(606.02002F, -317.467987F), new Vector2(605.671997F, -318.56601F), new Vector2(605.047974F, -319.514008F)); + builder.AddCubicBezier(new Vector2(604.424011F, -320.462006F), new Vector2(603.60199F, -321.205994F), new Vector2(602.58197F, -321.746002F)); + builder.AddCubicBezier(new Vector2(601.562012F, -322.286011F), new Vector2(600.403992F, -322.556F), new Vector2(599.107971F, -322.556F)); + builder.AddCubicBezier(new Vector2(597.523987F, -322.556F), new Vector2(596.10199F, -322.160004F), new Vector2(594.84198F, -321.368011F)); + builder.AddCubicBezier(new Vector2(593.58197F, -320.575989F), new Vector2(592.585999F, -319.507996F), new Vector2(591.854004F, -318.164001F)); + builder.AddCubicBezier(new Vector2(591.122009F, -316.820007F), new Vector2(590.755981F, -315.308014F), new Vector2(590.755981F, -313.627991F)); + builder.AddCubicBezier(new Vector2(590.755981F, -311.947998F), new Vector2(591.122009F, -310.436005F), new Vector2(591.854004F, -309.09201F)); + builder.AddCubicBezier(new Vector2(592.585999F, -307.747986F), new Vector2(593.58197F, -306.686005F), new Vector2(594.84198F, -305.906006F)); + builder.AddCubicBezier(new Vector2(596.10199F, -305.126007F), new Vector2(597.523987F, -304.735992F), new Vector2(599.107971F, -304.735992F)); + builder.AddCubicBezier(new Vector2(600.403992F, -304.735992F), new Vector2(601.567993F, -305.006012F), new Vector2(602.599976F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1322() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(586.903992F, -326.209991F)); + builder.AddCubicBezier(new Vector2(587.288025F, -326.605988F), new Vector2(587.47998F, -327.104004F), new Vector2(587.47998F, -327.70401F)); + builder.AddCubicBezier(new Vector2(587.47998F, -328.279999F), new Vector2(587.288025F, -328.765991F), new Vector2(586.903992F, -329.161987F)); + builder.AddCubicBezier(new Vector2(586.52002F, -329.558014F), new Vector2(586.028015F, -329.756012F), new Vector2(585.427979F, -329.756012F)); + builder.AddCubicBezier(new Vector2(584.828003F, -329.756012F), new Vector2(584.335999F, -329.558014F), new Vector2(583.952026F, -329.161987F)); + builder.AddCubicBezier(new Vector2(583.567993F, -328.765991F), new Vector2(583.375977F, -328.279999F), new Vector2(583.375977F, -327.70401F)); + builder.AddCubicBezier(new Vector2(583.375977F, -327.104004F), new Vector2(583.567993F, -326.605988F), new Vector2(583.952026F, -326.209991F)); + builder.AddCubicBezier(new Vector2(584.335999F, -325.813995F), new Vector2(584.828003F, -325.615997F), new Vector2(585.427979F, -325.615997F)); + builder.AddCubicBezier(new Vector2(586.028015F, -325.615997F), new Vector2(586.52002F, -325.813995F), new Vector2(586.903992F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(587.047974F, -305.096008F)); + builder.AddLine(new Vector2(587.047974F, -322.196014F)); + builder.AddLine(new Vector2(583.771973F, -322.196014F)); + builder.AddLine(new Vector2(583.771973F, -305.096008F)); + builder.AddLine(new Vector2(587.047974F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1323() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(577.669983F, -305.492004F)); + builder.AddCubicBezier(new Vector2(578.809998F, -305.996002F), new Vector2(579.776001F, -306.70401F), new Vector2(580.567993F, -307.615997F)); + builder.AddLine(new Vector2(578.44397F, -309.776001F)); + builder.AddCubicBezier(new Vector2(577.892029F, -309.152008F), new Vector2(577.237976F, -308.678009F), new Vector2(576.481995F, -308.354004F)); + builder.AddCubicBezier(new Vector2(575.726013F, -308.029999F), new Vector2(574.892029F, -307.868011F), new Vector2(573.97998F, -307.868011F)); + builder.AddCubicBezier(new Vector2(572.900024F, -307.868011F), new Vector2(571.940002F, -308.119995F), new Vector2(571.099976F, -308.623993F)); + builder.AddCubicBezier(new Vector2(570.26001F, -309.127991F), new Vector2(569.599976F, -309.812012F), new Vector2(569.119995F, -310.675995F)); + builder.AddCubicBezier(new Vector2(568.640015F, -311.540009F), new Vector2(568.400024F, -312.536011F), new Vector2(568.400024F, -313.664001F)); + builder.AddCubicBezier(new Vector2(568.400024F, -314.791992F), new Vector2(568.640015F, -315.787994F), new Vector2(569.119995F, -316.652008F)); + builder.AddCubicBezier(new Vector2(569.599976F, -317.515991F), new Vector2(570.26001F, -318.194F), new Vector2(571.099976F, -318.686005F)); + builder.AddCubicBezier(new Vector2(571.940002F, -319.178009F), new Vector2(572.900024F, -319.424011F), new Vector2(573.97998F, -319.424011F)); + builder.AddCubicBezier(new Vector2(574.867981F, -319.424011F), new Vector2(575.695984F, -319.261993F), new Vector2(576.463989F, -318.937988F)); + builder.AddCubicBezier(new Vector2(577.231995F, -318.614014F), new Vector2(577.880005F, -318.140015F), new Vector2(578.40802F, -317.515991F)); + builder.AddLine(new Vector2(580.567993F, -319.675995F)); + builder.AddCubicBezier(new Vector2(579.752014F, -320.612F), new Vector2(578.780029F, -321.325989F), new Vector2(577.651978F, -321.817993F)); + builder.AddCubicBezier(new Vector2(576.523987F, -322.309998F), new Vector2(575.299988F, -322.556F), new Vector2(573.97998F, -322.556F)); + builder.AddCubicBezier(new Vector2(572.299988F, -322.556F), new Vector2(570.781982F, -322.165985F), new Vector2(569.426025F, -321.385986F)); + builder.AddCubicBezier(new Vector2(568.070007F, -320.605988F), new Vector2(567.002014F, -319.544006F), new Vector2(566.221985F, -318.200012F)); + builder.AddCubicBezier(new Vector2(565.442017F, -316.855988F), new Vector2(565.052002F, -315.343994F), new Vector2(565.052002F, -313.664001F)); + builder.AddCubicBezier(new Vector2(565.052002F, -312.007996F), new Vector2(565.442017F, -310.502014F), new Vector2(566.221985F, -309.145996F)); + builder.AddCubicBezier(new Vector2(567.002014F, -307.790009F), new Vector2(568.070007F, -306.716003F), new Vector2(569.426025F, -305.924011F)); + builder.AddCubicBezier(new Vector2(570.781982F, -305.131989F), new Vector2(572.299988F, -304.735992F), new Vector2(573.97998F, -304.735992F)); + builder.AddCubicBezier(new Vector2(575.299988F, -304.735992F), new Vector2(576.530029F, -304.988007F), new Vector2(577.669983F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1324() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(550.76001F, -308.623993F)); + builder.AddCubicBezier(new Vector2(549.919983F, -309.127991F), new Vector2(549.26001F, -309.817993F), new Vector2(548.780029F, -310.694F)); + builder.AddCubicBezier(new Vector2(548.299988F, -311.570007F), new Vector2(548.059998F, -312.571991F), new Vector2(548.059998F, -313.700012F)); + builder.AddCubicBezier(new Vector2(548.059998F, -314.803986F), new Vector2(548.299988F, -315.787994F), new Vector2(548.780029F, -316.652008F)); + builder.AddCubicBezier(new Vector2(549.26001F, -317.515991F), new Vector2(549.919983F, -318.194F), new Vector2(550.76001F, -318.686005F)); + builder.AddCubicBezier(new Vector2(551.599976F, -319.178009F), new Vector2(552.547974F, -319.424011F), new Vector2(553.604004F, -319.424011F)); + builder.AddCubicBezier(new Vector2(554.708008F, -319.424011F), new Vector2(555.674011F, -319.178009F), new Vector2(556.502014F, -318.686005F)); + builder.AddCubicBezier(new Vector2(557.330017F, -318.194F), new Vector2(557.98999F, -317.515991F), new Vector2(558.481995F, -316.652008F)); + builder.AddCubicBezier(new Vector2(558.973999F, -315.787994F), new Vector2(559.219971F, -314.803986F), new Vector2(559.219971F, -313.700012F)); + builder.AddCubicBezier(new Vector2(559.219971F, -312.571991F), new Vector2(558.97998F, -311.570007F), new Vector2(558.5F, -310.694F)); + builder.AddCubicBezier(new Vector2(558.02002F, -309.817993F), new Vector2(557.359985F, -309.127991F), new Vector2(556.52002F, -308.623993F)); + builder.AddCubicBezier(new Vector2(555.679993F, -308.119995F), new Vector2(554.708008F, -307.868011F), new Vector2(553.604004F, -307.868011F)); + builder.AddCubicBezier(new Vector2(552.547974F, -307.868011F), new Vector2(551.599976F, -308.119995F), new Vector2(550.76001F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(558.15802F, -305.924011F)); + builder.AddCubicBezier(new Vector2(559.513977F, -306.716003F), new Vector2(560.588013F, -307.790009F), new Vector2(561.380005F, -309.145996F)); + builder.AddCubicBezier(new Vector2(562.171997F, -310.502014F), new Vector2(562.567993F, -312.019989F), new Vector2(562.567993F, -313.700012F)); + builder.AddCubicBezier(new Vector2(562.567993F, -315.355988F), new Vector2(562.171997F, -316.855988F), new Vector2(561.380005F, -318.200012F)); + builder.AddCubicBezier(new Vector2(560.588013F, -319.544006F), new Vector2(559.513977F, -320.605988F), new Vector2(558.15802F, -321.385986F)); + builder.AddCubicBezier(new Vector2(556.802002F, -322.165985F), new Vector2(555.283997F, -322.556F), new Vector2(553.604004F, -322.556F)); + builder.AddCubicBezier(new Vector2(551.947998F, -322.556F), new Vector2(550.447998F, -322.160004F), new Vector2(549.104004F, -321.368011F)); + builder.AddCubicBezier(new Vector2(547.76001F, -320.575989F), new Vector2(546.692017F, -319.514008F), new Vector2(545.900024F, -318.182007F)); + builder.AddCubicBezier(new Vector2(545.107971F, -316.850006F), new Vector2(544.711975F, -315.355988F), new Vector2(544.711975F, -313.700012F)); + builder.AddCubicBezier(new Vector2(544.711975F, -312.019989F), new Vector2(545.107971F, -310.502014F), new Vector2(545.900024F, -309.145996F)); + builder.AddCubicBezier(new Vector2(546.692017F, -307.790009F), new Vector2(547.76001F, -306.716003F), new Vector2(549.104004F, -305.924011F)); + builder.AddCubicBezier(new Vector2(550.447998F, -305.131989F), new Vector2(551.947998F, -304.735992F), new Vector2(553.604004F, -304.735992F)); + builder.AddCubicBezier(new Vector2(555.283997F, -304.735992F), new Vector2(556.802002F, -305.131989F), new Vector2(558.15802F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1325() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(540.481995F, -306.140015F)); + builder.AddCubicBezier(new Vector2(541.622009F, -307.075989F), new Vector2(542.192017F, -308.347992F), new Vector2(542.192017F, -309.955994F)); + builder.AddCubicBezier(new Vector2(542.192017F, -311.011993F), new Vector2(541.969971F, -311.864014F), new Vector2(541.526001F, -312.511993F)); + builder.AddCubicBezier(new Vector2(541.08197F, -313.160004F), new Vector2(540.512024F, -313.675995F), new Vector2(539.815979F, -314.059998F)); + builder.AddCubicBezier(new Vector2(539.119995F, -314.444F), new Vector2(538.388F, -314.75F), new Vector2(537.619995F, -314.977997F)); + builder.AddCubicBezier(new Vector2(536.85199F, -315.205994F), new Vector2(536.114014F, -315.428009F), new Vector2(535.406006F, -315.644012F)); + builder.AddCubicBezier(new Vector2(534.697998F, -315.859985F), new Vector2(534.127991F, -316.123993F), new Vector2(533.695984F, -316.436005F)); + builder.AddCubicBezier(new Vector2(533.263977F, -316.747986F), new Vector2(533.047974F, -317.191986F), new Vector2(533.047974F, -317.768005F)); + builder.AddCubicBezier(new Vector2(533.047974F, -318.320007F), new Vector2(533.294006F, -318.764008F), new Vector2(533.786011F, -319.100006F)); + builder.AddCubicBezier(new Vector2(534.278015F, -319.436005F), new Vector2(534.992004F, -319.604004F), new Vector2(535.927979F, -319.604004F)); + builder.AddCubicBezier(new Vector2(536.815979F, -319.604004F), new Vector2(537.607971F, -319.436005F), new Vector2(538.304016F, -319.100006F)); + builder.AddCubicBezier(new Vector2(539F, -318.764008F), new Vector2(539.599976F, -318.283997F), new Vector2(540.104004F, -317.660004F)); + builder.AddLine(new Vector2(542.192017F, -319.747986F)); + builder.AddCubicBezier(new Vector2(541.52002F, -320.68399F), new Vector2(540.661987F, -321.385986F), new Vector2(539.617981F, -321.854004F)); + builder.AddCubicBezier(new Vector2(538.573975F, -322.321991F), new Vector2(537.380005F, -322.556F), new Vector2(536.036011F, -322.556F)); + builder.AddCubicBezier(new Vector2(534.763977F, -322.556F), new Vector2(533.671997F, -322.35199F), new Vector2(532.76001F, -321.944F)); + builder.AddCubicBezier(new Vector2(531.848022F, -321.536011F), new Vector2(531.145996F, -320.95401F), new Vector2(530.653992F, -320.197998F)); + builder.AddCubicBezier(new Vector2(530.161987F, -319.441986F), new Vector2(529.916016F, -318.548004F), new Vector2(529.916016F, -317.515991F)); + builder.AddCubicBezier(new Vector2(529.916016F, -316.484009F), new Vector2(530.138F, -315.649994F), new Vector2(530.58197F, -315.014008F)); + builder.AddCubicBezier(new Vector2(531.026001F, -314.377991F), new Vector2(531.596008F, -313.880005F), new Vector2(532.291992F, -313.519989F)); + builder.AddCubicBezier(new Vector2(532.987976F, -313.160004F), new Vector2(533.726013F, -312.872009F), new Vector2(534.505981F, -312.656006F)); + builder.AddCubicBezier(new Vector2(535.286011F, -312.440002F), new Vector2(536.023987F, -312.217987F), new Vector2(536.719971F, -311.98999F)); + builder.AddCubicBezier(new Vector2(537.416016F, -311.761993F), new Vector2(537.986023F, -311.473999F), new Vector2(538.429993F, -311.126007F)); + builder.AddCubicBezier(new Vector2(538.874023F, -310.778015F), new Vector2(539.096008F, -310.291992F), new Vector2(539.096008F, -309.667999F)); + builder.AddCubicBezier(new Vector2(539.096008F, -309.044006F), new Vector2(538.820007F, -308.558014F), new Vector2(538.268005F, -308.209991F)); + builder.AddCubicBezier(new Vector2(537.716003F, -307.862F), new Vector2(536.935974F, -307.687988F), new Vector2(535.927979F, -307.687988F)); + builder.AddCubicBezier(new Vector2(534.919983F, -307.687988F), new Vector2(534.007996F, -307.873993F), new Vector2(533.192017F, -308.246002F)); + builder.AddCubicBezier(new Vector2(532.375977F, -308.618011F), new Vector2(531.656006F, -309.187988F), new Vector2(531.031982F, -309.955994F)); + builder.AddLine(new Vector2(528.94397F, -307.868011F)); + builder.AddCubicBezier(new Vector2(529.471985F, -307.220001F), new Vector2(530.090027F, -306.661987F), new Vector2(530.797974F, -306.194F)); + builder.AddCubicBezier(new Vector2(531.505981F, -305.726013F), new Vector2(532.291992F, -305.365997F), new Vector2(533.156006F, -305.114014F)); + builder.AddCubicBezier(new Vector2(534.02002F, -304.862F), new Vector2(534.932007F, -304.735992F), new Vector2(535.892029F, -304.735992F)); + builder.AddCubicBezier(new Vector2(537.812012F, -304.735992F), new Vector2(539.34198F, -305.20401F), new Vector2(540.481995F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1326() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(517.65802F, -306.140015F)); + builder.AddCubicBezier(new Vector2(518.797974F, -307.075989F), new Vector2(519.367981F, -308.347992F), new Vector2(519.367981F, -309.955994F)); + builder.AddCubicBezier(new Vector2(519.367981F, -311.011993F), new Vector2(519.145996F, -311.864014F), new Vector2(518.702026F, -312.511993F)); + builder.AddCubicBezier(new Vector2(518.257996F, -313.160004F), new Vector2(517.687988F, -313.675995F), new Vector2(516.992004F, -314.059998F)); + builder.AddCubicBezier(new Vector2(516.296021F, -314.444F), new Vector2(515.564026F, -314.75F), new Vector2(514.796021F, -314.977997F)); + builder.AddCubicBezier(new Vector2(514.028015F, -315.205994F), new Vector2(513.289978F, -315.428009F), new Vector2(512.58197F, -315.644012F)); + builder.AddCubicBezier(new Vector2(511.873993F, -315.859985F), new Vector2(511.303986F, -316.123993F), new Vector2(510.872009F, -316.436005F)); + builder.AddCubicBezier(new Vector2(510.440002F, -316.747986F), new Vector2(510.223999F, -317.191986F), new Vector2(510.223999F, -317.768005F)); + builder.AddCubicBezier(new Vector2(510.223999F, -318.320007F), new Vector2(510.470001F, -318.764008F), new Vector2(510.962006F, -319.100006F)); + builder.AddCubicBezier(new Vector2(511.45401F, -319.436005F), new Vector2(512.16803F, -319.604004F), new Vector2(513.104004F, -319.604004F)); + builder.AddCubicBezier(new Vector2(513.992004F, -319.604004F), new Vector2(514.783997F, -319.436005F), new Vector2(515.47998F, -319.100006F)); + builder.AddCubicBezier(new Vector2(516.176025F, -318.764008F), new Vector2(516.776001F, -318.283997F), new Vector2(517.280029F, -317.660004F)); + builder.AddLine(new Vector2(519.367981F, -319.747986F)); + builder.AddCubicBezier(new Vector2(518.695984F, -320.68399F), new Vector2(517.838013F, -321.385986F), new Vector2(516.794006F, -321.854004F)); + builder.AddCubicBezier(new Vector2(515.75F, -322.321991F), new Vector2(514.55603F, -322.556F), new Vector2(513.211975F, -322.556F)); + builder.AddCubicBezier(new Vector2(511.940002F, -322.556F), new Vector2(510.847992F, -322.35199F), new Vector2(509.936005F, -321.944F)); + builder.AddCubicBezier(new Vector2(509.023987F, -321.536011F), new Vector2(508.321991F, -320.95401F), new Vector2(507.829987F, -320.197998F)); + builder.AddCubicBezier(new Vector2(507.338013F, -319.441986F), new Vector2(507.09201F, -318.548004F), new Vector2(507.09201F, -317.515991F)); + builder.AddCubicBezier(new Vector2(507.09201F, -316.484009F), new Vector2(507.313995F, -315.649994F), new Vector2(507.757996F, -315.014008F)); + builder.AddCubicBezier(new Vector2(508.201996F, -314.377991F), new Vector2(508.772003F, -313.880005F), new Vector2(509.467987F, -313.519989F)); + builder.AddCubicBezier(new Vector2(510.164001F, -313.160004F), new Vector2(510.902008F, -312.872009F), new Vector2(511.682007F, -312.656006F)); + builder.AddCubicBezier(new Vector2(512.461975F, -312.440002F), new Vector2(513.200012F, -312.217987F), new Vector2(513.895996F, -311.98999F)); + builder.AddCubicBezier(new Vector2(514.59198F, -311.761993F), new Vector2(515.161987F, -311.473999F), new Vector2(515.606018F, -311.126007F)); + builder.AddCubicBezier(new Vector2(516.049988F, -310.778015F), new Vector2(516.271973F, -310.291992F), new Vector2(516.271973F, -309.667999F)); + builder.AddCubicBezier(new Vector2(516.271973F, -309.044006F), new Vector2(515.995972F, -308.558014F), new Vector2(515.44397F, -308.209991F)); + builder.AddCubicBezier(new Vector2(514.892029F, -307.862F), new Vector2(514.112F, -307.687988F), new Vector2(513.104004F, -307.687988F)); + builder.AddCubicBezier(new Vector2(512.096008F, -307.687988F), new Vector2(511.18399F, -307.873993F), new Vector2(510.368011F, -308.246002F)); + builder.AddCubicBezier(new Vector2(509.552002F, -308.618011F), new Vector2(508.832001F, -309.187988F), new Vector2(508.208008F, -309.955994F)); + builder.AddLine(new Vector2(506.119995F, -307.868011F)); + builder.AddCubicBezier(new Vector2(506.64801F, -307.220001F), new Vector2(507.265991F, -306.661987F), new Vector2(507.973999F, -306.194F)); + builder.AddCubicBezier(new Vector2(508.682007F, -305.726013F), new Vector2(509.467987F, -305.365997F), new Vector2(510.332001F, -305.114014F)); + builder.AddCubicBezier(new Vector2(511.196014F, -304.862F), new Vector2(512.107971F, -304.735992F), new Vector2(513.067993F, -304.735992F)); + builder.AddCubicBezier(new Vector2(514.987976F, -304.735992F), new Vector2(516.518005F, -305.20401F), new Vector2(517.65802F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1327() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(502.286011F, -306.140015F)); + builder.AddCubicBezier(new Vector2(503.425995F, -307.075989F), new Vector2(503.996002F, -308.347992F), new Vector2(503.996002F, -309.955994F)); + builder.AddCubicBezier(new Vector2(503.996002F, -311.011993F), new Vector2(503.773987F, -311.864014F), new Vector2(503.329987F, -312.511993F)); + builder.AddCubicBezier(new Vector2(502.885986F, -313.160004F), new Vector2(502.31601F, -313.675995F), new Vector2(501.619995F, -314.059998F)); + builder.AddCubicBezier(new Vector2(500.924011F, -314.444F), new Vector2(500.191986F, -314.75F), new Vector2(499.424011F, -314.977997F)); + builder.AddCubicBezier(new Vector2(498.656006F, -315.205994F), new Vector2(497.917999F, -315.428009F), new Vector2(497.209991F, -315.644012F)); + builder.AddCubicBezier(new Vector2(496.502014F, -315.859985F), new Vector2(495.932007F, -316.123993F), new Vector2(495.5F, -316.436005F)); + builder.AddCubicBezier(new Vector2(495.067993F, -316.747986F), new Vector2(494.85199F, -317.191986F), new Vector2(494.85199F, -317.768005F)); + builder.AddCubicBezier(new Vector2(494.85199F, -318.320007F), new Vector2(495.097992F, -318.764008F), new Vector2(495.589996F, -319.100006F)); + builder.AddCubicBezier(new Vector2(496.082001F, -319.436005F), new Vector2(496.79599F, -319.604004F), new Vector2(497.731995F, -319.604004F)); + builder.AddCubicBezier(new Vector2(498.619995F, -319.604004F), new Vector2(499.411987F, -319.436005F), new Vector2(500.108002F, -319.100006F)); + builder.AddCubicBezier(new Vector2(500.803986F, -318.764008F), new Vector2(501.403992F, -318.283997F), new Vector2(501.90799F, -317.660004F)); + builder.AddLine(new Vector2(503.996002F, -319.747986F)); + builder.AddCubicBezier(new Vector2(503.324005F, -320.68399F), new Vector2(502.466003F, -321.385986F), new Vector2(501.421997F, -321.854004F)); + builder.AddCubicBezier(new Vector2(500.377991F, -322.321991F), new Vector2(499.18399F, -322.556F), new Vector2(497.839996F, -322.556F)); + builder.AddCubicBezier(new Vector2(496.567993F, -322.556F), new Vector2(495.476013F, -322.35199F), new Vector2(494.563995F, -321.944F)); + builder.AddCubicBezier(new Vector2(493.652008F, -321.536011F), new Vector2(492.950012F, -320.95401F), new Vector2(492.458008F, -320.197998F)); + builder.AddCubicBezier(new Vector2(491.966003F, -319.441986F), new Vector2(491.720001F, -318.548004F), new Vector2(491.720001F, -317.515991F)); + builder.AddCubicBezier(new Vector2(491.720001F, -316.484009F), new Vector2(491.941986F, -315.649994F), new Vector2(492.385986F, -315.014008F)); + builder.AddCubicBezier(new Vector2(492.829987F, -314.377991F), new Vector2(493.399994F, -313.880005F), new Vector2(494.096008F, -313.519989F)); + builder.AddCubicBezier(new Vector2(494.791992F, -313.160004F), new Vector2(495.529999F, -312.872009F), new Vector2(496.309998F, -312.656006F)); + builder.AddCubicBezier(new Vector2(497.089996F, -312.440002F), new Vector2(497.828003F, -312.217987F), new Vector2(498.523987F, -311.98999F)); + builder.AddCubicBezier(new Vector2(499.220001F, -311.761993F), new Vector2(499.790009F, -311.473999F), new Vector2(500.234009F, -311.126007F)); + builder.AddCubicBezier(new Vector2(500.678009F, -310.778015F), new Vector2(500.899994F, -310.291992F), new Vector2(500.899994F, -309.667999F)); + builder.AddCubicBezier(new Vector2(500.899994F, -309.044006F), new Vector2(500.623993F, -308.558014F), new Vector2(500.071991F, -308.209991F)); + builder.AddCubicBezier(new Vector2(499.519989F, -307.862F), new Vector2(498.73999F, -307.687988F), new Vector2(497.731995F, -307.687988F)); + builder.AddCubicBezier(new Vector2(496.723999F, -307.687988F), new Vector2(495.812012F, -307.873993F), new Vector2(494.996002F, -308.246002F)); + builder.AddCubicBezier(new Vector2(494.179993F, -308.618011F), new Vector2(493.459991F, -309.187988F), new Vector2(492.835999F, -309.955994F)); + builder.AddLine(new Vector2(490.747986F, -307.868011F)); + builder.AddCubicBezier(new Vector2(491.276001F, -307.220001F), new Vector2(491.894012F, -306.661987F), new Vector2(492.60199F, -306.194F)); + builder.AddCubicBezier(new Vector2(493.309998F, -305.726013F), new Vector2(494.096008F, -305.365997F), new Vector2(494.959991F, -305.114014F)); + builder.AddCubicBezier(new Vector2(495.824005F, -304.862F), new Vector2(496.735992F, -304.735992F), new Vector2(497.696014F, -304.735992F)); + builder.AddCubicBezier(new Vector2(499.615997F, -304.735992F), new Vector2(501.145996F, -305.20401F), new Vector2(502.286011F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1328() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(476.85199F, -308.623993F)); + builder.AddCubicBezier(new Vector2(476.011993F, -309.127991F), new Vector2(475.35199F, -309.817993F), new Vector2(474.872009F, -310.694F)); + builder.AddCubicBezier(new Vector2(474.391998F, -311.570007F), new Vector2(474.152008F, -312.571991F), new Vector2(474.152008F, -313.700012F)); + builder.AddCubicBezier(new Vector2(474.152008F, -314.803986F), new Vector2(474.391998F, -315.787994F), new Vector2(474.872009F, -316.652008F)); + builder.AddCubicBezier(new Vector2(475.35199F, -317.515991F), new Vector2(476.011993F, -318.194F), new Vector2(476.85199F, -318.686005F)); + builder.AddCubicBezier(new Vector2(477.691986F, -319.178009F), new Vector2(478.640015F, -319.424011F), new Vector2(479.696014F, -319.424011F)); + builder.AddCubicBezier(new Vector2(480.799988F, -319.424011F), new Vector2(481.765991F, -319.178009F), new Vector2(482.593994F, -318.686005F)); + builder.AddCubicBezier(new Vector2(483.421997F, -318.194F), new Vector2(484.082001F, -317.515991F), new Vector2(484.574005F, -316.652008F)); + builder.AddCubicBezier(new Vector2(485.06601F, -315.787994F), new Vector2(485.312012F, -314.803986F), new Vector2(485.312012F, -313.700012F)); + builder.AddCubicBezier(new Vector2(485.312012F, -312.571991F), new Vector2(485.071991F, -311.570007F), new Vector2(484.59201F, -310.694F)); + builder.AddCubicBezier(new Vector2(484.112F, -309.817993F), new Vector2(483.451996F, -309.127991F), new Vector2(482.612F, -308.623993F)); + builder.AddCubicBezier(new Vector2(481.772003F, -308.119995F), new Vector2(480.799988F, -307.868011F), new Vector2(479.696014F, -307.868011F)); + builder.AddCubicBezier(new Vector2(478.640015F, -307.868011F), new Vector2(477.691986F, -308.119995F), new Vector2(476.85199F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(484.25F, -305.924011F)); + builder.AddCubicBezier(new Vector2(485.605988F, -306.716003F), new Vector2(486.679993F, -307.790009F), new Vector2(487.471985F, -309.145996F)); + builder.AddCubicBezier(new Vector2(488.264008F, -310.502014F), new Vector2(488.660004F, -312.019989F), new Vector2(488.660004F, -313.700012F)); + builder.AddCubicBezier(new Vector2(488.660004F, -315.355988F), new Vector2(488.264008F, -316.855988F), new Vector2(487.471985F, -318.200012F)); + builder.AddCubicBezier(new Vector2(486.679993F, -319.544006F), new Vector2(485.605988F, -320.605988F), new Vector2(484.25F, -321.385986F)); + builder.AddCubicBezier(new Vector2(482.894012F, -322.165985F), new Vector2(481.376007F, -322.556F), new Vector2(479.696014F, -322.556F)); + builder.AddCubicBezier(new Vector2(478.040009F, -322.556F), new Vector2(476.540009F, -322.160004F), new Vector2(475.196014F, -321.368011F)); + builder.AddCubicBezier(new Vector2(473.85199F, -320.575989F), new Vector2(472.783997F, -319.514008F), new Vector2(471.992004F, -318.182007F)); + builder.AddCubicBezier(new Vector2(471.200012F, -316.850006F), new Vector2(470.803986F, -315.355988F), new Vector2(470.803986F, -313.700012F)); + builder.AddCubicBezier(new Vector2(470.803986F, -312.019989F), new Vector2(471.200012F, -310.502014F), new Vector2(471.992004F, -309.145996F)); + builder.AddCubicBezier(new Vector2(472.783997F, -307.790009F), new Vector2(473.85199F, -306.716003F), new Vector2(475.196014F, -305.924011F)); + builder.AddCubicBezier(new Vector2(476.540009F, -305.131989F), new Vector2(478.040009F, -304.735992F), new Vector2(479.696014F, -304.735992F)); + builder.AddCubicBezier(new Vector2(481.376007F, -304.735992F), new Vector2(482.894012F, -305.131989F), new Vector2(484.25F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1329() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(462.415985F, -318.343994F)); + builder.AddCubicBezier(new Vector2(463.18399F, -319.112F), new Vector2(464.167999F, -319.496002F), new Vector2(465.368011F, -319.496002F)); + builder.AddCubicBezier(new Vector2(465.944F, -319.496002F), new Vector2(466.447998F, -319.411987F), new Vector2(466.880005F, -319.243988F)); + builder.AddCubicBezier(new Vector2(467.312012F, -319.075989F), new Vector2(467.708008F, -318.799988F), new Vector2(468.067993F, -318.415985F)); + builder.AddLine(new Vector2(470.191986F, -320.612F)); + builder.AddCubicBezier(new Vector2(469.59201F, -321.308014F), new Vector2(468.944F, -321.806F), new Vector2(468.247986F, -322.105988F)); + builder.AddCubicBezier(new Vector2(467.552002F, -322.406006F), new Vector2(466.772003F, -322.556F), new Vector2(465.90799F, -322.556F)); + builder.AddCubicBezier(new Vector2(464.011993F, -322.556F), new Vector2(462.559998F, -321.90799F), new Vector2(461.552002F, -320.612F)); + builder.AddCubicBezier(new Vector2(460.544006F, -319.31601F), new Vector2(460.040009F, -317.575989F), new Vector2(460.040009F, -315.391998F)); + builder.AddLine(new Vector2(461.264008F, -314.81601F)); + builder.AddCubicBezier(new Vector2(461.264008F, -316.399994F), new Vector2(461.64801F, -317.575989F), new Vector2(462.415985F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(461.264008F, -305.096008F)); + builder.AddLine(new Vector2(461.264008F, -322.196014F)); + builder.AddLine(new Vector2(458.023987F, -322.196014F)); + builder.AddLine(new Vector2(458.023987F, -305.096008F)); + builder.AddLine(new Vector2(461.264008F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1330() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(451.921997F, -305.492004F)); + builder.AddCubicBezier(new Vector2(453.062012F, -305.996002F), new Vector2(454.028015F, -306.70401F), new Vector2(454.820007F, -307.615997F)); + builder.AddLine(new Vector2(452.696014F, -309.776001F)); + builder.AddCubicBezier(new Vector2(452.144012F, -309.152008F), new Vector2(451.48999F, -308.678009F), new Vector2(450.734009F, -308.354004F)); + builder.AddCubicBezier(new Vector2(449.977997F, -308.029999F), new Vector2(449.144012F, -307.868011F), new Vector2(448.231995F, -307.868011F)); + builder.AddCubicBezier(new Vector2(447.152008F, -307.868011F), new Vector2(446.191986F, -308.119995F), new Vector2(445.35199F, -308.623993F)); + builder.AddCubicBezier(new Vector2(444.511993F, -309.127991F), new Vector2(443.85199F, -309.812012F), new Vector2(443.372009F, -310.675995F)); + builder.AddCubicBezier(new Vector2(442.891998F, -311.540009F), new Vector2(442.652008F, -312.536011F), new Vector2(442.652008F, -313.664001F)); + builder.AddCubicBezier(new Vector2(442.652008F, -314.791992F), new Vector2(442.891998F, -315.787994F), new Vector2(443.372009F, -316.652008F)); + builder.AddCubicBezier(new Vector2(443.85199F, -317.515991F), new Vector2(444.511993F, -318.194F), new Vector2(445.35199F, -318.686005F)); + builder.AddCubicBezier(new Vector2(446.191986F, -319.178009F), new Vector2(447.152008F, -319.424011F), new Vector2(448.231995F, -319.424011F)); + builder.AddCubicBezier(new Vector2(449.119995F, -319.424011F), new Vector2(449.947998F, -319.261993F), new Vector2(450.716003F, -318.937988F)); + builder.AddCubicBezier(new Vector2(451.484009F, -318.614014F), new Vector2(452.131989F, -318.140015F), new Vector2(452.660004F, -317.515991F)); + builder.AddLine(new Vector2(454.820007F, -319.675995F)); + builder.AddCubicBezier(new Vector2(454.003998F, -320.612F), new Vector2(453.032013F, -321.325989F), new Vector2(451.903992F, -321.817993F)); + builder.AddCubicBezier(new Vector2(450.776001F, -322.309998F), new Vector2(449.552002F, -322.556F), new Vector2(448.231995F, -322.556F)); + builder.AddCubicBezier(new Vector2(446.552002F, -322.556F), new Vector2(445.033997F, -322.165985F), new Vector2(443.678009F, -321.385986F)); + builder.AddCubicBezier(new Vector2(442.321991F, -320.605988F), new Vector2(441.253998F, -319.544006F), new Vector2(440.473999F, -318.200012F)); + builder.AddCubicBezier(new Vector2(439.694F, -316.855988F), new Vector2(439.303986F, -315.343994F), new Vector2(439.303986F, -313.664001F)); + builder.AddCubicBezier(new Vector2(439.303986F, -312.007996F), new Vector2(439.694F, -310.502014F), new Vector2(440.473999F, -309.145996F)); + builder.AddCubicBezier(new Vector2(441.253998F, -307.790009F), new Vector2(442.321991F, -306.716003F), new Vector2(443.678009F, -305.924011F)); + builder.AddCubicBezier(new Vector2(445.033997F, -305.131989F), new Vector2(446.552002F, -304.735992F), new Vector2(448.231995F, -304.735992F)); + builder.AddCubicBezier(new Vector2(449.552002F, -304.735992F), new Vector2(450.782013F, -304.988007F), new Vector2(451.921997F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1331() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(435.70401F, -305.096008F)); + builder.AddLine(new Vector2(435.70401F, -322.196014F)); + builder.AddLine(new Vector2(432.428009F, -322.196014F)); + builder.AddLine(new Vector2(432.428009F, -318.019989F)); + builder.AddLine(new Vector2(433.040009F, -313.880005F)); + builder.AddLine(new Vector2(432.428009F, -309.70401F)); + builder.AddLine(new Vector2(432.428009F, -305.096008F)); + builder.AddLine(new Vector2(435.70401F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(424.399994F, -308.552002F)); + builder.AddCubicBezier(new Vector2(423.559998F, -309.056F), new Vector2(422.906006F, -309.746002F), new Vector2(422.437988F, -310.622009F)); + builder.AddCubicBezier(new Vector2(421.970001F, -311.497986F), new Vector2(421.735992F, -312.511993F), new Vector2(421.735992F, -313.664001F)); + builder.AddCubicBezier(new Vector2(421.735992F, -314.791992F), new Vector2(421.970001F, -315.794006F), new Vector2(422.437988F, -316.670013F)); + builder.AddCubicBezier(new Vector2(422.906006F, -317.54599F), new Vector2(423.553986F, -318.235992F), new Vector2(424.381989F, -318.73999F)); + builder.AddCubicBezier(new Vector2(425.209991F, -319.243988F), new Vector2(426.164001F, -319.496002F), new Vector2(427.243988F, -319.496002F)); + builder.AddCubicBezier(new Vector2(428.324005F, -319.496002F), new Vector2(429.265991F, -319.25F), new Vector2(430.070007F, -318.757996F)); + builder.AddCubicBezier(new Vector2(430.873993F, -318.265991F), new Vector2(431.503998F, -317.575989F), new Vector2(431.959991F, -316.687988F)); + builder.AddCubicBezier(new Vector2(432.415985F, -315.799988F), new Vector2(432.644012F, -314.779999F), new Vector2(432.644012F, -313.627991F)); + builder.AddCubicBezier(new Vector2(432.644012F, -311.924011F), new Vector2(432.152008F, -310.526001F), new Vector2(431.167999F, -309.43399F)); + builder.AddCubicBezier(new Vector2(430.18399F, -308.34201F), new Vector2(428.888F, -307.79599F), new Vector2(427.279999F, -307.79599F)); + builder.AddCubicBezier(new Vector2(426.200012F, -307.79599F), new Vector2(425.23999F, -308.048004F), new Vector2(424.399994F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(430.231995F, -305.54599F)); + builder.AddCubicBezier(new Vector2(431.264008F, -306.085999F), new Vector2(432.085999F, -306.835999F), new Vector2(432.697998F, -307.79599F)); + builder.AddCubicBezier(new Vector2(433.309998F, -308.756012F), new Vector2(433.652008F, -309.847992F), new Vector2(433.723999F, -311.071991F)); + builder.AddLine(new Vector2(433.723999F, -316.220001F)); + builder.AddCubicBezier(new Vector2(433.652008F, -317.467987F), new Vector2(433.303986F, -318.56601F), new Vector2(432.679993F, -319.514008F)); + builder.AddCubicBezier(new Vector2(432.056F, -320.462006F), new Vector2(431.234009F, -321.205994F), new Vector2(430.213989F, -321.746002F)); + builder.AddCubicBezier(new Vector2(429.194F, -322.286011F), new Vector2(428.036011F, -322.556F), new Vector2(426.73999F, -322.556F)); + builder.AddCubicBezier(new Vector2(425.156006F, -322.556F), new Vector2(423.734009F, -322.160004F), new Vector2(422.473999F, -321.368011F)); + builder.AddCubicBezier(new Vector2(421.213989F, -320.575989F), new Vector2(420.217987F, -319.507996F), new Vector2(419.485992F, -318.164001F)); + builder.AddCubicBezier(new Vector2(418.753998F, -316.820007F), new Vector2(418.388F, -315.308014F), new Vector2(418.388F, -313.627991F)); + builder.AddCubicBezier(new Vector2(418.388F, -311.947998F), new Vector2(418.753998F, -310.436005F), new Vector2(419.485992F, -309.09201F)); + builder.AddCubicBezier(new Vector2(420.217987F, -307.747986F), new Vector2(421.213989F, -306.686005F), new Vector2(422.473999F, -305.906006F)); + builder.AddCubicBezier(new Vector2(423.734009F, -305.126007F), new Vector2(425.156006F, -304.735992F), new Vector2(426.73999F, -304.735992F)); + builder.AddCubicBezier(new Vector2(428.036011F, -304.735992F), new Vector2(429.200012F, -305.006012F), new Vector2(430.231995F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1332() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(396.697998F, -308.552002F)); + builder.AddCubicBezier(new Vector2(395.869995F, -309.056F), new Vector2(395.234009F, -309.746002F), new Vector2(394.790009F, -310.622009F)); + builder.AddCubicBezier(new Vector2(394.346008F, -311.497986F), new Vector2(394.123993F, -312.5F), new Vector2(394.123993F, -313.627991F)); + builder.AddCubicBezier(new Vector2(394.123993F, -314.779999F), new Vector2(394.35199F, -315.794006F), new Vector2(394.808014F, -316.670013F)); + builder.AddCubicBezier(new Vector2(395.264008F, -317.54599F), new Vector2(395.899994F, -318.235992F), new Vector2(396.716003F, -318.73999F)); + builder.AddCubicBezier(new Vector2(397.532013F, -319.243988F), new Vector2(398.467987F, -319.496002F), new Vector2(399.523987F, -319.496002F)); + builder.AddCubicBezier(new Vector2(400.604004F, -319.496002F), new Vector2(401.552002F, -319.243988F), new Vector2(402.368011F, -318.73999F)); + builder.AddCubicBezier(new Vector2(403.18399F, -318.235992F), new Vector2(403.825989F, -317.54599F), new Vector2(404.294006F, -316.670013F)); + builder.AddCubicBezier(new Vector2(404.761993F, -315.794006F), new Vector2(404.996002F, -314.791992F), new Vector2(404.996002F, -313.664001F)); + builder.AddCubicBezier(new Vector2(404.996002F, -312.511993F), new Vector2(404.761993F, -311.497986F), new Vector2(404.294006F, -310.622009F)); + builder.AddCubicBezier(new Vector2(403.825989F, -309.746002F), new Vector2(403.18399F, -309.056F), new Vector2(402.368011F, -308.552002F)); + builder.AddCubicBezier(new Vector2(401.552002F, -308.048004F), new Vector2(400.604004F, -307.79599F), new Vector2(399.523987F, -307.79599F)); + builder.AddCubicBezier(new Vector2(398.467987F, -307.79599F), new Vector2(397.526001F, -308.048004F), new Vector2(396.697998F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(394.303986F, -297.932007F)); + builder.AddLine(new Vector2(394.303986F, -309.380005F)); + builder.AddLine(new Vector2(393.691986F, -313.556F)); + builder.AddLine(new Vector2(394.303986F, -317.696014F)); + builder.AddLine(new Vector2(394.303986F, -322.196014F)); + builder.AddLine(new Vector2(391.063995F, -322.196014F)); + builder.AddLine(new Vector2(391.063995F, -297.932007F)); + builder.AddLine(new Vector2(394.303986F, -297.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(404.294006F, -305.906006F)); + builder.AddCubicBezier(new Vector2(405.553986F, -306.686005F), new Vector2(406.544006F, -307.747986F), new Vector2(407.264008F, -309.09201F)); + builder.AddCubicBezier(new Vector2(407.984009F, -310.436005F), new Vector2(408.343994F, -311.947998F), new Vector2(408.343994F, -313.627991F)); + builder.AddCubicBezier(new Vector2(408.343994F, -315.308014F), new Vector2(407.984009F, -316.820007F), new Vector2(407.264008F, -318.164001F)); + builder.AddCubicBezier(new Vector2(406.544006F, -319.507996F), new Vector2(405.553986F, -320.575989F), new Vector2(404.294006F, -321.368011F)); + builder.AddCubicBezier(new Vector2(403.033997F, -322.160004F), new Vector2(401.623993F, -322.556F), new Vector2(400.063995F, -322.556F)); + builder.AddCubicBezier(new Vector2(398.791992F, -322.556F), new Vector2(397.634003F, -322.286011F), new Vector2(396.589996F, -321.746002F)); + builder.AddCubicBezier(new Vector2(395.54599F, -321.205994F), new Vector2(394.705994F, -320.462006F), new Vector2(394.070007F, -319.514008F)); + builder.AddCubicBezier(new Vector2(393.43399F, -318.56601F), new Vector2(393.079987F, -317.467987F), new Vector2(393.007996F, -316.220001F)); + builder.AddLine(new Vector2(393.007996F, -311.071991F)); + builder.AddCubicBezier(new Vector2(393.079987F, -309.847992F), new Vector2(393.428009F, -308.756012F), new Vector2(394.052002F, -307.79599F)); + builder.AddCubicBezier(new Vector2(394.675995F, -306.835999F), new Vector2(395.51001F, -306.085999F), new Vector2(396.553986F, -305.54599F)); + builder.AddCubicBezier(new Vector2(397.597992F, -305.006012F), new Vector2(398.768005F, -304.735992F), new Vector2(400.063995F, -304.735992F)); + builder.AddCubicBezier(new Vector2(401.623993F, -304.735992F), new Vector2(403.033997F, -305.126007F), new Vector2(404.294006F, -305.906006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1333() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(386.131989F, -326.209991F)); + builder.AddCubicBezier(new Vector2(386.515991F, -326.605988F), new Vector2(386.708008F, -327.104004F), new Vector2(386.708008F, -327.70401F)); + builder.AddCubicBezier(new Vector2(386.708008F, -328.279999F), new Vector2(386.515991F, -328.765991F), new Vector2(386.131989F, -329.161987F)); + builder.AddCubicBezier(new Vector2(385.747986F, -329.558014F), new Vector2(385.256012F, -329.756012F), new Vector2(384.656006F, -329.756012F)); + builder.AddCubicBezier(new Vector2(384.056F, -329.756012F), new Vector2(383.563995F, -329.558014F), new Vector2(383.179993F, -329.161987F)); + builder.AddCubicBezier(new Vector2(382.79599F, -328.765991F), new Vector2(382.604004F, -328.279999F), new Vector2(382.604004F, -327.70401F)); + builder.AddCubicBezier(new Vector2(382.604004F, -327.104004F), new Vector2(382.79599F, -326.605988F), new Vector2(383.179993F, -326.209991F)); + builder.AddCubicBezier(new Vector2(383.563995F, -325.813995F), new Vector2(384.056F, -325.615997F), new Vector2(384.656006F, -325.615997F)); + builder.AddCubicBezier(new Vector2(385.256012F, -325.615997F), new Vector2(385.747986F, -325.813995F), new Vector2(386.131989F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(386.276001F, -305.096008F)); + builder.AddLine(new Vector2(386.276001F, -322.196014F)); + builder.AddLine(new Vector2(383F, -322.196014F)); + builder.AddLine(new Vector2(383F, -305.096008F)); + builder.AddLine(new Vector2(386.276001F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1334() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(366.511993F, -305.096008F)); + builder.AddLine(new Vector2(366.511993F, -330.799988F)); + builder.AddLine(new Vector2(363.272003F, -330.799988F)); + builder.AddLine(new Vector2(363.272003F, -305.096008F)); + builder.AddLine(new Vector2(366.511993F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(378.608002F, -305.096008F)); + builder.AddLine(new Vector2(378.608002F, -315.716003F)); + builder.AddCubicBezier(new Vector2(378.608002F, -317.059998F), new Vector2(378.320007F, -318.247986F), new Vector2(377.743988F, -319.279999F)); + builder.AddCubicBezier(new Vector2(377.167999F, -320.312012F), new Vector2(376.381989F, -321.115997F), new Vector2(375.385986F, -321.691986F)); + builder.AddCubicBezier(new Vector2(374.390015F, -322.268005F), new Vector2(373.243988F, -322.556F), new Vector2(371.947998F, -322.556F)); + builder.AddCubicBezier(new Vector2(370.652008F, -322.556F), new Vector2(369.488007F, -322.261993F), new Vector2(368.455994F, -321.674011F)); + builder.AddCubicBezier(new Vector2(367.424011F, -321.085999F), new Vector2(366.619995F, -320.287994F), new Vector2(366.044006F, -319.279999F)); + builder.AddCubicBezier(new Vector2(365.467987F, -318.272003F), new Vector2(365.179993F, -317.119995F), new Vector2(365.179993F, -315.824005F)); + builder.AddLine(new Vector2(366.511993F, -315.067993F)); + builder.AddCubicBezier(new Vector2(366.511993F, -315.932007F), new Vector2(366.70401F, -316.700012F), new Vector2(367.088013F, -317.372009F)); + builder.AddCubicBezier(new Vector2(367.471985F, -318.044006F), new Vector2(368F, -318.571991F), new Vector2(368.671997F, -318.955994F)); + builder.AddCubicBezier(new Vector2(369.343994F, -319.339996F), new Vector2(370.112F, -319.532013F), new Vector2(370.976013F, -319.532013F)); + builder.AddCubicBezier(new Vector2(372.272003F, -319.532013F), new Vector2(373.321991F, -319.112F), new Vector2(374.126007F, -318.272003F)); + builder.AddCubicBezier(new Vector2(374.929993F, -317.432007F), new Vector2(375.332001F, -316.364014F), new Vector2(375.332001F, -315.067993F)); + builder.AddLine(new Vector2(375.332001F, -305.096008F)); + builder.AddLine(new Vector2(378.608002F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1335() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(357.925995F, -306.140015F)); + builder.AddCubicBezier(new Vector2(359.06601F, -307.075989F), new Vector2(359.635986F, -308.347992F), new Vector2(359.635986F, -309.955994F)); + builder.AddCubicBezier(new Vector2(359.635986F, -311.011993F), new Vector2(359.414001F, -311.864014F), new Vector2(358.970001F, -312.511993F)); + builder.AddCubicBezier(new Vector2(358.526001F, -313.160004F), new Vector2(357.955994F, -313.675995F), new Vector2(357.26001F, -314.059998F)); + builder.AddCubicBezier(new Vector2(356.563995F, -314.444F), new Vector2(355.832001F, -314.75F), new Vector2(355.063995F, -314.977997F)); + builder.AddCubicBezier(new Vector2(354.29599F, -315.205994F), new Vector2(353.558014F, -315.428009F), new Vector2(352.850006F, -315.644012F)); + builder.AddCubicBezier(new Vector2(352.141998F, -315.859985F), new Vector2(351.571991F, -316.123993F), new Vector2(351.140015F, -316.436005F)); + builder.AddCubicBezier(new Vector2(350.708008F, -316.747986F), new Vector2(350.492004F, -317.191986F), new Vector2(350.492004F, -317.768005F)); + builder.AddCubicBezier(new Vector2(350.492004F, -318.320007F), new Vector2(350.738007F, -318.764008F), new Vector2(351.230011F, -319.100006F)); + builder.AddCubicBezier(new Vector2(351.721985F, -319.436005F), new Vector2(352.436005F, -319.604004F), new Vector2(353.372009F, -319.604004F)); + builder.AddCubicBezier(new Vector2(354.26001F, -319.604004F), new Vector2(355.052002F, -319.436005F), new Vector2(355.747986F, -319.100006F)); + builder.AddCubicBezier(new Vector2(356.444F, -318.764008F), new Vector2(357.044006F, -318.283997F), new Vector2(357.548004F, -317.660004F)); + builder.AddLine(new Vector2(359.635986F, -319.747986F)); + builder.AddCubicBezier(new Vector2(358.963989F, -320.68399F), new Vector2(358.105988F, -321.385986F), new Vector2(357.062012F, -321.854004F)); + builder.AddCubicBezier(new Vector2(356.018005F, -322.321991F), new Vector2(354.824005F, -322.556F), new Vector2(353.480011F, -322.556F)); + builder.AddCubicBezier(new Vector2(352.208008F, -322.556F), new Vector2(351.115997F, -322.35199F), new Vector2(350.20401F, -321.944F)); + builder.AddCubicBezier(new Vector2(349.291992F, -321.536011F), new Vector2(348.589996F, -320.95401F), new Vector2(348.097992F, -320.197998F)); + builder.AddCubicBezier(new Vector2(347.605988F, -319.441986F), new Vector2(347.359985F, -318.548004F), new Vector2(347.359985F, -317.515991F)); + builder.AddCubicBezier(new Vector2(347.359985F, -316.484009F), new Vector2(347.582001F, -315.649994F), new Vector2(348.026001F, -315.014008F)); + builder.AddCubicBezier(new Vector2(348.470001F, -314.377991F), new Vector2(349.040009F, -313.880005F), new Vector2(349.735992F, -313.519989F)); + builder.AddCubicBezier(new Vector2(350.432007F, -313.160004F), new Vector2(351.170013F, -312.872009F), new Vector2(351.950012F, -312.656006F)); + builder.AddCubicBezier(new Vector2(352.730011F, -312.440002F), new Vector2(353.467987F, -312.217987F), new Vector2(354.164001F, -311.98999F)); + builder.AddCubicBezier(new Vector2(354.859985F, -311.761993F), new Vector2(355.429993F, -311.473999F), new Vector2(355.873993F, -311.126007F)); + builder.AddCubicBezier(new Vector2(356.317993F, -310.778015F), new Vector2(356.540009F, -310.291992F), new Vector2(356.540009F, -309.667999F)); + builder.AddCubicBezier(new Vector2(356.540009F, -309.044006F), new Vector2(356.264008F, -308.558014F), new Vector2(355.712006F, -308.209991F)); + builder.AddCubicBezier(new Vector2(355.160004F, -307.862F), new Vector2(354.380005F, -307.687988F), new Vector2(353.372009F, -307.687988F)); + builder.AddCubicBezier(new Vector2(352.364014F, -307.687988F), new Vector2(351.451996F, -307.873993F), new Vector2(350.635986F, -308.246002F)); + builder.AddCubicBezier(new Vector2(349.820007F, -308.618011F), new Vector2(349.100006F, -309.187988F), new Vector2(348.476013F, -309.955994F)); + builder.AddLine(new Vector2(346.388F, -307.868011F)); + builder.AddCubicBezier(new Vector2(346.915985F, -307.220001F), new Vector2(347.533997F, -306.661987F), new Vector2(348.242004F, -306.194F)); + builder.AddCubicBezier(new Vector2(348.950012F, -305.726013F), new Vector2(349.735992F, -305.365997F), new Vector2(350.600006F, -305.114014F)); + builder.AddCubicBezier(new Vector2(351.463989F, -304.862F), new Vector2(352.376007F, -304.735992F), new Vector2(353.335999F, -304.735992F)); + builder.AddCubicBezier(new Vector2(355.256012F, -304.735992F), new Vector2(356.786011F, -305.20401F), new Vector2(357.925995F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1336() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(338.216003F, -318.343994F)); + builder.AddCubicBezier(new Vector2(338.984009F, -319.112F), new Vector2(339.967987F, -319.496002F), new Vector2(341.167999F, -319.496002F)); + builder.AddCubicBezier(new Vector2(341.743988F, -319.496002F), new Vector2(342.247986F, -319.411987F), new Vector2(342.679993F, -319.243988F)); + builder.AddCubicBezier(new Vector2(343.112F, -319.075989F), new Vector2(343.507996F, -318.799988F), new Vector2(343.868011F, -318.415985F)); + builder.AddLine(new Vector2(345.992004F, -320.612F)); + builder.AddCubicBezier(new Vector2(345.391998F, -321.308014F), new Vector2(344.743988F, -321.806F), new Vector2(344.048004F, -322.105988F)); + builder.AddCubicBezier(new Vector2(343.35199F, -322.406006F), new Vector2(342.571991F, -322.556F), new Vector2(341.708008F, -322.556F)); + builder.AddCubicBezier(new Vector2(339.812012F, -322.556F), new Vector2(338.359985F, -321.90799F), new Vector2(337.35199F, -320.612F)); + builder.AddCubicBezier(new Vector2(336.343994F, -319.31601F), new Vector2(335.839996F, -317.575989F), new Vector2(335.839996F, -315.391998F)); + builder.AddLine(new Vector2(337.063995F, -314.81601F)); + builder.AddCubicBezier(new Vector2(337.063995F, -316.399994F), new Vector2(337.447998F, -317.575989F), new Vector2(338.216003F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(337.063995F, -305.096008F)); + builder.AddLine(new Vector2(337.063995F, -322.196014F)); + builder.AddLine(new Vector2(333.824005F, -322.196014F)); + builder.AddLine(new Vector2(333.824005F, -305.096008F)); + builder.AddLine(new Vector2(337.063995F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1337() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(318.415985F, -308.623993F)); + builder.AddCubicBezier(new Vector2(317.575989F, -309.127991F), new Vector2(316.915985F, -309.817993F), new Vector2(316.436005F, -310.694F)); + builder.AddCubicBezier(new Vector2(315.955994F, -311.570007F), new Vector2(315.716003F, -312.571991F), new Vector2(315.716003F, -313.700012F)); + builder.AddCubicBezier(new Vector2(315.716003F, -314.803986F), new Vector2(315.955994F, -315.787994F), new Vector2(316.436005F, -316.652008F)); + builder.AddCubicBezier(new Vector2(316.915985F, -317.515991F), new Vector2(317.575989F, -318.194F), new Vector2(318.415985F, -318.686005F)); + builder.AddCubicBezier(new Vector2(319.256012F, -319.178009F), new Vector2(320.20401F, -319.424011F), new Vector2(321.26001F, -319.424011F)); + builder.AddCubicBezier(new Vector2(322.364014F, -319.424011F), new Vector2(323.329987F, -319.178009F), new Vector2(324.15799F, -318.686005F)); + builder.AddCubicBezier(new Vector2(324.985992F, -318.194F), new Vector2(325.645996F, -317.515991F), new Vector2(326.138F, -316.652008F)); + builder.AddCubicBezier(new Vector2(326.630005F, -315.787994F), new Vector2(326.876007F, -314.803986F), new Vector2(326.876007F, -313.700012F)); + builder.AddCubicBezier(new Vector2(326.876007F, -312.571991F), new Vector2(326.635986F, -311.570007F), new Vector2(326.156006F, -310.694F)); + builder.AddCubicBezier(new Vector2(325.675995F, -309.817993F), new Vector2(325.015991F, -309.127991F), new Vector2(324.175995F, -308.623993F)); + builder.AddCubicBezier(new Vector2(323.335999F, -308.119995F), new Vector2(322.364014F, -307.868011F), new Vector2(321.26001F, -307.868011F)); + builder.AddCubicBezier(new Vector2(320.20401F, -307.868011F), new Vector2(319.256012F, -308.119995F), new Vector2(318.415985F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(325.813995F, -305.924011F)); + builder.AddCubicBezier(new Vector2(327.170013F, -306.716003F), new Vector2(328.243988F, -307.790009F), new Vector2(329.036011F, -309.145996F)); + builder.AddCubicBezier(new Vector2(329.828003F, -310.502014F), new Vector2(330.223999F, -312.019989F), new Vector2(330.223999F, -313.700012F)); + builder.AddCubicBezier(new Vector2(330.223999F, -315.355988F), new Vector2(329.828003F, -316.855988F), new Vector2(329.036011F, -318.200012F)); + builder.AddCubicBezier(new Vector2(328.243988F, -319.544006F), new Vector2(327.170013F, -320.605988F), new Vector2(325.813995F, -321.385986F)); + builder.AddCubicBezier(new Vector2(324.458008F, -322.165985F), new Vector2(322.940002F, -322.556F), new Vector2(321.26001F, -322.556F)); + builder.AddCubicBezier(new Vector2(319.604004F, -322.556F), new Vector2(318.104004F, -322.160004F), new Vector2(316.76001F, -321.368011F)); + builder.AddCubicBezier(new Vector2(315.415985F, -320.575989F), new Vector2(314.347992F, -319.514008F), new Vector2(313.556F, -318.182007F)); + builder.AddCubicBezier(new Vector2(312.764008F, -316.850006F), new Vector2(312.368011F, -315.355988F), new Vector2(312.368011F, -313.700012F)); + builder.AddCubicBezier(new Vector2(312.368011F, -312.019989F), new Vector2(312.764008F, -310.502014F), new Vector2(313.556F, -309.145996F)); + builder.AddCubicBezier(new Vector2(314.347992F, -307.790009F), new Vector2(315.415985F, -306.716003F), new Vector2(316.76001F, -305.924011F)); + builder.AddCubicBezier(new Vector2(318.104004F, -305.131989F), new Vector2(319.604004F, -304.735992F), new Vector2(321.26001F, -304.735992F)); + builder.AddCubicBezier(new Vector2(322.940002F, -304.735992F), new Vector2(324.458008F, -305.131989F), new Vector2(325.813995F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1338() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(308.138F, -306.140015F)); + builder.AddCubicBezier(new Vector2(309.278015F, -307.075989F), new Vector2(309.847992F, -308.347992F), new Vector2(309.847992F, -309.955994F)); + builder.AddCubicBezier(new Vector2(309.847992F, -311.011993F), new Vector2(309.626007F, -311.864014F), new Vector2(309.182007F, -312.511993F)); + builder.AddCubicBezier(new Vector2(308.738007F, -313.160004F), new Vector2(308.167999F, -313.675995F), new Vector2(307.471985F, -314.059998F)); + builder.AddCubicBezier(new Vector2(306.776001F, -314.444F), new Vector2(306.044006F, -314.75F), new Vector2(305.276001F, -314.977997F)); + builder.AddCubicBezier(new Vector2(304.507996F, -315.205994F), new Vector2(303.769989F, -315.428009F), new Vector2(303.062012F, -315.644012F)); + builder.AddCubicBezier(new Vector2(302.354004F, -315.859985F), new Vector2(301.783997F, -316.123993F), new Vector2(301.35199F, -316.436005F)); + builder.AddCubicBezier(new Vector2(300.920013F, -316.747986F), new Vector2(300.70401F, -317.191986F), new Vector2(300.70401F, -317.768005F)); + builder.AddCubicBezier(new Vector2(300.70401F, -318.320007F), new Vector2(300.950012F, -318.764008F), new Vector2(301.441986F, -319.100006F)); + builder.AddCubicBezier(new Vector2(301.93399F, -319.436005F), new Vector2(302.64801F, -319.604004F), new Vector2(303.584015F, -319.604004F)); + builder.AddCubicBezier(new Vector2(304.471985F, -319.604004F), new Vector2(305.264008F, -319.436005F), new Vector2(305.959991F, -319.100006F)); + builder.AddCubicBezier(new Vector2(306.656006F, -318.764008F), new Vector2(307.256012F, -318.283997F), new Vector2(307.76001F, -317.660004F)); + builder.AddLine(new Vector2(309.847992F, -319.747986F)); + builder.AddCubicBezier(new Vector2(309.175995F, -320.68399F), new Vector2(308.317993F, -321.385986F), new Vector2(307.273987F, -321.854004F)); + builder.AddCubicBezier(new Vector2(306.230011F, -322.321991F), new Vector2(305.036011F, -322.556F), new Vector2(303.691986F, -322.556F)); + builder.AddCubicBezier(new Vector2(302.420013F, -322.556F), new Vector2(301.328003F, -322.35199F), new Vector2(300.415985F, -321.944F)); + builder.AddCubicBezier(new Vector2(299.503998F, -321.536011F), new Vector2(298.802002F, -320.95401F), new Vector2(298.309998F, -320.197998F)); + builder.AddCubicBezier(new Vector2(297.817993F, -319.441986F), new Vector2(297.571991F, -318.548004F), new Vector2(297.571991F, -317.515991F)); + builder.AddCubicBezier(new Vector2(297.571991F, -316.484009F), new Vector2(297.794006F, -315.649994F), new Vector2(298.238007F, -315.014008F)); + builder.AddCubicBezier(new Vector2(298.682007F, -314.377991F), new Vector2(299.252014F, -313.880005F), new Vector2(299.947998F, -313.519989F)); + builder.AddCubicBezier(new Vector2(300.644012F, -313.160004F), new Vector2(301.381989F, -312.872009F), new Vector2(302.161987F, -312.656006F)); + builder.AddCubicBezier(new Vector2(302.941986F, -312.440002F), new Vector2(303.679993F, -312.217987F), new Vector2(304.376007F, -311.98999F)); + builder.AddCubicBezier(new Vector2(305.071991F, -311.761993F), new Vector2(305.641998F, -311.473999F), new Vector2(306.085999F, -311.126007F)); + builder.AddCubicBezier(new Vector2(306.529999F, -310.778015F), new Vector2(306.752014F, -310.291992F), new Vector2(306.752014F, -309.667999F)); + builder.AddCubicBezier(new Vector2(306.752014F, -309.044006F), new Vector2(306.476013F, -308.558014F), new Vector2(305.924011F, -308.209991F)); + builder.AddCubicBezier(new Vector2(305.372009F, -307.862F), new Vector2(304.59201F, -307.687988F), new Vector2(303.584015F, -307.687988F)); + builder.AddCubicBezier(new Vector2(302.575989F, -307.687988F), new Vector2(301.664001F, -307.873993F), new Vector2(300.847992F, -308.246002F)); + builder.AddCubicBezier(new Vector2(300.032013F, -308.618011F), new Vector2(299.312012F, -309.187988F), new Vector2(298.687988F, -309.955994F)); + builder.AddLine(new Vector2(296.600006F, -307.868011F)); + builder.AddCubicBezier(new Vector2(297.127991F, -307.220001F), new Vector2(297.746002F, -306.661987F), new Vector2(298.45401F, -306.194F)); + builder.AddCubicBezier(new Vector2(299.161987F, -305.726013F), new Vector2(299.947998F, -305.365997F), new Vector2(300.812012F, -305.114014F)); + builder.AddCubicBezier(new Vector2(301.675995F, -304.862F), new Vector2(302.588013F, -304.735992F), new Vector2(303.548004F, -304.735992F)); + builder.AddCubicBezier(new Vector2(305.467987F, -304.735992F), new Vector2(306.997986F, -305.20401F), new Vector2(308.138F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1339() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(281.623993F, -305.096008F)); + builder.AddLine(new Vector2(281.623993F, -322.196014F)); + builder.AddLine(new Vector2(278.384003F, -322.196014F)); + builder.AddLine(new Vector2(278.384003F, -305.096008F)); + builder.AddLine(new Vector2(281.623993F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(293.720001F, -305.096008F)); + builder.AddLine(new Vector2(293.720001F, -315.716003F)); + builder.AddCubicBezier(new Vector2(293.720001F, -316.891998F), new Vector2(293.432007F, -318.002014F), new Vector2(292.855988F, -319.04599F)); + builder.AddCubicBezier(new Vector2(292.279999F, -320.089996F), new Vector2(291.493988F, -320.936005F), new Vector2(290.497986F, -321.584015F)); + builder.AddCubicBezier(new Vector2(289.502014F, -322.231995F), new Vector2(288.355988F, -322.556F), new Vector2(287.059998F, -322.556F)); + builder.AddCubicBezier(new Vector2(285.764008F, -322.556F), new Vector2(284.600006F, -322.261993F), new Vector2(283.567993F, -321.674011F)); + builder.AddCubicBezier(new Vector2(282.536011F, -321.085999F), new Vector2(281.731995F, -320.287994F), new Vector2(281.156006F, -319.279999F)); + builder.AddCubicBezier(new Vector2(280.579987F, -318.272003F), new Vector2(280.291992F, -317.119995F), new Vector2(280.291992F, -315.824005F)); + builder.AddLine(new Vector2(281.623993F, -315.067993F)); + builder.AddCubicBezier(new Vector2(281.623993F, -315.932007F), new Vector2(281.81601F, -316.700012F), new Vector2(282.200012F, -317.372009F)); + builder.AddCubicBezier(new Vector2(282.584015F, -318.044006F), new Vector2(283.112F, -318.571991F), new Vector2(283.783997F, -318.955994F)); + builder.AddCubicBezier(new Vector2(284.455994F, -319.339996F), new Vector2(285.223999F, -319.532013F), new Vector2(286.088013F, -319.532013F)); + builder.AddCubicBezier(new Vector2(287.384003F, -319.532013F), new Vector2(288.43399F, -319.112F), new Vector2(289.238007F, -318.272003F)); + builder.AddCubicBezier(new Vector2(290.041992F, -317.432007F), new Vector2(290.444F, -316.364014F), new Vector2(290.444F, -315.067993F)); + builder.AddLine(new Vector2(290.444F, -305.096008F)); + builder.AddLine(new Vector2(293.720001F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1340() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(270.787994F, -305.492004F)); + builder.AddCubicBezier(new Vector2(271.963989F, -305.996002F), new Vector2(272.971985F, -306.727997F), new Vector2(273.812012F, -307.687988F)); + builder.AddLine(new Vector2(271.723999F, -309.812012F)); + builder.AddCubicBezier(new Vector2(271.14801F, -309.140015F), new Vector2(270.458008F, -308.635986F), new Vector2(269.653992F, -308.299988F)); + builder.AddCubicBezier(new Vector2(268.850006F, -307.963989F), new Vector2(267.967987F, -307.79599F), new Vector2(267.007996F, -307.79599F)); + builder.AddCubicBezier(new Vector2(265.855988F, -307.79599F), new Vector2(264.835999F, -308.041992F), new Vector2(263.947998F, -308.533997F)); + builder.AddCubicBezier(new Vector2(263.059998F, -309.026001F), new Vector2(262.376007F, -309.721985F), new Vector2(261.895996F, -310.622009F)); + builder.AddCubicBezier(new Vector2(261.415985F, -311.522003F), new Vector2(261.175995F, -312.571991F), new Vector2(261.175995F, -313.772003F)); + builder.AddCubicBezier(new Vector2(261.175995F, -314.947998F), new Vector2(261.403992F, -315.967987F), new Vector2(261.859985F, -316.832001F)); + builder.AddCubicBezier(new Vector2(262.31601F, -317.696014F), new Vector2(262.963989F, -318.368011F), new Vector2(263.803986F, -318.847992F)); + builder.AddCubicBezier(new Vector2(264.644012F, -319.328003F), new Vector2(265.615997F, -319.567993F), new Vector2(266.720001F, -319.567993F)); + builder.AddCubicBezier(new Vector2(267.776001F, -319.567993F), new Vector2(268.675995F, -319.346008F), new Vector2(269.420013F, -318.902008F)); + builder.AddCubicBezier(new Vector2(270.164001F, -318.458008F), new Vector2(270.73999F, -317.834015F), new Vector2(271.14801F, -317.029999F)); + builder.AddCubicBezier(new Vector2(271.556F, -316.226013F), new Vector2(271.76001F, -315.247986F), new Vector2(271.76001F, -314.096008F)); + builder.AddLine(new Vector2(272.947998F, -315.140015F)); + builder.AddLine(new Vector2(260.23999F, -315.140015F)); + builder.AddLine(new Vector2(260.23999F, -312.440002F)); + builder.AddLine(new Vector2(274.675995F, -312.440002F)); + builder.AddCubicBezier(new Vector2(274.747986F, -312.776001F), new Vector2(274.79599F, -313.082001F), new Vector2(274.820007F, -313.358002F)); + builder.AddCubicBezier(new Vector2(274.843994F, -313.634003F), new Vector2(274.855988F, -313.891998F), new Vector2(274.855988F, -314.131989F)); + builder.AddCubicBezier(new Vector2(274.855988F, -315.764008F), new Vector2(274.514008F, -317.216003F), new Vector2(273.829987F, -318.488007F)); + builder.AddCubicBezier(new Vector2(273.145996F, -319.76001F), new Vector2(272.191986F, -320.756012F), new Vector2(270.967987F, -321.476013F)); + builder.AddCubicBezier(new Vector2(269.743988F, -322.196014F), new Vector2(268.35199F, -322.556F), new Vector2(266.791992F, -322.556F)); + builder.AddCubicBezier(new Vector2(265.135986F, -322.556F), new Vector2(263.641998F, -322.165985F), new Vector2(262.309998F, -321.385986F)); + builder.AddCubicBezier(new Vector2(260.977997F, -320.605988F), new Vector2(259.921997F, -319.544006F), new Vector2(259.141998F, -318.200012F)); + builder.AddCubicBezier(new Vector2(258.362F, -316.855988F), new Vector2(257.971985F, -315.343994F), new Vector2(257.971985F, -313.664001F)); + builder.AddCubicBezier(new Vector2(257.971985F, -311.959991F), new Vector2(258.368011F, -310.436005F), new Vector2(259.160004F, -309.09201F)); + builder.AddCubicBezier(new Vector2(259.951996F, -307.747986F), new Vector2(261.026001F, -306.686005F), new Vector2(262.381989F, -305.906006F)); + builder.AddCubicBezier(new Vector2(263.738007F, -305.126007F), new Vector2(265.279999F, -304.735992F), new Vector2(267.007996F, -304.735992F)); + builder.AddCubicBezier(new Vector2(268.35199F, -304.735992F), new Vector2(269.612F, -304.988007F), new Vector2(270.787994F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1341() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(253.309998F, -305.492004F)); + builder.AddCubicBezier(new Vector2(254.449997F, -305.996002F), new Vector2(255.416F, -306.70401F), new Vector2(256.208008F, -307.615997F)); + builder.AddLine(new Vector2(254.084F, -309.776001F)); + builder.AddCubicBezier(new Vector2(253.531998F, -309.152008F), new Vector2(252.878006F, -308.678009F), new Vector2(252.121994F, -308.354004F)); + builder.AddCubicBezier(new Vector2(251.365997F, -308.029999F), new Vector2(250.531998F, -307.868011F), new Vector2(249.619995F, -307.868011F)); + builder.AddCubicBezier(new Vector2(248.539993F, -307.868011F), new Vector2(247.580002F, -308.119995F), new Vector2(246.740005F, -308.623993F)); + builder.AddCubicBezier(new Vector2(245.899994F, -309.127991F), new Vector2(245.240005F, -309.812012F), new Vector2(244.759995F, -310.675995F)); + builder.AddCubicBezier(new Vector2(244.279999F, -311.540009F), new Vector2(244.039993F, -312.536011F), new Vector2(244.039993F, -313.664001F)); + builder.AddCubicBezier(new Vector2(244.039993F, -314.791992F), new Vector2(244.279999F, -315.787994F), new Vector2(244.759995F, -316.652008F)); + builder.AddCubicBezier(new Vector2(245.240005F, -317.515991F), new Vector2(245.899994F, -318.194F), new Vector2(246.740005F, -318.686005F)); + builder.AddCubicBezier(new Vector2(247.580002F, -319.178009F), new Vector2(248.539993F, -319.424011F), new Vector2(249.619995F, -319.424011F)); + builder.AddCubicBezier(new Vector2(250.507996F, -319.424011F), new Vector2(251.335999F, -319.261993F), new Vector2(252.104004F, -318.937988F)); + builder.AddCubicBezier(new Vector2(252.871994F, -318.614014F), new Vector2(253.520004F, -318.140015F), new Vector2(254.048004F, -317.515991F)); + builder.AddLine(new Vector2(256.208008F, -319.675995F)); + builder.AddCubicBezier(new Vector2(255.391998F, -320.612F), new Vector2(254.419998F, -321.325989F), new Vector2(253.292007F, -321.817993F)); + builder.AddCubicBezier(new Vector2(252.164001F, -322.309998F), new Vector2(250.940002F, -322.556F), new Vector2(249.619995F, -322.556F)); + builder.AddCubicBezier(new Vector2(247.940002F, -322.556F), new Vector2(246.421997F, -322.165985F), new Vector2(245.065994F, -321.385986F)); + builder.AddCubicBezier(new Vector2(243.710007F, -320.605988F), new Vector2(242.641998F, -319.544006F), new Vector2(241.862F, -318.200012F)); + builder.AddCubicBezier(new Vector2(241.082001F, -316.855988F), new Vector2(240.692001F, -315.343994F), new Vector2(240.692001F, -313.664001F)); + builder.AddCubicBezier(new Vector2(240.692001F, -312.007996F), new Vector2(241.082001F, -310.502014F), new Vector2(241.862F, -309.145996F)); + builder.AddCubicBezier(new Vector2(242.641998F, -307.790009F), new Vector2(243.710007F, -306.716003F), new Vector2(245.065994F, -305.924011F)); + builder.AddCubicBezier(new Vector2(246.421997F, -305.131989F), new Vector2(247.940002F, -304.735992F), new Vector2(249.619995F, -304.735992F)); + builder.AddCubicBezier(new Vector2(250.940002F, -304.735992F), new Vector2(252.169998F, -304.988007F), new Vector2(253.309998F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1342() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(226.759995F, -305.492004F)); + builder.AddCubicBezier(new Vector2(227.936005F, -305.996002F), new Vector2(228.944F, -306.727997F), new Vector2(229.783997F, -307.687988F)); + builder.AddLine(new Vector2(227.695999F, -309.812012F)); + builder.AddCubicBezier(new Vector2(227.119995F, -309.140015F), new Vector2(226.429993F, -308.635986F), new Vector2(225.626007F, -308.299988F)); + builder.AddCubicBezier(new Vector2(224.822006F, -307.963989F), new Vector2(223.940002F, -307.79599F), new Vector2(222.979996F, -307.79599F)); + builder.AddCubicBezier(new Vector2(221.828003F, -307.79599F), new Vector2(220.807999F, -308.041992F), new Vector2(219.919998F, -308.533997F)); + builder.AddCubicBezier(new Vector2(219.031998F, -309.026001F), new Vector2(218.348007F, -309.721985F), new Vector2(217.867996F, -310.622009F)); + builder.AddCubicBezier(new Vector2(217.388F, -311.522003F), new Vector2(217.147995F, -312.571991F), new Vector2(217.147995F, -313.772003F)); + builder.AddCubicBezier(new Vector2(217.147995F, -314.947998F), new Vector2(217.376007F, -315.967987F), new Vector2(217.832001F, -316.832001F)); + builder.AddCubicBezier(new Vector2(218.287994F, -317.696014F), new Vector2(218.936005F, -318.368011F), new Vector2(219.776001F, -318.847992F)); + builder.AddCubicBezier(new Vector2(220.615997F, -319.328003F), new Vector2(221.587997F, -319.567993F), new Vector2(222.692001F, -319.567993F)); + builder.AddCubicBezier(new Vector2(223.748001F, -319.567993F), new Vector2(224.647995F, -319.346008F), new Vector2(225.391998F, -318.902008F)); + builder.AddCubicBezier(new Vector2(226.136002F, -318.458008F), new Vector2(226.712006F, -317.834015F), new Vector2(227.119995F, -317.029999F)); + builder.AddCubicBezier(new Vector2(227.528F, -316.226013F), new Vector2(227.731995F, -315.247986F), new Vector2(227.731995F, -314.096008F)); + builder.AddLine(new Vector2(228.919998F, -315.140015F)); + builder.AddLine(new Vector2(216.212006F, -315.140015F)); + builder.AddLine(new Vector2(216.212006F, -312.440002F)); + builder.AddLine(new Vector2(230.647995F, -312.440002F)); + builder.AddCubicBezier(new Vector2(230.720001F, -312.776001F), new Vector2(230.768005F, -313.082001F), new Vector2(230.792007F, -313.358002F)); + builder.AddCubicBezier(new Vector2(230.815994F, -313.634003F), new Vector2(230.828003F, -313.891998F), new Vector2(230.828003F, -314.131989F)); + builder.AddCubicBezier(new Vector2(230.828003F, -315.764008F), new Vector2(230.485992F, -317.216003F), new Vector2(229.802002F, -318.488007F)); + builder.AddCubicBezier(new Vector2(229.117996F, -319.76001F), new Vector2(228.164001F, -320.756012F), new Vector2(226.940002F, -321.476013F)); + builder.AddCubicBezier(new Vector2(225.716003F, -322.196014F), new Vector2(224.324005F, -322.556F), new Vector2(222.764008F, -322.556F)); + builder.AddCubicBezier(new Vector2(221.108002F, -322.556F), new Vector2(219.613998F, -322.165985F), new Vector2(218.281998F, -321.385986F)); + builder.AddCubicBezier(new Vector2(216.949997F, -320.605988F), new Vector2(215.893997F, -319.544006F), new Vector2(215.113998F, -318.200012F)); + builder.AddCubicBezier(new Vector2(214.334F, -316.855988F), new Vector2(213.944F, -315.343994F), new Vector2(213.944F, -313.664001F)); + builder.AddCubicBezier(new Vector2(213.944F, -311.959991F), new Vector2(214.339996F, -310.436005F), new Vector2(215.132004F, -309.09201F)); + builder.AddCubicBezier(new Vector2(215.923996F, -307.747986F), new Vector2(216.998001F, -306.686005F), new Vector2(218.354004F, -305.906006F)); + builder.AddCubicBezier(new Vector2(219.710007F, -305.126007F), new Vector2(221.251999F, -304.735992F), new Vector2(222.979996F, -304.735992F)); + builder.AddCubicBezier(new Vector2(224.324005F, -304.735992F), new Vector2(225.584F, -304.988007F), new Vector2(226.759995F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1343() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(209.281998F, -305.492004F)); + builder.AddCubicBezier(new Vector2(210.421997F, -305.996002F), new Vector2(211.388F, -306.70401F), new Vector2(212.179993F, -307.615997F)); + builder.AddLine(new Vector2(210.056F, -309.776001F)); + builder.AddCubicBezier(new Vector2(209.503998F, -309.152008F), new Vector2(208.850006F, -308.678009F), new Vector2(208.093994F, -308.354004F)); + builder.AddCubicBezier(new Vector2(207.337997F, -308.029999F), new Vector2(206.503998F, -307.868011F), new Vector2(205.591995F, -307.868011F)); + builder.AddCubicBezier(new Vector2(204.511993F, -307.868011F), new Vector2(203.552002F, -308.119995F), new Vector2(202.712006F, -308.623993F)); + builder.AddCubicBezier(new Vector2(201.871994F, -309.127991F), new Vector2(201.212006F, -309.812012F), new Vector2(200.731995F, -310.675995F)); + builder.AddCubicBezier(new Vector2(200.251999F, -311.540009F), new Vector2(200.011993F, -312.536011F), new Vector2(200.011993F, -313.664001F)); + builder.AddCubicBezier(new Vector2(200.011993F, -314.791992F), new Vector2(200.251999F, -315.787994F), new Vector2(200.731995F, -316.652008F)); + builder.AddCubicBezier(new Vector2(201.212006F, -317.515991F), new Vector2(201.871994F, -318.194F), new Vector2(202.712006F, -318.686005F)); + builder.AddCubicBezier(new Vector2(203.552002F, -319.178009F), new Vector2(204.511993F, -319.424011F), new Vector2(205.591995F, -319.424011F)); + builder.AddCubicBezier(new Vector2(206.479996F, -319.424011F), new Vector2(207.307999F, -319.261993F), new Vector2(208.076004F, -318.937988F)); + builder.AddCubicBezier(new Vector2(208.843994F, -318.614014F), new Vector2(209.492004F, -318.140015F), new Vector2(210.020004F, -317.515991F)); + builder.AddLine(new Vector2(212.179993F, -319.675995F)); + builder.AddCubicBezier(new Vector2(211.363998F, -320.612F), new Vector2(210.391998F, -321.325989F), new Vector2(209.264008F, -321.817993F)); + builder.AddCubicBezier(new Vector2(208.136002F, -322.309998F), new Vector2(206.912003F, -322.556F), new Vector2(205.591995F, -322.556F)); + builder.AddCubicBezier(new Vector2(203.912003F, -322.556F), new Vector2(202.393997F, -322.165985F), new Vector2(201.037994F, -321.385986F)); + builder.AddCubicBezier(new Vector2(199.682007F, -320.605988F), new Vector2(198.613998F, -319.544006F), new Vector2(197.834F, -318.200012F)); + builder.AddCubicBezier(new Vector2(197.054001F, -316.855988F), new Vector2(196.664001F, -315.343994F), new Vector2(196.664001F, -313.664001F)); + builder.AddCubicBezier(new Vector2(196.664001F, -312.007996F), new Vector2(197.054001F, -310.502014F), new Vector2(197.834F, -309.145996F)); + builder.AddCubicBezier(new Vector2(198.613998F, -307.790009F), new Vector2(199.682007F, -306.716003F), new Vector2(201.037994F, -305.924011F)); + builder.AddCubicBezier(new Vector2(202.393997F, -305.131989F), new Vector2(203.912003F, -304.735992F), new Vector2(205.591995F, -304.735992F)); + builder.AddCubicBezier(new Vector2(206.912003F, -304.735992F), new Vector2(208.141998F, -304.988007F), new Vector2(209.281998F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1344() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(188.276001F, -318.343994F)); + builder.AddCubicBezier(new Vector2(189.044006F, -319.112F), new Vector2(190.028F, -319.496002F), new Vector2(191.227997F, -319.496002F)); + builder.AddCubicBezier(new Vector2(191.804001F, -319.496002F), new Vector2(192.307999F, -319.411987F), new Vector2(192.740005F, -319.243988F)); + builder.AddCubicBezier(new Vector2(193.171997F, -319.075989F), new Vector2(193.567993F, -318.799988F), new Vector2(193.927994F, -318.415985F)); + builder.AddLine(new Vector2(196.052002F, -320.612F)); + builder.AddCubicBezier(new Vector2(195.451996F, -321.308014F), new Vector2(194.804001F, -321.806F), new Vector2(194.108002F, -322.105988F)); + builder.AddCubicBezier(new Vector2(193.412003F, -322.406006F), new Vector2(192.632004F, -322.556F), new Vector2(191.768005F, -322.556F)); + builder.AddCubicBezier(new Vector2(189.871994F, -322.556F), new Vector2(188.419998F, -321.90799F), new Vector2(187.412003F, -320.612F)); + builder.AddCubicBezier(new Vector2(186.404007F, -319.31601F), new Vector2(185.899994F, -317.575989F), new Vector2(185.899994F, -315.391998F)); + builder.AddLine(new Vector2(187.123993F, -314.81601F)); + builder.AddCubicBezier(new Vector2(187.123993F, -316.399994F), new Vector2(187.507996F, -317.575989F), new Vector2(188.276001F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(187.123993F, -305.096008F)); + builder.AddLine(new Vector2(187.123993F, -322.196014F)); + builder.AddLine(new Vector2(183.884003F, -322.196014F)); + builder.AddLine(new Vector2(183.884003F, -305.096008F)); + builder.AddLine(new Vector2(187.123993F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1345() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(168.475998F, -308.623993F)); + builder.AddCubicBezier(new Vector2(167.636002F, -309.127991F), new Vector2(166.975998F, -309.817993F), new Vector2(166.496002F, -310.694F)); + builder.AddCubicBezier(new Vector2(166.016006F, -311.570007F), new Vector2(165.776001F, -312.571991F), new Vector2(165.776001F, -313.700012F)); + builder.AddCubicBezier(new Vector2(165.776001F, -314.803986F), new Vector2(166.016006F, -315.787994F), new Vector2(166.496002F, -316.652008F)); + builder.AddCubicBezier(new Vector2(166.975998F, -317.515991F), new Vector2(167.636002F, -318.194F), new Vector2(168.475998F, -318.686005F)); + builder.AddCubicBezier(new Vector2(169.315994F, -319.178009F), new Vector2(170.264008F, -319.424011F), new Vector2(171.320007F, -319.424011F)); + builder.AddCubicBezier(new Vector2(172.423996F, -319.424011F), new Vector2(173.389999F, -319.178009F), new Vector2(174.218002F, -318.686005F)); + builder.AddCubicBezier(new Vector2(175.046005F, -318.194F), new Vector2(175.705994F, -317.515991F), new Vector2(176.197998F, -316.652008F)); + builder.AddCubicBezier(new Vector2(176.690002F, -315.787994F), new Vector2(176.936005F, -314.803986F), new Vector2(176.936005F, -313.700012F)); + builder.AddCubicBezier(new Vector2(176.936005F, -312.571991F), new Vector2(176.695999F, -311.570007F), new Vector2(176.216003F, -310.694F)); + builder.AddCubicBezier(new Vector2(175.735992F, -309.817993F), new Vector2(175.076004F, -309.127991F), new Vector2(174.235992F, -308.623993F)); + builder.AddCubicBezier(new Vector2(173.395996F, -308.119995F), new Vector2(172.423996F, -307.868011F), new Vector2(171.320007F, -307.868011F)); + builder.AddCubicBezier(new Vector2(170.264008F, -307.868011F), new Vector2(169.315994F, -308.119995F), new Vector2(168.475998F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(175.873993F, -305.924011F)); + builder.AddCubicBezier(new Vector2(177.229996F, -306.716003F), new Vector2(178.304001F, -307.790009F), new Vector2(179.095993F, -309.145996F)); + builder.AddCubicBezier(new Vector2(179.888F, -310.502014F), new Vector2(180.283997F, -312.019989F), new Vector2(180.283997F, -313.700012F)); + builder.AddCubicBezier(new Vector2(180.283997F, -315.355988F), new Vector2(179.888F, -316.855988F), new Vector2(179.095993F, -318.200012F)); + builder.AddCubicBezier(new Vector2(178.304001F, -319.544006F), new Vector2(177.229996F, -320.605988F), new Vector2(175.873993F, -321.385986F)); + builder.AddCubicBezier(new Vector2(174.518005F, -322.165985F), new Vector2(173F, -322.556F), new Vector2(171.320007F, -322.556F)); + builder.AddCubicBezier(new Vector2(169.664001F, -322.556F), new Vector2(168.164001F, -322.160004F), new Vector2(166.820007F, -321.368011F)); + builder.AddCubicBezier(new Vector2(165.475998F, -320.575989F), new Vector2(164.408005F, -319.514008F), new Vector2(163.615997F, -318.182007F)); + builder.AddCubicBezier(new Vector2(162.824005F, -316.850006F), new Vector2(162.427994F, -315.355988F), new Vector2(162.427994F, -313.700012F)); + builder.AddCubicBezier(new Vector2(162.427994F, -312.019989F), new Vector2(162.824005F, -310.502014F), new Vector2(163.615997F, -309.145996F)); + builder.AddCubicBezier(new Vector2(164.408005F, -307.790009F), new Vector2(165.475998F, -306.716003F), new Vector2(166.820007F, -305.924011F)); + builder.AddCubicBezier(new Vector2(168.164001F, -305.131989F), new Vector2(169.664001F, -304.735992F), new Vector2(171.320007F, -304.735992F)); + builder.AddCubicBezier(new Vector2(173F, -304.735992F), new Vector2(174.518005F, -305.131989F), new Vector2(175.873993F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1346() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(161.276001F, -319.243988F)); + builder.AddLine(new Vector2(161.276001F, -322.196014F)); + builder.AddLine(new Vector2(148.388F, -322.196014F)); + builder.AddLine(new Vector2(148.388F, -319.243988F)); + builder.AddLine(new Vector2(161.276001F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(155.839996F, -305.096008F)); + builder.AddLine(new Vector2(155.839996F, -324.752014F)); + builder.AddCubicBezier(new Vector2(155.839996F, -325.808014F), new Vector2(156.121994F, -326.630005F), new Vector2(156.686005F, -327.217987F)); + builder.AddCubicBezier(new Vector2(157.25F, -327.806F), new Vector2(158.048004F, -328.100006F), new Vector2(159.080002F, -328.100006F)); + builder.AddCubicBezier(new Vector2(159.632004F, -328.100006F), new Vector2(160.100006F, -328.015991F), new Vector2(160.483994F, -327.847992F)); + builder.AddCubicBezier(new Vector2(160.867996F, -327.679993F), new Vector2(161.216003F, -327.428009F), new Vector2(161.528F, -327.09201F)); + builder.AddLine(new Vector2(163.651993F, -329.179993F)); + builder.AddCubicBezier(new Vector2(163.052002F, -329.828003F), new Vector2(162.391998F, -330.320007F), new Vector2(161.671997F, -330.656006F)); + builder.AddCubicBezier(new Vector2(160.951996F, -330.992004F), new Vector2(160.100006F, -331.160004F), new Vector2(159.115997F, -331.160004F)); + builder.AddCubicBezier(new Vector2(157.820007F, -331.160004F), new Vector2(156.679993F, -330.884003F), new Vector2(155.695999F, -330.332001F)); + builder.AddCubicBezier(new Vector2(154.712006F, -329.779999F), new Vector2(153.944F, -329.023987F), new Vector2(153.391998F, -328.063995F)); + builder.AddCubicBezier(new Vector2(152.839996F, -327.104004F), new Vector2(152.563995F, -326F), new Vector2(152.563995F, -324.752014F)); + builder.AddLine(new Vector2(152.563995F, -305.096008F)); + builder.AddLine(new Vector2(155.839996F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1347() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(127.292F, -308.623993F)); + builder.AddCubicBezier(new Vector2(126.452003F, -309.127991F), new Vector2(125.792F, -309.817993F), new Vector2(125.311996F, -310.694F)); + builder.AddCubicBezier(new Vector2(124.832001F, -311.570007F), new Vector2(124.592003F, -312.571991F), new Vector2(124.592003F, -313.700012F)); + builder.AddCubicBezier(new Vector2(124.592003F, -314.803986F), new Vector2(124.832001F, -315.787994F), new Vector2(125.311996F, -316.652008F)); + builder.AddCubicBezier(new Vector2(125.792F, -317.515991F), new Vector2(126.452003F, -318.194F), new Vector2(127.292F, -318.686005F)); + builder.AddCubicBezier(new Vector2(128.132004F, -319.178009F), new Vector2(129.080002F, -319.424011F), new Vector2(130.136002F, -319.424011F)); + builder.AddCubicBezier(new Vector2(131.240005F, -319.424011F), new Vector2(132.205994F, -319.178009F), new Vector2(133.033997F, -318.686005F)); + builder.AddCubicBezier(new Vector2(133.862F, -318.194F), new Vector2(134.522003F, -317.515991F), new Vector2(135.014008F, -316.652008F)); + builder.AddCubicBezier(new Vector2(135.505997F, -315.787994F), new Vector2(135.751999F, -314.803986F), new Vector2(135.751999F, -313.700012F)); + builder.AddCubicBezier(new Vector2(135.751999F, -312.571991F), new Vector2(135.511993F, -311.570007F), new Vector2(135.031998F, -310.694F)); + builder.AddCubicBezier(new Vector2(134.552002F, -309.817993F), new Vector2(133.891998F, -309.127991F), new Vector2(133.052002F, -308.623993F)); + builder.AddCubicBezier(new Vector2(132.212006F, -308.119995F), new Vector2(131.240005F, -307.868011F), new Vector2(130.136002F, -307.868011F)); + builder.AddCubicBezier(new Vector2(129.080002F, -307.868011F), new Vector2(128.132004F, -308.119995F), new Vector2(127.292F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(134.690002F, -305.924011F)); + builder.AddCubicBezier(new Vector2(136.046005F, -306.716003F), new Vector2(137.119995F, -307.790009F), new Vector2(137.912003F, -309.145996F)); + builder.AddCubicBezier(new Vector2(138.703995F, -310.502014F), new Vector2(139.100006F, -312.019989F), new Vector2(139.100006F, -313.700012F)); + builder.AddCubicBezier(new Vector2(139.100006F, -315.355988F), new Vector2(138.703995F, -316.855988F), new Vector2(137.912003F, -318.200012F)); + builder.AddCubicBezier(new Vector2(137.119995F, -319.544006F), new Vector2(136.046005F, -320.605988F), new Vector2(134.690002F, -321.385986F)); + builder.AddCubicBezier(new Vector2(133.334F, -322.165985F), new Vector2(131.815994F, -322.556F), new Vector2(130.136002F, -322.556F)); + builder.AddCubicBezier(new Vector2(128.479996F, -322.556F), new Vector2(126.980003F, -322.160004F), new Vector2(125.636002F, -321.368011F)); + builder.AddCubicBezier(new Vector2(124.292F, -320.575989F), new Vector2(123.223999F, -319.514008F), new Vector2(122.431999F, -318.182007F)); + builder.AddCubicBezier(new Vector2(121.639999F, -316.850006F), new Vector2(121.244003F, -315.355988F), new Vector2(121.244003F, -313.700012F)); + builder.AddCubicBezier(new Vector2(121.244003F, -312.019989F), new Vector2(121.639999F, -310.502014F), new Vector2(122.431999F, -309.145996F)); + builder.AddCubicBezier(new Vector2(123.223999F, -307.790009F), new Vector2(124.292F, -306.716003F), new Vector2(125.636002F, -305.924011F)); + builder.AddCubicBezier(new Vector2(126.980003F, -305.131989F), new Vector2(128.479996F, -304.735992F), new Vector2(130.136002F, -304.735992F)); + builder.AddCubicBezier(new Vector2(131.815994F, -304.735992F), new Vector2(133.334F, -305.131989F), new Vector2(134.690002F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1348() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(119.732002F, -319.243988F)); + builder.AddLine(new Vector2(119.732002F, -322.196014F)); + builder.AddLine(new Vector2(108.068001F, -322.196014F)); + builder.AddLine(new Vector2(108.068001F, -319.243988F)); + builder.AddLine(new Vector2(119.732002F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(115.519997F, -305.096008F)); + builder.AddLine(new Vector2(115.519997F, -329.359985F)); + builder.AddLine(new Vector2(112.279999F, -329.359985F)); + builder.AddLine(new Vector2(112.279999F, -305.096008F)); + builder.AddLine(new Vector2(115.519997F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1349() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(85.711998F, -305.096008F)); + builder.AddLine(new Vector2(85.711998F, -322.196014F)); + builder.AddLine(new Vector2(82.4720001F, -322.196014F)); + builder.AddLine(new Vector2(82.4720001F, -305.096008F)); + builder.AddLine(new Vector2(85.711998F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(97.8079987F, -305.096008F)); + builder.AddLine(new Vector2(97.8079987F, -315.716003F)); + builder.AddCubicBezier(new Vector2(97.8079987F, -316.891998F), new Vector2(97.5199966F, -318.002014F), new Vector2(96.9440002F, -319.04599F)); + builder.AddCubicBezier(new Vector2(96.3679962F, -320.089996F), new Vector2(95.5820007F, -320.936005F), new Vector2(94.5859985F, -321.584015F)); + builder.AddCubicBezier(new Vector2(93.5899963F, -322.231995F), new Vector2(92.4440002F, -322.556F), new Vector2(91.1480026F, -322.556F)); + builder.AddCubicBezier(new Vector2(89.8519974F, -322.556F), new Vector2(88.6880035F, -322.261993F), new Vector2(87.6559982F, -321.674011F)); + builder.AddCubicBezier(new Vector2(86.6240005F, -321.085999F), new Vector2(85.8199997F, -320.287994F), new Vector2(85.2440033F, -319.279999F)); + builder.AddCubicBezier(new Vector2(84.6679993F, -318.272003F), new Vector2(84.3799973F, -317.119995F), new Vector2(84.3799973F, -315.824005F)); + builder.AddLine(new Vector2(85.711998F, -315.067993F)); + builder.AddCubicBezier(new Vector2(85.711998F, -315.932007F), new Vector2(85.9039993F, -316.700012F), new Vector2(86.288002F, -317.372009F)); + builder.AddCubicBezier(new Vector2(86.6719971F, -318.044006F), new Vector2(87.1999969F, -318.571991F), new Vector2(87.8720016F, -318.955994F)); + builder.AddCubicBezier(new Vector2(88.5439987F, -319.339996F), new Vector2(89.3119965F, -319.532013F), new Vector2(90.1760025F, -319.532013F)); + builder.AddCubicBezier(new Vector2(91.4720001F, -319.532013F), new Vector2(92.5220032F, -319.112F), new Vector2(93.3259964F, -318.272003F)); + builder.AddCubicBezier(new Vector2(94.1299973F, -317.432007F), new Vector2(94.5319977F, -316.364014F), new Vector2(94.5319977F, -315.067993F)); + builder.AddLine(new Vector2(94.5319977F, -305.096008F)); + builder.AddLine(new Vector2(97.8079987F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1350() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(77.7559967F, -305.096008F)); + builder.AddLine(new Vector2(77.7559967F, -322.196014F)); + builder.AddLine(new Vector2(74.4800034F, -322.196014F)); + builder.AddLine(new Vector2(74.4800034F, -318.019989F)); + builder.AddLine(new Vector2(75.0920029F, -313.880005F)); + builder.AddLine(new Vector2(74.4800034F, -309.70401F)); + builder.AddLine(new Vector2(74.4800034F, -305.096008F)); + builder.AddLine(new Vector2(77.7559967F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(66.4520035F, -308.552002F)); + builder.AddCubicBezier(new Vector2(65.6119995F, -309.056F), new Vector2(64.9580002F, -309.746002F), new Vector2(64.4899979F, -310.622009F)); + builder.AddCubicBezier(new Vector2(64.0220032F, -311.497986F), new Vector2(63.7879982F, -312.511993F), new Vector2(63.7879982F, -313.664001F)); + builder.AddCubicBezier(new Vector2(63.7879982F, -314.791992F), new Vector2(64.0220032F, -315.794006F), new Vector2(64.4899979F, -316.670013F)); + builder.AddCubicBezier(new Vector2(64.9580002F, -317.54599F), new Vector2(65.6060028F, -318.235992F), new Vector2(66.4339981F, -318.73999F)); + builder.AddCubicBezier(new Vector2(67.262001F, -319.243988F), new Vector2(68.2160034F, -319.496002F), new Vector2(69.2959976F, -319.496002F)); + builder.AddCubicBezier(new Vector2(70.3759995F, -319.496002F), new Vector2(71.3180008F, -319.25F), new Vector2(72.1220016F, -318.757996F)); + builder.AddCubicBezier(new Vector2(72.9260025F, -318.265991F), new Vector2(73.5559998F, -317.575989F), new Vector2(74.012001F, -316.687988F)); + builder.AddCubicBezier(new Vector2(74.4680023F, -315.799988F), new Vector2(74.6959991F, -314.779999F), new Vector2(74.6959991F, -313.627991F)); + builder.AddCubicBezier(new Vector2(74.6959991F, -311.924011F), new Vector2(74.2040024F, -310.526001F), new Vector2(73.2200012F, -309.43399F)); + builder.AddCubicBezier(new Vector2(72.2360001F, -308.34201F), new Vector2(70.9400024F, -307.79599F), new Vector2(69.3320007F, -307.79599F)); + builder.AddCubicBezier(new Vector2(68.2519989F, -307.79599F), new Vector2(67.2919998F, -308.048004F), new Vector2(66.4520035F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(72.2839966F, -305.54599F)); + builder.AddCubicBezier(new Vector2(73.3160019F, -306.085999F), new Vector2(74.1380005F, -306.835999F), new Vector2(74.75F, -307.79599F)); + builder.AddCubicBezier(new Vector2(75.3619995F, -308.756012F), new Vector2(75.7040024F, -309.847992F), new Vector2(75.776001F, -311.071991F)); + builder.AddLine(new Vector2(75.776001F, -316.220001F)); + builder.AddCubicBezier(new Vector2(75.7040024F, -317.467987F), new Vector2(75.3560028F, -318.56601F), new Vector2(74.7320023F, -319.514008F)); + builder.AddCubicBezier(new Vector2(74.1080017F, -320.462006F), new Vector2(73.2860031F, -321.205994F), new Vector2(72.2659988F, -321.746002F)); + builder.AddCubicBezier(new Vector2(71.2460022F, -322.286011F), new Vector2(70.0879974F, -322.556F), new Vector2(68.7919998F, -322.556F)); + builder.AddCubicBezier(new Vector2(67.2080002F, -322.556F), new Vector2(65.7860031F, -322.160004F), new Vector2(64.526001F, -321.368011F)); + builder.AddCubicBezier(new Vector2(63.2659988F, -320.575989F), new Vector2(62.2700005F, -319.507996F), new Vector2(61.5379982F, -318.164001F)); + builder.AddCubicBezier(new Vector2(60.8059998F, -316.820007F), new Vector2(60.4399986F, -315.308014F), new Vector2(60.4399986F, -313.627991F)); + builder.AddCubicBezier(new Vector2(60.4399986F, -311.947998F), new Vector2(60.8059998F, -310.436005F), new Vector2(61.5379982F, -309.09201F)); + builder.AddCubicBezier(new Vector2(62.2700005F, -307.747986F), new Vector2(63.2659988F, -306.686005F), new Vector2(64.526001F, -305.906006F)); + builder.AddCubicBezier(new Vector2(65.7860031F, -305.126007F), new Vector2(67.2080002F, -304.735992F), new Vector2(68.7919998F, -304.735992F)); + builder.AddCubicBezier(new Vector2(70.0879974F, -304.735992F), new Vector2(71.2519989F, -305.006012F), new Vector2(72.2839966F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1351() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(45.5900002F, -309.145996F)); + builder.AddCubicBezier(new Vector2(44.762001F, -309.614014F), new Vector2(44.1139984F, -310.268005F), new Vector2(43.6459999F, -311.108002F)); + builder.AddCubicBezier(new Vector2(43.1780014F, -311.947998F), new Vector2(42.9440002F, -312.90799F), new Vector2(42.9440002F, -313.988007F)); + builder.AddCubicBezier(new Vector2(42.9440002F, -315.067993F), new Vector2(43.1780014F, -316.022003F), new Vector2(43.6459999F, -316.850006F)); + builder.AddCubicBezier(new Vector2(44.1139984F, -317.678009F), new Vector2(44.7560005F, -318.325989F), new Vector2(45.5719986F, -318.794006F)); + builder.AddCubicBezier(new Vector2(46.3880005F, -319.261993F), new Vector2(47.3359985F, -319.496002F), new Vector2(48.4160004F, -319.496002F)); + builder.AddCubicBezier(new Vector2(49.4720001F, -319.496002F), new Vector2(50.4020004F, -319.261993F), new Vector2(51.2060013F, -318.794006F)); + builder.AddCubicBezier(new Vector2(52.0099983F, -318.325989F), new Vector2(52.6339989F, -317.678009F), new Vector2(53.0779991F, -316.850006F)); + builder.AddCubicBezier(new Vector2(53.5219994F, -316.022003F), new Vector2(53.7439995F, -315.056F), new Vector2(53.7439995F, -313.951996F)); + builder.AddCubicBezier(new Vector2(53.7439995F, -312.847992F), new Vector2(53.5219994F, -311.881989F), new Vector2(53.0779991F, -311.053986F)); + builder.AddCubicBezier(new Vector2(52.6339989F, -310.226013F), new Vector2(52.0159988F, -309.584015F), new Vector2(51.223999F, -309.127991F)); + builder.AddCubicBezier(new Vector2(50.4319992F, -308.671997F), new Vector2(49.4959984F, -308.444F), new Vector2(48.4160004F, -308.444F)); + builder.AddCubicBezier(new Vector2(47.3600006F, -308.444F), new Vector2(46.4179993F, -308.678009F), new Vector2(45.5900002F, -309.145996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(51.3320007F, -306.175995F)); + builder.AddCubicBezier(new Vector2(52.3639984F, -306.70401F), new Vector2(53.1860008F, -307.441986F), new Vector2(53.7980003F, -308.390015F)); + builder.AddCubicBezier(new Vector2(54.4099998F, -309.338013F), new Vector2(54.7519989F, -310.436005F), new Vector2(54.8240013F, -311.68399F)); + builder.AddLine(new Vector2(54.8240013F, -316.220001F)); + builder.AddCubicBezier(new Vector2(54.7519989F, -317.492004F), new Vector2(54.4160004F, -318.60199F), new Vector2(53.8160019F, -319.549988F)); + builder.AddCubicBezier(new Vector2(53.2159996F, -320.497986F), new Vector2(52.394001F, -321.235992F), new Vector2(51.3499985F, -321.764008F)); + builder.AddCubicBezier(new Vector2(50.3059998F, -322.291992F), new Vector2(49.1119995F, -322.556F), new Vector2(47.7680016F, -322.556F)); + builder.AddCubicBezier(new Vector2(46.2319984F, -322.556F), new Vector2(44.8400002F, -322.178009F), new Vector2(43.5919991F, -321.421997F)); + builder.AddCubicBezier(new Vector2(42.3440018F, -320.665985F), new Vector2(41.3660011F, -319.645996F), new Vector2(40.6580009F, -318.362F)); + builder.AddCubicBezier(new Vector2(39.9500008F, -317.078003F), new Vector2(39.5960007F, -315.619995F), new Vector2(39.5960007F, -313.988007F)); + builder.AddCubicBezier(new Vector2(39.5960007F, -312.355988F), new Vector2(39.9560013F, -310.885986F), new Vector2(40.6759987F, -309.578003F)); + builder.AddCubicBezier(new Vector2(41.3959999F, -308.269989F), new Vector2(42.3740005F, -307.243988F), new Vector2(43.6100006F, -306.5F)); + builder.AddCubicBezier(new Vector2(44.8460007F, -305.756012F), new Vector2(46.2439995F, -305.384003F), new Vector2(47.8040009F, -305.384003F)); + builder.AddCubicBezier(new Vector2(49.1240005F, -305.384003F), new Vector2(50.2999992F, -305.64801F), new Vector2(51.3320007F, -306.175995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(52.5019989F, -298.597992F)); + builder.AddCubicBezier(new Vector2(53.8580017F, -299.282013F), new Vector2(54.9140015F, -300.242004F), new Vector2(55.6699982F, -301.477997F)); + builder.AddCubicBezier(new Vector2(56.4259987F, -302.713989F), new Vector2(56.8040009F, -304.14801F), new Vector2(56.8040009F, -305.779999F)); + builder.AddLine(new Vector2(56.8040009F, -322.196014F)); + builder.AddLine(new Vector2(53.5639992F, -322.196014F)); + builder.AddLine(new Vector2(53.5639992F, -317.696014F)); + builder.AddLine(new Vector2(54.1399994F, -313.880005F)); + builder.AddLine(new Vector2(53.5639992F, -310.028015F)); + builder.AddLine(new Vector2(53.5639992F, -305.779999F)); + builder.AddCubicBezier(new Vector2(53.5639992F, -304.220001F), new Vector2(53.0480003F, -302.977997F), new Vector2(52.0159988F, -302.053986F)); + builder.AddCubicBezier(new Vector2(50.9840012F, -301.130005F), new Vector2(49.6040001F, -300.667999F), new Vector2(47.8759995F, -300.667999F)); + builder.AddCubicBezier(new Vector2(46.5559998F, -300.667999F), new Vector2(45.4160004F, -300.902008F), new Vector2(44.4560013F, -301.369995F)); + builder.AddCubicBezier(new Vector2(43.4959984F, -301.838013F), new Vector2(42.6679993F, -302.515991F), new Vector2(41.9720001F, -303.403992F)); + builder.AddLine(new Vector2(39.8479996F, -301.279999F)); + builder.AddCubicBezier(new Vector2(40.6879997F, -300.104004F), new Vector2(41.7799988F, -299.191986F), new Vector2(43.1240005F, -298.544006F)); + builder.AddCubicBezier(new Vector2(44.4679985F, -297.895996F), new Vector2(46.0279999F, -297.571991F), new Vector2(47.8040009F, -297.571991F)); + builder.AddCubicBezier(new Vector2(49.5800018F, -297.571991F), new Vector2(51.1459999F, -297.914001F), new Vector2(52.5019989F, -298.597992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1352() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(33.1160011F, -305.492004F)); + builder.AddCubicBezier(new Vector2(34.2919998F, -305.996002F), new Vector2(35.2999992F, -306.727997F), new Vector2(36.1399994F, -307.687988F)); + builder.AddLine(new Vector2(34.0519981F, -309.812012F)); + builder.AddCubicBezier(new Vector2(33.4760017F, -309.140015F), new Vector2(32.7859993F, -308.635986F), new Vector2(31.9820004F, -308.299988F)); + builder.AddCubicBezier(new Vector2(31.1779995F, -307.963989F), new Vector2(30.2959995F, -307.79599F), new Vector2(29.3360004F, -307.79599F)); + builder.AddCubicBezier(new Vector2(28.184F, -307.79599F), new Vector2(27.1639996F, -308.041992F), new Vector2(26.2759991F, -308.533997F)); + builder.AddCubicBezier(new Vector2(25.3880005F, -309.026001F), new Vector2(24.7040005F, -309.721985F), new Vector2(24.2240009F, -310.622009F)); + builder.AddCubicBezier(new Vector2(23.7439995F, -311.522003F), new Vector2(23.5039997F, -312.571991F), new Vector2(23.5039997F, -313.772003F)); + builder.AddCubicBezier(new Vector2(23.5039997F, -314.947998F), new Vector2(23.7320004F, -315.967987F), new Vector2(24.1879997F, -316.832001F)); + builder.AddCubicBezier(new Vector2(24.6439991F, -317.696014F), new Vector2(25.2919998F, -318.368011F), new Vector2(26.132F, -318.847992F)); + builder.AddCubicBezier(new Vector2(26.9720001F, -319.328003F), new Vector2(27.9440002F, -319.567993F), new Vector2(29.0480003F, -319.567993F)); + builder.AddCubicBezier(new Vector2(30.1040001F, -319.567993F), new Vector2(31.0039997F, -319.346008F), new Vector2(31.7479992F, -318.902008F)); + builder.AddCubicBezier(new Vector2(32.4920006F, -318.458008F), new Vector2(33.0680008F, -317.834015F), new Vector2(33.4760017F, -317.029999F)); + builder.AddCubicBezier(new Vector2(33.8839989F, -316.226013F), new Vector2(34.0880013F, -315.247986F), new Vector2(34.0880013F, -314.096008F)); + builder.AddLine(new Vector2(35.276001F, -315.140015F)); + builder.AddLine(new Vector2(22.5680008F, -315.140015F)); + builder.AddLine(new Vector2(22.5680008F, -312.440002F)); + builder.AddLine(new Vector2(37.0040016F, -312.440002F)); + builder.AddCubicBezier(new Vector2(37.0760002F, -312.776001F), new Vector2(37.1240005F, -313.082001F), new Vector2(37.1479988F, -313.358002F)); + builder.AddCubicBezier(new Vector2(37.1720009F, -313.634003F), new Vector2(37.1839981F, -313.891998F), new Vector2(37.1839981F, -314.131989F)); + builder.AddCubicBezier(new Vector2(37.1839981F, -315.764008F), new Vector2(36.8419991F, -317.216003F), new Vector2(36.1580009F, -318.488007F)); + builder.AddCubicBezier(new Vector2(35.473999F, -319.76001F), new Vector2(34.5200005F, -320.756012F), new Vector2(33.2960014F, -321.476013F)); + builder.AddCubicBezier(new Vector2(32.0719986F, -322.196014F), new Vector2(30.6800003F, -322.556F), new Vector2(29.1200008F, -322.556F)); + builder.AddCubicBezier(new Vector2(27.4640007F, -322.556F), new Vector2(25.9699993F, -322.165985F), new Vector2(24.6380005F, -321.385986F)); + builder.AddCubicBezier(new Vector2(23.3059998F, -320.605988F), new Vector2(22.25F, -319.544006F), new Vector2(21.4699993F, -318.200012F)); + builder.AddCubicBezier(new Vector2(20.6900005F, -316.855988F), new Vector2(20.2999992F, -315.343994F), new Vector2(20.2999992F, -313.664001F)); + builder.AddCubicBezier(new Vector2(20.2999992F, -311.959991F), new Vector2(20.6959991F, -310.436005F), new Vector2(21.4880009F, -309.09201F)); + builder.AddCubicBezier(new Vector2(22.2800007F, -307.747986F), new Vector2(23.3540001F, -306.686005F), new Vector2(24.7099991F, -305.906006F)); + builder.AddCubicBezier(new Vector2(26.066F, -305.126007F), new Vector2(27.6079998F, -304.735992F), new Vector2(29.3360004F, -304.735992F)); + builder.AddCubicBezier(new Vector2(30.6800003F, -304.735992F), new Vector2(31.9400005F, -304.988007F), new Vector2(33.1160011F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1353() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(6.09800005F, -308.552002F)); + builder.AddCubicBezier(new Vector2(5.26999998F, -309.056F), new Vector2(4.63399982F, -309.746002F), new Vector2(4.19000006F, -310.622009F)); + builder.AddCubicBezier(new Vector2(3.74600005F, -311.497986F), new Vector2(3.52399993F, -312.5F), new Vector2(3.52399993F, -313.627991F)); + builder.AddCubicBezier(new Vector2(3.52399993F, -314.779999F), new Vector2(3.75200009F, -315.794006F), new Vector2(4.20800018F, -316.670013F)); + builder.AddCubicBezier(new Vector2(4.66400003F, -317.54599F), new Vector2(5.30000019F, -318.235992F), new Vector2(6.11600018F, -318.73999F)); + builder.AddCubicBezier(new Vector2(6.93200016F, -319.243988F), new Vector2(7.86800003F, -319.496002F), new Vector2(8.92399979F, -319.496002F)); + builder.AddCubicBezier(new Vector2(10.0039997F, -319.496002F), new Vector2(10.9519997F, -319.243988F), new Vector2(11.7679996F, -318.73999F)); + builder.AddCubicBezier(new Vector2(12.5839996F, -318.235992F), new Vector2(13.2259998F, -317.54599F), new Vector2(13.6940002F, -316.670013F)); + builder.AddCubicBezier(new Vector2(14.1619997F, -315.794006F), new Vector2(14.3959999F, -314.791992F), new Vector2(14.3959999F, -313.664001F)); + builder.AddCubicBezier(new Vector2(14.3959999F, -312.511993F), new Vector2(14.1619997F, -311.497986F), new Vector2(13.6940002F, -310.622009F)); + builder.AddCubicBezier(new Vector2(13.2259998F, -309.746002F), new Vector2(12.5839996F, -309.056F), new Vector2(11.7679996F, -308.552002F)); + builder.AddCubicBezier(new Vector2(10.9519997F, -308.048004F), new Vector2(10.0039997F, -307.79599F), new Vector2(8.92399979F, -307.79599F)); + builder.AddCubicBezier(new Vector2(7.86800003F, -307.79599F), new Vector2(6.92600012F, -308.048004F), new Vector2(6.09800005F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(3.704F, -305.096008F)); + builder.AddLine(new Vector2(3.704F, -309.70401F)); + builder.AddLine(new Vector2(3.09200001F, -313.880005F)); + builder.AddLine(new Vector2(3.704F, -318.019989F)); + builder.AddLine(new Vector2(3.704F, -330.799988F)); + builder.AddLine(new Vector2(0.463999987F, -330.799988F)); + builder.AddLine(new Vector2(0.463999987F, -305.096008F)); + builder.AddLine(new Vector2(3.704F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(13.6940002F, -305.906006F)); + builder.AddCubicBezier(new Vector2(14.9540005F, -306.686005F), new Vector2(15.9440002F, -307.747986F), new Vector2(16.6639996F, -309.09201F)); + builder.AddCubicBezier(new Vector2(17.3840008F, -310.436005F), new Vector2(17.7439995F, -311.947998F), new Vector2(17.7439995F, -313.627991F)); + builder.AddCubicBezier(new Vector2(17.7439995F, -315.308014F), new Vector2(17.3840008F, -316.820007F), new Vector2(16.6639996F, -318.164001F)); + builder.AddCubicBezier(new Vector2(15.9440002F, -319.507996F), new Vector2(14.9540005F, -320.575989F), new Vector2(13.6940002F, -321.368011F)); + builder.AddCubicBezier(new Vector2(12.434F, -322.160004F), new Vector2(11.0240002F, -322.556F), new Vector2(9.46399975F, -322.556F)); + builder.AddCubicBezier(new Vector2(8.19200039F, -322.556F), new Vector2(7.03399992F, -322.286011F), new Vector2(5.98999977F, -321.746002F)); + builder.AddCubicBezier(new Vector2(4.9460001F, -321.205994F), new Vector2(4.10599995F, -320.462006F), new Vector2(3.47000003F, -319.514008F)); + builder.AddCubicBezier(new Vector2(2.83400011F, -318.56601F), new Vector2(2.48000002F, -317.467987F), new Vector2(2.40799999F, -316.220001F)); + builder.AddLine(new Vector2(2.40799999F, -311.071991F)); + builder.AddCubicBezier(new Vector2(2.48000002F, -309.847992F), new Vector2(2.82800007F, -308.756012F), new Vector2(3.4519999F, -307.79599F)); + builder.AddCubicBezier(new Vector2(4.07600021F, -306.835999F), new Vector2(4.90999985F, -306.085999F), new Vector2(5.954F, -305.54599F)); + builder.AddCubicBezier(new Vector2(6.99800014F, -305.006012F), new Vector2(8.16800022F, -304.735992F), new Vector2(9.46399975F, -304.735992F)); + builder.AddCubicBezier(new Vector2(11.0240002F, -304.735992F), new Vector2(12.434F, -305.126007F), new Vector2(13.6940002F, -305.906006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1354() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-21.1720009F, -297.932007F)); + builder.AddLine(new Vector2(-17.9319992F, -304.951996F)); + builder.AddLine(new Vector2(-19.7679996F, -308.264008F)); + builder.AddLine(new Vector2(-24.7719994F, -297.932007F)); + builder.AddLine(new Vector2(-21.1720009F, -297.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-17.9319992F, -304.951996F)); + builder.AddLine(new Vector2(-9.93999958F, -322.196014F)); + builder.AddLine(new Vector2(-13.54F, -322.196014F)); + builder.AddLine(new Vector2(-19.3360004F, -308.696014F)); + builder.AddLine(new Vector2(-18.184F, -308.696014F)); + builder.AddLine(new Vector2(-23.6919994F, -322.196014F)); + builder.AddLine(new Vector2(-27.2919998F, -322.196014F)); + builder.AddLine(new Vector2(-19.8759995F, -304.951996F)); + builder.AddLine(new Vector2(-17.9319992F, -304.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1355() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-32.7999992F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-31.6240005F, -305.996002F), new Vector2(-30.6159992F, -306.727997F), new Vector2(-29.7759991F, -307.687988F)); + builder.AddLine(new Vector2(-31.8640003F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-32.4399986F, -309.140015F), new Vector2(-33.1300011F, -308.635986F), new Vector2(-33.9339981F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-34.737999F, -307.963989F), new Vector2(-35.6199989F, -307.79599F), new Vector2(-36.5800018F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-37.7319984F, -307.79599F), new Vector2(-38.7519989F, -308.041992F), new Vector2(-39.6399994F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-40.5279999F, -309.026001F), new Vector2(-41.2120018F, -309.721985F), new Vector2(-41.6920013F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-42.1720009F, -311.522003F), new Vector2(-42.4119987F, -312.571991F), new Vector2(-42.4119987F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-42.4119987F, -314.947998F), new Vector2(-42.1839981F, -315.967987F), new Vector2(-41.7280006F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-41.2719994F, -317.696014F), new Vector2(-40.6240005F, -318.368011F), new Vector2(-39.7840004F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-38.9440002F, -319.328003F), new Vector2(-37.9720001F, -319.567993F), new Vector2(-36.868F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-35.8120003F, -319.567993F), new Vector2(-34.9119987F, -319.346008F), new Vector2(-34.1679993F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-33.4239998F, -318.458008F), new Vector2(-32.8479996F, -317.834015F), new Vector2(-32.4399986F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-32.0320015F, -316.226013F), new Vector2(-31.8279991F, -315.247986F), new Vector2(-31.8279991F, -314.096008F)); + builder.AddLine(new Vector2(-30.6399994F, -315.140015F)); + builder.AddLine(new Vector2(-43.3479996F, -315.140015F)); + builder.AddLine(new Vector2(-43.3479996F, -312.440002F)); + builder.AddLine(new Vector2(-28.9120007F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-28.8400002F, -312.776001F), new Vector2(-28.7919998F, -313.082001F), new Vector2(-28.7679996F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-28.7439995F, -313.634003F), new Vector2(-28.7320004F, -313.891998F), new Vector2(-28.7320004F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-28.7320004F, -315.764008F), new Vector2(-29.0739994F, -317.216003F), new Vector2(-29.7579994F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-30.4419994F, -319.76001F), new Vector2(-31.3959999F, -320.756012F), new Vector2(-32.6199989F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-33.8440018F, -322.196014F), new Vector2(-35.2360001F, -322.556F), new Vector2(-36.7960014F, -322.556F)); + builder.AddCubicBezier(new Vector2(-38.4519997F, -322.556F), new Vector2(-39.9459991F, -322.165985F), new Vector2(-41.2779999F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-42.6100006F, -320.605988F), new Vector2(-43.6660004F, -319.544006F), new Vector2(-44.4459991F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-45.2260017F, -316.855988F), new Vector2(-45.6160011F, -315.343994F), new Vector2(-45.6160011F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-45.6160011F, -311.959991F), new Vector2(-45.2200012F, -310.436005F), new Vector2(-44.4280014F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-43.6360016F, -307.747986F), new Vector2(-42.5620003F, -306.686005F), new Vector2(-41.2060013F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-39.8499985F, -305.126007F), new Vector2(-38.3079987F, -304.735992F), new Vector2(-36.5800018F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-35.2360001F, -304.735992F), new Vector2(-33.9760017F, -304.988007F), new Vector2(-32.7999992F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1356() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-60.987999F, -305.096008F)); + builder.AddLine(new Vector2(-60.987999F, -330.799988F)); + builder.AddLine(new Vector2(-64.2279968F, -330.799988F)); + builder.AddLine(new Vector2(-64.2279968F, -305.096008F)); + builder.AddLine(new Vector2(-60.987999F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-48.8919983F, -305.096008F)); + builder.AddLine(new Vector2(-48.8919983F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-48.8919983F, -317.059998F), new Vector2(-49.1800003F, -318.247986F), new Vector2(-49.7560005F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-50.3320007F, -320.312012F), new Vector2(-51.118F, -321.115997F), new Vector2(-52.1139984F, -321.691986F)); + builder.AddCubicBezier(new Vector2(-53.1100006F, -322.268005F), new Vector2(-54.2560005F, -322.556F), new Vector2(-55.5519981F, -322.556F)); + builder.AddCubicBezier(new Vector2(-56.8479996F, -322.556F), new Vector2(-58.012001F, -322.261993F), new Vector2(-59.0439987F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-60.0760002F, -321.085999F), new Vector2(-60.8800011F, -320.287994F), new Vector2(-61.4560013F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-62.0320015F, -318.272003F), new Vector2(-62.3199997F, -317.119995F), new Vector2(-62.3199997F, -315.824005F)); + builder.AddLine(new Vector2(-60.987999F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-60.987999F, -315.932007F), new Vector2(-60.7960014F, -316.700012F), new Vector2(-60.4119987F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-60.0279999F, -318.044006F), new Vector2(-59.5F, -318.571991F), new Vector2(-58.8279991F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-58.1559982F, -319.339996F), new Vector2(-57.3880005F, -319.532013F), new Vector2(-56.5239983F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-55.2280006F, -319.532013F), new Vector2(-54.1780014F, -319.112F), new Vector2(-53.3740005F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-52.5699997F, -317.432007F), new Vector2(-52.1679993F, -316.364014F), new Vector2(-52.1679993F, -315.067993F)); + builder.AddLine(new Vector2(-52.1679993F, -305.096008F)); + builder.AddLine(new Vector2(-48.8919983F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1357() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-67.6839981F, -326.984009F)); + builder.AddLine(new Vector2(-67.6839981F, -330.079987F)); + builder.AddLine(new Vector2(-88.0240021F, -330.079987F)); + builder.AddLine(new Vector2(-88.0240021F, -326.984009F)); + builder.AddLine(new Vector2(-67.6839981F, -326.984009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-76.1439972F, -305.096008F)); + builder.AddLine(new Vector2(-76.1439972F, -329.359985F)); + builder.AddLine(new Vector2(-79.564003F, -329.359985F)); + builder.AddLine(new Vector2(-79.564003F, -305.096008F)); + builder.AddLine(new Vector2(-76.1439972F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1358() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-99.526001F, -305.437988F)); + builder.AddCubicBezier(new Vector2(-99.0820007F, -305.906006F), new Vector2(-98.8600006F, -306.463989F), new Vector2(-98.8600006F, -307.112F)); + builder.AddCubicBezier(new Vector2(-98.8600006F, -307.783997F), new Vector2(-99.0820007F, -308.34201F), new Vector2(-99.526001F, -308.786011F)); + builder.AddCubicBezier(new Vector2(-99.9700012F, -309.230011F), new Vector2(-100.528F, -309.451996F), new Vector2(-101.199997F, -309.451996F)); + builder.AddCubicBezier(new Vector2(-101.896004F, -309.451996F), new Vector2(-102.459999F, -309.230011F), new Vector2(-102.891998F, -308.786011F)); + builder.AddCubicBezier(new Vector2(-103.323997F, -308.34201F), new Vector2(-103.540001F, -307.783997F), new Vector2(-103.540001F, -307.112F)); + builder.AddCubicBezier(new Vector2(-103.540001F, -306.463989F), new Vector2(-103.323997F, -305.906006F), new Vector2(-102.891998F, -305.437988F)); + builder.AddCubicBezier(new Vector2(-102.459999F, -304.970001F), new Vector2(-101.896004F, -304.735992F), new Vector2(-101.199997F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-100.528F, -304.735992F), new Vector2(-99.9700012F, -304.970001F), new Vector2(-99.526001F, -305.437988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1359() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-120.531998F, -305.096008F)); + builder.AddLine(new Vector2(-120.531998F, -322.196014F)); + builder.AddLine(new Vector2(-123.772003F, -322.196014F)); + builder.AddLine(new Vector2(-123.772003F, -305.096008F)); + builder.AddLine(new Vector2(-120.531998F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-108.435997F, -305.096008F)); + builder.AddLine(new Vector2(-108.435997F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-108.435997F, -316.891998F), new Vector2(-108.723999F, -318.002014F), new Vector2(-109.300003F, -319.04599F)); + builder.AddCubicBezier(new Vector2(-109.875999F, -320.089996F), new Vector2(-110.662003F, -320.936005F), new Vector2(-111.657997F, -321.584015F)); + builder.AddCubicBezier(new Vector2(-112.653999F, -322.231995F), new Vector2(-113.800003F, -322.556F), new Vector2(-115.096001F, -322.556F)); + builder.AddCubicBezier(new Vector2(-116.391998F, -322.556F), new Vector2(-117.556F, -322.261993F), new Vector2(-118.587997F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-119.620003F, -321.085999F), new Vector2(-120.424004F, -320.287994F), new Vector2(-121F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-121.575996F, -318.272003F), new Vector2(-121.863998F, -317.119995F), new Vector2(-121.863998F, -315.824005F)); + builder.AddLine(new Vector2(-120.531998F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-120.531998F, -315.932007F), new Vector2(-120.339996F, -316.700012F), new Vector2(-119.956001F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-119.571999F, -318.044006F), new Vector2(-119.043999F, -318.571991F), new Vector2(-118.372002F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-117.699997F, -319.339996F), new Vector2(-116.931999F, -319.532013F), new Vector2(-116.068001F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-114.772003F, -319.532013F), new Vector2(-113.722F, -319.112F), new Vector2(-112.917999F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-112.113998F, -317.432007F), new Vector2(-111.711998F, -316.364014F), new Vector2(-111.711998F, -315.067993F)); + builder.AddLine(new Vector2(-111.711998F, -305.096008F)); + builder.AddLine(new Vector2(-108.435997F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1360() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-139.179993F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-140.020004F, -309.127991F), new Vector2(-140.679993F, -309.817993F), new Vector2(-141.160004F, -310.694F)); + builder.AddCubicBezier(new Vector2(-141.639999F, -311.570007F), new Vector2(-141.880005F, -312.571991F), new Vector2(-141.880005F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-141.880005F, -314.803986F), new Vector2(-141.639999F, -315.787994F), new Vector2(-141.160004F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-140.679993F, -317.515991F), new Vector2(-140.020004F, -318.194F), new Vector2(-139.179993F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-138.339996F, -319.178009F), new Vector2(-137.391998F, -319.424011F), new Vector2(-136.335999F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-135.231995F, -319.424011F), new Vector2(-134.266006F, -319.178009F), new Vector2(-133.438004F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-132.610001F, -318.194F), new Vector2(-131.949997F, -317.515991F), new Vector2(-131.457993F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-130.966003F, -315.787994F), new Vector2(-130.720001F, -314.803986F), new Vector2(-130.720001F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-130.720001F, -312.571991F), new Vector2(-130.960007F, -311.570007F), new Vector2(-131.440002F, -310.694F)); + builder.AddCubicBezier(new Vector2(-131.919998F, -309.817993F), new Vector2(-132.580002F, -309.127991F), new Vector2(-133.419998F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-134.259995F, -308.119995F), new Vector2(-135.231995F, -307.868011F), new Vector2(-136.335999F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-137.391998F, -307.868011F), new Vector2(-138.339996F, -308.119995F), new Vector2(-139.179993F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-131.781998F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-130.425995F, -306.716003F), new Vector2(-129.352005F, -307.790009F), new Vector2(-128.559998F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-127.767998F, -310.502014F), new Vector2(-127.372002F, -312.019989F), new Vector2(-127.372002F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-127.372002F, -315.355988F), new Vector2(-127.767998F, -316.855988F), new Vector2(-128.559998F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-129.352005F, -319.544006F), new Vector2(-130.425995F, -320.605988F), new Vector2(-131.781998F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-133.138F, -322.165985F), new Vector2(-134.656006F, -322.556F), new Vector2(-136.335999F, -322.556F)); + builder.AddCubicBezier(new Vector2(-137.992004F, -322.556F), new Vector2(-139.492004F, -322.160004F), new Vector2(-140.835999F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-142.179993F, -320.575989F), new Vector2(-143.248001F, -319.514008F), new Vector2(-144.039993F, -318.182007F)); + builder.AddCubicBezier(new Vector2(-144.832001F, -316.850006F), new Vector2(-145.227997F, -315.355988F), new Vector2(-145.227997F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-145.227997F, -312.019989F), new Vector2(-144.832001F, -310.502014F), new Vector2(-144.039993F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-143.248001F, -307.790009F), new Vector2(-142.179993F, -306.716003F), new Vector2(-140.835999F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-139.492004F, -305.131989F), new Vector2(-137.992004F, -304.735992F), new Vector2(-136.335999F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-134.656006F, -304.735992F), new Vector2(-133.138F, -305.131989F), new Vector2(-131.781998F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1361() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-149.457993F, -306.140015F)); + builder.AddCubicBezier(new Vector2(-148.317993F, -307.075989F), new Vector2(-147.748001F, -308.347992F), new Vector2(-147.748001F, -309.955994F)); + builder.AddCubicBezier(new Vector2(-147.748001F, -311.011993F), new Vector2(-147.970001F, -311.864014F), new Vector2(-148.414001F, -312.511993F)); + builder.AddCubicBezier(new Vector2(-148.858002F, -313.160004F), new Vector2(-149.427994F, -313.675995F), new Vector2(-150.123993F, -314.059998F)); + builder.AddCubicBezier(new Vector2(-150.820007F, -314.444F), new Vector2(-151.552002F, -314.75F), new Vector2(-152.320007F, -314.977997F)); + builder.AddCubicBezier(new Vector2(-153.087997F, -315.205994F), new Vector2(-153.826004F, -315.428009F), new Vector2(-154.533997F, -315.644012F)); + builder.AddCubicBezier(new Vector2(-155.242004F, -315.859985F), new Vector2(-155.811996F, -316.123993F), new Vector2(-156.244003F, -316.436005F)); + builder.AddCubicBezier(new Vector2(-156.675995F, -316.747986F), new Vector2(-156.891998F, -317.191986F), new Vector2(-156.891998F, -317.768005F)); + builder.AddCubicBezier(new Vector2(-156.891998F, -318.320007F), new Vector2(-156.645996F, -318.764008F), new Vector2(-156.154007F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-155.662003F, -319.436005F), new Vector2(-154.947998F, -319.604004F), new Vector2(-154.011993F, -319.604004F)); + builder.AddCubicBezier(new Vector2(-153.123993F, -319.604004F), new Vector2(-152.332001F, -319.436005F), new Vector2(-151.636002F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-150.940002F, -318.764008F), new Vector2(-150.339996F, -318.283997F), new Vector2(-149.835999F, -317.660004F)); + builder.AddLine(new Vector2(-147.748001F, -319.747986F)); + builder.AddCubicBezier(new Vector2(-148.419998F, -320.68399F), new Vector2(-149.278F, -321.385986F), new Vector2(-150.322006F, -321.854004F)); + builder.AddCubicBezier(new Vector2(-151.365997F, -322.321991F), new Vector2(-152.559998F, -322.556F), new Vector2(-153.904007F, -322.556F)); + builder.AddCubicBezier(new Vector2(-155.175995F, -322.556F), new Vector2(-156.268005F, -322.35199F), new Vector2(-157.179993F, -321.944F)); + builder.AddCubicBezier(new Vector2(-158.091995F, -321.536011F), new Vector2(-158.794006F, -320.95401F), new Vector2(-159.285995F, -320.197998F)); + builder.AddCubicBezier(new Vector2(-159.778F, -319.441986F), new Vector2(-160.024002F, -318.548004F), new Vector2(-160.024002F, -317.515991F)); + builder.AddCubicBezier(new Vector2(-160.024002F, -316.484009F), new Vector2(-159.802002F, -315.649994F), new Vector2(-159.358002F, -315.014008F)); + builder.AddCubicBezier(new Vector2(-158.914001F, -314.377991F), new Vector2(-158.343994F, -313.880005F), new Vector2(-157.647995F, -313.519989F)); + builder.AddCubicBezier(new Vector2(-156.951996F, -313.160004F), new Vector2(-156.214005F, -312.872009F), new Vector2(-155.434006F, -312.656006F)); + builder.AddCubicBezier(new Vector2(-154.654007F, -312.440002F), new Vector2(-153.916F, -312.217987F), new Vector2(-153.220001F, -311.98999F)); + builder.AddCubicBezier(new Vector2(-152.524002F, -311.761993F), new Vector2(-151.953995F, -311.473999F), new Vector2(-151.509995F, -311.126007F)); + builder.AddCubicBezier(new Vector2(-151.065994F, -310.778015F), new Vector2(-150.843994F, -310.291992F), new Vector2(-150.843994F, -309.667999F)); + builder.AddCubicBezier(new Vector2(-150.843994F, -309.044006F), new Vector2(-151.119995F, -308.558014F), new Vector2(-151.671997F, -308.209991F)); + builder.AddCubicBezier(new Vector2(-152.223999F, -307.862F), new Vector2(-153.003998F, -307.687988F), new Vector2(-154.011993F, -307.687988F)); + builder.AddCubicBezier(new Vector2(-155.020004F, -307.687988F), new Vector2(-155.932007F, -307.873993F), new Vector2(-156.748001F, -308.246002F)); + builder.AddCubicBezier(new Vector2(-157.563995F, -308.618011F), new Vector2(-158.283997F, -309.187988F), new Vector2(-158.908005F, -309.955994F)); + builder.AddLine(new Vector2(-160.996002F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-160.468002F, -307.220001F), new Vector2(-159.850006F, -306.661987F), new Vector2(-159.141998F, -306.194F)); + builder.AddCubicBezier(new Vector2(-158.434006F, -305.726013F), new Vector2(-157.647995F, -305.365997F), new Vector2(-156.783997F, -305.114014F)); + builder.AddCubicBezier(new Vector2(-155.919998F, -304.862F), new Vector2(-155.007996F, -304.735992F), new Vector2(-154.048004F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-152.128006F, -304.735992F), new Vector2(-150.598007F, -305.20401F), new Vector2(-149.457993F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1362() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-164.199997F, -305.096008F)); + builder.AddLine(new Vector2(-164.199997F, -322.196014F)); + builder.AddLine(new Vector2(-167.475998F, -322.196014F)); + builder.AddLine(new Vector2(-167.475998F, -318.019989F)); + builder.AddLine(new Vector2(-166.863998F, -313.880005F)); + builder.AddLine(new Vector2(-167.475998F, -309.70401F)); + builder.AddLine(new Vector2(-167.475998F, -305.096008F)); + builder.AddLine(new Vector2(-164.199997F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-175.503998F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-176.343994F, -309.056F), new Vector2(-176.998001F, -309.746002F), new Vector2(-177.466003F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-177.934006F, -311.497986F), new Vector2(-178.167999F, -312.511993F), new Vector2(-178.167999F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-178.167999F, -314.791992F), new Vector2(-177.934006F, -315.794006F), new Vector2(-177.466003F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-176.998001F, -317.54599F), new Vector2(-176.350006F, -318.235992F), new Vector2(-175.522003F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-174.694F, -319.243988F), new Vector2(-173.740005F, -319.496002F), new Vector2(-172.660004F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-171.580002F, -319.496002F), new Vector2(-170.638F, -319.25F), new Vector2(-169.834F, -318.757996F)); + builder.AddCubicBezier(new Vector2(-169.029999F, -318.265991F), new Vector2(-168.399994F, -317.575989F), new Vector2(-167.944F, -316.687988F)); + builder.AddCubicBezier(new Vector2(-167.488007F, -315.799988F), new Vector2(-167.259995F, -314.779999F), new Vector2(-167.259995F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-167.259995F, -311.924011F), new Vector2(-167.751999F, -310.526001F), new Vector2(-168.735992F, -309.43399F)); + builder.AddCubicBezier(new Vector2(-169.720001F, -308.34201F), new Vector2(-171.016006F, -307.79599F), new Vector2(-172.623993F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-173.703995F, -307.79599F), new Vector2(-174.664001F, -308.048004F), new Vector2(-175.503998F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-169.671997F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-168.639999F, -306.085999F), new Vector2(-167.817993F, -306.835999F), new Vector2(-167.205994F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-166.593994F, -308.756012F), new Vector2(-166.251999F, -309.847992F), new Vector2(-166.179993F, -311.071991F)); + builder.AddLine(new Vector2(-166.179993F, -316.220001F)); + builder.AddCubicBezier(new Vector2(-166.251999F, -317.467987F), new Vector2(-166.600006F, -318.56601F), new Vector2(-167.223999F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-167.848007F, -320.462006F), new Vector2(-168.669998F, -321.205994F), new Vector2(-169.690002F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-170.710007F, -322.286011F), new Vector2(-171.867996F, -322.556F), new Vector2(-173.164001F, -322.556F)); + builder.AddCubicBezier(new Vector2(-174.748001F, -322.556F), new Vector2(-176.169998F, -322.160004F), new Vector2(-177.429993F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-178.690002F, -320.575989F), new Vector2(-179.686005F, -319.507996F), new Vector2(-180.417999F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-181.149994F, -316.820007F), new Vector2(-181.516006F, -315.308014F), new Vector2(-181.516006F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-181.516006F, -311.947998F), new Vector2(-181.149994F, -310.436005F), new Vector2(-180.417999F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-179.686005F, -307.747986F), new Vector2(-178.690002F, -306.686005F), new Vector2(-177.429993F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-176.169998F, -305.126007F), new Vector2(-174.748001F, -304.735992F), new Vector2(-173.164001F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-171.867996F, -304.735992F), new Vector2(-170.703995F, -305.006012F), new Vector2(-169.671997F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1363() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-188.031998F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-186.856003F, -305.996002F), new Vector2(-185.848007F, -306.727997F), new Vector2(-185.007996F, -307.687988F)); + builder.AddLine(new Vector2(-187.095993F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-187.671997F, -309.140015F), new Vector2(-188.362F, -308.635986F), new Vector2(-189.166F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-189.970001F, -307.963989F), new Vector2(-190.852005F, -307.79599F), new Vector2(-191.811996F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-192.964005F, -307.79599F), new Vector2(-193.983994F, -308.041992F), new Vector2(-194.871994F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-195.759995F, -309.026001F), new Vector2(-196.444F, -309.721985F), new Vector2(-196.923996F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-197.404007F, -311.522003F), new Vector2(-197.643997F, -312.571991F), new Vector2(-197.643997F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-197.643997F, -314.947998F), new Vector2(-197.416F, -315.967987F), new Vector2(-196.960007F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-196.503998F, -317.696014F), new Vector2(-195.856003F, -318.368011F), new Vector2(-195.016006F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-194.175995F, -319.328003F), new Vector2(-193.203995F, -319.567993F), new Vector2(-192.100006F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-191.044006F, -319.567993F), new Vector2(-190.143997F, -319.346008F), new Vector2(-189.399994F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-188.656006F, -318.458008F), new Vector2(-188.080002F, -317.834015F), new Vector2(-187.671997F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-187.264008F, -316.226013F), new Vector2(-187.059998F, -315.247986F), new Vector2(-187.059998F, -314.096008F)); + builder.AddLine(new Vector2(-185.871994F, -315.140015F)); + builder.AddLine(new Vector2(-198.580002F, -315.140015F)); + builder.AddLine(new Vector2(-198.580002F, -312.440002F)); + builder.AddLine(new Vector2(-184.143997F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-184.072006F, -312.776001F), new Vector2(-184.024002F, -313.082001F), new Vector2(-184F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-183.975998F, -313.634003F), new Vector2(-183.964005F, -313.891998F), new Vector2(-183.964005F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-183.964005F, -315.764008F), new Vector2(-184.306F, -317.216003F), new Vector2(-184.990005F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-185.673996F, -319.76001F), new Vector2(-186.628006F, -320.756012F), new Vector2(-187.852005F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-189.076004F, -322.196014F), new Vector2(-190.468002F, -322.556F), new Vector2(-192.028F, -322.556F)); + builder.AddCubicBezier(new Vector2(-193.684006F, -322.556F), new Vector2(-195.177994F, -322.165985F), new Vector2(-196.509995F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-197.841995F, -320.605988F), new Vector2(-198.897995F, -319.544006F), new Vector2(-199.677994F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-200.457993F, -316.855988F), new Vector2(-200.848007F, -315.343994F), new Vector2(-200.848007F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-200.848007F, -311.959991F), new Vector2(-200.451996F, -310.436005F), new Vector2(-199.660004F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-198.867996F, -307.747986F), new Vector2(-197.794006F, -306.686005F), new Vector2(-196.438004F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-195.082001F, -305.126007F), new Vector2(-193.539993F, -304.735992F), new Vector2(-191.811996F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-190.468002F, -304.735992F), new Vector2(-189.207993F, -304.988007F), new Vector2(-188.031998F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1364() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-209.235992F, -318.343994F)); + builder.AddCubicBezier(new Vector2(-208.468002F, -319.112F), new Vector2(-207.483994F, -319.496002F), new Vector2(-206.283997F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-205.707993F, -319.496002F), new Vector2(-205.203995F, -319.411987F), new Vector2(-204.772003F, -319.243988F)); + builder.AddCubicBezier(new Vector2(-204.339996F, -319.075989F), new Vector2(-203.944F, -318.799988F), new Vector2(-203.584F, -318.415985F)); + builder.AddLine(new Vector2(-201.460007F, -320.612F)); + builder.AddCubicBezier(new Vector2(-202.059998F, -321.308014F), new Vector2(-202.707993F, -321.806F), new Vector2(-203.404007F, -322.105988F)); + builder.AddCubicBezier(new Vector2(-204.100006F, -322.406006F), new Vector2(-204.880005F, -322.556F), new Vector2(-205.744003F, -322.556F)); + builder.AddCubicBezier(new Vector2(-207.639999F, -322.556F), new Vector2(-209.091995F, -321.90799F), new Vector2(-210.100006F, -320.612F)); + builder.AddCubicBezier(new Vector2(-211.108002F, -319.31601F), new Vector2(-211.612F, -317.575989F), new Vector2(-211.612F, -315.391998F)); + builder.AddLine(new Vector2(-210.388F, -314.81601F)); + builder.AddCubicBezier(new Vector2(-210.388F, -316.399994F), new Vector2(-210.003998F, -317.575989F), new Vector2(-209.235992F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-210.388F, -305.096008F)); + builder.AddLine(new Vector2(-210.388F, -322.196014F)); + builder.AddLine(new Vector2(-213.628006F, -322.196014F)); + builder.AddLine(new Vector2(-213.628006F, -305.096008F)); + builder.AddLine(new Vector2(-210.388F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1365() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-235.264008F, -297.932007F)); + builder.AddLine(new Vector2(-232.024002F, -304.951996F)); + builder.AddLine(new Vector2(-233.860001F, -308.264008F)); + builder.AddLine(new Vector2(-238.863998F, -297.932007F)); + builder.AddLine(new Vector2(-235.264008F, -297.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-232.024002F, -304.951996F)); + builder.AddLine(new Vector2(-224.031998F, -322.196014F)); + builder.AddLine(new Vector2(-227.632004F, -322.196014F)); + builder.AddLine(new Vector2(-233.427994F, -308.696014F)); + builder.AddLine(new Vector2(-232.276001F, -308.696014F)); + builder.AddLine(new Vector2(-237.783997F, -322.196014F)); + builder.AddLine(new Vector2(-241.384003F, -322.196014F)); + builder.AddLine(new Vector2(-233.968002F, -304.951996F)); + builder.AddLine(new Vector2(-232.024002F, -304.951996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1366() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-256.071991F, -305.096008F)); + builder.AddLine(new Vector2(-256.071991F, -322.196014F)); + builder.AddLine(new Vector2(-259.312012F, -322.196014F)); + builder.AddLine(new Vector2(-259.312012F, -305.096008F)); + builder.AddLine(new Vector2(-256.071991F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-243.975998F, -305.096008F)); + builder.AddLine(new Vector2(-243.975998F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-243.975998F, -316.891998F), new Vector2(-244.264008F, -318.002014F), new Vector2(-244.839996F, -319.04599F)); + builder.AddCubicBezier(new Vector2(-245.416F, -320.089996F), new Vector2(-246.201996F, -320.936005F), new Vector2(-247.197998F, -321.584015F)); + builder.AddCubicBezier(new Vector2(-248.194F, -322.231995F), new Vector2(-249.339996F, -322.556F), new Vector2(-250.636002F, -322.556F)); + builder.AddCubicBezier(new Vector2(-251.932007F, -322.556F), new Vector2(-253.095993F, -322.261993F), new Vector2(-254.128006F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-255.160004F, -321.085999F), new Vector2(-255.964005F, -320.287994F), new Vector2(-256.540009F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-257.115997F, -318.272003F), new Vector2(-257.403992F, -317.119995F), new Vector2(-257.403992F, -315.824005F)); + builder.AddLine(new Vector2(-256.071991F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-256.071991F, -315.932007F), new Vector2(-255.880005F, -316.700012F), new Vector2(-255.496002F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-255.112F, -318.044006F), new Vector2(-254.584F, -318.571991F), new Vector2(-253.912003F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-253.240005F, -319.339996F), new Vector2(-252.472F, -319.532013F), new Vector2(-251.608002F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-250.311996F, -319.532013F), new Vector2(-249.261993F, -319.112F), new Vector2(-248.457993F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-247.654007F, -317.432007F), new Vector2(-247.251999F, -316.364014F), new Vector2(-247.251999F, -315.067993F)); + builder.AddLine(new Vector2(-247.251999F, -305.096008F)); + builder.AddLine(new Vector2(-243.975998F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1367() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-264.028015F, -305.096008F)); + builder.AddLine(new Vector2(-264.028015F, -322.196014F)); + builder.AddLine(new Vector2(-267.303986F, -322.196014F)); + builder.AddLine(new Vector2(-267.303986F, -318.019989F)); + builder.AddLine(new Vector2(-266.691986F, -313.880005F)); + builder.AddLine(new Vector2(-267.303986F, -309.70401F)); + builder.AddLine(new Vector2(-267.303986F, -305.096008F)); + builder.AddLine(new Vector2(-264.028015F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-275.332001F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-276.171997F, -309.056F), new Vector2(-276.825989F, -309.746002F), new Vector2(-277.294006F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-277.761993F, -311.497986F), new Vector2(-277.996002F, -312.511993F), new Vector2(-277.996002F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-277.996002F, -314.791992F), new Vector2(-277.761993F, -315.794006F), new Vector2(-277.294006F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-276.825989F, -317.54599F), new Vector2(-276.178009F, -318.235992F), new Vector2(-275.350006F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-274.522003F, -319.243988F), new Vector2(-273.567993F, -319.496002F), new Vector2(-272.488007F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-271.40799F, -319.496002F), new Vector2(-270.466003F, -319.25F), new Vector2(-269.661987F, -318.757996F)); + builder.AddCubicBezier(new Vector2(-268.858002F, -318.265991F), new Vector2(-268.227997F, -317.575989F), new Vector2(-267.772003F, -316.687988F)); + builder.AddCubicBezier(new Vector2(-267.31601F, -315.799988F), new Vector2(-267.088013F, -314.779999F), new Vector2(-267.088013F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-267.088013F, -311.924011F), new Vector2(-267.579987F, -310.526001F), new Vector2(-268.563995F, -309.43399F)); + builder.AddCubicBezier(new Vector2(-269.548004F, -308.34201F), new Vector2(-270.843994F, -307.79599F), new Vector2(-272.451996F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-273.532013F, -307.79599F), new Vector2(-274.492004F, -308.048004F), new Vector2(-275.332001F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-269.5F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-268.467987F, -306.085999F), new Vector2(-267.645996F, -306.835999F), new Vector2(-267.033997F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-266.421997F, -308.756012F), new Vector2(-266.079987F, -309.847992F), new Vector2(-266.007996F, -311.071991F)); + builder.AddLine(new Vector2(-266.007996F, -316.220001F)); + builder.AddCubicBezier(new Vector2(-266.079987F, -317.467987F), new Vector2(-266.428009F, -318.56601F), new Vector2(-267.052002F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-267.675995F, -320.462006F), new Vector2(-268.497986F, -321.205994F), new Vector2(-269.518005F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-270.537994F, -322.286011F), new Vector2(-271.696014F, -322.556F), new Vector2(-272.992004F, -322.556F)); + builder.AddCubicBezier(new Vector2(-274.575989F, -322.556F), new Vector2(-275.997986F, -322.160004F), new Vector2(-277.257996F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-278.518005F, -320.575989F), new Vector2(-279.514008F, -319.507996F), new Vector2(-280.246002F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-280.977997F, -316.820007F), new Vector2(-281.343994F, -315.308014F), new Vector2(-281.343994F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-281.343994F, -311.947998F), new Vector2(-280.977997F, -310.436005F), new Vector2(-280.246002F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-279.514008F, -307.747986F), new Vector2(-278.518005F, -306.686005F), new Vector2(-277.257996F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-275.997986F, -305.126007F), new Vector2(-274.575989F, -304.735992F), new Vector2(-272.992004F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-271.696014F, -304.735992F), new Vector2(-270.532013F, -305.006012F), new Vector2(-269.5F, -305.54599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1368() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-290.884003F, -319.243988F)); + builder.AddLine(new Vector2(-290.884003F, -322.196014F)); + builder.AddLine(new Vector2(-302.548004F, -322.196014F)); + builder.AddLine(new Vector2(-302.548004F, -319.243988F)); + builder.AddLine(new Vector2(-290.884003F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-295.096008F, -305.096008F)); + builder.AddLine(new Vector2(-295.096008F, -329.359985F)); + builder.AddLine(new Vector2(-298.335999F, -329.359985F)); + builder.AddLine(new Vector2(-298.335999F, -305.096008F)); + builder.AddLine(new Vector2(-295.096008F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1369() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-308.847992F, -305.726013F)); + builder.AddCubicBezier(new Vector2(-307.743988F, -306.338013F), new Vector2(-306.880005F, -307.208008F), new Vector2(-306.256012F, -308.335999F)); + builder.AddCubicBezier(new Vector2(-305.631989F, -309.463989F), new Vector2(-305.320007F, -310.772003F), new Vector2(-305.320007F, -312.26001F)); + builder.AddLine(new Vector2(-305.320007F, -322.196014F)); + builder.AddLine(new Vector2(-308.559998F, -322.196014F)); + builder.AddLine(new Vector2(-308.559998F, -312.403992F)); + builder.AddCubicBezier(new Vector2(-308.559998F, -310.988007F), new Vector2(-308.920013F, -309.877991F), new Vector2(-309.640015F, -309.074005F)); + builder.AddCubicBezier(new Vector2(-310.359985F, -308.269989F), new Vector2(-311.355988F, -307.868011F), new Vector2(-312.627991F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-313.467987F, -307.868011F), new Vector2(-314.200012F, -308.048004F), new Vector2(-314.824005F, -308.40799F)); + builder.AddCubicBezier(new Vector2(-315.447998F, -308.768005F), new Vector2(-315.921997F, -309.290009F), new Vector2(-316.246002F, -309.973999F)); + builder.AddCubicBezier(new Vector2(-316.570007F, -310.65799F), new Vector2(-316.731995F, -311.467987F), new Vector2(-316.731995F, -312.403992F)); + builder.AddLine(new Vector2(-316.731995F, -322.196014F)); + builder.AddLine(new Vector2(-319.971985F, -322.196014F)); + builder.AddLine(new Vector2(-319.971985F, -312.26001F)); + builder.AddCubicBezier(new Vector2(-319.971985F, -310.772003F), new Vector2(-319.660004F, -309.463989F), new Vector2(-319.036011F, -308.335999F)); + builder.AddCubicBezier(new Vector2(-318.411987F, -307.208008F), new Vector2(-317.541992F, -306.338013F), new Vector2(-316.425995F, -305.726013F)); + builder.AddCubicBezier(new Vector2(-315.309998F, -305.114014F), new Vector2(-314.044006F, -304.808014F), new Vector2(-312.627991F, -304.808014F)); + builder.AddCubicBezier(new Vector2(-311.212006F, -304.808014F), new Vector2(-309.951996F, -305.114014F), new Vector2(-308.847992F, -305.726013F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1370() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-334.947998F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-335.787994F, -309.127991F), new Vector2(-336.447998F, -309.817993F), new Vector2(-336.928009F, -310.694F)); + builder.AddCubicBezier(new Vector2(-337.40799F, -311.570007F), new Vector2(-337.64801F, -312.571991F), new Vector2(-337.64801F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-337.64801F, -314.803986F), new Vector2(-337.40799F, -315.787994F), new Vector2(-336.928009F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-336.447998F, -317.515991F), new Vector2(-335.787994F, -318.194F), new Vector2(-334.947998F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-334.108002F, -319.178009F), new Vector2(-333.160004F, -319.424011F), new Vector2(-332.104004F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-331F, -319.424011F), new Vector2(-330.033997F, -319.178009F), new Vector2(-329.205994F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-328.377991F, -318.194F), new Vector2(-327.717987F, -317.515991F), new Vector2(-327.226013F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-326.734009F, -315.787994F), new Vector2(-326.488007F, -314.803986F), new Vector2(-326.488007F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-326.488007F, -312.571991F), new Vector2(-326.727997F, -311.570007F), new Vector2(-327.208008F, -310.694F)); + builder.AddCubicBezier(new Vector2(-327.687988F, -309.817993F), new Vector2(-328.347992F, -309.127991F), new Vector2(-329.187988F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-330.028015F, -308.119995F), new Vector2(-331F, -307.868011F), new Vector2(-332.104004F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-333.160004F, -307.868011F), new Vector2(-334.108002F, -308.119995F), new Vector2(-334.947998F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-327.549988F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-326.194F, -306.716003F), new Vector2(-325.119995F, -307.790009F), new Vector2(-324.328003F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-323.536011F, -310.502014F), new Vector2(-323.140015F, -312.019989F), new Vector2(-323.140015F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-323.140015F, -315.355988F), new Vector2(-323.536011F, -316.855988F), new Vector2(-324.328003F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-325.119995F, -319.544006F), new Vector2(-326.194F, -320.605988F), new Vector2(-327.549988F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-328.906006F, -322.165985F), new Vector2(-330.424011F, -322.556F), new Vector2(-332.104004F, -322.556F)); + builder.AddCubicBezier(new Vector2(-333.76001F, -322.556F), new Vector2(-335.26001F, -322.160004F), new Vector2(-336.604004F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-337.947998F, -320.575989F), new Vector2(-339.015991F, -319.514008F), new Vector2(-339.808014F, -318.182007F)); + builder.AddCubicBezier(new Vector2(-340.600006F, -316.850006F), new Vector2(-340.996002F, -315.355988F), new Vector2(-340.996002F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-340.996002F, -312.019989F), new Vector2(-340.600006F, -310.502014F), new Vector2(-339.808014F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-339.015991F, -307.790009F), new Vector2(-337.947998F, -306.716003F), new Vector2(-336.604004F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-335.26001F, -305.131989F), new Vector2(-333.76001F, -304.735992F), new Vector2(-332.104004F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-330.424011F, -304.735992F), new Vector2(-328.906006F, -305.131989F), new Vector2(-327.549988F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1371() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-356.368011F, -305.096008F)); + builder.AddLine(new Vector2(-356.368011F, -330.799988F)); + builder.AddLine(new Vector2(-359.608002F, -330.799988F)); + builder.AddLine(new Vector2(-359.608002F, -305.096008F)); + builder.AddLine(new Vector2(-356.368011F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-344.272003F, -305.096008F)); + builder.AddLine(new Vector2(-344.272003F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-344.272003F, -317.059998F), new Vector2(-344.559998F, -318.247986F), new Vector2(-345.135986F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-345.712006F, -320.312012F), new Vector2(-346.497986F, -321.115997F), new Vector2(-347.493988F, -321.691986F)); + builder.AddCubicBezier(new Vector2(-348.48999F, -322.268005F), new Vector2(-349.635986F, -322.556F), new Vector2(-350.932007F, -322.556F)); + builder.AddCubicBezier(new Vector2(-352.227997F, -322.556F), new Vector2(-353.391998F, -322.261993F), new Vector2(-354.424011F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-355.455994F, -321.085999F), new Vector2(-356.26001F, -320.287994F), new Vector2(-356.835999F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-357.411987F, -318.272003F), new Vector2(-357.700012F, -317.119995F), new Vector2(-357.700012F, -315.824005F)); + builder.AddLine(new Vector2(-356.368011F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-356.368011F, -315.932007F), new Vector2(-356.175995F, -316.700012F), new Vector2(-355.791992F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-355.40799F, -318.044006F), new Vector2(-354.880005F, -318.571991F), new Vector2(-354.208008F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-353.536011F, -319.339996F), new Vector2(-352.768005F, -319.532013F), new Vector2(-351.903992F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-350.608002F, -319.532013F), new Vector2(-349.558014F, -319.112F), new Vector2(-348.753998F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-347.950012F, -317.432007F), new Vector2(-347.548004F, -316.364014F), new Vector2(-347.548004F, -315.067993F)); + builder.AddLine(new Vector2(-347.548004F, -305.096008F)); + builder.AddLine(new Vector2(-344.272003F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1372() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-362.776001F, -319.243988F)); + builder.AddLine(new Vector2(-362.776001F, -322.196014F)); + builder.AddLine(new Vector2(-374.440002F, -322.196014F)); + builder.AddLine(new Vector2(-374.440002F, -319.243988F)); + builder.AddLine(new Vector2(-362.776001F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-366.988007F, -305.096008F)); + builder.AddLine(new Vector2(-366.988007F, -329.359985F)); + builder.AddLine(new Vector2(-370.227997F, -329.359985F)); + builder.AddLine(new Vector2(-370.227997F, -305.096008F)); + builder.AddLine(new Vector2(-366.988007F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1373() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-377.787994F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-377.403992F, -326.605988F), new Vector2(-377.212006F, -327.104004F), new Vector2(-377.212006F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-377.212006F, -328.279999F), new Vector2(-377.403992F, -328.765991F), new Vector2(-377.787994F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-378.171997F, -329.558014F), new Vector2(-378.664001F, -329.756012F), new Vector2(-379.264008F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-379.864014F, -329.756012F), new Vector2(-380.355988F, -329.558014F), new Vector2(-380.73999F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-381.123993F, -328.765991F), new Vector2(-381.31601F, -328.279999F), new Vector2(-381.31601F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-381.31601F, -327.104004F), new Vector2(-381.123993F, -326.605988F), new Vector2(-380.73999F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-380.355988F, -325.813995F), new Vector2(-379.864014F, -325.615997F), new Vector2(-379.264008F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-378.664001F, -325.615997F), new Vector2(-378.171997F, -325.813995F), new Vector2(-377.787994F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-377.644012F, -305.096008F)); + builder.AddLine(new Vector2(-377.644012F, -322.196014F)); + builder.AddLine(new Vector2(-380.920013F, -322.196014F)); + builder.AddLine(new Vector2(-380.920013F, -305.096008F)); + builder.AddLine(new Vector2(-377.644012F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1374() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-400.864014F, -305.096008F)); + builder.AddLine(new Vector2(-395.895996F, -317.984009F)); + builder.AddLine(new Vector2(-397.084015F, -317.984009F)); + builder.AddLine(new Vector2(-392.152008F, -305.096008F)); + builder.AddLine(new Vector2(-390.243988F, -305.096008F)); + builder.AddLine(new Vector2(-383.511993F, -322.196014F)); + builder.AddLine(new Vector2(-386.895996F, -322.196014F)); + builder.AddLine(new Vector2(-391.791992F, -308.876007F)); + builder.AddLine(new Vector2(-390.712006F, -308.876007F)); + builder.AddLine(new Vector2(-395.571991F, -322.196014F)); + builder.AddLine(new Vector2(-397.444F, -322.196014F)); + builder.AddLine(new Vector2(-402.303986F, -308.876007F)); + builder.AddLine(new Vector2(-401.223999F, -308.876007F)); + builder.AddLine(new Vector2(-406.119995F, -322.196014F)); + builder.AddLine(new Vector2(-409.503998F, -322.196014F)); + builder.AddLine(new Vector2(-402.772003F, -305.096008F)); + builder.AddLine(new Vector2(-400.864014F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1375() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-420.429993F, -306.140015F)); + builder.AddCubicBezier(new Vector2(-419.290009F, -307.075989F), new Vector2(-418.720001F, -308.347992F), new Vector2(-418.720001F, -309.955994F)); + builder.AddCubicBezier(new Vector2(-418.720001F, -311.011993F), new Vector2(-418.941986F, -311.864014F), new Vector2(-419.385986F, -312.511993F)); + builder.AddCubicBezier(new Vector2(-419.829987F, -313.160004F), new Vector2(-420.399994F, -313.675995F), new Vector2(-421.096008F, -314.059998F)); + builder.AddCubicBezier(new Vector2(-421.791992F, -314.444F), new Vector2(-422.523987F, -314.75F), new Vector2(-423.291992F, -314.977997F)); + builder.AddCubicBezier(new Vector2(-424.059998F, -315.205994F), new Vector2(-424.798004F, -315.428009F), new Vector2(-425.506012F, -315.644012F)); + builder.AddCubicBezier(new Vector2(-426.213989F, -315.859985F), new Vector2(-426.783997F, -316.123993F), new Vector2(-427.216003F, -316.436005F)); + builder.AddCubicBezier(new Vector2(-427.64801F, -316.747986F), new Vector2(-427.864014F, -317.191986F), new Vector2(-427.864014F, -317.768005F)); + builder.AddCubicBezier(new Vector2(-427.864014F, -318.320007F), new Vector2(-427.618011F, -318.764008F), new Vector2(-427.126007F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-426.634003F, -319.436005F), new Vector2(-425.920013F, -319.604004F), new Vector2(-424.984009F, -319.604004F)); + builder.AddCubicBezier(new Vector2(-424.096008F, -319.604004F), new Vector2(-423.303986F, -319.436005F), new Vector2(-422.608002F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-421.911987F, -318.764008F), new Vector2(-421.312012F, -318.283997F), new Vector2(-420.808014F, -317.660004F)); + builder.AddLine(new Vector2(-418.720001F, -319.747986F)); + builder.AddCubicBezier(new Vector2(-419.391998F, -320.68399F), new Vector2(-420.25F, -321.385986F), new Vector2(-421.294006F, -321.854004F)); + builder.AddCubicBezier(new Vector2(-422.338013F, -322.321991F), new Vector2(-423.532013F, -322.556F), new Vector2(-424.876007F, -322.556F)); + builder.AddCubicBezier(new Vector2(-426.14801F, -322.556F), new Vector2(-427.23999F, -322.35199F), new Vector2(-428.152008F, -321.944F)); + builder.AddCubicBezier(new Vector2(-429.063995F, -321.536011F), new Vector2(-429.765991F, -320.95401F), new Vector2(-430.257996F, -320.197998F)); + builder.AddCubicBezier(new Vector2(-430.75F, -319.441986F), new Vector2(-430.996002F, -318.548004F), new Vector2(-430.996002F, -317.515991F)); + builder.AddCubicBezier(new Vector2(-430.996002F, -316.484009F), new Vector2(-430.773987F, -315.649994F), new Vector2(-430.329987F, -315.014008F)); + builder.AddCubicBezier(new Vector2(-429.885986F, -314.377991F), new Vector2(-429.31601F, -313.880005F), new Vector2(-428.619995F, -313.519989F)); + builder.AddCubicBezier(new Vector2(-427.924011F, -313.160004F), new Vector2(-427.186005F, -312.872009F), new Vector2(-426.406006F, -312.656006F)); + builder.AddCubicBezier(new Vector2(-425.626007F, -312.440002F), new Vector2(-424.888F, -312.217987F), new Vector2(-424.191986F, -311.98999F)); + builder.AddCubicBezier(new Vector2(-423.496002F, -311.761993F), new Vector2(-422.925995F, -311.473999F), new Vector2(-422.481995F, -311.126007F)); + builder.AddCubicBezier(new Vector2(-422.037994F, -310.778015F), new Vector2(-421.81601F, -310.291992F), new Vector2(-421.81601F, -309.667999F)); + builder.AddCubicBezier(new Vector2(-421.81601F, -309.044006F), new Vector2(-422.09201F, -308.558014F), new Vector2(-422.644012F, -308.209991F)); + builder.AddCubicBezier(new Vector2(-423.196014F, -307.862F), new Vector2(-423.976013F, -307.687988F), new Vector2(-424.984009F, -307.687988F)); + builder.AddCubicBezier(new Vector2(-425.992004F, -307.687988F), new Vector2(-426.903992F, -307.873993F), new Vector2(-427.720001F, -308.246002F)); + builder.AddCubicBezier(new Vector2(-428.536011F, -308.618011F), new Vector2(-429.256012F, -309.187988F), new Vector2(-429.880005F, -309.955994F)); + builder.AddLine(new Vector2(-431.967987F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-431.440002F, -307.220001F), new Vector2(-430.821991F, -306.661987F), new Vector2(-430.114014F, -306.194F)); + builder.AddCubicBezier(new Vector2(-429.406006F, -305.726013F), new Vector2(-428.619995F, -305.365997F), new Vector2(-427.756012F, -305.114014F)); + builder.AddCubicBezier(new Vector2(-426.891998F, -304.862F), new Vector2(-425.980011F, -304.735992F), new Vector2(-425.019989F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-423.100006F, -304.735992F), new Vector2(-421.570007F, -305.20401F), new Vector2(-420.429993F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1376() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-440.140015F, -318.343994F)); + builder.AddCubicBezier(new Vector2(-439.372009F, -319.112F), new Vector2(-438.388F, -319.496002F), new Vector2(-437.187988F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-436.612F, -319.496002F), new Vector2(-436.108002F, -319.411987F), new Vector2(-435.675995F, -319.243988F)); + builder.AddCubicBezier(new Vector2(-435.243988F, -319.075989F), new Vector2(-434.847992F, -318.799988F), new Vector2(-434.488007F, -318.415985F)); + builder.AddLine(new Vector2(-432.364014F, -320.612F)); + builder.AddCubicBezier(new Vector2(-432.963989F, -321.308014F), new Vector2(-433.612F, -321.806F), new Vector2(-434.308014F, -322.105988F)); + builder.AddCubicBezier(new Vector2(-435.003998F, -322.406006F), new Vector2(-435.783997F, -322.556F), new Vector2(-436.64801F, -322.556F)); + builder.AddCubicBezier(new Vector2(-438.544006F, -322.556F), new Vector2(-439.996002F, -321.90799F), new Vector2(-441.003998F, -320.612F)); + builder.AddCubicBezier(new Vector2(-442.011993F, -319.31601F), new Vector2(-442.515991F, -317.575989F), new Vector2(-442.515991F, -315.391998F)); + builder.AddLine(new Vector2(-441.291992F, -314.81601F)); + builder.AddCubicBezier(new Vector2(-441.291992F, -316.399994F), new Vector2(-440.90799F, -317.575989F), new Vector2(-440.140015F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-441.291992F, -305.096008F)); + builder.AddLine(new Vector2(-441.291992F, -322.196014F)); + builder.AddLine(new Vector2(-444.532013F, -322.196014F)); + builder.AddLine(new Vector2(-444.532013F, -305.096008F)); + builder.AddLine(new Vector2(-441.291992F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1377() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-452.127991F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-450.951996F, -305.996002F), new Vector2(-449.944F, -306.727997F), new Vector2(-449.104004F, -307.687988F)); + builder.AddLine(new Vector2(-451.191986F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-451.768005F, -309.140015F), new Vector2(-452.458008F, -308.635986F), new Vector2(-453.261993F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-454.06601F, -307.963989F), new Vector2(-454.947998F, -307.79599F), new Vector2(-455.90799F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-457.059998F, -307.79599F), new Vector2(-458.079987F, -308.041992F), new Vector2(-458.967987F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-459.855988F, -309.026001F), new Vector2(-460.540009F, -309.721985F), new Vector2(-461.019989F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-461.5F, -311.522003F), new Vector2(-461.73999F, -312.571991F), new Vector2(-461.73999F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-461.73999F, -314.947998F), new Vector2(-461.511993F, -315.967987F), new Vector2(-461.056F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-460.600006F, -317.696014F), new Vector2(-459.951996F, -318.368011F), new Vector2(-459.112F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-458.272003F, -319.328003F), new Vector2(-457.299988F, -319.567993F), new Vector2(-456.196014F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-455.140015F, -319.567993F), new Vector2(-454.23999F, -319.346008F), new Vector2(-453.496002F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-452.752014F, -318.458008F), new Vector2(-452.175995F, -317.834015F), new Vector2(-451.768005F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-451.359985F, -316.226013F), new Vector2(-451.156006F, -315.247986F), new Vector2(-451.156006F, -314.096008F)); + builder.AddLine(new Vector2(-449.967987F, -315.140015F)); + builder.AddLine(new Vector2(-462.675995F, -315.140015F)); + builder.AddLine(new Vector2(-462.675995F, -312.440002F)); + builder.AddLine(new Vector2(-448.23999F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-448.167999F, -312.776001F), new Vector2(-448.119995F, -313.082001F), new Vector2(-448.096008F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-448.071991F, -313.634003F), new Vector2(-448.059998F, -313.891998F), new Vector2(-448.059998F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-448.059998F, -315.764008F), new Vector2(-448.402008F, -317.216003F), new Vector2(-449.085999F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-449.769989F, -319.76001F), new Vector2(-450.723999F, -320.756012F), new Vector2(-451.947998F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-453.171997F, -322.196014F), new Vector2(-454.563995F, -322.556F), new Vector2(-456.123993F, -322.556F)); + builder.AddCubicBezier(new Vector2(-457.779999F, -322.556F), new Vector2(-459.273987F, -322.165985F), new Vector2(-460.605988F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-461.937988F, -320.605988F), new Vector2(-462.993988F, -319.544006F), new Vector2(-463.773987F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-464.553986F, -316.855988F), new Vector2(-464.944F, -315.343994F), new Vector2(-464.944F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-464.944F, -311.959991F), new Vector2(-464.548004F, -310.436005F), new Vector2(-463.756012F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-462.963989F, -307.747986F), new Vector2(-461.890015F, -306.686005F), new Vector2(-460.533997F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-459.178009F, -305.126007F), new Vector2(-457.635986F, -304.735992F), new Vector2(-455.90799F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-454.563995F, -304.735992F), new Vector2(-453.303986F, -304.988007F), new Vector2(-452.127991F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1378() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-466.455994F, -319.243988F)); + builder.AddLine(new Vector2(-466.455994F, -322.196014F)); + builder.AddLine(new Vector2(-478.119995F, -322.196014F)); + builder.AddLine(new Vector2(-478.119995F, -319.243988F)); + builder.AddLine(new Vector2(-466.455994F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-470.667999F, -305.096008F)); + builder.AddLine(new Vector2(-470.667999F, -329.359985F)); + builder.AddLine(new Vector2(-473.90799F, -329.359985F)); + builder.AddLine(new Vector2(-473.90799F, -305.096008F)); + builder.AddLine(new Vector2(-470.667999F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1379() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-481.881989F, -306.140015F)); + builder.AddCubicBezier(new Vector2(-480.742004F, -307.075989F), new Vector2(-480.171997F, -308.347992F), new Vector2(-480.171997F, -309.955994F)); + builder.AddCubicBezier(new Vector2(-480.171997F, -311.011993F), new Vector2(-480.394012F, -311.864014F), new Vector2(-480.838013F, -312.511993F)); + builder.AddCubicBezier(new Vector2(-481.282013F, -313.160004F), new Vector2(-481.85199F, -313.675995F), new Vector2(-482.548004F, -314.059998F)); + builder.AddCubicBezier(new Vector2(-483.243988F, -314.444F), new Vector2(-483.976013F, -314.75F), new Vector2(-484.743988F, -314.977997F)); + builder.AddCubicBezier(new Vector2(-485.511993F, -315.205994F), new Vector2(-486.25F, -315.428009F), new Vector2(-486.958008F, -315.644012F)); + builder.AddCubicBezier(new Vector2(-487.665985F, -315.859985F), new Vector2(-488.235992F, -316.123993F), new Vector2(-488.667999F, -316.436005F)); + builder.AddCubicBezier(new Vector2(-489.100006F, -316.747986F), new Vector2(-489.31601F, -317.191986F), new Vector2(-489.31601F, -317.768005F)); + builder.AddCubicBezier(new Vector2(-489.31601F, -318.320007F), new Vector2(-489.070007F, -318.764008F), new Vector2(-488.578003F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-488.085999F, -319.436005F), new Vector2(-487.372009F, -319.604004F), new Vector2(-486.436005F, -319.604004F)); + builder.AddCubicBezier(new Vector2(-485.548004F, -319.604004F), new Vector2(-484.756012F, -319.436005F), new Vector2(-484.059998F, -319.100006F)); + builder.AddCubicBezier(new Vector2(-483.364014F, -318.764008F), new Vector2(-482.764008F, -318.283997F), new Vector2(-482.26001F, -317.660004F)); + builder.AddLine(new Vector2(-480.171997F, -319.747986F)); + builder.AddCubicBezier(new Vector2(-480.843994F, -320.68399F), new Vector2(-481.701996F, -321.385986F), new Vector2(-482.746002F, -321.854004F)); + builder.AddCubicBezier(new Vector2(-483.790009F, -322.321991F), new Vector2(-484.984009F, -322.556F), new Vector2(-486.328003F, -322.556F)); + builder.AddCubicBezier(new Vector2(-487.600006F, -322.556F), new Vector2(-488.691986F, -322.35199F), new Vector2(-489.604004F, -321.944F)); + builder.AddCubicBezier(new Vector2(-490.515991F, -321.536011F), new Vector2(-491.217987F, -320.95401F), new Vector2(-491.709991F, -320.197998F)); + builder.AddCubicBezier(new Vector2(-492.201996F, -319.441986F), new Vector2(-492.447998F, -318.548004F), new Vector2(-492.447998F, -317.515991F)); + builder.AddCubicBezier(new Vector2(-492.447998F, -316.484009F), new Vector2(-492.226013F, -315.649994F), new Vector2(-491.782013F, -315.014008F)); + builder.AddCubicBezier(new Vector2(-491.338013F, -314.377991F), new Vector2(-490.768005F, -313.880005F), new Vector2(-490.071991F, -313.519989F)); + builder.AddCubicBezier(new Vector2(-489.376007F, -313.160004F), new Vector2(-488.638F, -312.872009F), new Vector2(-487.858002F, -312.656006F)); + builder.AddCubicBezier(new Vector2(-487.078003F, -312.440002F), new Vector2(-486.339996F, -312.217987F), new Vector2(-485.644012F, -311.98999F)); + builder.AddCubicBezier(new Vector2(-484.947998F, -311.761993F), new Vector2(-484.377991F, -311.473999F), new Vector2(-483.93399F, -311.126007F)); + builder.AddCubicBezier(new Vector2(-483.48999F, -310.778015F), new Vector2(-483.268005F, -310.291992F), new Vector2(-483.268005F, -309.667999F)); + builder.AddCubicBezier(new Vector2(-483.268005F, -309.044006F), new Vector2(-483.544006F, -308.558014F), new Vector2(-484.096008F, -308.209991F)); + builder.AddCubicBezier(new Vector2(-484.64801F, -307.862F), new Vector2(-485.428009F, -307.687988F), new Vector2(-486.436005F, -307.687988F)); + builder.AddCubicBezier(new Vector2(-487.444F, -307.687988F), new Vector2(-488.355988F, -307.873993F), new Vector2(-489.171997F, -308.246002F)); + builder.AddCubicBezier(new Vector2(-489.988007F, -308.618011F), new Vector2(-490.708008F, -309.187988F), new Vector2(-491.332001F, -309.955994F)); + builder.AddLine(new Vector2(-493.420013F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-492.891998F, -307.220001F), new Vector2(-492.273987F, -306.661987F), new Vector2(-491.56601F, -306.194F)); + builder.AddCubicBezier(new Vector2(-490.858002F, -305.726013F), new Vector2(-490.071991F, -305.365997F), new Vector2(-489.208008F, -305.114014F)); + builder.AddCubicBezier(new Vector2(-488.343994F, -304.862F), new Vector2(-487.432007F, -304.735992F), new Vector2(-486.471985F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-484.552002F, -304.735992F), new Vector2(-483.022003F, -305.20401F), new Vector2(-481.881989F, -306.140015F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1380() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-499.503998F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-498.328003F, -305.996002F), new Vector2(-497.320007F, -306.727997F), new Vector2(-496.480011F, -307.687988F)); + builder.AddLine(new Vector2(-498.567993F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-499.144012F, -309.140015F), new Vector2(-499.834015F, -308.635986F), new Vector2(-500.638F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-501.441986F, -307.963989F), new Vector2(-502.324005F, -307.79599F), new Vector2(-503.283997F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-504.436005F, -307.79599F), new Vector2(-505.455994F, -308.041992F), new Vector2(-506.343994F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-507.231995F, -309.026001F), new Vector2(-507.915985F, -309.721985F), new Vector2(-508.395996F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-508.876007F, -311.522003F), new Vector2(-509.115997F, -312.571991F), new Vector2(-509.115997F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-509.115997F, -314.947998F), new Vector2(-508.888F, -315.967987F), new Vector2(-508.432007F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-507.976013F, -317.696014F), new Vector2(-507.328003F, -318.368011F), new Vector2(-506.488007F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-505.64801F, -319.328003F), new Vector2(-504.675995F, -319.567993F), new Vector2(-503.571991F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-502.515991F, -319.567993F), new Vector2(-501.615997F, -319.346008F), new Vector2(-500.872009F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-500.127991F, -318.458008F), new Vector2(-499.552002F, -317.834015F), new Vector2(-499.144012F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-498.735992F, -316.226013F), new Vector2(-498.532013F, -315.247986F), new Vector2(-498.532013F, -314.096008F)); + builder.AddLine(new Vector2(-497.343994F, -315.140015F)); + builder.AddLine(new Vector2(-510.052002F, -315.140015F)); + builder.AddLine(new Vector2(-510.052002F, -312.440002F)); + builder.AddLine(new Vector2(-495.615997F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-495.544006F, -312.776001F), new Vector2(-495.496002F, -313.082001F), new Vector2(-495.471985F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-495.447998F, -313.634003F), new Vector2(-495.436005F, -313.891998F), new Vector2(-495.436005F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-495.436005F, -315.764008F), new Vector2(-495.778015F, -317.216003F), new Vector2(-496.462006F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-497.145996F, -319.76001F), new Vector2(-498.100006F, -320.756012F), new Vector2(-499.324005F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-500.548004F, -322.196014F), new Vector2(-501.940002F, -322.556F), new Vector2(-503.5F, -322.556F)); + builder.AddCubicBezier(new Vector2(-505.156006F, -322.556F), new Vector2(-506.649994F, -322.165985F), new Vector2(-507.981995F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-509.313995F, -320.605988F), new Vector2(-510.369995F, -319.544006F), new Vector2(-511.149994F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-511.929993F, -316.855988F), new Vector2(-512.320007F, -315.343994F), new Vector2(-512.320007F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-512.320007F, -311.959991F), new Vector2(-511.924011F, -310.436005F), new Vector2(-511.131989F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-510.339996F, -307.747986F), new Vector2(-509.265991F, -306.686005F), new Vector2(-507.910004F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-506.553986F, -305.126007F), new Vector2(-505.011993F, -304.735992F), new Vector2(-503.283997F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-501.940002F, -304.735992F), new Vector2(-500.679993F, -304.988007F), new Vector2(-499.503998F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1381() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-513.83197F, -319.243988F)); + builder.AddLine(new Vector2(-513.83197F, -322.196014F)); + builder.AddLine(new Vector2(-525.495972F, -322.196014F)); + builder.AddLine(new Vector2(-525.495972F, -319.243988F)); + builder.AddLine(new Vector2(-513.83197F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-518.044006F, -305.096008F)); + builder.AddLine(new Vector2(-518.044006F, -329.359985F)); + builder.AddLine(new Vector2(-521.283997F, -329.359985F)); + builder.AddLine(new Vector2(-521.283997F, -305.096008F)); + builder.AddLine(new Vector2(-518.044006F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1382() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-538.780029F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-539.619995F, -309.127991F), new Vector2(-540.280029F, -309.817993F), new Vector2(-540.76001F, -310.694F)); + builder.AddCubicBezier(new Vector2(-541.23999F, -311.570007F), new Vector2(-541.47998F, -312.571991F), new Vector2(-541.47998F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-541.47998F, -314.803986F), new Vector2(-541.23999F, -315.787994F), new Vector2(-540.76001F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-540.280029F, -317.515991F), new Vector2(-539.619995F, -318.194F), new Vector2(-538.780029F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-537.940002F, -319.178009F), new Vector2(-536.992004F, -319.424011F), new Vector2(-535.935974F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-534.83197F, -319.424011F), new Vector2(-533.866028F, -319.178009F), new Vector2(-533.038025F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-532.210022F, -318.194F), new Vector2(-531.549988F, -317.515991F), new Vector2(-531.057983F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-530.565979F, -315.787994F), new Vector2(-530.320007F, -314.803986F), new Vector2(-530.320007F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-530.320007F, -312.571991F), new Vector2(-530.559998F, -311.570007F), new Vector2(-531.039978F, -310.694F)); + builder.AddCubicBezier(new Vector2(-531.52002F, -309.817993F), new Vector2(-532.179993F, -309.127991F), new Vector2(-533.02002F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-533.859985F, -308.119995F), new Vector2(-534.83197F, -307.868011F), new Vector2(-535.935974F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-536.992004F, -307.868011F), new Vector2(-537.940002F, -308.119995F), new Vector2(-538.780029F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-531.382019F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-530.026001F, -306.716003F), new Vector2(-528.952026F, -307.790009F), new Vector2(-528.159973F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-527.367981F, -310.502014F), new Vector2(-526.971985F, -312.019989F), new Vector2(-526.971985F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-526.971985F, -315.355988F), new Vector2(-527.367981F, -316.855988F), new Vector2(-528.159973F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-528.952026F, -319.544006F), new Vector2(-530.026001F, -320.605988F), new Vector2(-531.382019F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-532.737976F, -322.165985F), new Vector2(-534.255981F, -322.556F), new Vector2(-535.935974F, -322.556F)); + builder.AddCubicBezier(new Vector2(-537.59198F, -322.556F), new Vector2(-539.09198F, -322.160004F), new Vector2(-540.435974F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-541.780029F, -320.575989F), new Vector2(-542.848022F, -319.514008F), new Vector2(-543.640015F, -318.182007F)); + builder.AddCubicBezier(new Vector2(-544.432007F, -316.850006F), new Vector2(-544.828003F, -315.355988F), new Vector2(-544.828003F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-544.828003F, -312.019989F), new Vector2(-544.432007F, -310.502014F), new Vector2(-543.640015F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-542.848022F, -307.790009F), new Vector2(-541.780029F, -306.716003F), new Vector2(-540.435974F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-539.09198F, -305.131989F), new Vector2(-537.59198F, -304.735992F), new Vector2(-535.935974F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-534.255981F, -304.735992F), new Vector2(-532.737976F, -305.131989F), new Vector2(-531.382019F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1383() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-553.216003F, -318.343994F)); + builder.AddCubicBezier(new Vector2(-552.447998F, -319.112F), new Vector2(-551.463989F, -319.496002F), new Vector2(-550.263977F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-549.687988F, -319.496002F), new Vector2(-549.184021F, -319.411987F), new Vector2(-548.752014F, -319.243988F)); + builder.AddCubicBezier(new Vector2(-548.320007F, -319.075989F), new Vector2(-547.924011F, -318.799988F), new Vector2(-547.564026F, -318.415985F)); + builder.AddLine(new Vector2(-545.440002F, -320.612F)); + builder.AddCubicBezier(new Vector2(-546.039978F, -321.308014F), new Vector2(-546.687988F, -321.806F), new Vector2(-547.383972F, -322.105988F)); + builder.AddCubicBezier(new Vector2(-548.080017F, -322.406006F), new Vector2(-548.859985F, -322.556F), new Vector2(-549.723999F, -322.556F)); + builder.AddCubicBezier(new Vector2(-551.619995F, -322.556F), new Vector2(-553.072021F, -321.90799F), new Vector2(-554.080017F, -320.612F)); + builder.AddCubicBezier(new Vector2(-555.088013F, -319.31601F), new Vector2(-555.59198F, -317.575989F), new Vector2(-555.59198F, -315.391998F)); + builder.AddLine(new Vector2(-554.367981F, -314.81601F)); + builder.AddCubicBezier(new Vector2(-554.367981F, -316.399994F), new Vector2(-553.984009F, -317.575989F), new Vector2(-553.216003F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-554.367981F, -305.096008F)); + builder.AddLine(new Vector2(-554.367981F, -322.196014F)); + builder.AddLine(new Vector2(-557.607971F, -322.196014F)); + builder.AddLine(new Vector2(-557.607971F, -305.096008F)); + builder.AddLine(new Vector2(-554.367981F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1384() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-572.926025F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-573.754028F, -309.056F), new Vector2(-574.390015F, -309.746002F), new Vector2(-574.833984F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-575.278015F, -311.497986F), new Vector2(-575.5F, -312.5F), new Vector2(-575.5F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-575.5F, -314.779999F), new Vector2(-575.271973F, -315.794006F), new Vector2(-574.815979F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-574.359985F, -317.54599F), new Vector2(-573.723999F, -318.235992F), new Vector2(-572.90802F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-572.09198F, -319.243988F), new Vector2(-571.156006F, -319.496002F), new Vector2(-570.099976F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-569.02002F, -319.496002F), new Vector2(-568.072021F, -319.243988F), new Vector2(-567.255981F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-566.440002F, -318.235992F), new Vector2(-565.797974F, -317.54599F), new Vector2(-565.330017F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-564.862F, -315.794006F), new Vector2(-564.627991F, -314.791992F), new Vector2(-564.627991F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-564.627991F, -312.511993F), new Vector2(-564.862F, -311.497986F), new Vector2(-565.330017F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-565.797974F, -309.746002F), new Vector2(-566.440002F, -309.056F), new Vector2(-567.255981F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-568.072021F, -308.048004F), new Vector2(-569.02002F, -307.79599F), new Vector2(-570.099976F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-571.156006F, -307.79599F), new Vector2(-572.098022F, -308.048004F), new Vector2(-572.926025F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-575.320007F, -297.932007F)); + builder.AddLine(new Vector2(-575.320007F, -309.380005F)); + builder.AddLine(new Vector2(-575.932007F, -313.556F)); + builder.AddLine(new Vector2(-575.320007F, -317.696014F)); + builder.AddLine(new Vector2(-575.320007F, -322.196014F)); + builder.AddLine(new Vector2(-578.559998F, -322.196014F)); + builder.AddLine(new Vector2(-578.559998F, -297.932007F)); + builder.AddLine(new Vector2(-575.320007F, -297.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-565.330017F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-564.070007F, -306.686005F), new Vector2(-563.080017F, -307.747986F), new Vector2(-562.359985F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-561.640015F, -310.436005F), new Vector2(-561.280029F, -311.947998F), new Vector2(-561.280029F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-561.280029F, -315.308014F), new Vector2(-561.640015F, -316.820007F), new Vector2(-562.359985F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-563.080017F, -319.507996F), new Vector2(-564.070007F, -320.575989F), new Vector2(-565.330017F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-566.590027F, -322.160004F), new Vector2(-568F, -322.556F), new Vector2(-569.559998F, -322.556F)); + builder.AddCubicBezier(new Vector2(-570.83197F, -322.556F), new Vector2(-571.98999F, -322.286011F), new Vector2(-573.033997F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-574.078003F, -321.205994F), new Vector2(-574.91803F, -320.462006F), new Vector2(-575.554016F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-576.190002F, -318.56601F), new Vector2(-576.544006F, -317.467987F), new Vector2(-576.616028F, -316.220001F)); + builder.AddLine(new Vector2(-576.616028F, -311.071991F)); + builder.AddCubicBezier(new Vector2(-576.544006F, -309.847992F), new Vector2(-576.195984F, -308.756012F), new Vector2(-575.572021F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-574.947998F, -306.835999F), new Vector2(-574.114014F, -306.085999F), new Vector2(-573.070007F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-572.026001F, -305.006012F), new Vector2(-570.856018F, -304.735992F), new Vector2(-569.559998F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-568F, -304.735992F), new Vector2(-566.590027F, -305.126007F), new Vector2(-565.330017F, -305.906006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1385() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-593.607971F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-592.432007F, -305.996002F), new Vector2(-591.424011F, -306.727997F), new Vector2(-590.583984F, -307.687988F)); + builder.AddLine(new Vector2(-592.671997F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-593.247986F, -309.140015F), new Vector2(-593.937988F, -308.635986F), new Vector2(-594.742004F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-595.546021F, -307.963989F), new Vector2(-596.427979F, -307.79599F), new Vector2(-597.388F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-598.539978F, -307.79599F), new Vector2(-599.559998F, -308.041992F), new Vector2(-600.447998F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-601.335999F, -309.026001F), new Vector2(-602.02002F, -309.721985F), new Vector2(-602.5F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-602.97998F, -311.522003F), new Vector2(-603.219971F, -312.571991F), new Vector2(-603.219971F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-603.219971F, -314.947998F), new Vector2(-602.992004F, -315.967987F), new Vector2(-602.536011F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-602.080017F, -317.696014F), new Vector2(-601.432007F, -318.368011F), new Vector2(-600.59198F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-599.752014F, -319.328003F), new Vector2(-598.780029F, -319.567993F), new Vector2(-597.676025F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-596.619995F, -319.567993F), new Vector2(-595.719971F, -319.346008F), new Vector2(-594.976013F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-594.231995F, -318.458008F), new Vector2(-593.656006F, -317.834015F), new Vector2(-593.247986F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-592.840027F, -316.226013F), new Vector2(-592.635986F, -315.247986F), new Vector2(-592.635986F, -314.096008F)); + builder.AddLine(new Vector2(-591.447998F, -315.140015F)); + builder.AddLine(new Vector2(-604.156006F, -315.140015F)); + builder.AddLine(new Vector2(-604.156006F, -312.440002F)); + builder.AddLine(new Vector2(-589.719971F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-589.64801F, -312.776001F), new Vector2(-589.599976F, -313.082001F), new Vector2(-589.575989F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-589.552002F, -313.634003F), new Vector2(-589.539978F, -313.891998F), new Vector2(-589.539978F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-589.539978F, -315.764008F), new Vector2(-589.882019F, -317.216003F), new Vector2(-590.565979F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-591.25F, -319.76001F), new Vector2(-592.203979F, -320.756012F), new Vector2(-593.427979F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-594.651978F, -322.196014F), new Vector2(-596.044006F, -322.556F), new Vector2(-597.604004F, -322.556F)); + builder.AddCubicBezier(new Vector2(-599.26001F, -322.556F), new Vector2(-600.754028F, -322.165985F), new Vector2(-602.085999F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-603.41803F, -320.605988F), new Vector2(-604.473999F, -319.544006F), new Vector2(-605.254028F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-606.033997F, -316.855988F), new Vector2(-606.424011F, -315.343994F), new Vector2(-606.424011F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-606.424011F, -311.959991F), new Vector2(-606.028015F, -310.436005F), new Vector2(-605.236023F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-604.44397F, -307.747986F), new Vector2(-603.369995F, -306.686005F), new Vector2(-602.013977F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-600.65802F, -305.126007F), new Vector2(-599.116028F, -304.735992F), new Vector2(-597.388F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-596.044006F, -304.735992F), new Vector2(-594.783997F, -304.988007F), new Vector2(-593.607971F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1386() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-621.796021F, -305.096008F)); + builder.AddLine(new Vector2(-621.796021F, -330.799988F)); + builder.AddLine(new Vector2(-625.036011F, -330.799988F)); + builder.AddLine(new Vector2(-625.036011F, -305.096008F)); + builder.AddLine(new Vector2(-621.796021F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-609.700012F, -305.096008F)); + builder.AddLine(new Vector2(-609.700012F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-609.700012F, -317.059998F), new Vector2(-609.987976F, -318.247986F), new Vector2(-610.564026F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-611.140015F, -320.312012F), new Vector2(-611.926025F, -321.115997F), new Vector2(-612.921997F, -321.691986F)); + builder.AddCubicBezier(new Vector2(-613.91803F, -322.268005F), new Vector2(-615.064026F, -322.556F), new Vector2(-616.359985F, -322.556F)); + builder.AddCubicBezier(new Vector2(-617.656006F, -322.556F), new Vector2(-618.820007F, -322.261993F), new Vector2(-619.85199F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-620.883972F, -321.085999F), new Vector2(-621.687988F, -320.287994F), new Vector2(-622.263977F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-622.840027F, -318.272003F), new Vector2(-623.127991F, -317.119995F), new Vector2(-623.127991F, -315.824005F)); + builder.AddLine(new Vector2(-621.796021F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-621.796021F, -315.932007F), new Vector2(-621.604004F, -316.700012F), new Vector2(-621.219971F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-620.835999F, -318.044006F), new Vector2(-620.307983F, -318.571991F), new Vector2(-619.635986F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-618.963989F, -319.339996F), new Vector2(-618.195984F, -319.532013F), new Vector2(-617.33197F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-616.036011F, -319.532013F), new Vector2(-614.986023F, -319.112F), new Vector2(-614.182007F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-613.377991F, -317.432007F), new Vector2(-612.976013F, -316.364014F), new Vector2(-612.976013F, -315.067993F)); + builder.AddLine(new Vector2(-612.976013F, -305.096008F)); + builder.AddLine(new Vector2(-609.700012F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1387() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-628.203979F, -319.243988F)); + builder.AddLine(new Vector2(-628.203979F, -322.196014F)); + builder.AddLine(new Vector2(-639.867981F, -322.196014F)); + builder.AddLine(new Vector2(-639.867981F, -319.243988F)); + builder.AddLine(new Vector2(-628.203979F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-632.416016F, -305.096008F)); + builder.AddLine(new Vector2(-632.416016F, -329.359985F)); + builder.AddLine(new Vector2(-635.656006F, -329.359985F)); + builder.AddLine(new Vector2(-635.656006F, -305.096008F)); + builder.AddLine(new Vector2(-632.416016F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1388() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-661.143982F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-661.984009F, -309.127991F), new Vector2(-662.643982F, -309.817993F), new Vector2(-663.124023F, -310.694F)); + builder.AddCubicBezier(new Vector2(-663.604004F, -311.570007F), new Vector2(-663.843994F, -312.571991F), new Vector2(-663.843994F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-663.843994F, -314.803986F), new Vector2(-663.604004F, -315.787994F), new Vector2(-663.124023F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-662.643982F, -317.515991F), new Vector2(-661.984009F, -318.194F), new Vector2(-661.143982F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-660.304016F, -319.178009F), new Vector2(-659.356018F, -319.424011F), new Vector2(-658.299988F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-657.195984F, -319.424011F), new Vector2(-656.22998F, -319.178009F), new Vector2(-655.401978F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-654.573975F, -318.194F), new Vector2(-653.914001F, -317.515991F), new Vector2(-653.421997F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-652.929993F, -315.787994F), new Vector2(-652.684021F, -314.803986F), new Vector2(-652.684021F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-652.684021F, -312.571991F), new Vector2(-652.924011F, -311.570007F), new Vector2(-653.403992F, -310.694F)); + builder.AddCubicBezier(new Vector2(-653.883972F, -309.817993F), new Vector2(-654.544006F, -309.127991F), new Vector2(-655.383972F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-656.223999F, -308.119995F), new Vector2(-657.195984F, -307.868011F), new Vector2(-658.299988F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-659.356018F, -307.868011F), new Vector2(-660.304016F, -308.119995F), new Vector2(-661.143982F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-653.745972F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-652.390015F, -306.716003F), new Vector2(-651.315979F, -307.790009F), new Vector2(-650.523987F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-649.731995F, -310.502014F), new Vector2(-649.335999F, -312.019989F), new Vector2(-649.335999F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-649.335999F, -315.355988F), new Vector2(-649.731995F, -316.855988F), new Vector2(-650.523987F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-651.315979F, -319.544006F), new Vector2(-652.390015F, -320.605988F), new Vector2(-653.745972F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-655.10199F, -322.165985F), new Vector2(-656.619995F, -322.556F), new Vector2(-658.299988F, -322.556F)); + builder.AddCubicBezier(new Vector2(-659.955994F, -322.556F), new Vector2(-661.455994F, -322.160004F), new Vector2(-662.799988F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-664.143982F, -320.575989F), new Vector2(-665.211975F, -319.514008F), new Vector2(-666.004028F, -318.182007F)); + builder.AddCubicBezier(new Vector2(-666.796021F, -316.850006F), new Vector2(-667.192017F, -315.355988F), new Vector2(-667.192017F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-667.192017F, -312.019989F), new Vector2(-666.796021F, -310.502014F), new Vector2(-666.004028F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-665.211975F, -307.790009F), new Vector2(-664.143982F, -306.716003F), new Vector2(-662.799988F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-661.455994F, -305.131989F), new Vector2(-659.955994F, -304.735992F), new Vector2(-658.299988F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-656.619995F, -304.735992F), new Vector2(-655.10199F, -305.131989F), new Vector2(-653.745972F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1389() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-668.703979F, -319.243988F)); + builder.AddLine(new Vector2(-668.703979F, -322.196014F)); + builder.AddLine(new Vector2(-680.367981F, -322.196014F)); + builder.AddLine(new Vector2(-680.367981F, -319.243988F)); + builder.AddLine(new Vector2(-668.703979F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-672.916016F, -305.096008F)); + builder.AddLine(new Vector2(-672.916016F, -329.359985F)); + builder.AddLine(new Vector2(-676.156006F, -329.359985F)); + builder.AddLine(new Vector2(-676.156006F, -305.096008F)); + builder.AddLine(new Vector2(-672.916016F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1390() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-693.83197F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-692.656006F, -305.996002F), new Vector2(-691.64801F, -306.727997F), new Vector2(-690.807983F, -307.687988F)); + builder.AddLine(new Vector2(-692.895996F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-693.471985F, -309.140015F), new Vector2(-694.161987F, -308.635986F), new Vector2(-694.966003F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-695.77002F, -307.963989F), new Vector2(-696.651978F, -307.79599F), new Vector2(-697.612F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-698.763977F, -307.79599F), new Vector2(-699.783997F, -308.041992F), new Vector2(-700.671997F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-701.559998F, -309.026001F), new Vector2(-702.244019F, -309.721985F), new Vector2(-702.723999F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-703.203979F, -311.522003F), new Vector2(-703.44397F, -312.571991F), new Vector2(-703.44397F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-703.44397F, -314.947998F), new Vector2(-703.216003F, -315.967987F), new Vector2(-702.76001F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-702.304016F, -317.696014F), new Vector2(-701.656006F, -318.368011F), new Vector2(-700.815979F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-699.976013F, -319.328003F), new Vector2(-699.004028F, -319.567993F), new Vector2(-697.900024F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-696.843994F, -319.567993F), new Vector2(-695.94397F, -319.346008F), new Vector2(-695.200012F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-694.455994F, -318.458008F), new Vector2(-693.880005F, -317.834015F), new Vector2(-693.471985F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-693.064026F, -316.226013F), new Vector2(-692.859985F, -315.247986F), new Vector2(-692.859985F, -314.096008F)); + builder.AddLine(new Vector2(-691.671997F, -315.140015F)); + builder.AddLine(new Vector2(-704.380005F, -315.140015F)); + builder.AddLine(new Vector2(-704.380005F, -312.440002F)); + builder.AddLine(new Vector2(-689.94397F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-689.872009F, -312.776001F), new Vector2(-689.823975F, -313.082001F), new Vector2(-689.799988F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-689.776001F, -313.634003F), new Vector2(-689.763977F, -313.891998F), new Vector2(-689.763977F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-689.763977F, -315.764008F), new Vector2(-690.106018F, -317.216003F), new Vector2(-690.789978F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-691.473999F, -319.76001F), new Vector2(-692.427979F, -320.756012F), new Vector2(-693.651978F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-694.875977F, -322.196014F), new Vector2(-696.268005F, -322.556F), new Vector2(-697.828003F, -322.556F)); + builder.AddCubicBezier(new Vector2(-699.484009F, -322.556F), new Vector2(-700.978027F, -322.165985F), new Vector2(-702.309998F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-703.642029F, -320.605988F), new Vector2(-704.697998F, -319.544006F), new Vector2(-705.478027F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-706.257996F, -316.855988F), new Vector2(-706.64801F, -315.343994F), new Vector2(-706.64801F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-706.64801F, -311.959991F), new Vector2(-706.252014F, -310.436005F), new Vector2(-705.460022F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-704.66803F, -307.747986F), new Vector2(-703.593994F, -306.686005F), new Vector2(-702.237976F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-700.882019F, -305.126007F), new Vector2(-699.340027F, -304.735992F), new Vector2(-697.612F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-696.268005F, -304.735992F), new Vector2(-695.007996F, -304.988007F), new Vector2(-693.83197F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1391() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-715.036011F, -318.343994F)); + builder.AddCubicBezier(new Vector2(-714.268005F, -319.112F), new Vector2(-713.283997F, -319.496002F), new Vector2(-712.083984F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-711.507996F, -319.496002F), new Vector2(-711.004028F, -319.411987F), new Vector2(-710.572021F, -319.243988F)); + builder.AddCubicBezier(new Vector2(-710.140015F, -319.075989F), new Vector2(-709.744019F, -318.799988F), new Vector2(-709.383972F, -318.415985F)); + builder.AddLine(new Vector2(-707.26001F, -320.612F)); + builder.AddCubicBezier(new Vector2(-707.859985F, -321.308014F), new Vector2(-708.507996F, -321.806F), new Vector2(-709.203979F, -322.105988F)); + builder.AddCubicBezier(new Vector2(-709.900024F, -322.406006F), new Vector2(-710.679993F, -322.556F), new Vector2(-711.544006F, -322.556F)); + builder.AddCubicBezier(new Vector2(-713.440002F, -322.556F), new Vector2(-714.892029F, -321.90799F), new Vector2(-715.900024F, -320.612F)); + builder.AddCubicBezier(new Vector2(-716.90802F, -319.31601F), new Vector2(-717.411987F, -317.575989F), new Vector2(-717.411987F, -315.391998F)); + builder.AddLine(new Vector2(-716.187988F, -314.81601F)); + builder.AddCubicBezier(new Vector2(-716.187988F, -316.399994F), new Vector2(-715.804016F, -317.575989F), new Vector2(-715.036011F, -318.343994F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-716.187988F, -305.096008F)); + builder.AddLine(new Vector2(-716.187988F, -322.196014F)); + builder.AddLine(new Vector2(-719.427979F, -322.196014F)); + builder.AddLine(new Vector2(-719.427979F, -305.096008F)); + builder.AddLine(new Vector2(-716.187988F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1392() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-724.359985F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-723.976013F, -326.605988F), new Vector2(-723.783997F, -327.104004F), new Vector2(-723.783997F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-723.783997F, -328.279999F), new Vector2(-723.976013F, -328.765991F), new Vector2(-724.359985F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-724.744019F, -329.558014F), new Vector2(-725.236023F, -329.756012F), new Vector2(-725.835999F, -329.756012F)); + builder.AddCubicBezier(new Vector2(-726.435974F, -329.756012F), new Vector2(-726.927979F, -329.558014F), new Vector2(-727.312012F, -329.161987F)); + builder.AddCubicBezier(new Vector2(-727.695984F, -328.765991F), new Vector2(-727.888F, -328.279999F), new Vector2(-727.888F, -327.70401F)); + builder.AddCubicBezier(new Vector2(-727.888F, -327.104004F), new Vector2(-727.695984F, -326.605988F), new Vector2(-727.312012F, -326.209991F)); + builder.AddCubicBezier(new Vector2(-726.927979F, -325.813995F), new Vector2(-726.435974F, -325.615997F), new Vector2(-725.835999F, -325.615997F)); + builder.AddCubicBezier(new Vector2(-725.236023F, -325.615997F), new Vector2(-724.744019F, -325.813995F), new Vector2(-724.359985F, -326.209991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-724.216003F, -305.096008F)); + builder.AddLine(new Vector2(-724.216003F, -322.196014F)); + builder.AddLine(new Vector2(-727.492004F, -322.196014F)); + builder.AddLine(new Vector2(-727.492004F, -305.096008F)); + builder.AddLine(new Vector2(-724.216003F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1393() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-730.731995F, -319.243988F)); + builder.AddLine(new Vector2(-730.731995F, -322.196014F)); + builder.AddLine(new Vector2(-743.619995F, -322.196014F)); + builder.AddLine(new Vector2(-743.619995F, -319.243988F)); + builder.AddLine(new Vector2(-730.731995F, -319.243988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-736.16803F, -305.096008F)); + builder.AddLine(new Vector2(-736.16803F, -324.752014F)); + builder.AddCubicBezier(new Vector2(-736.16803F, -325.808014F), new Vector2(-735.885986F, -326.630005F), new Vector2(-735.322021F, -327.217987F)); + builder.AddCubicBezier(new Vector2(-734.757996F, -327.806F), new Vector2(-733.960022F, -328.100006F), new Vector2(-732.927979F, -328.100006F)); + builder.AddCubicBezier(new Vector2(-732.375977F, -328.100006F), new Vector2(-731.90802F, -328.015991F), new Vector2(-731.523987F, -327.847992F)); + builder.AddCubicBezier(new Vector2(-731.140015F, -327.679993F), new Vector2(-730.791992F, -327.428009F), new Vector2(-730.47998F, -327.09201F)); + builder.AddLine(new Vector2(-728.356018F, -329.179993F)); + builder.AddCubicBezier(new Vector2(-728.955994F, -329.828003F), new Vector2(-729.616028F, -330.320007F), new Vector2(-730.335999F, -330.656006F)); + builder.AddCubicBezier(new Vector2(-731.05603F, -330.992004F), new Vector2(-731.90802F, -331.160004F), new Vector2(-732.892029F, -331.160004F)); + builder.AddCubicBezier(new Vector2(-734.187988F, -331.160004F), new Vector2(-735.328003F, -330.884003F), new Vector2(-736.312012F, -330.332001F)); + builder.AddCubicBezier(new Vector2(-737.296021F, -329.779999F), new Vector2(-738.064026F, -329.023987F), new Vector2(-738.616028F, -328.063995F)); + builder.AddCubicBezier(new Vector2(-739.16803F, -327.104004F), new Vector2(-739.44397F, -326F), new Vector2(-739.44397F, -324.752014F)); + builder.AddLine(new Vector2(-739.44397F, -305.096008F)); + builder.AddLine(new Vector2(-736.16803F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1394() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-765.796021F, -305.096008F)); + builder.AddLine(new Vector2(-765.796021F, -322.196014F)); + builder.AddLine(new Vector2(-769.036011F, -322.196014F)); + builder.AddLine(new Vector2(-769.036011F, -305.096008F)); + builder.AddLine(new Vector2(-765.796021F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-753.700012F, -305.096008F)); + builder.AddLine(new Vector2(-753.700012F, -315.716003F)); + builder.AddCubicBezier(new Vector2(-753.700012F, -316.891998F), new Vector2(-753.987976F, -318.002014F), new Vector2(-754.564026F, -319.04599F)); + builder.AddCubicBezier(new Vector2(-755.140015F, -320.089996F), new Vector2(-755.926025F, -320.936005F), new Vector2(-756.921997F, -321.584015F)); + builder.AddCubicBezier(new Vector2(-757.91803F, -322.231995F), new Vector2(-759.064026F, -322.556F), new Vector2(-760.359985F, -322.556F)); + builder.AddCubicBezier(new Vector2(-761.656006F, -322.556F), new Vector2(-762.820007F, -322.261993F), new Vector2(-763.85199F, -321.674011F)); + builder.AddCubicBezier(new Vector2(-764.883972F, -321.085999F), new Vector2(-765.687988F, -320.287994F), new Vector2(-766.263977F, -319.279999F)); + builder.AddCubicBezier(new Vector2(-766.840027F, -318.272003F), new Vector2(-767.127991F, -317.119995F), new Vector2(-767.127991F, -315.824005F)); + builder.AddLine(new Vector2(-765.796021F, -315.067993F)); + builder.AddCubicBezier(new Vector2(-765.796021F, -315.932007F), new Vector2(-765.604004F, -316.700012F), new Vector2(-765.219971F, -317.372009F)); + builder.AddCubicBezier(new Vector2(-764.835999F, -318.044006F), new Vector2(-764.307983F, -318.571991F), new Vector2(-763.635986F, -318.955994F)); + builder.AddCubicBezier(new Vector2(-762.963989F, -319.339996F), new Vector2(-762.195984F, -319.532013F), new Vector2(-761.33197F, -319.532013F)); + builder.AddCubicBezier(new Vector2(-760.036011F, -319.532013F), new Vector2(-758.986023F, -319.112F), new Vector2(-758.182007F, -318.272003F)); + builder.AddCubicBezier(new Vector2(-757.377991F, -317.432007F), new Vector2(-756.976013F, -316.364014F), new Vector2(-756.976013F, -315.067993F)); + builder.AddLine(new Vector2(-756.976013F, -305.096008F)); + builder.AddLine(new Vector2(-753.700012F, -305.096008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1395() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-776.632019F, -305.492004F)); + builder.AddCubicBezier(new Vector2(-775.455994F, -305.996002F), new Vector2(-774.447998F, -306.727997F), new Vector2(-773.607971F, -307.687988F)); + builder.AddLine(new Vector2(-775.695984F, -309.812012F)); + builder.AddCubicBezier(new Vector2(-776.271973F, -309.140015F), new Vector2(-776.961975F, -308.635986F), new Vector2(-777.765991F, -308.299988F)); + builder.AddCubicBezier(new Vector2(-778.570007F, -307.963989F), new Vector2(-779.452026F, -307.79599F), new Vector2(-780.411987F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-781.564026F, -307.79599F), new Vector2(-782.583984F, -308.041992F), new Vector2(-783.471985F, -308.533997F)); + builder.AddCubicBezier(new Vector2(-784.359985F, -309.026001F), new Vector2(-785.044006F, -309.721985F), new Vector2(-785.523987F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-786.004028F, -311.522003F), new Vector2(-786.244019F, -312.571991F), new Vector2(-786.244019F, -313.772003F)); + builder.AddCubicBezier(new Vector2(-786.244019F, -314.947998F), new Vector2(-786.015991F, -315.967987F), new Vector2(-785.559998F, -316.832001F)); + builder.AddCubicBezier(new Vector2(-785.104004F, -317.696014F), new Vector2(-784.455994F, -318.368011F), new Vector2(-783.616028F, -318.847992F)); + builder.AddCubicBezier(new Vector2(-782.776001F, -319.328003F), new Vector2(-781.804016F, -319.567993F), new Vector2(-780.700012F, -319.567993F)); + builder.AddCubicBezier(new Vector2(-779.643982F, -319.567993F), new Vector2(-778.744019F, -319.346008F), new Vector2(-778F, -318.902008F)); + builder.AddCubicBezier(new Vector2(-777.255981F, -318.458008F), new Vector2(-776.679993F, -317.834015F), new Vector2(-776.271973F, -317.029999F)); + builder.AddCubicBezier(new Vector2(-775.864014F, -316.226013F), new Vector2(-775.659973F, -315.247986F), new Vector2(-775.659973F, -314.096008F)); + builder.AddLine(new Vector2(-774.471985F, -315.140015F)); + builder.AddLine(new Vector2(-787.179993F, -315.140015F)); + builder.AddLine(new Vector2(-787.179993F, -312.440002F)); + builder.AddLine(new Vector2(-772.744019F, -312.440002F)); + builder.AddCubicBezier(new Vector2(-772.671997F, -312.776001F), new Vector2(-772.624023F, -313.082001F), new Vector2(-772.599976F, -313.358002F)); + builder.AddCubicBezier(new Vector2(-772.575989F, -313.634003F), new Vector2(-772.564026F, -313.891998F), new Vector2(-772.564026F, -314.131989F)); + builder.AddCubicBezier(new Vector2(-772.564026F, -315.764008F), new Vector2(-772.906006F, -317.216003F), new Vector2(-773.590027F, -318.488007F)); + builder.AddCubicBezier(new Vector2(-774.273987F, -319.76001F), new Vector2(-775.228027F, -320.756012F), new Vector2(-776.452026F, -321.476013F)); + builder.AddCubicBezier(new Vector2(-777.676025F, -322.196014F), new Vector2(-779.067993F, -322.556F), new Vector2(-780.627991F, -322.556F)); + builder.AddCubicBezier(new Vector2(-782.283997F, -322.556F), new Vector2(-783.778015F, -322.165985F), new Vector2(-785.109985F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-786.442017F, -320.605988F), new Vector2(-787.497986F, -319.544006F), new Vector2(-788.278015F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-789.057983F, -316.855988F), new Vector2(-789.447998F, -315.343994F), new Vector2(-789.447998F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-789.447998F, -311.959991F), new Vector2(-789.052002F, -310.436005F), new Vector2(-788.26001F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-787.468018F, -307.747986F), new Vector2(-786.393982F, -306.686005F), new Vector2(-785.038025F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-783.682007F, -305.126007F), new Vector2(-782.140015F, -304.735992F), new Vector2(-780.411987F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-779.067993F, -304.735992F), new Vector2(-777.807983F, -304.988007F), new Vector2(-776.632019F, -305.492004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1396() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-803.650024F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-804.478027F, -309.056F), new Vector2(-805.114014F, -309.746002F), new Vector2(-805.557983F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-806.002014F, -311.497986F), new Vector2(-806.223999F, -312.5F), new Vector2(-806.223999F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-806.223999F, -314.779999F), new Vector2(-805.995972F, -315.794006F), new Vector2(-805.539978F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-805.083984F, -317.54599F), new Vector2(-804.447998F, -318.235992F), new Vector2(-803.632019F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-802.815979F, -319.243988F), new Vector2(-801.880005F, -319.496002F), new Vector2(-800.823975F, -319.496002F)); + builder.AddCubicBezier(new Vector2(-799.744019F, -319.496002F), new Vector2(-798.796021F, -319.243988F), new Vector2(-797.97998F, -318.73999F)); + builder.AddCubicBezier(new Vector2(-797.164001F, -318.235992F), new Vector2(-796.521973F, -317.54599F), new Vector2(-796.054016F, -316.670013F)); + builder.AddCubicBezier(new Vector2(-795.585999F, -315.794006F), new Vector2(-795.35199F, -314.791992F), new Vector2(-795.35199F, -313.664001F)); + builder.AddCubicBezier(new Vector2(-795.35199F, -312.511993F), new Vector2(-795.585999F, -311.497986F), new Vector2(-796.054016F, -310.622009F)); + builder.AddCubicBezier(new Vector2(-796.521973F, -309.746002F), new Vector2(-797.164001F, -309.056F), new Vector2(-797.97998F, -308.552002F)); + builder.AddCubicBezier(new Vector2(-798.796021F, -308.048004F), new Vector2(-799.744019F, -307.79599F), new Vector2(-800.823975F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-801.880005F, -307.79599F), new Vector2(-802.822021F, -308.048004F), new Vector2(-803.650024F, -308.552002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-806.044006F, -297.932007F)); + builder.AddLine(new Vector2(-806.044006F, -309.380005F)); + builder.AddLine(new Vector2(-806.656006F, -313.556F)); + builder.AddLine(new Vector2(-806.044006F, -317.696014F)); + builder.AddLine(new Vector2(-806.044006F, -322.196014F)); + builder.AddLine(new Vector2(-809.283997F, -322.196014F)); + builder.AddLine(new Vector2(-809.283997F, -297.932007F)); + builder.AddLine(new Vector2(-806.044006F, -297.932007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-796.054016F, -305.906006F)); + builder.AddCubicBezier(new Vector2(-794.794006F, -306.686005F), new Vector2(-793.804016F, -307.747986F), new Vector2(-793.083984F, -309.09201F)); + builder.AddCubicBezier(new Vector2(-792.364014F, -310.436005F), new Vector2(-792.004028F, -311.947998F), new Vector2(-792.004028F, -313.627991F)); + builder.AddCubicBezier(new Vector2(-792.004028F, -315.308014F), new Vector2(-792.364014F, -316.820007F), new Vector2(-793.083984F, -318.164001F)); + builder.AddCubicBezier(new Vector2(-793.804016F, -319.507996F), new Vector2(-794.794006F, -320.575989F), new Vector2(-796.054016F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-797.314026F, -322.160004F), new Vector2(-798.723999F, -322.556F), new Vector2(-800.283997F, -322.556F)); + builder.AddCubicBezier(new Vector2(-801.55603F, -322.556F), new Vector2(-802.713989F, -322.286011F), new Vector2(-803.757996F, -321.746002F)); + builder.AddCubicBezier(new Vector2(-804.802002F, -321.205994F), new Vector2(-805.642029F, -320.462006F), new Vector2(-806.278015F, -319.514008F)); + builder.AddCubicBezier(new Vector2(-806.914001F, -318.56601F), new Vector2(-807.268005F, -317.467987F), new Vector2(-807.340027F, -316.220001F)); + builder.AddLine(new Vector2(-807.340027F, -311.071991F)); + builder.AddCubicBezier(new Vector2(-807.268005F, -309.847992F), new Vector2(-806.919983F, -308.756012F), new Vector2(-806.296021F, -307.79599F)); + builder.AddCubicBezier(new Vector2(-805.671997F, -306.835999F), new Vector2(-804.838013F, -306.085999F), new Vector2(-803.794006F, -305.54599F)); + builder.AddCubicBezier(new Vector2(-802.75F, -305.006012F), new Vector2(-801.580017F, -304.735992F), new Vector2(-800.283997F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-798.723999F, -304.735992F), new Vector2(-797.314026F, -305.126007F), new Vector2(-796.054016F, -305.906006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1397() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-824.692017F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-825.531982F, -309.127991F), new Vector2(-826.192017F, -309.817993F), new Vector2(-826.671997F, -310.694F)); + builder.AddCubicBezier(new Vector2(-827.151978F, -311.570007F), new Vector2(-827.392029F, -312.571991F), new Vector2(-827.392029F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-827.392029F, -314.803986F), new Vector2(-827.151978F, -315.787994F), new Vector2(-826.671997F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-826.192017F, -317.515991F), new Vector2(-825.531982F, -318.194F), new Vector2(-824.692017F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-823.85199F, -319.178009F), new Vector2(-822.903992F, -319.424011F), new Vector2(-821.848022F, -319.424011F)); + builder.AddCubicBezier(new Vector2(-820.744019F, -319.424011F), new Vector2(-819.778015F, -319.178009F), new Vector2(-818.950012F, -318.686005F)); + builder.AddCubicBezier(new Vector2(-818.122009F, -318.194F), new Vector2(-817.461975F, -317.515991F), new Vector2(-816.969971F, -316.652008F)); + builder.AddCubicBezier(new Vector2(-816.478027F, -315.787994F), new Vector2(-816.231995F, -314.803986F), new Vector2(-816.231995F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-816.231995F, -312.571991F), new Vector2(-816.471985F, -311.570007F), new Vector2(-816.952026F, -310.694F)); + builder.AddCubicBezier(new Vector2(-817.432007F, -309.817993F), new Vector2(-818.09198F, -309.127991F), new Vector2(-818.932007F, -308.623993F)); + builder.AddCubicBezier(new Vector2(-819.771973F, -308.119995F), new Vector2(-820.744019F, -307.868011F), new Vector2(-821.848022F, -307.868011F)); + builder.AddCubicBezier(new Vector2(-822.903992F, -307.868011F), new Vector2(-823.85199F, -308.119995F), new Vector2(-824.692017F, -308.623993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-817.294006F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-815.937988F, -306.716003F), new Vector2(-814.864014F, -307.790009F), new Vector2(-814.072021F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-813.280029F, -310.502014F), new Vector2(-812.883972F, -312.019989F), new Vector2(-812.883972F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-812.883972F, -315.355988F), new Vector2(-813.280029F, -316.855988F), new Vector2(-814.072021F, -318.200012F)); + builder.AddCubicBezier(new Vector2(-814.864014F, -319.544006F), new Vector2(-815.937988F, -320.605988F), new Vector2(-817.294006F, -321.385986F)); + builder.AddCubicBezier(new Vector2(-818.650024F, -322.165985F), new Vector2(-820.16803F, -322.556F), new Vector2(-821.848022F, -322.556F)); + builder.AddCubicBezier(new Vector2(-823.504028F, -322.556F), new Vector2(-825.004028F, -322.160004F), new Vector2(-826.348022F, -321.368011F)); + builder.AddCubicBezier(new Vector2(-827.692017F, -320.575989F), new Vector2(-828.76001F, -319.514008F), new Vector2(-829.552002F, -318.182007F)); + builder.AddCubicBezier(new Vector2(-830.343994F, -316.850006F), new Vector2(-830.73999F, -315.355988F), new Vector2(-830.73999F, -313.700012F)); + builder.AddCubicBezier(new Vector2(-830.73999F, -312.019989F), new Vector2(-830.343994F, -310.502014F), new Vector2(-829.552002F, -309.145996F)); + builder.AddCubicBezier(new Vector2(-828.76001F, -307.790009F), new Vector2(-827.692017F, -306.716003F), new Vector2(-826.348022F, -305.924011F)); + builder.AddCubicBezier(new Vector2(-825.004028F, -305.131989F), new Vector2(-823.504028F, -304.735992F), new Vector2(-821.848022F, -304.735992F)); + builder.AddCubicBezier(new Vector2(-820.16803F, -304.735992F), new Vector2(-818.650024F, -305.131989F), new Vector2(-817.294006F, -305.924011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1398() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(789.547974F, -351.824005F)); + builder.AddCubicBezier(new Vector2(788.708008F, -352.328003F), new Vector2(788.047974F, -353.018005F), new Vector2(787.567993F, -353.894012F)); + builder.AddCubicBezier(new Vector2(787.088013F, -354.769989F), new Vector2(786.848022F, -355.772003F), new Vector2(786.848022F, -356.899994F)); + builder.AddCubicBezier(new Vector2(786.848022F, -358.003998F), new Vector2(787.088013F, -358.988007F), new Vector2(787.567993F, -359.85199F)); + builder.AddCubicBezier(new Vector2(788.047974F, -360.716003F), new Vector2(788.708008F, -361.394012F), new Vector2(789.547974F, -361.885986F)); + builder.AddCubicBezier(new Vector2(790.388F, -362.377991F), new Vector2(791.335999F, -362.623993F), new Vector2(792.392029F, -362.623993F)); + builder.AddCubicBezier(new Vector2(793.495972F, -362.623993F), new Vector2(794.461975F, -362.377991F), new Vector2(795.289978F, -361.885986F)); + builder.AddCubicBezier(new Vector2(796.117981F, -361.394012F), new Vector2(796.778015F, -360.716003F), new Vector2(797.27002F, -359.85199F)); + builder.AddCubicBezier(new Vector2(797.762024F, -358.988007F), new Vector2(798.007996F, -358.003998F), new Vector2(798.007996F, -356.899994F)); + builder.AddCubicBezier(new Vector2(798.007996F, -355.772003F), new Vector2(797.768005F, -354.769989F), new Vector2(797.288025F, -353.894012F)); + builder.AddCubicBezier(new Vector2(796.807983F, -353.018005F), new Vector2(796.14801F, -352.328003F), new Vector2(795.307983F, -351.824005F)); + builder.AddCubicBezier(new Vector2(794.468018F, -351.320007F), new Vector2(793.495972F, -351.067993F), new Vector2(792.392029F, -351.067993F)); + builder.AddCubicBezier(new Vector2(791.335999F, -351.067993F), new Vector2(790.388F, -351.320007F), new Vector2(789.547974F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(796.945984F, -349.123993F)); + builder.AddCubicBezier(new Vector2(798.302002F, -349.915985F), new Vector2(799.375977F, -350.98999F), new Vector2(800.16803F, -352.346008F)); + builder.AddCubicBezier(new Vector2(800.960022F, -353.701996F), new Vector2(801.356018F, -355.220001F), new Vector2(801.356018F, -356.899994F)); + builder.AddCubicBezier(new Vector2(801.356018F, -358.556F), new Vector2(800.960022F, -360.056F), new Vector2(800.16803F, -361.399994F)); + builder.AddCubicBezier(new Vector2(799.375977F, -362.743988F), new Vector2(798.302002F, -363.806F), new Vector2(796.945984F, -364.585999F)); + builder.AddCubicBezier(new Vector2(795.590027F, -365.365997F), new Vector2(794.072021F, -365.756012F), new Vector2(792.392029F, -365.756012F)); + builder.AddCubicBezier(new Vector2(790.736023F, -365.756012F), new Vector2(789.236023F, -365.359985F), new Vector2(787.892029F, -364.567993F)); + builder.AddCubicBezier(new Vector2(786.547974F, -363.776001F), new Vector2(785.47998F, -362.713989F), new Vector2(784.687988F, -361.381989F)); + builder.AddCubicBezier(new Vector2(783.895996F, -360.049988F), new Vector2(783.5F, -358.556F), new Vector2(783.5F, -356.899994F)); + builder.AddCubicBezier(new Vector2(783.5F, -355.220001F), new Vector2(783.895996F, -353.701996F), new Vector2(784.687988F, -352.346008F)); + builder.AddCubicBezier(new Vector2(785.47998F, -350.98999F), new Vector2(786.547974F, -349.915985F), new Vector2(787.892029F, -349.123993F)); + builder.AddCubicBezier(new Vector2(789.236023F, -348.332001F), new Vector2(790.736023F, -347.936005F), new Vector2(792.392029F, -347.936005F)); + builder.AddCubicBezier(new Vector2(794.072021F, -347.936005F), new Vector2(795.590027F, -348.332001F), new Vector2(796.945984F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1399() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(781.987976F, -362.444F)); + builder.AddLine(new Vector2(781.987976F, -365.395996F)); + builder.AddLine(new Vector2(770.323975F, -365.395996F)); + builder.AddLine(new Vector2(770.323975F, -362.444F)); + builder.AddLine(new Vector2(781.987976F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(777.776001F, -348.29599F)); + builder.AddLine(new Vector2(777.776001F, -372.559998F)); + builder.AddLine(new Vector2(774.536011F, -372.559998F)); + builder.AddLine(new Vector2(774.536011F, -348.29599F)); + builder.AddLine(new Vector2(777.776001F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1400() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(747.968018F, -348.29599F)); + builder.AddLine(new Vector2(747.968018F, -365.395996F)); + builder.AddLine(new Vector2(744.728027F, -365.395996F)); + builder.AddLine(new Vector2(744.728027F, -348.29599F)); + builder.AddLine(new Vector2(747.968018F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(760.064026F, -348.29599F)); + builder.AddLine(new Vector2(760.064026F, -358.915985F)); + builder.AddCubicBezier(new Vector2(760.064026F, -360.09201F), new Vector2(759.776001F, -361.201996F), new Vector2(759.200012F, -362.246002F)); + builder.AddCubicBezier(new Vector2(758.624023F, -363.290009F), new Vector2(757.838013F, -364.135986F), new Vector2(756.84198F, -364.783997F)); + builder.AddCubicBezier(new Vector2(755.846008F, -365.432007F), new Vector2(754.700012F, -365.756012F), new Vector2(753.403992F, -365.756012F)); + builder.AddCubicBezier(new Vector2(752.107971F, -365.756012F), new Vector2(750.94397F, -365.462006F), new Vector2(749.911987F, -364.873993F)); + builder.AddCubicBezier(new Vector2(748.880005F, -364.286011F), new Vector2(748.075989F, -363.488007F), new Vector2(747.5F, -362.480011F)); + builder.AddCubicBezier(new Vector2(746.924011F, -361.471985F), new Vector2(746.635986F, -360.320007F), new Vector2(746.635986F, -359.023987F)); + builder.AddLine(new Vector2(747.968018F, -358.268005F)); + builder.AddCubicBezier(new Vector2(747.968018F, -359.131989F), new Vector2(748.159973F, -359.899994F), new Vector2(748.544006F, -360.571991F)); + builder.AddCubicBezier(new Vector2(748.927979F, -361.243988F), new Vector2(749.455994F, -361.772003F), new Vector2(750.127991F, -362.156006F)); + builder.AddCubicBezier(new Vector2(750.799988F, -362.540009F), new Vector2(751.567993F, -362.731995F), new Vector2(752.432007F, -362.731995F)); + builder.AddCubicBezier(new Vector2(753.728027F, -362.731995F), new Vector2(754.778015F, -362.312012F), new Vector2(755.58197F, -361.471985F)); + builder.AddCubicBezier(new Vector2(756.385986F, -360.631989F), new Vector2(756.788025F, -359.563995F), new Vector2(756.788025F, -358.268005F)); + builder.AddLine(new Vector2(756.788025F, -348.29599F)); + builder.AddLine(new Vector2(760.064026F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1401() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(740.012024F, -348.29599F)); + builder.AddLine(new Vector2(740.012024F, -365.395996F)); + builder.AddLine(new Vector2(736.736023F, -365.395996F)); + builder.AddLine(new Vector2(736.736023F, -361.220001F)); + builder.AddLine(new Vector2(737.348022F, -357.079987F)); + builder.AddLine(new Vector2(736.736023F, -352.903992F)); + builder.AddLine(new Vector2(736.736023F, -348.29599F)); + builder.AddLine(new Vector2(740.012024F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(728.708008F, -351.752014F)); + builder.AddCubicBezier(new Vector2(727.867981F, -352.256012F), new Vector2(727.213989F, -352.946014F), new Vector2(726.745972F, -353.821991F)); + builder.AddCubicBezier(new Vector2(726.278015F, -354.697998F), new Vector2(726.044006F, -355.712006F), new Vector2(726.044006F, -356.864014F)); + builder.AddCubicBezier(new Vector2(726.044006F, -357.992004F), new Vector2(726.278015F, -358.993988F), new Vector2(726.745972F, -359.869995F)); + builder.AddCubicBezier(new Vector2(727.213989F, -360.746002F), new Vector2(727.862F, -361.436005F), new Vector2(728.690002F, -361.940002F)); + builder.AddCubicBezier(new Vector2(729.518005F, -362.444F), new Vector2(730.471985F, -362.696014F), new Vector2(731.552002F, -362.696014F)); + builder.AddCubicBezier(new Vector2(732.632019F, -362.696014F), new Vector2(733.573975F, -362.450012F), new Vector2(734.377991F, -361.958008F)); + builder.AddCubicBezier(new Vector2(735.182007F, -361.466003F), new Vector2(735.812012F, -360.776001F), new Vector2(736.268005F, -359.888F)); + builder.AddCubicBezier(new Vector2(736.723999F, -359F), new Vector2(736.952026F, -357.980011F), new Vector2(736.952026F, -356.828003F)); + builder.AddCubicBezier(new Vector2(736.952026F, -355.123993F), new Vector2(736.460022F, -353.726013F), new Vector2(735.476013F, -352.634003F)); + builder.AddCubicBezier(new Vector2(734.492004F, -351.541992F), new Vector2(733.195984F, -350.996002F), new Vector2(731.588013F, -350.996002F)); + builder.AddCubicBezier(new Vector2(730.507996F, -350.996002F), new Vector2(729.547974F, -351.247986F), new Vector2(728.708008F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(734.539978F, -348.746002F)); + builder.AddCubicBezier(new Vector2(735.572021F, -349.286011F), new Vector2(736.393982F, -350.036011F), new Vector2(737.005981F, -350.996002F)); + builder.AddCubicBezier(new Vector2(737.617981F, -351.955994F), new Vector2(737.960022F, -353.048004F), new Vector2(738.031982F, -354.272003F)); + builder.AddLine(new Vector2(738.031982F, -359.420013F)); + builder.AddCubicBezier(new Vector2(737.960022F, -360.667999F), new Vector2(737.612F, -361.765991F), new Vector2(736.987976F, -362.713989F)); + builder.AddCubicBezier(new Vector2(736.364014F, -363.661987F), new Vector2(735.541992F, -364.406006F), new Vector2(734.521973F, -364.946014F)); + builder.AddCubicBezier(new Vector2(733.502014F, -365.485992F), new Vector2(732.343994F, -365.756012F), new Vector2(731.047974F, -365.756012F)); + builder.AddCubicBezier(new Vector2(729.463989F, -365.756012F), new Vector2(728.041992F, -365.359985F), new Vector2(726.781982F, -364.567993F)); + builder.AddCubicBezier(new Vector2(725.521973F, -363.776001F), new Vector2(724.526001F, -362.708008F), new Vector2(723.794006F, -361.364014F)); + builder.AddCubicBezier(new Vector2(723.062012F, -360.019989F), new Vector2(722.695984F, -358.507996F), new Vector2(722.695984F, -356.828003F)); + builder.AddCubicBezier(new Vector2(722.695984F, -355.14801F), new Vector2(723.062012F, -353.635986F), new Vector2(723.794006F, -352.291992F)); + builder.AddCubicBezier(new Vector2(724.526001F, -350.947998F), new Vector2(725.521973F, -349.885986F), new Vector2(726.781982F, -349.105988F)); + builder.AddCubicBezier(new Vector2(728.041992F, -348.325989F), new Vector2(729.463989F, -347.936005F), new Vector2(731.047974F, -347.936005F)); + builder.AddCubicBezier(new Vector2(732.343994F, -347.936005F), new Vector2(733.507996F, -348.205994F), new Vector2(734.539978F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1402() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(707.846008F, -352.346008F)); + builder.AddCubicBezier(new Vector2(707.018005F, -352.813995F), new Vector2(706.369995F, -353.467987F), new Vector2(705.901978F, -354.308014F)); + builder.AddCubicBezier(new Vector2(705.434021F, -355.14801F), new Vector2(705.200012F, -356.108002F), new Vector2(705.200012F, -357.187988F)); + builder.AddCubicBezier(new Vector2(705.200012F, -358.268005F), new Vector2(705.434021F, -359.221985F), new Vector2(705.901978F, -360.049988F)); + builder.AddCubicBezier(new Vector2(706.369995F, -360.877991F), new Vector2(707.012024F, -361.526001F), new Vector2(707.828003F, -361.993988F)); + builder.AddCubicBezier(new Vector2(708.643982F, -362.462006F), new Vector2(709.59198F, -362.696014F), new Vector2(710.671997F, -362.696014F)); + builder.AddCubicBezier(new Vector2(711.728027F, -362.696014F), new Vector2(712.65802F, -362.462006F), new Vector2(713.461975F, -361.993988F)); + builder.AddCubicBezier(new Vector2(714.265991F, -361.526001F), new Vector2(714.890015F, -360.877991F), new Vector2(715.333984F, -360.049988F)); + builder.AddCubicBezier(new Vector2(715.778015F, -359.221985F), new Vector2(716F, -358.256012F), new Vector2(716F, -357.152008F)); + builder.AddCubicBezier(new Vector2(716F, -356.048004F), new Vector2(715.778015F, -355.082001F), new Vector2(715.333984F, -354.253998F)); + builder.AddCubicBezier(new Vector2(714.890015F, -353.425995F), new Vector2(714.271973F, -352.783997F), new Vector2(713.47998F, -352.328003F)); + builder.AddCubicBezier(new Vector2(712.687988F, -351.872009F), new Vector2(711.752014F, -351.644012F), new Vector2(710.671997F, -351.644012F)); + builder.AddCubicBezier(new Vector2(709.616028F, -351.644012F), new Vector2(708.674011F, -351.877991F), new Vector2(707.846008F, -352.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(713.588013F, -349.376007F)); + builder.AddCubicBezier(new Vector2(714.619995F, -349.903992F), new Vector2(715.442017F, -350.641998F), new Vector2(716.054016F, -351.589996F)); + builder.AddCubicBezier(new Vector2(716.666016F, -352.537994F), new Vector2(717.007996F, -353.635986F), new Vector2(717.080017F, -354.884003F)); + builder.AddLine(new Vector2(717.080017F, -359.420013F)); + builder.AddCubicBezier(new Vector2(717.007996F, -360.691986F), new Vector2(716.671997F, -361.802002F), new Vector2(716.072021F, -362.75F)); + builder.AddCubicBezier(new Vector2(715.471985F, -363.697998F), new Vector2(714.650024F, -364.436005F), new Vector2(713.606018F, -364.963989F)); + builder.AddCubicBezier(new Vector2(712.562012F, -365.492004F), new Vector2(711.367981F, -365.756012F), new Vector2(710.023987F, -365.756012F)); + builder.AddCubicBezier(new Vector2(708.487976F, -365.756012F), new Vector2(707.096008F, -365.377991F), new Vector2(705.848022F, -364.622009F)); + builder.AddCubicBezier(new Vector2(704.599976F, -363.865997F), new Vector2(703.622009F, -362.846008F), new Vector2(702.914001F, -361.562012F)); + builder.AddCubicBezier(new Vector2(702.205994F, -360.278015F), new Vector2(701.85199F, -358.820007F), new Vector2(701.85199F, -357.187988F)); + builder.AddCubicBezier(new Vector2(701.85199F, -355.556F), new Vector2(702.211975F, -354.085999F), new Vector2(702.932007F, -352.778015F)); + builder.AddCubicBezier(new Vector2(703.651978F, -351.470001F), new Vector2(704.630005F, -350.444F), new Vector2(705.866028F, -349.700012F)); + builder.AddCubicBezier(new Vector2(707.10199F, -348.955994F), new Vector2(708.5F, -348.584015F), new Vector2(710.059998F, -348.584015F)); + builder.AddCubicBezier(new Vector2(711.380005F, -348.584015F), new Vector2(712.55603F, -348.847992F), new Vector2(713.588013F, -349.376007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(714.757996F, -341.798004F)); + builder.AddCubicBezier(new Vector2(716.114014F, -342.481995F), new Vector2(717.169983F, -343.441986F), new Vector2(717.926025F, -344.678009F)); + builder.AddCubicBezier(new Vector2(718.682007F, -345.914001F), new Vector2(719.059998F, -347.347992F), new Vector2(719.059998F, -348.980011F)); + builder.AddLine(new Vector2(719.059998F, -365.395996F)); + builder.AddLine(new Vector2(715.820007F, -365.395996F)); + builder.AddLine(new Vector2(715.820007F, -360.895996F)); + builder.AddLine(new Vector2(716.395996F, -357.079987F)); + builder.AddLine(new Vector2(715.820007F, -353.227997F)); + builder.AddLine(new Vector2(715.820007F, -348.980011F)); + builder.AddCubicBezier(new Vector2(715.820007F, -347.420013F), new Vector2(715.304016F, -346.178009F), new Vector2(714.271973F, -345.253998F)); + builder.AddCubicBezier(new Vector2(713.23999F, -344.329987F), new Vector2(711.859985F, -343.868011F), new Vector2(710.132019F, -343.868011F)); + builder.AddCubicBezier(new Vector2(708.812012F, -343.868011F), new Vector2(707.671997F, -344.10199F), new Vector2(706.711975F, -344.570007F)); + builder.AddCubicBezier(new Vector2(705.752014F, -345.037994F), new Vector2(704.924011F, -345.716003F), new Vector2(704.228027F, -346.604004F)); + builder.AddLine(new Vector2(702.104004F, -344.480011F)); + builder.AddCubicBezier(new Vector2(702.94397F, -343.303986F), new Vector2(704.036011F, -342.391998F), new Vector2(705.380005F, -341.743988F)); + builder.AddCubicBezier(new Vector2(706.723999F, -341.096008F), new Vector2(708.283997F, -340.772003F), new Vector2(710.059998F, -340.772003F)); + builder.AddCubicBezier(new Vector2(711.835999F, -340.772003F), new Vector2(713.401978F, -341.114014F), new Vector2(714.757996F, -341.798004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1403() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(695.372009F, -348.691986F)); + builder.AddCubicBezier(new Vector2(696.547974F, -349.196014F), new Vector2(697.55603F, -349.928009F), new Vector2(698.395996F, -350.888F)); + builder.AddLine(new Vector2(696.307983F, -353.011993F)); + builder.AddCubicBezier(new Vector2(695.731995F, -352.339996F), new Vector2(695.041992F, -351.835999F), new Vector2(694.237976F, -351.5F)); + builder.AddCubicBezier(new Vector2(693.434021F, -351.164001F), new Vector2(692.552002F, -350.996002F), new Vector2(691.59198F, -350.996002F)); + builder.AddCubicBezier(new Vector2(690.440002F, -350.996002F), new Vector2(689.419983F, -351.242004F), new Vector2(688.531982F, -351.734009F)); + builder.AddCubicBezier(new Vector2(687.643982F, -352.226013F), new Vector2(686.960022F, -352.921997F), new Vector2(686.47998F, -353.821991F)); + builder.AddCubicBezier(new Vector2(686F, -354.721985F), new Vector2(685.76001F, -355.772003F), new Vector2(685.76001F, -356.971985F)); + builder.AddCubicBezier(new Vector2(685.76001F, -358.14801F), new Vector2(685.987976F, -359.167999F), new Vector2(686.44397F, -360.032013F)); + builder.AddCubicBezier(new Vector2(686.900024F, -360.895996F), new Vector2(687.547974F, -361.567993F), new Vector2(688.388F, -362.048004F)); + builder.AddCubicBezier(new Vector2(689.228027F, -362.528015F), new Vector2(690.200012F, -362.768005F), new Vector2(691.304016F, -362.768005F)); + builder.AddCubicBezier(new Vector2(692.359985F, -362.768005F), new Vector2(693.26001F, -362.54599F), new Vector2(694.004028F, -362.10199F)); + builder.AddCubicBezier(new Vector2(694.747986F, -361.65799F), new Vector2(695.323975F, -361.033997F), new Vector2(695.731995F, -360.230011F)); + builder.AddCubicBezier(new Vector2(696.140015F, -359.425995F), new Vector2(696.343994F, -358.447998F), new Vector2(696.343994F, -357.29599F)); + builder.AddLine(new Vector2(697.531982F, -358.339996F)); + builder.AddLine(new Vector2(684.823975F, -358.339996F)); + builder.AddLine(new Vector2(684.823975F, -355.640015F)); + builder.AddLine(new Vector2(699.26001F, -355.640015F)); + builder.AddCubicBezier(new Vector2(699.33197F, -355.976013F), new Vector2(699.380005F, -356.282013F), new Vector2(699.403992F, -356.558014F)); + builder.AddCubicBezier(new Vector2(699.427979F, -356.834015F), new Vector2(699.440002F, -357.09201F), new Vector2(699.440002F, -357.332001F)); + builder.AddCubicBezier(new Vector2(699.440002F, -358.963989F), new Vector2(699.098022F, -360.415985F), new Vector2(698.414001F, -361.687988F)); + builder.AddCubicBezier(new Vector2(697.72998F, -362.959991F), new Vector2(696.776001F, -363.955994F), new Vector2(695.552002F, -364.675995F)); + builder.AddCubicBezier(new Vector2(694.328003F, -365.395996F), new Vector2(692.935974F, -365.756012F), new Vector2(691.375977F, -365.756012F)); + builder.AddCubicBezier(new Vector2(689.719971F, -365.756012F), new Vector2(688.226013F, -365.365997F), new Vector2(686.893982F, -364.585999F)); + builder.AddCubicBezier(new Vector2(685.562012F, -363.806F), new Vector2(684.505981F, -362.743988F), new Vector2(683.726013F, -361.399994F)); + builder.AddCubicBezier(new Vector2(682.945984F, -360.056F), new Vector2(682.55603F, -358.544006F), new Vector2(682.55603F, -356.864014F)); + builder.AddCubicBezier(new Vector2(682.55603F, -355.160004F), new Vector2(682.952026F, -353.635986F), new Vector2(683.744019F, -352.291992F)); + builder.AddCubicBezier(new Vector2(684.536011F, -350.947998F), new Vector2(685.609985F, -349.885986F), new Vector2(686.966003F, -349.105988F)); + builder.AddCubicBezier(new Vector2(688.322021F, -348.325989F), new Vector2(689.864014F, -347.936005F), new Vector2(691.59198F, -347.936005F)); + builder.AddCubicBezier(new Vector2(692.935974F, -347.936005F), new Vector2(694.195984F, -348.187988F), new Vector2(695.372009F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1404() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(668.354004F, -351.752014F)); + builder.AddCubicBezier(new Vector2(667.526001F, -352.256012F), new Vector2(666.890015F, -352.946014F), new Vector2(666.445984F, -353.821991F)); + builder.AddCubicBezier(new Vector2(666.002014F, -354.697998F), new Vector2(665.780029F, -355.700012F), new Vector2(665.780029F, -356.828003F)); + builder.AddCubicBezier(new Vector2(665.780029F, -357.980011F), new Vector2(666.007996F, -358.993988F), new Vector2(666.463989F, -359.869995F)); + builder.AddCubicBezier(new Vector2(666.919983F, -360.746002F), new Vector2(667.55603F, -361.436005F), new Vector2(668.372009F, -361.940002F)); + builder.AddCubicBezier(new Vector2(669.187988F, -362.444F), new Vector2(670.124023F, -362.696014F), new Vector2(671.179993F, -362.696014F)); + builder.AddCubicBezier(new Vector2(672.26001F, -362.696014F), new Vector2(673.208008F, -362.444F), new Vector2(674.023987F, -361.940002F)); + builder.AddCubicBezier(new Vector2(674.840027F, -361.436005F), new Vector2(675.481995F, -360.746002F), new Vector2(675.950012F, -359.869995F)); + builder.AddCubicBezier(new Vector2(676.41803F, -358.993988F), new Vector2(676.651978F, -357.992004F), new Vector2(676.651978F, -356.864014F)); + builder.AddCubicBezier(new Vector2(676.651978F, -355.712006F), new Vector2(676.41803F, -354.697998F), new Vector2(675.950012F, -353.821991F)); + builder.AddCubicBezier(new Vector2(675.481995F, -352.946014F), new Vector2(674.840027F, -352.256012F), new Vector2(674.023987F, -351.752014F)); + builder.AddCubicBezier(new Vector2(673.208008F, -351.247986F), new Vector2(672.26001F, -350.996002F), new Vector2(671.179993F, -350.996002F)); + builder.AddCubicBezier(new Vector2(670.124023F, -350.996002F), new Vector2(669.182007F, -351.247986F), new Vector2(668.354004F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(665.960022F, -348.29599F)); + builder.AddLine(new Vector2(665.960022F, -352.903992F)); + builder.AddLine(new Vector2(665.348022F, -357.079987F)); + builder.AddLine(new Vector2(665.960022F, -361.220001F)); + builder.AddLine(new Vector2(665.960022F, -374F)); + builder.AddLine(new Vector2(662.719971F, -374F)); + builder.AddLine(new Vector2(662.719971F, -348.29599F)); + builder.AddLine(new Vector2(665.960022F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(675.950012F, -349.105988F)); + builder.AddCubicBezier(new Vector2(677.210022F, -349.885986F), new Vector2(678.200012F, -350.947998F), new Vector2(678.919983F, -352.291992F)); + builder.AddCubicBezier(new Vector2(679.640015F, -353.635986F), new Vector2(680F, -355.14801F), new Vector2(680F, -356.828003F)); + builder.AddCubicBezier(new Vector2(680F, -358.507996F), new Vector2(679.640015F, -360.019989F), new Vector2(678.919983F, -361.364014F)); + builder.AddCubicBezier(new Vector2(678.200012F, -362.708008F), new Vector2(677.210022F, -363.776001F), new Vector2(675.950012F, -364.567993F)); + builder.AddCubicBezier(new Vector2(674.690002F, -365.359985F), new Vector2(673.280029F, -365.756012F), new Vector2(671.719971F, -365.756012F)); + builder.AddCubicBezier(new Vector2(670.447998F, -365.756012F), new Vector2(669.289978F, -365.485992F), new Vector2(668.245972F, -364.946014F)); + builder.AddCubicBezier(new Vector2(667.202026F, -364.406006F), new Vector2(666.362F, -363.661987F), new Vector2(665.726013F, -362.713989F)); + builder.AddCubicBezier(new Vector2(665.090027F, -361.765991F), new Vector2(664.736023F, -360.667999F), new Vector2(664.664001F, -359.420013F)); + builder.AddLine(new Vector2(664.664001F, -354.272003F)); + builder.AddCubicBezier(new Vector2(664.736023F, -353.048004F), new Vector2(665.083984F, -351.955994F), new Vector2(665.708008F, -350.996002F)); + builder.AddCubicBezier(new Vector2(666.33197F, -350.036011F), new Vector2(667.166016F, -349.286011F), new Vector2(668.210022F, -348.746002F)); + builder.AddCubicBezier(new Vector2(669.254028F, -348.205994F), new Vector2(670.424011F, -347.936005F), new Vector2(671.719971F, -347.936005F)); + builder.AddCubicBezier(new Vector2(673.280029F, -347.936005F), new Vector2(674.690002F, -348.325989F), new Vector2(675.950012F, -349.105988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1405() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(650.552002F, -374F)); + builder.AddLine(new Vector2(647.276001F, -374F)); + builder.AddLine(new Vector2(647.276001F, -361.220001F)); + builder.AddLine(new Vector2(647.888F, -357.079987F)); + builder.AddLine(new Vector2(647.276001F, -352.903992F)); + builder.AddLine(new Vector2(647.276001F, -348.29599F)); + builder.AddLine(new Vector2(650.552002F, -348.29599F)); + builder.AddLine(new Vector2(650.552002F, -374F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(639.22998F, -351.734009F)); + builder.AddCubicBezier(new Vector2(638.401978F, -352.226013F), new Vector2(637.754028F, -352.915985F), new Vector2(637.286011F, -353.803986F)); + builder.AddCubicBezier(new Vector2(636.817993F, -354.691986F), new Vector2(636.583984F, -355.712006F), new Vector2(636.583984F, -356.864014F)); + builder.AddCubicBezier(new Vector2(636.583984F, -358.015991F), new Vector2(636.817993F, -359.029999F), new Vector2(637.286011F, -359.906006F)); + builder.AddCubicBezier(new Vector2(637.754028F, -360.782013F), new Vector2(638.395996F, -361.466003F), new Vector2(639.211975F, -361.958008F)); + builder.AddCubicBezier(new Vector2(640.028015F, -362.450012F), new Vector2(640.976013F, -362.696014F), new Vector2(642.05603F, -362.696014F)); + builder.AddCubicBezier(new Vector2(643.135986F, -362.696014F), new Vector2(644.083984F, -362.444F), new Vector2(644.900024F, -361.940002F)); + builder.AddCubicBezier(new Vector2(645.716003F, -361.436005F), new Vector2(646.35199F, -360.746002F), new Vector2(646.807983F, -359.869995F)); + builder.AddCubicBezier(new Vector2(647.263977F, -358.993988F), new Vector2(647.492004F, -357.980011F), new Vector2(647.492004F, -356.828003F)); + builder.AddCubicBezier(new Vector2(647.492004F, -355.700012F), new Vector2(647.263977F, -354.697998F), new Vector2(646.807983F, -353.821991F)); + builder.AddCubicBezier(new Vector2(646.35199F, -352.946014F), new Vector2(645.716003F, -352.256012F), new Vector2(644.900024F, -351.752014F)); + builder.AddCubicBezier(new Vector2(644.083984F, -351.247986F), new Vector2(643.135986F, -350.996002F), new Vector2(642.05603F, -350.996002F)); + builder.AddCubicBezier(new Vector2(641F, -350.996002F), new Vector2(640.057983F, -351.242004F), new Vector2(639.22998F, -351.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(645.044006F, -348.746002F)); + builder.AddCubicBezier(new Vector2(646.075989F, -349.286011F), new Vector2(646.903992F, -350.036011F), new Vector2(647.528015F, -350.996002F)); + builder.AddCubicBezier(new Vector2(648.151978F, -351.955994F), new Vector2(648.5F, -353.048004F), new Vector2(648.572021F, -354.272003F)); + builder.AddLine(new Vector2(648.572021F, -359.420013F)); + builder.AddCubicBezier(new Vector2(648.5F, -360.667999F), new Vector2(648.145996F, -361.765991F), new Vector2(647.51001F, -362.713989F)); + builder.AddCubicBezier(new Vector2(646.874023F, -363.661987F), new Vector2(646.039978F, -364.406006F), new Vector2(645.007996F, -364.946014F)); + builder.AddCubicBezier(new Vector2(643.976013F, -365.485992F), new Vector2(642.812012F, -365.756012F), new Vector2(641.515991F, -365.756012F)); + builder.AddCubicBezier(new Vector2(639.955994F, -365.756012F), new Vector2(638.552002F, -365.359985F), new Vector2(637.304016F, -364.567993F)); + builder.AddCubicBezier(new Vector2(636.05603F, -363.776001F), new Vector2(635.065979F, -362.708008F), new Vector2(634.333984F, -361.364014F)); + builder.AddCubicBezier(new Vector2(633.60199F, -360.019989F), new Vector2(633.236023F, -358.507996F), new Vector2(633.236023F, -356.828003F)); + builder.AddCubicBezier(new Vector2(633.236023F, -355.14801F), new Vector2(633.60199F, -353.635986F), new Vector2(634.333984F, -352.291992F)); + builder.AddCubicBezier(new Vector2(635.065979F, -350.947998F), new Vector2(636.05603F, -349.885986F), new Vector2(637.304016F, -349.105988F)); + builder.AddCubicBezier(new Vector2(638.552002F, -348.325989F), new Vector2(639.955994F, -347.936005F), new Vector2(641.515991F, -347.936005F)); + builder.AddCubicBezier(new Vector2(642.835999F, -347.936005F), new Vector2(644.012024F, -348.205994F), new Vector2(645.044006F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1406() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(617.828003F, -348.29599F)); + builder.AddLine(new Vector2(617.828003F, -365.395996F)); + builder.AddLine(new Vector2(614.588013F, -365.395996F)); + builder.AddLine(new Vector2(614.588013F, -348.29599F)); + builder.AddLine(new Vector2(617.828003F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(629.924011F, -348.29599F)); + builder.AddLine(new Vector2(629.924011F, -358.915985F)); + builder.AddCubicBezier(new Vector2(629.924011F, -360.09201F), new Vector2(629.635986F, -361.201996F), new Vector2(629.059998F, -362.246002F)); + builder.AddCubicBezier(new Vector2(628.484009F, -363.290009F), new Vector2(627.697998F, -364.135986F), new Vector2(626.702026F, -364.783997F)); + builder.AddCubicBezier(new Vector2(625.705994F, -365.432007F), new Vector2(624.559998F, -365.756012F), new Vector2(623.263977F, -365.756012F)); + builder.AddCubicBezier(new Vector2(621.968018F, -365.756012F), new Vector2(620.804016F, -365.462006F), new Vector2(619.771973F, -364.873993F)); + builder.AddCubicBezier(new Vector2(618.73999F, -364.286011F), new Vector2(617.935974F, -363.488007F), new Vector2(617.359985F, -362.480011F)); + builder.AddCubicBezier(new Vector2(616.783997F, -361.471985F), new Vector2(616.495972F, -360.320007F), new Vector2(616.495972F, -359.023987F)); + builder.AddLine(new Vector2(617.828003F, -358.268005F)); + builder.AddCubicBezier(new Vector2(617.828003F, -359.131989F), new Vector2(618.02002F, -359.899994F), new Vector2(618.403992F, -360.571991F)); + builder.AddCubicBezier(new Vector2(618.788025F, -361.243988F), new Vector2(619.315979F, -361.772003F), new Vector2(619.987976F, -362.156006F)); + builder.AddCubicBezier(new Vector2(620.659973F, -362.540009F), new Vector2(621.427979F, -362.731995F), new Vector2(622.291992F, -362.731995F)); + builder.AddCubicBezier(new Vector2(623.588013F, -362.731995F), new Vector2(624.638F, -362.312012F), new Vector2(625.442017F, -361.471985F)); + builder.AddCubicBezier(new Vector2(626.245972F, -360.631989F), new Vector2(626.64801F, -359.563995F), new Vector2(626.64801F, -358.268005F)); + builder.AddLine(new Vector2(626.64801F, -348.29599F)); + builder.AddLine(new Vector2(629.924011F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1407() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(609.872009F, -348.29599F)); + builder.AddLine(new Vector2(609.872009F, -365.395996F)); + builder.AddLine(new Vector2(606.596008F, -365.395996F)); + builder.AddLine(new Vector2(606.596008F, -361.220001F)); + builder.AddLine(new Vector2(607.208008F, -357.079987F)); + builder.AddLine(new Vector2(606.596008F, -352.903992F)); + builder.AddLine(new Vector2(606.596008F, -348.29599F)); + builder.AddLine(new Vector2(609.872009F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(598.567993F, -351.752014F)); + builder.AddCubicBezier(new Vector2(597.728027F, -352.256012F), new Vector2(597.073975F, -352.946014F), new Vector2(596.606018F, -353.821991F)); + builder.AddCubicBezier(new Vector2(596.138F, -354.697998F), new Vector2(595.903992F, -355.712006F), new Vector2(595.903992F, -356.864014F)); + builder.AddCubicBezier(new Vector2(595.903992F, -357.992004F), new Vector2(596.138F, -358.993988F), new Vector2(596.606018F, -359.869995F)); + builder.AddCubicBezier(new Vector2(597.073975F, -360.746002F), new Vector2(597.721985F, -361.436005F), new Vector2(598.549988F, -361.940002F)); + builder.AddCubicBezier(new Vector2(599.377991F, -362.444F), new Vector2(600.33197F, -362.696014F), new Vector2(601.411987F, -362.696014F)); + builder.AddCubicBezier(new Vector2(602.492004F, -362.696014F), new Vector2(603.434021F, -362.450012F), new Vector2(604.237976F, -361.958008F)); + builder.AddCubicBezier(new Vector2(605.041992F, -361.466003F), new Vector2(605.671997F, -360.776001F), new Vector2(606.127991F, -359.888F)); + builder.AddCubicBezier(new Vector2(606.583984F, -359F), new Vector2(606.812012F, -357.980011F), new Vector2(606.812012F, -356.828003F)); + builder.AddCubicBezier(new Vector2(606.812012F, -355.123993F), new Vector2(606.320007F, -353.726013F), new Vector2(605.335999F, -352.634003F)); + builder.AddCubicBezier(new Vector2(604.35199F, -351.541992F), new Vector2(603.05603F, -350.996002F), new Vector2(601.447998F, -350.996002F)); + builder.AddCubicBezier(new Vector2(600.367981F, -350.996002F), new Vector2(599.40802F, -351.247986F), new Vector2(598.567993F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(604.400024F, -348.746002F)); + builder.AddCubicBezier(new Vector2(605.432007F, -349.286011F), new Vector2(606.254028F, -350.036011F), new Vector2(606.866028F, -350.996002F)); + builder.AddCubicBezier(new Vector2(607.478027F, -351.955994F), new Vector2(607.820007F, -353.048004F), new Vector2(607.892029F, -354.272003F)); + builder.AddLine(new Vector2(607.892029F, -359.420013F)); + builder.AddCubicBezier(new Vector2(607.820007F, -360.667999F), new Vector2(607.471985F, -361.765991F), new Vector2(606.848022F, -362.713989F)); + builder.AddCubicBezier(new Vector2(606.223999F, -363.661987F), new Vector2(605.401978F, -364.406006F), new Vector2(604.382019F, -364.946014F)); + builder.AddCubicBezier(new Vector2(603.362F, -365.485992F), new Vector2(602.203979F, -365.756012F), new Vector2(600.90802F, -365.756012F)); + builder.AddCubicBezier(new Vector2(599.323975F, -365.756012F), new Vector2(597.901978F, -365.359985F), new Vector2(596.642029F, -364.567993F)); + builder.AddCubicBezier(new Vector2(595.382019F, -363.776001F), new Vector2(594.385986F, -362.708008F), new Vector2(593.653992F, -361.364014F)); + builder.AddCubicBezier(new Vector2(592.921997F, -360.019989F), new Vector2(592.55603F, -358.507996F), new Vector2(592.55603F, -356.828003F)); + builder.AddCubicBezier(new Vector2(592.55603F, -355.14801F), new Vector2(592.921997F, -353.635986F), new Vector2(593.653992F, -352.291992F)); + builder.AddCubicBezier(new Vector2(594.385986F, -350.947998F), new Vector2(595.382019F, -349.885986F), new Vector2(596.642029F, -349.105988F)); + builder.AddCubicBezier(new Vector2(597.901978F, -348.325989F), new Vector2(599.323975F, -347.936005F), new Vector2(600.90802F, -347.936005F)); + builder.AddCubicBezier(new Vector2(602.203979F, -347.936005F), new Vector2(603.367981F, -348.205994F), new Vector2(604.400024F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1408() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(578.588013F, -348.691986F)); + builder.AddCubicBezier(new Vector2(579.763977F, -349.196014F), new Vector2(580.771973F, -349.928009F), new Vector2(581.612F, -350.888F)); + builder.AddLine(new Vector2(579.523987F, -353.011993F)); + builder.AddCubicBezier(new Vector2(578.947998F, -352.339996F), new Vector2(578.257996F, -351.835999F), new Vector2(577.453979F, -351.5F)); + builder.AddCubicBezier(new Vector2(576.650024F, -351.164001F), new Vector2(575.768005F, -350.996002F), new Vector2(574.807983F, -350.996002F)); + builder.AddCubicBezier(new Vector2(573.656006F, -350.996002F), new Vector2(572.635986F, -351.242004F), new Vector2(571.747986F, -351.734009F)); + builder.AddCubicBezier(new Vector2(570.859985F, -352.226013F), new Vector2(570.176025F, -352.921997F), new Vector2(569.695984F, -353.821991F)); + builder.AddCubicBezier(new Vector2(569.216003F, -354.721985F), new Vector2(568.976013F, -355.772003F), new Vector2(568.976013F, -356.971985F)); + builder.AddCubicBezier(new Vector2(568.976013F, -358.14801F), new Vector2(569.203979F, -359.167999F), new Vector2(569.659973F, -360.032013F)); + builder.AddCubicBezier(new Vector2(570.116028F, -360.895996F), new Vector2(570.763977F, -361.567993F), new Vector2(571.604004F, -362.048004F)); + builder.AddCubicBezier(new Vector2(572.44397F, -362.528015F), new Vector2(573.416016F, -362.768005F), new Vector2(574.52002F, -362.768005F)); + builder.AddCubicBezier(new Vector2(575.575989F, -362.768005F), new Vector2(576.476013F, -362.54599F), new Vector2(577.219971F, -362.10199F)); + builder.AddCubicBezier(new Vector2(577.963989F, -361.65799F), new Vector2(578.539978F, -361.033997F), new Vector2(578.947998F, -360.230011F)); + builder.AddCubicBezier(new Vector2(579.356018F, -359.425995F), new Vector2(579.559998F, -358.447998F), new Vector2(579.559998F, -357.29599F)); + builder.AddLine(new Vector2(580.747986F, -358.339996F)); + builder.AddLine(new Vector2(568.039978F, -358.339996F)); + builder.AddLine(new Vector2(568.039978F, -355.640015F)); + builder.AddLine(new Vector2(582.476013F, -355.640015F)); + builder.AddCubicBezier(new Vector2(582.547974F, -355.976013F), new Vector2(582.596008F, -356.282013F), new Vector2(582.619995F, -356.558014F)); + builder.AddCubicBezier(new Vector2(582.643982F, -356.834015F), new Vector2(582.656006F, -357.09201F), new Vector2(582.656006F, -357.332001F)); + builder.AddCubicBezier(new Vector2(582.656006F, -358.963989F), new Vector2(582.314026F, -360.415985F), new Vector2(581.630005F, -361.687988F)); + builder.AddCubicBezier(new Vector2(580.945984F, -362.959991F), new Vector2(579.992004F, -363.955994F), new Vector2(578.768005F, -364.675995F)); + builder.AddCubicBezier(new Vector2(577.544006F, -365.395996F), new Vector2(576.151978F, -365.756012F), new Vector2(574.59198F, -365.756012F)); + builder.AddCubicBezier(new Vector2(572.935974F, -365.756012F), new Vector2(571.442017F, -365.365997F), new Vector2(570.109985F, -364.585999F)); + builder.AddCubicBezier(new Vector2(568.778015F, -363.806F), new Vector2(567.721985F, -362.743988F), new Vector2(566.942017F, -361.399994F)); + builder.AddCubicBezier(new Vector2(566.161987F, -360.056F), new Vector2(565.771973F, -358.544006F), new Vector2(565.771973F, -356.864014F)); + builder.AddCubicBezier(new Vector2(565.771973F, -355.160004F), new Vector2(566.16803F, -353.635986F), new Vector2(566.960022F, -352.291992F)); + builder.AddCubicBezier(new Vector2(567.752014F, -350.947998F), new Vector2(568.825989F, -349.885986F), new Vector2(570.182007F, -349.105988F)); + builder.AddCubicBezier(new Vector2(571.538025F, -348.325989F), new Vector2(573.080017F, -347.936005F), new Vector2(574.807983F, -347.936005F)); + builder.AddCubicBezier(new Vector2(576.151978F, -347.936005F), new Vector2(577.411987F, -348.187988F), new Vector2(578.588013F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1409() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(561.109985F, -348.691986F)); + builder.AddCubicBezier(new Vector2(562.25F, -349.196014F), new Vector2(563.216003F, -349.903992F), new Vector2(564.007996F, -350.81601F)); + builder.AddLine(new Vector2(561.883972F, -352.976013F)); + builder.AddCubicBezier(new Vector2(561.33197F, -352.35199F), new Vector2(560.677979F, -351.877991F), new Vector2(559.921997F, -351.553986F)); + builder.AddCubicBezier(new Vector2(559.166016F, -351.230011F), new Vector2(558.33197F, -351.067993F), new Vector2(557.419983F, -351.067993F)); + builder.AddCubicBezier(new Vector2(556.340027F, -351.067993F), new Vector2(555.380005F, -351.320007F), new Vector2(554.539978F, -351.824005F)); + builder.AddCubicBezier(new Vector2(553.700012F, -352.328003F), new Vector2(553.039978F, -353.011993F), new Vector2(552.559998F, -353.876007F)); + builder.AddCubicBezier(new Vector2(552.080017F, -354.73999F), new Vector2(551.840027F, -355.735992F), new Vector2(551.840027F, -356.864014F)); + builder.AddCubicBezier(new Vector2(551.840027F, -357.992004F), new Vector2(552.080017F, -358.988007F), new Vector2(552.559998F, -359.85199F)); + builder.AddCubicBezier(new Vector2(553.039978F, -360.716003F), new Vector2(553.700012F, -361.394012F), new Vector2(554.539978F, -361.885986F)); + builder.AddCubicBezier(new Vector2(555.380005F, -362.377991F), new Vector2(556.340027F, -362.623993F), new Vector2(557.419983F, -362.623993F)); + builder.AddCubicBezier(new Vector2(558.307983F, -362.623993F), new Vector2(559.135986F, -362.462006F), new Vector2(559.903992F, -362.138F)); + builder.AddCubicBezier(new Vector2(560.671997F, -361.813995F), new Vector2(561.320007F, -361.339996F), new Vector2(561.848022F, -360.716003F)); + builder.AddLine(new Vector2(564.007996F, -362.876007F)); + builder.AddCubicBezier(new Vector2(563.192017F, -363.812012F), new Vector2(562.219971F, -364.526001F), new Vector2(561.09198F, -365.018005F)); + builder.AddCubicBezier(new Vector2(559.963989F, -365.51001F), new Vector2(558.73999F, -365.756012F), new Vector2(557.419983F, -365.756012F)); + builder.AddCubicBezier(new Vector2(555.73999F, -365.756012F), new Vector2(554.221985F, -365.365997F), new Vector2(552.866028F, -364.585999F)); + builder.AddCubicBezier(new Vector2(551.51001F, -363.806F), new Vector2(550.442017F, -362.743988F), new Vector2(549.661987F, -361.399994F)); + builder.AddCubicBezier(new Vector2(548.882019F, -360.056F), new Vector2(548.492004F, -358.544006F), new Vector2(548.492004F, -356.864014F)); + builder.AddCubicBezier(new Vector2(548.492004F, -355.208008F), new Vector2(548.882019F, -353.701996F), new Vector2(549.661987F, -352.346008F)); + builder.AddCubicBezier(new Vector2(550.442017F, -350.98999F), new Vector2(551.51001F, -349.915985F), new Vector2(552.866028F, -349.123993F)); + builder.AddCubicBezier(new Vector2(554.221985F, -348.332001F), new Vector2(555.73999F, -347.936005F), new Vector2(557.419983F, -347.936005F)); + builder.AddCubicBezier(new Vector2(558.73999F, -347.936005F), new Vector2(559.969971F, -348.187988F), new Vector2(561.109985F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1410() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(533.119995F, -348.29599F)); + builder.AddLine(new Vector2(533.119995F, -365.395996F)); + builder.AddLine(new Vector2(529.880005F, -365.395996F)); + builder.AddLine(new Vector2(529.880005F, -348.29599F)); + builder.AddLine(new Vector2(533.119995F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(545.216003F, -348.29599F)); + builder.AddLine(new Vector2(545.216003F, -358.915985F)); + builder.AddCubicBezier(new Vector2(545.216003F, -360.09201F), new Vector2(544.927979F, -361.201996F), new Vector2(544.35199F, -362.246002F)); + builder.AddCubicBezier(new Vector2(543.776001F, -363.290009F), new Vector2(542.98999F, -364.135986F), new Vector2(541.994019F, -364.783997F)); + builder.AddCubicBezier(new Vector2(540.997986F, -365.432007F), new Vector2(539.85199F, -365.756012F), new Vector2(538.55603F, -365.756012F)); + builder.AddCubicBezier(new Vector2(537.26001F, -365.756012F), new Vector2(536.096008F, -365.462006F), new Vector2(535.064026F, -364.873993F)); + builder.AddCubicBezier(new Vector2(534.031982F, -364.286011F), new Vector2(533.228027F, -363.488007F), new Vector2(532.651978F, -362.480011F)); + builder.AddCubicBezier(new Vector2(532.075989F, -361.471985F), new Vector2(531.788025F, -360.320007F), new Vector2(531.788025F, -359.023987F)); + builder.AddLine(new Vector2(533.119995F, -358.268005F)); + builder.AddCubicBezier(new Vector2(533.119995F, -359.131989F), new Vector2(533.312012F, -359.899994F), new Vector2(533.695984F, -360.571991F)); + builder.AddCubicBezier(new Vector2(534.080017F, -361.243988F), new Vector2(534.607971F, -361.772003F), new Vector2(535.280029F, -362.156006F)); + builder.AddCubicBezier(new Vector2(535.952026F, -362.540009F), new Vector2(536.719971F, -362.731995F), new Vector2(537.583984F, -362.731995F)); + builder.AddCubicBezier(new Vector2(538.880005F, -362.731995F), new Vector2(539.929993F, -362.312012F), new Vector2(540.734009F, -361.471985F)); + builder.AddCubicBezier(new Vector2(541.538025F, -360.631989F), new Vector2(541.940002F, -359.563995F), new Vector2(541.940002F, -358.268005F)); + builder.AddLine(new Vector2(541.940002F, -348.29599F)); + builder.AddLine(new Vector2(545.216003F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1411() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(522.283997F, -348.691986F)); + builder.AddCubicBezier(new Vector2(523.460022F, -349.196014F), new Vector2(524.468018F, -349.928009F), new Vector2(525.307983F, -350.888F)); + builder.AddLine(new Vector2(523.219971F, -353.011993F)); + builder.AddCubicBezier(new Vector2(522.643982F, -352.339996F), new Vector2(521.953979F, -351.835999F), new Vector2(521.150024F, -351.5F)); + builder.AddCubicBezier(new Vector2(520.346008F, -351.164001F), new Vector2(519.463989F, -350.996002F), new Vector2(518.504028F, -350.996002F)); + builder.AddCubicBezier(new Vector2(517.35199F, -350.996002F), new Vector2(516.33197F, -351.242004F), new Vector2(515.44397F, -351.734009F)); + builder.AddCubicBezier(new Vector2(514.55603F, -352.226013F), new Vector2(513.872009F, -352.921997F), new Vector2(513.392029F, -353.821991F)); + builder.AddCubicBezier(new Vector2(512.911987F, -354.721985F), new Vector2(512.671997F, -355.772003F), new Vector2(512.671997F, -356.971985F)); + builder.AddCubicBezier(new Vector2(512.671997F, -358.14801F), new Vector2(512.900024F, -359.167999F), new Vector2(513.356018F, -360.032013F)); + builder.AddCubicBezier(new Vector2(513.812012F, -360.895996F), new Vector2(514.460022F, -361.567993F), new Vector2(515.299988F, -362.048004F)); + builder.AddCubicBezier(new Vector2(516.140015F, -362.528015F), new Vector2(517.112F, -362.768005F), new Vector2(518.216003F, -362.768005F)); + builder.AddCubicBezier(new Vector2(519.271973F, -362.768005F), new Vector2(520.171997F, -362.54599F), new Vector2(520.916016F, -362.10199F)); + builder.AddCubicBezier(new Vector2(521.659973F, -361.65799F), new Vector2(522.236023F, -361.033997F), new Vector2(522.643982F, -360.230011F)); + builder.AddCubicBezier(new Vector2(523.052002F, -359.425995F), new Vector2(523.255981F, -358.447998F), new Vector2(523.255981F, -357.29599F)); + builder.AddLine(new Vector2(524.44397F, -358.339996F)); + builder.AddLine(new Vector2(511.735992F, -358.339996F)); + builder.AddLine(new Vector2(511.735992F, -355.640015F)); + builder.AddLine(new Vector2(526.171997F, -355.640015F)); + builder.AddCubicBezier(new Vector2(526.244019F, -355.976013F), new Vector2(526.291992F, -356.282013F), new Vector2(526.315979F, -356.558014F)); + builder.AddCubicBezier(new Vector2(526.340027F, -356.834015F), new Vector2(526.35199F, -357.09201F), new Vector2(526.35199F, -357.332001F)); + builder.AddCubicBezier(new Vector2(526.35199F, -358.963989F), new Vector2(526.01001F, -360.415985F), new Vector2(525.325989F, -361.687988F)); + builder.AddCubicBezier(new Vector2(524.642029F, -362.959991F), new Vector2(523.687988F, -363.955994F), new Vector2(522.463989F, -364.675995F)); + builder.AddCubicBezier(new Vector2(521.23999F, -365.395996F), new Vector2(519.848022F, -365.756012F), new Vector2(518.288025F, -365.756012F)); + builder.AddCubicBezier(new Vector2(516.632019F, -365.756012F), new Vector2(515.138F, -365.365997F), new Vector2(513.80603F, -364.585999F)); + builder.AddCubicBezier(new Vector2(512.473999F, -363.806F), new Vector2(511.417999F, -362.743988F), new Vector2(510.638F, -361.399994F)); + builder.AddCubicBezier(new Vector2(509.858002F, -360.056F), new Vector2(509.467987F, -358.544006F), new Vector2(509.467987F, -356.864014F)); + builder.AddCubicBezier(new Vector2(509.467987F, -355.160004F), new Vector2(509.864014F, -353.635986F), new Vector2(510.656006F, -352.291992F)); + builder.AddCubicBezier(new Vector2(511.447998F, -350.947998F), new Vector2(512.521973F, -349.885986F), new Vector2(513.877991F, -349.105988F)); + builder.AddCubicBezier(new Vector2(515.234009F, -348.325989F), new Vector2(516.776001F, -347.936005F), new Vector2(518.504028F, -347.936005F)); + builder.AddCubicBezier(new Vector2(519.848022F, -347.936005F), new Vector2(521.107971F, -348.187988F), new Vector2(522.283997F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1412() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(505.832001F, -348.29599F)); + builder.AddLine(new Vector2(505.832001F, -374F)); + builder.AddLine(new Vector2(502.59201F, -374F)); + builder.AddLine(new Vector2(502.59201F, -348.29599F)); + builder.AddLine(new Vector2(505.832001F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1413() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(487.18399F, -351.824005F)); + builder.AddCubicBezier(new Vector2(486.343994F, -352.328003F), new Vector2(485.68399F, -353.018005F), new Vector2(485.20401F, -353.894012F)); + builder.AddCubicBezier(new Vector2(484.723999F, -354.769989F), new Vector2(484.484009F, -355.772003F), new Vector2(484.484009F, -356.899994F)); + builder.AddCubicBezier(new Vector2(484.484009F, -358.003998F), new Vector2(484.723999F, -358.988007F), new Vector2(485.20401F, -359.85199F)); + builder.AddCubicBezier(new Vector2(485.68399F, -360.716003F), new Vector2(486.343994F, -361.394012F), new Vector2(487.18399F, -361.885986F)); + builder.AddCubicBezier(new Vector2(488.023987F, -362.377991F), new Vector2(488.971985F, -362.623993F), new Vector2(490.028015F, -362.623993F)); + builder.AddCubicBezier(new Vector2(491.131989F, -362.623993F), new Vector2(492.097992F, -362.377991F), new Vector2(492.925995F, -361.885986F)); + builder.AddCubicBezier(new Vector2(493.753998F, -361.394012F), new Vector2(494.414001F, -360.716003F), new Vector2(494.906006F, -359.85199F)); + builder.AddCubicBezier(new Vector2(495.39801F, -358.988007F), new Vector2(495.644012F, -358.003998F), new Vector2(495.644012F, -356.899994F)); + builder.AddCubicBezier(new Vector2(495.644012F, -355.772003F), new Vector2(495.403992F, -354.769989F), new Vector2(494.924011F, -353.894012F)); + builder.AddCubicBezier(new Vector2(494.444F, -353.018005F), new Vector2(493.783997F, -352.328003F), new Vector2(492.944F, -351.824005F)); + builder.AddCubicBezier(new Vector2(492.104004F, -351.320007F), new Vector2(491.131989F, -351.067993F), new Vector2(490.028015F, -351.067993F)); + builder.AddCubicBezier(new Vector2(488.971985F, -351.067993F), new Vector2(488.023987F, -351.320007F), new Vector2(487.18399F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(494.582001F, -349.123993F)); + builder.AddCubicBezier(new Vector2(495.937988F, -349.915985F), new Vector2(497.011993F, -350.98999F), new Vector2(497.803986F, -352.346008F)); + builder.AddCubicBezier(new Vector2(498.596008F, -353.701996F), new Vector2(498.992004F, -355.220001F), new Vector2(498.992004F, -356.899994F)); + builder.AddCubicBezier(new Vector2(498.992004F, -358.556F), new Vector2(498.596008F, -360.056F), new Vector2(497.803986F, -361.399994F)); + builder.AddCubicBezier(new Vector2(497.011993F, -362.743988F), new Vector2(495.937988F, -363.806F), new Vector2(494.582001F, -364.585999F)); + builder.AddCubicBezier(new Vector2(493.226013F, -365.365997F), new Vector2(491.708008F, -365.756012F), new Vector2(490.028015F, -365.756012F)); + builder.AddCubicBezier(new Vector2(488.372009F, -365.756012F), new Vector2(486.872009F, -365.359985F), new Vector2(485.528015F, -364.567993F)); + builder.AddCubicBezier(new Vector2(484.18399F, -363.776001F), new Vector2(483.115997F, -362.713989F), new Vector2(482.324005F, -361.381989F)); + builder.AddCubicBezier(new Vector2(481.532013F, -360.049988F), new Vector2(481.135986F, -358.556F), new Vector2(481.135986F, -356.899994F)); + builder.AddCubicBezier(new Vector2(481.135986F, -355.220001F), new Vector2(481.532013F, -353.701996F), new Vector2(482.324005F, -352.346008F)); + builder.AddCubicBezier(new Vector2(483.115997F, -350.98999F), new Vector2(484.18399F, -349.915985F), new Vector2(485.528015F, -349.123993F)); + builder.AddCubicBezier(new Vector2(486.872009F, -348.332001F), new Vector2(488.372009F, -347.936005F), new Vector2(490.028015F, -347.936005F)); + builder.AddCubicBezier(new Vector2(491.708008F, -347.936005F), new Vector2(493.226013F, -348.332001F), new Vector2(494.582001F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1414() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(477.320007F, -369.410004F)); + builder.AddCubicBezier(new Vector2(477.70401F, -369.806F), new Vector2(477.895996F, -370.303986F), new Vector2(477.895996F, -370.903992F)); + builder.AddCubicBezier(new Vector2(477.895996F, -371.480011F), new Vector2(477.70401F, -371.966003F), new Vector2(477.320007F, -372.362F)); + builder.AddCubicBezier(new Vector2(476.936005F, -372.757996F), new Vector2(476.444F, -372.955994F), new Vector2(475.843994F, -372.955994F)); + builder.AddCubicBezier(new Vector2(475.243988F, -372.955994F), new Vector2(474.752014F, -372.757996F), new Vector2(474.368011F, -372.362F)); + builder.AddCubicBezier(new Vector2(473.984009F, -371.966003F), new Vector2(473.791992F, -371.480011F), new Vector2(473.791992F, -370.903992F)); + builder.AddCubicBezier(new Vector2(473.791992F, -370.303986F), new Vector2(473.984009F, -369.806F), new Vector2(474.368011F, -369.410004F)); + builder.AddCubicBezier(new Vector2(474.752014F, -369.014008F), new Vector2(475.243988F, -368.81601F), new Vector2(475.843994F, -368.81601F)); + builder.AddCubicBezier(new Vector2(476.444F, -368.81601F), new Vector2(476.936005F, -369.014008F), new Vector2(477.320007F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(477.463989F, -348.29599F)); + builder.AddLine(new Vector2(477.463989F, -365.395996F)); + builder.AddLine(new Vector2(474.187988F, -365.395996F)); + builder.AddLine(new Vector2(474.187988F, -348.29599F)); + builder.AddLine(new Vector2(477.463989F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1415() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(463.567993F, -348.29599F)); + builder.AddLine(new Vector2(471.415985F, -365.395996F)); + builder.AddLine(new Vector2(467.959991F, -365.395996F)); + builder.AddLine(new Vector2(461.623993F, -350.959991F)); + builder.AddLine(new Vector2(463.712006F, -350.959991F)); + builder.AddLine(new Vector2(457.411987F, -365.395996F)); + builder.AddLine(new Vector2(453.812012F, -365.395996F)); + builder.AddLine(new Vector2(461.660004F, -348.29599F)); + builder.AddLine(new Vector2(463.567993F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1416() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(431.85199F, -348.29599F)); + builder.AddLine(new Vector2(431.85199F, -374F)); + builder.AddLine(new Vector2(428.612F, -374F)); + builder.AddLine(new Vector2(428.612F, -348.29599F)); + builder.AddLine(new Vector2(431.85199F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(443.947998F, -348.29599F)); + builder.AddLine(new Vector2(443.947998F, -358.915985F)); + builder.AddCubicBezier(new Vector2(443.947998F, -360.26001F), new Vector2(443.660004F, -361.447998F), new Vector2(443.084015F, -362.480011F)); + builder.AddCubicBezier(new Vector2(442.507996F, -363.511993F), new Vector2(441.721985F, -364.31601F), new Vector2(440.726013F, -364.891998F)); + builder.AddCubicBezier(new Vector2(439.730011F, -365.467987F), new Vector2(438.584015F, -365.756012F), new Vector2(437.287994F, -365.756012F)); + builder.AddCubicBezier(new Vector2(435.992004F, -365.756012F), new Vector2(434.828003F, -365.462006F), new Vector2(433.79599F, -364.873993F)); + builder.AddCubicBezier(new Vector2(432.764008F, -364.286011F), new Vector2(431.959991F, -363.488007F), new Vector2(431.384003F, -362.480011F)); + builder.AddCubicBezier(new Vector2(430.808014F, -361.471985F), new Vector2(430.519989F, -360.320007F), new Vector2(430.519989F, -359.023987F)); + builder.AddLine(new Vector2(431.85199F, -358.268005F)); + builder.AddCubicBezier(new Vector2(431.85199F, -359.131989F), new Vector2(432.044006F, -359.899994F), new Vector2(432.428009F, -360.571991F)); + builder.AddCubicBezier(new Vector2(432.812012F, -361.243988F), new Vector2(433.339996F, -361.772003F), new Vector2(434.011993F, -362.156006F)); + builder.AddCubicBezier(new Vector2(434.68399F, -362.540009F), new Vector2(435.451996F, -362.731995F), new Vector2(436.31601F, -362.731995F)); + builder.AddCubicBezier(new Vector2(437.612F, -362.731995F), new Vector2(438.661987F, -362.312012F), new Vector2(439.466003F, -361.471985F)); + builder.AddCubicBezier(new Vector2(440.269989F, -360.631989F), new Vector2(440.671997F, -359.563995F), new Vector2(440.671997F, -358.268005F)); + builder.AddLine(new Vector2(440.671997F, -348.29599F)); + builder.AddLine(new Vector2(443.947998F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1417() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(425.444F, -362.444F)); + builder.AddLine(new Vector2(425.444F, -365.395996F)); + builder.AddLine(new Vector2(413.779999F, -365.395996F)); + builder.AddLine(new Vector2(413.779999F, -362.444F)); + builder.AddLine(new Vector2(425.444F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(421.231995F, -348.29599F)); + builder.AddLine(new Vector2(421.231995F, -372.559998F)); + builder.AddLine(new Vector2(417.992004F, -372.559998F)); + builder.AddLine(new Vector2(417.992004F, -348.29599F)); + builder.AddLine(new Vector2(421.231995F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1418() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(410.432007F, -369.410004F)); + builder.AddCubicBezier(new Vector2(410.81601F, -369.806F), new Vector2(411.007996F, -370.303986F), new Vector2(411.007996F, -370.903992F)); + builder.AddCubicBezier(new Vector2(411.007996F, -371.480011F), new Vector2(410.81601F, -371.966003F), new Vector2(410.432007F, -372.362F)); + builder.AddCubicBezier(new Vector2(410.048004F, -372.757996F), new Vector2(409.556F, -372.955994F), new Vector2(408.955994F, -372.955994F)); + builder.AddCubicBezier(new Vector2(408.355988F, -372.955994F), new Vector2(407.864014F, -372.757996F), new Vector2(407.480011F, -372.362F)); + builder.AddCubicBezier(new Vector2(407.096008F, -371.966003F), new Vector2(406.903992F, -371.480011F), new Vector2(406.903992F, -370.903992F)); + builder.AddCubicBezier(new Vector2(406.903992F, -370.303986F), new Vector2(407.096008F, -369.806F), new Vector2(407.480011F, -369.410004F)); + builder.AddCubicBezier(new Vector2(407.864014F, -369.014008F), new Vector2(408.355988F, -368.81601F), new Vector2(408.955994F, -368.81601F)); + builder.AddCubicBezier(new Vector2(409.556F, -368.81601F), new Vector2(410.048004F, -369.014008F), new Vector2(410.432007F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(410.575989F, -348.29599F)); + builder.AddLine(new Vector2(410.575989F, -365.395996F)); + builder.AddLine(new Vector2(407.299988F, -365.395996F)); + builder.AddLine(new Vector2(407.299988F, -348.29599F)); + builder.AddLine(new Vector2(410.575989F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1419() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(387.355988F, -348.29599F)); + builder.AddLine(new Vector2(392.324005F, -361.18399F)); + builder.AddLine(new Vector2(391.135986F, -361.18399F)); + builder.AddLine(new Vector2(396.067993F, -348.29599F)); + builder.AddLine(new Vector2(397.976013F, -348.29599F)); + builder.AddLine(new Vector2(404.708008F, -365.395996F)); + builder.AddLine(new Vector2(401.324005F, -365.395996F)); + builder.AddLine(new Vector2(396.428009F, -352.075989F)); + builder.AddLine(new Vector2(397.507996F, -352.075989F)); + builder.AddLine(new Vector2(392.64801F, -365.395996F)); + builder.AddLine(new Vector2(390.776001F, -365.395996F)); + builder.AddLine(new Vector2(385.915985F, -352.075989F)); + builder.AddLine(new Vector2(386.996002F, -352.075989F)); + builder.AddLine(new Vector2(382.100006F, -365.395996F)); + builder.AddLine(new Vector2(378.716003F, -365.395996F)); + builder.AddLine(new Vector2(385.447998F, -348.29599F)); + builder.AddLine(new Vector2(387.355988F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1420() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(367.790009F, -349.339996F)); + builder.AddCubicBezier(new Vector2(368.929993F, -350.276001F), new Vector2(369.5F, -351.548004F), new Vector2(369.5F, -353.156006F)); + builder.AddCubicBezier(new Vector2(369.5F, -354.212006F), new Vector2(369.278015F, -355.063995F), new Vector2(368.834015F, -355.712006F)); + builder.AddCubicBezier(new Vector2(368.390015F, -356.359985F), new Vector2(367.820007F, -356.876007F), new Vector2(367.123993F, -357.26001F)); + builder.AddCubicBezier(new Vector2(366.428009F, -357.644012F), new Vector2(365.696014F, -357.950012F), new Vector2(364.928009F, -358.178009F)); + builder.AddCubicBezier(new Vector2(364.160004F, -358.406006F), new Vector2(363.421997F, -358.627991F), new Vector2(362.713989F, -358.843994F)); + builder.AddCubicBezier(new Vector2(362.006012F, -359.059998F), new Vector2(361.436005F, -359.324005F), new Vector2(361.003998F, -359.635986F)); + builder.AddCubicBezier(new Vector2(360.571991F, -359.947998F), new Vector2(360.355988F, -360.391998F), new Vector2(360.355988F, -360.967987F)); + builder.AddCubicBezier(new Vector2(360.355988F, -361.519989F), new Vector2(360.60199F, -361.963989F), new Vector2(361.093994F, -362.299988F)); + builder.AddCubicBezier(new Vector2(361.585999F, -362.635986F), new Vector2(362.299988F, -362.803986F), new Vector2(363.235992F, -362.803986F)); + builder.AddCubicBezier(new Vector2(364.123993F, -362.803986F), new Vector2(364.915985F, -362.635986F), new Vector2(365.612F, -362.299988F)); + builder.AddCubicBezier(new Vector2(366.308014F, -361.963989F), new Vector2(366.90799F, -361.484009F), new Vector2(367.411987F, -360.859985F)); + builder.AddLine(new Vector2(369.5F, -362.947998F)); + builder.AddCubicBezier(new Vector2(368.828003F, -363.884003F), new Vector2(367.970001F, -364.585999F), new Vector2(366.925995F, -365.053986F)); + builder.AddCubicBezier(new Vector2(365.881989F, -365.522003F), new Vector2(364.687988F, -365.756012F), new Vector2(363.343994F, -365.756012F)); + builder.AddCubicBezier(new Vector2(362.071991F, -365.756012F), new Vector2(360.980011F, -365.552002F), new Vector2(360.067993F, -365.144012F)); + builder.AddCubicBezier(new Vector2(359.156006F, -364.735992F), new Vector2(358.45401F, -364.153992F), new Vector2(357.962006F, -363.39801F)); + builder.AddCubicBezier(new Vector2(357.470001F, -362.641998F), new Vector2(357.223999F, -361.747986F), new Vector2(357.223999F, -360.716003F)); + builder.AddCubicBezier(new Vector2(357.223999F, -359.68399F), new Vector2(357.446014F, -358.850006F), new Vector2(357.890015F, -358.213989F)); + builder.AddCubicBezier(new Vector2(358.334015F, -357.578003F), new Vector2(358.903992F, -357.079987F), new Vector2(359.600006F, -356.720001F)); + builder.AddCubicBezier(new Vector2(360.29599F, -356.359985F), new Vector2(361.033997F, -356.071991F), new Vector2(361.813995F, -355.855988F)); + builder.AddCubicBezier(new Vector2(362.593994F, -355.640015F), new Vector2(363.332001F, -355.417999F), new Vector2(364.028015F, -355.190002F)); + builder.AddCubicBezier(new Vector2(364.723999F, -354.962006F), new Vector2(365.294006F, -354.674011F), new Vector2(365.738007F, -354.325989F)); + builder.AddCubicBezier(new Vector2(366.182007F, -353.977997F), new Vector2(366.403992F, -353.492004F), new Vector2(366.403992F, -352.868011F)); + builder.AddCubicBezier(new Vector2(366.403992F, -352.243988F), new Vector2(366.127991F, -351.757996F), new Vector2(365.575989F, -351.410004F)); + builder.AddCubicBezier(new Vector2(365.023987F, -351.062012F), new Vector2(364.243988F, -350.888F), new Vector2(363.235992F, -350.888F)); + builder.AddCubicBezier(new Vector2(362.227997F, -350.888F), new Vector2(361.31601F, -351.074005F), new Vector2(360.5F, -351.446014F)); + builder.AddCubicBezier(new Vector2(359.68399F, -351.817993F), new Vector2(358.963989F, -352.388F), new Vector2(358.339996F, -353.156006F)); + builder.AddLine(new Vector2(356.252014F, -351.067993F)); + builder.AddCubicBezier(new Vector2(356.779999F, -350.420013F), new Vector2(357.39801F, -349.862F), new Vector2(358.105988F, -349.394012F)); + builder.AddCubicBezier(new Vector2(358.813995F, -348.925995F), new Vector2(359.600006F, -348.56601F), new Vector2(360.463989F, -348.313995F)); + builder.AddCubicBezier(new Vector2(361.328003F, -348.062012F), new Vector2(362.23999F, -347.936005F), new Vector2(363.200012F, -347.936005F)); + builder.AddCubicBezier(new Vector2(365.119995F, -347.936005F), new Vector2(366.649994F, -348.403992F), new Vector2(367.790009F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1421() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(348.079987F, -361.544006F)); + builder.AddCubicBezier(new Vector2(348.847992F, -362.312012F), new Vector2(349.832001F, -362.696014F), new Vector2(351.032013F, -362.696014F)); + builder.AddCubicBezier(new Vector2(351.608002F, -362.696014F), new Vector2(352.112F, -362.612F), new Vector2(352.544006F, -362.444F)); + builder.AddCubicBezier(new Vector2(352.976013F, -362.276001F), new Vector2(353.372009F, -362F), new Vector2(353.731995F, -361.615997F)); + builder.AddLine(new Vector2(355.855988F, -363.812012F)); + builder.AddCubicBezier(new Vector2(355.256012F, -364.507996F), new Vector2(354.608002F, -365.006012F), new Vector2(353.911987F, -365.306F)); + builder.AddCubicBezier(new Vector2(353.216003F, -365.605988F), new Vector2(352.436005F, -365.756012F), new Vector2(351.571991F, -365.756012F)); + builder.AddCubicBezier(new Vector2(349.675995F, -365.756012F), new Vector2(348.223999F, -365.108002F), new Vector2(347.216003F, -363.812012F)); + builder.AddCubicBezier(new Vector2(346.208008F, -362.515991F), new Vector2(345.70401F, -360.776001F), new Vector2(345.70401F, -358.59201F)); + builder.AddLine(new Vector2(346.928009F, -358.015991F)); + builder.AddCubicBezier(new Vector2(346.928009F, -359.600006F), new Vector2(347.312012F, -360.776001F), new Vector2(348.079987F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(346.928009F, -348.29599F)); + builder.AddLine(new Vector2(346.928009F, -365.395996F)); + builder.AddLine(new Vector2(343.687988F, -365.395996F)); + builder.AddLine(new Vector2(343.687988F, -348.29599F)); + builder.AddLine(new Vector2(346.928009F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1422() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(336.09201F, -348.691986F)); + builder.AddCubicBezier(new Vector2(337.268005F, -349.196014F), new Vector2(338.276001F, -349.928009F), new Vector2(339.115997F, -350.888F)); + builder.AddLine(new Vector2(337.028015F, -353.011993F)); + builder.AddCubicBezier(new Vector2(336.451996F, -352.339996F), new Vector2(335.761993F, -351.835999F), new Vector2(334.958008F, -351.5F)); + builder.AddCubicBezier(new Vector2(334.153992F, -351.164001F), new Vector2(333.272003F, -350.996002F), new Vector2(332.312012F, -350.996002F)); + builder.AddCubicBezier(new Vector2(331.160004F, -350.996002F), new Vector2(330.140015F, -351.242004F), new Vector2(329.252014F, -351.734009F)); + builder.AddCubicBezier(new Vector2(328.364014F, -352.226013F), new Vector2(327.679993F, -352.921997F), new Vector2(327.200012F, -353.821991F)); + builder.AddCubicBezier(new Vector2(326.720001F, -354.721985F), new Vector2(326.480011F, -355.772003F), new Vector2(326.480011F, -356.971985F)); + builder.AddCubicBezier(new Vector2(326.480011F, -358.14801F), new Vector2(326.708008F, -359.167999F), new Vector2(327.164001F, -360.032013F)); + builder.AddCubicBezier(new Vector2(327.619995F, -360.895996F), new Vector2(328.268005F, -361.567993F), new Vector2(329.108002F, -362.048004F)); + builder.AddCubicBezier(new Vector2(329.947998F, -362.528015F), new Vector2(330.920013F, -362.768005F), new Vector2(332.023987F, -362.768005F)); + builder.AddCubicBezier(new Vector2(333.079987F, -362.768005F), new Vector2(333.980011F, -362.54599F), new Vector2(334.723999F, -362.10199F)); + builder.AddCubicBezier(new Vector2(335.467987F, -361.65799F), new Vector2(336.044006F, -361.033997F), new Vector2(336.451996F, -360.230011F)); + builder.AddCubicBezier(new Vector2(336.859985F, -359.425995F), new Vector2(337.063995F, -358.447998F), new Vector2(337.063995F, -357.29599F)); + builder.AddLine(new Vector2(338.252014F, -358.339996F)); + builder.AddLine(new Vector2(325.544006F, -358.339996F)); + builder.AddLine(new Vector2(325.544006F, -355.640015F)); + builder.AddLine(new Vector2(339.980011F, -355.640015F)); + builder.AddCubicBezier(new Vector2(340.052002F, -355.976013F), new Vector2(340.100006F, -356.282013F), new Vector2(340.123993F, -356.558014F)); + builder.AddCubicBezier(new Vector2(340.14801F, -356.834015F), new Vector2(340.160004F, -357.09201F), new Vector2(340.160004F, -357.332001F)); + builder.AddCubicBezier(new Vector2(340.160004F, -358.963989F), new Vector2(339.817993F, -360.415985F), new Vector2(339.134003F, -361.687988F)); + builder.AddCubicBezier(new Vector2(338.450012F, -362.959991F), new Vector2(337.496002F, -363.955994F), new Vector2(336.272003F, -364.675995F)); + builder.AddCubicBezier(new Vector2(335.048004F, -365.395996F), new Vector2(333.656006F, -365.756012F), new Vector2(332.096008F, -365.756012F)); + builder.AddCubicBezier(new Vector2(330.440002F, -365.756012F), new Vector2(328.946014F, -365.365997F), new Vector2(327.614014F, -364.585999F)); + builder.AddCubicBezier(new Vector2(326.282013F, -363.806F), new Vector2(325.226013F, -362.743988F), new Vector2(324.446014F, -361.399994F)); + builder.AddCubicBezier(new Vector2(323.665985F, -360.056F), new Vector2(323.276001F, -358.544006F), new Vector2(323.276001F, -356.864014F)); + builder.AddCubicBezier(new Vector2(323.276001F, -355.160004F), new Vector2(323.671997F, -353.635986F), new Vector2(324.463989F, -352.291992F)); + builder.AddCubicBezier(new Vector2(325.256012F, -350.947998F), new Vector2(326.329987F, -349.885986F), new Vector2(327.686005F, -349.105988F)); + builder.AddCubicBezier(new Vector2(329.041992F, -348.325989F), new Vector2(330.584015F, -347.936005F), new Vector2(332.312012F, -347.936005F)); + builder.AddCubicBezier(new Vector2(333.656006F, -347.936005F), new Vector2(334.915985F, -348.187988F), new Vector2(336.09201F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1423() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(321.764008F, -362.444F)); + builder.AddLine(new Vector2(321.764008F, -365.395996F)); + builder.AddLine(new Vector2(310.100006F, -365.395996F)); + builder.AddLine(new Vector2(310.100006F, -362.444F)); + builder.AddLine(new Vector2(321.764008F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(317.552002F, -348.29599F)); + builder.AddLine(new Vector2(317.552002F, -372.559998F)); + builder.AddLine(new Vector2(314.312012F, -372.559998F)); + builder.AddLine(new Vector2(314.312012F, -348.29599F)); + builder.AddLine(new Vector2(317.552002F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1424() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(306.338013F, -349.339996F)); + builder.AddCubicBezier(new Vector2(307.477997F, -350.276001F), new Vector2(308.048004F, -351.548004F), new Vector2(308.048004F, -353.156006F)); + builder.AddCubicBezier(new Vector2(308.048004F, -354.212006F), new Vector2(307.825989F, -355.063995F), new Vector2(307.381989F, -355.712006F)); + builder.AddCubicBezier(new Vector2(306.937988F, -356.359985F), new Vector2(306.368011F, -356.876007F), new Vector2(305.671997F, -357.26001F)); + builder.AddCubicBezier(new Vector2(304.976013F, -357.644012F), new Vector2(304.243988F, -357.950012F), new Vector2(303.476013F, -358.178009F)); + builder.AddCubicBezier(new Vector2(302.708008F, -358.406006F), new Vector2(301.970001F, -358.627991F), new Vector2(301.261993F, -358.843994F)); + builder.AddCubicBezier(new Vector2(300.553986F, -359.059998F), new Vector2(299.984009F, -359.324005F), new Vector2(299.552002F, -359.635986F)); + builder.AddCubicBezier(new Vector2(299.119995F, -359.947998F), new Vector2(298.903992F, -360.391998F), new Vector2(298.903992F, -360.967987F)); + builder.AddCubicBezier(new Vector2(298.903992F, -361.519989F), new Vector2(299.149994F, -361.963989F), new Vector2(299.641998F, -362.299988F)); + builder.AddCubicBezier(new Vector2(300.134003F, -362.635986F), new Vector2(300.847992F, -362.803986F), new Vector2(301.783997F, -362.803986F)); + builder.AddCubicBezier(new Vector2(302.671997F, -362.803986F), new Vector2(303.463989F, -362.635986F), new Vector2(304.160004F, -362.299988F)); + builder.AddCubicBezier(new Vector2(304.855988F, -361.963989F), new Vector2(305.455994F, -361.484009F), new Vector2(305.959991F, -360.859985F)); + builder.AddLine(new Vector2(308.048004F, -362.947998F)); + builder.AddCubicBezier(new Vector2(307.376007F, -363.884003F), new Vector2(306.518005F, -364.585999F), new Vector2(305.473999F, -365.053986F)); + builder.AddCubicBezier(new Vector2(304.429993F, -365.522003F), new Vector2(303.235992F, -365.756012F), new Vector2(301.891998F, -365.756012F)); + builder.AddCubicBezier(new Vector2(300.619995F, -365.756012F), new Vector2(299.528015F, -365.552002F), new Vector2(298.615997F, -365.144012F)); + builder.AddCubicBezier(new Vector2(297.70401F, -364.735992F), new Vector2(297.002014F, -364.153992F), new Vector2(296.51001F, -363.39801F)); + builder.AddCubicBezier(new Vector2(296.018005F, -362.641998F), new Vector2(295.772003F, -361.747986F), new Vector2(295.772003F, -360.716003F)); + builder.AddCubicBezier(new Vector2(295.772003F, -359.68399F), new Vector2(295.993988F, -358.850006F), new Vector2(296.437988F, -358.213989F)); + builder.AddCubicBezier(new Vector2(296.881989F, -357.578003F), new Vector2(297.451996F, -357.079987F), new Vector2(298.14801F, -356.720001F)); + builder.AddCubicBezier(new Vector2(298.843994F, -356.359985F), new Vector2(299.582001F, -356.071991F), new Vector2(300.362F, -355.855988F)); + builder.AddCubicBezier(new Vector2(301.141998F, -355.640015F), new Vector2(301.880005F, -355.417999F), new Vector2(302.575989F, -355.190002F)); + builder.AddCubicBezier(new Vector2(303.272003F, -354.962006F), new Vector2(303.84201F, -354.674011F), new Vector2(304.286011F, -354.325989F)); + builder.AddCubicBezier(new Vector2(304.730011F, -353.977997F), new Vector2(304.951996F, -353.492004F), new Vector2(304.951996F, -352.868011F)); + builder.AddCubicBezier(new Vector2(304.951996F, -352.243988F), new Vector2(304.675995F, -351.757996F), new Vector2(304.123993F, -351.410004F)); + builder.AddCubicBezier(new Vector2(303.571991F, -351.062012F), new Vector2(302.791992F, -350.888F), new Vector2(301.783997F, -350.888F)); + builder.AddCubicBezier(new Vector2(300.776001F, -350.888F), new Vector2(299.864014F, -351.074005F), new Vector2(299.048004F, -351.446014F)); + builder.AddCubicBezier(new Vector2(298.231995F, -351.817993F), new Vector2(297.511993F, -352.388F), new Vector2(296.888F, -353.156006F)); + builder.AddLine(new Vector2(294.799988F, -351.067993F)); + builder.AddCubicBezier(new Vector2(295.328003F, -350.420013F), new Vector2(295.946014F, -349.862F), new Vector2(296.653992F, -349.394012F)); + builder.AddCubicBezier(new Vector2(297.362F, -348.925995F), new Vector2(298.14801F, -348.56601F), new Vector2(299.011993F, -348.313995F)); + builder.AddCubicBezier(new Vector2(299.876007F, -348.062012F), new Vector2(300.787994F, -347.936005F), new Vector2(301.747986F, -347.936005F)); + builder.AddCubicBezier(new Vector2(303.667999F, -347.936005F), new Vector2(305.197998F, -348.403992F), new Vector2(306.338013F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1425() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(288.716003F, -348.691986F)); + builder.AddCubicBezier(new Vector2(289.891998F, -349.196014F), new Vector2(290.899994F, -349.928009F), new Vector2(291.73999F, -350.888F)); + builder.AddLine(new Vector2(289.652008F, -353.011993F)); + builder.AddCubicBezier(new Vector2(289.075989F, -352.339996F), new Vector2(288.385986F, -351.835999F), new Vector2(287.582001F, -351.5F)); + builder.AddCubicBezier(new Vector2(286.778015F, -351.164001F), new Vector2(285.895996F, -350.996002F), new Vector2(284.936005F, -350.996002F)); + builder.AddCubicBezier(new Vector2(283.783997F, -350.996002F), new Vector2(282.764008F, -351.242004F), new Vector2(281.876007F, -351.734009F)); + builder.AddCubicBezier(new Vector2(280.988007F, -352.226013F), new Vector2(280.303986F, -352.921997F), new Vector2(279.824005F, -353.821991F)); + builder.AddCubicBezier(new Vector2(279.343994F, -354.721985F), new Vector2(279.104004F, -355.772003F), new Vector2(279.104004F, -356.971985F)); + builder.AddCubicBezier(new Vector2(279.104004F, -358.14801F), new Vector2(279.332001F, -359.167999F), new Vector2(279.787994F, -360.032013F)); + builder.AddCubicBezier(new Vector2(280.243988F, -360.895996F), new Vector2(280.891998F, -361.567993F), new Vector2(281.731995F, -362.048004F)); + builder.AddCubicBezier(new Vector2(282.571991F, -362.528015F), new Vector2(283.544006F, -362.768005F), new Vector2(284.64801F, -362.768005F)); + builder.AddCubicBezier(new Vector2(285.70401F, -362.768005F), new Vector2(286.604004F, -362.54599F), new Vector2(287.347992F, -362.10199F)); + builder.AddCubicBezier(new Vector2(288.09201F, -361.65799F), new Vector2(288.667999F, -361.033997F), new Vector2(289.075989F, -360.230011F)); + builder.AddCubicBezier(new Vector2(289.484009F, -359.425995F), new Vector2(289.687988F, -358.447998F), new Vector2(289.687988F, -357.29599F)); + builder.AddLine(new Vector2(290.876007F, -358.339996F)); + builder.AddLine(new Vector2(278.167999F, -358.339996F)); + builder.AddLine(new Vector2(278.167999F, -355.640015F)); + builder.AddLine(new Vector2(292.604004F, -355.640015F)); + builder.AddCubicBezier(new Vector2(292.675995F, -355.976013F), new Vector2(292.723999F, -356.282013F), new Vector2(292.747986F, -356.558014F)); + builder.AddCubicBezier(new Vector2(292.772003F, -356.834015F), new Vector2(292.783997F, -357.09201F), new Vector2(292.783997F, -357.332001F)); + builder.AddCubicBezier(new Vector2(292.783997F, -358.963989F), new Vector2(292.441986F, -360.415985F), new Vector2(291.757996F, -361.687988F)); + builder.AddCubicBezier(new Vector2(291.074005F, -362.959991F), new Vector2(290.119995F, -363.955994F), new Vector2(288.895996F, -364.675995F)); + builder.AddCubicBezier(new Vector2(287.671997F, -365.395996F), new Vector2(286.279999F, -365.756012F), new Vector2(284.720001F, -365.756012F)); + builder.AddCubicBezier(new Vector2(283.063995F, -365.756012F), new Vector2(281.570007F, -365.365997F), new Vector2(280.238007F, -364.585999F)); + builder.AddCubicBezier(new Vector2(278.906006F, -363.806F), new Vector2(277.850006F, -362.743988F), new Vector2(277.070007F, -361.399994F)); + builder.AddCubicBezier(new Vector2(276.290009F, -360.056F), new Vector2(275.899994F, -358.544006F), new Vector2(275.899994F, -356.864014F)); + builder.AddCubicBezier(new Vector2(275.899994F, -355.160004F), new Vector2(276.29599F, -353.635986F), new Vector2(277.088013F, -352.291992F)); + builder.AddCubicBezier(new Vector2(277.880005F, -350.947998F), new Vector2(278.95401F, -349.885986F), new Vector2(280.309998F, -349.105988F)); + builder.AddCubicBezier(new Vector2(281.665985F, -348.325989F), new Vector2(283.208008F, -347.936005F), new Vector2(284.936005F, -347.936005F)); + builder.AddCubicBezier(new Vector2(286.279999F, -347.936005F), new Vector2(287.540009F, -348.187988F), new Vector2(288.716003F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1426() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(274.388F, -362.444F)); + builder.AddLine(new Vector2(274.388F, -365.395996F)); + builder.AddLine(new Vector2(262.723999F, -365.395996F)); + builder.AddLine(new Vector2(262.723999F, -362.444F)); + builder.AddLine(new Vector2(274.388F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(270.175995F, -348.29599F)); + builder.AddLine(new Vector2(270.175995F, -372.559998F)); + builder.AddLine(new Vector2(266.936005F, -372.559998F)); + builder.AddLine(new Vector2(266.936005F, -348.29599F)); + builder.AddLine(new Vector2(270.175995F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1427() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(249.440002F, -351.824005F)); + builder.AddCubicBezier(new Vector2(248.600006F, -352.328003F), new Vector2(247.940002F, -353.018005F), new Vector2(247.460007F, -353.894012F)); + builder.AddCubicBezier(new Vector2(246.979996F, -354.769989F), new Vector2(246.740005F, -355.772003F), new Vector2(246.740005F, -356.899994F)); + builder.AddCubicBezier(new Vector2(246.740005F, -358.003998F), new Vector2(246.979996F, -358.988007F), new Vector2(247.460007F, -359.85199F)); + builder.AddCubicBezier(new Vector2(247.940002F, -360.716003F), new Vector2(248.600006F, -361.394012F), new Vector2(249.440002F, -361.885986F)); + builder.AddCubicBezier(new Vector2(250.279999F, -362.377991F), new Vector2(251.227997F, -362.623993F), new Vector2(252.283997F, -362.623993F)); + builder.AddCubicBezier(new Vector2(253.388F, -362.623993F), new Vector2(254.354004F, -362.377991F), new Vector2(255.182007F, -361.885986F)); + builder.AddCubicBezier(new Vector2(256.01001F, -361.394012F), new Vector2(256.670013F, -360.716003F), new Vector2(257.161987F, -359.85199F)); + builder.AddCubicBezier(new Vector2(257.653992F, -358.988007F), new Vector2(257.899994F, -358.003998F), new Vector2(257.899994F, -356.899994F)); + builder.AddCubicBezier(new Vector2(257.899994F, -355.772003F), new Vector2(257.660004F, -354.769989F), new Vector2(257.179993F, -353.894012F)); + builder.AddCubicBezier(new Vector2(256.700012F, -353.018005F), new Vector2(256.040009F, -352.328003F), new Vector2(255.199997F, -351.824005F)); + builder.AddCubicBezier(new Vector2(254.360001F, -351.320007F), new Vector2(253.388F, -351.067993F), new Vector2(252.283997F, -351.067993F)); + builder.AddCubicBezier(new Vector2(251.227997F, -351.067993F), new Vector2(250.279999F, -351.320007F), new Vector2(249.440002F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(256.838013F, -349.123993F)); + builder.AddCubicBezier(new Vector2(258.194F, -349.915985F), new Vector2(259.268005F, -350.98999F), new Vector2(260.059998F, -352.346008F)); + builder.AddCubicBezier(new Vector2(260.85199F, -353.701996F), new Vector2(261.247986F, -355.220001F), new Vector2(261.247986F, -356.899994F)); + builder.AddCubicBezier(new Vector2(261.247986F, -358.556F), new Vector2(260.85199F, -360.056F), new Vector2(260.059998F, -361.399994F)); + builder.AddCubicBezier(new Vector2(259.268005F, -362.743988F), new Vector2(258.194F, -363.806F), new Vector2(256.838013F, -364.585999F)); + builder.AddCubicBezier(new Vector2(255.481995F, -365.365997F), new Vector2(253.964005F, -365.756012F), new Vector2(252.283997F, -365.756012F)); + builder.AddCubicBezier(new Vector2(250.628006F, -365.756012F), new Vector2(249.128006F, -365.359985F), new Vector2(247.783997F, -364.567993F)); + builder.AddCubicBezier(new Vector2(246.440002F, -363.776001F), new Vector2(245.371994F, -362.713989F), new Vector2(244.580002F, -361.381989F)); + builder.AddCubicBezier(new Vector2(243.787994F, -360.049988F), new Vector2(243.391998F, -358.556F), new Vector2(243.391998F, -356.899994F)); + builder.AddCubicBezier(new Vector2(243.391998F, -355.220001F), new Vector2(243.787994F, -353.701996F), new Vector2(244.580002F, -352.346008F)); + builder.AddCubicBezier(new Vector2(245.371994F, -350.98999F), new Vector2(246.440002F, -349.915985F), new Vector2(247.783997F, -349.123993F)); + builder.AddCubicBezier(new Vector2(249.128006F, -348.332001F), new Vector2(250.628006F, -347.936005F), new Vector2(252.283997F, -347.936005F)); + builder.AddCubicBezier(new Vector2(253.964005F, -347.936005F), new Vector2(255.481995F, -348.332001F), new Vector2(256.838013F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1428() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(235.003998F, -361.544006F)); + builder.AddCubicBezier(new Vector2(235.772003F, -362.312012F), new Vector2(236.755997F, -362.696014F), new Vector2(237.955994F, -362.696014F)); + builder.AddCubicBezier(new Vector2(238.531998F, -362.696014F), new Vector2(239.035995F, -362.612F), new Vector2(239.468002F, -362.444F)); + builder.AddCubicBezier(new Vector2(239.899994F, -362.276001F), new Vector2(240.296005F, -362F), new Vector2(240.656006F, -361.615997F)); + builder.AddLine(new Vector2(242.779999F, -363.812012F)); + builder.AddCubicBezier(new Vector2(242.179993F, -364.507996F), new Vector2(241.531998F, -365.006012F), new Vector2(240.835999F, -365.306F)); + builder.AddCubicBezier(new Vector2(240.139999F, -365.605988F), new Vector2(239.360001F, -365.756012F), new Vector2(238.496002F, -365.756012F)); + builder.AddCubicBezier(new Vector2(236.600006F, -365.756012F), new Vector2(235.147995F, -365.108002F), new Vector2(234.139999F, -363.812012F)); + builder.AddCubicBezier(new Vector2(233.132004F, -362.515991F), new Vector2(232.628006F, -360.776001F), new Vector2(232.628006F, -358.59201F)); + builder.AddLine(new Vector2(233.852005F, -358.015991F)); + builder.AddCubicBezier(new Vector2(233.852005F, -359.600006F), new Vector2(234.235992F, -360.776001F), new Vector2(235.003998F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(233.852005F, -348.29599F)); + builder.AddLine(new Vector2(233.852005F, -365.395996F)); + builder.AddLine(new Vector2(230.612F, -365.395996F)); + builder.AddLine(new Vector2(230.612F, -348.29599F)); + builder.AddLine(new Vector2(233.852005F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1429() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(215.294006F, -351.752014F)); + builder.AddCubicBezier(new Vector2(214.466003F, -352.256012F), new Vector2(213.830002F, -352.946014F), new Vector2(213.386002F, -353.821991F)); + builder.AddCubicBezier(new Vector2(212.942001F, -354.697998F), new Vector2(212.720001F, -355.700012F), new Vector2(212.720001F, -356.828003F)); + builder.AddCubicBezier(new Vector2(212.720001F, -357.980011F), new Vector2(212.947998F, -358.993988F), new Vector2(213.404007F, -359.869995F)); + builder.AddCubicBezier(new Vector2(213.860001F, -360.746002F), new Vector2(214.496002F, -361.436005F), new Vector2(215.311996F, -361.940002F)); + builder.AddCubicBezier(new Vector2(216.128006F, -362.444F), new Vector2(217.063995F, -362.696014F), new Vector2(218.119995F, -362.696014F)); + builder.AddCubicBezier(new Vector2(219.199997F, -362.696014F), new Vector2(220.147995F, -362.444F), new Vector2(220.964005F, -361.940002F)); + builder.AddCubicBezier(new Vector2(221.779999F, -361.436005F), new Vector2(222.421997F, -360.746002F), new Vector2(222.889999F, -359.869995F)); + builder.AddCubicBezier(new Vector2(223.358002F, -358.993988F), new Vector2(223.591995F, -357.992004F), new Vector2(223.591995F, -356.864014F)); + builder.AddCubicBezier(new Vector2(223.591995F, -355.712006F), new Vector2(223.358002F, -354.697998F), new Vector2(222.889999F, -353.821991F)); + builder.AddCubicBezier(new Vector2(222.421997F, -352.946014F), new Vector2(221.779999F, -352.256012F), new Vector2(220.964005F, -351.752014F)); + builder.AddCubicBezier(new Vector2(220.147995F, -351.247986F), new Vector2(219.199997F, -350.996002F), new Vector2(218.119995F, -350.996002F)); + builder.AddCubicBezier(new Vector2(217.063995F, -350.996002F), new Vector2(216.121994F, -351.247986F), new Vector2(215.294006F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(212.899994F, -341.131989F)); + builder.AddLine(new Vector2(212.899994F, -352.579987F)); + builder.AddLine(new Vector2(212.287994F, -356.756012F)); + builder.AddLine(new Vector2(212.899994F, -360.895996F)); + builder.AddLine(new Vector2(212.899994F, -365.395996F)); + builder.AddLine(new Vector2(209.660004F, -365.395996F)); + builder.AddLine(new Vector2(209.660004F, -341.131989F)); + builder.AddLine(new Vector2(212.899994F, -341.131989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(222.889999F, -349.105988F)); + builder.AddCubicBezier(new Vector2(224.149994F, -349.885986F), new Vector2(225.139999F, -350.947998F), new Vector2(225.860001F, -352.291992F)); + builder.AddCubicBezier(new Vector2(226.580002F, -353.635986F), new Vector2(226.940002F, -355.14801F), new Vector2(226.940002F, -356.828003F)); + builder.AddCubicBezier(new Vector2(226.940002F, -358.507996F), new Vector2(226.580002F, -360.019989F), new Vector2(225.860001F, -361.364014F)); + builder.AddCubicBezier(new Vector2(225.139999F, -362.708008F), new Vector2(224.149994F, -363.776001F), new Vector2(222.889999F, -364.567993F)); + builder.AddCubicBezier(new Vector2(221.630005F, -365.359985F), new Vector2(220.220001F, -365.756012F), new Vector2(218.660004F, -365.756012F)); + builder.AddCubicBezier(new Vector2(217.388F, -365.756012F), new Vector2(216.229996F, -365.485992F), new Vector2(215.186005F, -364.946014F)); + builder.AddCubicBezier(new Vector2(214.141998F, -364.406006F), new Vector2(213.302002F, -363.661987F), new Vector2(212.666F, -362.713989F)); + builder.AddCubicBezier(new Vector2(212.029999F, -361.765991F), new Vector2(211.675995F, -360.667999F), new Vector2(211.604004F, -359.420013F)); + builder.AddLine(new Vector2(211.604004F, -354.272003F)); + builder.AddCubicBezier(new Vector2(211.675995F, -353.048004F), new Vector2(212.024002F, -351.955994F), new Vector2(212.647995F, -350.996002F)); + builder.AddCubicBezier(new Vector2(213.272003F, -350.036011F), new Vector2(214.106003F, -349.286011F), new Vector2(215.149994F, -348.746002F)); + builder.AddCubicBezier(new Vector2(216.194F, -348.205994F), new Vector2(217.363998F, -347.936005F), new Vector2(218.660004F, -347.936005F)); + builder.AddCubicBezier(new Vector2(220.220001F, -347.936005F), new Vector2(221.630005F, -348.325989F), new Vector2(222.889999F, -349.105988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1430() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(194.612F, -348.691986F)); + builder.AddCubicBezier(new Vector2(195.787994F, -349.196014F), new Vector2(196.796005F, -349.928009F), new Vector2(197.636002F, -350.888F)); + builder.AddLine(new Vector2(195.548004F, -353.011993F)); + builder.AddCubicBezier(new Vector2(194.972F, -352.339996F), new Vector2(194.281998F, -351.835999F), new Vector2(193.477997F, -351.5F)); + builder.AddCubicBezier(new Vector2(192.673996F, -351.164001F), new Vector2(191.792007F, -350.996002F), new Vector2(190.832001F, -350.996002F)); + builder.AddCubicBezier(new Vector2(189.679993F, -350.996002F), new Vector2(188.660004F, -351.242004F), new Vector2(187.772003F, -351.734009F)); + builder.AddCubicBezier(new Vector2(186.884003F, -352.226013F), new Vector2(186.199997F, -352.921997F), new Vector2(185.720001F, -353.821991F)); + builder.AddCubicBezier(new Vector2(185.240005F, -354.721985F), new Vector2(185F, -355.772003F), new Vector2(185F, -356.971985F)); + builder.AddCubicBezier(new Vector2(185F, -358.14801F), new Vector2(185.227997F, -359.167999F), new Vector2(185.684006F, -360.032013F)); + builder.AddCubicBezier(new Vector2(186.139999F, -360.895996F), new Vector2(186.787994F, -361.567993F), new Vector2(187.628006F, -362.048004F)); + builder.AddCubicBezier(new Vector2(188.468002F, -362.528015F), new Vector2(189.440002F, -362.768005F), new Vector2(190.544006F, -362.768005F)); + builder.AddCubicBezier(new Vector2(191.600006F, -362.768005F), new Vector2(192.5F, -362.54599F), new Vector2(193.244003F, -362.10199F)); + builder.AddCubicBezier(new Vector2(193.988007F, -361.65799F), new Vector2(194.563995F, -361.033997F), new Vector2(194.972F, -360.230011F)); + builder.AddCubicBezier(new Vector2(195.380005F, -359.425995F), new Vector2(195.584F, -358.447998F), new Vector2(195.584F, -357.29599F)); + builder.AddLine(new Vector2(196.772003F, -358.339996F)); + builder.AddLine(new Vector2(184.063995F, -358.339996F)); + builder.AddLine(new Vector2(184.063995F, -355.640015F)); + builder.AddLine(new Vector2(198.5F, -355.640015F)); + builder.AddCubicBezier(new Vector2(198.572006F, -355.976013F), new Vector2(198.619995F, -356.282013F), new Vector2(198.643997F, -356.558014F)); + builder.AddCubicBezier(new Vector2(198.667999F, -356.834015F), new Vector2(198.679993F, -357.09201F), new Vector2(198.679993F, -357.332001F)); + builder.AddCubicBezier(new Vector2(198.679993F, -358.963989F), new Vector2(198.337997F, -360.415985F), new Vector2(197.654007F, -361.687988F)); + builder.AddCubicBezier(new Vector2(196.970001F, -362.959991F), new Vector2(196.016006F, -363.955994F), new Vector2(194.792007F, -364.675995F)); + builder.AddCubicBezier(new Vector2(193.567993F, -365.395996F), new Vector2(192.175995F, -365.756012F), new Vector2(190.615997F, -365.756012F)); + builder.AddCubicBezier(new Vector2(188.960007F, -365.756012F), new Vector2(187.466003F, -365.365997F), new Vector2(186.134003F, -364.585999F)); + builder.AddCubicBezier(new Vector2(184.802002F, -363.806F), new Vector2(183.746002F, -362.743988F), new Vector2(182.966003F, -361.399994F)); + builder.AddCubicBezier(new Vector2(182.186005F, -360.056F), new Vector2(181.796005F, -358.544006F), new Vector2(181.796005F, -356.864014F)); + builder.AddCubicBezier(new Vector2(181.796005F, -355.160004F), new Vector2(182.192001F, -353.635986F), new Vector2(182.983994F, -352.291992F)); + builder.AddCubicBezier(new Vector2(183.776001F, -350.947998F), new Vector2(184.850006F, -349.885986F), new Vector2(186.205994F, -349.105988F)); + builder.AddCubicBezier(new Vector2(187.561996F, -348.325989F), new Vector2(189.104004F, -347.936005F), new Vector2(190.832001F, -347.936005F)); + builder.AddCubicBezier(new Vector2(192.175995F, -347.936005F), new Vector2(193.436005F, -348.187988F), new Vector2(194.612F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1431() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(166.423996F, -348.29599F)); + builder.AddLine(new Vector2(166.423996F, -374F)); + builder.AddLine(new Vector2(163.184006F, -374F)); + builder.AddLine(new Vector2(163.184006F, -348.29599F)); + builder.AddLine(new Vector2(166.423996F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(178.520004F, -348.29599F)); + builder.AddLine(new Vector2(178.520004F, -358.915985F)); + builder.AddCubicBezier(new Vector2(178.520004F, -360.26001F), new Vector2(178.231995F, -361.447998F), new Vector2(177.656006F, -362.480011F)); + builder.AddCubicBezier(new Vector2(177.080002F, -363.511993F), new Vector2(176.294006F, -364.31601F), new Vector2(175.298004F, -364.891998F)); + builder.AddCubicBezier(new Vector2(174.302002F, -365.467987F), new Vector2(173.156006F, -365.756012F), new Vector2(171.860001F, -365.756012F)); + builder.AddCubicBezier(new Vector2(170.563995F, -365.756012F), new Vector2(169.399994F, -365.462006F), new Vector2(168.367996F, -364.873993F)); + builder.AddCubicBezier(new Vector2(167.335999F, -364.286011F), new Vector2(166.531998F, -363.488007F), new Vector2(165.955994F, -362.480011F)); + builder.AddCubicBezier(new Vector2(165.380005F, -361.471985F), new Vector2(165.091995F, -360.320007F), new Vector2(165.091995F, -359.023987F)); + builder.AddLine(new Vector2(166.423996F, -358.268005F)); + builder.AddCubicBezier(new Vector2(166.423996F, -359.131989F), new Vector2(166.615997F, -359.899994F), new Vector2(167F, -360.571991F)); + builder.AddCubicBezier(new Vector2(167.384003F, -361.243988F), new Vector2(167.912003F, -361.772003F), new Vector2(168.584F, -362.156006F)); + builder.AddCubicBezier(new Vector2(169.255997F, -362.540009F), new Vector2(170.024002F, -362.731995F), new Vector2(170.888F, -362.731995F)); + builder.AddCubicBezier(new Vector2(172.184006F, -362.731995F), new Vector2(173.233994F, -362.312012F), new Vector2(174.037994F, -361.471985F)); + builder.AddCubicBezier(new Vector2(174.841995F, -360.631989F), new Vector2(175.244003F, -359.563995F), new Vector2(175.244003F, -358.268005F)); + builder.AddLine(new Vector2(175.244003F, -348.29599F)); + builder.AddLine(new Vector2(178.520004F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1432() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(160.016006F, -362.444F)); + builder.AddLine(new Vector2(160.016006F, -365.395996F)); + builder.AddLine(new Vector2(148.352005F, -365.395996F)); + builder.AddLine(new Vector2(148.352005F, -362.444F)); + builder.AddLine(new Vector2(160.016006F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(155.804001F, -348.29599F)); + builder.AddLine(new Vector2(155.804001F, -372.559998F)); + builder.AddLine(new Vector2(152.563995F, -372.559998F)); + builder.AddLine(new Vector2(152.563995F, -348.29599F)); + builder.AddLine(new Vector2(155.804001F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1433() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(137.138F, -349.339996F)); + builder.AddCubicBezier(new Vector2(138.278F, -350.276001F), new Vector2(138.848007F, -351.548004F), new Vector2(138.848007F, -353.156006F)); + builder.AddCubicBezier(new Vector2(138.848007F, -354.212006F), new Vector2(138.626007F, -355.063995F), new Vector2(138.182007F, -355.712006F)); + builder.AddCubicBezier(new Vector2(137.738007F, -356.359985F), new Vector2(137.167999F, -356.876007F), new Vector2(136.472F, -357.26001F)); + builder.AddCubicBezier(new Vector2(135.776001F, -357.644012F), new Vector2(135.044006F, -357.950012F), new Vector2(134.276001F, -358.178009F)); + builder.AddCubicBezier(new Vector2(133.507996F, -358.406006F), new Vector2(132.770004F, -358.627991F), new Vector2(132.061996F, -358.843994F)); + builder.AddCubicBezier(new Vector2(131.354004F, -359.059998F), new Vector2(130.783997F, -359.324005F), new Vector2(130.352005F, -359.635986F)); + builder.AddCubicBezier(new Vector2(129.919998F, -359.947998F), new Vector2(129.703995F, -360.391998F), new Vector2(129.703995F, -360.967987F)); + builder.AddCubicBezier(new Vector2(129.703995F, -361.519989F), new Vector2(129.949997F, -361.963989F), new Vector2(130.442001F, -362.299988F)); + builder.AddCubicBezier(new Vector2(130.934006F, -362.635986F), new Vector2(131.647995F, -362.803986F), new Vector2(132.584F, -362.803986F)); + builder.AddCubicBezier(new Vector2(133.472F, -362.803986F), new Vector2(134.264008F, -362.635986F), new Vector2(134.960007F, -362.299988F)); + builder.AddCubicBezier(new Vector2(135.656006F, -361.963989F), new Vector2(136.255997F, -361.484009F), new Vector2(136.759995F, -360.859985F)); + builder.AddLine(new Vector2(138.848007F, -362.947998F)); + builder.AddCubicBezier(new Vector2(138.175995F, -363.884003F), new Vector2(137.317993F, -364.585999F), new Vector2(136.274002F, -365.053986F)); + builder.AddCubicBezier(new Vector2(135.229996F, -365.522003F), new Vector2(134.035995F, -365.756012F), new Vector2(132.692001F, -365.756012F)); + builder.AddCubicBezier(new Vector2(131.419998F, -365.756012F), new Vector2(130.328003F, -365.552002F), new Vector2(129.416F, -365.144012F)); + builder.AddCubicBezier(new Vector2(128.503998F, -364.735992F), new Vector2(127.802002F, -364.153992F), new Vector2(127.309998F, -363.39801F)); + builder.AddCubicBezier(new Vector2(126.818001F, -362.641998F), new Vector2(126.571999F, -361.747986F), new Vector2(126.571999F, -360.716003F)); + builder.AddCubicBezier(new Vector2(126.571999F, -359.68399F), new Vector2(126.793999F, -358.850006F), new Vector2(127.237999F, -358.213989F)); + builder.AddCubicBezier(new Vector2(127.681999F, -357.578003F), new Vector2(128.251999F, -357.079987F), new Vector2(128.947998F, -356.720001F)); + builder.AddCubicBezier(new Vector2(129.643997F, -356.359985F), new Vector2(130.382004F, -356.071991F), new Vector2(131.162003F, -355.855988F)); + builder.AddCubicBezier(new Vector2(131.942001F, -355.640015F), new Vector2(132.679993F, -355.417999F), new Vector2(133.376007F, -355.190002F)); + builder.AddCubicBezier(new Vector2(134.072006F, -354.962006F), new Vector2(134.641998F, -354.674011F), new Vector2(135.085999F, -354.325989F)); + builder.AddCubicBezier(new Vector2(135.529999F, -353.977997F), new Vector2(135.751999F, -353.492004F), new Vector2(135.751999F, -352.868011F)); + builder.AddCubicBezier(new Vector2(135.751999F, -352.243988F), new Vector2(135.475998F, -351.757996F), new Vector2(134.923996F, -351.410004F)); + builder.AddCubicBezier(new Vector2(134.371994F, -351.062012F), new Vector2(133.591995F, -350.888F), new Vector2(132.584F, -350.888F)); + builder.AddCubicBezier(new Vector2(131.576004F, -350.888F), new Vector2(130.664001F, -351.074005F), new Vector2(129.848007F, -351.446014F)); + builder.AddCubicBezier(new Vector2(129.031998F, -351.817993F), new Vector2(128.311996F, -352.388F), new Vector2(127.688004F, -353.156006F)); + builder.AddLine(new Vector2(125.599998F, -351.067993F)); + builder.AddCubicBezier(new Vector2(126.127998F, -350.420013F), new Vector2(126.746002F, -349.862F), new Vector2(127.454002F, -349.394012F)); + builder.AddCubicBezier(new Vector2(128.162003F, -348.925995F), new Vector2(128.947998F, -348.56601F), new Vector2(129.811996F, -348.313995F)); + builder.AddCubicBezier(new Vector2(130.675995F, -348.062012F), new Vector2(131.587997F, -347.936005F), new Vector2(132.548004F, -347.936005F)); + builder.AddCubicBezier(new Vector2(134.468002F, -347.936005F), new Vector2(135.998001F, -348.403992F), new Vector2(137.138F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1434() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(121.765999F, -349.339996F)); + builder.AddCubicBezier(new Vector2(122.905998F, -350.276001F), new Vector2(123.475998F, -351.548004F), new Vector2(123.475998F, -353.156006F)); + builder.AddCubicBezier(new Vector2(123.475998F, -354.212006F), new Vector2(123.253998F, -355.063995F), new Vector2(122.809998F, -355.712006F)); + builder.AddCubicBezier(new Vector2(122.365997F, -356.359985F), new Vector2(121.795998F, -356.876007F), new Vector2(121.099998F, -357.26001F)); + builder.AddCubicBezier(new Vector2(120.403999F, -357.644012F), new Vector2(119.671997F, -357.950012F), new Vector2(118.903999F, -358.178009F)); + builder.AddCubicBezier(new Vector2(118.136002F, -358.406006F), new Vector2(117.398003F, -358.627991F), new Vector2(116.690002F, -358.843994F)); + builder.AddCubicBezier(new Vector2(115.982002F, -359.059998F), new Vector2(115.412003F, -359.324005F), new Vector2(114.980003F, -359.635986F)); + builder.AddCubicBezier(new Vector2(114.547997F, -359.947998F), new Vector2(114.332001F, -360.391998F), new Vector2(114.332001F, -360.967987F)); + builder.AddCubicBezier(new Vector2(114.332001F, -361.519989F), new Vector2(114.578003F, -361.963989F), new Vector2(115.07F, -362.299988F)); + builder.AddCubicBezier(new Vector2(115.561996F, -362.635986F), new Vector2(116.276001F, -362.803986F), new Vector2(117.211998F, -362.803986F)); + builder.AddCubicBezier(new Vector2(118.099998F, -362.803986F), new Vector2(118.891998F, -362.635986F), new Vector2(119.587997F, -362.299988F)); + builder.AddCubicBezier(new Vector2(120.283997F, -361.963989F), new Vector2(120.884003F, -361.484009F), new Vector2(121.388F, -360.859985F)); + builder.AddLine(new Vector2(123.475998F, -362.947998F)); + builder.AddCubicBezier(new Vector2(122.804001F, -363.884003F), new Vector2(121.945999F, -364.585999F), new Vector2(120.902F, -365.053986F)); + builder.AddCubicBezier(new Vector2(119.858002F, -365.522003F), new Vector2(118.664001F, -365.756012F), new Vector2(117.32F, -365.756012F)); + builder.AddCubicBezier(new Vector2(116.047997F, -365.756012F), new Vector2(114.956001F, -365.552002F), new Vector2(114.043999F, -365.144012F)); + builder.AddCubicBezier(new Vector2(113.132004F, -364.735992F), new Vector2(112.43F, -364.153992F), new Vector2(111.938004F, -363.39801F)); + builder.AddCubicBezier(new Vector2(111.445999F, -362.641998F), new Vector2(111.199997F, -361.747986F), new Vector2(111.199997F, -360.716003F)); + builder.AddCubicBezier(new Vector2(111.199997F, -359.68399F), new Vector2(111.421997F, -358.850006F), new Vector2(111.865997F, -358.213989F)); + builder.AddCubicBezier(new Vector2(112.309998F, -357.578003F), new Vector2(112.879997F, -357.079987F), new Vector2(113.575996F, -356.720001F)); + builder.AddCubicBezier(new Vector2(114.272003F, -356.359985F), new Vector2(115.010002F, -356.071991F), new Vector2(115.790001F, -355.855988F)); + builder.AddCubicBezier(new Vector2(116.57F, -355.640015F), new Vector2(117.307999F, -355.417999F), new Vector2(118.003998F, -355.190002F)); + builder.AddCubicBezier(new Vector2(118.699997F, -354.962006F), new Vector2(119.269997F, -354.674011F), new Vector2(119.713997F, -354.325989F)); + builder.AddCubicBezier(new Vector2(120.157997F, -353.977997F), new Vector2(120.379997F, -353.492004F), new Vector2(120.379997F, -352.868011F)); + builder.AddCubicBezier(new Vector2(120.379997F, -352.243988F), new Vector2(120.103996F, -351.757996F), new Vector2(119.552002F, -351.410004F)); + builder.AddCubicBezier(new Vector2(119F, -351.062012F), new Vector2(118.220001F, -350.888F), new Vector2(117.211998F, -350.888F)); + builder.AddCubicBezier(new Vector2(116.204002F, -350.888F), new Vector2(115.292F, -351.074005F), new Vector2(114.475998F, -351.446014F)); + builder.AddCubicBezier(new Vector2(113.660004F, -351.817993F), new Vector2(112.940002F, -352.388F), new Vector2(112.316002F, -353.156006F)); + builder.AddLine(new Vector2(110.227997F, -351.067993F)); + builder.AddCubicBezier(new Vector2(110.755997F, -350.420013F), new Vector2(111.374001F, -349.862F), new Vector2(112.082001F, -349.394012F)); + builder.AddCubicBezier(new Vector2(112.790001F, -348.925995F), new Vector2(113.575996F, -348.56601F), new Vector2(114.440002F, -348.313995F)); + builder.AddCubicBezier(new Vector2(115.304001F, -348.062012F), new Vector2(116.216003F, -347.936005F), new Vector2(117.176003F, -347.936005F)); + builder.AddCubicBezier(new Vector2(119.096001F, -347.936005F), new Vector2(120.625999F, -348.403992F), new Vector2(121.765999F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1435() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(104.143997F, -348.691986F)); + builder.AddCubicBezier(new Vector2(105.32F, -349.196014F), new Vector2(106.328003F, -349.928009F), new Vector2(107.167999F, -350.888F)); + builder.AddLine(new Vector2(105.080002F, -353.011993F)); + builder.AddCubicBezier(new Vector2(104.503998F, -352.339996F), new Vector2(103.814003F, -351.835999F), new Vector2(103.010002F, -351.5F)); + builder.AddCubicBezier(new Vector2(102.206001F, -351.164001F), new Vector2(101.323997F, -350.996002F), new Vector2(100.363998F, -350.996002F)); + builder.AddCubicBezier(new Vector2(99.211998F, -350.996002F), new Vector2(98.1920013F, -351.242004F), new Vector2(97.3040009F, -351.734009F)); + builder.AddCubicBezier(new Vector2(96.4160004F, -352.226013F), new Vector2(95.7320023F, -352.921997F), new Vector2(95.2519989F, -353.821991F)); + builder.AddCubicBezier(new Vector2(94.7720032F, -354.721985F), new Vector2(94.5319977F, -355.772003F), new Vector2(94.5319977F, -356.971985F)); + builder.AddCubicBezier(new Vector2(94.5319977F, -358.14801F), new Vector2(94.7600021F, -359.167999F), new Vector2(95.2160034F, -360.032013F)); + builder.AddCubicBezier(new Vector2(95.6719971F, -360.895996F), new Vector2(96.3199997F, -361.567993F), new Vector2(97.1600037F, -362.048004F)); + builder.AddCubicBezier(new Vector2(98F, -362.528015F), new Vector2(98.9720001F, -362.768005F), new Vector2(100.075996F, -362.768005F)); + builder.AddCubicBezier(new Vector2(101.132004F, -362.768005F), new Vector2(102.031998F, -362.54599F), new Vector2(102.776001F, -362.10199F)); + builder.AddCubicBezier(new Vector2(103.519997F, -361.65799F), new Vector2(104.096001F, -361.033997F), new Vector2(104.503998F, -360.230011F)); + builder.AddCubicBezier(new Vector2(104.912003F, -359.425995F), new Vector2(105.115997F, -358.447998F), new Vector2(105.115997F, -357.29599F)); + builder.AddLine(new Vector2(106.304001F, -358.339996F)); + builder.AddLine(new Vector2(93.5960007F, -358.339996F)); + builder.AddLine(new Vector2(93.5960007F, -355.640015F)); + builder.AddLine(new Vector2(108.031998F, -355.640015F)); + builder.AddCubicBezier(new Vector2(108.103996F, -355.976013F), new Vector2(108.152F, -356.282013F), new Vector2(108.176003F, -356.558014F)); + builder.AddCubicBezier(new Vector2(108.199997F, -356.834015F), new Vector2(108.211998F, -357.09201F), new Vector2(108.211998F, -357.332001F)); + builder.AddCubicBezier(new Vector2(108.211998F, -358.963989F), new Vector2(107.870003F, -360.415985F), new Vector2(107.185997F, -361.687988F)); + builder.AddCubicBezier(new Vector2(106.501999F, -362.959991F), new Vector2(105.547997F, -363.955994F), new Vector2(104.323997F, -364.675995F)); + builder.AddCubicBezier(new Vector2(103.099998F, -365.395996F), new Vector2(101.708F, -365.756012F), new Vector2(100.148003F, -365.756012F)); + builder.AddCubicBezier(new Vector2(98.4919968F, -365.756012F), new Vector2(96.9980011F, -365.365997F), new Vector2(95.6660004F, -364.585999F)); + builder.AddCubicBezier(new Vector2(94.3339996F, -363.806F), new Vector2(93.2779999F, -362.743988F), new Vector2(92.4980011F, -361.399994F)); + builder.AddCubicBezier(new Vector2(91.7180023F, -360.056F), new Vector2(91.3280029F, -358.544006F), new Vector2(91.3280029F, -356.864014F)); + builder.AddCubicBezier(new Vector2(91.3280029F, -355.160004F), new Vector2(91.723999F, -353.635986F), new Vector2(92.5159988F, -352.291992F)); + builder.AddCubicBezier(new Vector2(93.3079987F, -350.947998F), new Vector2(94.3820038F, -349.885986F), new Vector2(95.737999F, -349.105988F)); + builder.AddCubicBezier(new Vector2(97.0940018F, -348.325989F), new Vector2(98.6360016F, -347.936005F), new Vector2(100.363998F, -347.936005F)); + builder.AddCubicBezier(new Vector2(101.708F, -347.936005F), new Vector2(102.968002F, -348.187988F), new Vector2(104.143997F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1436() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(82.9400024F, -361.544006F)); + builder.AddCubicBezier(new Vector2(83.7080002F, -362.312012F), new Vector2(84.6920013F, -362.696014F), new Vector2(85.8919983F, -362.696014F)); + builder.AddCubicBezier(new Vector2(86.4680023F, -362.696014F), new Vector2(86.9720001F, -362.612F), new Vector2(87.4039993F, -362.444F)); + builder.AddCubicBezier(new Vector2(87.8359985F, -362.276001F), new Vector2(88.2320023F, -362F), new Vector2(88.5920029F, -361.615997F)); + builder.AddLine(new Vector2(90.7160034F, -363.812012F)); + builder.AddCubicBezier(new Vector2(90.1159973F, -364.507996F), new Vector2(89.4680023F, -365.006012F), new Vector2(88.7720032F, -365.306F)); + builder.AddCubicBezier(new Vector2(88.0759964F, -365.605988F), new Vector2(87.2959976F, -365.756012F), new Vector2(86.4319992F, -365.756012F)); + builder.AddCubicBezier(new Vector2(84.5360031F, -365.756012F), new Vector2(83.0839996F, -365.108002F), new Vector2(82.0759964F, -363.812012F)); + builder.AddCubicBezier(new Vector2(81.0680008F, -362.515991F), new Vector2(80.564003F, -360.776001F), new Vector2(80.564003F, -358.59201F)); + builder.AddLine(new Vector2(81.788002F, -358.015991F)); + builder.AddCubicBezier(new Vector2(81.788002F, -359.600006F), new Vector2(82.1719971F, -360.776001F), new Vector2(82.9400024F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(81.788002F, -348.29599F)); + builder.AddLine(new Vector2(81.788002F, -365.395996F)); + builder.AddLine(new Vector2(78.5479965F, -365.395996F)); + builder.AddLine(new Vector2(78.5479965F, -348.29599F)); + builder.AddLine(new Vector2(81.788002F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1437() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(63.2299995F, -351.752014F)); + builder.AddCubicBezier(new Vector2(62.4020004F, -352.256012F), new Vector2(61.7659988F, -352.946014F), new Vector2(61.3219986F, -353.821991F)); + builder.AddCubicBezier(new Vector2(60.8779984F, -354.697998F), new Vector2(60.6559982F, -355.700012F), new Vector2(60.6559982F, -356.828003F)); + builder.AddCubicBezier(new Vector2(60.6559982F, -357.980011F), new Vector2(60.8839989F, -358.993988F), new Vector2(61.3400002F, -359.869995F)); + builder.AddCubicBezier(new Vector2(61.7960014F, -360.746002F), new Vector2(62.4319992F, -361.436005F), new Vector2(63.2480011F, -361.940002F)); + builder.AddCubicBezier(new Vector2(64.064003F, -362.444F), new Vector2(65F, -362.696014F), new Vector2(66.0559998F, -362.696014F)); + builder.AddCubicBezier(new Vector2(67.1360016F, -362.696014F), new Vector2(68.0839996F, -362.444F), new Vector2(68.9000015F, -361.940002F)); + builder.AddCubicBezier(new Vector2(69.7160034F, -361.436005F), new Vector2(70.3580017F, -360.746002F), new Vector2(70.8259964F, -359.869995F)); + builder.AddCubicBezier(new Vector2(71.2939987F, -358.993988F), new Vector2(71.5279999F, -357.992004F), new Vector2(71.5279999F, -356.864014F)); + builder.AddCubicBezier(new Vector2(71.5279999F, -355.712006F), new Vector2(71.2939987F, -354.697998F), new Vector2(70.8259964F, -353.821991F)); + builder.AddCubicBezier(new Vector2(70.3580017F, -352.946014F), new Vector2(69.7160034F, -352.256012F), new Vector2(68.9000015F, -351.752014F)); + builder.AddCubicBezier(new Vector2(68.0839996F, -351.247986F), new Vector2(67.1360016F, -350.996002F), new Vector2(66.0559998F, -350.996002F)); + builder.AddCubicBezier(new Vector2(65F, -350.996002F), new Vector2(64.0579987F, -351.247986F), new Vector2(63.2299995F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(60.8359985F, -341.131989F)); + builder.AddLine(new Vector2(60.8359985F, -352.579987F)); + builder.AddLine(new Vector2(60.223999F, -356.756012F)); + builder.AddLine(new Vector2(60.8359985F, -360.895996F)); + builder.AddLine(new Vector2(60.8359985F, -365.395996F)); + builder.AddLine(new Vector2(57.5960007F, -365.395996F)); + builder.AddLine(new Vector2(57.5960007F, -341.131989F)); + builder.AddLine(new Vector2(60.8359985F, -341.131989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(70.8259964F, -349.105988F)); + builder.AddCubicBezier(new Vector2(72.0859985F, -349.885986F), new Vector2(73.0759964F, -350.947998F), new Vector2(73.7959976F, -352.291992F)); + builder.AddCubicBezier(new Vector2(74.5159988F, -353.635986F), new Vector2(74.8759995F, -355.14801F), new Vector2(74.8759995F, -356.828003F)); + builder.AddCubicBezier(new Vector2(74.8759995F, -358.507996F), new Vector2(74.5159988F, -360.019989F), new Vector2(73.7959976F, -361.364014F)); + builder.AddCubicBezier(new Vector2(73.0759964F, -362.708008F), new Vector2(72.0859985F, -363.776001F), new Vector2(70.8259964F, -364.567993F)); + builder.AddCubicBezier(new Vector2(69.5660019F, -365.359985F), new Vector2(68.1559982F, -365.756012F), new Vector2(66.5960007F, -365.756012F)); + builder.AddCubicBezier(new Vector2(65.3239975F, -365.756012F), new Vector2(64.1660004F, -365.485992F), new Vector2(63.1220016F, -364.946014F)); + builder.AddCubicBezier(new Vector2(62.0779991F, -364.406006F), new Vector2(61.237999F, -363.661987F), new Vector2(60.6020012F, -362.713989F)); + builder.AddCubicBezier(new Vector2(59.9659996F, -361.765991F), new Vector2(59.6119995F, -360.667999F), new Vector2(59.5400009F, -359.420013F)); + builder.AddLine(new Vector2(59.5400009F, -354.272003F)); + builder.AddCubicBezier(new Vector2(59.6119995F, -353.048004F), new Vector2(59.9599991F, -351.955994F), new Vector2(60.5839996F, -350.996002F)); + builder.AddCubicBezier(new Vector2(61.2080002F, -350.036011F), new Vector2(62.0419998F, -349.286011F), new Vector2(63.0859985F, -348.746002F)); + builder.AddCubicBezier(new Vector2(64.1299973F, -348.205994F), new Vector2(65.3000031F, -347.936005F), new Vector2(66.5960007F, -347.936005F)); + builder.AddCubicBezier(new Vector2(68.1559982F, -347.936005F), new Vector2(69.5660019F, -348.325989F), new Vector2(70.8259964F, -349.105988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1438() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(42.2779999F, -351.752014F)); + builder.AddCubicBezier(new Vector2(41.4500008F, -352.256012F), new Vector2(40.8139992F, -352.946014F), new Vector2(40.3699989F, -353.821991F)); + builder.AddCubicBezier(new Vector2(39.9259987F, -354.697998F), new Vector2(39.7039986F, -355.700012F), new Vector2(39.7039986F, -356.828003F)); + builder.AddCubicBezier(new Vector2(39.7039986F, -357.980011F), new Vector2(39.9319992F, -358.993988F), new Vector2(40.3880005F, -359.869995F)); + builder.AddCubicBezier(new Vector2(40.8440018F, -360.746002F), new Vector2(41.4799995F, -361.436005F), new Vector2(42.2960014F, -361.940002F)); + builder.AddCubicBezier(new Vector2(43.1119995F, -362.444F), new Vector2(44.0480003F, -362.696014F), new Vector2(45.1040001F, -362.696014F)); + builder.AddCubicBezier(new Vector2(46.1839981F, -362.696014F), new Vector2(47.132F, -362.444F), new Vector2(47.9480019F, -361.940002F)); + builder.AddCubicBezier(new Vector2(48.7639999F, -361.436005F), new Vector2(49.4059982F, -360.746002F), new Vector2(49.8740005F, -359.869995F)); + builder.AddCubicBezier(new Vector2(50.3419991F, -358.993988F), new Vector2(50.5760002F, -357.992004F), new Vector2(50.5760002F, -356.864014F)); + builder.AddCubicBezier(new Vector2(50.5760002F, -355.712006F), new Vector2(50.3419991F, -354.697998F), new Vector2(49.8740005F, -353.821991F)); + builder.AddCubicBezier(new Vector2(49.4059982F, -352.946014F), new Vector2(48.7639999F, -352.256012F), new Vector2(47.9480019F, -351.752014F)); + builder.AddCubicBezier(new Vector2(47.132F, -351.247986F), new Vector2(46.1839981F, -350.996002F), new Vector2(45.1040001F, -350.996002F)); + builder.AddCubicBezier(new Vector2(44.0480003F, -350.996002F), new Vector2(43.105999F, -351.247986F), new Vector2(42.2779999F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(39.8839989F, -341.131989F)); + builder.AddLine(new Vector2(39.8839989F, -352.579987F)); + builder.AddLine(new Vector2(39.2719994F, -356.756012F)); + builder.AddLine(new Vector2(39.8839989F, -360.895996F)); + builder.AddLine(new Vector2(39.8839989F, -365.395996F)); + builder.AddLine(new Vector2(36.644001F, -365.395996F)); + builder.AddLine(new Vector2(36.644001F, -341.131989F)); + builder.AddLine(new Vector2(39.8839989F, -341.131989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(49.8740005F, -349.105988F)); + builder.AddCubicBezier(new Vector2(51.1339989F, -349.885986F), new Vector2(52.1240005F, -350.947998F), new Vector2(52.8440018F, -352.291992F)); + builder.AddCubicBezier(new Vector2(53.5639992F, -353.635986F), new Vector2(53.9239998F, -355.14801F), new Vector2(53.9239998F, -356.828003F)); + builder.AddCubicBezier(new Vector2(53.9239998F, -358.507996F), new Vector2(53.5639992F, -360.019989F), new Vector2(52.8440018F, -361.364014F)); + builder.AddCubicBezier(new Vector2(52.1240005F, -362.708008F), new Vector2(51.1339989F, -363.776001F), new Vector2(49.8740005F, -364.567993F)); + builder.AddCubicBezier(new Vector2(48.6139984F, -365.359985F), new Vector2(47.2039986F, -365.756012F), new Vector2(45.644001F, -365.756012F)); + builder.AddCubicBezier(new Vector2(44.3720016F, -365.756012F), new Vector2(43.2140007F, -365.485992F), new Vector2(42.1699982F, -364.946014F)); + builder.AddCubicBezier(new Vector2(41.1259995F, -364.406006F), new Vector2(40.2859993F, -363.661987F), new Vector2(39.6500015F, -362.713989F)); + builder.AddCubicBezier(new Vector2(39.0139999F, -361.765991F), new Vector2(38.6599998F, -360.667999F), new Vector2(38.5880013F, -359.420013F)); + builder.AddLine(new Vector2(38.5880013F, -354.272003F)); + builder.AddCubicBezier(new Vector2(38.6599998F, -353.048004F), new Vector2(39.0079994F, -351.955994F), new Vector2(39.632F, -350.996002F)); + builder.AddCubicBezier(new Vector2(40.2560005F, -350.036011F), new Vector2(41.0900002F, -349.286011F), new Vector2(42.1339989F, -348.746002F)); + builder.AddCubicBezier(new Vector2(43.1780014F, -348.205994F), new Vector2(44.3479996F, -347.936005F), new Vector2(45.644001F, -347.936005F)); + builder.AddCubicBezier(new Vector2(47.2039986F, -347.936005F), new Vector2(48.6139984F, -348.325989F), new Vector2(49.8740005F, -349.105988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1439() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(21.2360001F, -351.824005F)); + builder.AddCubicBezier(new Vector2(20.3959999F, -352.328003F), new Vector2(19.7360001F, -353.018005F), new Vector2(19.2560005F, -353.894012F)); + builder.AddCubicBezier(new Vector2(18.7759991F, -354.769989F), new Vector2(18.5359993F, -355.772003F), new Vector2(18.5359993F, -356.899994F)); + builder.AddCubicBezier(new Vector2(18.5359993F, -358.003998F), new Vector2(18.7759991F, -358.988007F), new Vector2(19.2560005F, -359.85199F)); + builder.AddCubicBezier(new Vector2(19.7360001F, -360.716003F), new Vector2(20.3959999F, -361.394012F), new Vector2(21.2360001F, -361.885986F)); + builder.AddCubicBezier(new Vector2(22.0760002F, -362.377991F), new Vector2(23.0240002F, -362.623993F), new Vector2(24.0799999F, -362.623993F)); + builder.AddCubicBezier(new Vector2(25.184F, -362.623993F), new Vector2(26.1499996F, -362.377991F), new Vector2(26.9780006F, -361.885986F)); + builder.AddCubicBezier(new Vector2(27.8059998F, -361.394012F), new Vector2(28.4659996F, -360.716003F), new Vector2(28.9580002F, -359.85199F)); + builder.AddCubicBezier(new Vector2(29.4500008F, -358.988007F), new Vector2(29.6959991F, -358.003998F), new Vector2(29.6959991F, -356.899994F)); + builder.AddCubicBezier(new Vector2(29.6959991F, -355.772003F), new Vector2(29.4559994F, -354.769989F), new Vector2(28.9759998F, -353.894012F)); + builder.AddCubicBezier(new Vector2(28.4960003F, -353.018005F), new Vector2(27.8360004F, -352.328003F), new Vector2(26.9960003F, -351.824005F)); + builder.AddCubicBezier(new Vector2(26.1560001F, -351.320007F), new Vector2(25.184F, -351.067993F), new Vector2(24.0799999F, -351.067993F)); + builder.AddCubicBezier(new Vector2(23.0240002F, -351.067993F), new Vector2(22.0760002F, -351.320007F), new Vector2(21.2360001F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(28.6340008F, -349.123993F)); + builder.AddCubicBezier(new Vector2(29.9899998F, -349.915985F), new Vector2(31.0639992F, -350.98999F), new Vector2(31.8560009F, -352.346008F)); + builder.AddCubicBezier(new Vector2(32.6479988F, -353.701996F), new Vector2(33.0439987F, -355.220001F), new Vector2(33.0439987F, -356.899994F)); + builder.AddCubicBezier(new Vector2(33.0439987F, -358.556F), new Vector2(32.6479988F, -360.056F), new Vector2(31.8560009F, -361.399994F)); + builder.AddCubicBezier(new Vector2(31.0639992F, -362.743988F), new Vector2(29.9899998F, -363.806F), new Vector2(28.6340008F, -364.585999F)); + builder.AddCubicBezier(new Vector2(27.2779999F, -365.365997F), new Vector2(25.7600002F, -365.756012F), new Vector2(24.0799999F, -365.756012F)); + builder.AddCubicBezier(new Vector2(22.4239998F, -365.756012F), new Vector2(20.9239998F, -365.359985F), new Vector2(19.5799999F, -364.567993F)); + builder.AddCubicBezier(new Vector2(18.2360001F, -363.776001F), new Vector2(17.1679993F, -362.713989F), new Vector2(16.3759995F, -361.381989F)); + builder.AddCubicBezier(new Vector2(15.5839996F, -360.049988F), new Vector2(15.1879997F, -358.556F), new Vector2(15.1879997F, -356.899994F)); + builder.AddCubicBezier(new Vector2(15.1879997F, -355.220001F), new Vector2(15.5839996F, -353.701996F), new Vector2(16.3759995F, -352.346008F)); + builder.AddCubicBezier(new Vector2(17.1679993F, -350.98999F), new Vector2(18.2360001F, -349.915985F), new Vector2(19.5799999F, -349.123993F)); + builder.AddCubicBezier(new Vector2(20.9239998F, -348.332001F), new Vector2(22.4239998F, -347.936005F), new Vector2(24.0799999F, -347.936005F)); + builder.AddCubicBezier(new Vector2(25.7600002F, -347.936005F), new Vector2(27.2779999F, -348.332001F), new Vector2(28.6340008F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1440() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-6.55600023F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-7.39599991F, -352.328003F), new Vector2(-8.05599976F, -353.018005F), new Vector2(-8.53600025F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-9.01599979F, -354.769989F), new Vector2(-9.25599957F, -355.772003F), new Vector2(-9.25599957F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-9.25599957F, -358.003998F), new Vector2(-9.01599979F, -358.988007F), new Vector2(-8.53600025F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-8.05599976F, -360.716003F), new Vector2(-7.39599991F, -361.394012F), new Vector2(-6.55600023F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-5.71600008F, -362.377991F), new Vector2(-4.76800013F, -362.623993F), new Vector2(-3.71199989F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-2.60800004F, -362.623993F), new Vector2(-1.64199996F, -362.377991F), new Vector2(-0.81400001F, -361.885986F)); + builder.AddCubicBezier(new Vector2(0.0140000004F, -361.394012F), new Vector2(0.674000025F, -360.716003F), new Vector2(1.16600001F, -359.85199F)); + builder.AddCubicBezier(new Vector2(1.65799999F, -358.988007F), new Vector2(1.90400004F, -358.003998F), new Vector2(1.90400004F, -356.899994F)); + builder.AddCubicBezier(new Vector2(1.90400004F, -355.772003F), new Vector2(1.66400003F, -354.769989F), new Vector2(1.18400002F, -353.894012F)); + builder.AddCubicBezier(new Vector2(0.703999996F, -353.018005F), new Vector2(0.0439999998F, -352.328003F), new Vector2(-0.796000004F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-1.63600004F, -351.320007F), new Vector2(-2.60800004F, -351.067993F), new Vector2(-3.71199989F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-4.76800013F, -351.067993F), new Vector2(-5.71600008F, -351.320007F), new Vector2(-6.55600023F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(0.842000008F, -349.123993F)); + builder.AddCubicBezier(new Vector2(2.19799995F, -349.915985F), new Vector2(3.27200007F, -350.98999F), new Vector2(4.06400013F, -352.346008F)); + builder.AddCubicBezier(new Vector2(4.85599995F, -353.701996F), new Vector2(5.25199986F, -355.220001F), new Vector2(5.25199986F, -356.899994F)); + builder.AddCubicBezier(new Vector2(5.25199986F, -358.556F), new Vector2(4.85599995F, -360.056F), new Vector2(4.06400013F, -361.399994F)); + builder.AddCubicBezier(new Vector2(3.27200007F, -362.743988F), new Vector2(2.19799995F, -363.806F), new Vector2(0.842000008F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-0.513999999F, -365.365997F), new Vector2(-2.03200006F, -365.756012F), new Vector2(-3.71199989F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-5.36800003F, -365.756012F), new Vector2(-6.86800003F, -365.359985F), new Vector2(-8.21199989F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-9.55599976F, -363.776001F), new Vector2(-10.6239996F, -362.713989F), new Vector2(-11.4160004F, -361.381989F)); + builder.AddCubicBezier(new Vector2(-12.2080002F, -360.049988F), new Vector2(-12.6040001F, -358.556F), new Vector2(-12.6040001F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-12.6040001F, -355.220001F), new Vector2(-12.2080002F, -353.701996F), new Vector2(-11.4160004F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-10.6239996F, -350.98999F), new Vector2(-9.55599976F, -349.915985F), new Vector2(-8.21199989F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-6.86800003F, -348.332001F), new Vector2(-5.36800003F, -347.936005F), new Vector2(-3.71199989F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-2.03200006F, -347.936005F), new Vector2(-0.513999999F, -348.332001F), new Vector2(0.842000008F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1441() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-14.1160002F, -362.444F)); + builder.AddLine(new Vector2(-14.1160002F, -365.395996F)); + builder.AddLine(new Vector2(-25.7800007F, -365.395996F)); + builder.AddLine(new Vector2(-25.7800007F, -362.444F)); + builder.AddLine(new Vector2(-14.1160002F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-18.3279991F, -348.29599F)); + builder.AddLine(new Vector2(-18.3279991F, -372.559998F)); + builder.AddLine(new Vector2(-21.5680008F, -372.559998F)); + builder.AddLine(new Vector2(-21.5680008F, -348.29599F)); + builder.AddLine(new Vector2(-18.3279991F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1442() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-36.3639984F, -374F)); + builder.AddLine(new Vector2(-39.6399994F, -374F)); + builder.AddLine(new Vector2(-39.6399994F, -361.220001F)); + builder.AddLine(new Vector2(-39.0279999F, -357.079987F)); + builder.AddLine(new Vector2(-39.6399994F, -352.903992F)); + builder.AddLine(new Vector2(-39.6399994F, -348.29599F)); + builder.AddLine(new Vector2(-36.3639984F, -348.29599F)); + builder.AddLine(new Vector2(-36.3639984F, -374F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-47.6860008F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-48.5139999F, -352.226013F), new Vector2(-49.1619987F, -352.915985F), new Vector2(-49.6300011F, -353.803986F)); + builder.AddCubicBezier(new Vector2(-50.0979996F, -354.691986F), new Vector2(-50.3320007F, -355.712006F), new Vector2(-50.3320007F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-50.3320007F, -358.015991F), new Vector2(-50.0979996F, -359.029999F), new Vector2(-49.6300011F, -359.906006F)); + builder.AddCubicBezier(new Vector2(-49.1619987F, -360.782013F), new Vector2(-48.5200005F, -361.466003F), new Vector2(-47.7039986F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-46.8880005F, -362.450012F), new Vector2(-45.9399986F, -362.696014F), new Vector2(-44.8600006F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-43.7799988F, -362.696014F), new Vector2(-42.8320007F, -362.444F), new Vector2(-42.0159988F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-41.2000008F, -361.436005F), new Vector2(-40.5639992F, -360.746002F), new Vector2(-40.1080017F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-39.6520004F, -358.993988F), new Vector2(-39.4239998F, -357.980011F), new Vector2(-39.4239998F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-39.4239998F, -355.700012F), new Vector2(-39.6520004F, -354.697998F), new Vector2(-40.1080017F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-40.5639992F, -352.946014F), new Vector2(-41.2000008F, -352.256012F), new Vector2(-42.0159988F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-42.8320007F, -351.247986F), new Vector2(-43.7799988F, -350.996002F), new Vector2(-44.8600006F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-45.9160004F, -350.996002F), new Vector2(-46.8580017F, -351.242004F), new Vector2(-47.6860008F, -351.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-41.8720016F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-40.8400002F, -349.286011F), new Vector2(-40.012001F, -350.036011F), new Vector2(-39.3880005F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-38.7639999F, -351.955994F), new Vector2(-38.4160004F, -353.048004F), new Vector2(-38.3440018F, -354.272003F)); + builder.AddLine(new Vector2(-38.3440018F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-38.4160004F, -360.667999F), new Vector2(-38.7700005F, -361.765991F), new Vector2(-39.4059982F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-40.0419998F, -363.661987F), new Vector2(-40.8759995F, -364.406006F), new Vector2(-41.9080009F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-42.9399986F, -365.485992F), new Vector2(-44.1040001F, -365.756012F), new Vector2(-45.4000015F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-46.9599991F, -365.756012F), new Vector2(-48.3639984F, -365.359985F), new Vector2(-49.6119995F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-50.8600006F, -363.776001F), new Vector2(-51.8499985F, -362.708008F), new Vector2(-52.5820007F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-53.3139992F, -360.019989F), new Vector2(-53.6800003F, -358.507996F), new Vector2(-53.6800003F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-53.6800003F, -355.14801F), new Vector2(-53.3139992F, -353.635986F), new Vector2(-52.5820007F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-51.8499985F, -350.947998F), new Vector2(-50.8600006F, -349.885986F), new Vector2(-49.6119995F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-48.3639984F, -348.325989F), new Vector2(-46.9599991F, -347.936005F), new Vector2(-45.4000015F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-44.0800018F, -347.936005F), new Vector2(-42.9039993F, -348.205994F), new Vector2(-41.8720016F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1443() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-60.1959991F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-59.0200005F, -349.196014F), new Vector2(-58.012001F, -349.928009F), new Vector2(-57.1720009F, -350.888F)); + builder.AddLine(new Vector2(-59.2599983F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-59.8359985F, -352.339996F), new Vector2(-60.526001F, -351.835999F), new Vector2(-61.3300018F, -351.5F)); + builder.AddCubicBezier(new Vector2(-62.1339989F, -351.164001F), new Vector2(-63.0159988F, -350.996002F), new Vector2(-63.9760017F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-65.1279984F, -350.996002F), new Vector2(-66.1480026F, -351.242004F), new Vector2(-67.0360031F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-67.9240036F, -352.226013F), new Vector2(-68.6080017F, -352.921997F), new Vector2(-69.0879974F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-69.5680008F, -354.721985F), new Vector2(-69.8079987F, -355.772003F), new Vector2(-69.8079987F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-69.8079987F, -358.14801F), new Vector2(-69.5800018F, -359.167999F), new Vector2(-69.1240005F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-68.6679993F, -360.895996F), new Vector2(-68.0199966F, -361.567993F), new Vector2(-67.1800003F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-66.3399963F, -362.528015F), new Vector2(-65.3679962F, -362.768005F), new Vector2(-64.2639999F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-63.2080002F, -362.768005F), new Vector2(-62.3079987F, -362.54599F), new Vector2(-61.5639992F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-60.8199997F, -361.65799F), new Vector2(-60.2439995F, -361.033997F), new Vector2(-59.8359985F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-59.4280014F, -359.425995F), new Vector2(-59.223999F, -358.447998F), new Vector2(-59.223999F, -357.29599F)); + builder.AddLine(new Vector2(-58.0359993F, -358.339996F)); + builder.AddLine(new Vector2(-70.7440033F, -358.339996F)); + builder.AddLine(new Vector2(-70.7440033F, -355.640015F)); + builder.AddLine(new Vector2(-56.3079987F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-56.2360001F, -355.976013F), new Vector2(-56.1879997F, -356.282013F), new Vector2(-56.1640015F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-56.1399994F, -356.834015F), new Vector2(-56.1279984F, -357.09201F), new Vector2(-56.1279984F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-56.1279984F, -358.963989F), new Vector2(-56.4700012F, -360.415985F), new Vector2(-57.1539993F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-57.8380013F, -362.959991F), new Vector2(-58.7919998F, -363.955994F), new Vector2(-60.0159988F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-61.2400017F, -365.395996F), new Vector2(-62.632F, -365.756012F), new Vector2(-64.1920013F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-65.8479996F, -365.756012F), new Vector2(-67.3420029F, -365.365997F), new Vector2(-68.6740036F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-70.0059967F, -363.806F), new Vector2(-71.0619965F, -362.743988F), new Vector2(-71.8420029F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-72.6220016F, -360.056F), new Vector2(-73.012001F, -358.544006F), new Vector2(-73.012001F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-73.012001F, -355.160004F), new Vector2(-72.6159973F, -353.635986F), new Vector2(-71.8239975F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-71.0319977F, -350.947998F), new Vector2(-69.9580002F, -349.885986F), new Vector2(-68.6019974F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-67.2460022F, -348.325989F), new Vector2(-65.7040024F, -347.936005F), new Vector2(-63.9760017F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-62.632F, -347.936005F), new Vector2(-61.3720016F, -348.187988F), new Vector2(-60.1959991F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1444() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-74.5240021F, -362.444F)); + builder.AddLine(new Vector2(-74.5240021F, -365.395996F)); + builder.AddLine(new Vector2(-86.1880035F, -365.395996F)); + builder.AddLine(new Vector2(-86.1880035F, -362.444F)); + builder.AddLine(new Vector2(-74.5240021F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-78.7360001F, -348.29599F)); + builder.AddLine(new Vector2(-78.7360001F, -372.559998F)); + builder.AddLine(new Vector2(-81.9759979F, -372.559998F)); + builder.AddLine(new Vector2(-81.9759979F, -348.29599F)); + builder.AddLine(new Vector2(-78.7360001F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1445() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-94.6119995F, -361.544006F)); + builder.AddCubicBezier(new Vector2(-93.8440018F, -362.312012F), new Vector2(-92.8600006F, -362.696014F), new Vector2(-91.6600037F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-91.0839996F, -362.696014F), new Vector2(-90.5800018F, -362.612F), new Vector2(-90.1480026F, -362.444F)); + builder.AddCubicBezier(new Vector2(-89.7160034F, -362.276001F), new Vector2(-89.3199997F, -362F), new Vector2(-88.9599991F, -361.615997F)); + builder.AddLine(new Vector2(-86.8359985F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-87.435997F, -364.507996F), new Vector2(-88.0839996F, -365.006012F), new Vector2(-88.7799988F, -365.306F)); + builder.AddCubicBezier(new Vector2(-89.4759979F, -365.605988F), new Vector2(-90.2559967F, -365.756012F), new Vector2(-91.1200027F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-93.0159988F, -365.756012F), new Vector2(-94.4680023F, -365.108002F), new Vector2(-95.4759979F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-96.4840012F, -362.515991F), new Vector2(-96.987999F, -360.776001F), new Vector2(-96.987999F, -358.59201F)); + builder.AddLine(new Vector2(-95.7639999F, -358.015991F)); + builder.AddCubicBezier(new Vector2(-95.7639999F, -359.600006F), new Vector2(-95.3799973F, -360.776001F), new Vector2(-94.6119995F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-95.7639999F, -348.29599F)); + builder.AddLine(new Vector2(-95.7639999F, -365.395996F)); + builder.AddLine(new Vector2(-99.0039978F, -365.395996F)); + builder.AddLine(new Vector2(-99.0039978F, -348.29599F)); + builder.AddLine(new Vector2(-95.7639999F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1446() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-103.720001F, -348.29599F)); + builder.AddLine(new Vector2(-103.720001F, -365.395996F)); + builder.AddLine(new Vector2(-106.996002F, -365.395996F)); + builder.AddLine(new Vector2(-106.996002F, -361.220001F)); + builder.AddLine(new Vector2(-106.384003F, -357.079987F)); + builder.AddLine(new Vector2(-106.996002F, -352.903992F)); + builder.AddLine(new Vector2(-106.996002F, -348.29599F)); + builder.AddLine(new Vector2(-103.720001F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-115.024002F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-115.863998F, -352.256012F), new Vector2(-116.517998F, -352.946014F), new Vector2(-116.986F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-117.454002F, -354.697998F), new Vector2(-117.688004F, -355.712006F), new Vector2(-117.688004F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-117.688004F, -357.992004F), new Vector2(-117.454002F, -358.993988F), new Vector2(-116.986F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-116.517998F, -360.746002F), new Vector2(-115.870003F, -361.436005F), new Vector2(-115.042F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-114.213997F, -362.444F), new Vector2(-113.260002F, -362.696014F), new Vector2(-112.18F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-111.099998F, -362.696014F), new Vector2(-110.157997F, -362.450012F), new Vector2(-109.353996F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-108.550003F, -361.466003F), new Vector2(-107.919998F, -360.776001F), new Vector2(-107.463997F, -359.888F)); + builder.AddCubicBezier(new Vector2(-107.008003F, -359F), new Vector2(-106.779999F, -357.980011F), new Vector2(-106.779999F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-106.779999F, -355.123993F), new Vector2(-107.272003F, -353.726013F), new Vector2(-108.255997F, -352.634003F)); + builder.AddCubicBezier(new Vector2(-109.239998F, -351.541992F), new Vector2(-110.536003F, -350.996002F), new Vector2(-112.143997F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-113.223999F, -350.996002F), new Vector2(-114.183998F, -351.247986F), new Vector2(-115.024002F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-109.192001F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-108.160004F, -349.286011F), new Vector2(-107.337997F, -350.036011F), new Vector2(-106.725998F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-106.113998F, -351.955994F), new Vector2(-105.772003F, -353.048004F), new Vector2(-105.699997F, -354.272003F)); + builder.AddLine(new Vector2(-105.699997F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-105.772003F, -360.667999F), new Vector2(-106.120003F, -361.765991F), new Vector2(-106.744003F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-107.367996F, -363.661987F), new Vector2(-108.190002F, -364.406006F), new Vector2(-109.209999F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-110.230003F, -365.485992F), new Vector2(-111.388F, -365.756012F), new Vector2(-112.683998F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-114.267998F, -365.756012F), new Vector2(-115.690002F, -365.359985F), new Vector2(-116.949997F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-118.209999F, -363.776001F), new Vector2(-119.206001F, -362.708008F), new Vector2(-119.938004F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-120.669998F, -360.019989F), new Vector2(-121.036003F, -358.507996F), new Vector2(-121.036003F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-121.036003F, -355.14801F), new Vector2(-120.669998F, -353.635986F), new Vector2(-119.938004F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-119.206001F, -350.947998F), new Vector2(-118.209999F, -349.885986F), new Vector2(-116.949997F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-115.690002F, -348.325989F), new Vector2(-114.267998F, -347.936005F), new Vector2(-112.683998F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-111.388F, -347.936005F), new Vector2(-110.223999F, -348.205994F), new Vector2(-109.192001F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1447() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-122.584F, -362.444F)); + builder.AddLine(new Vector2(-122.584F, -365.395996F)); + builder.AddLine(new Vector2(-134.248001F, -365.395996F)); + builder.AddLine(new Vector2(-134.248001F, -362.444F)); + builder.AddLine(new Vector2(-122.584F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-126.795998F, -348.29599F)); + builder.AddLine(new Vector2(-126.795998F, -372.559998F)); + builder.AddLine(new Vector2(-130.035995F, -372.559998F)); + builder.AddLine(new Vector2(-130.035995F, -348.29599F)); + builder.AddLine(new Vector2(-126.795998F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1448() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-138.009995F, -349.339996F)); + builder.AddCubicBezier(new Vector2(-136.869995F, -350.276001F), new Vector2(-136.300003F, -351.548004F), new Vector2(-136.300003F, -353.156006F)); + builder.AddCubicBezier(new Vector2(-136.300003F, -354.212006F), new Vector2(-136.522003F, -355.063995F), new Vector2(-136.966003F, -355.712006F)); + builder.AddCubicBezier(new Vector2(-137.410004F, -356.359985F), new Vector2(-137.979996F, -356.876007F), new Vector2(-138.675995F, -357.26001F)); + builder.AddCubicBezier(new Vector2(-139.371994F, -357.644012F), new Vector2(-140.104004F, -357.950012F), new Vector2(-140.871994F, -358.178009F)); + builder.AddCubicBezier(new Vector2(-141.639999F, -358.406006F), new Vector2(-142.378006F, -358.627991F), new Vector2(-143.085999F, -358.843994F)); + builder.AddCubicBezier(new Vector2(-143.794006F, -359.059998F), new Vector2(-144.363998F, -359.324005F), new Vector2(-144.796005F, -359.635986F)); + builder.AddCubicBezier(new Vector2(-145.227997F, -359.947998F), new Vector2(-145.444F, -360.391998F), new Vector2(-145.444F, -360.967987F)); + builder.AddCubicBezier(new Vector2(-145.444F, -361.519989F), new Vector2(-145.197998F, -361.963989F), new Vector2(-144.705994F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-144.214005F, -362.635986F), new Vector2(-143.5F, -362.803986F), new Vector2(-142.563995F, -362.803986F)); + builder.AddCubicBezier(new Vector2(-141.675995F, -362.803986F), new Vector2(-140.884003F, -362.635986F), new Vector2(-140.188004F, -362.299988F)); + builder.AddCubicBezier(new Vector2(-139.492004F, -361.963989F), new Vector2(-138.891998F, -361.484009F), new Vector2(-138.388F, -360.859985F)); + builder.AddLine(new Vector2(-136.300003F, -362.947998F)); + builder.AddCubicBezier(new Vector2(-136.972F, -363.884003F), new Vector2(-137.830002F, -364.585999F), new Vector2(-138.873993F, -365.053986F)); + builder.AddCubicBezier(new Vector2(-139.917999F, -365.522003F), new Vector2(-141.112F, -365.756012F), new Vector2(-142.455994F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-143.727997F, -365.756012F), new Vector2(-144.820007F, -365.552002F), new Vector2(-145.731995F, -365.144012F)); + builder.AddCubicBezier(new Vector2(-146.643997F, -364.735992F), new Vector2(-147.345993F, -364.153992F), new Vector2(-147.837997F, -363.39801F)); + builder.AddCubicBezier(new Vector2(-148.330002F, -362.641998F), new Vector2(-148.576004F, -361.747986F), new Vector2(-148.576004F, -360.716003F)); + builder.AddCubicBezier(new Vector2(-148.576004F, -359.68399F), new Vector2(-148.354004F, -358.850006F), new Vector2(-147.910004F, -358.213989F)); + builder.AddCubicBezier(new Vector2(-147.466003F, -357.578003F), new Vector2(-146.895996F, -357.079987F), new Vector2(-146.199997F, -356.720001F)); + builder.AddCubicBezier(new Vector2(-145.503998F, -356.359985F), new Vector2(-144.766006F, -356.071991F), new Vector2(-143.985992F, -355.855988F)); + builder.AddCubicBezier(new Vector2(-143.205994F, -355.640015F), new Vector2(-142.468002F, -355.417999F), new Vector2(-141.772003F, -355.190002F)); + builder.AddCubicBezier(new Vector2(-141.076004F, -354.962006F), new Vector2(-140.505997F, -354.674011F), new Vector2(-140.061996F, -354.325989F)); + builder.AddCubicBezier(new Vector2(-139.617996F, -353.977997F), new Vector2(-139.395996F, -353.492004F), new Vector2(-139.395996F, -352.868011F)); + builder.AddCubicBezier(new Vector2(-139.395996F, -352.243988F), new Vector2(-139.671997F, -351.757996F), new Vector2(-140.223999F, -351.410004F)); + builder.AddCubicBezier(new Vector2(-140.776001F, -351.062012F), new Vector2(-141.556F, -350.888F), new Vector2(-142.563995F, -350.888F)); + builder.AddCubicBezier(new Vector2(-143.572006F, -350.888F), new Vector2(-144.483994F, -351.074005F), new Vector2(-145.300003F, -351.446014F)); + builder.AddCubicBezier(new Vector2(-146.115997F, -351.817993F), new Vector2(-146.835999F, -352.388F), new Vector2(-147.460007F, -353.156006F)); + builder.AddLine(new Vector2(-149.548004F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-149.020004F, -350.420013F), new Vector2(-148.401993F, -349.862F), new Vector2(-147.694F, -349.394012F)); + builder.AddCubicBezier(new Vector2(-146.985992F, -348.925995F), new Vector2(-146.199997F, -348.56601F), new Vector2(-145.335999F, -348.313995F)); + builder.AddCubicBezier(new Vector2(-144.472F, -348.062012F), new Vector2(-143.559998F, -347.936005F), new Vector2(-142.600006F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-140.679993F, -347.936005F), new Vector2(-139.149994F, -348.403992F), new Vector2(-138.009995F, -349.339996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1449() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-163.084F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-161.908005F, -349.196014F), new Vector2(-160.899994F, -349.928009F), new Vector2(-160.059998F, -350.888F)); + builder.AddLine(new Vector2(-162.147995F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-162.723999F, -352.339996F), new Vector2(-163.414001F, -351.835999F), new Vector2(-164.218002F, -351.5F)); + builder.AddCubicBezier(new Vector2(-165.022003F, -351.164001F), new Vector2(-165.904007F, -350.996002F), new Vector2(-166.863998F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-168.016006F, -350.996002F), new Vector2(-169.035995F, -351.242004F), new Vector2(-169.923996F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-170.811996F, -352.226013F), new Vector2(-171.496002F, -352.921997F), new Vector2(-171.975998F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-172.455994F, -354.721985F), new Vector2(-172.695999F, -355.772003F), new Vector2(-172.695999F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-172.695999F, -358.14801F), new Vector2(-172.468002F, -359.167999F), new Vector2(-172.011993F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-171.556F, -360.895996F), new Vector2(-170.908005F, -361.567993F), new Vector2(-170.067993F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-169.227997F, -362.528015F), new Vector2(-168.255997F, -362.768005F), new Vector2(-167.151993F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-166.095993F, -362.768005F), new Vector2(-165.195999F, -362.54599F), new Vector2(-164.451996F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-163.707993F, -361.65799F), new Vector2(-163.132004F, -361.033997F), new Vector2(-162.723999F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-162.315994F, -359.425995F), new Vector2(-162.112F, -358.447998F), new Vector2(-162.112F, -357.29599F)); + builder.AddLine(new Vector2(-160.923996F, -358.339996F)); + builder.AddLine(new Vector2(-173.632004F, -358.339996F)); + builder.AddLine(new Vector2(-173.632004F, -355.640015F)); + builder.AddLine(new Vector2(-159.195999F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-159.123993F, -355.976013F), new Vector2(-159.076004F, -356.282013F), new Vector2(-159.052002F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-159.028F, -356.834015F), new Vector2(-159.016006F, -357.09201F), new Vector2(-159.016006F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-159.016006F, -358.963989F), new Vector2(-159.358002F, -360.415985F), new Vector2(-160.042007F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-160.725998F, -362.959991F), new Vector2(-161.679993F, -363.955994F), new Vector2(-162.904007F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-164.128006F, -365.395996F), new Vector2(-165.520004F, -365.756012F), new Vector2(-167.080002F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-168.735992F, -365.756012F), new Vector2(-170.229996F, -365.365997F), new Vector2(-171.561996F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-172.893997F, -363.806F), new Vector2(-173.949997F, -362.743988F), new Vector2(-174.729996F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-175.509995F, -360.056F), new Vector2(-175.899994F, -358.544006F), new Vector2(-175.899994F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-175.899994F, -355.160004F), new Vector2(-175.503998F, -353.635986F), new Vector2(-174.712006F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-173.919998F, -350.947998F), new Vector2(-172.845993F, -349.885986F), new Vector2(-171.490005F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-170.134003F, -348.325989F), new Vector2(-168.591995F, -347.936005F), new Vector2(-166.863998F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-165.520004F, -347.936005F), new Vector2(-164.259995F, -348.187988F), new Vector2(-163.084F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1450() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-180.561996F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-179.421997F, -349.196014F), new Vector2(-178.455994F, -349.903992F), new Vector2(-177.664001F, -350.81601F)); + builder.AddLine(new Vector2(-179.787994F, -352.976013F)); + builder.AddCubicBezier(new Vector2(-180.339996F, -352.35199F), new Vector2(-180.994003F, -351.877991F), new Vector2(-181.75F, -351.553986F)); + builder.AddCubicBezier(new Vector2(-182.505997F, -351.230011F), new Vector2(-183.339996F, -351.067993F), new Vector2(-184.251999F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-185.332001F, -351.067993F), new Vector2(-186.292007F, -351.320007F), new Vector2(-187.132004F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-187.972F, -352.328003F), new Vector2(-188.632004F, -353.011993F), new Vector2(-189.112F, -353.876007F)); + builder.AddCubicBezier(new Vector2(-189.591995F, -354.73999F), new Vector2(-189.832001F, -355.735992F), new Vector2(-189.832001F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-189.832001F, -357.992004F), new Vector2(-189.591995F, -358.988007F), new Vector2(-189.112F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-188.632004F, -360.716003F), new Vector2(-187.972F, -361.394012F), new Vector2(-187.132004F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-186.292007F, -362.377991F), new Vector2(-185.332001F, -362.623993F), new Vector2(-184.251999F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-183.363998F, -362.623993F), new Vector2(-182.535995F, -362.462006F), new Vector2(-181.768005F, -362.138F)); + builder.AddCubicBezier(new Vector2(-181F, -361.813995F), new Vector2(-180.352005F, -361.339996F), new Vector2(-179.824005F, -360.716003F)); + builder.AddLine(new Vector2(-177.664001F, -362.876007F)); + builder.AddCubicBezier(new Vector2(-178.479996F, -363.812012F), new Vector2(-179.451996F, -364.526001F), new Vector2(-180.580002F, -365.018005F)); + builder.AddCubicBezier(new Vector2(-181.707993F, -365.51001F), new Vector2(-182.932007F, -365.756012F), new Vector2(-184.251999F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-185.932007F, -365.756012F), new Vector2(-187.449997F, -365.365997F), new Vector2(-188.806F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-190.162003F, -363.806F), new Vector2(-191.229996F, -362.743988F), new Vector2(-192.009995F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-192.789993F, -360.056F), new Vector2(-193.179993F, -358.544006F), new Vector2(-193.179993F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-193.179993F, -355.208008F), new Vector2(-192.789993F, -353.701996F), new Vector2(-192.009995F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-191.229996F, -350.98999F), new Vector2(-190.162003F, -349.915985F), new Vector2(-188.806F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-187.449997F, -348.332001F), new Vector2(-185.932007F, -347.936005F), new Vector2(-184.251999F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-182.932007F, -347.936005F), new Vector2(-181.701996F, -348.187988F), new Vector2(-180.561996F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1451() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-196.996002F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-196.612F, -369.806F), new Vector2(-196.419998F, -370.303986F), new Vector2(-196.419998F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-196.419998F, -371.480011F), new Vector2(-196.612F, -371.966003F), new Vector2(-196.996002F, -372.362F)); + builder.AddCubicBezier(new Vector2(-197.380005F, -372.757996F), new Vector2(-197.871994F, -372.955994F), new Vector2(-198.472F, -372.955994F)); + builder.AddCubicBezier(new Vector2(-199.072006F, -372.955994F), new Vector2(-199.563995F, -372.757996F), new Vector2(-199.947998F, -372.362F)); + builder.AddCubicBezier(new Vector2(-200.332001F, -371.966003F), new Vector2(-200.524002F, -371.480011F), new Vector2(-200.524002F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-200.524002F, -370.303986F), new Vector2(-200.332001F, -369.806F), new Vector2(-199.947998F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-199.563995F, -369.014008F), new Vector2(-199.072006F, -368.81601F), new Vector2(-198.472F, -368.81601F)); + builder.AddCubicBezier(new Vector2(-197.871994F, -368.81601F), new Vector2(-197.380005F, -369.014008F), new Vector2(-196.996002F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-196.852005F, -348.29599F)); + builder.AddLine(new Vector2(-196.852005F, -365.395996F)); + builder.AddLine(new Vector2(-200.128006F, -365.395996F)); + builder.AddLine(new Vector2(-200.128006F, -348.29599F)); + builder.AddLine(new Vector2(-196.852005F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1452() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-204.880005F, -348.29599F)); + builder.AddLine(new Vector2(-204.880005F, -374F)); + builder.AddLine(new Vector2(-208.119995F, -374F)); + builder.AddLine(new Vector2(-208.119995F, -348.29599F)); + builder.AddLine(new Vector2(-204.880005F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1453() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-223.528F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-224.367996F, -352.328003F), new Vector2(-225.028F, -353.018005F), new Vector2(-225.507996F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-225.988007F, -354.769989F), new Vector2(-226.227997F, -355.772003F), new Vector2(-226.227997F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-226.227997F, -358.003998F), new Vector2(-225.988007F, -358.988007F), new Vector2(-225.507996F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-225.028F, -360.716003F), new Vector2(-224.367996F, -361.394012F), new Vector2(-223.528F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-222.688004F, -362.377991F), new Vector2(-221.740005F, -362.623993F), new Vector2(-220.684006F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-219.580002F, -362.623993F), new Vector2(-218.613998F, -362.377991F), new Vector2(-217.785995F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-216.957993F, -361.394012F), new Vector2(-216.298004F, -360.716003F), new Vector2(-215.806F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-215.313995F, -358.988007F), new Vector2(-215.067993F, -358.003998F), new Vector2(-215.067993F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-215.067993F, -355.772003F), new Vector2(-215.307999F, -354.769989F), new Vector2(-215.787994F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-216.268005F, -353.018005F), new Vector2(-216.927994F, -352.328003F), new Vector2(-217.768005F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-218.608002F, -351.320007F), new Vector2(-219.580002F, -351.067993F), new Vector2(-220.684006F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-221.740005F, -351.067993F), new Vector2(-222.688004F, -351.320007F), new Vector2(-223.528F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-216.130005F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-214.774002F, -349.915985F), new Vector2(-213.699997F, -350.98999F), new Vector2(-212.908005F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-212.115997F, -353.701996F), new Vector2(-211.720001F, -355.220001F), new Vector2(-211.720001F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-211.720001F, -358.556F), new Vector2(-212.115997F, -360.056F), new Vector2(-212.908005F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-213.699997F, -362.743988F), new Vector2(-214.774002F, -363.806F), new Vector2(-216.130005F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-217.485992F, -365.365997F), new Vector2(-219.003998F, -365.756012F), new Vector2(-220.684006F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-222.339996F, -365.756012F), new Vector2(-223.839996F, -365.359985F), new Vector2(-225.184006F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-226.528F, -363.776001F), new Vector2(-227.595993F, -362.713989F), new Vector2(-228.388F, -361.381989F)); + builder.AddCubicBezier(new Vector2(-229.179993F, -360.049988F), new Vector2(-229.576004F, -358.556F), new Vector2(-229.576004F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-229.576004F, -355.220001F), new Vector2(-229.179993F, -353.701996F), new Vector2(-228.388F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-227.595993F, -350.98999F), new Vector2(-226.528F, -349.915985F), new Vector2(-225.184006F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-223.839996F, -348.332001F), new Vector2(-222.339996F, -347.936005F), new Vector2(-220.684006F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-219.003998F, -347.936005F), new Vector2(-217.485992F, -348.332001F), new Vector2(-216.130005F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1454() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-243.778F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-244.606003F, -352.256012F), new Vector2(-245.242004F, -352.946014F), new Vector2(-245.686005F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-246.130005F, -354.697998F), new Vector2(-246.352005F, -355.700012F), new Vector2(-246.352005F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-246.352005F, -357.980011F), new Vector2(-246.123993F, -358.993988F), new Vector2(-245.667999F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-245.212006F, -360.746002F), new Vector2(-244.576004F, -361.436005F), new Vector2(-243.759995F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-242.944F, -362.444F), new Vector2(-242.007996F, -362.696014F), new Vector2(-240.951996F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-239.871994F, -362.696014F), new Vector2(-238.923996F, -362.444F), new Vector2(-238.108002F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-237.292007F, -361.436005F), new Vector2(-236.649994F, -360.746002F), new Vector2(-236.182007F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-235.714005F, -358.993988F), new Vector2(-235.479996F, -357.992004F), new Vector2(-235.479996F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-235.479996F, -355.712006F), new Vector2(-235.714005F, -354.697998F), new Vector2(-236.182007F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-236.649994F, -352.946014F), new Vector2(-237.292007F, -352.256012F), new Vector2(-238.108002F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-238.923996F, -351.247986F), new Vector2(-239.871994F, -350.996002F), new Vector2(-240.951996F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-242.007996F, -350.996002F), new Vector2(-242.949997F, -351.247986F), new Vector2(-243.778F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-246.171997F, -341.131989F)); + builder.AddLine(new Vector2(-246.171997F, -352.579987F)); + builder.AddLine(new Vector2(-246.783997F, -356.756012F)); + builder.AddLine(new Vector2(-246.171997F, -360.895996F)); + builder.AddLine(new Vector2(-246.171997F, -365.395996F)); + builder.AddLine(new Vector2(-249.412003F, -365.395996F)); + builder.AddLine(new Vector2(-249.412003F, -341.131989F)); + builder.AddLine(new Vector2(-246.171997F, -341.131989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-236.182007F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-234.921997F, -349.885986F), new Vector2(-233.932007F, -350.947998F), new Vector2(-233.212006F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-232.492004F, -353.635986F), new Vector2(-232.132004F, -355.14801F), new Vector2(-232.132004F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-232.132004F, -358.507996F), new Vector2(-232.492004F, -360.019989F), new Vector2(-233.212006F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-233.932007F, -362.708008F), new Vector2(-234.921997F, -363.776001F), new Vector2(-236.182007F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-237.442001F, -365.359985F), new Vector2(-238.852005F, -365.756012F), new Vector2(-240.412003F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-241.684006F, -365.756012F), new Vector2(-242.841995F, -365.485992F), new Vector2(-243.886002F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-244.929993F, -364.406006F), new Vector2(-245.770004F, -363.661987F), new Vector2(-246.406006F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-247.042007F, -361.765991F), new Vector2(-247.395996F, -360.667999F), new Vector2(-247.468002F, -359.420013F)); + builder.AddLine(new Vector2(-247.468002F, -354.272003F)); + builder.AddCubicBezier(new Vector2(-247.395996F, -353.048004F), new Vector2(-247.048004F, -351.955994F), new Vector2(-246.423996F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-245.800003F, -350.036011F), new Vector2(-244.966003F, -349.286011F), new Vector2(-243.921997F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-242.878006F, -348.205994F), new Vector2(-241.707993F, -347.936005F), new Vector2(-240.412003F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-238.852005F, -347.936005F), new Vector2(-237.442001F, -348.325989F), new Vector2(-236.182007F, -349.105988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1455() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-264.459991F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-263.283997F, -349.196014F), new Vector2(-262.276001F, -349.928009F), new Vector2(-261.436005F, -350.888F)); + builder.AddLine(new Vector2(-263.523987F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-264.100006F, -352.339996F), new Vector2(-264.790009F, -351.835999F), new Vector2(-265.593994F, -351.5F)); + builder.AddCubicBezier(new Vector2(-266.39801F, -351.164001F), new Vector2(-267.279999F, -350.996002F), new Vector2(-268.23999F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-269.391998F, -350.996002F), new Vector2(-270.411987F, -351.242004F), new Vector2(-271.299988F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-272.187988F, -352.226013F), new Vector2(-272.872009F, -352.921997F), new Vector2(-273.35199F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-273.832001F, -354.721985F), new Vector2(-274.071991F, -355.772003F), new Vector2(-274.071991F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-274.071991F, -358.14801F), new Vector2(-273.843994F, -359.167999F), new Vector2(-273.388F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-272.932007F, -360.895996F), new Vector2(-272.283997F, -361.567993F), new Vector2(-271.444F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-270.604004F, -362.528015F), new Vector2(-269.631989F, -362.768005F), new Vector2(-268.528015F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-267.471985F, -362.768005F), new Vector2(-266.571991F, -362.54599F), new Vector2(-265.828003F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-265.084015F, -361.65799F), new Vector2(-264.507996F, -361.033997F), new Vector2(-264.100006F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-263.691986F, -359.425995F), new Vector2(-263.488007F, -358.447998F), new Vector2(-263.488007F, -357.29599F)); + builder.AddLine(new Vector2(-262.299988F, -358.339996F)); + builder.AddLine(new Vector2(-275.007996F, -358.339996F)); + builder.AddLine(new Vector2(-275.007996F, -355.640015F)); + builder.AddLine(new Vector2(-260.571991F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-260.5F, -355.976013F), new Vector2(-260.451996F, -356.282013F), new Vector2(-260.428009F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-260.403992F, -356.834015F), new Vector2(-260.391998F, -357.09201F), new Vector2(-260.391998F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-260.391998F, -358.963989F), new Vector2(-260.734009F, -360.415985F), new Vector2(-261.417999F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-262.10199F, -362.959991F), new Vector2(-263.056F, -363.955994F), new Vector2(-264.279999F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-265.503998F, -365.395996F), new Vector2(-266.895996F, -365.756012F), new Vector2(-268.455994F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-270.112F, -365.756012F), new Vector2(-271.605988F, -365.365997F), new Vector2(-272.937988F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-274.269989F, -363.806F), new Vector2(-275.325989F, -362.743988F), new Vector2(-276.105988F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-276.885986F, -360.056F), new Vector2(-277.276001F, -358.544006F), new Vector2(-277.276001F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-277.276001F, -355.160004F), new Vector2(-276.880005F, -353.635986F), new Vector2(-276.088013F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-275.29599F, -350.947998F), new Vector2(-274.221985F, -349.885986F), new Vector2(-272.865997F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-271.51001F, -348.325989F), new Vector2(-269.967987F, -347.936005F), new Vector2(-268.23999F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-266.895996F, -347.936005F), new Vector2(-265.635986F, -348.187988F), new Vector2(-264.459991F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1456() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-292.64801F, -348.29599F)); + builder.AddLine(new Vector2(-292.64801F, -374F)); + builder.AddLine(new Vector2(-295.888F, -374F)); + builder.AddLine(new Vector2(-295.888F, -348.29599F)); + builder.AddLine(new Vector2(-292.64801F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-280.552002F, -348.29599F)); + builder.AddLine(new Vector2(-280.552002F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-280.552002F, -360.26001F), new Vector2(-280.839996F, -361.447998F), new Vector2(-281.415985F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-281.992004F, -363.511993F), new Vector2(-282.778015F, -364.31601F), new Vector2(-283.773987F, -364.891998F)); + builder.AddCubicBezier(new Vector2(-284.769989F, -365.467987F), new Vector2(-285.915985F, -365.756012F), new Vector2(-287.212006F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-288.507996F, -365.756012F), new Vector2(-289.671997F, -365.462006F), new Vector2(-290.70401F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-291.735992F, -364.286011F), new Vector2(-292.540009F, -363.488007F), new Vector2(-293.115997F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-293.691986F, -361.471985F), new Vector2(-293.980011F, -360.320007F), new Vector2(-293.980011F, -359.023987F)); + builder.AddLine(new Vector2(-292.64801F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-292.64801F, -359.131989F), new Vector2(-292.455994F, -359.899994F), new Vector2(-292.071991F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-291.687988F, -361.243988F), new Vector2(-291.160004F, -361.772003F), new Vector2(-290.488007F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-289.81601F, -362.540009F), new Vector2(-289.048004F, -362.731995F), new Vector2(-288.18399F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-286.888F, -362.731995F), new Vector2(-285.838013F, -362.312012F), new Vector2(-285.033997F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-284.230011F, -360.631989F), new Vector2(-283.828003F, -359.563995F), new Vector2(-283.828003F, -358.268005F)); + builder.AddLine(new Vector2(-283.828003F, -348.29599F)); + builder.AddLine(new Vector2(-280.552002F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1457() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-299.056F, -362.444F)); + builder.AddLine(new Vector2(-299.056F, -365.395996F)); + builder.AddLine(new Vector2(-310.720001F, -365.395996F)); + builder.AddLine(new Vector2(-310.720001F, -362.444F)); + builder.AddLine(new Vector2(-299.056F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-303.268005F, -348.29599F)); + builder.AddLine(new Vector2(-303.268005F, -372.559998F)); + builder.AddLine(new Vector2(-306.507996F, -372.559998F)); + builder.AddLine(new Vector2(-306.507996F, -348.29599F)); + builder.AddLine(new Vector2(-303.268005F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1458() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-321.303986F, -374F)); + builder.AddLine(new Vector2(-324.579987F, -374F)); + builder.AddLine(new Vector2(-324.579987F, -361.220001F)); + builder.AddLine(new Vector2(-323.967987F, -357.079987F)); + builder.AddLine(new Vector2(-324.579987F, -352.903992F)); + builder.AddLine(new Vector2(-324.579987F, -348.29599F)); + builder.AddLine(new Vector2(-321.303986F, -348.29599F)); + builder.AddLine(new Vector2(-321.303986F, -374F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-332.626007F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-333.45401F, -352.226013F), new Vector2(-334.10199F, -352.915985F), new Vector2(-334.570007F, -353.803986F)); + builder.AddCubicBezier(new Vector2(-335.037994F, -354.691986F), new Vector2(-335.272003F, -355.712006F), new Vector2(-335.272003F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-335.272003F, -358.015991F), new Vector2(-335.037994F, -359.029999F), new Vector2(-334.570007F, -359.906006F)); + builder.AddCubicBezier(new Vector2(-334.10199F, -360.782013F), new Vector2(-333.459991F, -361.466003F), new Vector2(-332.644012F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-331.828003F, -362.450012F), new Vector2(-330.880005F, -362.696014F), new Vector2(-329.799988F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-328.720001F, -362.696014F), new Vector2(-327.772003F, -362.444F), new Vector2(-326.955994F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-326.140015F, -361.436005F), new Vector2(-325.503998F, -360.746002F), new Vector2(-325.048004F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-324.59201F, -358.993988F), new Vector2(-324.364014F, -357.980011F), new Vector2(-324.364014F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-324.364014F, -355.700012F), new Vector2(-324.59201F, -354.697998F), new Vector2(-325.048004F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-325.503998F, -352.946014F), new Vector2(-326.140015F, -352.256012F), new Vector2(-326.955994F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-327.772003F, -351.247986F), new Vector2(-328.720001F, -350.996002F), new Vector2(-329.799988F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-330.855988F, -350.996002F), new Vector2(-331.798004F, -351.242004F), new Vector2(-332.626007F, -351.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-326.812012F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-325.779999F, -349.286011F), new Vector2(-324.951996F, -350.036011F), new Vector2(-324.328003F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-323.70401F, -351.955994F), new Vector2(-323.355988F, -353.048004F), new Vector2(-323.283997F, -354.272003F)); + builder.AddLine(new Vector2(-323.283997F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-323.355988F, -360.667999F), new Vector2(-323.709991F, -361.765991F), new Vector2(-324.346008F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-324.981995F, -363.661987F), new Vector2(-325.81601F, -364.406006F), new Vector2(-326.847992F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-327.880005F, -365.485992F), new Vector2(-329.044006F, -365.756012F), new Vector2(-330.339996F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-331.899994F, -365.756012F), new Vector2(-333.303986F, -365.359985F), new Vector2(-334.552002F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-335.799988F, -363.776001F), new Vector2(-336.790009F, -362.708008F), new Vector2(-337.522003F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-338.253998F, -360.019989F), new Vector2(-338.619995F, -358.507996F), new Vector2(-338.619995F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-338.619995F, -355.14801F), new Vector2(-338.253998F, -353.635986F), new Vector2(-337.522003F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-336.790009F, -350.947998F), new Vector2(-335.799988F, -349.885986F), new Vector2(-334.552002F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-333.303986F, -348.325989F), new Vector2(-331.899994F, -347.936005F), new Vector2(-330.339996F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-329.019989F, -347.936005F), new Vector2(-327.843994F, -348.205994F), new Vector2(-326.812012F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1459() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-354.028015F, -348.29599F)); + builder.AddLine(new Vector2(-354.028015F, -365.395996F)); + builder.AddLine(new Vector2(-357.268005F, -365.395996F)); + builder.AddLine(new Vector2(-357.268005F, -348.29599F)); + builder.AddLine(new Vector2(-354.028015F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-341.932007F, -348.29599F)); + builder.AddLine(new Vector2(-341.932007F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-341.932007F, -360.09201F), new Vector2(-342.220001F, -361.201996F), new Vector2(-342.79599F, -362.246002F)); + builder.AddCubicBezier(new Vector2(-343.372009F, -363.290009F), new Vector2(-344.15799F, -364.135986F), new Vector2(-345.153992F, -364.783997F)); + builder.AddCubicBezier(new Vector2(-346.149994F, -365.432007F), new Vector2(-347.29599F, -365.756012F), new Vector2(-348.59201F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-349.888F, -365.756012F), new Vector2(-351.052002F, -365.462006F), new Vector2(-352.084015F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-353.115997F, -364.286011F), new Vector2(-353.920013F, -363.488007F), new Vector2(-354.496002F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-355.071991F, -361.471985F), new Vector2(-355.359985F, -360.320007F), new Vector2(-355.359985F, -359.023987F)); + builder.AddLine(new Vector2(-354.028015F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-354.028015F, -359.131989F), new Vector2(-353.835999F, -359.899994F), new Vector2(-353.451996F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-353.067993F, -361.243988F), new Vector2(-352.540009F, -361.772003F), new Vector2(-351.868011F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-351.196014F, -362.540009F), new Vector2(-350.428009F, -362.731995F), new Vector2(-349.563995F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-348.268005F, -362.731995F), new Vector2(-347.217987F, -362.312012F), new Vector2(-346.414001F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-345.609985F, -360.631989F), new Vector2(-345.208008F, -359.563995F), new Vector2(-345.208008F, -358.268005F)); + builder.AddLine(new Vector2(-345.208008F, -348.29599F)); + builder.AddLine(new Vector2(-341.932007F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1460() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-361.984009F, -348.29599F)); + builder.AddLine(new Vector2(-361.984009F, -365.395996F)); + builder.AddLine(new Vector2(-365.26001F, -365.395996F)); + builder.AddLine(new Vector2(-365.26001F, -361.220001F)); + builder.AddLine(new Vector2(-364.64801F, -357.079987F)); + builder.AddLine(new Vector2(-365.26001F, -352.903992F)); + builder.AddLine(new Vector2(-365.26001F, -348.29599F)); + builder.AddLine(new Vector2(-361.984009F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-373.287994F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-374.127991F, -352.256012F), new Vector2(-374.782013F, -352.946014F), new Vector2(-375.25F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-375.717987F, -354.697998F), new Vector2(-375.951996F, -355.712006F), new Vector2(-375.951996F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-375.951996F, -357.992004F), new Vector2(-375.717987F, -358.993988F), new Vector2(-375.25F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-374.782013F, -360.746002F), new Vector2(-374.134003F, -361.436005F), new Vector2(-373.306F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-372.477997F, -362.444F), new Vector2(-371.523987F, -362.696014F), new Vector2(-370.444F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-369.364014F, -362.696014F), new Vector2(-368.421997F, -362.450012F), new Vector2(-367.618011F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-366.813995F, -361.466003F), new Vector2(-366.18399F, -360.776001F), new Vector2(-365.727997F, -359.888F)); + builder.AddCubicBezier(new Vector2(-365.272003F, -359F), new Vector2(-365.044006F, -357.980011F), new Vector2(-365.044006F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-365.044006F, -355.123993F), new Vector2(-365.536011F, -353.726013F), new Vector2(-366.519989F, -352.634003F)); + builder.AddCubicBezier(new Vector2(-367.503998F, -351.541992F), new Vector2(-368.799988F, -350.996002F), new Vector2(-370.40799F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-371.488007F, -350.996002F), new Vector2(-372.447998F, -351.247986F), new Vector2(-373.287994F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-367.455994F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-366.424011F, -349.286011F), new Vector2(-365.60199F, -350.036011F), new Vector2(-364.98999F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-364.377991F, -351.955994F), new Vector2(-364.036011F, -353.048004F), new Vector2(-363.963989F, -354.272003F)); + builder.AddLine(new Vector2(-363.963989F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-364.036011F, -360.667999F), new Vector2(-364.384003F, -361.765991F), new Vector2(-365.007996F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-365.631989F, -363.661987F), new Vector2(-366.45401F, -364.406006F), new Vector2(-367.473999F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-368.493988F, -365.485992F), new Vector2(-369.652008F, -365.756012F), new Vector2(-370.947998F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-372.532013F, -365.756012F), new Vector2(-373.95401F, -365.359985F), new Vector2(-375.213989F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-376.473999F, -363.776001F), new Vector2(-377.470001F, -362.708008F), new Vector2(-378.201996F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-378.93399F, -360.019989F), new Vector2(-379.299988F, -358.507996F), new Vector2(-379.299988F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-379.299988F, -355.14801F), new Vector2(-378.93399F, -353.635986F), new Vector2(-378.201996F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-377.470001F, -350.947998F), new Vector2(-376.473999F, -349.885986F), new Vector2(-375.213989F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-373.95401F, -348.325989F), new Vector2(-372.532013F, -347.936005F), new Vector2(-370.947998F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-369.652008F, -347.936005F), new Vector2(-368.488007F, -348.205994F), new Vector2(-367.455994F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1461() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-388.839996F, -362.444F)); + builder.AddLine(new Vector2(-388.839996F, -365.395996F)); + builder.AddLine(new Vector2(-400.503998F, -365.395996F)); + builder.AddLine(new Vector2(-400.503998F, -362.444F)); + builder.AddLine(new Vector2(-388.839996F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-393.052002F, -348.29599F)); + builder.AddLine(new Vector2(-393.052002F, -372.559998F)); + builder.AddLine(new Vector2(-396.291992F, -372.559998F)); + builder.AddLine(new Vector2(-396.291992F, -348.29599F)); + builder.AddLine(new Vector2(-393.052002F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1462() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-415.191986F, -348.29599F)); + builder.AddLine(new Vector2(-415.191986F, -365.395996F)); + builder.AddLine(new Vector2(-418.432007F, -365.395996F)); + builder.AddLine(new Vector2(-418.432007F, -348.29599F)); + builder.AddLine(new Vector2(-415.191986F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-403.096008F, -348.29599F)); + builder.AddLine(new Vector2(-403.096008F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-403.096008F, -360.09201F), new Vector2(-403.384003F, -361.201996F), new Vector2(-403.959991F, -362.246002F)); + builder.AddCubicBezier(new Vector2(-404.536011F, -363.290009F), new Vector2(-405.321991F, -364.135986F), new Vector2(-406.317993F, -364.783997F)); + builder.AddCubicBezier(new Vector2(-407.313995F, -365.432007F), new Vector2(-408.459991F, -365.756012F), new Vector2(-409.756012F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-411.052002F, -365.756012F), new Vector2(-412.216003F, -365.462006F), new Vector2(-413.247986F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-414.279999F, -364.286011F), new Vector2(-415.084015F, -363.488007F), new Vector2(-415.660004F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-416.235992F, -361.471985F), new Vector2(-416.523987F, -360.320007F), new Vector2(-416.523987F, -359.023987F)); + builder.AddLine(new Vector2(-415.191986F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-415.191986F, -359.131989F), new Vector2(-415F, -359.899994F), new Vector2(-414.615997F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-414.231995F, -361.243988F), new Vector2(-413.70401F, -361.772003F), new Vector2(-413.032013F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-412.359985F, -362.540009F), new Vector2(-411.59201F, -362.731995F), new Vector2(-410.727997F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-409.432007F, -362.731995F), new Vector2(-408.381989F, -362.312012F), new Vector2(-407.578003F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-406.773987F, -360.631989F), new Vector2(-406.372009F, -359.563995F), new Vector2(-406.372009F, -358.268005F)); + builder.AddLine(new Vector2(-406.372009F, -348.29599F)); + builder.AddLine(new Vector2(-403.096008F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1463() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-426.028015F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-424.85199F, -349.196014F), new Vector2(-423.843994F, -349.928009F), new Vector2(-423.003998F, -350.888F)); + builder.AddLine(new Vector2(-425.09201F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-425.667999F, -352.339996F), new Vector2(-426.358002F, -351.835999F), new Vector2(-427.161987F, -351.5F)); + builder.AddCubicBezier(new Vector2(-427.966003F, -351.164001F), new Vector2(-428.847992F, -350.996002F), new Vector2(-429.808014F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-430.959991F, -350.996002F), new Vector2(-431.980011F, -351.242004F), new Vector2(-432.868011F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-433.756012F, -352.226013F), new Vector2(-434.440002F, -352.921997F), new Vector2(-434.920013F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-435.399994F, -354.721985F), new Vector2(-435.640015F, -355.772003F), new Vector2(-435.640015F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-435.640015F, -358.14801F), new Vector2(-435.411987F, -359.167999F), new Vector2(-434.955994F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-434.5F, -360.895996F), new Vector2(-433.85199F, -361.567993F), new Vector2(-433.011993F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-432.171997F, -362.528015F), new Vector2(-431.200012F, -362.768005F), new Vector2(-430.096008F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-429.040009F, -362.768005F), new Vector2(-428.140015F, -362.54599F), new Vector2(-427.395996F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-426.652008F, -361.65799F), new Vector2(-426.075989F, -361.033997F), new Vector2(-425.667999F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-425.26001F, -359.425995F), new Vector2(-425.056F, -358.447998F), new Vector2(-425.056F, -357.29599F)); + builder.AddLine(new Vector2(-423.868011F, -358.339996F)); + builder.AddLine(new Vector2(-436.575989F, -358.339996F)); + builder.AddLine(new Vector2(-436.575989F, -355.640015F)); + builder.AddLine(new Vector2(-422.140015F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-422.067993F, -355.976013F), new Vector2(-422.019989F, -356.282013F), new Vector2(-421.996002F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-421.971985F, -356.834015F), new Vector2(-421.959991F, -357.09201F), new Vector2(-421.959991F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-421.959991F, -358.963989F), new Vector2(-422.302002F, -360.415985F), new Vector2(-422.985992F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-423.670013F, -362.959991F), new Vector2(-424.623993F, -363.955994F), new Vector2(-425.847992F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-427.071991F, -365.395996F), new Vector2(-428.463989F, -365.756012F), new Vector2(-430.023987F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-431.679993F, -365.756012F), new Vector2(-433.174011F, -365.365997F), new Vector2(-434.506012F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-435.838013F, -363.806F), new Vector2(-436.894012F, -362.743988F), new Vector2(-437.674011F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-438.45401F, -360.056F), new Vector2(-438.843994F, -358.544006F), new Vector2(-438.843994F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-438.843994F, -355.160004F), new Vector2(-438.447998F, -353.635986F), new Vector2(-437.656006F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-436.864014F, -350.947998F), new Vector2(-435.790009F, -349.885986F), new Vector2(-434.43399F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-433.078003F, -348.325989F), new Vector2(-431.536011F, -347.936005F), new Vector2(-429.808014F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-428.463989F, -347.936005F), new Vector2(-427.20401F, -348.187988F), new Vector2(-426.028015F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1464() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-442.119995F, -348.29599F)); + builder.AddLine(new Vector2(-442.119995F, -359.276001F)); + builder.AddCubicBezier(new Vector2(-442.119995F, -360.619995F), new Vector2(-442.414001F, -361.772003F), new Vector2(-443.002014F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-443.589996F, -363.691986F), new Vector2(-444.376007F, -364.436005F), new Vector2(-445.359985F, -364.963989F)); + builder.AddCubicBezier(new Vector2(-446.343994F, -365.492004F), new Vector2(-447.459991F, -365.756012F), new Vector2(-448.708008F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-449.90799F, -365.756012F), new Vector2(-451.011993F, -365.485992F), new Vector2(-452.019989F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-453.028015F, -364.406006F), new Vector2(-453.850006F, -363.661987F), new Vector2(-454.485992F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-455.122009F, -361.765991F), new Vector2(-455.476013F, -360.631989F), new Vector2(-455.548004F, -359.312012F)); + builder.AddLine(new Vector2(-453.712006F, -358.627991F)); + builder.AddCubicBezier(new Vector2(-453.712006F, -359.492004F), new Vector2(-453.519989F, -360.223999F), new Vector2(-453.135986F, -360.824005F)); + builder.AddCubicBezier(new Vector2(-452.752014F, -361.424011F), new Vector2(-452.242004F, -361.891998F), new Vector2(-451.605988F, -362.227997F)); + builder.AddCubicBezier(new Vector2(-450.970001F, -362.563995F), new Vector2(-450.256012F, -362.731995F), new Vector2(-449.463989F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-448.312012F, -362.731995F), new Vector2(-447.346008F, -362.365997F), new Vector2(-446.56601F, -361.634003F)); + builder.AddCubicBezier(new Vector2(-445.786011F, -360.902008F), new Vector2(-445.395996F, -359.899994F), new Vector2(-445.395996F, -358.627991F)); + builder.AddLine(new Vector2(-445.395996F, -348.29599F)); + builder.AddLine(new Vector2(-442.119995F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-453.712006F, -348.29599F)); + builder.AddLine(new Vector2(-453.712006F, -359.312012F)); + builder.AddCubicBezier(new Vector2(-453.712006F, -360.631989F), new Vector2(-453.993988F, -361.772003F), new Vector2(-454.558014F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-455.122009F, -363.691986F), new Vector2(-455.890015F, -364.436005F), new Vector2(-456.862F, -364.963989F)); + builder.AddCubicBezier(new Vector2(-457.834015F, -365.492004F), new Vector2(-458.920013F, -365.756012F), new Vector2(-460.119995F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-461.343994F, -365.756012F), new Vector2(-462.447998F, -365.485992F), new Vector2(-463.432007F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-464.415985F, -364.406006F), new Vector2(-465.190002F, -363.656006F), new Vector2(-465.753998F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-466.317993F, -361.735992F), new Vector2(-466.600006F, -360.608002F), new Vector2(-466.600006F, -359.312012F)); + builder.AddLine(new Vector2(-465.268005F, -358.627991F)); + builder.AddCubicBezier(new Vector2(-465.268005F, -359.492004F), new Vector2(-465.075989F, -360.223999F), new Vector2(-464.691986F, -360.824005F)); + builder.AddCubicBezier(new Vector2(-464.308014F, -361.424011F), new Vector2(-463.803986F, -361.891998F), new Vector2(-463.179993F, -362.227997F)); + builder.AddCubicBezier(new Vector2(-462.556F, -362.563995F), new Vector2(-461.847992F, -362.731995F), new Vector2(-461.056F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-459.880005F, -362.731995F), new Vector2(-458.902008F, -362.365997F), new Vector2(-458.122009F, -361.634003F)); + builder.AddCubicBezier(new Vector2(-457.34201F, -360.902008F), new Vector2(-456.951996F, -359.899994F), new Vector2(-456.951996F, -358.627991F)); + builder.AddLine(new Vector2(-456.951996F, -348.29599F)); + builder.AddLine(new Vector2(-453.712006F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-465.268005F, -348.29599F)); + builder.AddLine(new Vector2(-465.268005F, -365.395996F)); + builder.AddLine(new Vector2(-468.507996F, -365.395996F)); + builder.AddLine(new Vector2(-468.507996F, -348.29599F)); + builder.AddLine(new Vector2(-465.268005F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1465() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-484.996002F, -348.29599F)); + builder.AddLine(new Vector2(-484.996002F, -365.395996F)); + builder.AddLine(new Vector2(-488.235992F, -365.395996F)); + builder.AddLine(new Vector2(-488.235992F, -348.29599F)); + builder.AddLine(new Vector2(-484.996002F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-472.899994F, -348.29599F)); + builder.AddLine(new Vector2(-472.899994F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-472.899994F, -360.09201F), new Vector2(-473.187988F, -361.201996F), new Vector2(-473.764008F, -362.246002F)); + builder.AddCubicBezier(new Vector2(-474.339996F, -363.290009F), new Vector2(-475.126007F, -364.135986F), new Vector2(-476.122009F, -364.783997F)); + builder.AddCubicBezier(new Vector2(-477.118011F, -365.432007F), new Vector2(-478.264008F, -365.756012F), new Vector2(-479.559998F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-480.855988F, -365.756012F), new Vector2(-482.019989F, -365.462006F), new Vector2(-483.052002F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-484.084015F, -364.286011F), new Vector2(-484.888F, -363.488007F), new Vector2(-485.463989F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-486.040009F, -361.471985F), new Vector2(-486.328003F, -360.320007F), new Vector2(-486.328003F, -359.023987F)); + builder.AddLine(new Vector2(-484.996002F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-484.996002F, -359.131989F), new Vector2(-484.803986F, -359.899994F), new Vector2(-484.420013F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-484.036011F, -361.243988F), new Vector2(-483.507996F, -361.772003F), new Vector2(-482.835999F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-482.164001F, -362.540009F), new Vector2(-481.395996F, -362.731995F), new Vector2(-480.532013F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-479.235992F, -362.731995F), new Vector2(-478.186005F, -362.312012F), new Vector2(-477.381989F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-476.578003F, -360.631989F), new Vector2(-476.175995F, -359.563995F), new Vector2(-476.175995F, -358.268005F)); + builder.AddLine(new Vector2(-476.175995F, -348.29599F)); + builder.AddLine(new Vector2(-472.899994F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1466() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-498.35199F, -361.544006F)); + builder.AddCubicBezier(new Vector2(-497.584015F, -362.312012F), new Vector2(-496.600006F, -362.696014F), new Vector2(-495.399994F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-494.824005F, -362.696014F), new Vector2(-494.320007F, -362.612F), new Vector2(-493.888F, -362.444F)); + builder.AddCubicBezier(new Vector2(-493.455994F, -362.276001F), new Vector2(-493.059998F, -362F), new Vector2(-492.700012F, -361.615997F)); + builder.AddLine(new Vector2(-490.575989F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-491.175995F, -364.507996F), new Vector2(-491.824005F, -365.006012F), new Vector2(-492.519989F, -365.306F)); + builder.AddCubicBezier(new Vector2(-493.216003F, -365.605988F), new Vector2(-493.996002F, -365.756012F), new Vector2(-494.859985F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-496.756012F, -365.756012F), new Vector2(-498.208008F, -365.108002F), new Vector2(-499.216003F, -363.812012F)); + builder.AddCubicBezier(new Vector2(-500.223999F, -362.515991F), new Vector2(-500.727997F, -360.776001F), new Vector2(-500.727997F, -358.59201F)); + builder.AddLine(new Vector2(-499.503998F, -358.015991F)); + builder.AddCubicBezier(new Vector2(-499.503998F, -359.600006F), new Vector2(-499.119995F, -360.776001F), new Vector2(-498.35199F, -361.544006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-499.503998F, -348.29599F)); + builder.AddLine(new Vector2(-499.503998F, -365.395996F)); + builder.AddLine(new Vector2(-502.743988F, -365.395996F)); + builder.AddLine(new Vector2(-502.743988F, -348.29599F)); + builder.AddLine(new Vector2(-499.503998F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1467() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-510.339996F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-509.164001F, -349.196014F), new Vector2(-508.156006F, -349.928009F), new Vector2(-507.31601F, -350.888F)); + builder.AddLine(new Vector2(-509.403992F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-509.980011F, -352.339996F), new Vector2(-510.670013F, -351.835999F), new Vector2(-511.473999F, -351.5F)); + builder.AddCubicBezier(new Vector2(-512.278015F, -351.164001F), new Vector2(-513.159973F, -350.996002F), new Vector2(-514.119995F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-515.271973F, -350.996002F), new Vector2(-516.291992F, -351.242004F), new Vector2(-517.179993F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-518.067993F, -352.226013F), new Vector2(-518.752014F, -352.921997F), new Vector2(-519.231995F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-519.711975F, -354.721985F), new Vector2(-519.952026F, -355.772003F), new Vector2(-519.952026F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-519.952026F, -358.14801F), new Vector2(-519.723999F, -359.167999F), new Vector2(-519.268005F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-518.812012F, -360.895996F), new Vector2(-518.164001F, -361.567993F), new Vector2(-517.323975F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-516.484009F, -362.528015F), new Vector2(-515.512024F, -362.768005F), new Vector2(-514.40802F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-513.35199F, -362.768005F), new Vector2(-512.452026F, -362.54599F), new Vector2(-511.708008F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-510.963989F, -361.65799F), new Vector2(-510.388F, -361.033997F), new Vector2(-509.980011F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-509.571991F, -359.425995F), new Vector2(-509.368011F, -358.447998F), new Vector2(-509.368011F, -357.29599F)); + builder.AddLine(new Vector2(-508.179993F, -358.339996F)); + builder.AddLine(new Vector2(-520.888F, -358.339996F)); + builder.AddLine(new Vector2(-520.888F, -355.640015F)); + builder.AddLine(new Vector2(-506.451996F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-506.380005F, -355.976013F), new Vector2(-506.332001F, -356.282013F), new Vector2(-506.308014F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-506.283997F, -356.834015F), new Vector2(-506.272003F, -357.09201F), new Vector2(-506.272003F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-506.272003F, -358.963989F), new Vector2(-506.614014F, -360.415985F), new Vector2(-507.298004F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-507.981995F, -362.959991F), new Vector2(-508.936005F, -363.955994F), new Vector2(-510.160004F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-511.384003F, -365.395996F), new Vector2(-512.776001F, -365.756012F), new Vector2(-514.335999F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-515.992004F, -365.756012F), new Vector2(-517.486023F, -365.365997F), new Vector2(-518.817993F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-520.150024F, -363.806F), new Vector2(-521.205994F, -362.743988F), new Vector2(-521.986023F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-522.765991F, -360.056F), new Vector2(-523.156006F, -358.544006F), new Vector2(-523.156006F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-523.156006F, -355.160004F), new Vector2(-522.76001F, -353.635986F), new Vector2(-521.968018F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-521.176025F, -350.947998F), new Vector2(-520.10199F, -349.885986F), new Vector2(-518.745972F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-517.390015F, -348.325989F), new Vector2(-515.848022F, -347.936005F), new Vector2(-514.119995F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-512.776001F, -347.936005F), new Vector2(-511.515991F, -348.187988F), new Vector2(-510.339996F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1468() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-532.012024F, -348.29599F)); + builder.AddLine(new Vector2(-524.164001F, -365.395996F)); + builder.AddLine(new Vector2(-527.619995F, -365.395996F)); + builder.AddLine(new Vector2(-533.955994F, -350.959991F)); + builder.AddLine(new Vector2(-531.867981F, -350.959991F)); + builder.AddLine(new Vector2(-538.16803F, -365.395996F)); + builder.AddLine(new Vector2(-541.768005F, -365.395996F)); + builder.AddLine(new Vector2(-533.919983F, -348.29599F)); + builder.AddLine(new Vector2(-532.012024F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1469() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-554.547974F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-555.388F, -352.328003F), new Vector2(-556.047974F, -353.018005F), new Vector2(-556.528015F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-557.007996F, -354.769989F), new Vector2(-557.247986F, -355.772003F), new Vector2(-557.247986F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-557.247986F, -358.003998F), new Vector2(-557.007996F, -358.988007F), new Vector2(-556.528015F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-556.047974F, -360.716003F), new Vector2(-555.388F, -361.394012F), new Vector2(-554.547974F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-553.708008F, -362.377991F), new Vector2(-552.76001F, -362.623993F), new Vector2(-551.703979F, -362.623993F)); + builder.AddCubicBezier(new Vector2(-550.599976F, -362.623993F), new Vector2(-549.633972F, -362.377991F), new Vector2(-548.80603F, -361.885986F)); + builder.AddCubicBezier(new Vector2(-547.978027F, -361.394012F), new Vector2(-547.317993F, -360.716003F), new Vector2(-546.825989F, -359.85199F)); + builder.AddCubicBezier(new Vector2(-546.333984F, -358.988007F), new Vector2(-546.088013F, -358.003998F), new Vector2(-546.088013F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-546.088013F, -355.772003F), new Vector2(-546.328003F, -354.769989F), new Vector2(-546.807983F, -353.894012F)); + builder.AddCubicBezier(new Vector2(-547.288025F, -353.018005F), new Vector2(-547.947998F, -352.328003F), new Vector2(-548.788025F, -351.824005F)); + builder.AddCubicBezier(new Vector2(-549.627991F, -351.320007F), new Vector2(-550.599976F, -351.067993F), new Vector2(-551.703979F, -351.067993F)); + builder.AddCubicBezier(new Vector2(-552.76001F, -351.067993F), new Vector2(-553.708008F, -351.320007F), new Vector2(-554.547974F, -351.824005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-547.150024F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-545.794006F, -349.915985F), new Vector2(-544.719971F, -350.98999F), new Vector2(-543.927979F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-543.135986F, -353.701996F), new Vector2(-542.73999F, -355.220001F), new Vector2(-542.73999F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-542.73999F, -358.556F), new Vector2(-543.135986F, -360.056F), new Vector2(-543.927979F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-544.719971F, -362.743988F), new Vector2(-545.794006F, -363.806F), new Vector2(-547.150024F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-548.505981F, -365.365997F), new Vector2(-550.023987F, -365.756012F), new Vector2(-551.703979F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-553.359985F, -365.756012F), new Vector2(-554.859985F, -365.359985F), new Vector2(-556.203979F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-557.547974F, -363.776001F), new Vector2(-558.616028F, -362.713989F), new Vector2(-559.40802F, -361.381989F)); + builder.AddCubicBezier(new Vector2(-560.200012F, -360.049988F), new Vector2(-560.596008F, -358.556F), new Vector2(-560.596008F, -356.899994F)); + builder.AddCubicBezier(new Vector2(-560.596008F, -355.220001F), new Vector2(-560.200012F, -353.701996F), new Vector2(-559.40802F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-558.616028F, -350.98999F), new Vector2(-557.547974F, -349.915985F), new Vector2(-556.203979F, -349.123993F)); + builder.AddCubicBezier(new Vector2(-554.859985F, -348.332001F), new Vector2(-553.359985F, -347.936005F), new Vector2(-551.703979F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-550.023987F, -347.936005F), new Vector2(-548.505981F, -348.332001F), new Vector2(-547.150024F, -349.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1470() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-575.409973F, -352.346008F)); + builder.AddCubicBezier(new Vector2(-576.237976F, -352.813995F), new Vector2(-576.885986F, -353.467987F), new Vector2(-577.354004F, -354.308014F)); + builder.AddCubicBezier(new Vector2(-577.822021F, -355.14801F), new Vector2(-578.05603F, -356.108002F), new Vector2(-578.05603F, -357.187988F)); + builder.AddCubicBezier(new Vector2(-578.05603F, -358.268005F), new Vector2(-577.822021F, -359.221985F), new Vector2(-577.354004F, -360.049988F)); + builder.AddCubicBezier(new Vector2(-576.885986F, -360.877991F), new Vector2(-576.244019F, -361.526001F), new Vector2(-575.427979F, -361.993988F)); + builder.AddCubicBezier(new Vector2(-574.612F, -362.462006F), new Vector2(-573.664001F, -362.696014F), new Vector2(-572.583984F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-571.528015F, -362.696014F), new Vector2(-570.598022F, -362.462006F), new Vector2(-569.794006F, -361.993988F)); + builder.AddCubicBezier(new Vector2(-568.98999F, -361.526001F), new Vector2(-568.366028F, -360.877991F), new Vector2(-567.921997F, -360.049988F)); + builder.AddCubicBezier(new Vector2(-567.478027F, -359.221985F), new Vector2(-567.255981F, -358.256012F), new Vector2(-567.255981F, -357.152008F)); + builder.AddCubicBezier(new Vector2(-567.255981F, -356.048004F), new Vector2(-567.478027F, -355.082001F), new Vector2(-567.921997F, -354.253998F)); + builder.AddCubicBezier(new Vector2(-568.366028F, -353.425995F), new Vector2(-568.984009F, -352.783997F), new Vector2(-569.776001F, -352.328003F)); + builder.AddCubicBezier(new Vector2(-570.567993F, -351.872009F), new Vector2(-571.504028F, -351.644012F), new Vector2(-572.583984F, -351.644012F)); + builder.AddCubicBezier(new Vector2(-573.640015F, -351.644012F), new Vector2(-574.58197F, -351.877991F), new Vector2(-575.409973F, -352.346008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-569.66803F, -349.376007F)); + builder.AddCubicBezier(new Vector2(-568.635986F, -349.903992F), new Vector2(-567.814026F, -350.641998F), new Vector2(-567.202026F, -351.589996F)); + builder.AddCubicBezier(new Vector2(-566.590027F, -352.537994F), new Vector2(-566.247986F, -353.635986F), new Vector2(-566.176025F, -354.884003F)); + builder.AddLine(new Vector2(-566.176025F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-566.247986F, -360.691986F), new Vector2(-566.583984F, -361.802002F), new Vector2(-567.184021F, -362.75F)); + builder.AddCubicBezier(new Vector2(-567.783997F, -363.697998F), new Vector2(-568.606018F, -364.436005F), new Vector2(-569.650024F, -364.963989F)); + builder.AddCubicBezier(new Vector2(-570.69397F, -365.492004F), new Vector2(-571.888F, -365.756012F), new Vector2(-573.231995F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-574.768005F, -365.756012F), new Vector2(-576.159973F, -365.377991F), new Vector2(-577.40802F, -364.622009F)); + builder.AddCubicBezier(new Vector2(-578.656006F, -363.865997F), new Vector2(-579.633972F, -362.846008F), new Vector2(-580.34198F, -361.562012F)); + builder.AddCubicBezier(new Vector2(-581.049988F, -360.278015F), new Vector2(-581.403992F, -358.820007F), new Vector2(-581.403992F, -357.187988F)); + builder.AddCubicBezier(new Vector2(-581.403992F, -355.556F), new Vector2(-581.044006F, -354.085999F), new Vector2(-580.323975F, -352.778015F)); + builder.AddCubicBezier(new Vector2(-579.604004F, -351.470001F), new Vector2(-578.625977F, -350.444F), new Vector2(-577.390015F, -349.700012F)); + builder.AddCubicBezier(new Vector2(-576.153992F, -348.955994F), new Vector2(-574.755981F, -348.584015F), new Vector2(-573.195984F, -348.584015F)); + builder.AddCubicBezier(new Vector2(-571.875977F, -348.584015F), new Vector2(-570.700012F, -348.847992F), new Vector2(-569.66803F, -349.376007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-568.497986F, -341.798004F)); + builder.AddCubicBezier(new Vector2(-567.142029F, -342.481995F), new Vector2(-566.085999F, -343.441986F), new Vector2(-565.330017F, -344.678009F)); + builder.AddCubicBezier(new Vector2(-564.573975F, -345.914001F), new Vector2(-564.195984F, -347.347992F), new Vector2(-564.195984F, -348.980011F)); + builder.AddLine(new Vector2(-564.195984F, -365.395996F)); + builder.AddLine(new Vector2(-567.435974F, -365.395996F)); + builder.AddLine(new Vector2(-567.435974F, -360.895996F)); + builder.AddLine(new Vector2(-566.859985F, -357.079987F)); + builder.AddLine(new Vector2(-567.435974F, -353.227997F)); + builder.AddLine(new Vector2(-567.435974F, -348.980011F)); + builder.AddCubicBezier(new Vector2(-567.435974F, -347.420013F), new Vector2(-567.952026F, -346.178009F), new Vector2(-568.984009F, -345.253998F)); + builder.AddCubicBezier(new Vector2(-570.015991F, -344.329987F), new Vector2(-571.395996F, -343.868011F), new Vector2(-573.124023F, -343.868011F)); + builder.AddCubicBezier(new Vector2(-574.44397F, -343.868011F), new Vector2(-575.583984F, -344.10199F), new Vector2(-576.544006F, -344.570007F)); + builder.AddCubicBezier(new Vector2(-577.504028F, -345.037994F), new Vector2(-578.33197F, -345.716003F), new Vector2(-579.028015F, -346.604004F)); + builder.AddLine(new Vector2(-581.151978F, -344.480011F)); + builder.AddCubicBezier(new Vector2(-580.312012F, -343.303986F), new Vector2(-579.219971F, -342.391998F), new Vector2(-577.875977F, -341.743988F)); + builder.AddCubicBezier(new Vector2(-576.531982F, -341.096008F), new Vector2(-574.971985F, -340.772003F), new Vector2(-573.195984F, -340.772003F)); + builder.AddCubicBezier(new Vector2(-571.419983F, -340.772003F), new Vector2(-569.854004F, -341.114014F), new Vector2(-568.497986F, -341.798004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1471() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-595.335999F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-594.159973F, -349.196014F), new Vector2(-593.151978F, -349.928009F), new Vector2(-592.312012F, -350.888F)); + builder.AddLine(new Vector2(-594.400024F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-594.976013F, -352.339996F), new Vector2(-595.666016F, -351.835999F), new Vector2(-596.469971F, -351.5F)); + builder.AddCubicBezier(new Vector2(-597.273987F, -351.164001F), new Vector2(-598.156006F, -350.996002F), new Vector2(-599.116028F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-600.268005F, -350.996002F), new Vector2(-601.288025F, -351.242004F), new Vector2(-602.176025F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-603.064026F, -352.226013F), new Vector2(-603.747986F, -352.921997F), new Vector2(-604.228027F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-604.708008F, -354.721985F), new Vector2(-604.947998F, -355.772003F), new Vector2(-604.947998F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-604.947998F, -358.14801F), new Vector2(-604.719971F, -359.167999F), new Vector2(-604.263977F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-603.807983F, -360.895996F), new Vector2(-603.159973F, -361.567993F), new Vector2(-602.320007F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-601.47998F, -362.528015F), new Vector2(-600.507996F, -362.768005F), new Vector2(-599.403992F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-598.348022F, -362.768005F), new Vector2(-597.447998F, -362.54599F), new Vector2(-596.703979F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-595.960022F, -361.65799F), new Vector2(-595.383972F, -361.033997F), new Vector2(-594.976013F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-594.567993F, -359.425995F), new Vector2(-594.364014F, -358.447998F), new Vector2(-594.364014F, -357.29599F)); + builder.AddLine(new Vector2(-593.176025F, -358.339996F)); + builder.AddLine(new Vector2(-605.883972F, -358.339996F)); + builder.AddLine(new Vector2(-605.883972F, -355.640015F)); + builder.AddLine(new Vector2(-591.447998F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-591.375977F, -355.976013F), new Vector2(-591.328003F, -356.282013F), new Vector2(-591.304016F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-591.280029F, -356.834015F), new Vector2(-591.268005F, -357.09201F), new Vector2(-591.268005F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-591.268005F, -358.963989F), new Vector2(-591.609985F, -360.415985F), new Vector2(-592.294006F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-592.978027F, -362.959991F), new Vector2(-593.932007F, -363.955994F), new Vector2(-595.156006F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-596.380005F, -365.395996F), new Vector2(-597.771973F, -365.756012F), new Vector2(-599.33197F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-600.987976F, -365.756012F), new Vector2(-602.481995F, -365.365997F), new Vector2(-603.814026F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-605.145996F, -363.806F), new Vector2(-606.202026F, -362.743988F), new Vector2(-606.981995F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-607.762024F, -360.056F), new Vector2(-608.151978F, -358.544006F), new Vector2(-608.151978F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-608.151978F, -355.160004F), new Vector2(-607.755981F, -353.635986F), new Vector2(-606.963989F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-606.171997F, -350.947998F), new Vector2(-605.098022F, -349.885986F), new Vector2(-603.742004F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-602.385986F, -348.325989F), new Vector2(-600.843994F, -347.936005F), new Vector2(-599.116028F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-597.771973F, -347.936005F), new Vector2(-596.512024F, -348.187988F), new Vector2(-595.335999F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1472() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-623.523987F, -348.29599F)); + builder.AddLine(new Vector2(-623.523987F, -374F)); + builder.AddLine(new Vector2(-626.763977F, -374F)); + builder.AddLine(new Vector2(-626.763977F, -348.29599F)); + builder.AddLine(new Vector2(-623.523987F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-611.427979F, -348.29599F)); + builder.AddLine(new Vector2(-611.427979F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-611.427979F, -360.26001F), new Vector2(-611.716003F, -361.447998F), new Vector2(-612.291992F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-612.867981F, -363.511993F), new Vector2(-613.653992F, -364.31601F), new Vector2(-614.650024F, -364.891998F)); + builder.AddCubicBezier(new Vector2(-615.645996F, -365.467987F), new Vector2(-616.791992F, -365.756012F), new Vector2(-618.088013F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-619.383972F, -365.756012F), new Vector2(-620.547974F, -365.462006F), new Vector2(-621.580017F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-622.612F, -364.286011F), new Vector2(-623.416016F, -363.488007F), new Vector2(-623.992004F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-624.567993F, -361.471985F), new Vector2(-624.856018F, -360.320007F), new Vector2(-624.856018F, -359.023987F)); + builder.AddLine(new Vector2(-623.523987F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-623.523987F, -359.131989F), new Vector2(-623.33197F, -359.899994F), new Vector2(-622.947998F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-622.564026F, -361.243988F), new Vector2(-622.036011F, -361.772003F), new Vector2(-621.364014F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-620.692017F, -362.540009F), new Vector2(-619.924011F, -362.731995F), new Vector2(-619.059998F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-617.763977F, -362.731995F), new Vector2(-616.713989F, -362.312012F), new Vector2(-615.909973F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-615.106018F, -360.631989F), new Vector2(-614.703979F, -359.563995F), new Vector2(-614.703979F, -358.268005F)); + builder.AddLine(new Vector2(-614.703979F, -348.29599F)); + builder.AddLine(new Vector2(-611.427979F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1473() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-629.932007F, -362.444F)); + builder.AddLine(new Vector2(-629.932007F, -365.395996F)); + builder.AddLine(new Vector2(-641.596008F, -365.395996F)); + builder.AddLine(new Vector2(-641.596008F, -362.444F)); + builder.AddLine(new Vector2(-629.932007F, -362.444F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-634.143982F, -348.29599F)); + builder.AddLine(new Vector2(-634.143982F, -372.559998F)); + builder.AddLine(new Vector2(-637.383972F, -372.559998F)); + builder.AddLine(new Vector2(-637.383972F, -348.29599F)); + builder.AddLine(new Vector2(-634.143982F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1474() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-655.348022F, -343.328003F)); + builder.AddLine(new Vector2(-652.935974F, -347.791992F)); + builder.AddCubicBezier(new Vector2(-652.624023F, -348.391998F), new Vector2(-652.414001F, -348.877991F), new Vector2(-652.30603F, -349.25F)); + builder.AddCubicBezier(new Vector2(-652.197998F, -349.622009F), new Vector2(-652.143982F, -349.940002F), new Vector2(-652.143982F, -350.20401F)); + builder.AddCubicBezier(new Vector2(-652.143982F, -350.899994F), new Vector2(-652.383972F, -351.481995F), new Vector2(-652.864014F, -351.950012F)); + builder.AddCubicBezier(new Vector2(-653.343994F, -352.417999F), new Vector2(-653.895996F, -352.652008F), new Vector2(-654.52002F, -352.652008F)); + builder.AddCubicBezier(new Vector2(-655.216003F, -352.652008F), new Vector2(-655.791992F, -352.417999F), new Vector2(-656.247986F, -351.950012F)); + builder.AddCubicBezier(new Vector2(-656.703979F, -351.481995F), new Vector2(-656.932007F, -350.899994F), new Vector2(-656.932007F, -350.20401F)); + builder.AddCubicBezier(new Vector2(-656.932007F, -349.579987F), new Vector2(-656.721985F, -349.058014F), new Vector2(-656.302002F, -348.638F)); + builder.AddCubicBezier(new Vector2(-655.882019F, -348.217987F), new Vector2(-655.419983F, -348.007996F), new Vector2(-654.916016F, -348.007996F)); + builder.AddCubicBezier(new Vector2(-654.676025F, -348.007996F), new Vector2(-654.460022F, -348.09201F), new Vector2(-654.268005F, -348.26001F)); + builder.AddCubicBezier(new Vector2(-654.075989F, -348.428009F), new Vector2(-653.919983F, -348.644012F), new Vector2(-653.799988F, -348.90799F)); + builder.AddLine(new Vector2(-654.952026F, -348.619995F)); + builder.AddLine(new Vector2(-657.184021F, -344.335999F)); + builder.AddLine(new Vector2(-655.348022F, -343.328003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1475() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-664.960022F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-663.783997F, -349.196014F), new Vector2(-662.776001F, -349.928009F), new Vector2(-661.935974F, -350.888F)); + builder.AddLine(new Vector2(-664.023987F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-664.599976F, -352.339996F), new Vector2(-665.289978F, -351.835999F), new Vector2(-666.093994F, -351.5F)); + builder.AddCubicBezier(new Vector2(-666.89801F, -351.164001F), new Vector2(-667.780029F, -350.996002F), new Vector2(-668.73999F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-669.892029F, -350.996002F), new Vector2(-670.911987F, -351.242004F), new Vector2(-671.799988F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-672.687988F, -352.226013F), new Vector2(-673.372009F, -352.921997F), new Vector2(-673.85199F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-674.33197F, -354.721985F), new Vector2(-674.572021F, -355.772003F), new Vector2(-674.572021F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-674.572021F, -358.14801F), new Vector2(-674.343994F, -359.167999F), new Vector2(-673.888F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-673.432007F, -360.895996F), new Vector2(-672.783997F, -361.567993F), new Vector2(-671.94397F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-671.104004F, -362.528015F), new Vector2(-670.132019F, -362.768005F), new Vector2(-669.028015F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-667.971985F, -362.768005F), new Vector2(-667.072021F, -362.54599F), new Vector2(-666.328003F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-665.583984F, -361.65799F), new Vector2(-665.007996F, -361.033997F), new Vector2(-664.599976F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-664.192017F, -359.425995F), new Vector2(-663.987976F, -358.447998F), new Vector2(-663.987976F, -357.29599F)); + builder.AddLine(new Vector2(-662.799988F, -358.339996F)); + builder.AddLine(new Vector2(-675.507996F, -358.339996F)); + builder.AddLine(new Vector2(-675.507996F, -355.640015F)); + builder.AddLine(new Vector2(-661.072021F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-661F, -355.976013F), new Vector2(-660.952026F, -356.282013F), new Vector2(-660.927979F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-660.903992F, -356.834015F), new Vector2(-660.892029F, -357.09201F), new Vector2(-660.892029F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-660.892029F, -358.963989F), new Vector2(-661.234009F, -360.415985F), new Vector2(-661.91803F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-662.60199F, -362.959991F), new Vector2(-663.55603F, -363.955994F), new Vector2(-664.780029F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-666.004028F, -365.395996F), new Vector2(-667.395996F, -365.756012F), new Vector2(-668.955994F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-670.612F, -365.756012F), new Vector2(-672.106018F, -365.365997F), new Vector2(-673.437988F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-674.77002F, -363.806F), new Vector2(-675.825989F, -362.743988F), new Vector2(-676.606018F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-677.385986F, -360.056F), new Vector2(-677.776001F, -358.544006F), new Vector2(-677.776001F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-677.776001F, -355.160004F), new Vector2(-677.380005F, -353.635986F), new Vector2(-676.588013F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-675.796021F, -350.947998F), new Vector2(-674.721985F, -349.885986F), new Vector2(-673.366028F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-672.01001F, -348.325989F), new Vector2(-670.468018F, -347.936005F), new Vector2(-668.73999F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-667.395996F, -347.936005F), new Vector2(-666.135986F, -348.187988F), new Vector2(-664.960022F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1476() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-681.411987F, -348.29599F)); + builder.AddLine(new Vector2(-681.411987F, -374F)); + builder.AddLine(new Vector2(-684.651978F, -374F)); + builder.AddLine(new Vector2(-684.651978F, -348.29599F)); + builder.AddLine(new Vector2(-681.411987F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1477() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-689.583984F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-689.200012F, -369.806F), new Vector2(-689.007996F, -370.303986F), new Vector2(-689.007996F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-689.007996F, -371.480011F), new Vector2(-689.200012F, -371.966003F), new Vector2(-689.583984F, -372.362F)); + builder.AddCubicBezier(new Vector2(-689.968018F, -372.757996F), new Vector2(-690.460022F, -372.955994F), new Vector2(-691.059998F, -372.955994F)); + builder.AddCubicBezier(new Vector2(-691.659973F, -372.955994F), new Vector2(-692.151978F, -372.757996F), new Vector2(-692.536011F, -372.362F)); + builder.AddCubicBezier(new Vector2(-692.919983F, -371.966003F), new Vector2(-693.112F, -371.480011F), new Vector2(-693.112F, -370.903992F)); + builder.AddCubicBezier(new Vector2(-693.112F, -370.303986F), new Vector2(-692.919983F, -369.806F), new Vector2(-692.536011F, -369.410004F)); + builder.AddCubicBezier(new Vector2(-692.151978F, -369.014008F), new Vector2(-691.659973F, -368.81601F), new Vector2(-691.059998F, -368.81601F)); + builder.AddCubicBezier(new Vector2(-690.460022F, -368.81601F), new Vector2(-689.968018F, -369.014008F), new Vector2(-689.583984F, -369.410004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-689.440002F, -348.29599F)); + builder.AddLine(new Vector2(-689.440002F, -365.395996F)); + builder.AddLine(new Vector2(-692.716003F, -365.395996F)); + builder.AddLine(new Vector2(-692.716003F, -348.29599F)); + builder.AddLine(new Vector2(-689.440002F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1478() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-709.203979F, -348.29599F)); + builder.AddLine(new Vector2(-709.203979F, -374F)); + builder.AddLine(new Vector2(-712.44397F, -374F)); + builder.AddLine(new Vector2(-712.44397F, -348.29599F)); + builder.AddLine(new Vector2(-709.203979F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-697.107971F, -348.29599F)); + builder.AddLine(new Vector2(-697.107971F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-697.107971F, -360.26001F), new Vector2(-697.395996F, -361.447998F), new Vector2(-697.971985F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-698.547974F, -363.511993F), new Vector2(-699.333984F, -364.31601F), new Vector2(-700.330017F, -364.891998F)); + builder.AddCubicBezier(new Vector2(-701.325989F, -365.467987F), new Vector2(-702.471985F, -365.756012F), new Vector2(-703.768005F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-705.064026F, -365.756012F), new Vector2(-706.228027F, -365.462006F), new Vector2(-707.26001F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-708.291992F, -364.286011F), new Vector2(-709.096008F, -363.488007F), new Vector2(-709.671997F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-710.247986F, -361.471985F), new Vector2(-710.536011F, -360.320007F), new Vector2(-710.536011F, -359.023987F)); + builder.AddLine(new Vector2(-709.203979F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-709.203979F, -359.131989F), new Vector2(-709.012024F, -359.899994F), new Vector2(-708.627991F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-708.244019F, -361.243988F), new Vector2(-707.716003F, -361.772003F), new Vector2(-707.044006F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-706.372009F, -362.540009F), new Vector2(-705.604004F, -362.731995F), new Vector2(-704.73999F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-703.44397F, -362.731995F), new Vector2(-702.393982F, -362.312012F), new Vector2(-701.590027F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-700.786011F, -360.631989F), new Vector2(-700.383972F, -359.563995F), new Vector2(-700.383972F, -358.268005F)); + builder.AddLine(new Vector2(-700.383972F, -348.29599F)); + builder.AddLine(new Vector2(-697.107971F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1479() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-732.676025F, -348.29599F)); + builder.AddLine(new Vector2(-727.708008F, -361.18399F)); + builder.AddLine(new Vector2(-728.895996F, -361.18399F)); + builder.AddLine(new Vector2(-723.963989F, -348.29599F)); + builder.AddLine(new Vector2(-722.05603F, -348.29599F)); + builder.AddLine(new Vector2(-715.323975F, -365.395996F)); + builder.AddLine(new Vector2(-718.708008F, -365.395996F)); + builder.AddLine(new Vector2(-723.604004F, -352.075989F)); + builder.AddLine(new Vector2(-722.523987F, -352.075989F)); + builder.AddLine(new Vector2(-727.383972F, -365.395996F)); + builder.AddLine(new Vector2(-729.255981F, -365.395996F)); + builder.AddLine(new Vector2(-734.116028F, -352.075989F)); + builder.AddLine(new Vector2(-733.036011F, -352.075989F)); + builder.AddLine(new Vector2(-737.932007F, -365.395996F)); + builder.AddLine(new Vector2(-741.315979F, -365.395996F)); + builder.AddLine(new Vector2(-734.583984F, -348.29599F)); + builder.AddLine(new Vector2(-732.676025F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1480() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-755.932007F, -348.29599F)); + builder.AddLine(new Vector2(-755.932007F, -365.395996F)); + builder.AddLine(new Vector2(-759.171997F, -365.395996F)); + builder.AddLine(new Vector2(-759.171997F, -348.29599F)); + builder.AddLine(new Vector2(-755.932007F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-743.835999F, -348.29599F)); + builder.AddLine(new Vector2(-743.835999F, -358.915985F)); + builder.AddCubicBezier(new Vector2(-743.835999F, -360.09201F), new Vector2(-744.124023F, -361.201996F), new Vector2(-744.700012F, -362.246002F)); + builder.AddCubicBezier(new Vector2(-745.276001F, -363.290009F), new Vector2(-746.062012F, -364.135986F), new Vector2(-747.057983F, -364.783997F)); + builder.AddCubicBezier(new Vector2(-748.054016F, -365.432007F), new Vector2(-749.200012F, -365.756012F), new Vector2(-750.495972F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-751.791992F, -365.756012F), new Vector2(-752.955994F, -365.462006F), new Vector2(-753.987976F, -364.873993F)); + builder.AddCubicBezier(new Vector2(-755.02002F, -364.286011F), new Vector2(-755.823975F, -363.488007F), new Vector2(-756.400024F, -362.480011F)); + builder.AddCubicBezier(new Vector2(-756.976013F, -361.471985F), new Vector2(-757.263977F, -360.320007F), new Vector2(-757.263977F, -359.023987F)); + builder.AddLine(new Vector2(-755.932007F, -358.268005F)); + builder.AddCubicBezier(new Vector2(-755.932007F, -359.131989F), new Vector2(-755.73999F, -359.899994F), new Vector2(-755.356018F, -360.571991F)); + builder.AddCubicBezier(new Vector2(-754.971985F, -361.243988F), new Vector2(-754.44397F, -361.772003F), new Vector2(-753.771973F, -362.156006F)); + builder.AddCubicBezier(new Vector2(-753.099976F, -362.540009F), new Vector2(-752.33197F, -362.731995F), new Vector2(-751.468018F, -362.731995F)); + builder.AddCubicBezier(new Vector2(-750.171997F, -362.731995F), new Vector2(-749.122009F, -362.312012F), new Vector2(-748.317993F, -361.471985F)); + builder.AddCubicBezier(new Vector2(-747.513977F, -360.631989F), new Vector2(-747.112F, -359.563995F), new Vector2(-747.112F, -358.268005F)); + builder.AddLine(new Vector2(-747.112F, -348.29599F)); + builder.AddLine(new Vector2(-743.835999F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1481() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-763.888F, -348.29599F)); + builder.AddLine(new Vector2(-763.888F, -365.395996F)); + builder.AddLine(new Vector2(-767.164001F, -365.395996F)); + builder.AddLine(new Vector2(-767.164001F, -361.220001F)); + builder.AddLine(new Vector2(-766.552002F, -357.079987F)); + builder.AddLine(new Vector2(-767.164001F, -352.903992F)); + builder.AddLine(new Vector2(-767.164001F, -348.29599F)); + builder.AddLine(new Vector2(-763.888F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-775.192017F, -351.752014F)); + builder.AddCubicBezier(new Vector2(-776.031982F, -352.256012F), new Vector2(-776.685974F, -352.946014F), new Vector2(-777.153992F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-777.622009F, -354.697998F), new Vector2(-777.856018F, -355.712006F), new Vector2(-777.856018F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-777.856018F, -357.992004F), new Vector2(-777.622009F, -358.993988F), new Vector2(-777.153992F, -359.869995F)); + builder.AddCubicBezier(new Vector2(-776.685974F, -360.746002F), new Vector2(-776.038025F, -361.436005F), new Vector2(-775.210022F, -361.940002F)); + builder.AddCubicBezier(new Vector2(-774.382019F, -362.444F), new Vector2(-773.427979F, -362.696014F), new Vector2(-772.348022F, -362.696014F)); + builder.AddCubicBezier(new Vector2(-771.268005F, -362.696014F), new Vector2(-770.325989F, -362.450012F), new Vector2(-769.521973F, -361.958008F)); + builder.AddCubicBezier(new Vector2(-768.718018F, -361.466003F), new Vector2(-768.088013F, -360.776001F), new Vector2(-767.632019F, -359.888F)); + builder.AddCubicBezier(new Vector2(-767.176025F, -359F), new Vector2(-766.947998F, -357.980011F), new Vector2(-766.947998F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-766.947998F, -355.123993F), new Vector2(-767.440002F, -353.726013F), new Vector2(-768.424011F, -352.634003F)); + builder.AddCubicBezier(new Vector2(-769.40802F, -351.541992F), new Vector2(-770.703979F, -350.996002F), new Vector2(-772.312012F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-773.392029F, -350.996002F), new Vector2(-774.35199F, -351.247986F), new Vector2(-775.192017F, -351.752014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-769.359985F, -348.746002F)); + builder.AddCubicBezier(new Vector2(-768.328003F, -349.286011F), new Vector2(-767.505981F, -350.036011F), new Vector2(-766.893982F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-766.281982F, -351.955994F), new Vector2(-765.940002F, -353.048004F), new Vector2(-765.867981F, -354.272003F)); + builder.AddLine(new Vector2(-765.867981F, -359.420013F)); + builder.AddCubicBezier(new Vector2(-765.940002F, -360.667999F), new Vector2(-766.288025F, -361.765991F), new Vector2(-766.911987F, -362.713989F)); + builder.AddCubicBezier(new Vector2(-767.536011F, -363.661987F), new Vector2(-768.357971F, -364.406006F), new Vector2(-769.377991F, -364.946014F)); + builder.AddCubicBezier(new Vector2(-770.39801F, -365.485992F), new Vector2(-771.55603F, -365.756012F), new Vector2(-772.85199F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-774.435974F, -365.756012F), new Vector2(-775.857971F, -365.359985F), new Vector2(-777.117981F, -364.567993F)); + builder.AddCubicBezier(new Vector2(-778.377991F, -363.776001F), new Vector2(-779.374023F, -362.708008F), new Vector2(-780.106018F, -361.364014F)); + builder.AddCubicBezier(new Vector2(-780.838013F, -360.019989F), new Vector2(-781.203979F, -358.507996F), new Vector2(-781.203979F, -356.828003F)); + builder.AddCubicBezier(new Vector2(-781.203979F, -355.14801F), new Vector2(-780.838013F, -353.635986F), new Vector2(-780.106018F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-779.374023F, -350.947998F), new Vector2(-778.377991F, -349.885986F), new Vector2(-777.117981F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-775.857971F, -348.325989F), new Vector2(-774.435974F, -347.936005F), new Vector2(-772.85199F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-771.55603F, -347.936005F), new Vector2(-770.392029F, -348.205994F), new Vector2(-769.359985F, -348.746002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1482() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-787.719971F, -348.691986F)); + builder.AddCubicBezier(new Vector2(-786.544006F, -349.196014F), new Vector2(-785.536011F, -349.928009F), new Vector2(-784.695984F, -350.888F)); + builder.AddLine(new Vector2(-786.783997F, -353.011993F)); + builder.AddCubicBezier(new Vector2(-787.359985F, -352.339996F), new Vector2(-788.049988F, -351.835999F), new Vector2(-788.854004F, -351.5F)); + builder.AddCubicBezier(new Vector2(-789.65802F, -351.164001F), new Vector2(-790.539978F, -350.996002F), new Vector2(-791.5F, -350.996002F)); + builder.AddCubicBezier(new Vector2(-792.651978F, -350.996002F), new Vector2(-793.671997F, -351.242004F), new Vector2(-794.559998F, -351.734009F)); + builder.AddCubicBezier(new Vector2(-795.447998F, -352.226013F), new Vector2(-796.132019F, -352.921997F), new Vector2(-796.612F, -353.821991F)); + builder.AddCubicBezier(new Vector2(-797.09198F, -354.721985F), new Vector2(-797.33197F, -355.772003F), new Vector2(-797.33197F, -356.971985F)); + builder.AddCubicBezier(new Vector2(-797.33197F, -358.14801F), new Vector2(-797.104004F, -359.167999F), new Vector2(-796.64801F, -360.032013F)); + builder.AddCubicBezier(new Vector2(-796.192017F, -360.895996F), new Vector2(-795.544006F, -361.567993F), new Vector2(-794.703979F, -362.048004F)); + builder.AddCubicBezier(new Vector2(-793.864014F, -362.528015F), new Vector2(-792.892029F, -362.768005F), new Vector2(-791.788025F, -362.768005F)); + builder.AddCubicBezier(new Vector2(-790.731995F, -362.768005F), new Vector2(-789.83197F, -362.54599F), new Vector2(-789.088013F, -362.10199F)); + builder.AddCubicBezier(new Vector2(-788.343994F, -361.65799F), new Vector2(-787.768005F, -361.033997F), new Vector2(-787.359985F, -360.230011F)); + builder.AddCubicBezier(new Vector2(-786.952026F, -359.425995F), new Vector2(-786.747986F, -358.447998F), new Vector2(-786.747986F, -357.29599F)); + builder.AddLine(new Vector2(-785.559998F, -358.339996F)); + builder.AddLine(new Vector2(-798.268005F, -358.339996F)); + builder.AddLine(new Vector2(-798.268005F, -355.640015F)); + builder.AddLine(new Vector2(-783.83197F, -355.640015F)); + builder.AddCubicBezier(new Vector2(-783.76001F, -355.976013F), new Vector2(-783.711975F, -356.282013F), new Vector2(-783.687988F, -356.558014F)); + builder.AddCubicBezier(new Vector2(-783.664001F, -356.834015F), new Vector2(-783.651978F, -357.09201F), new Vector2(-783.651978F, -357.332001F)); + builder.AddCubicBezier(new Vector2(-783.651978F, -358.963989F), new Vector2(-783.994019F, -360.415985F), new Vector2(-784.677979F, -361.687988F)); + builder.AddCubicBezier(new Vector2(-785.362F, -362.959991F), new Vector2(-786.315979F, -363.955994F), new Vector2(-787.539978F, -364.675995F)); + builder.AddCubicBezier(new Vector2(-788.763977F, -365.395996F), new Vector2(-790.156006F, -365.756012F), new Vector2(-791.716003F, -365.756012F)); + builder.AddCubicBezier(new Vector2(-793.372009F, -365.756012F), new Vector2(-794.866028F, -365.365997F), new Vector2(-796.197998F, -364.585999F)); + builder.AddCubicBezier(new Vector2(-797.530029F, -363.806F), new Vector2(-798.585999F, -362.743988F), new Vector2(-799.366028F, -361.399994F)); + builder.AddCubicBezier(new Vector2(-800.145996F, -360.056F), new Vector2(-800.536011F, -358.544006F), new Vector2(-800.536011F, -356.864014F)); + builder.AddCubicBezier(new Vector2(-800.536011F, -355.160004F), new Vector2(-800.140015F, -353.635986F), new Vector2(-799.348022F, -352.291992F)); + builder.AddCubicBezier(new Vector2(-798.55603F, -350.947998F), new Vector2(-797.481995F, -349.885986F), new Vector2(-796.125977F, -349.105988F)); + builder.AddCubicBezier(new Vector2(-794.77002F, -348.325989F), new Vector2(-793.228027F, -347.936005F), new Vector2(-791.5F, -347.936005F)); + builder.AddCubicBezier(new Vector2(-790.156006F, -347.936005F), new Vector2(-788.895996F, -348.187988F), new Vector2(-787.719971F, -348.691986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: Meanwhile, the government and the police started to oppress the + // protesters with violence and began to open fire to the protesters without any + // reason. They began to force censorship across social media platform, starting from + // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely + // silenced. It reportedly that some military forces have been deployed in case of a + // next wave of demonstration and might potentialy lead the country under its martial + // law by making fabricated scenarios and slanders to divide the nation, which will + // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our + // government tries to gain control over their own people. How shameless) Outlines + // - - Offset:<964, 1018> + CanvasGeometry Geometry_1483() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-825.664001F, -348.29599F)); + builder.AddLine(new Vector2(-825.664001F, -367.339996F)); + builder.AddLine(new Vector2(-826.419983F, -367.123993F)); + builder.AddLine(new Vector2(-818.104004F, -353.40799F)); + builder.AddLine(new Vector2(-815.692017F, -353.40799F)); + builder.AddLine(new Vector2(-807.375977F, -367.123993F)); + builder.AddLine(new Vector2(-808.132019F, -367.339996F)); + builder.AddLine(new Vector2(-808.132019F, -348.29599F)); + builder.AddLine(new Vector2(-804.747986F, -348.29599F)); + builder.AddLine(new Vector2(-804.747986F, -373.279999F)); + builder.AddLine(new Vector2(-807.124023F, -373.279999F)); + builder.AddLine(new Vector2(-817.708008F, -355.891998F)); + builder.AddLine(new Vector2(-816.088013F, -355.891998F)); + builder.AddLine(new Vector2(-826.671997F, -373.279999F)); + builder.AddLine(new Vector2(-829.047974F, -373.279999F)); + builder.AddLine(new Vector2(-829.047974F, -348.29599F)); + builder.AddLine(new Vector2(-825.664001F, -348.29599F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1484() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(507.019989F, -167.567001F)); + builder.AddCubicBezier(new Vector2(507.513F, -168.087006F), new Vector2(507.76001F, -168.707001F), new Vector2(507.76001F, -169.427002F)); + builder.AddCubicBezier(new Vector2(507.76001F, -170.173004F), new Vector2(507.513F, -170.792999F), new Vector2(507.019989F, -171.287003F)); + builder.AddCubicBezier(new Vector2(506.526001F, -171.779999F), new Vector2(505.906006F, -172.026993F), new Vector2(505.160004F, -172.026993F)); + builder.AddCubicBezier(new Vector2(504.385986F, -172.026993F), new Vector2(503.76001F, -171.779999F), new Vector2(503.279999F, -171.287003F)); + builder.AddCubicBezier(new Vector2(502.799988F, -170.792999F), new Vector2(502.559998F, -170.173004F), new Vector2(502.559998F, -169.427002F)); + builder.AddCubicBezier(new Vector2(502.559998F, -168.707001F), new Vector2(502.799988F, -168.087006F), new Vector2(503.279999F, -167.567001F)); + builder.AddCubicBezier(new Vector2(503.76001F, -167.046997F), new Vector2(504.385986F, -166.787003F), new Vector2(505.160004F, -166.787003F)); + builder.AddCubicBezier(new Vector2(505.906006F, -166.787003F), new Vector2(506.526001F, -167.046997F), new Vector2(507.019989F, -167.567001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1485() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(480.839996F, -167.186996F)); + builder.AddLine(new Vector2(486.359985F, -181.507004F)); + builder.AddLine(new Vector2(485.040009F, -181.507004F)); + builder.AddLine(new Vector2(490.519989F, -167.186996F)); + builder.AddLine(new Vector2(492.640015F, -167.186996F)); + builder.AddLine(new Vector2(500.119995F, -186.186996F)); + builder.AddLine(new Vector2(496.359985F, -186.186996F)); + builder.AddLine(new Vector2(490.920013F, -171.386993F)); + builder.AddLine(new Vector2(492.119995F, -171.386993F)); + builder.AddLine(new Vector2(486.720001F, -186.186996F)); + builder.AddLine(new Vector2(484.640015F, -186.186996F)); + builder.AddLine(new Vector2(479.23999F, -171.386993F)); + builder.AddLine(new Vector2(480.440002F, -171.386993F)); + builder.AddLine(new Vector2(475F, -186.186996F)); + builder.AddLine(new Vector2(471.23999F, -186.186996F)); + builder.AddLine(new Vector2(478.720001F, -167.186996F)); + builder.AddLine(new Vector2(480.839996F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1486() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(456.76001F, -171.106995F)); + builder.AddCubicBezier(new Vector2(455.825989F, -171.667007F), new Vector2(455.092987F, -172.432999F), new Vector2(454.559998F, -173.406998F)); + builder.AddCubicBezier(new Vector2(454.026001F, -174.380005F), new Vector2(453.76001F, -175.492996F), new Vector2(453.76001F, -176.746994F)); + builder.AddCubicBezier(new Vector2(453.76001F, -177.973007F), new Vector2(454.026001F, -179.067001F), new Vector2(454.559998F, -180.026993F)); + builder.AddCubicBezier(new Vector2(455.092987F, -180.987F), new Vector2(455.825989F, -181.740005F), new Vector2(456.76001F, -182.287003F)); + builder.AddCubicBezier(new Vector2(457.692993F, -182.832993F), new Vector2(458.746002F, -183.106995F), new Vector2(459.920013F, -183.106995F)); + builder.AddCubicBezier(new Vector2(461.145996F, -183.106995F), new Vector2(462.220001F, -182.832993F), new Vector2(463.140015F, -182.287003F)); + builder.AddCubicBezier(new Vector2(464.059998F, -181.740005F), new Vector2(464.792999F, -180.987F), new Vector2(465.339996F, -180.026993F)); + builder.AddCubicBezier(new Vector2(465.885986F, -179.067001F), new Vector2(466.160004F, -177.973007F), new Vector2(466.160004F, -176.746994F)); + builder.AddCubicBezier(new Vector2(466.160004F, -175.492996F), new Vector2(465.893005F, -174.380005F), new Vector2(465.359985F, -173.406998F)); + builder.AddCubicBezier(new Vector2(464.825989F, -172.432999F), new Vector2(464.092987F, -171.667007F), new Vector2(463.160004F, -171.106995F)); + builder.AddCubicBezier(new Vector2(462.226013F, -170.546997F), new Vector2(461.145996F, -170.266998F), new Vector2(459.920013F, -170.266998F)); + builder.AddCubicBezier(new Vector2(458.746002F, -170.266998F), new Vector2(457.692993F, -170.546997F), new Vector2(456.76001F, -171.106995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(464.980011F, -168.106995F)); + builder.AddCubicBezier(new Vector2(466.485992F, -168.987F), new Vector2(467.679993F, -170.179993F), new Vector2(468.559998F, -171.686996F)); + builder.AddCubicBezier(new Vector2(469.440002F, -173.192993F), new Vector2(469.880005F, -174.880005F), new Vector2(469.880005F, -176.746994F)); + builder.AddCubicBezier(new Vector2(469.880005F, -178.587006F), new Vector2(469.440002F, -180.253006F), new Vector2(468.559998F, -181.746994F)); + builder.AddCubicBezier(new Vector2(467.679993F, -183.240005F), new Vector2(466.485992F, -184.419998F), new Vector2(464.980011F, -185.287003F)); + builder.AddCubicBezier(new Vector2(463.472992F, -186.153F), new Vector2(461.786011F, -186.587006F), new Vector2(459.920013F, -186.587006F)); + builder.AddCubicBezier(new Vector2(458.079987F, -186.587006F), new Vector2(456.412994F, -186.147003F), new Vector2(454.920013F, -185.266998F)); + builder.AddCubicBezier(new Vector2(453.425995F, -184.386993F), new Vector2(452.23999F, -183.207001F), new Vector2(451.359985F, -181.727005F)); + builder.AddCubicBezier(new Vector2(450.480011F, -180.246994F), new Vector2(450.040009F, -178.587006F), new Vector2(450.040009F, -176.746994F)); + builder.AddCubicBezier(new Vector2(450.040009F, -174.880005F), new Vector2(450.480011F, -173.192993F), new Vector2(451.359985F, -171.686996F)); + builder.AddCubicBezier(new Vector2(452.23999F, -170.179993F), new Vector2(453.425995F, -168.987F), new Vector2(454.920013F, -168.106995F)); + builder.AddCubicBezier(new Vector2(456.412994F, -167.227005F), new Vector2(458.079987F, -166.787003F), new Vector2(459.920013F, -166.787003F)); + builder.AddCubicBezier(new Vector2(461.786011F, -166.787003F), new Vector2(463.472992F, -167.227005F), new Vector2(464.980011F, -168.106995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1487() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(446F, -167.186996F)); + builder.AddLine(new Vector2(446F, -195.746994F)); + builder.AddLine(new Vector2(442.399994F, -195.746994F)); + builder.AddLine(new Vector2(442.399994F, -167.186996F)); + builder.AddLine(new Vector2(446F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1488() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(433.959991F, -167.626999F)); + builder.AddCubicBezier(new Vector2(435.265991F, -168.186996F), new Vector2(436.385986F, -169F), new Vector2(437.320007F, -170.067001F)); + builder.AddLine(new Vector2(435F, -172.427002F)); + builder.AddCubicBezier(new Vector2(434.359985F, -171.679993F), new Vector2(433.592987F, -171.119995F), new Vector2(432.700012F, -170.746994F)); + builder.AddCubicBezier(new Vector2(431.806F, -170.373001F), new Vector2(430.825989F, -170.186996F), new Vector2(429.76001F, -170.186996F)); + builder.AddCubicBezier(new Vector2(428.480011F, -170.186996F), new Vector2(427.346008F, -170.460007F), new Vector2(426.359985F, -171.007004F)); + builder.AddCubicBezier(new Vector2(425.372986F, -171.552994F), new Vector2(424.613007F, -172.326996F), new Vector2(424.079987F, -173.326996F)); + builder.AddCubicBezier(new Vector2(423.54599F, -174.326996F), new Vector2(423.279999F, -175.492996F), new Vector2(423.279999F, -176.826996F)); + builder.AddCubicBezier(new Vector2(423.279999F, -178.132996F), new Vector2(423.53299F, -179.266998F), new Vector2(424.040009F, -180.227005F)); + builder.AddCubicBezier(new Vector2(424.54599F, -181.186996F), new Vector2(425.265991F, -181.932999F), new Vector2(426.200012F, -182.466995F)); + builder.AddCubicBezier(new Vector2(427.132996F, -183F), new Vector2(428.213013F, -183.266998F), new Vector2(429.440002F, -183.266998F)); + builder.AddCubicBezier(new Vector2(430.613007F, -183.266998F), new Vector2(431.613007F, -183.020004F), new Vector2(432.440002F, -182.526993F)); + builder.AddCubicBezier(new Vector2(433.265991F, -182.033005F), new Vector2(433.906006F, -181.339996F), new Vector2(434.359985F, -180.447006F)); + builder.AddCubicBezier(new Vector2(434.812988F, -179.552994F), new Vector2(435.040009F, -178.466995F), new Vector2(435.040009F, -177.186996F)); + builder.AddLine(new Vector2(436.359985F, -178.347F)); + builder.AddLine(new Vector2(422.23999F, -178.347F)); + builder.AddLine(new Vector2(422.23999F, -175.347F)); + builder.AddLine(new Vector2(438.279999F, -175.347F)); + builder.AddCubicBezier(new Vector2(438.359985F, -175.720001F), new Vector2(438.412994F, -176.059998F), new Vector2(438.440002F, -176.367004F)); + builder.AddCubicBezier(new Vector2(438.466003F, -176.673004F), new Vector2(438.480011F, -176.960007F), new Vector2(438.480011F, -177.227005F)); + builder.AddCubicBezier(new Vector2(438.480011F, -179.039993F), new Vector2(438.100006F, -180.653F), new Vector2(437.339996F, -182.067001F)); + builder.AddCubicBezier(new Vector2(436.579987F, -183.479996F), new Vector2(435.519989F, -184.587006F), new Vector2(434.160004F, -185.386993F)); + builder.AddCubicBezier(new Vector2(432.799988F, -186.186996F), new Vector2(431.252991F, -186.587006F), new Vector2(429.519989F, -186.587006F)); + builder.AddCubicBezier(new Vector2(427.679993F, -186.587006F), new Vector2(426.019989F, -186.153F), new Vector2(424.540009F, -185.287003F)); + builder.AddCubicBezier(new Vector2(423.059998F, -184.419998F), new Vector2(421.885986F, -183.240005F), new Vector2(421.019989F, -181.746994F)); + builder.AddCubicBezier(new Vector2(420.153015F, -180.253006F), new Vector2(419.720001F, -178.572998F), new Vector2(419.720001F, -176.707001F)); + builder.AddCubicBezier(new Vector2(419.720001F, -174.813004F), new Vector2(420.160004F, -173.119995F), new Vector2(421.040009F, -171.626999F)); + builder.AddCubicBezier(new Vector2(421.920013F, -170.132996F), new Vector2(423.113007F, -168.953003F), new Vector2(424.619995F, -168.087006F)); + builder.AddCubicBezier(new Vector2(426.126007F, -167.220001F), new Vector2(427.839996F, -166.787003F), new Vector2(429.76001F, -166.787003F)); + builder.AddCubicBezier(new Vector2(431.252991F, -166.787003F), new Vector2(432.653015F, -167.067001F), new Vector2(433.959991F, -167.626999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1489() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(403.940002F, -171.026993F)); + builder.AddCubicBezier(new Vector2(403.019989F, -171.587006F), new Vector2(402.312988F, -172.352997F), new Vector2(401.820007F, -173.326996F)); + builder.AddCubicBezier(new Vector2(401.325989F, -174.300003F), new Vector2(401.079987F, -175.412994F), new Vector2(401.079987F, -176.667007F)); + builder.AddCubicBezier(new Vector2(401.079987F, -177.947006F), new Vector2(401.333008F, -179.072998F), new Vector2(401.839996F, -180.046997F)); + builder.AddCubicBezier(new Vector2(402.346008F, -181.020004F), new Vector2(403.053009F, -181.787003F), new Vector2(403.959991F, -182.347F)); + builder.AddCubicBezier(new Vector2(404.865997F, -182.906998F), new Vector2(405.906006F, -183.186996F), new Vector2(407.079987F, -183.186996F)); + builder.AddCubicBezier(new Vector2(408.279999F, -183.186996F), new Vector2(409.333008F, -182.906998F), new Vector2(410.23999F, -182.347F)); + builder.AddCubicBezier(new Vector2(411.145996F, -181.787003F), new Vector2(411.859985F, -181.020004F), new Vector2(412.380005F, -180.046997F)); + builder.AddCubicBezier(new Vector2(412.899994F, -179.072998F), new Vector2(413.160004F, -177.960007F), new Vector2(413.160004F, -176.707001F)); + builder.AddCubicBezier(new Vector2(413.160004F, -175.427002F), new Vector2(412.899994F, -174.300003F), new Vector2(412.380005F, -173.326996F)); + builder.AddCubicBezier(new Vector2(411.859985F, -172.352997F), new Vector2(411.145996F, -171.587006F), new Vector2(410.23999F, -171.026993F)); + builder.AddCubicBezier(new Vector2(409.333008F, -170.466995F), new Vector2(408.279999F, -170.186996F), new Vector2(407.079987F, -170.186996F)); + builder.AddCubicBezier(new Vector2(405.906006F, -170.186996F), new Vector2(404.859985F, -170.466995F), new Vector2(403.940002F, -171.026993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(401.279999F, -167.186996F)); + builder.AddLine(new Vector2(401.279999F, -172.307007F)); + builder.AddLine(new Vector2(400.600006F, -176.947006F)); + builder.AddLine(new Vector2(401.279999F, -181.546997F)); + builder.AddLine(new Vector2(401.279999F, -195.746994F)); + builder.AddLine(new Vector2(397.679993F, -195.746994F)); + builder.AddLine(new Vector2(397.679993F, -167.186996F)); + builder.AddLine(new Vector2(401.279999F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(412.380005F, -168.087006F)); + builder.AddCubicBezier(new Vector2(413.779999F, -168.953003F), new Vector2(414.880005F, -170.132996F), new Vector2(415.679993F, -171.626999F)); + builder.AddCubicBezier(new Vector2(416.480011F, -173.119995F), new Vector2(416.880005F, -174.800003F), new Vector2(416.880005F, -176.667007F)); + builder.AddCubicBezier(new Vector2(416.880005F, -178.533005F), new Vector2(416.480011F, -180.212997F), new Vector2(415.679993F, -181.707001F)); + builder.AddCubicBezier(new Vector2(414.880005F, -183.199997F), new Vector2(413.779999F, -184.386993F), new Vector2(412.380005F, -185.266998F)); + builder.AddCubicBezier(new Vector2(410.980011F, -186.147003F), new Vector2(409.412994F, -186.587006F), new Vector2(407.679993F, -186.587006F)); + builder.AddCubicBezier(new Vector2(406.265991F, -186.587006F), new Vector2(404.980011F, -186.287003F), new Vector2(403.820007F, -185.686996F)); + builder.AddCubicBezier(new Vector2(402.660004F, -185.087006F), new Vector2(401.726013F, -184.259995F), new Vector2(401.019989F, -183.207001F)); + builder.AddCubicBezier(new Vector2(400.312988F, -182.153F), new Vector2(399.920013F, -180.932999F), new Vector2(399.839996F, -179.546997F)); + builder.AddLine(new Vector2(399.839996F, -173.826996F)); + builder.AddCubicBezier(new Vector2(399.920013F, -172.466995F), new Vector2(400.306F, -171.253006F), new Vector2(401F, -170.186996F)); + builder.AddCubicBezier(new Vector2(401.692993F, -169.119995F), new Vector2(402.619995F, -168.287003F), new Vector2(403.779999F, -167.686996F)); + builder.AddCubicBezier(new Vector2(404.940002F, -167.087006F), new Vector2(406.23999F, -166.787003F), new Vector2(407.679993F, -166.787003F)); + builder.AddCubicBezier(new Vector2(409.412994F, -166.787003F), new Vector2(410.980011F, -167.220001F), new Vector2(412.380005F, -168.087006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1490() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(371.079987F, -167.186996F)); + builder.AddLine(new Vector2(371.079987F, -186.186996F)); + builder.AddLine(new Vector2(367.480011F, -186.186996F)); + builder.AddLine(new Vector2(367.480011F, -167.186996F)); + builder.AddLine(new Vector2(371.079987F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(384.519989F, -167.186996F)); + builder.AddLine(new Vector2(384.519989F, -178.987F)); + builder.AddCubicBezier(new Vector2(384.519989F, -180.292999F), new Vector2(384.200012F, -181.526993F), new Vector2(383.559998F, -182.686996F)); + builder.AddCubicBezier(new Vector2(382.920013F, -183.847F), new Vector2(382.04599F, -184.787003F), new Vector2(380.940002F, -185.507004F)); + builder.AddCubicBezier(new Vector2(379.833008F, -186.227005F), new Vector2(378.559998F, -186.587006F), new Vector2(377.119995F, -186.587006F)); + builder.AddCubicBezier(new Vector2(375.679993F, -186.587006F), new Vector2(374.385986F, -186.259995F), new Vector2(373.23999F, -185.606995F)); + builder.AddCubicBezier(new Vector2(372.092987F, -184.953003F), new Vector2(371.200012F, -184.067001F), new Vector2(370.559998F, -182.947006F)); + builder.AddCubicBezier(new Vector2(369.920013F, -181.826996F), new Vector2(369.600006F, -180.546997F), new Vector2(369.600006F, -179.106995F)); + builder.AddLine(new Vector2(371.079987F, -178.266998F)); + builder.AddCubicBezier(new Vector2(371.079987F, -179.227005F), new Vector2(371.292999F, -180.080002F), new Vector2(371.720001F, -180.826996F)); + builder.AddCubicBezier(new Vector2(372.145996F, -181.572998F), new Vector2(372.733002F, -182.160004F), new Vector2(373.480011F, -182.587006F)); + builder.AddCubicBezier(new Vector2(374.226013F, -183.013F), new Vector2(375.079987F, -183.227005F), new Vector2(376.040009F, -183.227005F)); + builder.AddCubicBezier(new Vector2(377.480011F, -183.227005F), new Vector2(378.645996F, -182.759995F), new Vector2(379.540009F, -181.826996F)); + builder.AddCubicBezier(new Vector2(380.433014F, -180.893005F), new Vector2(380.880005F, -179.707001F), new Vector2(380.880005F, -178.266998F)); + builder.AddLine(new Vector2(380.880005F, -167.186996F)); + builder.AddLine(new Vector2(384.519989F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1491() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(350.359985F, -171.106995F)); + builder.AddCubicBezier(new Vector2(349.425995F, -171.667007F), new Vector2(348.692993F, -172.432999F), new Vector2(348.160004F, -173.406998F)); + builder.AddCubicBezier(new Vector2(347.626007F, -174.380005F), new Vector2(347.359985F, -175.492996F), new Vector2(347.359985F, -176.746994F)); + builder.AddCubicBezier(new Vector2(347.359985F, -177.973007F), new Vector2(347.626007F, -179.067001F), new Vector2(348.160004F, -180.026993F)); + builder.AddCubicBezier(new Vector2(348.692993F, -180.987F), new Vector2(349.425995F, -181.740005F), new Vector2(350.359985F, -182.287003F)); + builder.AddCubicBezier(new Vector2(351.292999F, -182.832993F), new Vector2(352.346008F, -183.106995F), new Vector2(353.519989F, -183.106995F)); + builder.AddCubicBezier(new Vector2(354.746002F, -183.106995F), new Vector2(355.820007F, -182.832993F), new Vector2(356.73999F, -182.287003F)); + builder.AddCubicBezier(new Vector2(357.660004F, -181.740005F), new Vector2(358.393005F, -180.987F), new Vector2(358.940002F, -180.026993F)); + builder.AddCubicBezier(new Vector2(359.485992F, -179.067001F), new Vector2(359.76001F, -177.973007F), new Vector2(359.76001F, -176.746994F)); + builder.AddCubicBezier(new Vector2(359.76001F, -175.492996F), new Vector2(359.493011F, -174.380005F), new Vector2(358.959991F, -173.406998F)); + builder.AddCubicBezier(new Vector2(358.425995F, -172.432999F), new Vector2(357.692993F, -171.667007F), new Vector2(356.76001F, -171.106995F)); + builder.AddCubicBezier(new Vector2(355.825989F, -170.546997F), new Vector2(354.746002F, -170.266998F), new Vector2(353.519989F, -170.266998F)); + builder.AddCubicBezier(new Vector2(352.346008F, -170.266998F), new Vector2(351.292999F, -170.546997F), new Vector2(350.359985F, -171.106995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(358.579987F, -168.106995F)); + builder.AddCubicBezier(new Vector2(360.085999F, -168.987F), new Vector2(361.279999F, -170.179993F), new Vector2(362.160004F, -171.686996F)); + builder.AddCubicBezier(new Vector2(363.040009F, -173.192993F), new Vector2(363.480011F, -174.880005F), new Vector2(363.480011F, -176.746994F)); + builder.AddCubicBezier(new Vector2(363.480011F, -178.587006F), new Vector2(363.040009F, -180.253006F), new Vector2(362.160004F, -181.746994F)); + builder.AddCubicBezier(new Vector2(361.279999F, -183.240005F), new Vector2(360.085999F, -184.419998F), new Vector2(358.579987F, -185.287003F)); + builder.AddCubicBezier(new Vector2(357.072998F, -186.153F), new Vector2(355.385986F, -186.587006F), new Vector2(353.519989F, -186.587006F)); + builder.AddCubicBezier(new Vector2(351.679993F, -186.587006F), new Vector2(350.013F, -186.147003F), new Vector2(348.519989F, -185.266998F)); + builder.AddCubicBezier(new Vector2(347.026001F, -184.386993F), new Vector2(345.839996F, -183.207001F), new Vector2(344.959991F, -181.727005F)); + builder.AddCubicBezier(new Vector2(344.079987F, -180.246994F), new Vector2(343.640015F, -178.587006F), new Vector2(343.640015F, -176.746994F)); + builder.AddCubicBezier(new Vector2(343.640015F, -174.880005F), new Vector2(344.079987F, -173.192993F), new Vector2(344.959991F, -171.686996F)); + builder.AddCubicBezier(new Vector2(345.839996F, -170.179993F), new Vector2(347.026001F, -168.987F), new Vector2(348.519989F, -168.106995F)); + builder.AddCubicBezier(new Vector2(350.013F, -167.227005F), new Vector2(351.679993F, -166.787003F), new Vector2(353.519989F, -166.787003F)); + builder.AddCubicBezier(new Vector2(355.385986F, -166.787003F), new Vector2(357.072998F, -167.227005F), new Vector2(358.579987F, -168.106995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1492() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(341.959991F, -182.906998F)); + builder.AddLine(new Vector2(341.959991F, -186.186996F)); + builder.AddLine(new Vector2(329F, -186.186996F)); + builder.AddLine(new Vector2(329F, -182.906998F)); + builder.AddLine(new Vector2(341.959991F, -182.906998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(337.279999F, -167.186996F)); + builder.AddLine(new Vector2(337.279999F, -194.147003F)); + builder.AddLine(new Vector2(333.679993F, -194.147003F)); + builder.AddLine(new Vector2(333.679993F, -167.186996F)); + builder.AddLine(new Vector2(337.279999F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1493() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(327.959991F, -182.906998F)); + builder.AddLine(new Vector2(327.959991F, -186.186996F)); + builder.AddLine(new Vector2(315F, -186.186996F)); + builder.AddLine(new Vector2(315F, -182.906998F)); + builder.AddLine(new Vector2(327.959991F, -182.906998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(323.279999F, -167.186996F)); + builder.AddLine(new Vector2(323.279999F, -194.147003F)); + builder.AddLine(new Vector2(319.679993F, -194.147003F)); + builder.AddLine(new Vector2(319.679993F, -167.186996F)); + builder.AddLine(new Vector2(323.279999F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1494() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(308F, -167.886993F)); + builder.AddCubicBezier(new Vector2(309.226013F, -168.567001F), new Vector2(310.186005F, -169.533005F), new Vector2(310.880005F, -170.787003F)); + builder.AddCubicBezier(new Vector2(311.572998F, -172.039993F), new Vector2(311.920013F, -173.492996F), new Vector2(311.920013F, -175.147003F)); + builder.AddLine(new Vector2(311.920013F, -186.186996F)); + builder.AddLine(new Vector2(308.320007F, -186.186996F)); + builder.AddLine(new Vector2(308.320007F, -175.307007F)); + builder.AddCubicBezier(new Vector2(308.320007F, -173.733002F), new Vector2(307.920013F, -172.5F), new Vector2(307.119995F, -171.606995F)); + builder.AddCubicBezier(new Vector2(306.320007F, -170.712997F), new Vector2(305.213013F, -170.266998F), new Vector2(303.799988F, -170.266998F)); + builder.AddCubicBezier(new Vector2(302.865997F, -170.266998F), new Vector2(302.053009F, -170.466995F), new Vector2(301.359985F, -170.867004F)); + builder.AddCubicBezier(new Vector2(300.665985F, -171.266998F), new Vector2(300.140015F, -171.847F), new Vector2(299.779999F, -172.606995F)); + builder.AddCubicBezier(new Vector2(299.420013F, -173.367004F), new Vector2(299.23999F, -174.266998F), new Vector2(299.23999F, -175.307007F)); + builder.AddLine(new Vector2(299.23999F, -186.186996F)); + builder.AddLine(new Vector2(295.640015F, -186.186996F)); + builder.AddLine(new Vector2(295.640015F, -175.147003F)); + builder.AddCubicBezier(new Vector2(295.640015F, -173.492996F), new Vector2(295.985992F, -172.039993F), new Vector2(296.679993F, -170.787003F)); + builder.AddCubicBezier(new Vector2(297.372986F, -169.533005F), new Vector2(298.339996F, -168.567001F), new Vector2(299.579987F, -167.886993F)); + builder.AddCubicBezier(new Vector2(300.820007F, -167.207001F), new Vector2(302.226013F, -166.867004F), new Vector2(303.799988F, -166.867004F)); + builder.AddCubicBezier(new Vector2(305.372986F, -166.867004F), new Vector2(306.77301F, -167.207001F), new Vector2(308F, -167.886993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1495() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(279.100006F, -171.026993F)); + builder.AddCubicBezier(new Vector2(278.179993F, -171.587006F), new Vector2(277.472992F, -172.352997F), new Vector2(276.980011F, -173.326996F)); + builder.AddCubicBezier(new Vector2(276.485992F, -174.300003F), new Vector2(276.23999F, -175.412994F), new Vector2(276.23999F, -176.667007F)); + builder.AddCubicBezier(new Vector2(276.23999F, -177.947006F), new Vector2(276.493011F, -179.072998F), new Vector2(277F, -180.046997F)); + builder.AddCubicBezier(new Vector2(277.506012F, -181.020004F), new Vector2(278.213013F, -181.787003F), new Vector2(279.119995F, -182.347F)); + builder.AddCubicBezier(new Vector2(280.026001F, -182.906998F), new Vector2(281.06601F, -183.186996F), new Vector2(282.23999F, -183.186996F)); + builder.AddCubicBezier(new Vector2(283.440002F, -183.186996F), new Vector2(284.493011F, -182.906998F), new Vector2(285.399994F, -182.347F)); + builder.AddCubicBezier(new Vector2(286.306F, -181.787003F), new Vector2(287.019989F, -181.020004F), new Vector2(287.540009F, -180.046997F)); + builder.AddCubicBezier(new Vector2(288.059998F, -179.072998F), new Vector2(288.320007F, -177.960007F), new Vector2(288.320007F, -176.707001F)); + builder.AddCubicBezier(new Vector2(288.320007F, -175.427002F), new Vector2(288.059998F, -174.300003F), new Vector2(287.540009F, -173.326996F)); + builder.AddCubicBezier(new Vector2(287.019989F, -172.352997F), new Vector2(286.306F, -171.587006F), new Vector2(285.399994F, -171.026993F)); + builder.AddCubicBezier(new Vector2(284.493011F, -170.466995F), new Vector2(283.440002F, -170.186996F), new Vector2(282.23999F, -170.186996F)); + builder.AddCubicBezier(new Vector2(281.06601F, -170.186996F), new Vector2(280.019989F, -170.466995F), new Vector2(279.100006F, -171.026993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(276.440002F, -167.186996F)); + builder.AddLine(new Vector2(276.440002F, -172.307007F)); + builder.AddLine(new Vector2(275.76001F, -176.947006F)); + builder.AddLine(new Vector2(276.440002F, -181.546997F)); + builder.AddLine(new Vector2(276.440002F, -195.746994F)); + builder.AddLine(new Vector2(272.839996F, -195.746994F)); + builder.AddLine(new Vector2(272.839996F, -167.186996F)); + builder.AddLine(new Vector2(276.440002F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(287.540009F, -168.087006F)); + builder.AddCubicBezier(new Vector2(288.940002F, -168.953003F), new Vector2(290.040009F, -170.132996F), new Vector2(290.839996F, -171.626999F)); + builder.AddCubicBezier(new Vector2(291.640015F, -173.119995F), new Vector2(292.040009F, -174.800003F), new Vector2(292.040009F, -176.667007F)); + builder.AddCubicBezier(new Vector2(292.040009F, -178.533005F), new Vector2(291.640015F, -180.212997F), new Vector2(290.839996F, -181.707001F)); + builder.AddCubicBezier(new Vector2(290.040009F, -183.199997F), new Vector2(288.940002F, -184.386993F), new Vector2(287.540009F, -185.266998F)); + builder.AddCubicBezier(new Vector2(286.140015F, -186.147003F), new Vector2(284.572998F, -186.587006F), new Vector2(282.839996F, -186.587006F)); + builder.AddCubicBezier(new Vector2(281.425995F, -186.587006F), new Vector2(280.140015F, -186.287003F), new Vector2(278.980011F, -185.686996F)); + builder.AddCubicBezier(new Vector2(277.820007F, -185.087006F), new Vector2(276.885986F, -184.259995F), new Vector2(276.179993F, -183.207001F)); + builder.AddCubicBezier(new Vector2(275.472992F, -182.153F), new Vector2(275.079987F, -180.932999F), new Vector2(275F, -179.546997F)); + builder.AddLine(new Vector2(275F, -173.826996F)); + builder.AddCubicBezier(new Vector2(275.079987F, -172.466995F), new Vector2(275.466003F, -171.253006F), new Vector2(276.160004F, -170.186996F)); + builder.AddCubicBezier(new Vector2(276.852997F, -169.119995F), new Vector2(277.779999F, -168.287003F), new Vector2(278.940002F, -167.686996F)); + builder.AddCubicBezier(new Vector2(280.100006F, -167.087006F), new Vector2(281.399994F, -166.787003F), new Vector2(282.839996F, -166.787003F)); + builder.AddCubicBezier(new Vector2(284.572998F, -166.787003F), new Vector2(286.140015F, -167.220001F), new Vector2(287.540009F, -168.087006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1496() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(249F, -184.987F)); + builder.AddLine(new Vector2(251.639999F, -189.947006F)); + builder.AddCubicBezier(new Vector2(251.985992F, -190.587006F), new Vector2(252.220001F, -191.113007F), new Vector2(252.339996F, -191.526993F)); + builder.AddCubicBezier(new Vector2(252.460007F, -191.940002F), new Vector2(252.520004F, -192.307007F), new Vector2(252.520004F, -192.626999F)); + builder.AddCubicBezier(new Vector2(252.520004F, -193.373001F), new Vector2(252.253006F, -194.013F), new Vector2(251.720001F, -194.546997F)); + builder.AddCubicBezier(new Vector2(251.186005F, -195.080002F), new Vector2(250.572998F, -195.347F), new Vector2(249.880005F, -195.347F)); + builder.AddCubicBezier(new Vector2(249.132996F, -195.347F), new Vector2(248.5F, -195.080002F), new Vector2(247.979996F, -194.546997F)); + builder.AddCubicBezier(new Vector2(247.460007F, -194.013F), new Vector2(247.199997F, -193.373001F), new Vector2(247.199997F, -192.626999F)); + builder.AddCubicBezier(new Vector2(247.199997F, -191.906998F), new Vector2(247.432999F, -191.320007F), new Vector2(247.899994F, -190.867004F)); + builder.AddCubicBezier(new Vector2(248.365997F, -190.412994F), new Vector2(248.880005F, -190.186996F), new Vector2(249.440002F, -190.186996F)); + builder.AddCubicBezier(new Vector2(249.733002F, -190.186996F), new Vector2(249.979996F, -190.279999F), new Vector2(250.179993F, -190.466995F)); + builder.AddCubicBezier(new Vector2(250.380005F, -190.653F), new Vector2(250.546005F, -190.893005F), new Vector2(250.679993F, -191.186996F)); + builder.AddLine(new Vector2(249.399994F, -190.867004F)); + builder.AddLine(new Vector2(246.919998F, -186.106995F)); + builder.AddLine(new Vector2(249F, -184.987F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(256.359985F, -184.987F)); + builder.AddLine(new Vector2(259F, -189.947006F)); + builder.AddCubicBezier(new Vector2(259.346008F, -190.587006F), new Vector2(259.579987F, -191.113007F), new Vector2(259.700012F, -191.526993F)); + builder.AddCubicBezier(new Vector2(259.820007F, -191.940002F), new Vector2(259.880005F, -192.307007F), new Vector2(259.880005F, -192.626999F)); + builder.AddCubicBezier(new Vector2(259.880005F, -193.373001F), new Vector2(259.613007F, -194.013F), new Vector2(259.079987F, -194.546997F)); + builder.AddCubicBezier(new Vector2(258.54599F, -195.080002F), new Vector2(257.933014F, -195.347F), new Vector2(257.23999F, -195.347F)); + builder.AddCubicBezier(new Vector2(256.493011F, -195.347F), new Vector2(255.860001F, -195.080002F), new Vector2(255.339996F, -194.546997F)); + builder.AddCubicBezier(new Vector2(254.820007F, -194.013F), new Vector2(254.559998F, -193.373001F), new Vector2(254.559998F, -192.626999F)); + builder.AddCubicBezier(new Vector2(254.559998F, -191.906998F), new Vector2(254.792999F, -191.320007F), new Vector2(255.259995F, -190.867004F)); + builder.AddCubicBezier(new Vector2(255.725998F, -190.412994F), new Vector2(256.23999F, -190.186996F), new Vector2(256.799988F, -190.186996F)); + builder.AddCubicBezier(new Vector2(257.092987F, -190.186996F), new Vector2(257.339996F, -190.279999F), new Vector2(257.540009F, -190.466995F)); + builder.AddCubicBezier(new Vector2(257.73999F, -190.653F), new Vector2(257.906006F, -190.893005F), new Vector2(258.040009F, -191.186996F)); + builder.AddLine(new Vector2(256.76001F, -190.867004F)); + builder.AddLine(new Vector2(254.279999F, -186.106995F)); + builder.AddLine(new Vector2(256.359985F, -184.987F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1497() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(238.919998F, -167.567001F)); + builder.AddCubicBezier(new Vector2(240.279999F, -168.113007F), new Vector2(241.440002F, -168.960007F), new Vector2(242.399994F, -170.106995F)); + builder.AddLine(new Vector2(239F, -173.466995F)); + builder.AddCubicBezier(new Vector2(238.412994F, -172.800003F), new Vector2(237.733002F, -172.300003F), new Vector2(236.960007F, -171.966995F)); + builder.AddCubicBezier(new Vector2(236.186005F, -171.632996F), new Vector2(235.332993F, -171.466995F), new Vector2(234.399994F, -171.466995F)); + builder.AddCubicBezier(new Vector2(233.360001F, -171.466995F), new Vector2(232.460007F, -171.686996F), new Vector2(231.699997F, -172.126999F)); + builder.AddCubicBezier(new Vector2(230.940002F, -172.567001F), new Vector2(230.352997F, -173.199997F), new Vector2(229.940002F, -174.026993F)); + builder.AddCubicBezier(new Vector2(229.526001F, -174.852997F), new Vector2(229.320007F, -175.826996F), new Vector2(229.320007F, -176.947006F)); + builder.AddCubicBezier(new Vector2(229.320007F, -178.067001F), new Vector2(229.513F, -179.026993F), new Vector2(229.899994F, -179.826996F)); + builder.AddCubicBezier(new Vector2(230.285995F, -180.626999F), new Vector2(230.832993F, -181.253006F), new Vector2(231.539993F, -181.707001F)); + builder.AddCubicBezier(new Vector2(232.246002F, -182.160004F), new Vector2(233.080002F, -182.386993F), new Vector2(234.039993F, -182.386993F)); + builder.AddCubicBezier(new Vector2(234.919998F, -182.386993F), new Vector2(235.673004F, -182.186996F), new Vector2(236.300003F, -181.787003F)); + builder.AddCubicBezier(new Vector2(236.925995F, -181.386993F), new Vector2(237.399994F, -180.820007F), new Vector2(237.720001F, -180.087006F)); + builder.AddCubicBezier(new Vector2(238.039993F, -179.352997F), new Vector2(238.212997F, -178.440002F), new Vector2(238.240005F, -177.347F)); + builder.AddLine(new Vector2(240.880005F, -179.147003F)); + builder.AddLine(new Vector2(226.800003F, -179.067001F)); + builder.AddLine(new Vector2(226.800003F, -174.826996F)); + builder.AddLine(new Vector2(243.520004F, -174.906998F)); + builder.AddCubicBezier(new Vector2(243.653F, -175.386993F), new Vector2(243.740005F, -175.820007F), new Vector2(243.779999F, -176.207001F)); + builder.AddCubicBezier(new Vector2(243.820007F, -176.593002F), new Vector2(243.839996F, -176.973007F), new Vector2(243.839996F, -177.347F)); + builder.AddCubicBezier(new Vector2(243.839996F, -179.240005F), new Vector2(243.412994F, -180.919998F), new Vector2(242.559998F, -182.386993F)); + builder.AddCubicBezier(new Vector2(241.705994F, -183.852997F), new Vector2(240.546005F, -185F), new Vector2(239.080002F, -185.826996F)); + builder.AddCubicBezier(new Vector2(237.613007F, -186.653F), new Vector2(235.906006F, -187.067001F), new Vector2(233.960007F, -187.067001F)); + builder.AddCubicBezier(new Vector2(231.985992F, -187.067001F), new Vector2(230.212997F, -186.626999F), new Vector2(228.639999F, -185.746994F)); + builder.AddCubicBezier(new Vector2(227.065994F, -184.867004F), new Vector2(225.826004F, -183.660004F), new Vector2(224.919998F, -182.126999F)); + builder.AddCubicBezier(new Vector2(224.013F, -180.593002F), new Vector2(223.559998F, -178.867004F), new Vector2(223.559998F, -176.947006F)); + builder.AddCubicBezier(new Vector2(223.559998F, -174.973007F), new Vector2(224.026001F, -173.212997F), new Vector2(224.960007F, -171.667007F)); + builder.AddCubicBezier(new Vector2(225.893005F, -170.119995F), new Vector2(227.173004F, -168.912994F), new Vector2(228.800003F, -168.046997F)); + builder.AddCubicBezier(new Vector2(230.425995F, -167.181F), new Vector2(232.292999F, -166.746994F), new Vector2(234.399994F, -166.746994F)); + builder.AddCubicBezier(new Vector2(236.052994F, -166.746994F), new Vector2(237.559998F, -167.020996F), new Vector2(238.919998F, -167.567001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1498() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(215.339996F, -180.647003F)); + builder.AddCubicBezier(new Vector2(215.940002F, -181.272995F), new Vector2(216.759995F, -181.587006F), new Vector2(217.800003F, -181.587006F)); + builder.AddCubicBezier(new Vector2(218.306F, -181.587006F), new Vector2(218.759995F, -181.507004F), new Vector2(219.160004F, -181.347F)); + builder.AddCubicBezier(new Vector2(219.559998F, -181.186996F), new Vector2(219.880005F, -180.973007F), new Vector2(220.119995F, -180.707001F)); + builder.AddLine(new Vector2(223.759995F, -185.347F)); + builder.AddCubicBezier(new Vector2(223.225998F, -185.906998F), new Vector2(222.606003F, -186.326996F), new Vector2(221.899994F, -186.606995F)); + builder.AddCubicBezier(new Vector2(221.192993F, -186.886993F), new Vector2(220.373001F, -187.026993F), new Vector2(219.440002F, -187.026993F)); + builder.AddCubicBezier(new Vector2(217.332993F, -187.026993F), new Vector2(215.673004F, -186.399994F), new Vector2(214.460007F, -185.147003F)); + builder.AddCubicBezier(new Vector2(213.246002F, -183.893005F), new Vector2(212.386002F, -182.119995F), new Vector2(211.880005F, -179.826996F)); + builder.AddLine(new Vector2(214.440002F, -177.826996F)); + builder.AddCubicBezier(new Vector2(214.440002F, -179.080002F), new Vector2(214.740005F, -180.020004F), new Vector2(215.339996F, -180.647003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(214.440002F, -167.186996F)); + builder.AddLine(new Vector2(214.440002F, -186.626999F)); + builder.AddLine(new Vector2(208.279999F, -186.626999F)); + builder.AddLine(new Vector2(208.279999F, -167.186996F)); + builder.AddLine(new Vector2(214.440002F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1499() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(192.360001F, -172.906998F)); + builder.AddCubicBezier(new Vector2(191.692993F, -173.279999F), new Vector2(191.173004F, -173.820007F), new Vector2(190.800003F, -174.526993F)); + builder.AddCubicBezier(new Vector2(190.425995F, -175.233002F), new Vector2(190.240005F, -176.039993F), new Vector2(190.240005F, -176.947006F)); + builder.AddCubicBezier(new Vector2(190.240005F, -177.800003F), new Vector2(190.425995F, -178.572998F), new Vector2(190.800003F, -179.266998F)); + builder.AddCubicBezier(new Vector2(191.173004F, -179.960007F), new Vector2(191.692993F, -180.5F), new Vector2(192.360001F, -180.886993F)); + builder.AddCubicBezier(new Vector2(193.026001F, -181.272995F), new Vector2(193.785995F, -181.466995F), new Vector2(194.639999F, -181.466995F)); + builder.AddCubicBezier(new Vector2(195.492996F, -181.466995F), new Vector2(196.246002F, -181.272995F), new Vector2(196.899994F, -180.886993F)); + builder.AddCubicBezier(new Vector2(197.552994F, -180.5F), new Vector2(198.065994F, -179.966995F), new Vector2(198.440002F, -179.287003F)); + builder.AddCubicBezier(new Vector2(198.813004F, -178.606995F), new Vector2(199F, -177.826996F), new Vector2(199F, -176.947006F)); + builder.AddCubicBezier(new Vector2(199F, -176.039993F), new Vector2(198.820007F, -175.233002F), new Vector2(198.460007F, -174.526993F)); + builder.AddCubicBezier(new Vector2(198.100006F, -173.820007F), new Vector2(197.585999F, -173.279999F), new Vector2(196.919998F, -172.906998F)); + builder.AddCubicBezier(new Vector2(196.253006F, -172.533005F), new Vector2(195.492996F, -172.347F), new Vector2(194.639999F, -172.347F)); + builder.AddCubicBezier(new Vector2(193.785995F, -172.347F), new Vector2(193.026001F, -172.533005F), new Vector2(192.360001F, -172.906998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(200.080002F, -168.106995F)); + builder.AddCubicBezier(new Vector2(201.679993F, -169.013F), new Vector2(202.945999F, -170.233002F), new Vector2(203.880005F, -171.766998F)); + builder.AddCubicBezier(new Vector2(204.813004F, -173.300003F), new Vector2(205.279999F, -175.039993F), new Vector2(205.279999F, -176.987F)); + builder.AddCubicBezier(new Vector2(205.279999F, -178.880005F), new Vector2(204.813004F, -180.593002F), new Vector2(203.880005F, -182.126999F)); + builder.AddCubicBezier(new Vector2(202.945999F, -183.660004F), new Vector2(201.673004F, -184.867004F), new Vector2(200.059998F, -185.746994F)); + builder.AddCubicBezier(new Vector2(198.445999F, -186.626999F), new Vector2(196.639999F, -187.067001F), new Vector2(194.639999F, -187.067001F)); + builder.AddCubicBezier(new Vector2(192.585999F, -187.067001F), new Vector2(190.759995F, -186.619995F), new Vector2(189.160004F, -185.727005F)); + builder.AddCubicBezier(new Vector2(187.559998F, -184.832993F), new Vector2(186.300003F, -183.626999F), new Vector2(185.380005F, -182.106995F)); + builder.AddCubicBezier(new Vector2(184.460007F, -180.587006F), new Vector2(184F, -178.880005F), new Vector2(184F, -176.987F)); + builder.AddCubicBezier(new Vector2(184F, -175.067001F), new Vector2(184.466003F, -173.332993F), new Vector2(185.399994F, -171.787003F)); + builder.AddCubicBezier(new Vector2(186.332993F, -170.240005F), new Vector2(187.600006F, -169.013F), new Vector2(189.199997F, -168.106995F)); + builder.AddCubicBezier(new Vector2(190.800003F, -167.199997F), new Vector2(192.613007F, -166.746994F), new Vector2(194.639999F, -166.746994F)); + builder.AddCubicBezier(new Vector2(196.666F, -166.746994F), new Vector2(198.479996F, -167.199997F), new Vector2(200.080002F, -168.106995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1500() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(157.759995F, -167.186996F)); + builder.AddLine(new Vector2(157.759995F, -184.826996F)); + builder.AddLine(new Vector2(156.679993F, -184.507004F)); + builder.AddLine(new Vector2(163.880005F, -173.266998F)); + builder.AddLine(new Vector2(168.039993F, -173.266998F)); + builder.AddLine(new Vector2(175.240005F, -184.507004F)); + builder.AddLine(new Vector2(174.160004F, -184.826996F)); + builder.AddLine(new Vector2(174.160004F, -167.186996F)); + builder.AddLine(new Vector2(180.440002F, -167.186996F)); + builder.AddLine(new Vector2(180.440002F, -195.427002F)); + builder.AddLine(new Vector2(175.880005F, -195.427002F)); + builder.AddLine(new Vector2(164.800003F, -178.106995F)); + builder.AddLine(new Vector2(167.160004F, -178.106995F)); + builder.AddLine(new Vector2(156.039993F, -195.427002F)); + builder.AddLine(new Vector2(151.479996F, -195.427002F)); + builder.AddLine(new Vector2(151.479996F, -167.186996F)); + builder.AddLine(new Vector2(157.759995F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1501() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(126.599998F, -167.186996F)); + builder.AddLine(new Vector2(126.599998F, -186.626999F)); + builder.AddLine(new Vector2(120.440002F, -186.626999F)); + builder.AddLine(new Vector2(120.440002F, -167.186996F)); + builder.AddLine(new Vector2(126.599998F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(139.479996F, -167.186996F)); + builder.AddLine(new Vector2(139.479996F, -179.626999F)); + builder.AddCubicBezier(new Vector2(139.479996F, -180.960007F), new Vector2(139.160004F, -182.192993F), new Vector2(138.520004F, -183.326996F)); + builder.AddCubicBezier(new Vector2(137.880005F, -184.460007F), new Vector2(137F, -185.360001F), new Vector2(135.880005F, -186.026993F)); + builder.AddCubicBezier(new Vector2(134.759995F, -186.692993F), new Vector2(133.492996F, -187.026993F), new Vector2(132.080002F, -187.026993F)); + builder.AddCubicBezier(new Vector2(130.585999F, -187.026993F), new Vector2(129.246002F, -186.712997F), new Vector2(128.059998F, -186.087006F)); + builder.AddCubicBezier(new Vector2(126.873001F, -185.460007F), new Vector2(125.940002F, -184.572998F), new Vector2(125.260002F, -183.427002F)); + builder.AddCubicBezier(new Vector2(124.580002F, -182.279999F), new Vector2(124.239998F, -180.947006F), new Vector2(124.239998F, -179.427002F)); + builder.AddLine(new Vector2(126.599998F, -178.266998F)); + builder.AddCubicBezier(new Vector2(126.599998F, -178.932999F), new Vector2(126.746002F, -179.520004F), new Vector2(127.040001F, -180.026993F)); + builder.AddCubicBezier(new Vector2(127.333F, -180.533005F), new Vector2(127.733002F, -180.927002F), new Vector2(128.240005F, -181.207001F)); + builder.AddCubicBezier(new Vector2(128.746002F, -181.487F), new Vector2(129.320007F, -181.626999F), new Vector2(129.960007F, -181.626999F)); + builder.AddCubicBezier(new Vector2(130.919998F, -181.626999F), new Vector2(131.720001F, -181.313004F), new Vector2(132.360001F, -180.686996F)); + builder.AddCubicBezier(new Vector2(133F, -180.059998F), new Vector2(133.320007F, -179.253006F), new Vector2(133.320007F, -178.266998F)); + builder.AddLine(new Vector2(133.320007F, -167.186996F)); + builder.AddLine(new Vector2(139.479996F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1502() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(110.580002F, -180.647003F)); + builder.AddCubicBezier(new Vector2(111.18F, -181.272995F), new Vector2(112F, -181.587006F), new Vector2(113.040001F, -181.587006F)); + builder.AddCubicBezier(new Vector2(113.545998F, -181.587006F), new Vector2(114F, -181.507004F), new Vector2(114.400002F, -181.347F)); + builder.AddCubicBezier(new Vector2(114.800003F, -181.186996F), new Vector2(115.120003F, -180.973007F), new Vector2(115.360001F, -180.707001F)); + builder.AddLine(new Vector2(119F, -185.347F)); + builder.AddCubicBezier(new Vector2(118.466003F, -185.906998F), new Vector2(117.846001F, -186.326996F), new Vector2(117.139999F, -186.606995F)); + builder.AddCubicBezier(new Vector2(116.432999F, -186.886993F), new Vector2(115.612999F, -187.026993F), new Vector2(114.68F, -187.026993F)); + builder.AddCubicBezier(new Vector2(112.572998F, -187.026993F), new Vector2(110.913002F, -186.399994F), new Vector2(109.699997F, -185.147003F)); + builder.AddCubicBezier(new Vector2(108.486F, -183.893005F), new Vector2(107.625999F, -182.119995F), new Vector2(107.120003F, -179.826996F)); + builder.AddLine(new Vector2(109.68F, -177.826996F)); + builder.AddCubicBezier(new Vector2(109.68F, -179.080002F), new Vector2(109.980003F, -180.020004F), new Vector2(110.580002F, -180.647003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(109.68F, -167.186996F)); + builder.AddLine(new Vector2(109.68F, -186.626999F)); + builder.AddLine(new Vector2(103.519997F, -186.626999F)); + builder.AddLine(new Vector2(103.519997F, -167.186996F)); + builder.AddLine(new Vector2(109.68F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1503() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(99.2399979F, -167.186996F)); + builder.AddLine(new Vector2(99.2399979F, -186.626999F)); + builder.AddLine(new Vector2(93.1999969F, -186.626999F)); + builder.AddLine(new Vector2(93.1999969F, -181.867004F)); + builder.AddLine(new Vector2(94.1200027F, -177.186996F)); + builder.AddLine(new Vector2(93.1999969F, -172.427002F)); + builder.AddLine(new Vector2(93.1999969F, -167.186996F)); + builder.AddLine(new Vector2(99.2399979F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(86.9000015F, -172.927002F)); + builder.AddCubicBezier(new Vector2(86.2460022F, -173.313004F), new Vector2(85.7259979F, -173.852997F), new Vector2(85.3399963F, -174.546997F)); + builder.AddCubicBezier(new Vector2(84.9530029F, -175.240005F), new Vector2(84.7600021F, -176.026993F), new Vector2(84.7600021F, -176.906998F)); + builder.AddCubicBezier(new Vector2(84.7600021F, -177.787003F), new Vector2(84.9530029F, -178.572998F), new Vector2(85.3399963F, -179.266998F)); + builder.AddCubicBezier(new Vector2(85.7259979F, -179.960007F), new Vector2(86.2460022F, -180.5F), new Vector2(86.9000015F, -180.886993F)); + builder.AddCubicBezier(new Vector2(87.5530014F, -181.272995F), new Vector2(88.2929993F, -181.466995F), new Vector2(89.1200027F, -181.466995F)); + builder.AddCubicBezier(new Vector2(89.9729996F, -181.466995F), new Vector2(90.7330017F, -181.272995F), new Vector2(91.4000015F, -180.886993F)); + builder.AddCubicBezier(new Vector2(92.0660019F, -180.5F), new Vector2(92.572998F, -179.966995F), new Vector2(92.9199982F, -179.287003F)); + builder.AddCubicBezier(new Vector2(93.2659988F, -178.606995F), new Vector2(93.4400024F, -177.826996F), new Vector2(93.4400024F, -176.947006F)); + builder.AddCubicBezier(new Vector2(93.4400024F, -175.587006F), new Vector2(93.0459976F, -174.479996F), new Vector2(92.2600021F, -173.626999F)); + builder.AddCubicBezier(new Vector2(91.4729996F, -172.772995F), new Vector2(90.4260025F, -172.347F), new Vector2(89.1200027F, -172.347F)); + builder.AddCubicBezier(new Vector2(88.2929993F, -172.347F), new Vector2(87.5530014F, -172.539993F), new Vector2(86.9000015F, -172.927002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(91.4199982F, -167.546997F)); + builder.AddCubicBezier(new Vector2(92.4729996F, -168.052994F), new Vector2(93.3259964F, -168.753006F), new Vector2(93.9800034F, -169.647003F)); + builder.AddCubicBezier(new Vector2(94.6330032F, -170.539993F), new Vector2(95F, -171.559998F), new Vector2(95.0800018F, -172.707001F)); + builder.AddLine(new Vector2(95.0800018F, -181.106995F)); + builder.AddCubicBezier(new Vector2(95F, -182.253006F), new Vector2(94.6259995F, -183.272995F), new Vector2(93.9599991F, -184.167007F)); + builder.AddCubicBezier(new Vector2(93.2929993F, -185.059998F), new Vector2(92.4329987F, -185.759995F), new Vector2(91.3799973F, -186.266998F)); + builder.AddCubicBezier(new Vector2(90.3259964F, -186.772995F), new Vector2(89.1460037F, -187.026993F), new Vector2(87.8399963F, -187.026993F)); + builder.AddCubicBezier(new Vector2(86.0530014F, -187.026993F), new Vector2(84.4599991F, -186.593002F), new Vector2(83.0599976F, -185.727005F)); + builder.AddCubicBezier(new Vector2(81.6600037F, -184.860001F), new Vector2(80.5530014F, -183.660004F), new Vector2(79.7399979F, -182.126999F)); + builder.AddCubicBezier(new Vector2(78.9260025F, -180.593002F), new Vector2(78.5199966F, -178.852997F), new Vector2(78.5199966F, -176.906998F)); + builder.AddCubicBezier(new Vector2(78.5199966F, -174.960007F), new Vector2(78.9260025F, -173.233002F), new Vector2(79.7399979F, -171.727005F)); + builder.AddCubicBezier(new Vector2(80.5530014F, -170.220001F), new Vector2(81.6660004F, -169.020004F), new Vector2(83.0800018F, -168.126999F)); + builder.AddCubicBezier(new Vector2(84.4929962F, -167.233002F), new Vector2(86.0800018F, -166.787003F), new Vector2(87.8399963F, -166.787003F)); + builder.AddCubicBezier(new Vector2(89.1729965F, -166.787003F), new Vector2(90.3659973F, -167.041F), new Vector2(91.4199982F, -167.546997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1504() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(71.9199982F, -167.567001F)); + builder.AddCubicBezier(new Vector2(73.2799988F, -168.113007F), new Vector2(74.4400024F, -168.960007F), new Vector2(75.4000015F, -170.106995F)); + builder.AddLine(new Vector2(72F, -173.466995F)); + builder.AddCubicBezier(new Vector2(71.413002F, -172.800003F), new Vector2(70.7330017F, -172.300003F), new Vector2(69.9599991F, -171.966995F)); + builder.AddCubicBezier(new Vector2(69.185997F, -171.632996F), new Vector2(68.3330002F, -171.466995F), new Vector2(67.4000015F, -171.466995F)); + builder.AddCubicBezier(new Vector2(66.3600006F, -171.466995F), new Vector2(65.4599991F, -171.686996F), new Vector2(64.6999969F, -172.126999F)); + builder.AddCubicBezier(new Vector2(63.9399986F, -172.567001F), new Vector2(63.3530006F, -173.199997F), new Vector2(62.9399986F, -174.026993F)); + builder.AddCubicBezier(new Vector2(62.526001F, -174.852997F), new Vector2(62.3199997F, -175.826996F), new Vector2(62.3199997F, -176.947006F)); + builder.AddCubicBezier(new Vector2(62.3199997F, -178.067001F), new Vector2(62.5130005F, -179.026993F), new Vector2(62.9000015F, -179.826996F)); + builder.AddCubicBezier(new Vector2(63.2859993F, -180.626999F), new Vector2(63.8330002F, -181.253006F), new Vector2(64.5400009F, -181.707001F)); + builder.AddCubicBezier(new Vector2(65.2460022F, -182.160004F), new Vector2(66.0800018F, -182.386993F), new Vector2(67.0400009F, -182.386993F)); + builder.AddCubicBezier(new Vector2(67.9199982F, -182.386993F), new Vector2(68.6729965F, -182.186996F), new Vector2(69.3000031F, -181.787003F)); + builder.AddCubicBezier(new Vector2(69.9260025F, -181.386993F), new Vector2(70.4000015F, -180.820007F), new Vector2(70.7200012F, -180.087006F)); + builder.AddCubicBezier(new Vector2(71.0400009F, -179.352997F), new Vector2(71.2129974F, -178.440002F), new Vector2(71.2399979F, -177.347F)); + builder.AddLine(new Vector2(73.8799973F, -179.147003F)); + builder.AddLine(new Vector2(59.7999992F, -179.067001F)); + builder.AddLine(new Vector2(59.7999992F, -174.826996F)); + builder.AddLine(new Vector2(76.5199966F, -174.906998F)); + builder.AddCubicBezier(new Vector2(76.6529999F, -175.386993F), new Vector2(76.7399979F, -175.820007F), new Vector2(76.7799988F, -176.207001F)); + builder.AddCubicBezier(new Vector2(76.8199997F, -176.593002F), new Vector2(76.8399963F, -176.973007F), new Vector2(76.8399963F, -177.347F)); + builder.AddCubicBezier(new Vector2(76.8399963F, -179.240005F), new Vector2(76.413002F, -180.919998F), new Vector2(75.5599976F, -182.386993F)); + builder.AddCubicBezier(new Vector2(74.7060013F, -183.852997F), new Vector2(73.5459976F, -185F), new Vector2(72.0800018F, -185.826996F)); + builder.AddCubicBezier(new Vector2(70.612999F, -186.653F), new Vector2(68.9059982F, -187.067001F), new Vector2(66.9599991F, -187.067001F)); + builder.AddCubicBezier(new Vector2(64.9860001F, -187.067001F), new Vector2(63.2130013F, -186.626999F), new Vector2(61.6399994F, -185.746994F)); + builder.AddCubicBezier(new Vector2(60.0660019F, -184.867004F), new Vector2(58.8260002F, -183.660004F), new Vector2(57.9199982F, -182.126999F)); + builder.AddCubicBezier(new Vector2(57.0130005F, -180.593002F), new Vector2(56.5600014F, -178.867004F), new Vector2(56.5600014F, -176.947006F)); + builder.AddCubicBezier(new Vector2(56.5600014F, -174.973007F), new Vector2(57.026001F, -173.212997F), new Vector2(57.9599991F, -171.667007F)); + builder.AddCubicBezier(new Vector2(58.8930016F, -170.119995F), new Vector2(60.1730003F, -168.912994F), new Vector2(61.7999992F, -168.046997F)); + builder.AddCubicBezier(new Vector2(63.4259987F, -167.181F), new Vector2(65.2929993F, -166.746994F), new Vector2(67.4000015F, -166.746994F)); + builder.AddCubicBezier(new Vector2(69.0530014F, -166.746994F), new Vector2(70.5599976F, -167.020996F), new Vector2(71.9199982F, -167.567001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1505() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(55.0800018F, -167.186996F)); + builder.AddLine(new Vector2(55.0800018F, -172.707001F)); + builder.AddLine(new Vector2(41.1199989F, -172.707001F)); + builder.AddLine(new Vector2(41.1199989F, -167.186996F)); + builder.AddLine(new Vector2(55.0800018F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(42.5600014F, -167.186996F)); + builder.AddLine(new Vector2(42.5600014F, -195.427002F)); + builder.AddLine(new Vector2(36.2400017F, -195.427002F)); + builder.AddLine(new Vector2(36.2400017F, -167.186996F)); + builder.AddLine(new Vector2(42.5600014F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1506() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(29.2399998F, -196.106995F)); + builder.AddLine(new Vector2(26.5599995F, -191.147003F)); + builder.AddCubicBezier(new Vector2(26.2399998F, -190.479996F), new Vector2(26.0130005F, -189.940002F), new Vector2(25.8799992F, -189.526993F)); + builder.AddCubicBezier(new Vector2(25.7460003F, -189.113007F), new Vector2(25.6800003F, -188.759995F), new Vector2(25.6800003F, -188.466995F)); + builder.AddCubicBezier(new Vector2(25.6800003F, -187.720001F), new Vector2(25.9459991F, -187.080002F), new Vector2(26.4799995F, -186.546997F)); + builder.AddCubicBezier(new Vector2(27.0130005F, -186.013F), new Vector2(27.6399994F, -185.746994F), new Vector2(28.3600006F, -185.746994F)); + builder.AddCubicBezier(new Vector2(29.0799999F, -185.746994F), new Vector2(29.7000008F, -186.013F), new Vector2(30.2199993F, -186.546997F)); + builder.AddCubicBezier(new Vector2(30.7399998F, -187.080002F), new Vector2(31F, -187.720001F), new Vector2(31F, -188.466995F)); + builder.AddCubicBezier(new Vector2(31F, -189.186996F), new Vector2(30.7660007F, -189.772995F), new Vector2(30.2999992F, -190.227005F)); + builder.AddCubicBezier(new Vector2(29.8330002F, -190.679993F), new Vector2(29.3199997F, -190.906998F), new Vector2(28.7600002F, -190.906998F)); + builder.AddCubicBezier(new Vector2(28.493F, -190.906998F), new Vector2(28.2600002F, -190.813004F), new Vector2(28.0599995F, -190.626999F)); + builder.AddCubicBezier(new Vector2(27.8600006F, -190.440002F), new Vector2(27.6930008F, -190.199997F), new Vector2(27.5599995F, -189.906998F)); + builder.AddLine(new Vector2(28.7999992F, -190.227005F)); + builder.AddLine(new Vector2(31.2800007F, -194.987F)); + builder.AddLine(new Vector2(29.2399998F, -196.106995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(21.8799992F, -196.106995F)); + builder.AddLine(new Vector2(19.2000008F, -191.147003F)); + builder.AddCubicBezier(new Vector2(18.8530006F, -190.479996F), new Vector2(18.6200008F, -189.940002F), new Vector2(18.5F, -189.526993F)); + builder.AddCubicBezier(new Vector2(18.3799992F, -189.113007F), new Vector2(18.3199997F, -188.759995F), new Vector2(18.3199997F, -188.466995F)); + builder.AddCubicBezier(new Vector2(18.3199997F, -187.720001F), new Vector2(18.5860004F, -187.080002F), new Vector2(19.1200008F, -186.546997F)); + builder.AddCubicBezier(new Vector2(19.6529999F, -186.013F), new Vector2(20.2800007F, -185.746994F), new Vector2(21F, -185.746994F)); + builder.AddCubicBezier(new Vector2(21.7199993F, -185.746994F), new Vector2(22.3400002F, -186.013F), new Vector2(22.8600006F, -186.546997F)); + builder.AddCubicBezier(new Vector2(23.3799992F, -187.080002F), new Vector2(23.6399994F, -187.720001F), new Vector2(23.6399994F, -188.466995F)); + builder.AddCubicBezier(new Vector2(23.6399994F, -189.186996F), new Vector2(23.4060001F, -189.772995F), new Vector2(22.9400005F, -190.227005F)); + builder.AddCubicBezier(new Vector2(22.4729996F, -190.679993F), new Vector2(21.9599991F, -190.906998F), new Vector2(21.3999996F, -190.906998F)); + builder.AddCubicBezier(new Vector2(21.1329994F, -190.906998F), new Vector2(20.8999996F, -190.813004F), new Vector2(20.7000008F, -190.626999F)); + builder.AddCubicBezier(new Vector2(20.5F, -190.440002F), new Vector2(20.3330002F, -190.199997F), new Vector2(20.2000008F, -189.906998F)); + builder.AddLine(new Vector2(21.4400005F, -190.227005F)); + builder.AddLine(new Vector2(23.9200001F, -194.987F)); + builder.AddLine(new Vector2(21.8799992F, -196.106995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1507() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(2.20000005F, -167.626999F)); + builder.AddCubicBezier(new Vector2(3.50600004F, -168.186996F), new Vector2(4.62599993F, -169F), new Vector2(5.55999994F, -170.067001F)); + builder.AddLine(new Vector2(3.24000001F, -172.427002F)); + builder.AddCubicBezier(new Vector2(2.5999999F, -171.679993F), new Vector2(1.83299994F, -171.119995F), new Vector2(0.939999998F, -170.746994F)); + builder.AddCubicBezier(new Vector2(0.0460000001F, -170.373001F), new Vector2(-0.934000015F, -170.186996F), new Vector2(-2F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-3.27999997F, -170.186996F), new Vector2(-4.41400003F, -170.460007F), new Vector2(-5.4000001F, -171.007004F)); + builder.AddCubicBezier(new Vector2(-6.38700008F, -171.552994F), new Vector2(-7.14699984F, -172.326996F), new Vector2(-7.67999983F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-8.21399975F, -174.326996F), new Vector2(-8.47999954F, -175.492996F), new Vector2(-8.47999954F, -176.826996F)); + builder.AddCubicBezier(new Vector2(-8.47999954F, -178.132996F), new Vector2(-8.22700024F, -179.266998F), new Vector2(-7.71999979F, -180.227005F)); + builder.AddCubicBezier(new Vector2(-7.21400023F, -181.186996F), new Vector2(-6.49399996F, -181.932999F), new Vector2(-5.55999994F, -182.466995F)); + builder.AddCubicBezier(new Vector2(-4.62699986F, -183F), new Vector2(-3.54699993F, -183.266998F), new Vector2(-2.31999993F, -183.266998F)); + builder.AddCubicBezier(new Vector2(-1.14699996F, -183.266998F), new Vector2(-0.147F, -183.020004F), new Vector2(0.680000007F, -182.526993F)); + builder.AddCubicBezier(new Vector2(1.50600004F, -182.033005F), new Vector2(2.14599991F, -181.339996F), new Vector2(2.5999999F, -180.447006F)); + builder.AddCubicBezier(new Vector2(3.05299997F, -179.552994F), new Vector2(3.27999997F, -178.466995F), new Vector2(3.27999997F, -177.186996F)); + builder.AddLine(new Vector2(4.5999999F, -178.347F)); + builder.AddLine(new Vector2(-9.52000046F, -178.347F)); + builder.AddLine(new Vector2(-9.52000046F, -175.347F)); + builder.AddLine(new Vector2(6.51999998F, -175.347F)); + builder.AddCubicBezier(new Vector2(6.5999999F, -175.720001F), new Vector2(6.65299988F, -176.059998F), new Vector2(6.67999983F, -176.367004F)); + builder.AddCubicBezier(new Vector2(6.70599985F, -176.673004F), new Vector2(6.71999979F, -176.960007F), new Vector2(6.71999979F, -177.227005F)); + builder.AddCubicBezier(new Vector2(6.71999979F, -179.039993F), new Vector2(6.34000015F, -180.653F), new Vector2(5.57999992F, -182.067001F)); + builder.AddCubicBezier(new Vector2(4.82000017F, -183.479996F), new Vector2(3.75999999F, -184.587006F), new Vector2(2.4000001F, -185.386993F)); + builder.AddCubicBezier(new Vector2(1.03999996F, -186.186996F), new Vector2(-0.507000029F, -186.587006F), new Vector2(-2.24000001F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-4.07999992F, -186.587006F), new Vector2(-5.73999977F, -186.153F), new Vector2(-7.21999979F, -185.287003F)); + builder.AddCubicBezier(new Vector2(-8.69999981F, -184.419998F), new Vector2(-9.8739996F, -183.240005F), new Vector2(-10.7399998F, -181.746994F)); + builder.AddCubicBezier(new Vector2(-11.6070004F, -180.253006F), new Vector2(-12.04F, -178.572998F), new Vector2(-12.04F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-12.04F, -174.813004F), new Vector2(-11.6000004F, -173.119995F), new Vector2(-10.7200003F, -171.626999F)); + builder.AddCubicBezier(new Vector2(-9.84000015F, -170.132996F), new Vector2(-8.64700031F, -168.953003F), new Vector2(-7.13999987F, -168.087006F)); + builder.AddCubicBezier(new Vector2(-5.63399982F, -167.220001F), new Vector2(-3.92000008F, -166.787003F), new Vector2(-2F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-0.507000029F, -166.787003F), new Vector2(0.893000007F, -167.067001F), new Vector2(2.20000005F, -167.626999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1508() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-29.1200008F, -167.186996F)); + builder.AddLine(new Vector2(-29.1200008F, -195.746994F)); + builder.AddLine(new Vector2(-32.7200012F, -195.746994F)); + builder.AddLine(new Vector2(-32.7200012F, -167.186996F)); + builder.AddLine(new Vector2(-29.1200008F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-15.6800003F, -167.186996F)); + builder.AddLine(new Vector2(-15.6800003F, -178.987F)); + builder.AddCubicBezier(new Vector2(-15.6800003F, -180.479996F), new Vector2(-16F, -181.800003F), new Vector2(-16.6399994F, -182.947006F)); + builder.AddCubicBezier(new Vector2(-17.2800007F, -184.093002F), new Vector2(-18.1539993F, -184.987F), new Vector2(-19.2600002F, -185.626999F)); + builder.AddCubicBezier(new Vector2(-20.3670006F, -186.266998F), new Vector2(-21.6399994F, -186.587006F), new Vector2(-23.0799999F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-24.5200005F, -186.587006F), new Vector2(-25.8139992F, -186.259995F), new Vector2(-26.9599991F, -185.606995F)); + builder.AddCubicBezier(new Vector2(-28.1070004F, -184.953003F), new Vector2(-29F, -184.067001F), new Vector2(-29.6399994F, -182.947006F)); + builder.AddCubicBezier(new Vector2(-30.2800007F, -181.826996F), new Vector2(-30.6000004F, -180.546997F), new Vector2(-30.6000004F, -179.106995F)); + builder.AddLine(new Vector2(-29.1200008F, -178.266998F)); + builder.AddCubicBezier(new Vector2(-29.1200008F, -179.227005F), new Vector2(-28.9069996F, -180.080002F), new Vector2(-28.4799995F, -180.826996F)); + builder.AddCubicBezier(new Vector2(-28.0540009F, -181.572998F), new Vector2(-27.4669991F, -182.160004F), new Vector2(-26.7199993F, -182.587006F)); + builder.AddCubicBezier(new Vector2(-25.9740009F, -183.013F), new Vector2(-25.1200008F, -183.227005F), new Vector2(-24.1599998F, -183.227005F)); + builder.AddCubicBezier(new Vector2(-22.7199993F, -183.227005F), new Vector2(-21.5540009F, -182.759995F), new Vector2(-20.6599998F, -181.826996F)); + builder.AddCubicBezier(new Vector2(-19.7670002F, -180.893005F), new Vector2(-19.3199997F, -179.707001F), new Vector2(-19.3199997F, -178.266998F)); + builder.AddLine(new Vector2(-19.3199997F, -167.186996F)); + builder.AddLine(new Vector2(-15.6800003F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1509() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-36.2400017F, -182.906998F)); + builder.AddLine(new Vector2(-36.2400017F, -186.186996F)); + builder.AddLine(new Vector2(-49.2000008F, -186.186996F)); + builder.AddLine(new Vector2(-49.2000008F, -182.906998F)); + builder.AddLine(new Vector2(-36.2400017F, -182.906998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-40.9199982F, -167.186996F)); + builder.AddLine(new Vector2(-40.9199982F, -194.147003F)); + builder.AddLine(new Vector2(-44.5200005F, -194.147003F)); + builder.AddLine(new Vector2(-44.5200005F, -167.186996F)); + builder.AddLine(new Vector2(-40.9199982F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1510() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-72.0400009F, -167.186996F)); + builder.AddLine(new Vector2(-72.0400009F, -195.746994F)); + builder.AddLine(new Vector2(-75.6399994F, -195.746994F)); + builder.AddLine(new Vector2(-75.6399994F, -167.186996F)); + builder.AddLine(new Vector2(-72.0400009F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-58.8400002F, -167.186996F)); + builder.AddLine(new Vector2(-68.8399963F, -178.026993F)); + builder.AddLine(new Vector2(-69F, -175.947006F)); + builder.AddLine(new Vector2(-59.2000008F, -186.186996F)); + builder.AddLine(new Vector2(-63.5999985F, -186.186996F)); + builder.AddLine(new Vector2(-72.3600006F, -176.906998F)); + builder.AddLine(new Vector2(-63.4799995F, -167.186996F)); + builder.AddLine(new Vector2(-58.8400002F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1511() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-82.4199982F, -167.626999F)); + builder.AddCubicBezier(new Vector2(-81.1539993F, -168.186996F), new Vector2(-80.0800018F, -168.973007F), new Vector2(-79.1999969F, -169.987F)); + builder.AddLine(new Vector2(-81.5599976F, -172.386993F)); + builder.AddCubicBezier(new Vector2(-82.1740036F, -171.692993F), new Vector2(-82.9000015F, -171.167007F), new Vector2(-83.7399979F, -170.807007F)); + builder.AddCubicBezier(new Vector2(-84.5800018F, -170.447006F), new Vector2(-85.5070038F, -170.266998F), new Vector2(-86.5199966F, -170.266998F)); + builder.AddCubicBezier(new Vector2(-87.7200012F, -170.266998F), new Vector2(-88.7870026F, -170.546997F), new Vector2(-89.7200012F, -171.106995F)); + builder.AddCubicBezier(new Vector2(-90.6539993F, -171.667007F), new Vector2(-91.387001F, -172.427002F), new Vector2(-91.9199982F, -173.386993F)); + builder.AddCubicBezier(new Vector2(-92.4540024F, -174.347F), new Vector2(-92.7200012F, -175.453003F), new Vector2(-92.7200012F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-92.7200012F, -177.960007F), new Vector2(-92.4540024F, -179.067001F), new Vector2(-91.9199982F, -180.026993F)); + builder.AddCubicBezier(new Vector2(-91.387001F, -180.987F), new Vector2(-90.6539993F, -181.740005F), new Vector2(-89.7200012F, -182.287003F)); + builder.AddCubicBezier(new Vector2(-88.7870026F, -182.832993F), new Vector2(-87.7200012F, -183.106995F), new Vector2(-86.5199966F, -183.106995F)); + builder.AddCubicBezier(new Vector2(-85.5339966F, -183.106995F), new Vector2(-84.6139984F, -182.927002F), new Vector2(-83.7600021F, -182.567001F)); + builder.AddCubicBezier(new Vector2(-82.9069977F, -182.207001F), new Vector2(-82.1869965F, -181.679993F), new Vector2(-81.5999985F, -180.987F)); + builder.AddLine(new Vector2(-79.1999969F, -183.386993F)); + builder.AddCubicBezier(new Vector2(-80.1070023F, -184.427002F), new Vector2(-81.1869965F, -185.220001F), new Vector2(-82.4400024F, -185.766998F)); + builder.AddCubicBezier(new Vector2(-83.6940002F, -186.313004F), new Vector2(-85.0540009F, -186.587006F), new Vector2(-86.5199966F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-88.387001F, -186.587006F), new Vector2(-90.0739975F, -186.153F), new Vector2(-91.5800018F, -185.287003F)); + builder.AddCubicBezier(new Vector2(-93.086998F, -184.419998F), new Vector2(-94.2740021F, -183.240005F), new Vector2(-95.1399994F, -181.746994F)); + builder.AddCubicBezier(new Vector2(-96.0070038F, -180.253006F), new Vector2(-96.4400024F, -178.572998F), new Vector2(-96.4400024F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-96.4400024F, -174.867004F), new Vector2(-96.0070038F, -173.192993F), new Vector2(-95.1399994F, -171.686996F)); + builder.AddCubicBezier(new Vector2(-94.2740021F, -170.179993F), new Vector2(-93.086998F, -168.987F), new Vector2(-91.5800018F, -168.106995F)); + builder.AddCubicBezier(new Vector2(-90.0739975F, -167.227005F), new Vector2(-88.387001F, -166.787003F), new Vector2(-86.5199966F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-85.0540009F, -166.787003F), new Vector2(-83.6869965F, -167.067001F), new Vector2(-82.4199982F, -167.626999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1512() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-100.68F, -190.647003F)); + builder.AddCubicBezier(new Vector2(-100.253998F, -191.087006F), new Vector2(-100.040001F, -191.639999F), new Vector2(-100.040001F, -192.307007F)); + builder.AddCubicBezier(new Vector2(-100.040001F, -192.947006F), new Vector2(-100.253998F, -193.487F), new Vector2(-100.68F, -193.927002F)); + builder.AddCubicBezier(new Vector2(-101.107002F, -194.367004F), new Vector2(-101.653999F, -194.587006F), new Vector2(-102.32F, -194.587006F)); + builder.AddCubicBezier(new Vector2(-102.987F, -194.587006F), new Vector2(-103.533997F, -194.367004F), new Vector2(-103.959999F, -193.927002F)); + builder.AddCubicBezier(new Vector2(-104.387001F, -193.487F), new Vector2(-104.599998F, -192.947006F), new Vector2(-104.599998F, -192.307007F)); + builder.AddCubicBezier(new Vector2(-104.599998F, -191.639999F), new Vector2(-104.387001F, -191.087006F), new Vector2(-103.959999F, -190.647003F)); + builder.AddCubicBezier(new Vector2(-103.533997F, -190.207001F), new Vector2(-102.987F, -189.987F), new Vector2(-102.32F, -189.987F)); + builder.AddCubicBezier(new Vector2(-101.653999F, -189.987F), new Vector2(-101.107002F, -190.207001F), new Vector2(-100.68F, -190.647003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-100.519997F, -167.186996F)); + builder.AddLine(new Vector2(-100.519997F, -186.186996F)); + builder.AddLine(new Vector2(-104.160004F, -186.186996F)); + builder.AddLine(new Vector2(-104.160004F, -167.186996F)); + builder.AddLine(new Vector2(-100.519997F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1513() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-109.440002F, -167.186996F)); + builder.AddLine(new Vector2(-109.440002F, -195.746994F)); + builder.AddLine(new Vector2(-113.040001F, -195.746994F)); + builder.AddLine(new Vector2(-113.040001F, -167.186996F)); + builder.AddLine(new Vector2(-109.440002F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1514() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-119.82F, -167.626999F)); + builder.AddCubicBezier(new Vector2(-118.554001F, -168.186996F), new Vector2(-117.480003F, -168.973007F), new Vector2(-116.599998F, -169.987F)); + builder.AddLine(new Vector2(-118.959999F, -172.386993F)); + builder.AddCubicBezier(new Vector2(-119.573997F, -171.692993F), new Vector2(-120.300003F, -171.167007F), new Vector2(-121.139999F, -170.807007F)); + builder.AddCubicBezier(new Vector2(-121.980003F, -170.447006F), new Vector2(-122.906998F, -170.266998F), new Vector2(-123.919998F, -170.266998F)); + builder.AddCubicBezier(new Vector2(-125.120003F, -170.266998F), new Vector2(-126.186996F, -170.546997F), new Vector2(-127.120003F, -171.106995F)); + builder.AddCubicBezier(new Vector2(-128.054001F, -171.667007F), new Vector2(-128.787003F, -172.427002F), new Vector2(-129.320007F, -173.386993F)); + builder.AddCubicBezier(new Vector2(-129.854004F, -174.347F), new Vector2(-130.119995F, -175.453003F), new Vector2(-130.119995F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-130.119995F, -177.960007F), new Vector2(-129.854004F, -179.067001F), new Vector2(-129.320007F, -180.026993F)); + builder.AddCubicBezier(new Vector2(-128.787003F, -180.987F), new Vector2(-128.054001F, -181.740005F), new Vector2(-127.120003F, -182.287003F)); + builder.AddCubicBezier(new Vector2(-126.186996F, -182.832993F), new Vector2(-125.120003F, -183.106995F), new Vector2(-123.919998F, -183.106995F)); + builder.AddCubicBezier(new Vector2(-122.933998F, -183.106995F), new Vector2(-122.014F, -182.927002F), new Vector2(-121.160004F, -182.567001F)); + builder.AddCubicBezier(new Vector2(-120.306999F, -182.207001F), new Vector2(-119.586998F, -181.679993F), new Vector2(-119F, -180.987F)); + builder.AddLine(new Vector2(-116.599998F, -183.386993F)); + builder.AddCubicBezier(new Vector2(-117.507004F, -184.427002F), new Vector2(-118.586998F, -185.220001F), new Vector2(-119.839996F, -185.766998F)); + builder.AddCubicBezier(new Vector2(-121.094002F, -186.313004F), new Vector2(-122.454002F, -186.587006F), new Vector2(-123.919998F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-125.787003F, -186.587006F), new Vector2(-127.473999F, -186.153F), new Vector2(-128.979996F, -185.287003F)); + builder.AddCubicBezier(new Vector2(-130.487F, -184.419998F), new Vector2(-131.673996F, -183.240005F), new Vector2(-132.539993F, -181.746994F)); + builder.AddCubicBezier(new Vector2(-133.406998F, -180.253006F), new Vector2(-133.839996F, -178.572998F), new Vector2(-133.839996F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-133.839996F, -174.867004F), new Vector2(-133.406998F, -173.192993F), new Vector2(-132.539993F, -171.686996F)); + builder.AddCubicBezier(new Vector2(-131.673996F, -170.179993F), new Vector2(-130.487F, -168.987F), new Vector2(-128.979996F, -168.106995F)); + builder.AddCubicBezier(new Vector2(-127.473999F, -167.227005F), new Vector2(-125.787003F, -166.787003F), new Vector2(-123.919998F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-122.454002F, -166.787003F), new Vector2(-121.086998F, -167.067001F), new Vector2(-119.82F, -167.626999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1515() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-149.639999F, -161.667007F)); + builder.AddLine(new Vector2(-146.960007F, -166.626999F)); + builder.AddCubicBezier(new Vector2(-146.613998F, -167.292999F), new Vector2(-146.380005F, -167.832993F), new Vector2(-146.259995F, -168.246994F)); + builder.AddCubicBezier(new Vector2(-146.139999F, -168.660004F), new Vector2(-146.080002F, -169.013F), new Vector2(-146.080002F, -169.307007F)); + builder.AddCubicBezier(new Vector2(-146.080002F, -170.080002F), new Vector2(-146.347F, -170.727005F), new Vector2(-146.880005F, -171.246994F)); + builder.AddCubicBezier(new Vector2(-147.414001F, -171.766998F), new Vector2(-148.026993F, -172.026993F), new Vector2(-148.720001F, -172.026993F)); + builder.AddCubicBezier(new Vector2(-149.494003F, -172.026993F), new Vector2(-150.134003F, -171.766998F), new Vector2(-150.639999F, -171.246994F)); + builder.AddCubicBezier(new Vector2(-151.147003F, -170.727005F), new Vector2(-151.399994F, -170.080002F), new Vector2(-151.399994F, -169.307007F)); + builder.AddCubicBezier(new Vector2(-151.399994F, -168.613007F), new Vector2(-151.167007F, -168.033005F), new Vector2(-150.699997F, -167.567001F)); + builder.AddCubicBezier(new Vector2(-150.233994F, -167.100998F), new Vector2(-149.720001F, -166.867004F), new Vector2(-149.160004F, -166.867004F)); + builder.AddCubicBezier(new Vector2(-148.893997F, -166.867004F), new Vector2(-148.654007F, -166.960999F), new Vector2(-148.440002F, -167.147003F)); + builder.AddCubicBezier(new Vector2(-148.227005F, -167.332993F), new Vector2(-148.054001F, -167.572998F), new Vector2(-147.919998F, -167.867004F)); + builder.AddLine(new Vector2(-149.199997F, -167.546997F)); + builder.AddLine(new Vector2(-151.679993F, -162.787003F)); + builder.AddLine(new Vector2(-149.639999F, -161.667007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1516() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-169.580002F, -171.686996F)); + builder.AddCubicBezier(new Vector2(-170.5F, -172.207001F), new Vector2(-171.220001F, -172.932999F), new Vector2(-171.740005F, -173.867004F)); + builder.AddCubicBezier(new Vector2(-172.259995F, -174.800003F), new Vector2(-172.520004F, -175.867004F), new Vector2(-172.520004F, -177.067001F)); + builder.AddCubicBezier(new Vector2(-172.520004F, -178.266998F), new Vector2(-172.259995F, -179.326996F), new Vector2(-171.740005F, -180.246994F)); + builder.AddCubicBezier(new Vector2(-171.220001F, -181.167007F), new Vector2(-170.507004F, -181.886993F), new Vector2(-169.600006F, -182.406998F)); + builder.AddCubicBezier(new Vector2(-168.694F, -182.927002F), new Vector2(-167.639999F, -183.186996F), new Vector2(-166.440002F, -183.186996F)); + builder.AddCubicBezier(new Vector2(-165.266998F, -183.186996F), new Vector2(-164.233994F, -182.927002F), new Vector2(-163.339996F, -182.406998F)); + builder.AddCubicBezier(new Vector2(-162.447006F, -181.886993F), new Vector2(-161.753998F, -181.167007F), new Vector2(-161.259995F, -180.246994F)); + builder.AddCubicBezier(new Vector2(-160.766998F, -179.326996F), new Vector2(-160.520004F, -178.253006F), new Vector2(-160.520004F, -177.026993F)); + builder.AddCubicBezier(new Vector2(-160.520004F, -175.800003F), new Vector2(-160.766998F, -174.727005F), new Vector2(-161.259995F, -173.807007F)); + builder.AddCubicBezier(new Vector2(-161.753998F, -172.886993F), new Vector2(-162.440002F, -172.173004F), new Vector2(-163.320007F, -171.667007F)); + builder.AddCubicBezier(new Vector2(-164.199997F, -171.160004F), new Vector2(-165.240005F, -170.906998F), new Vector2(-166.440002F, -170.906998F)); + builder.AddCubicBezier(new Vector2(-167.613998F, -170.906998F), new Vector2(-168.660004F, -171.167007F), new Vector2(-169.580002F, -171.686996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-163.199997F, -168.386993F)); + builder.AddCubicBezier(new Vector2(-162.054001F, -168.973007F), new Vector2(-161.139999F, -169.792999F), new Vector2(-160.460007F, -170.847F)); + builder.AddCubicBezier(new Vector2(-159.779999F, -171.899994F), new Vector2(-159.399994F, -173.119995F), new Vector2(-159.320007F, -174.507004F)); + builder.AddLine(new Vector2(-159.320007F, -179.546997F)); + builder.AddCubicBezier(new Vector2(-159.399994F, -180.960007F), new Vector2(-159.774002F, -182.192993F), new Vector2(-160.440002F, -183.246994F)); + builder.AddCubicBezier(new Vector2(-161.106995F, -184.300003F), new Vector2(-162.020004F, -185.119995F), new Vector2(-163.179993F, -185.707001F)); + builder.AddCubicBezier(new Vector2(-164.339996F, -186.292999F), new Vector2(-165.667007F, -186.587006F), new Vector2(-167.160004F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-168.867004F, -186.587006F), new Vector2(-170.414001F, -186.167007F), new Vector2(-171.800003F, -185.326996F)); + builder.AddCubicBezier(new Vector2(-173.186996F, -184.487F), new Vector2(-174.274002F, -183.352997F), new Vector2(-175.059998F, -181.927002F)); + builder.AddCubicBezier(new Vector2(-175.847F, -180.5F), new Vector2(-176.240005F, -178.880005F), new Vector2(-176.240005F, -177.067001F)); + builder.AddCubicBezier(new Vector2(-176.240005F, -175.253006F), new Vector2(-175.839996F, -173.619995F), new Vector2(-175.039993F, -172.167007F)); + builder.AddCubicBezier(new Vector2(-174.240005F, -170.712997F), new Vector2(-173.154007F, -169.572998F), new Vector2(-171.779999F, -168.746994F)); + builder.AddCubicBezier(new Vector2(-170.406998F, -167.919998F), new Vector2(-168.854004F, -167.507004F), new Vector2(-167.119995F, -167.507004F)); + builder.AddCubicBezier(new Vector2(-165.654007F, -167.507004F), new Vector2(-164.347F, -167.800003F), new Vector2(-163.199997F, -168.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-161.899994F, -159.966995F)); + builder.AddCubicBezier(new Vector2(-160.393997F, -160.727005F), new Vector2(-159.220001F, -161.794006F), new Vector2(-158.380005F, -163.167007F)); + builder.AddCubicBezier(new Vector2(-157.539993F, -164.541F), new Vector2(-157.119995F, -166.134003F), new Vector2(-157.119995F, -167.947006F)); + builder.AddLine(new Vector2(-157.119995F, -186.186996F)); + builder.AddLine(new Vector2(-160.720001F, -186.186996F)); + builder.AddLine(new Vector2(-160.720001F, -181.186996F)); + builder.AddLine(new Vector2(-160.080002F, -176.947006F)); + builder.AddLine(new Vector2(-160.720001F, -172.667007F)); + builder.AddLine(new Vector2(-160.720001F, -167.947006F)); + builder.AddCubicBezier(new Vector2(-160.720001F, -166.214005F), new Vector2(-161.294006F, -164.834F), new Vector2(-162.440002F, -163.807007F)); + builder.AddCubicBezier(new Vector2(-163.587006F, -162.781006F), new Vector2(-165.119995F, -162.266998F), new Vector2(-167.039993F, -162.266998F)); + builder.AddCubicBezier(new Vector2(-168.507004F, -162.266998F), new Vector2(-169.774002F, -162.526993F), new Vector2(-170.839996F, -163.046997F)); + builder.AddCubicBezier(new Vector2(-171.906998F, -163.567001F), new Vector2(-172.826996F, -164.320999F), new Vector2(-173.600006F, -165.307007F)); + builder.AddLine(new Vector2(-175.960007F, -162.947006F)); + builder.AddCubicBezier(new Vector2(-175.026993F, -161.641006F), new Vector2(-173.813995F, -160.626999F), new Vector2(-172.320007F, -159.906998F)); + builder.AddCubicBezier(new Vector2(-170.826996F, -159.186996F), new Vector2(-169.093994F, -158.826996F), new Vector2(-167.119995F, -158.826996F)); + builder.AddCubicBezier(new Vector2(-165.147003F, -158.826996F), new Vector2(-163.406998F, -159.207001F), new Vector2(-161.899994F, -159.966995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1517() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-193.320007F, -167.186996F)); + builder.AddLine(new Vector2(-193.320007F, -186.186996F)); + builder.AddLine(new Vector2(-196.919998F, -186.186996F)); + builder.AddLine(new Vector2(-196.919998F, -167.186996F)); + builder.AddLine(new Vector2(-193.320007F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-179.880005F, -167.186996F)); + builder.AddLine(new Vector2(-179.880005F, -178.987F)); + builder.AddCubicBezier(new Vector2(-179.880005F, -180.292999F), new Vector2(-180.199997F, -181.526993F), new Vector2(-180.839996F, -182.686996F)); + builder.AddCubicBezier(new Vector2(-181.479996F, -183.847F), new Vector2(-182.354004F, -184.787003F), new Vector2(-183.460007F, -185.507004F)); + builder.AddCubicBezier(new Vector2(-184.567001F, -186.227005F), new Vector2(-185.839996F, -186.587006F), new Vector2(-187.279999F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-188.720001F, -186.587006F), new Vector2(-190.014008F, -186.259995F), new Vector2(-191.160004F, -185.606995F)); + builder.AddCubicBezier(new Vector2(-192.307007F, -184.953003F), new Vector2(-193.199997F, -184.067001F), new Vector2(-193.839996F, -182.947006F)); + builder.AddCubicBezier(new Vector2(-194.479996F, -181.826996F), new Vector2(-194.800003F, -180.546997F), new Vector2(-194.800003F, -179.106995F)); + builder.AddLine(new Vector2(-193.320007F, -178.266998F)); + builder.AddCubicBezier(new Vector2(-193.320007F, -179.227005F), new Vector2(-193.106995F, -180.080002F), new Vector2(-192.679993F, -180.826996F)); + builder.AddCubicBezier(new Vector2(-192.253998F, -181.572998F), new Vector2(-191.667007F, -182.160004F), new Vector2(-190.919998F, -182.587006F)); + builder.AddCubicBezier(new Vector2(-190.173996F, -183.013F), new Vector2(-189.320007F, -183.227005F), new Vector2(-188.360001F, -183.227005F)); + builder.AddCubicBezier(new Vector2(-186.919998F, -183.227005F), new Vector2(-185.753998F, -182.759995F), new Vector2(-184.860001F, -181.826996F)); + builder.AddCubicBezier(new Vector2(-183.966995F, -180.893005F), new Vector2(-183.520004F, -179.707001F), new Vector2(-183.520004F, -178.266998F)); + builder.AddLine(new Vector2(-183.520004F, -167.186996F)); + builder.AddLine(new Vector2(-179.880005F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1518() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-202.399994F, -190.647003F)); + builder.AddCubicBezier(new Vector2(-201.973999F, -191.087006F), new Vector2(-201.759995F, -191.639999F), new Vector2(-201.759995F, -192.307007F)); + builder.AddCubicBezier(new Vector2(-201.759995F, -192.947006F), new Vector2(-201.973999F, -193.487F), new Vector2(-202.399994F, -193.927002F)); + builder.AddCubicBezier(new Vector2(-202.826996F, -194.367004F), new Vector2(-203.373993F, -194.587006F), new Vector2(-204.039993F, -194.587006F)); + builder.AddCubicBezier(new Vector2(-204.707001F, -194.587006F), new Vector2(-205.253998F, -194.367004F), new Vector2(-205.679993F, -193.927002F)); + builder.AddCubicBezier(new Vector2(-206.106995F, -193.487F), new Vector2(-206.320007F, -192.947006F), new Vector2(-206.320007F, -192.307007F)); + builder.AddCubicBezier(new Vector2(-206.320007F, -191.639999F), new Vector2(-206.106995F, -191.087006F), new Vector2(-205.679993F, -190.647003F)); + builder.AddCubicBezier(new Vector2(-205.253998F, -190.207001F), new Vector2(-204.707001F, -189.987F), new Vector2(-204.039993F, -189.987F)); + builder.AddCubicBezier(new Vector2(-203.373993F, -189.987F), new Vector2(-202.826996F, -190.207001F), new Vector2(-202.399994F, -190.647003F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-202.240005F, -167.186996F)); + builder.AddLine(new Vector2(-202.240005F, -186.186996F)); + builder.AddLine(new Vector2(-205.880005F, -186.186996F)); + builder.AddLine(new Vector2(-205.880005F, -167.186996F)); + builder.AddLine(new Vector2(-202.240005F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1519() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-224.199997F, -167.186996F)); + builder.AddLine(new Vector2(-224.199997F, -186.186996F)); + builder.AddLine(new Vector2(-227.800003F, -186.186996F)); + builder.AddLine(new Vector2(-227.800003F, -167.186996F)); + builder.AddLine(new Vector2(-224.199997F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-210.759995F, -167.186996F)); + builder.AddLine(new Vector2(-210.759995F, -178.987F)); + builder.AddCubicBezier(new Vector2(-210.759995F, -180.292999F), new Vector2(-211.080002F, -181.526993F), new Vector2(-211.720001F, -182.686996F)); + builder.AddCubicBezier(new Vector2(-212.360001F, -183.847F), new Vector2(-213.233994F, -184.787003F), new Vector2(-214.339996F, -185.507004F)); + builder.AddCubicBezier(new Vector2(-215.447006F, -186.227005F), new Vector2(-216.720001F, -186.587006F), new Vector2(-218.160004F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-219.600006F, -186.587006F), new Vector2(-220.893997F, -186.259995F), new Vector2(-222.039993F, -185.606995F)); + builder.AddCubicBezier(new Vector2(-223.186996F, -184.953003F), new Vector2(-224.080002F, -184.067001F), new Vector2(-224.720001F, -182.947006F)); + builder.AddCubicBezier(new Vector2(-225.360001F, -181.826996F), new Vector2(-225.679993F, -180.546997F), new Vector2(-225.679993F, -179.106995F)); + builder.AddLine(new Vector2(-224.199997F, -178.266998F)); + builder.AddCubicBezier(new Vector2(-224.199997F, -179.227005F), new Vector2(-223.987F, -180.080002F), new Vector2(-223.559998F, -180.826996F)); + builder.AddCubicBezier(new Vector2(-223.134003F, -181.572998F), new Vector2(-222.546997F, -182.160004F), new Vector2(-221.800003F, -182.587006F)); + builder.AddCubicBezier(new Vector2(-221.054001F, -183.013F), new Vector2(-220.199997F, -183.227005F), new Vector2(-219.240005F, -183.227005F)); + builder.AddCubicBezier(new Vector2(-217.800003F, -183.227005F), new Vector2(-216.634003F, -182.759995F), new Vector2(-215.740005F, -181.826996F)); + builder.AddCubicBezier(new Vector2(-214.847F, -180.893005F), new Vector2(-214.399994F, -179.707001F), new Vector2(-214.399994F, -178.266998F)); + builder.AddLine(new Vector2(-214.399994F, -167.186996F)); + builder.AddLine(new Vector2(-210.759995F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1520() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-236.240005F, -167.626999F)); + builder.AddCubicBezier(new Vector2(-234.934006F, -168.186996F), new Vector2(-233.813995F, -169F), new Vector2(-232.880005F, -170.067001F)); + builder.AddLine(new Vector2(-235.199997F, -172.427002F)); + builder.AddCubicBezier(new Vector2(-235.839996F, -171.679993F), new Vector2(-236.606995F, -171.119995F), new Vector2(-237.5F, -170.746994F)); + builder.AddCubicBezier(new Vector2(-238.393997F, -170.373001F), new Vector2(-239.373993F, -170.186996F), new Vector2(-240.440002F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-241.720001F, -170.186996F), new Vector2(-242.854004F, -170.460007F), new Vector2(-243.839996F, -171.007004F)); + builder.AddCubicBezier(new Vector2(-244.826996F, -171.552994F), new Vector2(-245.587006F, -172.326996F), new Vector2(-246.119995F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-246.654007F, -174.326996F), new Vector2(-246.919998F, -175.492996F), new Vector2(-246.919998F, -176.826996F)); + builder.AddCubicBezier(new Vector2(-246.919998F, -178.132996F), new Vector2(-246.667007F, -179.266998F), new Vector2(-246.160004F, -180.227005F)); + builder.AddCubicBezier(new Vector2(-245.654007F, -181.186996F), new Vector2(-244.934006F, -181.932999F), new Vector2(-244F, -182.466995F)); + builder.AddCubicBezier(new Vector2(-243.067001F, -183F), new Vector2(-241.987F, -183.266998F), new Vector2(-240.759995F, -183.266998F)); + builder.AddCubicBezier(new Vector2(-239.587006F, -183.266998F), new Vector2(-238.587006F, -183.020004F), new Vector2(-237.759995F, -182.526993F)); + builder.AddCubicBezier(new Vector2(-236.934006F, -182.033005F), new Vector2(-236.294006F, -181.339996F), new Vector2(-235.839996F, -180.447006F)); + builder.AddCubicBezier(new Vector2(-235.386993F, -179.552994F), new Vector2(-235.160004F, -178.466995F), new Vector2(-235.160004F, -177.186996F)); + builder.AddLine(new Vector2(-233.839996F, -178.347F)); + builder.AddLine(new Vector2(-247.960007F, -178.347F)); + builder.AddLine(new Vector2(-247.960007F, -175.347F)); + builder.AddLine(new Vector2(-231.919998F, -175.347F)); + builder.AddCubicBezier(new Vector2(-231.839996F, -175.720001F), new Vector2(-231.787003F, -176.059998F), new Vector2(-231.759995F, -176.367004F)); + builder.AddCubicBezier(new Vector2(-231.733994F, -176.673004F), new Vector2(-231.720001F, -176.960007F), new Vector2(-231.720001F, -177.227005F)); + builder.AddCubicBezier(new Vector2(-231.720001F, -179.039993F), new Vector2(-232.100006F, -180.653F), new Vector2(-232.860001F, -182.067001F)); + builder.AddCubicBezier(new Vector2(-233.619995F, -183.479996F), new Vector2(-234.679993F, -184.587006F), new Vector2(-236.039993F, -185.386993F)); + builder.AddCubicBezier(new Vector2(-237.399994F, -186.186996F), new Vector2(-238.947006F, -186.587006F), new Vector2(-240.679993F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-242.520004F, -186.587006F), new Vector2(-244.179993F, -186.153F), new Vector2(-245.660004F, -185.287003F)); + builder.AddCubicBezier(new Vector2(-247.139999F, -184.419998F), new Vector2(-248.313995F, -183.240005F), new Vector2(-249.179993F, -181.746994F)); + builder.AddCubicBezier(new Vector2(-250.046997F, -180.253006F), new Vector2(-250.479996F, -178.572998F), new Vector2(-250.479996F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-250.479996F, -174.813004F), new Vector2(-250.039993F, -173.119995F), new Vector2(-249.160004F, -171.626999F)); + builder.AddCubicBezier(new Vector2(-248.279999F, -170.132996F), new Vector2(-247.087006F, -168.953003F), new Vector2(-245.580002F, -168.087006F)); + builder.AddCubicBezier(new Vector2(-244.074005F, -167.220001F), new Vector2(-242.360001F, -166.787003F), new Vector2(-240.440002F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-238.947006F, -166.787003F), new Vector2(-237.546997F, -167.067001F), new Vector2(-236.240005F, -167.626999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1521() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-266.26001F, -171.026993F)); + builder.AddCubicBezier(new Vector2(-267.179993F, -171.587006F), new Vector2(-267.886993F, -172.352997F), new Vector2(-268.380005F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-268.873993F, -174.300003F), new Vector2(-269.119995F, -175.412994F), new Vector2(-269.119995F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-269.119995F, -177.947006F), new Vector2(-268.867004F, -179.072998F), new Vector2(-268.359985F, -180.046997F)); + builder.AddCubicBezier(new Vector2(-267.854004F, -181.020004F), new Vector2(-267.147003F, -181.787003F), new Vector2(-266.23999F, -182.347F)); + builder.AddCubicBezier(new Vector2(-265.334015F, -182.906998F), new Vector2(-264.294006F, -183.186996F), new Vector2(-263.119995F, -183.186996F)); + builder.AddCubicBezier(new Vector2(-261.920013F, -183.186996F), new Vector2(-260.867004F, -182.906998F), new Vector2(-259.959991F, -182.347F)); + builder.AddCubicBezier(new Vector2(-259.053986F, -181.787003F), new Vector2(-258.339996F, -181.020004F), new Vector2(-257.820007F, -180.046997F)); + builder.AddCubicBezier(new Vector2(-257.299988F, -179.072998F), new Vector2(-257.040009F, -177.960007F), new Vector2(-257.040009F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-257.040009F, -175.427002F), new Vector2(-257.299988F, -174.300003F), new Vector2(-257.820007F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-258.339996F, -172.352997F), new Vector2(-259.053986F, -171.587006F), new Vector2(-259.959991F, -171.026993F)); + builder.AddCubicBezier(new Vector2(-260.867004F, -170.466995F), new Vector2(-261.920013F, -170.186996F), new Vector2(-263.119995F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-264.294006F, -170.186996F), new Vector2(-265.339996F, -170.466995F), new Vector2(-266.26001F, -171.026993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-268.920013F, -159.227005F)); + builder.AddLine(new Vector2(-268.920013F, -171.947006F)); + builder.AddLine(new Vector2(-269.600006F, -176.587006F)); + builder.AddLine(new Vector2(-268.920013F, -181.186996F)); + builder.AddLine(new Vector2(-268.920013F, -186.186996F)); + builder.AddLine(new Vector2(-272.519989F, -186.186996F)); + builder.AddLine(new Vector2(-272.519989F, -159.227005F)); + builder.AddLine(new Vector2(-268.920013F, -159.227005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-257.820007F, -168.087006F)); + builder.AddCubicBezier(new Vector2(-256.420013F, -168.953003F), new Vector2(-255.320007F, -170.132996F), new Vector2(-254.520004F, -171.626999F)); + builder.AddCubicBezier(new Vector2(-253.720001F, -173.119995F), new Vector2(-253.320007F, -174.800003F), new Vector2(-253.320007F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-253.320007F, -178.533005F), new Vector2(-253.720001F, -180.212997F), new Vector2(-254.520004F, -181.707001F)); + builder.AddCubicBezier(new Vector2(-255.320007F, -183.199997F), new Vector2(-256.420013F, -184.386993F), new Vector2(-257.820007F, -185.266998F)); + builder.AddCubicBezier(new Vector2(-259.220001F, -186.147003F), new Vector2(-260.786987F, -186.587006F), new Vector2(-262.519989F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-263.93399F, -186.587006F), new Vector2(-265.220001F, -186.287003F), new Vector2(-266.380005F, -185.686996F)); + builder.AddCubicBezier(new Vector2(-267.540009F, -185.087006F), new Vector2(-268.473999F, -184.259995F), new Vector2(-269.179993F, -183.207001F)); + builder.AddCubicBezier(new Vector2(-269.886993F, -182.153F), new Vector2(-270.279999F, -180.932999F), new Vector2(-270.359985F, -179.546997F)); + builder.AddLine(new Vector2(-270.359985F, -173.826996F)); + builder.AddCubicBezier(new Vector2(-270.279999F, -172.466995F), new Vector2(-269.894012F, -171.253006F), new Vector2(-269.200012F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-268.506989F, -169.119995F), new Vector2(-267.579987F, -168.287003F), new Vector2(-266.420013F, -167.686996F)); + builder.AddCubicBezier(new Vector2(-265.26001F, -167.087006F), new Vector2(-263.959991F, -166.787003F), new Vector2(-262.519989F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-260.786987F, -166.787003F), new Vector2(-259.220001F, -167.220001F), new Vector2(-257.820007F, -168.087006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1522() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-289.540009F, -171.026993F)); + builder.AddCubicBezier(new Vector2(-290.459991F, -171.587006F), new Vector2(-291.166992F, -172.352997F), new Vector2(-291.660004F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-292.153992F, -174.300003F), new Vector2(-292.399994F, -175.412994F), new Vector2(-292.399994F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-292.399994F, -177.947006F), new Vector2(-292.147003F, -179.072998F), new Vector2(-291.640015F, -180.046997F)); + builder.AddCubicBezier(new Vector2(-291.134003F, -181.020004F), new Vector2(-290.427002F, -181.787003F), new Vector2(-289.519989F, -182.347F)); + builder.AddCubicBezier(new Vector2(-288.614014F, -182.906998F), new Vector2(-287.574005F, -183.186996F), new Vector2(-286.399994F, -183.186996F)); + builder.AddCubicBezier(new Vector2(-285.200012F, -183.186996F), new Vector2(-284.147003F, -182.906998F), new Vector2(-283.23999F, -182.347F)); + builder.AddCubicBezier(new Vector2(-282.334015F, -181.787003F), new Vector2(-281.619995F, -181.020004F), new Vector2(-281.100006F, -180.046997F)); + builder.AddCubicBezier(new Vector2(-280.579987F, -179.072998F), new Vector2(-280.320007F, -177.960007F), new Vector2(-280.320007F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-280.320007F, -175.427002F), new Vector2(-280.579987F, -174.300003F), new Vector2(-281.100006F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-281.619995F, -172.352997F), new Vector2(-282.334015F, -171.587006F), new Vector2(-283.23999F, -171.026993F)); + builder.AddCubicBezier(new Vector2(-284.147003F, -170.466995F), new Vector2(-285.200012F, -170.186996F), new Vector2(-286.399994F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-287.574005F, -170.186996F), new Vector2(-288.619995F, -170.466995F), new Vector2(-289.540009F, -171.026993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-292.200012F, -159.227005F)); + builder.AddLine(new Vector2(-292.200012F, -171.947006F)); + builder.AddLine(new Vector2(-292.880005F, -176.587006F)); + builder.AddLine(new Vector2(-292.200012F, -181.186996F)); + builder.AddLine(new Vector2(-292.200012F, -186.186996F)); + builder.AddLine(new Vector2(-295.799988F, -186.186996F)); + builder.AddLine(new Vector2(-295.799988F, -159.227005F)); + builder.AddLine(new Vector2(-292.200012F, -159.227005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-281.100006F, -168.087006F)); + builder.AddCubicBezier(new Vector2(-279.700012F, -168.953003F), new Vector2(-278.600006F, -170.132996F), new Vector2(-277.799988F, -171.626999F)); + builder.AddCubicBezier(new Vector2(-277F, -173.119995F), new Vector2(-276.600006F, -174.800003F), new Vector2(-276.600006F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-276.600006F, -178.533005F), new Vector2(-277F, -180.212997F), new Vector2(-277.799988F, -181.707001F)); + builder.AddCubicBezier(new Vector2(-278.600006F, -183.199997F), new Vector2(-279.700012F, -184.386993F), new Vector2(-281.100006F, -185.266998F)); + builder.AddCubicBezier(new Vector2(-282.5F, -186.147003F), new Vector2(-284.066986F, -186.587006F), new Vector2(-285.799988F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-287.213989F, -186.587006F), new Vector2(-288.5F, -186.287003F), new Vector2(-289.660004F, -185.686996F)); + builder.AddCubicBezier(new Vector2(-290.820007F, -185.087006F), new Vector2(-291.753998F, -184.259995F), new Vector2(-292.459991F, -183.207001F)); + builder.AddCubicBezier(new Vector2(-293.166992F, -182.153F), new Vector2(-293.559998F, -180.932999F), new Vector2(-293.640015F, -179.546997F)); + builder.AddLine(new Vector2(-293.640015F, -173.826996F)); + builder.AddCubicBezier(new Vector2(-293.559998F, -172.466995F), new Vector2(-293.174011F, -171.253006F), new Vector2(-292.480011F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-291.786987F, -169.119995F), new Vector2(-290.859985F, -168.287003F), new Vector2(-289.700012F, -167.686996F)); + builder.AddCubicBezier(new Vector2(-288.540009F, -167.087006F), new Vector2(-287.23999F, -166.787003F), new Vector2(-285.799988F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-284.066986F, -166.787003F), new Vector2(-282.5F, -167.220001F), new Vector2(-281.100006F, -168.087006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1523() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-301.040009F, -167.186996F)); + builder.AddLine(new Vector2(-301.040009F, -186.186996F)); + builder.AddLine(new Vector2(-304.679993F, -186.186996F)); + builder.AddLine(new Vector2(-304.679993F, -181.546997F)); + builder.AddLine(new Vector2(-304F, -176.947006F)); + builder.AddLine(new Vector2(-304.679993F, -172.307007F)); + builder.AddLine(new Vector2(-304.679993F, -167.186996F)); + builder.AddLine(new Vector2(-301.040009F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-313.600006F, -171.026993F)); + builder.AddCubicBezier(new Vector2(-314.533997F, -171.587006F), new Vector2(-315.26001F, -172.352997F), new Vector2(-315.779999F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-316.299988F, -174.300003F), new Vector2(-316.559998F, -175.427002F), new Vector2(-316.559998F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-316.559998F, -177.960007F), new Vector2(-316.299988F, -179.072998F), new Vector2(-315.779999F, -180.046997F)); + builder.AddCubicBezier(new Vector2(-315.26001F, -181.020004F), new Vector2(-314.540009F, -181.787003F), new Vector2(-313.619995F, -182.347F)); + builder.AddCubicBezier(new Vector2(-312.700012F, -182.906998F), new Vector2(-311.640015F, -183.186996F), new Vector2(-310.440002F, -183.186996F)); + builder.AddCubicBezier(new Vector2(-309.23999F, -183.186996F), new Vector2(-308.194F, -182.912994F), new Vector2(-307.299988F, -182.367004F)); + builder.AddCubicBezier(new Vector2(-306.407013F, -181.820007F), new Vector2(-305.707001F, -181.052994F), new Vector2(-305.200012F, -180.067001F)); + builder.AddCubicBezier(new Vector2(-304.694F, -179.080002F), new Vector2(-304.440002F, -177.947006F), new Vector2(-304.440002F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-304.440002F, -174.772995F), new Vector2(-304.987F, -173.220001F), new Vector2(-306.079987F, -172.007004F)); + builder.AddCubicBezier(new Vector2(-307.174011F, -170.792999F), new Vector2(-308.614014F, -170.186996F), new Vector2(-310.399994F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-311.600006F, -170.186996F), new Vector2(-312.666992F, -170.466995F), new Vector2(-313.600006F, -171.026993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-307.119995F, -167.686996F)); + builder.AddCubicBezier(new Vector2(-305.973999F, -168.287003F), new Vector2(-305.059998F, -169.119995F), new Vector2(-304.380005F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-303.700012F, -171.253006F), new Vector2(-303.320007F, -172.466995F), new Vector2(-303.23999F, -173.826996F)); + builder.AddLine(new Vector2(-303.23999F, -179.546997F)); + builder.AddCubicBezier(new Vector2(-303.320007F, -180.932999F), new Vector2(-303.707001F, -182.153F), new Vector2(-304.399994F, -183.207001F)); + builder.AddCubicBezier(new Vector2(-305.093994F, -184.259995F), new Vector2(-306.006989F, -185.087006F), new Vector2(-307.140015F, -185.686996F)); + builder.AddCubicBezier(new Vector2(-308.273987F, -186.287003F), new Vector2(-309.559998F, -186.587006F), new Vector2(-311F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-312.76001F, -186.587006F), new Vector2(-314.339996F, -186.147003F), new Vector2(-315.73999F, -185.266998F)); + builder.AddCubicBezier(new Vector2(-317.140015F, -184.386993F), new Vector2(-318.247009F, -183.199997F), new Vector2(-319.059998F, -181.707001F)); + builder.AddCubicBezier(new Vector2(-319.873993F, -180.212997F), new Vector2(-320.279999F, -178.533005F), new Vector2(-320.279999F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-320.279999F, -174.800003F), new Vector2(-319.873993F, -173.119995F), new Vector2(-319.059998F, -171.626999F)); + builder.AddCubicBezier(new Vector2(-318.247009F, -170.132996F), new Vector2(-317.140015F, -168.953003F), new Vector2(-315.73999F, -168.087006F)); + builder.AddCubicBezier(new Vector2(-314.339996F, -167.220001F), new Vector2(-312.76001F, -166.787003F), new Vector2(-311F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-309.559998F, -166.787003F), new Vector2(-308.266998F, -167.087006F), new Vector2(-307.119995F, -167.686996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1524() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-337.399994F, -167.186996F)); + builder.AddLine(new Vector2(-337.399994F, -195.746994F)); + builder.AddLine(new Vector2(-341F, -195.746994F)); + builder.AddLine(new Vector2(-341F, -167.186996F)); + builder.AddLine(new Vector2(-337.399994F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-323.959991F, -167.186996F)); + builder.AddLine(new Vector2(-323.959991F, -178.987F)); + builder.AddCubicBezier(new Vector2(-323.959991F, -180.479996F), new Vector2(-324.279999F, -181.800003F), new Vector2(-324.920013F, -182.947006F)); + builder.AddCubicBezier(new Vector2(-325.559998F, -184.093002F), new Vector2(-326.43399F, -184.987F), new Vector2(-327.540009F, -185.626999F)); + builder.AddCubicBezier(new Vector2(-328.647003F, -186.266998F), new Vector2(-329.920013F, -186.587006F), new Vector2(-331.359985F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-332.799988F, -186.587006F), new Vector2(-334.093994F, -186.259995F), new Vector2(-335.23999F, -185.606995F)); + builder.AddCubicBezier(new Vector2(-336.386993F, -184.953003F), new Vector2(-337.279999F, -184.067001F), new Vector2(-337.920013F, -182.947006F)); + builder.AddCubicBezier(new Vector2(-338.559998F, -181.826996F), new Vector2(-338.880005F, -180.546997F), new Vector2(-338.880005F, -179.106995F)); + builder.AddLine(new Vector2(-337.399994F, -178.266998F)); + builder.AddCubicBezier(new Vector2(-337.399994F, -179.227005F), new Vector2(-337.187012F, -180.080002F), new Vector2(-336.76001F, -180.826996F)); + builder.AddCubicBezier(new Vector2(-336.334015F, -181.572998F), new Vector2(-335.747009F, -182.160004F), new Vector2(-335F, -182.587006F)); + builder.AddCubicBezier(new Vector2(-334.253998F, -183.013F), new Vector2(-333.399994F, -183.227005F), new Vector2(-332.440002F, -183.227005F)); + builder.AddCubicBezier(new Vector2(-331F, -183.227005F), new Vector2(-329.834015F, -182.759995F), new Vector2(-328.940002F, -181.826996F)); + builder.AddCubicBezier(new Vector2(-328.046997F, -180.893005F), new Vector2(-327.600006F, -179.707001F), new Vector2(-327.600006F, -178.266998F)); + builder.AddLine(new Vector2(-327.600006F, -167.186996F)); + builder.AddLine(new Vector2(-323.959991F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1525() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-355.220001F, -168.347F)); + builder.AddCubicBezier(new Vector2(-353.95401F, -169.386993F), new Vector2(-353.320007F, -170.800003F), new Vector2(-353.320007F, -172.587006F)); + builder.AddCubicBezier(new Vector2(-353.320007F, -173.759995F), new Vector2(-353.566986F, -174.707001F), new Vector2(-354.059998F, -175.427002F)); + builder.AddCubicBezier(new Vector2(-354.553986F, -176.147003F), new Vector2(-355.187012F, -176.720001F), new Vector2(-355.959991F, -177.147003F)); + builder.AddCubicBezier(new Vector2(-356.734009F, -177.572998F), new Vector2(-357.546997F, -177.912994F), new Vector2(-358.399994F, -178.167007F)); + builder.AddCubicBezier(new Vector2(-359.253998F, -178.419998F), new Vector2(-360.074005F, -178.667007F), new Vector2(-360.859985F, -178.906998F)); + builder.AddCubicBezier(new Vector2(-361.647003F, -179.147003F), new Vector2(-362.279999F, -179.440002F), new Vector2(-362.76001F, -179.787003F)); + builder.AddCubicBezier(new Vector2(-363.23999F, -180.132996F), new Vector2(-363.480011F, -180.626999F), new Vector2(-363.480011F, -181.266998F)); + builder.AddCubicBezier(new Vector2(-363.480011F, -181.880005F), new Vector2(-363.207001F, -182.373001F), new Vector2(-362.660004F, -182.746994F)); + builder.AddCubicBezier(new Vector2(-362.114014F, -183.119995F), new Vector2(-361.320007F, -183.307007F), new Vector2(-360.279999F, -183.307007F)); + builder.AddCubicBezier(new Vector2(-359.294006F, -183.307007F), new Vector2(-358.414001F, -183.119995F), new Vector2(-357.640015F, -182.746994F)); + builder.AddCubicBezier(new Vector2(-356.867004F, -182.373001F), new Vector2(-356.200012F, -181.839996F), new Vector2(-355.640015F, -181.147003F)); + builder.AddLine(new Vector2(-353.320007F, -183.466995F)); + builder.AddCubicBezier(new Vector2(-354.066986F, -184.507004F), new Vector2(-355.019989F, -185.287003F), new Vector2(-356.179993F, -185.807007F)); + builder.AddCubicBezier(new Vector2(-357.339996F, -186.326996F), new Vector2(-358.666992F, -186.587006F), new Vector2(-360.160004F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-361.574005F, -186.587006F), new Vector2(-362.786987F, -186.360001F), new Vector2(-363.799988F, -185.906998F)); + builder.AddCubicBezier(new Vector2(-364.813995F, -185.453003F), new Vector2(-365.593994F, -184.807007F), new Vector2(-366.140015F, -183.966995F)); + builder.AddCubicBezier(new Vector2(-366.687012F, -183.126999F), new Vector2(-366.959991F, -182.132996F), new Vector2(-366.959991F, -180.987F)); + builder.AddCubicBezier(new Vector2(-366.959991F, -179.839996F), new Vector2(-366.713989F, -178.912994F), new Vector2(-366.220001F, -178.207001F)); + builder.AddCubicBezier(new Vector2(-365.72699F, -177.5F), new Vector2(-365.093994F, -176.947006F), new Vector2(-364.320007F, -176.546997F)); + builder.AddCubicBezier(new Vector2(-363.546997F, -176.147003F), new Vector2(-362.72699F, -175.826996F), new Vector2(-361.859985F, -175.587006F)); + builder.AddCubicBezier(new Vector2(-360.993988F, -175.347F), new Vector2(-360.174011F, -175.100006F), new Vector2(-359.399994F, -174.847F)); + builder.AddCubicBezier(new Vector2(-358.627014F, -174.593002F), new Vector2(-357.993988F, -174.272995F), new Vector2(-357.5F, -173.886993F)); + builder.AddCubicBezier(new Vector2(-357.006989F, -173.5F), new Vector2(-356.76001F, -172.960007F), new Vector2(-356.76001F, -172.266998F)); + builder.AddCubicBezier(new Vector2(-356.76001F, -171.572998F), new Vector2(-357.066986F, -171.033005F), new Vector2(-357.679993F, -170.647003F)); + builder.AddCubicBezier(new Vector2(-358.294006F, -170.259995F), new Vector2(-359.160004F, -170.067001F), new Vector2(-360.279999F, -170.067001F)); + builder.AddCubicBezier(new Vector2(-361.399994F, -170.067001F), new Vector2(-362.414001F, -170.272995F), new Vector2(-363.320007F, -170.686996F)); + builder.AddCubicBezier(new Vector2(-364.22699F, -171.100006F), new Vector2(-365.027008F, -171.733002F), new Vector2(-365.720001F, -172.587006F)); + builder.AddLine(new Vector2(-368.040009F, -170.266998F)); + builder.AddCubicBezier(new Vector2(-367.45401F, -169.546997F), new Vector2(-366.766998F, -168.927002F), new Vector2(-365.980011F, -168.406998F)); + builder.AddCubicBezier(new Vector2(-365.194F, -167.886993F), new Vector2(-364.320007F, -167.487F), new Vector2(-363.359985F, -167.207001F)); + builder.AddCubicBezier(new Vector2(-362.399994F, -166.927002F), new Vector2(-361.386993F, -166.787003F), new Vector2(-360.320007F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-358.187012F, -166.787003F), new Vector2(-356.487F, -167.307007F), new Vector2(-355.220001F, -168.347F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1526() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-371.720001F, -184.987F)); + builder.AddLine(new Vector2(-369.079987F, -189.947006F)); + builder.AddCubicBezier(new Vector2(-368.734009F, -190.587006F), new Vector2(-368.5F, -191.113007F), new Vector2(-368.380005F, -191.526993F)); + builder.AddCubicBezier(new Vector2(-368.26001F, -191.940002F), new Vector2(-368.200012F, -192.307007F), new Vector2(-368.200012F, -192.626999F)); + builder.AddCubicBezier(new Vector2(-368.200012F, -193.373001F), new Vector2(-368.46701F, -194.013F), new Vector2(-369F, -194.546997F)); + builder.AddCubicBezier(new Vector2(-369.533997F, -195.080002F), new Vector2(-370.147003F, -195.347F), new Vector2(-370.839996F, -195.347F)); + builder.AddCubicBezier(new Vector2(-371.587006F, -195.347F), new Vector2(-372.220001F, -195.080002F), new Vector2(-372.73999F, -194.546997F)); + builder.AddCubicBezier(new Vector2(-373.26001F, -194.013F), new Vector2(-373.519989F, -193.373001F), new Vector2(-373.519989F, -192.626999F)); + builder.AddCubicBezier(new Vector2(-373.519989F, -191.906998F), new Vector2(-373.286987F, -191.320007F), new Vector2(-372.820007F, -190.867004F)); + builder.AddCubicBezier(new Vector2(-372.354004F, -190.412994F), new Vector2(-371.839996F, -190.186996F), new Vector2(-371.279999F, -190.186996F)); + builder.AddCubicBezier(new Vector2(-370.987F, -190.186996F), new Vector2(-370.73999F, -190.279999F), new Vector2(-370.540009F, -190.466995F)); + builder.AddCubicBezier(new Vector2(-370.339996F, -190.653F), new Vector2(-370.174011F, -190.893005F), new Vector2(-370.040009F, -191.186996F)); + builder.AddLine(new Vector2(-371.320007F, -190.867004F)); + builder.AddLine(new Vector2(-373.799988F, -186.106995F)); + builder.AddLine(new Vector2(-371.720001F, -184.987F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1527() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-377.720001F, -182.906998F)); + builder.AddLine(new Vector2(-377.720001F, -186.186996F)); + builder.AddLine(new Vector2(-390.679993F, -186.186996F)); + builder.AddLine(new Vector2(-390.679993F, -182.906998F)); + builder.AddLine(new Vector2(-377.720001F, -182.906998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-382.399994F, -167.186996F)); + builder.AddLine(new Vector2(-382.399994F, -194.147003F)); + builder.AddLine(new Vector2(-386F, -194.147003F)); + builder.AddLine(new Vector2(-386F, -167.186996F)); + builder.AddLine(new Vector2(-382.399994F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1528() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-394.079987F, -167.186996F)); + builder.AddLine(new Vector2(-394.079987F, -186.186996F)); + builder.AddLine(new Vector2(-397.720001F, -186.186996F)); + builder.AddLine(new Vector2(-397.720001F, -181.546997F)); + builder.AddLine(new Vector2(-397.040009F, -176.947006F)); + builder.AddLine(new Vector2(-397.720001F, -172.307007F)); + builder.AddLine(new Vector2(-397.720001F, -167.186996F)); + builder.AddLine(new Vector2(-394.079987F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-406.640015F, -171.026993F)); + builder.AddCubicBezier(new Vector2(-407.574005F, -171.587006F), new Vector2(-408.299988F, -172.352997F), new Vector2(-408.820007F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-409.339996F, -174.300003F), new Vector2(-409.600006F, -175.427002F), new Vector2(-409.600006F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-409.600006F, -177.960007F), new Vector2(-409.339996F, -179.072998F), new Vector2(-408.820007F, -180.046997F)); + builder.AddCubicBezier(new Vector2(-408.299988F, -181.020004F), new Vector2(-407.579987F, -181.787003F), new Vector2(-406.660004F, -182.347F)); + builder.AddCubicBezier(new Vector2(-405.73999F, -182.906998F), new Vector2(-404.679993F, -183.186996F), new Vector2(-403.480011F, -183.186996F)); + builder.AddCubicBezier(new Vector2(-402.279999F, -183.186996F), new Vector2(-401.234009F, -182.912994F), new Vector2(-400.339996F, -182.367004F)); + builder.AddCubicBezier(new Vector2(-399.446991F, -181.820007F), new Vector2(-398.747009F, -181.052994F), new Vector2(-398.23999F, -180.067001F)); + builder.AddCubicBezier(new Vector2(-397.734009F, -179.080002F), new Vector2(-397.480011F, -177.947006F), new Vector2(-397.480011F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-397.480011F, -174.772995F), new Vector2(-398.027008F, -173.220001F), new Vector2(-399.119995F, -172.007004F)); + builder.AddCubicBezier(new Vector2(-400.213989F, -170.792999F), new Vector2(-401.653992F, -170.186996F), new Vector2(-403.440002F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-404.640015F, -170.186996F), new Vector2(-405.707001F, -170.466995F), new Vector2(-406.640015F, -171.026993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-400.160004F, -167.686996F)); + builder.AddCubicBezier(new Vector2(-399.014008F, -168.287003F), new Vector2(-398.100006F, -169.119995F), new Vector2(-397.420013F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-396.73999F, -171.253006F), new Vector2(-396.359985F, -172.466995F), new Vector2(-396.279999F, -173.826996F)); + builder.AddLine(new Vector2(-396.279999F, -179.546997F)); + builder.AddCubicBezier(new Vector2(-396.359985F, -180.932999F), new Vector2(-396.747009F, -182.153F), new Vector2(-397.440002F, -183.207001F)); + builder.AddCubicBezier(new Vector2(-398.134003F, -184.259995F), new Vector2(-399.046997F, -185.087006F), new Vector2(-400.179993F, -185.686996F)); + builder.AddCubicBezier(new Vector2(-401.313995F, -186.287003F), new Vector2(-402.600006F, -186.587006F), new Vector2(-404.040009F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-405.799988F, -186.587006F), new Vector2(-407.380005F, -186.147003F), new Vector2(-408.779999F, -185.266998F)); + builder.AddCubicBezier(new Vector2(-410.179993F, -184.386993F), new Vector2(-411.286987F, -183.199997F), new Vector2(-412.100006F, -181.707001F)); + builder.AddCubicBezier(new Vector2(-412.914001F, -180.212997F), new Vector2(-413.320007F, -178.533005F), new Vector2(-413.320007F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-413.320007F, -174.800003F), new Vector2(-412.914001F, -173.119995F), new Vector2(-412.100006F, -171.626999F)); + builder.AddCubicBezier(new Vector2(-411.286987F, -170.132996F), new Vector2(-410.179993F, -168.953003F), new Vector2(-408.779999F, -168.087006F)); + builder.AddCubicBezier(new Vector2(-407.380005F, -167.220001F), new Vector2(-405.799988F, -166.787003F), new Vector2(-404.040009F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-402.600006F, -166.787003F), new Vector2(-401.307007F, -167.087006F), new Vector2(-400.160004F, -167.686996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1529() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-430.440002F, -167.186996F)); + builder.AddLine(new Vector2(-430.440002F, -195.746994F)); + builder.AddLine(new Vector2(-434.040009F, -195.746994F)); + builder.AddLine(new Vector2(-434.040009F, -167.186996F)); + builder.AddLine(new Vector2(-430.440002F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-417F, -167.186996F)); + builder.AddLine(new Vector2(-417F, -178.987F)); + builder.AddCubicBezier(new Vector2(-417F, -180.479996F), new Vector2(-417.320007F, -181.800003F), new Vector2(-417.959991F, -182.947006F)); + builder.AddCubicBezier(new Vector2(-418.600006F, -184.093002F), new Vector2(-419.473999F, -184.987F), new Vector2(-420.579987F, -185.626999F)); + builder.AddCubicBezier(new Vector2(-421.687012F, -186.266998F), new Vector2(-422.959991F, -186.587006F), new Vector2(-424.399994F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-425.839996F, -186.587006F), new Vector2(-427.134003F, -186.259995F), new Vector2(-428.279999F, -185.606995F)); + builder.AddCubicBezier(new Vector2(-429.427002F, -184.953003F), new Vector2(-430.320007F, -184.067001F), new Vector2(-430.959991F, -182.947006F)); + builder.AddCubicBezier(new Vector2(-431.600006F, -181.826996F), new Vector2(-431.920013F, -180.546997F), new Vector2(-431.920013F, -179.106995F)); + builder.AddLine(new Vector2(-430.440002F, -178.266998F)); + builder.AddCubicBezier(new Vector2(-430.440002F, -179.227005F), new Vector2(-430.22699F, -180.080002F), new Vector2(-429.799988F, -180.826996F)); + builder.AddCubicBezier(new Vector2(-429.373993F, -181.572998F), new Vector2(-428.786987F, -182.160004F), new Vector2(-428.040009F, -182.587006F)); + builder.AddCubicBezier(new Vector2(-427.294006F, -183.013F), new Vector2(-426.440002F, -183.227005F), new Vector2(-425.480011F, -183.227005F)); + builder.AddCubicBezier(new Vector2(-424.040009F, -183.227005F), new Vector2(-422.873993F, -182.759995F), new Vector2(-421.980011F, -181.826996F)); + builder.AddCubicBezier(new Vector2(-421.087006F, -180.893005F), new Vector2(-420.640015F, -179.707001F), new Vector2(-420.640015F, -178.266998F)); + builder.AddLine(new Vector2(-420.640015F, -167.186996F)); + builder.AddLine(new Vector2(-417F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1530() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-456.519989F, -167.186996F)); + builder.AddLine(new Vector2(-451F, -181.507004F)); + builder.AddLine(new Vector2(-452.320007F, -181.507004F)); + builder.AddLine(new Vector2(-446.839996F, -167.186996F)); + builder.AddLine(new Vector2(-444.720001F, -167.186996F)); + builder.AddLine(new Vector2(-437.23999F, -186.186996F)); + builder.AddLine(new Vector2(-441F, -186.186996F)); + builder.AddLine(new Vector2(-446.440002F, -171.386993F)); + builder.AddLine(new Vector2(-445.23999F, -171.386993F)); + builder.AddLine(new Vector2(-450.640015F, -186.186996F)); + builder.AddLine(new Vector2(-452.720001F, -186.186996F)); + builder.AddLine(new Vector2(-458.119995F, -171.386993F)); + builder.AddLine(new Vector2(-456.920013F, -171.386993F)); + builder.AddLine(new Vector2(-462.359985F, -186.186996F)); + builder.AddLine(new Vector2(-466.119995F, -186.186996F)); + builder.AddLine(new Vector2(-458.640015F, -167.186996F)); + builder.AddLine(new Vector2(-456.519989F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1531() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-475.839996F, -182.906998F)); + builder.AddLine(new Vector2(-475.839996F, -186.186996F)); + builder.AddLine(new Vector2(-488.799988F, -186.186996F)); + builder.AddLine(new Vector2(-488.799988F, -182.906998F)); + builder.AddLine(new Vector2(-475.839996F, -182.906998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-480.519989F, -167.186996F)); + builder.AddLine(new Vector2(-480.519989F, -194.147003F)); + builder.AddLine(new Vector2(-484.119995F, -194.147003F)); + builder.AddLine(new Vector2(-484.119995F, -167.186996F)); + builder.AddLine(new Vector2(-480.519989F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1532() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-495.799988F, -167.886993F)); + builder.AddCubicBezier(new Vector2(-494.574005F, -168.567001F), new Vector2(-493.614014F, -169.533005F), new Vector2(-492.920013F, -170.787003F)); + builder.AddCubicBezier(new Vector2(-492.22699F, -172.039993F), new Vector2(-491.880005F, -173.492996F), new Vector2(-491.880005F, -175.147003F)); + builder.AddLine(new Vector2(-491.880005F, -186.186996F)); + builder.AddLine(new Vector2(-495.480011F, -186.186996F)); + builder.AddLine(new Vector2(-495.480011F, -175.307007F)); + builder.AddCubicBezier(new Vector2(-495.480011F, -173.733002F), new Vector2(-495.880005F, -172.5F), new Vector2(-496.679993F, -171.606995F)); + builder.AddCubicBezier(new Vector2(-497.480011F, -170.712997F), new Vector2(-498.587006F, -170.266998F), new Vector2(-500F, -170.266998F)); + builder.AddCubicBezier(new Vector2(-500.93399F, -170.266998F), new Vector2(-501.747009F, -170.466995F), new Vector2(-502.440002F, -170.867004F)); + builder.AddCubicBezier(new Vector2(-503.134003F, -171.266998F), new Vector2(-503.660004F, -171.847F), new Vector2(-504.019989F, -172.606995F)); + builder.AddCubicBezier(new Vector2(-504.380005F, -173.367004F), new Vector2(-504.559998F, -174.266998F), new Vector2(-504.559998F, -175.307007F)); + builder.AddLine(new Vector2(-504.559998F, -186.186996F)); + builder.AddLine(new Vector2(-508.160004F, -186.186996F)); + builder.AddLine(new Vector2(-508.160004F, -175.147003F)); + builder.AddCubicBezier(new Vector2(-508.160004F, -173.492996F), new Vector2(-507.813995F, -172.039993F), new Vector2(-507.119995F, -170.787003F)); + builder.AddCubicBezier(new Vector2(-506.427002F, -169.533005F), new Vector2(-505.459991F, -168.567001F), new Vector2(-504.220001F, -167.886993F)); + builder.AddCubicBezier(new Vector2(-502.980011F, -167.207001F), new Vector2(-501.574005F, -166.867004F), new Vector2(-500F, -166.867004F)); + builder.AddCubicBezier(new Vector2(-498.427002F, -166.867004F), new Vector2(-497.027008F, -167.207001F), new Vector2(-495.799988F, -167.886993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1533() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-524.799988F, -171.106995F)); + builder.AddCubicBezier(new Vector2(-525.734009F, -171.667007F), new Vector2(-526.46698F, -172.432999F), new Vector2(-527F, -173.406998F)); + builder.AddCubicBezier(new Vector2(-527.533997F, -174.380005F), new Vector2(-527.799988F, -175.492996F), new Vector2(-527.799988F, -176.746994F)); + builder.AddCubicBezier(new Vector2(-527.799988F, -177.973007F), new Vector2(-527.533997F, -179.067001F), new Vector2(-527F, -180.026993F)); + builder.AddCubicBezier(new Vector2(-526.46698F, -180.987F), new Vector2(-525.734009F, -181.740005F), new Vector2(-524.799988F, -182.287003F)); + builder.AddCubicBezier(new Vector2(-523.867004F, -182.832993F), new Vector2(-522.814026F, -183.106995F), new Vector2(-521.640015F, -183.106995F)); + builder.AddCubicBezier(new Vector2(-520.414001F, -183.106995F), new Vector2(-519.340027F, -182.832993F), new Vector2(-518.419983F, -182.287003F)); + builder.AddCubicBezier(new Vector2(-517.5F, -181.740005F), new Vector2(-516.767029F, -180.987F), new Vector2(-516.219971F, -180.026993F)); + builder.AddCubicBezier(new Vector2(-515.674011F, -179.067001F), new Vector2(-515.400024F, -177.973007F), new Vector2(-515.400024F, -176.746994F)); + builder.AddCubicBezier(new Vector2(-515.400024F, -175.492996F), new Vector2(-515.666992F, -174.380005F), new Vector2(-516.200012F, -173.406998F)); + builder.AddCubicBezier(new Vector2(-516.734009F, -172.432999F), new Vector2(-517.46698F, -171.667007F), new Vector2(-518.400024F, -171.106995F)); + builder.AddCubicBezier(new Vector2(-519.333984F, -170.546997F), new Vector2(-520.414001F, -170.266998F), new Vector2(-521.640015F, -170.266998F)); + builder.AddCubicBezier(new Vector2(-522.814026F, -170.266998F), new Vector2(-523.867004F, -170.546997F), new Vector2(-524.799988F, -171.106995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-516.580017F, -168.106995F)); + builder.AddCubicBezier(new Vector2(-515.073975F, -168.987F), new Vector2(-513.880005F, -170.179993F), new Vector2(-513F, -171.686996F)); + builder.AddCubicBezier(new Vector2(-512.119995F, -173.192993F), new Vector2(-511.679993F, -174.880005F), new Vector2(-511.679993F, -176.746994F)); + builder.AddCubicBezier(new Vector2(-511.679993F, -178.587006F), new Vector2(-512.119995F, -180.253006F), new Vector2(-513F, -181.746994F)); + builder.AddCubicBezier(new Vector2(-513.880005F, -183.240005F), new Vector2(-515.073975F, -184.419998F), new Vector2(-516.580017F, -185.287003F)); + builder.AddCubicBezier(new Vector2(-518.086975F, -186.153F), new Vector2(-519.773987F, -186.587006F), new Vector2(-521.640015F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-523.47998F, -186.587006F), new Vector2(-525.146973F, -186.147003F), new Vector2(-526.640015F, -185.266998F)); + builder.AddCubicBezier(new Vector2(-528.133972F, -184.386993F), new Vector2(-529.320007F, -183.207001F), new Vector2(-530.200012F, -181.727005F)); + builder.AddCubicBezier(new Vector2(-531.080017F, -180.246994F), new Vector2(-531.52002F, -178.587006F), new Vector2(-531.52002F, -176.746994F)); + builder.AddCubicBezier(new Vector2(-531.52002F, -174.880005F), new Vector2(-531.080017F, -173.192993F), new Vector2(-530.200012F, -171.686996F)); + builder.AddCubicBezier(new Vector2(-529.320007F, -170.179993F), new Vector2(-528.133972F, -168.987F), new Vector2(-526.640015F, -168.106995F)); + builder.AddCubicBezier(new Vector2(-525.146973F, -167.227005F), new Vector2(-523.47998F, -166.787003F), new Vector2(-521.640015F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-519.773987F, -166.787003F), new Vector2(-518.086975F, -167.227005F), new Vector2(-516.580017F, -168.106995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1534() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-547.299988F, -171.026993F)); + builder.AddCubicBezier(new Vector2(-548.219971F, -171.587006F), new Vector2(-548.927002F, -172.352997F), new Vector2(-549.419983F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-549.914001F, -174.300003F), new Vector2(-550.159973F, -175.412994F), new Vector2(-550.159973F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-550.159973F, -177.947006F), new Vector2(-549.906982F, -179.072998F), new Vector2(-549.400024F, -180.046997F)); + builder.AddCubicBezier(new Vector2(-548.893982F, -181.020004F), new Vector2(-548.187012F, -181.787003F), new Vector2(-547.280029F, -182.347F)); + builder.AddCubicBezier(new Vector2(-546.374023F, -182.906998F), new Vector2(-545.333984F, -183.186996F), new Vector2(-544.159973F, -183.186996F)); + builder.AddCubicBezier(new Vector2(-542.960022F, -183.186996F), new Vector2(-541.906982F, -182.906998F), new Vector2(-541F, -182.347F)); + builder.AddCubicBezier(new Vector2(-540.093994F, -181.787003F), new Vector2(-539.380005F, -181.020004F), new Vector2(-538.859985F, -180.046997F)); + builder.AddCubicBezier(new Vector2(-538.340027F, -179.072998F), new Vector2(-538.080017F, -177.960007F), new Vector2(-538.080017F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-538.080017F, -175.427002F), new Vector2(-538.340027F, -174.300003F), new Vector2(-538.859985F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-539.380005F, -172.352997F), new Vector2(-540.093994F, -171.587006F), new Vector2(-541F, -171.026993F)); + builder.AddCubicBezier(new Vector2(-541.906982F, -170.466995F), new Vector2(-542.960022F, -170.186996F), new Vector2(-544.159973F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-545.333984F, -170.186996F), new Vector2(-546.380005F, -170.466995F), new Vector2(-547.299988F, -171.026993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-549.960022F, -167.186996F)); + builder.AddLine(new Vector2(-549.960022F, -172.307007F)); + builder.AddLine(new Vector2(-550.640015F, -176.947006F)); + builder.AddLine(new Vector2(-549.960022F, -181.546997F)); + builder.AddLine(new Vector2(-549.960022F, -195.746994F)); + builder.AddLine(new Vector2(-553.559998F, -195.746994F)); + builder.AddLine(new Vector2(-553.559998F, -167.186996F)); + builder.AddLine(new Vector2(-549.960022F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-538.859985F, -168.087006F)); + builder.AddCubicBezier(new Vector2(-537.460022F, -168.953003F), new Vector2(-536.359985F, -170.132996F), new Vector2(-535.559998F, -171.626999F)); + builder.AddCubicBezier(new Vector2(-534.76001F, -173.119995F), new Vector2(-534.359985F, -174.800003F), new Vector2(-534.359985F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-534.359985F, -178.533005F), new Vector2(-534.76001F, -180.212997F), new Vector2(-535.559998F, -181.707001F)); + builder.AddCubicBezier(new Vector2(-536.359985F, -183.199997F), new Vector2(-537.460022F, -184.386993F), new Vector2(-538.859985F, -185.266998F)); + builder.AddCubicBezier(new Vector2(-540.26001F, -186.147003F), new Vector2(-541.827026F, -186.587006F), new Vector2(-543.559998F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-544.973999F, -186.587006F), new Vector2(-546.26001F, -186.287003F), new Vector2(-547.419983F, -185.686996F)); + builder.AddCubicBezier(new Vector2(-548.580017F, -185.087006F), new Vector2(-549.513977F, -184.259995F), new Vector2(-550.219971F, -183.207001F)); + builder.AddCubicBezier(new Vector2(-550.927002F, -182.153F), new Vector2(-551.320007F, -180.932999F), new Vector2(-551.400024F, -179.546997F)); + builder.AddLine(new Vector2(-551.400024F, -173.826996F)); + builder.AddCubicBezier(new Vector2(-551.320007F, -172.466995F), new Vector2(-550.934021F, -171.253006F), new Vector2(-550.23999F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-549.546997F, -169.119995F), new Vector2(-548.619995F, -168.287003F), new Vector2(-547.460022F, -167.686996F)); + builder.AddCubicBezier(new Vector2(-546.299988F, -167.087006F), new Vector2(-545F, -166.787003F), new Vector2(-543.559998F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-541.827026F, -166.787003F), new Vector2(-540.26001F, -167.220001F), new Vector2(-538.859985F, -168.087006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1535() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-558.799988F, -167.186996F)); + builder.AddLine(new Vector2(-558.799988F, -186.186996F)); + builder.AddLine(new Vector2(-562.440002F, -186.186996F)); + builder.AddLine(new Vector2(-562.440002F, -181.546997F)); + builder.AddLine(new Vector2(-561.76001F, -176.947006F)); + builder.AddLine(new Vector2(-562.440002F, -172.307007F)); + builder.AddLine(new Vector2(-562.440002F, -167.186996F)); + builder.AddLine(new Vector2(-558.799988F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-571.359985F, -171.026993F)); + builder.AddCubicBezier(new Vector2(-572.294006F, -171.587006F), new Vector2(-573.02002F, -172.352997F), new Vector2(-573.539978F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-574.059998F, -174.300003F), new Vector2(-574.320007F, -175.427002F), new Vector2(-574.320007F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-574.320007F, -177.960007F), new Vector2(-574.059998F, -179.072998F), new Vector2(-573.539978F, -180.046997F)); + builder.AddCubicBezier(new Vector2(-573.02002F, -181.020004F), new Vector2(-572.299988F, -181.787003F), new Vector2(-571.380005F, -182.347F)); + builder.AddCubicBezier(new Vector2(-570.460022F, -182.906998F), new Vector2(-569.400024F, -183.186996F), new Vector2(-568.200012F, -183.186996F)); + builder.AddCubicBezier(new Vector2(-567F, -183.186996F), new Vector2(-565.953979F, -182.912994F), new Vector2(-565.059998F, -182.367004F)); + builder.AddCubicBezier(new Vector2(-564.166992F, -181.820007F), new Vector2(-563.46698F, -181.052994F), new Vector2(-562.960022F, -180.067001F)); + builder.AddCubicBezier(new Vector2(-562.453979F, -179.080002F), new Vector2(-562.200012F, -177.947006F), new Vector2(-562.200012F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-562.200012F, -174.772995F), new Vector2(-562.747009F, -173.220001F), new Vector2(-563.840027F, -172.007004F)); + builder.AddCubicBezier(new Vector2(-564.934021F, -170.792999F), new Vector2(-566.374023F, -170.186996F), new Vector2(-568.159973F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-569.359985F, -170.186996F), new Vector2(-570.427002F, -170.466995F), new Vector2(-571.359985F, -171.026993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-564.880005F, -167.686996F)); + builder.AddCubicBezier(new Vector2(-563.734009F, -168.287003F), new Vector2(-562.820007F, -169.119995F), new Vector2(-562.140015F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-561.460022F, -171.253006F), new Vector2(-561.080017F, -172.466995F), new Vector2(-561F, -173.826996F)); + builder.AddLine(new Vector2(-561F, -179.546997F)); + builder.AddCubicBezier(new Vector2(-561.080017F, -180.932999F), new Vector2(-561.46698F, -182.153F), new Vector2(-562.159973F, -183.207001F)); + builder.AddCubicBezier(new Vector2(-562.854004F, -184.259995F), new Vector2(-563.767029F, -185.087006F), new Vector2(-564.900024F, -185.686996F)); + builder.AddCubicBezier(new Vector2(-566.033997F, -186.287003F), new Vector2(-567.320007F, -186.587006F), new Vector2(-568.76001F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-570.52002F, -186.587006F), new Vector2(-572.099976F, -186.147003F), new Vector2(-573.5F, -185.266998F)); + builder.AddCubicBezier(new Vector2(-574.900024F, -184.386993F), new Vector2(-576.007019F, -183.199997F), new Vector2(-576.820007F, -181.707001F)); + builder.AddCubicBezier(new Vector2(-577.633972F, -180.212997F), new Vector2(-578.039978F, -178.533005F), new Vector2(-578.039978F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-578.039978F, -174.800003F), new Vector2(-577.633972F, -173.119995F), new Vector2(-576.820007F, -171.626999F)); + builder.AddCubicBezier(new Vector2(-576.007019F, -170.132996F), new Vector2(-574.900024F, -168.953003F), new Vector2(-573.5F, -168.087006F)); + builder.AddCubicBezier(new Vector2(-572.099976F, -167.220001F), new Vector2(-570.52002F, -166.787003F), new Vector2(-568.76001F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-567.320007F, -166.787003F), new Vector2(-566.026978F, -167.087006F), new Vector2(-564.880005F, -167.686996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1536() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-593.559998F, -167.626999F)); + builder.AddCubicBezier(new Vector2(-592.254028F, -168.186996F), new Vector2(-591.133972F, -169F), new Vector2(-590.200012F, -170.067001F)); + builder.AddLine(new Vector2(-592.52002F, -172.427002F)); + builder.AddCubicBezier(new Vector2(-593.159973F, -171.679993F), new Vector2(-593.927002F, -171.119995F), new Vector2(-594.820007F, -170.746994F)); + builder.AddCubicBezier(new Vector2(-595.713989F, -170.373001F), new Vector2(-596.69397F, -170.186996F), new Vector2(-597.76001F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-599.039978F, -170.186996F), new Vector2(-600.174011F, -170.460007F), new Vector2(-601.159973F, -171.007004F)); + builder.AddCubicBezier(new Vector2(-602.146973F, -171.552994F), new Vector2(-602.906982F, -172.326996F), new Vector2(-603.440002F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-603.973999F, -174.326996F), new Vector2(-604.23999F, -175.492996F), new Vector2(-604.23999F, -176.826996F)); + builder.AddCubicBezier(new Vector2(-604.23999F, -178.132996F), new Vector2(-603.987F, -179.266998F), new Vector2(-603.47998F, -180.227005F)); + builder.AddCubicBezier(new Vector2(-602.973999F, -181.186996F), new Vector2(-602.254028F, -181.932999F), new Vector2(-601.320007F, -182.466995F)); + builder.AddCubicBezier(new Vector2(-600.387024F, -183F), new Vector2(-599.307007F, -183.266998F), new Vector2(-598.080017F, -183.266998F)); + builder.AddCubicBezier(new Vector2(-596.906982F, -183.266998F), new Vector2(-595.906982F, -183.020004F), new Vector2(-595.080017F, -182.526993F)); + builder.AddCubicBezier(new Vector2(-594.254028F, -182.033005F), new Vector2(-593.614014F, -181.339996F), new Vector2(-593.159973F, -180.447006F)); + builder.AddCubicBezier(new Vector2(-592.70697F, -179.552994F), new Vector2(-592.47998F, -178.466995F), new Vector2(-592.47998F, -177.186996F)); + builder.AddLine(new Vector2(-591.159973F, -178.347F)); + builder.AddLine(new Vector2(-605.280029F, -178.347F)); + builder.AddLine(new Vector2(-605.280029F, -175.347F)); + builder.AddLine(new Vector2(-589.23999F, -175.347F)); + builder.AddCubicBezier(new Vector2(-589.159973F, -175.720001F), new Vector2(-589.106995F, -176.059998F), new Vector2(-589.080017F, -176.367004F)); + builder.AddCubicBezier(new Vector2(-589.054016F, -176.673004F), new Vector2(-589.039978F, -176.960007F), new Vector2(-589.039978F, -177.227005F)); + builder.AddCubicBezier(new Vector2(-589.039978F, -179.039993F), new Vector2(-589.419983F, -180.653F), new Vector2(-590.179993F, -182.067001F)); + builder.AddCubicBezier(new Vector2(-590.940002F, -183.479996F), new Vector2(-592F, -184.587006F), new Vector2(-593.359985F, -185.386993F)); + builder.AddCubicBezier(new Vector2(-594.719971F, -186.186996F), new Vector2(-596.267029F, -186.587006F), new Vector2(-598F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-599.840027F, -186.587006F), new Vector2(-601.5F, -186.153F), new Vector2(-602.97998F, -185.287003F)); + builder.AddCubicBezier(new Vector2(-604.460022F, -184.419998F), new Vector2(-605.633972F, -183.240005F), new Vector2(-606.5F, -181.746994F)); + builder.AddCubicBezier(new Vector2(-607.367004F, -180.253006F), new Vector2(-607.799988F, -178.572998F), new Vector2(-607.799988F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-607.799988F, -174.813004F), new Vector2(-607.359985F, -173.119995F), new Vector2(-606.47998F, -171.626999F)); + builder.AddCubicBezier(new Vector2(-605.599976F, -170.132996F), new Vector2(-604.406982F, -168.953003F), new Vector2(-602.900024F, -168.087006F)); + builder.AddCubicBezier(new Vector2(-601.393982F, -167.220001F), new Vector2(-599.679993F, -166.787003F), new Vector2(-597.76001F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-596.267029F, -166.787003F), new Vector2(-594.867004F, -167.067001F), new Vector2(-593.559998F, -167.626999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1537() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-617.119995F, -181.906998F)); + builder.AddCubicBezier(new Vector2(-616.267029F, -182.759995F), new Vector2(-615.174011F, -183.186996F), new Vector2(-613.840027F, -183.186996F)); + builder.AddCubicBezier(new Vector2(-613.200012F, -183.186996F), new Vector2(-612.640015F, -183.093002F), new Vector2(-612.159973F, -182.906998F)); + builder.AddCubicBezier(new Vector2(-611.679993F, -182.720001F), new Vector2(-611.23999F, -182.412994F), new Vector2(-610.840027F, -181.987F)); + builder.AddLine(new Vector2(-608.47998F, -184.427002F)); + builder.AddCubicBezier(new Vector2(-609.146973F, -185.199997F), new Vector2(-609.867004F, -185.753006F), new Vector2(-610.640015F, -186.087006F)); + builder.AddCubicBezier(new Vector2(-611.414001F, -186.419998F), new Vector2(-612.280029F, -186.587006F), new Vector2(-613.23999F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-615.346985F, -186.587006F), new Vector2(-616.960022F, -185.867004F), new Vector2(-618.080017F, -184.427002F)); + builder.AddCubicBezier(new Vector2(-619.200012F, -182.987F), new Vector2(-619.76001F, -181.052994F), new Vector2(-619.76001F, -178.626999F)); + builder.AddLine(new Vector2(-618.400024F, -177.987F)); + builder.AddCubicBezier(new Vector2(-618.400024F, -179.746994F), new Vector2(-617.973999F, -181.052994F), new Vector2(-617.119995F, -181.906998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-618.400024F, -167.186996F)); + builder.AddLine(new Vector2(-618.400024F, -186.186996F)); + builder.AddLine(new Vector2(-622F, -186.186996F)); + builder.AddLine(new Vector2(-622F, -167.186996F)); + builder.AddLine(new Vector2(-618.400024F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1538() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-639.119995F, -171.106995F)); + builder.AddCubicBezier(new Vector2(-640.054016F, -171.667007F), new Vector2(-640.786987F, -172.432999F), new Vector2(-641.320007F, -173.406998F)); + builder.AddCubicBezier(new Vector2(-641.854004F, -174.380005F), new Vector2(-642.119995F, -175.492996F), new Vector2(-642.119995F, -176.746994F)); + builder.AddCubicBezier(new Vector2(-642.119995F, -177.973007F), new Vector2(-641.854004F, -179.067001F), new Vector2(-641.320007F, -180.026993F)); + builder.AddCubicBezier(new Vector2(-640.786987F, -180.987F), new Vector2(-640.054016F, -181.740005F), new Vector2(-639.119995F, -182.287003F)); + builder.AddCubicBezier(new Vector2(-638.187012F, -182.832993F), new Vector2(-637.133972F, -183.106995F), new Vector2(-635.960022F, -183.106995F)); + builder.AddCubicBezier(new Vector2(-634.734009F, -183.106995F), new Vector2(-633.659973F, -182.832993F), new Vector2(-632.73999F, -182.287003F)); + builder.AddCubicBezier(new Vector2(-631.820007F, -181.740005F), new Vector2(-631.086975F, -180.987F), new Vector2(-630.539978F, -180.026993F)); + builder.AddCubicBezier(new Vector2(-629.994019F, -179.067001F), new Vector2(-629.719971F, -177.973007F), new Vector2(-629.719971F, -176.746994F)); + builder.AddCubicBezier(new Vector2(-629.719971F, -175.492996F), new Vector2(-629.987F, -174.380005F), new Vector2(-630.52002F, -173.406998F)); + builder.AddCubicBezier(new Vector2(-631.054016F, -172.432999F), new Vector2(-631.786987F, -171.667007F), new Vector2(-632.719971F, -171.106995F)); + builder.AddCubicBezier(new Vector2(-633.653992F, -170.546997F), new Vector2(-634.734009F, -170.266998F), new Vector2(-635.960022F, -170.266998F)); + builder.AddCubicBezier(new Vector2(-637.133972F, -170.266998F), new Vector2(-638.187012F, -170.546997F), new Vector2(-639.119995F, -171.106995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-630.900024F, -168.106995F)); + builder.AddCubicBezier(new Vector2(-629.393982F, -168.987F), new Vector2(-628.200012F, -170.179993F), new Vector2(-627.320007F, -171.686996F)); + builder.AddCubicBezier(new Vector2(-626.440002F, -173.192993F), new Vector2(-626F, -174.880005F), new Vector2(-626F, -176.746994F)); + builder.AddCubicBezier(new Vector2(-626F, -178.587006F), new Vector2(-626.440002F, -180.253006F), new Vector2(-627.320007F, -181.746994F)); + builder.AddCubicBezier(new Vector2(-628.200012F, -183.240005F), new Vector2(-629.393982F, -184.419998F), new Vector2(-630.900024F, -185.287003F)); + builder.AddCubicBezier(new Vector2(-632.406982F, -186.153F), new Vector2(-634.093994F, -186.587006F), new Vector2(-635.960022F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-637.799988F, -186.587006F), new Vector2(-639.46698F, -186.147003F), new Vector2(-640.960022F, -185.266998F)); + builder.AddCubicBezier(new Vector2(-642.453979F, -184.386993F), new Vector2(-643.640015F, -183.207001F), new Vector2(-644.52002F, -181.727005F)); + builder.AddCubicBezier(new Vector2(-645.400024F, -180.246994F), new Vector2(-645.840027F, -178.587006F), new Vector2(-645.840027F, -176.746994F)); + builder.AddCubicBezier(new Vector2(-645.840027F, -174.880005F), new Vector2(-645.400024F, -173.192993F), new Vector2(-644.52002F, -171.686996F)); + builder.AddCubicBezier(new Vector2(-643.640015F, -170.179993F), new Vector2(-642.453979F, -168.987F), new Vector2(-640.960022F, -168.106995F)); + builder.AddCubicBezier(new Vector2(-639.46698F, -167.227005F), new Vector2(-637.799988F, -166.787003F), new Vector2(-635.960022F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-634.093994F, -166.787003F), new Vector2(-632.406982F, -167.227005F), new Vector2(-630.900024F, -168.106995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1539() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-649.47998F, -167.186996F)); + builder.AddLine(new Vector2(-649.47998F, -179.386993F)); + builder.AddCubicBezier(new Vector2(-649.47998F, -180.880005F), new Vector2(-649.807007F, -182.160004F), new Vector2(-650.460022F, -183.227005F)); + builder.AddCubicBezier(new Vector2(-651.114014F, -184.292999F), new Vector2(-651.987F, -185.119995F), new Vector2(-653.080017F, -185.707001F)); + builder.AddCubicBezier(new Vector2(-654.174011F, -186.292999F), new Vector2(-655.414001F, -186.587006F), new Vector2(-656.799988F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-658.133972F, -186.587006F), new Vector2(-659.359985F, -186.287003F), new Vector2(-660.47998F, -185.686996F)); + builder.AddCubicBezier(new Vector2(-661.599976F, -185.087006F), new Vector2(-662.513977F, -184.259995F), new Vector2(-663.219971F, -183.207001F)); + builder.AddCubicBezier(new Vector2(-663.927002F, -182.153F), new Vector2(-664.320007F, -180.893005F), new Vector2(-664.400024F, -179.427002F)); + builder.AddLine(new Vector2(-662.359985F, -178.667007F)); + builder.AddCubicBezier(new Vector2(-662.359985F, -179.626999F), new Vector2(-662.146973F, -180.440002F), new Vector2(-661.719971F, -181.106995F)); + builder.AddCubicBezier(new Vector2(-661.294006F, -181.772995F), new Vector2(-660.72699F, -182.292999F), new Vector2(-660.02002F, -182.667007F)); + builder.AddCubicBezier(new Vector2(-659.314026F, -183.039993F), new Vector2(-658.52002F, -183.227005F), new Vector2(-657.640015F, -183.227005F)); + builder.AddCubicBezier(new Vector2(-656.359985F, -183.227005F), new Vector2(-655.286987F, -182.820007F), new Vector2(-654.419983F, -182.007004F)); + builder.AddCubicBezier(new Vector2(-653.554016F, -181.192993F), new Vector2(-653.119995F, -180.080002F), new Vector2(-653.119995F, -178.667007F)); + builder.AddLine(new Vector2(-653.119995F, -167.186996F)); + builder.AddLine(new Vector2(-649.47998F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-662.359985F, -167.186996F)); + builder.AddLine(new Vector2(-662.359985F, -179.427002F)); + builder.AddCubicBezier(new Vector2(-662.359985F, -180.893005F), new Vector2(-662.674011F, -182.160004F), new Vector2(-663.299988F, -183.227005F)); + builder.AddCubicBezier(new Vector2(-663.927002F, -184.292999F), new Vector2(-664.780029F, -185.119995F), new Vector2(-665.859985F, -185.707001F)); + builder.AddCubicBezier(new Vector2(-666.940002F, -186.292999F), new Vector2(-668.146973F, -186.587006F), new Vector2(-669.47998F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-670.840027F, -186.587006F), new Vector2(-672.067017F, -186.287003F), new Vector2(-673.159973F, -185.686996F)); + builder.AddCubicBezier(new Vector2(-674.254028F, -185.087006F), new Vector2(-675.114014F, -184.253006F), new Vector2(-675.73999F, -183.186996F)); + builder.AddCubicBezier(new Vector2(-676.367004F, -182.119995F), new Vector2(-676.679993F, -180.867004F), new Vector2(-676.679993F, -179.427002F)); + builder.AddLine(new Vector2(-675.200012F, -178.667007F)); + builder.AddCubicBezier(new Vector2(-675.200012F, -179.626999F), new Vector2(-674.987F, -180.440002F), new Vector2(-674.559998F, -181.106995F)); + builder.AddCubicBezier(new Vector2(-674.133972F, -181.772995F), new Vector2(-673.573975F, -182.292999F), new Vector2(-672.880005F, -182.667007F)); + builder.AddCubicBezier(new Vector2(-672.187012F, -183.039993F), new Vector2(-671.400024F, -183.227005F), new Vector2(-670.52002F, -183.227005F)); + builder.AddCubicBezier(new Vector2(-669.213989F, -183.227005F), new Vector2(-668.127014F, -182.820007F), new Vector2(-667.26001F, -182.007004F)); + builder.AddCubicBezier(new Vector2(-666.393982F, -181.192993F), new Vector2(-665.960022F, -180.080002F), new Vector2(-665.960022F, -178.667007F)); + builder.AddLine(new Vector2(-665.960022F, -167.186996F)); + builder.AddLine(new Vector2(-662.359985F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-675.200012F, -167.186996F)); + builder.AddLine(new Vector2(-675.200012F, -186.186996F)); + builder.AddLine(new Vector2(-678.799988F, -186.186996F)); + builder.AddLine(new Vector2(-678.799988F, -167.186996F)); + builder.AddLine(new Vector2(-675.200012F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1540() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-705.400024F, -167.186996F)); + builder.AddLine(new Vector2(-705.400024F, -186.186996F)); + builder.AddLine(new Vector2(-709F, -186.186996F)); + builder.AddLine(new Vector2(-709F, -167.186996F)); + builder.AddLine(new Vector2(-705.400024F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-691.960022F, -167.186996F)); + builder.AddLine(new Vector2(-691.960022F, -178.987F)); + builder.AddCubicBezier(new Vector2(-691.960022F, -180.292999F), new Vector2(-692.280029F, -181.526993F), new Vector2(-692.919983F, -182.686996F)); + builder.AddCubicBezier(new Vector2(-693.559998F, -183.847F), new Vector2(-694.434021F, -184.787003F), new Vector2(-695.539978F, -185.507004F)); + builder.AddCubicBezier(new Vector2(-696.646973F, -186.227005F), new Vector2(-697.919983F, -186.587006F), new Vector2(-699.359985F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-700.799988F, -186.587006F), new Vector2(-702.093994F, -186.259995F), new Vector2(-703.23999F, -185.606995F)); + builder.AddCubicBezier(new Vector2(-704.387024F, -184.953003F), new Vector2(-705.280029F, -184.067001F), new Vector2(-705.919983F, -182.947006F)); + builder.AddCubicBezier(new Vector2(-706.559998F, -181.826996F), new Vector2(-706.880005F, -180.546997F), new Vector2(-706.880005F, -179.106995F)); + builder.AddLine(new Vector2(-705.400024F, -178.266998F)); + builder.AddCubicBezier(new Vector2(-705.400024F, -179.227005F), new Vector2(-705.187012F, -180.080002F), new Vector2(-704.76001F, -180.826996F)); + builder.AddCubicBezier(new Vector2(-704.333984F, -181.572998F), new Vector2(-703.747009F, -182.160004F), new Vector2(-703F, -182.587006F)); + builder.AddCubicBezier(new Vector2(-702.254028F, -183.013F), new Vector2(-701.400024F, -183.227005F), new Vector2(-700.440002F, -183.227005F)); + builder.AddCubicBezier(new Vector2(-699F, -183.227005F), new Vector2(-697.833984F, -182.759995F), new Vector2(-696.940002F, -181.826996F)); + builder.AddCubicBezier(new Vector2(-696.046997F, -180.893005F), new Vector2(-695.599976F, -179.707001F), new Vector2(-695.599976F, -178.266998F)); + builder.AddLine(new Vector2(-695.599976F, -167.186996F)); + builder.AddLine(new Vector2(-691.960022F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1541() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-720.23999F, -181.906998F)); + builder.AddCubicBezier(new Vector2(-719.387024F, -182.759995F), new Vector2(-718.294006F, -183.186996F), new Vector2(-716.960022F, -183.186996F)); + builder.AddCubicBezier(new Vector2(-716.320007F, -183.186996F), new Vector2(-715.76001F, -183.093002F), new Vector2(-715.280029F, -182.906998F)); + builder.AddCubicBezier(new Vector2(-714.799988F, -182.720001F), new Vector2(-714.359985F, -182.412994F), new Vector2(-713.960022F, -181.987F)); + builder.AddLine(new Vector2(-711.599976F, -184.427002F)); + builder.AddCubicBezier(new Vector2(-712.267029F, -185.199997F), new Vector2(-712.987F, -185.753006F), new Vector2(-713.76001F, -186.087006F)); + builder.AddCubicBezier(new Vector2(-714.533997F, -186.419998F), new Vector2(-715.400024F, -186.587006F), new Vector2(-716.359985F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-718.46698F, -186.587006F), new Vector2(-720.080017F, -185.867004F), new Vector2(-721.200012F, -184.427002F)); + builder.AddCubicBezier(new Vector2(-722.320007F, -182.987F), new Vector2(-722.880005F, -181.052994F), new Vector2(-722.880005F, -178.626999F)); + builder.AddLine(new Vector2(-721.52002F, -177.987F)); + builder.AddCubicBezier(new Vector2(-721.52002F, -179.746994F), new Vector2(-721.093994F, -181.052994F), new Vector2(-720.23999F, -181.906998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-721.52002F, -167.186996F)); + builder.AddLine(new Vector2(-721.52002F, -186.186996F)); + builder.AddLine(new Vector2(-725.119995F, -186.186996F)); + builder.AddLine(new Vector2(-725.119995F, -167.186996F)); + builder.AddLine(new Vector2(-721.52002F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1542() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-730.359985F, -167.186996F)); + builder.AddLine(new Vector2(-730.359985F, -186.186996F)); + builder.AddLine(new Vector2(-734F, -186.186996F)); + builder.AddLine(new Vector2(-734F, -181.546997F)); + builder.AddLine(new Vector2(-733.320007F, -176.947006F)); + builder.AddLine(new Vector2(-734F, -172.307007F)); + builder.AddLine(new Vector2(-734F, -167.186996F)); + builder.AddLine(new Vector2(-730.359985F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-742.919983F, -171.026993F)); + builder.AddCubicBezier(new Vector2(-743.854004F, -171.587006F), new Vector2(-744.580017F, -172.352997F), new Vector2(-745.099976F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-745.619995F, -174.300003F), new Vector2(-745.880005F, -175.427002F), new Vector2(-745.880005F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-745.880005F, -177.960007F), new Vector2(-745.619995F, -179.072998F), new Vector2(-745.099976F, -180.046997F)); + builder.AddCubicBezier(new Vector2(-744.580017F, -181.020004F), new Vector2(-743.859985F, -181.787003F), new Vector2(-742.940002F, -182.347F)); + builder.AddCubicBezier(new Vector2(-742.02002F, -182.906998F), new Vector2(-740.960022F, -183.186996F), new Vector2(-739.76001F, -183.186996F)); + builder.AddCubicBezier(new Vector2(-738.559998F, -183.186996F), new Vector2(-737.513977F, -182.912994F), new Vector2(-736.619995F, -182.367004F)); + builder.AddCubicBezier(new Vector2(-735.72699F, -181.820007F), new Vector2(-735.026978F, -181.052994F), new Vector2(-734.52002F, -180.067001F)); + builder.AddCubicBezier(new Vector2(-734.013977F, -179.080002F), new Vector2(-733.76001F, -177.947006F), new Vector2(-733.76001F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-733.76001F, -174.772995F), new Vector2(-734.307007F, -173.220001F), new Vector2(-735.400024F, -172.007004F)); + builder.AddCubicBezier(new Vector2(-736.494019F, -170.792999F), new Vector2(-737.934021F, -170.186996F), new Vector2(-739.719971F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-740.919983F, -170.186996F), new Vector2(-741.987F, -170.466995F), new Vector2(-742.919983F, -171.026993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-736.440002F, -167.686996F)); + builder.AddCubicBezier(new Vector2(-735.294006F, -168.287003F), new Vector2(-734.380005F, -169.119995F), new Vector2(-733.700012F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-733.02002F, -171.253006F), new Vector2(-732.640015F, -172.466995F), new Vector2(-732.559998F, -173.826996F)); + builder.AddLine(new Vector2(-732.559998F, -179.546997F)); + builder.AddCubicBezier(new Vector2(-732.640015F, -180.932999F), new Vector2(-733.026978F, -182.153F), new Vector2(-733.719971F, -183.207001F)); + builder.AddCubicBezier(new Vector2(-734.414001F, -184.259995F), new Vector2(-735.327026F, -185.087006F), new Vector2(-736.460022F, -185.686996F)); + builder.AddCubicBezier(new Vector2(-737.593994F, -186.287003F), new Vector2(-738.880005F, -186.587006F), new Vector2(-740.320007F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-742.080017F, -186.587006F), new Vector2(-743.659973F, -186.147003F), new Vector2(-745.059998F, -185.266998F)); + builder.AddCubicBezier(new Vector2(-746.460022F, -184.386993F), new Vector2(-747.567017F, -183.199997F), new Vector2(-748.380005F, -181.707001F)); + builder.AddCubicBezier(new Vector2(-749.19397F, -180.212997F), new Vector2(-749.599976F, -178.533005F), new Vector2(-749.599976F, -176.667007F)); + builder.AddCubicBezier(new Vector2(-749.599976F, -174.800003F), new Vector2(-749.19397F, -173.119995F), new Vector2(-748.380005F, -171.626999F)); + builder.AddCubicBezier(new Vector2(-747.567017F, -170.132996F), new Vector2(-746.460022F, -168.953003F), new Vector2(-745.059998F, -168.087006F)); + builder.AddCubicBezier(new Vector2(-743.659973F, -167.220001F), new Vector2(-742.080017F, -166.787003F), new Vector2(-740.320007F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-738.880005F, -166.787003F), new Vector2(-737.586975F, -167.087006F), new Vector2(-736.440002F, -167.686996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1543() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-756.840027F, -167.626999F)); + builder.AddCubicBezier(new Vector2(-755.533997F, -168.186996F), new Vector2(-754.414001F, -169F), new Vector2(-753.47998F, -170.067001F)); + builder.AddLine(new Vector2(-755.799988F, -172.427002F)); + builder.AddCubicBezier(new Vector2(-756.440002F, -171.679993F), new Vector2(-757.20697F, -171.119995F), new Vector2(-758.099976F, -170.746994F)); + builder.AddCubicBezier(new Vector2(-758.994019F, -170.373001F), new Vector2(-759.973999F, -170.186996F), new Vector2(-761.039978F, -170.186996F)); + builder.AddCubicBezier(new Vector2(-762.320007F, -170.186996F), new Vector2(-763.453979F, -170.460007F), new Vector2(-764.440002F, -171.007004F)); + builder.AddCubicBezier(new Vector2(-765.427002F, -171.552994F), new Vector2(-766.187012F, -172.326996F), new Vector2(-766.719971F, -173.326996F)); + builder.AddCubicBezier(new Vector2(-767.254028F, -174.326996F), new Vector2(-767.52002F, -175.492996F), new Vector2(-767.52002F, -176.826996F)); + builder.AddCubicBezier(new Vector2(-767.52002F, -178.132996F), new Vector2(-767.267029F, -179.266998F), new Vector2(-766.76001F, -180.227005F)); + builder.AddCubicBezier(new Vector2(-766.254028F, -181.186996F), new Vector2(-765.533997F, -181.932999F), new Vector2(-764.599976F, -182.466995F)); + builder.AddCubicBezier(new Vector2(-763.666992F, -183F), new Vector2(-762.586975F, -183.266998F), new Vector2(-761.359985F, -183.266998F)); + builder.AddCubicBezier(new Vector2(-760.187012F, -183.266998F), new Vector2(-759.187012F, -183.020004F), new Vector2(-758.359985F, -182.526993F)); + builder.AddCubicBezier(new Vector2(-757.533997F, -182.033005F), new Vector2(-756.893982F, -181.339996F), new Vector2(-756.440002F, -180.447006F)); + builder.AddCubicBezier(new Vector2(-755.987F, -179.552994F), new Vector2(-755.76001F, -178.466995F), new Vector2(-755.76001F, -177.186996F)); + builder.AddLine(new Vector2(-754.440002F, -178.347F)); + builder.AddLine(new Vector2(-768.559998F, -178.347F)); + builder.AddLine(new Vector2(-768.559998F, -175.347F)); + builder.AddLine(new Vector2(-752.52002F, -175.347F)); + builder.AddCubicBezier(new Vector2(-752.440002F, -175.720001F), new Vector2(-752.387024F, -176.059998F), new Vector2(-752.359985F, -176.367004F)); + builder.AddCubicBezier(new Vector2(-752.333984F, -176.673004F), new Vector2(-752.320007F, -176.960007F), new Vector2(-752.320007F, -177.227005F)); + builder.AddCubicBezier(new Vector2(-752.320007F, -179.039993F), new Vector2(-752.700012F, -180.653F), new Vector2(-753.460022F, -182.067001F)); + builder.AddCubicBezier(new Vector2(-754.219971F, -183.479996F), new Vector2(-755.280029F, -184.587006F), new Vector2(-756.640015F, -185.386993F)); + builder.AddCubicBezier(new Vector2(-758F, -186.186996F), new Vector2(-759.546997F, -186.587006F), new Vector2(-761.280029F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-763.119995F, -186.587006F), new Vector2(-764.780029F, -186.153F), new Vector2(-766.26001F, -185.287003F)); + builder.AddCubicBezier(new Vector2(-767.73999F, -184.419998F), new Vector2(-768.914001F, -183.240005F), new Vector2(-769.780029F, -181.746994F)); + builder.AddCubicBezier(new Vector2(-770.646973F, -180.253006F), new Vector2(-771.080017F, -178.572998F), new Vector2(-771.080017F, -176.707001F)); + builder.AddCubicBezier(new Vector2(-771.080017F, -174.813004F), new Vector2(-770.640015F, -173.119995F), new Vector2(-769.76001F, -171.626999F)); + builder.AddCubicBezier(new Vector2(-768.880005F, -170.132996F), new Vector2(-767.687012F, -168.953003F), new Vector2(-766.179993F, -168.087006F)); + builder.AddCubicBezier(new Vector2(-764.674011F, -167.220001F), new Vector2(-762.960022F, -166.787003F), new Vector2(-761.039978F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-759.546997F, -166.787003F), new Vector2(-758.146973F, -167.067001F), new Vector2(-756.840027F, -167.626999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1544() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-775.119995F, -167.186996F)); + builder.AddLine(new Vector2(-775.119995F, -195.746994F)); + builder.AddLine(new Vector2(-778.719971F, -195.746994F)); + builder.AddLine(new Vector2(-778.719971F, -167.186996F)); + builder.AddLine(new Vector2(-775.119995F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1545() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-804.119995F, -171.106995F)); + builder.AddCubicBezier(new Vector2(-805.054016F, -171.667007F), new Vector2(-805.786987F, -172.432999F), new Vector2(-806.320007F, -173.406998F)); + builder.AddCubicBezier(new Vector2(-806.854004F, -174.380005F), new Vector2(-807.119995F, -175.492996F), new Vector2(-807.119995F, -176.746994F)); + builder.AddCubicBezier(new Vector2(-807.119995F, -177.973007F), new Vector2(-806.854004F, -179.067001F), new Vector2(-806.320007F, -180.026993F)); + builder.AddCubicBezier(new Vector2(-805.786987F, -180.987F), new Vector2(-805.054016F, -181.740005F), new Vector2(-804.119995F, -182.287003F)); + builder.AddCubicBezier(new Vector2(-803.187012F, -182.832993F), new Vector2(-802.133972F, -183.106995F), new Vector2(-800.960022F, -183.106995F)); + builder.AddCubicBezier(new Vector2(-799.734009F, -183.106995F), new Vector2(-798.659973F, -182.832993F), new Vector2(-797.73999F, -182.287003F)); + builder.AddCubicBezier(new Vector2(-796.820007F, -181.740005F), new Vector2(-796.086975F, -180.987F), new Vector2(-795.539978F, -180.026993F)); + builder.AddCubicBezier(new Vector2(-794.994019F, -179.067001F), new Vector2(-794.719971F, -177.973007F), new Vector2(-794.719971F, -176.746994F)); + builder.AddCubicBezier(new Vector2(-794.719971F, -175.492996F), new Vector2(-794.987F, -174.380005F), new Vector2(-795.52002F, -173.406998F)); + builder.AddCubicBezier(new Vector2(-796.054016F, -172.432999F), new Vector2(-796.786987F, -171.667007F), new Vector2(-797.719971F, -171.106995F)); + builder.AddCubicBezier(new Vector2(-798.653992F, -170.546997F), new Vector2(-799.734009F, -170.266998F), new Vector2(-800.960022F, -170.266998F)); + builder.AddCubicBezier(new Vector2(-802.133972F, -170.266998F), new Vector2(-803.187012F, -170.546997F), new Vector2(-804.119995F, -171.106995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-795.900024F, -168.106995F)); + builder.AddCubicBezier(new Vector2(-794.393982F, -168.987F), new Vector2(-793.200012F, -170.179993F), new Vector2(-792.320007F, -171.686996F)); + builder.AddCubicBezier(new Vector2(-791.440002F, -173.192993F), new Vector2(-791F, -174.880005F), new Vector2(-791F, -176.746994F)); + builder.AddCubicBezier(new Vector2(-791F, -178.587006F), new Vector2(-791.440002F, -180.253006F), new Vector2(-792.320007F, -181.746994F)); + builder.AddCubicBezier(new Vector2(-793.200012F, -183.240005F), new Vector2(-794.393982F, -184.419998F), new Vector2(-795.900024F, -185.287003F)); + builder.AddCubicBezier(new Vector2(-797.406982F, -186.153F), new Vector2(-799.093994F, -186.587006F), new Vector2(-800.960022F, -186.587006F)); + builder.AddCubicBezier(new Vector2(-802.799988F, -186.587006F), new Vector2(-804.46698F, -186.147003F), new Vector2(-805.960022F, -185.266998F)); + builder.AddCubicBezier(new Vector2(-807.453979F, -184.386993F), new Vector2(-808.640015F, -183.207001F), new Vector2(-809.52002F, -181.727005F)); + builder.AddCubicBezier(new Vector2(-810.400024F, -180.246994F), new Vector2(-810.840027F, -178.587006F), new Vector2(-810.840027F, -176.746994F)); + builder.AddCubicBezier(new Vector2(-810.840027F, -174.880005F), new Vector2(-810.400024F, -173.192993F), new Vector2(-809.52002F, -171.686996F)); + builder.AddCubicBezier(new Vector2(-808.640015F, -170.179993F), new Vector2(-807.453979F, -168.987F), new Vector2(-805.960022F, -168.106995F)); + builder.AddCubicBezier(new Vector2(-804.46698F, -167.227005F), new Vector2(-802.799988F, -166.787003F), new Vector2(-800.960022F, -166.787003F)); + builder.AddCubicBezier(new Vector2(-799.093994F, -166.787003F), new Vector2(-797.406982F, -167.227005F), new Vector2(-795.900024F, -168.106995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1546() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-808.200012F, -191.507004F)); + builder.AddLine(new Vector2(-808.200012F, -194.947006F)); + builder.AddLine(new Vector2(-830.799988F, -194.947006F)); + builder.AddLine(new Vector2(-830.799988F, -191.507004F)); + builder.AddLine(new Vector2(-808.200012F, -191.507004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-817.599976F, -167.186996F)); + builder.AddLine(new Vector2(-817.599976F, -194.147003F)); + builder.AddLine(new Vector2(-821.400024F, -194.147003F)); + builder.AddLine(new Vector2(-821.400024F, -167.186996F)); + builder.AddLine(new Vector2(-817.599976F, -167.186996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1547() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(664.77301F, -276.871002F)); + builder.AddCubicBezier(new Vector2(665.401978F, -277.533997F), new Vector2(665.71698F, -278.325012F), new Vector2(665.71698F, -279.243011F)); + builder.AddCubicBezier(new Vector2(665.71698F, -280.194F), new Vector2(665.401978F, -280.984009F), new Vector2(664.77301F, -281.614014F)); + builder.AddCubicBezier(new Vector2(664.143005F, -282.243011F), new Vector2(663.353027F, -282.558014F), new Vector2(662.401978F, -282.558014F)); + builder.AddCubicBezier(new Vector2(661.414978F, -282.558014F), new Vector2(660.617004F, -282.243011F), new Vector2(660.005005F, -281.614014F)); + builder.AddCubicBezier(new Vector2(659.393005F, -280.984009F), new Vector2(659.086975F, -280.194F), new Vector2(659.086975F, -279.243011F)); + builder.AddCubicBezier(new Vector2(659.086975F, -278.325012F), new Vector2(659.393005F, -277.533997F), new Vector2(660.005005F, -276.871002F)); + builder.AddCubicBezier(new Vector2(660.617004F, -276.208008F), new Vector2(661.414978F, -275.877014F), new Vector2(662.401978F, -275.877014F)); + builder.AddCubicBezier(new Vector2(663.353027F, -275.877014F), new Vector2(664.143005F, -276.208008F), new Vector2(664.77301F, -276.871002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1548() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(641.747009F, -266.238007F)); + builder.AddLine(new Vector2(646.336975F, -276.183014F)); + builder.AddLine(new Vector2(643.736023F, -280.875F)); + builder.AddLine(new Vector2(636.646973F, -266.238007F)); + builder.AddLine(new Vector2(641.747009F, -266.238007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(646.336975F, -276.183014F)); + builder.AddLine(new Vector2(657.658997F, -300.612F)); + builder.AddLine(new Vector2(652.559021F, -300.612F)); + builder.AddLine(new Vector2(644.348022F, -281.487F)); + builder.AddLine(new Vector2(645.97998F, -281.487F)); + builder.AddLine(new Vector2(638.177002F, -300.612F)); + builder.AddLine(new Vector2(633.077026F, -300.612F)); + builder.AddLine(new Vector2(643.583008F, -276.183014F)); + builder.AddLine(new Vector2(646.336975F, -276.183014F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1549() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(621.80603F, -295.154999F)); + builder.AddCubicBezier(new Vector2(622.893982F, -296.243011F), new Vector2(624.286987F, -296.786987F), new Vector2(625.987976F, -296.786987F)); + builder.AddCubicBezier(new Vector2(626.804016F, -296.786987F), new Vector2(627.518005F, -296.666992F), new Vector2(628.130005F, -296.429993F)); + builder.AddCubicBezier(new Vector2(628.742004F, -296.191986F), new Vector2(629.302979F, -295.799988F), new Vector2(629.812988F, -295.256989F)); + builder.AddLine(new Vector2(632.822021F, -298.368011F)); + builder.AddCubicBezier(new Vector2(631.971985F, -299.354004F), new Vector2(631.054016F, -300.058014F), new Vector2(630.067993F, -300.484009F)); + builder.AddCubicBezier(new Vector2(629.080994F, -300.908997F), new Vector2(627.97699F, -301.122009F), new Vector2(626.752991F, -301.122009F)); + builder.AddCubicBezier(new Vector2(624.067017F, -301.122009F), new Vector2(622.01001F, -300.20401F), new Vector2(620.58197F, -298.368011F)); + builder.AddCubicBezier(new Vector2(619.153992F, -296.532013F), new Vector2(618.440002F, -294.06601F), new Vector2(618.440002F, -290.972992F)); + builder.AddLine(new Vector2(620.174011F, -290.157013F)); + builder.AddCubicBezier(new Vector2(620.174011F, -292.401001F), new Vector2(620.71698F, -294.06601F), new Vector2(621.80603F, -295.154999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(620.174011F, -276.386993F)); + builder.AddLine(new Vector2(620.174011F, -300.612F)); + builder.AddLine(new Vector2(615.583984F, -300.612F)); + builder.AddLine(new Vector2(615.583984F, -276.386993F)); + builder.AddLine(new Vector2(620.174011F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1550() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(611.096008F, -296.429993F)); + builder.AddLine(new Vector2(611.096008F, -300.612F)); + builder.AddLine(new Vector2(594.572021F, -300.612F)); + builder.AddLine(new Vector2(594.572021F, -296.429993F)); + builder.AddLine(new Vector2(611.096008F, -296.429993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(605.129028F, -276.386993F)); + builder.AddLine(new Vector2(605.129028F, -310.760986F)); + builder.AddLine(new Vector2(600.539001F, -310.760986F)); + builder.AddLine(new Vector2(600.539001F, -276.386993F)); + builder.AddLine(new Vector2(605.129028F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1551() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(573.763977F, -276.386993F)); + builder.AddLine(new Vector2(573.763977F, -300.612F)); + builder.AddLine(new Vector2(569.174011F, -300.612F)); + builder.AddLine(new Vector2(569.174011F, -276.386993F)); + builder.AddLine(new Vector2(573.763977F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(590.900024F, -276.386993F)); + builder.AddLine(new Vector2(590.900024F, -291.432007F)); + builder.AddCubicBezier(new Vector2(590.900024F, -293.096985F), new Vector2(590.492004F, -294.670013F), new Vector2(589.676025F, -296.148987F)); + builder.AddCubicBezier(new Vector2(588.859985F, -297.627991F), new Vector2(587.745972F, -298.826996F), new Vector2(586.335999F, -299.744995F)); + builder.AddCubicBezier(new Vector2(584.924988F, -300.662994F), new Vector2(583.301025F, -301.122009F), new Vector2(581.465027F, -301.122009F)); + builder.AddCubicBezier(new Vector2(579.629028F, -301.122009F), new Vector2(577.979004F, -300.704987F), new Vector2(576.518005F, -299.872009F)); + builder.AddCubicBezier(new Vector2(575.05603F, -299.037994F), new Vector2(573.916992F, -297.908997F), new Vector2(573.101013F, -296.480988F)); + builder.AddCubicBezier(new Vector2(572.284973F, -295.053009F), new Vector2(571.877014F, -293.42099F), new Vector2(571.877014F, -291.584991F)); + builder.AddLine(new Vector2(573.763977F, -290.514008F)); + builder.AddCubicBezier(new Vector2(573.763977F, -291.738007F), new Vector2(574.036011F, -292.825989F), new Vector2(574.580017F, -293.778015F)); + builder.AddCubicBezier(new Vector2(575.124023F, -294.729004F), new Vector2(575.872009F, -295.477997F), new Vector2(576.823975F, -296.022003F)); + builder.AddCubicBezier(new Vector2(577.775024F, -296.565002F), new Vector2(578.864014F, -296.838013F), new Vector2(580.088013F, -296.838013F)); + builder.AddCubicBezier(new Vector2(581.924011F, -296.838013F), new Vector2(583.409973F, -296.243011F), new Vector2(584.549988F, -295.053009F)); + builder.AddCubicBezier(new Vector2(585.689026F, -293.862F), new Vector2(586.258972F, -292.350006F), new Vector2(586.258972F, -290.514008F)); + builder.AddLine(new Vector2(586.258972F, -276.386993F)); + builder.AddLine(new Vector2(590.900024F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1552() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(558.005005F, -277.278992F)); + builder.AddCubicBezier(new Vector2(559.567993F, -278.145996F), new Vector2(560.791992F, -279.377991F), new Vector2(561.677002F, -280.97699F)); + builder.AddCubicBezier(new Vector2(562.560974F, -282.575012F), new Vector2(563.002991F, -284.427002F), new Vector2(563.002991F, -286.536011F)); + builder.AddLine(new Vector2(563.002991F, -300.612F)); + builder.AddLine(new Vector2(558.413025F, -300.612F)); + builder.AddLine(new Vector2(558.413025F, -286.73999F)); + builder.AddCubicBezier(new Vector2(558.413025F, -284.733002F), new Vector2(557.903015F, -283.161011F), new Vector2(556.882996F, -282.022003F)); + builder.AddCubicBezier(new Vector2(555.862976F, -280.881989F), new Vector2(554.452026F, -280.313995F), new Vector2(552.650024F, -280.313995F)); + builder.AddCubicBezier(new Vector2(551.458984F, -280.313995F), new Vector2(550.422974F, -280.569F), new Vector2(549.539001F, -281.07901F)); + builder.AddCubicBezier(new Vector2(548.653992F, -281.588989F), new Vector2(547.982971F, -282.328003F), new Vector2(547.523987F, -283.296997F)); + builder.AddCubicBezier(new Vector2(547.065002F, -284.265991F), new Vector2(546.835999F, -285.414001F), new Vector2(546.835999F, -286.73999F)); + builder.AddLine(new Vector2(546.835999F, -300.612F)); + builder.AddLine(new Vector2(542.245972F, -300.612F)); + builder.AddLine(new Vector2(542.245972F, -286.536011F)); + builder.AddCubicBezier(new Vector2(542.245972F, -284.427002F), new Vector2(542.687012F, -282.575012F), new Vector2(543.572021F, -280.97699F)); + builder.AddCubicBezier(new Vector2(544.455994F, -279.377991F), new Vector2(545.687988F, -278.145996F), new Vector2(547.268982F, -277.278992F)); + builder.AddCubicBezier(new Vector2(548.849976F, -276.411987F), new Vector2(550.643005F, -275.979004F), new Vector2(552.650024F, -275.979004F)); + builder.AddCubicBezier(new Vector2(554.656006F, -275.979004F), new Vector2(556.440979F, -276.411987F), new Vector2(558.005005F, -277.278992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1553() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(521.030029F, -281.38501F)); + builder.AddCubicBezier(new Vector2(519.838989F, -282.098999F), new Vector2(518.905029F, -283.075012F), new Vector2(518.224976F, -284.316986F)); + builder.AddCubicBezier(new Vector2(517.544983F, -285.558014F), new Vector2(517.205017F, -286.97699F), new Vector2(517.205017F, -288.575989F)); + builder.AddCubicBezier(new Vector2(517.205017F, -290.139008F), new Vector2(517.544983F, -291.533997F), new Vector2(518.224976F, -292.757996F)); + builder.AddCubicBezier(new Vector2(518.905029F, -293.981995F), new Vector2(519.838989F, -294.941986F), new Vector2(521.030029F, -295.639008F)); + builder.AddCubicBezier(new Vector2(522.219971F, -296.334991F), new Vector2(523.562012F, -296.684998F), new Vector2(525.059021F, -296.684998F)); + builder.AddCubicBezier(new Vector2(526.622009F, -296.684998F), new Vector2(527.991028F, -296.334991F), new Vector2(529.164001F, -295.639008F)); + builder.AddCubicBezier(new Vector2(530.336975F, -294.941986F), new Vector2(531.271973F, -293.981995F), new Vector2(531.968994F, -292.757996F)); + builder.AddCubicBezier(new Vector2(532.664978F, -291.533997F), new Vector2(533.015015F, -290.139008F), new Vector2(533.015015F, -288.575989F)); + builder.AddCubicBezier(new Vector2(533.015015F, -286.97699F), new Vector2(532.674988F, -285.558014F), new Vector2(531.994995F, -284.316986F)); + builder.AddCubicBezier(new Vector2(531.314026F, -283.075012F), new Vector2(530.380005F, -282.098999F), new Vector2(529.190002F, -281.38501F)); + builder.AddCubicBezier(new Vector2(527.999023F, -280.67099F), new Vector2(526.622009F, -280.313995F), new Vector2(525.059021F, -280.313995F)); + builder.AddCubicBezier(new Vector2(523.562012F, -280.313995F), new Vector2(522.219971F, -280.67099F), new Vector2(521.030029F, -281.38501F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(531.51001F, -277.559998F)); + builder.AddCubicBezier(new Vector2(533.429993F, -278.682007F), new Vector2(534.953003F, -280.203003F), new Vector2(536.075012F, -282.123993F)); + builder.AddCubicBezier(new Vector2(537.197021F, -284.044006F), new Vector2(537.757996F, -286.196014F), new Vector2(537.757996F, -288.575989F)); + builder.AddCubicBezier(new Vector2(537.757996F, -290.921997F), new Vector2(537.197021F, -293.04599F), new Vector2(536.075012F, -294.950989F)); + builder.AddCubicBezier(new Vector2(534.953003F, -296.855011F), new Vector2(533.429993F, -298.359009F), new Vector2(531.51001F, -299.463989F)); + builder.AddCubicBezier(new Vector2(529.588989F, -300.567993F), new Vector2(527.437988F, -301.122009F), new Vector2(525.059021F, -301.122009F)); + builder.AddCubicBezier(new Vector2(522.713013F, -301.122009F), new Vector2(520.588013F, -300.561005F), new Vector2(518.684021F, -299.438995F)); + builder.AddCubicBezier(new Vector2(516.778992F, -298.316986F), new Vector2(515.267029F, -296.812012F), new Vector2(514.14502F, -294.924988F)); + builder.AddCubicBezier(new Vector2(513.02301F, -293.037994F), new Vector2(512.461975F, -290.921997F), new Vector2(512.461975F, -288.575989F)); + builder.AddCubicBezier(new Vector2(512.461975F, -286.196014F), new Vector2(513.02301F, -284.044006F), new Vector2(514.14502F, -282.123993F)); + builder.AddCubicBezier(new Vector2(515.267029F, -280.203003F), new Vector2(516.778992F, -278.682007F), new Vector2(518.684021F, -277.559998F)); + builder.AddCubicBezier(new Vector2(520.588013F, -276.437988F), new Vector2(522.713013F, -275.877014F), new Vector2(525.059021F, -275.877014F)); + builder.AddCubicBezier(new Vector2(527.437988F, -275.877014F), new Vector2(529.588989F, -276.437988F), new Vector2(531.51001F, -277.559998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1554() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(505.858002F, -276.947998F)); + builder.AddCubicBezier(new Vector2(507.471985F, -277.661987F), new Vector2(508.841003F, -278.664001F), new Vector2(509.963013F, -279.957001F)); + builder.AddLine(new Vector2(506.95401F, -283.016998F)); + builder.AddCubicBezier(new Vector2(506.17099F, -282.131989F), new Vector2(505.246002F, -281.460999F), new Vector2(504.174988F, -281.002014F)); + builder.AddCubicBezier(new Vector2(503.104004F, -280.542999F), new Vector2(501.921997F, -280.313995F), new Vector2(500.630005F, -280.313995F)); + builder.AddCubicBezier(new Vector2(499.100006F, -280.313995F), new Vector2(497.73999F, -280.67099F), new Vector2(496.549988F, -281.38501F)); + builder.AddCubicBezier(new Vector2(495.359009F, -282.098999F), new Vector2(494.424988F, -283.067993F), new Vector2(493.744995F, -284.291992F)); + builder.AddCubicBezier(new Vector2(493.063995F, -285.515991F), new Vector2(492.725006F, -286.925995F), new Vector2(492.725006F, -288.524994F)); + builder.AddCubicBezier(new Vector2(492.725006F, -290.122986F), new Vector2(493.063995F, -291.533997F), new Vector2(493.744995F, -292.757996F)); + builder.AddCubicBezier(new Vector2(494.424988F, -293.981995F), new Vector2(495.359009F, -294.941986F), new Vector2(496.549988F, -295.639008F)); + builder.AddCubicBezier(new Vector2(497.73999F, -296.334991F), new Vector2(499.100006F, -296.684998F), new Vector2(500.630005F, -296.684998F)); + builder.AddCubicBezier(new Vector2(501.886993F, -296.684998F), new Vector2(503.059998F, -296.454987F), new Vector2(504.148987F, -295.996002F)); + builder.AddCubicBezier(new Vector2(505.237F, -295.536987F), new Vector2(506.154999F, -294.865997F), new Vector2(506.903015F, -293.981995F)); + builder.AddLine(new Vector2(509.963013F, -297.041992F)); + builder.AddCubicBezier(new Vector2(508.807007F, -298.368011F), new Vector2(507.429993F, -299.378998F), new Vector2(505.832001F, -300.075989F)); + builder.AddCubicBezier(new Vector2(504.233002F, -300.772003F), new Vector2(502.498993F, -301.122009F), new Vector2(500.630005F, -301.122009F)); + builder.AddCubicBezier(new Vector2(498.25F, -301.122009F), new Vector2(496.098999F, -300.567993F), new Vector2(494.178986F, -299.463989F)); + builder.AddCubicBezier(new Vector2(492.257996F, -298.359009F), new Vector2(490.743988F, -296.855011F), new Vector2(489.640015F, -294.950989F)); + builder.AddCubicBezier(new Vector2(488.535004F, -293.04599F), new Vector2(487.981995F, -290.903992F), new Vector2(487.981995F, -288.524994F)); + builder.AddCubicBezier(new Vector2(487.981995F, -286.178986F), new Vector2(488.535004F, -284.044006F), new Vector2(489.640015F, -282.123993F)); + builder.AddCubicBezier(new Vector2(490.743988F, -280.203003F), new Vector2(492.257996F, -278.682007F), new Vector2(494.178986F, -277.559998F)); + builder.AddCubicBezier(new Vector2(496.098999F, -276.437988F), new Vector2(498.25F, -275.877014F), new Vector2(500.630005F, -275.877014F)); + builder.AddCubicBezier(new Vector2(502.498993F, -275.877014F), new Vector2(504.243011F, -276.234009F), new Vector2(505.858002F, -276.947998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1555() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(471.433014F, -277.865997F)); + builder.AddCubicBezier(new Vector2(473.046997F, -279.191986F), new Vector2(473.855011F, -280.993988F), new Vector2(473.855011F, -283.272003F)); + builder.AddCubicBezier(new Vector2(473.855011F, -284.768005F), new Vector2(473.540985F, -285.975006F), new Vector2(472.911987F, -286.893005F)); + builder.AddCubicBezier(new Vector2(472.282013F, -287.811005F), new Vector2(471.475006F, -288.541992F), new Vector2(470.489014F, -289.085999F)); + builder.AddCubicBezier(new Vector2(469.502014F, -289.628998F), new Vector2(468.466003F, -290.062012F), new Vector2(467.377991F, -290.385986F)); + builder.AddCubicBezier(new Vector2(466.289001F, -290.709015F), new Vector2(465.243988F, -291.023987F), new Vector2(464.242004F, -291.329987F)); + builder.AddCubicBezier(new Vector2(463.239014F, -291.635986F), new Vector2(462.431F, -292.01001F), new Vector2(461.819F, -292.451996F)); + builder.AddCubicBezier(new Vector2(461.207001F, -292.893005F), new Vector2(460.901001F, -293.52301F), new Vector2(460.901001F, -294.338989F)); + builder.AddCubicBezier(new Vector2(460.901001F, -295.121002F), new Vector2(461.25F, -295.748993F), new Vector2(461.946991F, -296.226013F)); + builder.AddCubicBezier(new Vector2(462.643005F, -296.701996F), new Vector2(463.654999F, -296.940002F), new Vector2(464.980988F, -296.940002F)); + builder.AddCubicBezier(new Vector2(466.238007F, -296.940002F), new Vector2(467.359985F, -296.701996F), new Vector2(468.346985F, -296.226013F)); + builder.AddCubicBezier(new Vector2(469.333008F, -295.748993F), new Vector2(470.183014F, -295.070007F), new Vector2(470.897003F, -294.186005F)); + builder.AddLine(new Vector2(473.855011F, -297.144012F)); + builder.AddCubicBezier(new Vector2(472.903015F, -298.470001F), new Vector2(471.687988F, -299.463989F), new Vector2(470.209015F, -300.127014F)); + builder.AddCubicBezier(new Vector2(468.730011F, -300.790009F), new Vector2(467.037994F, -301.122009F), new Vector2(465.134003F, -301.122009F)); + builder.AddCubicBezier(new Vector2(463.330994F, -301.122009F), new Vector2(461.785004F, -300.833008F), new Vector2(460.493011F, -300.255005F)); + builder.AddCubicBezier(new Vector2(459.200012F, -299.675995F), new Vector2(458.205994F, -298.85199F), new Vector2(457.51001F, -297.781006F)); + builder.AddCubicBezier(new Vector2(456.812988F, -296.709991F), new Vector2(456.463989F, -295.442993F), new Vector2(456.463989F, -293.981995F)); + builder.AddCubicBezier(new Vector2(456.463989F, -292.519989F), new Vector2(456.778015F, -291.337006F), new Vector2(457.40799F, -290.437012F)); + builder.AddCubicBezier(new Vector2(458.036987F, -289.536011F), new Vector2(458.842987F, -288.830994F), new Vector2(459.829987F, -288.321014F)); + builder.AddCubicBezier(new Vector2(460.81601F, -287.811005F), new Vector2(461.862F, -287.403015F), new Vector2(462.96701F, -287.096985F)); + builder.AddCubicBezier(new Vector2(464.071014F, -286.790985F), new Vector2(465.115997F, -286.476013F), new Vector2(466.102997F, -286.153015F)); + builder.AddCubicBezier(new Vector2(467.088989F, -285.82901F), new Vector2(467.895996F, -285.42099F), new Vector2(468.526001F, -284.928986F)); + builder.AddCubicBezier(new Vector2(469.154999F, -284.436005F), new Vector2(469.468994F, -283.747986F), new Vector2(469.468994F, -282.864014F)); + builder.AddCubicBezier(new Vector2(469.468994F, -281.979004F), new Vector2(469.078003F, -281.290009F), new Vector2(468.29599F, -280.798004F)); + builder.AddCubicBezier(new Vector2(467.513F, -280.304993F), new Vector2(466.408997F, -280.05899F), new Vector2(464.980988F, -280.05899F)); + builder.AddCubicBezier(new Vector2(463.553009F, -280.05899F), new Vector2(462.26001F, -280.321014F), new Vector2(461.105011F, -280.848999F)); + builder.AddCubicBezier(new Vector2(459.949005F, -281.376007F), new Vector2(458.928986F, -282.183014F), new Vector2(458.045013F, -283.272003F)); + builder.AddLine(new Vector2(455.087006F, -280.313995F)); + builder.AddCubicBezier(new Vector2(455.834015F, -279.395996F), new Vector2(456.710999F, -278.605011F), new Vector2(457.713989F, -277.941986F)); + builder.AddCubicBezier(new Vector2(458.716003F, -277.278992F), new Vector2(459.829987F, -276.769012F), new Vector2(461.053986F, -276.411987F)); + builder.AddCubicBezier(new Vector2(462.278015F, -276.054993F), new Vector2(463.570007F, -275.877014F), new Vector2(464.929993F, -275.877014F)); + builder.AddCubicBezier(new Vector2(467.649994F, -275.877014F), new Vector2(469.817993F, -276.540009F), new Vector2(471.433014F, -277.865997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1556() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(450.242004F, -306.298004F)); + builder.AddCubicBezier(new Vector2(450.785004F, -306.859009F), new Vector2(451.058014F, -307.565002F), new Vector2(451.058014F, -308.415009F)); + builder.AddCubicBezier(new Vector2(451.058014F, -309.230988F), new Vector2(450.785004F, -309.919006F), new Vector2(450.242004F, -310.480011F)); + builder.AddCubicBezier(new Vector2(449.697998F, -311.040985F), new Vector2(449F, -311.321991F), new Vector2(448.151001F, -311.321991F)); + builder.AddCubicBezier(new Vector2(447.300995F, -311.321991F), new Vector2(446.602997F, -311.040985F), new Vector2(446.059998F, -310.480011F)); + builder.AddCubicBezier(new Vector2(445.515991F, -309.919006F), new Vector2(445.243988F, -309.230988F), new Vector2(445.243988F, -308.415009F)); + builder.AddCubicBezier(new Vector2(445.243988F, -307.565002F), new Vector2(445.515991F, -306.859009F), new Vector2(446.059998F, -306.298004F)); + builder.AddCubicBezier(new Vector2(446.602997F, -305.737F), new Vector2(447.300995F, -305.457001F), new Vector2(448.151001F, -305.457001F)); + builder.AddCubicBezier(new Vector2(449F, -305.457001F), new Vector2(449.697998F, -305.737F), new Vector2(450.242004F, -306.298004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(450.446014F, -276.386993F)); + builder.AddLine(new Vector2(450.446014F, -300.612F)); + builder.AddLine(new Vector2(445.804993F, -300.612F)); + builder.AddLine(new Vector2(445.804993F, -276.386993F)); + builder.AddLine(new Vector2(450.446014F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1557() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(422.446991F, -276.386993F)); + builder.AddLine(new Vector2(422.446991F, -312.800995F)); + builder.AddLine(new Vector2(417.856995F, -312.800995F)); + builder.AddLine(new Vector2(417.856995F, -276.386993F)); + builder.AddLine(new Vector2(422.446991F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(439.583008F, -276.386993F)); + builder.AddLine(new Vector2(439.583008F, -291.432007F)); + builder.AddCubicBezier(new Vector2(439.583008F, -293.335999F), new Vector2(439.174988F, -295.019012F), new Vector2(438.359009F, -296.480988F)); + builder.AddCubicBezier(new Vector2(437.542999F, -297.941986F), new Vector2(436.428009F, -299.082001F), new Vector2(435.018005F, -299.89801F)); + builder.AddCubicBezier(new Vector2(433.606995F, -300.713989F), new Vector2(431.984009F, -301.122009F), new Vector2(430.14801F, -301.122009F)); + builder.AddCubicBezier(new Vector2(428.312012F, -301.122009F), new Vector2(426.661987F, -300.704987F), new Vector2(425.200989F, -299.872009F)); + builder.AddCubicBezier(new Vector2(423.739014F, -299.037994F), new Vector2(422.600006F, -297.908997F), new Vector2(421.783997F, -296.480988F)); + builder.AddCubicBezier(new Vector2(420.967987F, -295.053009F), new Vector2(420.559998F, -293.42099F), new Vector2(420.559998F, -291.584991F)); + builder.AddLine(new Vector2(422.446991F, -290.514008F)); + builder.AddCubicBezier(new Vector2(422.446991F, -291.738007F), new Vector2(422.718994F, -292.825989F), new Vector2(423.263F, -293.778015F)); + builder.AddCubicBezier(new Vector2(423.806F, -294.729004F), new Vector2(424.554993F, -295.477997F), new Vector2(425.506989F, -296.022003F)); + builder.AddCubicBezier(new Vector2(426.458008F, -296.565002F), new Vector2(427.546997F, -296.838013F), new Vector2(428.770996F, -296.838013F)); + builder.AddCubicBezier(new Vector2(430.606995F, -296.838013F), new Vector2(432.092987F, -296.243011F), new Vector2(433.233002F, -295.053009F)); + builder.AddCubicBezier(new Vector2(434.372009F, -293.862F), new Vector2(434.941986F, -292.350006F), new Vector2(434.941986F, -290.514008F)); + builder.AddLine(new Vector2(434.941986F, -276.386993F)); + builder.AddLine(new Vector2(439.583008F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1558() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(413.368988F, -296.429993F)); + builder.AddLine(new Vector2(413.368988F, -300.612F)); + builder.AddLine(new Vector2(396.845001F, -300.612F)); + builder.AddLine(new Vector2(396.845001F, -296.429993F)); + builder.AddLine(new Vector2(413.368988F, -296.429993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(407.402008F, -276.386993F)); + builder.AddLine(new Vector2(407.402008F, -310.760986F)); + builder.AddLine(new Vector2(402.812012F, -310.760986F)); + builder.AddLine(new Vector2(402.812012F, -276.386993F)); + builder.AddLine(new Vector2(407.402008F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1559() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(383.941986F, -296.429993F)); + builder.AddLine(new Vector2(383.941986F, -300.612F)); + builder.AddLine(new Vector2(365.68399F, -300.612F)); + builder.AddLine(new Vector2(365.68399F, -296.429993F)); + builder.AddLine(new Vector2(383.941986F, -296.429993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(376.240997F, -276.386993F)); + builder.AddLine(new Vector2(376.240997F, -304.233002F)); + builder.AddCubicBezier(new Vector2(376.240997F, -305.729004F), new Vector2(376.640991F, -306.891998F), new Vector2(377.440002F, -307.726013F)); + builder.AddCubicBezier(new Vector2(378.238007F, -308.55899F), new Vector2(379.368988F, -308.976013F), new Vector2(380.830994F, -308.976013F)); + builder.AddCubicBezier(new Vector2(381.613007F, -308.976013F), new Vector2(382.276001F, -308.855988F), new Vector2(382.820007F, -308.618988F)); + builder.AddCubicBezier(new Vector2(383.363007F, -308.381012F), new Vector2(383.856995F, -308.023987F), new Vector2(384.299011F, -307.548004F)); + builder.AddLine(new Vector2(387.308014F, -310.506012F)); + builder.AddCubicBezier(new Vector2(386.458008F, -311.424011F), new Vector2(385.52301F, -312.119995F), new Vector2(384.502991F, -312.596985F)); + builder.AddCubicBezier(new Vector2(383.483002F, -313.072998F), new Vector2(382.276001F, -313.311005F), new Vector2(380.881989F, -313.311005F)); + builder.AddCubicBezier(new Vector2(379.04599F, -313.311005F), new Vector2(377.431F, -312.920013F), new Vector2(376.036987F, -312.138F)); + builder.AddCubicBezier(new Vector2(374.641998F, -311.355011F), new Vector2(373.554993F, -310.283997F), new Vector2(372.77301F, -308.924988F)); + builder.AddCubicBezier(new Vector2(371.98999F, -307.565002F), new Vector2(371.600006F, -306F), new Vector2(371.600006F, -304.233002F)); + builder.AddLine(new Vector2(371.600006F, -276.386993F)); + builder.AddLine(new Vector2(376.240997F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1560() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(347.119995F, -281.38501F)); + builder.AddCubicBezier(new Vector2(345.928986F, -282.098999F), new Vector2(344.994995F, -283.075012F), new Vector2(344.315002F, -284.316986F)); + builder.AddCubicBezier(new Vector2(343.634003F, -285.558014F), new Vector2(343.295013F, -286.97699F), new Vector2(343.295013F, -288.575989F)); + builder.AddCubicBezier(new Vector2(343.295013F, -290.139008F), new Vector2(343.634003F, -291.533997F), new Vector2(344.315002F, -292.757996F)); + builder.AddCubicBezier(new Vector2(344.994995F, -293.981995F), new Vector2(345.928986F, -294.941986F), new Vector2(347.119995F, -295.639008F)); + builder.AddCubicBezier(new Vector2(348.309998F, -296.334991F), new Vector2(349.652008F, -296.684998F), new Vector2(351.148987F, -296.684998F)); + builder.AddCubicBezier(new Vector2(352.712006F, -296.684998F), new Vector2(354.080994F, -296.334991F), new Vector2(355.253998F, -295.639008F)); + builder.AddCubicBezier(new Vector2(356.427002F, -294.941986F), new Vector2(357.362F, -293.981995F), new Vector2(358.05899F, -292.757996F)); + builder.AddCubicBezier(new Vector2(358.755005F, -291.533997F), new Vector2(359.105011F, -290.139008F), new Vector2(359.105011F, -288.575989F)); + builder.AddCubicBezier(new Vector2(359.105011F, -286.97699F), new Vector2(358.765015F, -285.558014F), new Vector2(358.084991F, -284.316986F)); + builder.AddCubicBezier(new Vector2(357.403992F, -283.075012F), new Vector2(356.470001F, -282.098999F), new Vector2(355.279999F, -281.38501F)); + builder.AddCubicBezier(new Vector2(354.088989F, -280.67099F), new Vector2(352.712006F, -280.313995F), new Vector2(351.148987F, -280.313995F)); + builder.AddCubicBezier(new Vector2(349.652008F, -280.313995F), new Vector2(348.309998F, -280.67099F), new Vector2(347.119995F, -281.38501F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(357.600006F, -277.559998F)); + builder.AddCubicBezier(new Vector2(359.519989F, -278.682007F), new Vector2(361.042999F, -280.203003F), new Vector2(362.165009F, -282.123993F)); + builder.AddCubicBezier(new Vector2(363.286987F, -284.044006F), new Vector2(363.847992F, -286.196014F), new Vector2(363.847992F, -288.575989F)); + builder.AddCubicBezier(new Vector2(363.847992F, -290.921997F), new Vector2(363.286987F, -293.04599F), new Vector2(362.165009F, -294.950989F)); + builder.AddCubicBezier(new Vector2(361.042999F, -296.855011F), new Vector2(359.519989F, -298.359009F), new Vector2(357.600006F, -299.463989F)); + builder.AddCubicBezier(new Vector2(355.678986F, -300.567993F), new Vector2(353.528015F, -301.122009F), new Vector2(351.148987F, -301.122009F)); + builder.AddCubicBezier(new Vector2(348.803009F, -301.122009F), new Vector2(346.678009F, -300.561005F), new Vector2(344.773987F, -299.438995F)); + builder.AddCubicBezier(new Vector2(342.868988F, -298.316986F), new Vector2(341.356995F, -296.812012F), new Vector2(340.234985F, -294.924988F)); + builder.AddCubicBezier(new Vector2(339.113007F, -293.037994F), new Vector2(338.552002F, -290.921997F), new Vector2(338.552002F, -288.575989F)); + builder.AddCubicBezier(new Vector2(338.552002F, -286.196014F), new Vector2(339.113007F, -284.044006F), new Vector2(340.234985F, -282.123993F)); + builder.AddCubicBezier(new Vector2(341.356995F, -280.203003F), new Vector2(342.868988F, -278.682007F), new Vector2(344.773987F, -277.559998F)); + builder.AddCubicBezier(new Vector2(346.678009F, -276.437988F), new Vector2(348.803009F, -275.877014F), new Vector2(351.148987F, -275.877014F)); + builder.AddCubicBezier(new Vector2(353.528015F, -275.877014F), new Vector2(355.678986F, -276.437988F), new Vector2(357.600006F, -277.559998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1561() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(306.217987F, -276.386993F)); + builder.AddLine(new Vector2(306.217987F, -300.612F)); + builder.AddLine(new Vector2(301.627991F, -300.612F)); + builder.AddLine(new Vector2(301.627991F, -276.386993F)); + builder.AddLine(new Vector2(306.217987F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(323.354004F, -276.386993F)); + builder.AddLine(new Vector2(323.354004F, -291.432007F)); + builder.AddCubicBezier(new Vector2(323.354004F, -293.096985F), new Vector2(322.946014F, -294.670013F), new Vector2(322.130005F, -296.148987F)); + builder.AddCubicBezier(new Vector2(321.313995F, -297.627991F), new Vector2(320.199005F, -298.826996F), new Vector2(318.789001F, -299.744995F)); + builder.AddCubicBezier(new Vector2(317.377991F, -300.662994F), new Vector2(315.755005F, -301.122009F), new Vector2(313.919006F, -301.122009F)); + builder.AddCubicBezier(new Vector2(312.083008F, -301.122009F), new Vector2(310.433014F, -300.704987F), new Vector2(308.971985F, -299.872009F)); + builder.AddCubicBezier(new Vector2(307.51001F, -299.037994F), new Vector2(306.371002F, -297.908997F), new Vector2(305.554993F, -296.480988F)); + builder.AddCubicBezier(new Vector2(304.739014F, -295.053009F), new Vector2(304.330994F, -293.42099F), new Vector2(304.330994F, -291.584991F)); + builder.AddLine(new Vector2(306.217987F, -290.514008F)); + builder.AddCubicBezier(new Vector2(306.217987F, -291.738007F), new Vector2(306.48999F, -292.825989F), new Vector2(307.033997F, -293.778015F)); + builder.AddCubicBezier(new Vector2(307.576996F, -294.729004F), new Vector2(308.325989F, -295.477997F), new Vector2(309.278015F, -296.022003F)); + builder.AddCubicBezier(new Vector2(310.229004F, -296.565002F), new Vector2(311.317993F, -296.838013F), new Vector2(312.541992F, -296.838013F)); + builder.AddCubicBezier(new Vector2(314.377991F, -296.838013F), new Vector2(315.864014F, -296.243011F), new Vector2(317.003998F, -295.053009F)); + builder.AddCubicBezier(new Vector2(318.143005F, -293.862F), new Vector2(318.713013F, -292.350006F), new Vector2(318.713013F, -290.514008F)); + builder.AddLine(new Vector2(318.713013F, -276.386993F)); + builder.AddLine(new Vector2(323.354004F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1562() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(279.799988F, -281.38501F)); + builder.AddCubicBezier(new Vector2(278.609009F, -282.098999F), new Vector2(277.674988F, -283.075012F), new Vector2(276.994995F, -284.316986F)); + builder.AddCubicBezier(new Vector2(276.313995F, -285.558014F), new Vector2(275.975006F, -286.97699F), new Vector2(275.975006F, -288.575989F)); + builder.AddCubicBezier(new Vector2(275.975006F, -290.139008F), new Vector2(276.313995F, -291.533997F), new Vector2(276.994995F, -292.757996F)); + builder.AddCubicBezier(new Vector2(277.674988F, -293.981995F), new Vector2(278.609009F, -294.941986F), new Vector2(279.799988F, -295.639008F)); + builder.AddCubicBezier(new Vector2(280.98999F, -296.334991F), new Vector2(282.332001F, -296.684998F), new Vector2(283.82901F, -296.684998F)); + builder.AddCubicBezier(new Vector2(285.391998F, -296.684998F), new Vector2(286.761993F, -296.334991F), new Vector2(287.934998F, -295.639008F)); + builder.AddCubicBezier(new Vector2(289.108002F, -294.941986F), new Vector2(290.042999F, -293.981995F), new Vector2(290.73999F, -292.757996F)); + builder.AddCubicBezier(new Vector2(291.436005F, -291.533997F), new Vector2(291.785004F, -290.139008F), new Vector2(291.785004F, -288.575989F)); + builder.AddCubicBezier(new Vector2(291.785004F, -286.97699F), new Vector2(291.445007F, -285.558014F), new Vector2(290.765015F, -284.316986F)); + builder.AddCubicBezier(new Vector2(290.084015F, -283.075012F), new Vector2(289.149994F, -282.098999F), new Vector2(287.959991F, -281.38501F)); + builder.AddCubicBezier(new Vector2(286.769012F, -280.67099F), new Vector2(285.391998F, -280.313995F), new Vector2(283.82901F, -280.313995F)); + builder.AddCubicBezier(new Vector2(282.332001F, -280.313995F), new Vector2(280.98999F, -280.67099F), new Vector2(279.799988F, -281.38501F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(290.281006F, -277.559998F)); + builder.AddCubicBezier(new Vector2(292.200989F, -278.682007F), new Vector2(293.722992F, -280.203003F), new Vector2(294.845001F, -282.123993F)); + builder.AddCubicBezier(new Vector2(295.96701F, -284.044006F), new Vector2(296.528015F, -286.196014F), new Vector2(296.528015F, -288.575989F)); + builder.AddCubicBezier(new Vector2(296.528015F, -290.921997F), new Vector2(295.96701F, -293.04599F), new Vector2(294.845001F, -294.950989F)); + builder.AddCubicBezier(new Vector2(293.722992F, -296.855011F), new Vector2(292.200989F, -298.359009F), new Vector2(290.281006F, -299.463989F)); + builder.AddCubicBezier(new Vector2(288.359985F, -300.567993F), new Vector2(286.208008F, -301.122009F), new Vector2(283.82901F, -301.122009F)); + builder.AddCubicBezier(new Vector2(281.483002F, -301.122009F), new Vector2(279.358002F, -300.561005F), new Vector2(277.45401F, -299.438995F)); + builder.AddCubicBezier(new Vector2(275.549011F, -298.316986F), new Vector2(274.036987F, -296.812012F), new Vector2(272.915009F, -294.924988F)); + builder.AddCubicBezier(new Vector2(271.792999F, -293.037994F), new Vector2(271.231995F, -290.921997F), new Vector2(271.231995F, -288.575989F)); + builder.AddCubicBezier(new Vector2(271.231995F, -286.196014F), new Vector2(271.792999F, -284.044006F), new Vector2(272.915009F, -282.123993F)); + builder.AddCubicBezier(new Vector2(274.036987F, -280.203003F), new Vector2(275.549011F, -278.682007F), new Vector2(277.45401F, -277.559998F)); + builder.AddCubicBezier(new Vector2(279.358002F, -276.437988F), new Vector2(281.483002F, -275.877014F), new Vector2(283.82901F, -275.877014F)); + builder.AddCubicBezier(new Vector2(286.208008F, -275.877014F), new Vector2(288.359985F, -276.437988F), new Vector2(290.281006F, -277.559998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1563() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(265.825989F, -306.298004F)); + builder.AddCubicBezier(new Vector2(266.368988F, -306.859009F), new Vector2(266.641998F, -307.565002F), new Vector2(266.641998F, -308.415009F)); + builder.AddCubicBezier(new Vector2(266.641998F, -309.230988F), new Vector2(266.368988F, -309.919006F), new Vector2(265.825989F, -310.480011F)); + builder.AddCubicBezier(new Vector2(265.282013F, -311.040985F), new Vector2(264.584015F, -311.321991F), new Vector2(263.734985F, -311.321991F)); + builder.AddCubicBezier(new Vector2(262.88501F, -311.321991F), new Vector2(262.187012F, -311.040985F), new Vector2(261.644012F, -310.480011F)); + builder.AddCubicBezier(new Vector2(261.100006F, -309.919006F), new Vector2(260.828003F, -309.230988F), new Vector2(260.828003F, -308.415009F)); + builder.AddCubicBezier(new Vector2(260.828003F, -307.565002F), new Vector2(261.100006F, -306.859009F), new Vector2(261.644012F, -306.298004F)); + builder.AddCubicBezier(new Vector2(262.187012F, -305.737F), new Vector2(262.88501F, -305.457001F), new Vector2(263.734985F, -305.457001F)); + builder.AddCubicBezier(new Vector2(264.584015F, -305.457001F), new Vector2(265.282013F, -305.737F), new Vector2(265.825989F, -306.298004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(266.029999F, -276.386993F)); + builder.AddLine(new Vector2(266.029999F, -300.612F)); + builder.AddLine(new Vector2(261.389008F, -300.612F)); + builder.AddLine(new Vector2(261.389008F, -276.386993F)); + builder.AddLine(new Vector2(266.029999F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1564() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(256.901001F, -296.429993F)); + builder.AddLine(new Vector2(256.901001F, -300.612F)); + builder.AddLine(new Vector2(240.376999F, -300.612F)); + builder.AddLine(new Vector2(240.376999F, -296.429993F)); + builder.AddLine(new Vector2(256.901001F, -296.429993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(250.934006F, -276.386993F)); + builder.AddLine(new Vector2(250.934006F, -310.760986F)); + builder.AddLine(new Vector2(246.343994F, -310.760986F)); + builder.AddLine(new Vector2(246.343994F, -276.386993F)); + builder.AddLine(new Vector2(250.934006F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1565() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(236.042007F, -276.386993F)); + builder.AddLine(new Vector2(236.042007F, -300.612F)); + builder.AddLine(new Vector2(231.401001F, -300.612F)); + builder.AddLine(new Vector2(231.401001F, -294.696014F)); + builder.AddLine(new Vector2(232.268005F, -288.830994F)); + builder.AddLine(new Vector2(231.401001F, -282.915009F)); + builder.AddLine(new Vector2(231.401001F, -276.386993F)); + builder.AddLine(new Vector2(236.042007F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(220.028F, -281.28299F)); + builder.AddCubicBezier(new Vector2(218.837006F, -281.997009F), new Vector2(217.910995F, -282.972992F), new Vector2(217.248001F, -284.214996F)); + builder.AddCubicBezier(new Vector2(216.585007F, -285.455994F), new Vector2(216.253998F, -286.893005F), new Vector2(216.253998F, -288.524994F)); + builder.AddCubicBezier(new Vector2(216.253998F, -290.122986F), new Vector2(216.585007F, -291.540985F), new Vector2(217.248001F, -292.78299F)); + builder.AddCubicBezier(new Vector2(217.910995F, -294.023987F), new Vector2(218.828995F, -295.002014F), new Vector2(220.001999F, -295.716003F)); + builder.AddCubicBezier(new Vector2(221.175003F, -296.429993F), new Vector2(222.526993F, -296.786987F), new Vector2(224.057007F, -296.786987F)); + builder.AddCubicBezier(new Vector2(225.587006F, -296.786987F), new Vector2(226.919998F, -296.437012F), new Vector2(228.059998F, -295.740997F)); + builder.AddCubicBezier(new Vector2(229.199005F, -295.044006F), new Vector2(230.091995F, -294.06601F), new Vector2(230.738007F, -292.80899F)); + builder.AddCubicBezier(new Vector2(231.382996F, -291.550995F), new Vector2(231.707001F, -290.105988F), new Vector2(231.707001F, -288.473999F)); + builder.AddCubicBezier(new Vector2(231.707001F, -286.05899F), new Vector2(231.009995F, -284.07901F), new Vector2(229.615997F, -282.532013F)); + builder.AddCubicBezier(new Vector2(228.220993F, -280.984009F), new Vector2(226.384995F, -280.212006F), new Vector2(224.108002F, -280.212006F)); + builder.AddCubicBezier(new Vector2(222.578003F, -280.212006F), new Vector2(221.218002F, -280.569F), new Vector2(220.028F, -281.28299F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(228.289993F, -277.023987F)); + builder.AddCubicBezier(new Vector2(229.751007F, -277.789001F), new Vector2(230.916F, -278.85199F), new Vector2(231.783005F, -280.212006F)); + builder.AddCubicBezier(new Vector2(232.649994F, -281.571014F), new Vector2(233.134995F, -283.118988F), new Vector2(233.237F, -284.852997F)); + builder.AddLine(new Vector2(233.237F, -292.145996F)); + builder.AddCubicBezier(new Vector2(233.134995F, -293.912994F), new Vector2(232.641998F, -295.467987F), new Vector2(231.757996F, -296.812012F)); + builder.AddCubicBezier(new Vector2(230.873001F, -298.154999F), new Vector2(229.709F, -299.209015F), new Vector2(228.264008F, -299.973999F)); + builder.AddCubicBezier(new Vector2(226.817993F, -300.739014F), new Vector2(225.179001F, -301.122009F), new Vector2(223.343002F, -301.122009F)); + builder.AddCubicBezier(new Vector2(221.098999F, -301.122009F), new Vector2(219.084F, -300.561005F), new Vector2(217.298996F, -299.438995F)); + builder.AddCubicBezier(new Vector2(215.514008F, -298.316986F), new Vector2(214.102997F, -296.803986F), new Vector2(213.065994F, -294.899994F)); + builder.AddCubicBezier(new Vector2(212.028F, -292.994995F), new Vector2(211.511002F, -290.852997F), new Vector2(211.511002F, -288.473999F)); + builder.AddCubicBezier(new Vector2(211.511002F, -286.093994F), new Vector2(212.028F, -283.951996F), new Vector2(213.065994F, -282.048004F)); + builder.AddCubicBezier(new Vector2(214.102997F, -280.143005F), new Vector2(215.514008F, -278.638F), new Vector2(217.298996F, -277.533997F)); + builder.AddCubicBezier(new Vector2(219.084F, -276.428986F), new Vector2(221.098999F, -275.877014F), new Vector2(223.343002F, -275.877014F)); + builder.AddCubicBezier(new Vector2(225.179001F, -275.877014F), new Vector2(226.828003F, -276.259003F), new Vector2(228.289993F, -277.023987F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1566() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(201.871994F, -277.278992F)); + builder.AddCubicBezier(new Vector2(203.434998F, -278.145996F), new Vector2(204.658997F, -279.377991F), new Vector2(205.544006F, -280.97699F)); + builder.AddCubicBezier(new Vector2(206.427994F, -282.575012F), new Vector2(206.869995F, -284.427002F), new Vector2(206.869995F, -286.536011F)); + builder.AddLine(new Vector2(206.869995F, -300.612F)); + builder.AddLine(new Vector2(202.279999F, -300.612F)); + builder.AddLine(new Vector2(202.279999F, -286.73999F)); + builder.AddCubicBezier(new Vector2(202.279999F, -284.733002F), new Vector2(201.770004F, -283.161011F), new Vector2(200.75F, -282.022003F)); + builder.AddCubicBezier(new Vector2(199.729996F, -280.881989F), new Vector2(198.319F, -280.313995F), new Vector2(196.516998F, -280.313995F)); + builder.AddCubicBezier(new Vector2(195.326004F, -280.313995F), new Vector2(194.289993F, -280.569F), new Vector2(193.406006F, -281.07901F)); + builder.AddCubicBezier(new Vector2(192.520996F, -281.588989F), new Vector2(191.850998F, -282.328003F), new Vector2(191.391998F, -283.296997F)); + builder.AddCubicBezier(new Vector2(190.932999F, -284.265991F), new Vector2(190.703003F, -285.414001F), new Vector2(190.703003F, -286.73999F)); + builder.AddLine(new Vector2(190.703003F, -300.612F)); + builder.AddLine(new Vector2(186.113007F, -300.612F)); + builder.AddLine(new Vector2(186.113007F, -286.536011F)); + builder.AddCubicBezier(new Vector2(186.113007F, -284.427002F), new Vector2(186.554001F, -282.575012F), new Vector2(187.438995F, -280.97699F)); + builder.AddCubicBezier(new Vector2(188.322998F, -279.377991F), new Vector2(189.556F, -278.145996F), new Vector2(191.136993F, -277.278992F)); + builder.AddCubicBezier(new Vector2(192.718002F, -276.411987F), new Vector2(194.509995F, -275.979004F), new Vector2(196.516998F, -275.979004F)); + builder.AddCubicBezier(new Vector2(198.522995F, -275.979004F), new Vector2(200.307999F, -276.411987F), new Vector2(201.871994F, -277.278992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1567() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(182.237F, -296.429993F)); + builder.AddLine(new Vector2(182.237F, -300.612F)); + builder.AddLine(new Vector2(165.712997F, -300.612F)); + builder.AddLine(new Vector2(165.712997F, -296.429993F)); + builder.AddLine(new Vector2(182.237F, -296.429993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(176.270004F, -276.386993F)); + builder.AddLine(new Vector2(176.270004F, -310.760986F)); + builder.AddLine(new Vector2(171.679993F, -310.760986F)); + builder.AddLine(new Vector2(171.679993F, -276.386993F)); + builder.AddLine(new Vector2(176.270004F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1568() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(160.970001F, -306.298004F)); + builder.AddCubicBezier(new Vector2(161.513F, -306.859009F), new Vector2(161.785995F, -307.565002F), new Vector2(161.785995F, -308.415009F)); + builder.AddCubicBezier(new Vector2(161.785995F, -309.230988F), new Vector2(161.513F, -309.919006F), new Vector2(160.970001F, -310.480011F)); + builder.AddCubicBezier(new Vector2(160.425995F, -311.040985F), new Vector2(159.727997F, -311.321991F), new Vector2(158.878998F, -311.321991F)); + builder.AddCubicBezier(new Vector2(158.029007F, -311.321991F), new Vector2(157.330994F, -311.040985F), new Vector2(156.787994F, -310.480011F)); + builder.AddCubicBezier(new Vector2(156.244003F, -309.919006F), new Vector2(155.972F, -309.230988F), new Vector2(155.972F, -308.415009F)); + builder.AddCubicBezier(new Vector2(155.972F, -307.565002F), new Vector2(156.244003F, -306.859009F), new Vector2(156.787994F, -306.298004F)); + builder.AddCubicBezier(new Vector2(157.330994F, -305.737F), new Vector2(158.029007F, -305.457001F), new Vector2(158.878998F, -305.457001F)); + builder.AddCubicBezier(new Vector2(159.727997F, -305.457001F), new Vector2(160.425995F, -305.737F), new Vector2(160.970001F, -306.298004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(161.173996F, -276.386993F)); + builder.AddLine(new Vector2(161.173996F, -300.612F)); + builder.AddLine(new Vector2(156.533005F, -300.612F)); + builder.AddLine(new Vector2(156.533005F, -276.386993F)); + builder.AddLine(new Vector2(161.173996F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1569() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(148.959F, -277.865997F)); + builder.AddCubicBezier(new Vector2(150.572998F, -279.191986F), new Vector2(151.382004F, -280.993988F), new Vector2(151.382004F, -283.272003F)); + builder.AddCubicBezier(new Vector2(151.382004F, -284.768005F), new Vector2(151.067001F, -285.975006F), new Vector2(150.438004F, -286.893005F)); + builder.AddCubicBezier(new Vector2(149.807999F, -287.811005F), new Vector2(149.001999F, -288.541992F), new Vector2(148.016006F, -289.085999F)); + builder.AddCubicBezier(new Vector2(147.029007F, -289.628998F), new Vector2(145.992996F, -290.062012F), new Vector2(144.904999F, -290.385986F)); + builder.AddCubicBezier(new Vector2(143.815994F, -290.709015F), new Vector2(142.770004F, -291.023987F), new Vector2(141.768005F, -291.329987F)); + builder.AddCubicBezier(new Vector2(140.764999F, -291.635986F), new Vector2(139.957993F, -292.01001F), new Vector2(139.345993F, -292.451996F)); + builder.AddCubicBezier(new Vector2(138.733994F, -292.893005F), new Vector2(138.427994F, -293.52301F), new Vector2(138.427994F, -294.338989F)); + builder.AddCubicBezier(new Vector2(138.427994F, -295.121002F), new Vector2(138.776001F, -295.748993F), new Vector2(139.473007F, -296.226013F)); + builder.AddCubicBezier(new Vector2(140.169006F, -296.701996F), new Vector2(141.182007F, -296.940002F), new Vector2(142.507996F, -296.940002F)); + builder.AddCubicBezier(new Vector2(143.764999F, -296.940002F), new Vector2(144.886993F, -296.701996F), new Vector2(145.873993F, -296.226013F)); + builder.AddCubicBezier(new Vector2(146.860001F, -295.748993F), new Vector2(147.710007F, -295.070007F), new Vector2(148.423996F, -294.186005F)); + builder.AddLine(new Vector2(151.382004F, -297.144012F)); + builder.AddCubicBezier(new Vector2(150.429993F, -298.470001F), new Vector2(149.214005F, -299.463989F), new Vector2(147.735001F, -300.127014F)); + builder.AddCubicBezier(new Vector2(146.255997F, -300.790009F), new Vector2(144.565002F, -301.122009F), new Vector2(142.660995F, -301.122009F)); + builder.AddCubicBezier(new Vector2(140.858002F, -301.122009F), new Vector2(139.311996F, -300.833008F), new Vector2(138.020004F, -300.255005F)); + builder.AddCubicBezier(new Vector2(136.727005F, -299.675995F), new Vector2(135.731995F, -298.85199F), new Vector2(135.035995F, -297.781006F)); + builder.AddCubicBezier(new Vector2(134.339005F, -296.709991F), new Vector2(133.990997F, -295.442993F), new Vector2(133.990997F, -293.981995F)); + builder.AddCubicBezier(new Vector2(133.990997F, -292.519989F), new Vector2(134.304001F, -291.337006F), new Vector2(134.934006F, -290.437012F)); + builder.AddCubicBezier(new Vector2(135.563004F, -289.536011F), new Vector2(136.369995F, -288.830994F), new Vector2(137.356995F, -288.321014F)); + builder.AddCubicBezier(new Vector2(138.343002F, -287.811005F), new Vector2(139.388F, -287.403015F), new Vector2(140.492996F, -287.096985F)); + builder.AddCubicBezier(new Vector2(141.597F, -286.790985F), new Vector2(142.643005F, -286.476013F), new Vector2(143.630005F, -286.153015F)); + builder.AddCubicBezier(new Vector2(144.615997F, -285.82901F), new Vector2(145.421997F, -285.42099F), new Vector2(146.052002F, -284.928986F)); + builder.AddCubicBezier(new Vector2(146.681F, -284.436005F), new Vector2(146.996002F, -283.747986F), new Vector2(146.996002F, -282.864014F)); + builder.AddCubicBezier(new Vector2(146.996002F, -281.979004F), new Vector2(146.604996F, -281.290009F), new Vector2(145.822998F, -280.798004F)); + builder.AddCubicBezier(new Vector2(145.039993F, -280.304993F), new Vector2(143.936005F, -280.05899F), new Vector2(142.507996F, -280.05899F)); + builder.AddCubicBezier(new Vector2(141.080002F, -280.05899F), new Vector2(139.787003F, -280.321014F), new Vector2(138.632004F, -280.848999F)); + builder.AddCubicBezier(new Vector2(137.475998F, -281.376007F), new Vector2(136.455994F, -282.183014F), new Vector2(135.572006F, -283.272003F)); + builder.AddLine(new Vector2(132.613998F, -280.313995F)); + builder.AddCubicBezier(new Vector2(133.360992F, -279.395996F), new Vector2(134.237F, -278.605011F), new Vector2(135.240005F, -277.941986F)); + builder.AddCubicBezier(new Vector2(136.242004F, -277.278992F), new Vector2(137.356995F, -276.769012F), new Vector2(138.580994F, -276.411987F)); + builder.AddCubicBezier(new Vector2(139.804993F, -276.054993F), new Vector2(141.097F, -275.877014F), new Vector2(142.457001F, -275.877014F)); + builder.AddCubicBezier(new Vector2(145.177002F, -275.877014F), new Vector2(147.343994F, -276.540009F), new Vector2(148.959F, -277.865997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1570() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(119.710999F, -296.429993F)); + builder.AddLine(new Vector2(119.710999F, -300.612F)); + builder.AddLine(new Vector2(103.186996F, -300.612F)); + builder.AddLine(new Vector2(103.186996F, -296.429993F)); + builder.AddLine(new Vector2(119.710999F, -296.429993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(113.744003F, -276.386993F)); + builder.AddLine(new Vector2(113.744003F, -310.760986F)); + builder.AddLine(new Vector2(109.153999F, -310.760986F)); + builder.AddLine(new Vector2(109.153999F, -276.386993F)); + builder.AddLine(new Vector2(113.744003F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1571() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(82.3789978F, -276.386993F)); + builder.AddLine(new Vector2(82.3789978F, -300.612F)); + builder.AddLine(new Vector2(77.7890015F, -300.612F)); + builder.AddLine(new Vector2(77.7890015F, -276.386993F)); + builder.AddLine(new Vector2(82.3789978F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(99.5149994F, -276.386993F)); + builder.AddLine(new Vector2(99.5149994F, -291.432007F)); + builder.AddCubicBezier(new Vector2(99.5149994F, -293.096985F), new Vector2(99.1070023F, -294.670013F), new Vector2(98.2910004F, -296.148987F)); + builder.AddCubicBezier(new Vector2(97.4749985F, -297.627991F), new Vector2(96.3600006F, -298.826996F), new Vector2(94.9499969F, -299.744995F)); + builder.AddCubicBezier(new Vector2(93.5390015F, -300.662994F), new Vector2(91.9160004F, -301.122009F), new Vector2(90.0800018F, -301.122009F)); + builder.AddCubicBezier(new Vector2(88.2440033F, -301.122009F), new Vector2(86.5940018F, -300.704987F), new Vector2(85.1330032F, -299.872009F)); + builder.AddCubicBezier(new Vector2(83.6709976F, -299.037994F), new Vector2(82.5319977F, -297.908997F), new Vector2(81.7160034F, -296.480988F)); + builder.AddCubicBezier(new Vector2(80.9000015F, -295.053009F), new Vector2(80.4919968F, -293.42099F), new Vector2(80.4919968F, -291.584991F)); + builder.AddLine(new Vector2(82.3789978F, -290.514008F)); + builder.AddCubicBezier(new Vector2(82.3789978F, -291.738007F), new Vector2(82.651001F, -292.825989F), new Vector2(83.1949997F, -293.778015F)); + builder.AddCubicBezier(new Vector2(83.737999F, -294.729004F), new Vector2(84.4869995F, -295.477997F), new Vector2(85.439003F, -296.022003F)); + builder.AddCubicBezier(new Vector2(86.3899994F, -296.565002F), new Vector2(87.4789963F, -296.838013F), new Vector2(88.7030029F, -296.838013F)); + builder.AddCubicBezier(new Vector2(90.5390015F, -296.838013F), new Vector2(92.0250015F, -296.243011F), new Vector2(93.1650009F, -295.053009F)); + builder.AddCubicBezier(new Vector2(94.3040009F, -293.862F), new Vector2(94.8740005F, -292.350006F), new Vector2(94.8740005F, -290.514008F)); + builder.AddLine(new Vector2(94.8740005F, -276.386993F)); + builder.AddLine(new Vector2(99.5149994F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1572() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(67.0279999F, -276.947998F)); + builder.AddCubicBezier(new Vector2(68.6930008F, -277.661987F), new Vector2(70.1210022F, -278.699005F), new Vector2(71.3119965F, -280.05899F)); + builder.AddLine(new Vector2(68.3539963F, -283.067993F)); + builder.AddCubicBezier(new Vector2(67.538002F, -282.115997F), new Vector2(66.5599976F, -281.402008F), new Vector2(65.4209976F, -280.925995F)); + builder.AddCubicBezier(new Vector2(64.2809982F, -280.449005F), new Vector2(63.0320015F, -280.212006F), new Vector2(61.6730003F, -280.212006F)); + builder.AddCubicBezier(new Vector2(60.0410004F, -280.212006F), new Vector2(58.5950012F, -280.559998F), new Vector2(57.3380013F, -281.256989F)); + builder.AddCubicBezier(new Vector2(56.0800018F, -281.953003F), new Vector2(55.1110001F, -282.940002F), new Vector2(54.4309998F, -284.214996F)); + builder.AddCubicBezier(new Vector2(53.75F, -285.48999F), new Vector2(53.4109993F, -286.97699F), new Vector2(53.4109993F, -288.678009F)); + builder.AddCubicBezier(new Vector2(53.4109993F, -290.342987F), new Vector2(53.7340012F, -291.789001F), new Vector2(54.3800011F, -293.013F)); + builder.AddCubicBezier(new Vector2(55.0250015F, -294.237F), new Vector2(55.9430008F, -295.187988F), new Vector2(57.1339989F, -295.868988F)); + builder.AddCubicBezier(new Vector2(58.3240013F, -296.549011F), new Vector2(59.7010002F, -296.889008F), new Vector2(61.2649994F, -296.889008F)); + builder.AddCubicBezier(new Vector2(62.7610016F, -296.889008F), new Vector2(64.0360031F, -296.574005F), new Vector2(65.0899963F, -295.945007F)); + builder.AddCubicBezier(new Vector2(66.1429977F, -295.315002F), new Vector2(66.9589996F, -294.432007F), new Vector2(67.538002F, -293.292999F)); + builder.AddCubicBezier(new Vector2(68.1159973F, -292.153015F), new Vector2(68.4049988F, -290.769012F), new Vector2(68.4049988F, -289.136993F)); + builder.AddLine(new Vector2(70.0879974F, -290.615997F)); + builder.AddLine(new Vector2(52.0849991F, -290.615997F)); + builder.AddLine(new Vector2(52.0849991F, -286.790985F)); + builder.AddLine(new Vector2(72.5360031F, -286.790985F)); + builder.AddCubicBezier(new Vector2(72.6380005F, -287.266998F), new Vector2(72.7060013F, -287.700012F), new Vector2(72.7399979F, -288.091003F)); + builder.AddCubicBezier(new Vector2(72.7730026F, -288.480988F), new Vector2(72.7910004F, -288.847992F), new Vector2(72.7910004F, -289.187988F)); + builder.AddCubicBezier(new Vector2(72.7910004F, -291.5F), new Vector2(72.3059998F, -293.556F), new Vector2(71.336998F, -295.359009F)); + builder.AddCubicBezier(new Vector2(70.3679962F, -297.161011F), new Vector2(69.0169983F, -298.571991F), new Vector2(67.2829971F, -299.59201F)); + builder.AddCubicBezier(new Vector2(65.5490036F, -300.612F), new Vector2(63.5769997F, -301.122009F), new Vector2(61.3670006F, -301.122009F)); + builder.AddCubicBezier(new Vector2(59.0209999F, -301.122009F), new Vector2(56.9039993F, -300.567993F), new Vector2(55.0169983F, -299.463989F)); + builder.AddCubicBezier(new Vector2(53.1300011F, -298.359009F), new Vector2(51.6329994F, -296.855011F), new Vector2(50.5289993F, -294.950989F)); + builder.AddCubicBezier(new Vector2(49.4239998F, -293.04599F), new Vector2(48.8720016F, -290.903992F), new Vector2(48.8720016F, -288.524994F)); + builder.AddCubicBezier(new Vector2(48.8720016F, -286.109985F), new Vector2(49.4329987F, -283.951996F), new Vector2(50.5550003F, -282.048004F)); + builder.AddCubicBezier(new Vector2(51.6769981F, -280.143005F), new Vector2(53.1980019F, -278.638F), new Vector2(55.1189995F, -277.533997F)); + builder.AddCubicBezier(new Vector2(57.0390015F, -276.428986F), new Vector2(59.2249985F, -275.877014F), new Vector2(61.6730003F, -275.877014F)); + builder.AddCubicBezier(new Vector2(63.5769997F, -275.877014F), new Vector2(65.3619995F, -276.234009F), new Vector2(67.0279999F, -276.947998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1573() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(36.9889984F, -295.154999F)); + builder.AddCubicBezier(new Vector2(38.0769997F, -296.243011F), new Vector2(39.4700012F, -296.786987F), new Vector2(41.1710014F, -296.786987F)); + builder.AddCubicBezier(new Vector2(41.9869995F, -296.786987F), new Vector2(42.7010002F, -296.666992F), new Vector2(43.3129997F, -296.429993F)); + builder.AddCubicBezier(new Vector2(43.9249992F, -296.191986F), new Vector2(44.4860001F, -295.799988F), new Vector2(44.9959984F, -295.256989F)); + builder.AddLine(new Vector2(48.0050011F, -298.368011F)); + builder.AddCubicBezier(new Vector2(47.1549988F, -299.354004F), new Vector2(46.2369995F, -300.058014F), new Vector2(45.2509995F, -300.484009F)); + builder.AddCubicBezier(new Vector2(44.2639999F, -300.908997F), new Vector2(43.1599998F, -301.122009F), new Vector2(41.9360008F, -301.122009F)); + builder.AddCubicBezier(new Vector2(39.25F, -301.122009F), new Vector2(37.1930008F, -300.20401F), new Vector2(35.7649994F, -298.368011F)); + builder.AddCubicBezier(new Vector2(34.3370018F, -296.532013F), new Vector2(33.6230011F, -294.06601F), new Vector2(33.6230011F, -290.972992F)); + builder.AddLine(new Vector2(35.3569984F, -290.157013F)); + builder.AddCubicBezier(new Vector2(35.3569984F, -292.401001F), new Vector2(35.9000015F, -294.06601F), new Vector2(36.9889984F, -295.154999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(35.3569984F, -276.386993F)); + builder.AddLine(new Vector2(35.3569984F, -300.612F)); + builder.AddLine(new Vector2(30.7670002F, -300.612F)); + builder.AddLine(new Vector2(30.7670002F, -276.386993F)); + builder.AddLine(new Vector2(35.3569984F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1574() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(16.4360008F, -295.154999F)); + builder.AddCubicBezier(new Vector2(17.5240002F, -296.243011F), new Vector2(18.9169998F, -296.786987F), new Vector2(20.618F, -296.786987F)); + builder.AddCubicBezier(new Vector2(21.434F, -296.786987F), new Vector2(22.1480007F, -296.666992F), new Vector2(22.7600002F, -296.429993F)); + builder.AddCubicBezier(new Vector2(23.3719997F, -296.191986F), new Vector2(23.9330006F, -295.799988F), new Vector2(24.4430008F, -295.256989F)); + builder.AddLine(new Vector2(27.4519997F, -298.368011F)); + builder.AddCubicBezier(new Vector2(26.6019993F, -299.354004F), new Vector2(25.684F, -300.058014F), new Vector2(24.698F, -300.484009F)); + builder.AddCubicBezier(new Vector2(23.7110004F, -300.908997F), new Vector2(22.6070004F, -301.122009F), new Vector2(21.3829994F, -301.122009F)); + builder.AddCubicBezier(new Vector2(18.6970005F, -301.122009F), new Vector2(16.6399994F, -300.20401F), new Vector2(15.2119999F, -298.368011F)); + builder.AddCubicBezier(new Vector2(13.7840004F, -296.532013F), new Vector2(13.0699997F, -294.06601F), new Vector2(13.0699997F, -290.972992F)); + builder.AddLine(new Vector2(14.8039999F, -290.157013F)); + builder.AddCubicBezier(new Vector2(14.8039999F, -292.401001F), new Vector2(15.3470001F, -294.06601F), new Vector2(16.4360008F, -295.154999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(14.8039999F, -276.386993F)); + builder.AddLine(new Vector2(14.8039999F, -300.612F)); + builder.AddLine(new Vector2(10.2139997F, -300.612F)); + builder.AddLine(new Vector2(10.2139997F, -276.386993F)); + builder.AddLine(new Vector2(14.8039999F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1575() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-0.954999983F, -277.278992F)); + builder.AddCubicBezier(new Vector2(0.60799998F, -278.145996F), new Vector2(1.83200002F, -279.377991F), new Vector2(2.71700001F, -280.97699F)); + builder.AddCubicBezier(new Vector2(3.60100007F, -282.575012F), new Vector2(4.04300022F, -284.427002F), new Vector2(4.04300022F, -286.536011F)); + builder.AddLine(new Vector2(4.04300022F, -300.612F)); + builder.AddLine(new Vector2(-0.546999991F, -300.612F)); + builder.AddLine(new Vector2(-0.546999991F, -286.73999F)); + builder.AddCubicBezier(new Vector2(-0.546999991F, -284.733002F), new Vector2(-1.05700004F, -283.161011F), new Vector2(-2.0769999F, -282.022003F)); + builder.AddCubicBezier(new Vector2(-3.09699988F, -280.881989F), new Vector2(-4.5079999F, -280.313995F), new Vector2(-6.30999994F, -280.313995F)); + builder.AddCubicBezier(new Vector2(-7.50099993F, -280.313995F), new Vector2(-8.5369997F, -280.569F), new Vector2(-9.42099953F, -281.07901F)); + builder.AddCubicBezier(new Vector2(-10.3059998F, -281.588989F), new Vector2(-10.9770002F, -282.328003F), new Vector2(-11.4359999F, -283.296997F)); + builder.AddCubicBezier(new Vector2(-11.8950005F, -284.265991F), new Vector2(-12.1239996F, -285.414001F), new Vector2(-12.1239996F, -286.73999F)); + builder.AddLine(new Vector2(-12.1239996F, -300.612F)); + builder.AddLine(new Vector2(-16.7140007F, -300.612F)); + builder.AddLine(new Vector2(-16.7140007F, -286.536011F)); + builder.AddCubicBezier(new Vector2(-16.7140007F, -284.427002F), new Vector2(-16.2730007F, -282.575012F), new Vector2(-15.3879995F, -280.97699F)); + builder.AddCubicBezier(new Vector2(-14.5039997F, -279.377991F), new Vector2(-13.2720003F, -278.145996F), new Vector2(-11.691F, -277.278992F)); + builder.AddCubicBezier(new Vector2(-10.1099997F, -276.411987F), new Vector2(-8.31700039F, -275.979004F), new Vector2(-6.30999994F, -275.979004F)); + builder.AddCubicBezier(new Vector2(-4.3039999F, -275.979004F), new Vector2(-2.51900005F, -276.411987F), new Vector2(-0.954999983F, -277.278992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1576() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-24.7469997F, -276.947998F)); + builder.AddCubicBezier(new Vector2(-23.1329994F, -277.661987F), new Vector2(-21.7630005F, -278.664001F), new Vector2(-20.6410007F, -279.957001F)); + builder.AddLine(new Vector2(-23.6499996F, -283.016998F)); + builder.AddCubicBezier(new Vector2(-24.4330006F, -282.131989F), new Vector2(-25.3589993F, -281.460999F), new Vector2(-26.4300003F, -281.002014F)); + builder.AddCubicBezier(new Vector2(-27.5009995F, -280.542999F), new Vector2(-28.6819992F, -280.313995F), new Vector2(-29.9740009F, -280.313995F)); + builder.AddCubicBezier(new Vector2(-31.5039997F, -280.313995F), new Vector2(-32.8639984F, -280.67099F), new Vector2(-34.0540009F, -281.38501F)); + builder.AddCubicBezier(new Vector2(-35.2449989F, -282.098999F), new Vector2(-36.1790009F, -283.067993F), new Vector2(-36.8590012F, -284.291992F)); + builder.AddCubicBezier(new Vector2(-37.5400009F, -285.515991F), new Vector2(-37.8790016F, -286.925995F), new Vector2(-37.8790016F, -288.524994F)); + builder.AddCubicBezier(new Vector2(-37.8790016F, -290.122986F), new Vector2(-37.5400009F, -291.533997F), new Vector2(-36.8590012F, -292.757996F)); + builder.AddCubicBezier(new Vector2(-36.1790009F, -293.981995F), new Vector2(-35.2449989F, -294.941986F), new Vector2(-34.0540009F, -295.639008F)); + builder.AddCubicBezier(new Vector2(-32.8639984F, -296.334991F), new Vector2(-31.5039997F, -296.684998F), new Vector2(-29.9740009F, -296.684998F)); + builder.AddCubicBezier(new Vector2(-28.7169991F, -296.684998F), new Vector2(-27.5440006F, -296.454987F), new Vector2(-26.4549999F, -295.996002F)); + builder.AddCubicBezier(new Vector2(-25.3670006F, -295.536987F), new Vector2(-24.4489994F, -294.865997F), new Vector2(-23.7010002F, -293.981995F)); + builder.AddLine(new Vector2(-20.6410007F, -297.041992F)); + builder.AddCubicBezier(new Vector2(-21.7970009F, -298.368011F), new Vector2(-23.1739998F, -299.378998F), new Vector2(-24.7719994F, -300.075989F)); + builder.AddCubicBezier(new Vector2(-26.3710003F, -300.772003F), new Vector2(-28.1049995F, -301.122009F), new Vector2(-29.9740009F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-32.3540001F, -301.122009F), new Vector2(-34.5060005F, -300.567993F), new Vector2(-36.4259987F, -299.463989F)); + builder.AddCubicBezier(new Vector2(-38.3470001F, -298.359009F), new Vector2(-39.8610001F, -296.855011F), new Vector2(-40.9650002F, -294.950989F)); + builder.AddCubicBezier(new Vector2(-42.0699997F, -293.04599F), new Vector2(-42.6220016F, -290.903992F), new Vector2(-42.6220016F, -288.524994F)); + builder.AddCubicBezier(new Vector2(-42.6220016F, -286.178986F), new Vector2(-42.0699997F, -284.044006F), new Vector2(-40.9650002F, -282.123993F)); + builder.AddCubicBezier(new Vector2(-39.8610001F, -280.203003F), new Vector2(-38.3470001F, -278.682007F), new Vector2(-36.4259987F, -277.559998F)); + builder.AddCubicBezier(new Vector2(-34.5060005F, -276.437988F), new Vector2(-32.3540001F, -275.877014F), new Vector2(-29.9740009F, -275.877014F)); + builder.AddCubicBezier(new Vector2(-28.1049995F, -275.877014F), new Vector2(-26.3619995F, -276.234009F), new Vector2(-24.7469997F, -276.947998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1577() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-62.3590012F, -276.947998F)); + builder.AddCubicBezier(new Vector2(-60.6940002F, -277.661987F), new Vector2(-59.2659988F, -278.699005F), new Vector2(-58.0750008F, -280.05899F)); + builder.AddLine(new Vector2(-61.0330009F, -283.067993F)); + builder.AddCubicBezier(new Vector2(-61.848999F, -282.115997F), new Vector2(-62.8260002F, -281.402008F), new Vector2(-63.9650002F, -280.925995F)); + builder.AddCubicBezier(new Vector2(-65.1050034F, -280.449005F), new Vector2(-66.3550034F, -280.212006F), new Vector2(-67.7139969F, -280.212006F)); + builder.AddCubicBezier(new Vector2(-69.3460007F, -280.212006F), new Vector2(-70.7919998F, -280.559998F), new Vector2(-72.0490036F, -281.256989F)); + builder.AddCubicBezier(new Vector2(-73.3069992F, -281.953003F), new Vector2(-74.276001F, -282.940002F), new Vector2(-74.9560013F, -284.214996F)); + builder.AddCubicBezier(new Vector2(-75.637001F, -285.48999F), new Vector2(-75.9759979F, -286.97699F), new Vector2(-75.9759979F, -288.678009F)); + builder.AddCubicBezier(new Vector2(-75.9759979F, -290.342987F), new Vector2(-75.6529999F, -291.789001F), new Vector2(-75.0070038F, -293.013F)); + builder.AddCubicBezier(new Vector2(-74.3619995F, -294.237F), new Vector2(-73.4440002F, -295.187988F), new Vector2(-72.2529984F, -295.868988F)); + builder.AddCubicBezier(new Vector2(-71.0630035F, -296.549011F), new Vector2(-69.685997F, -296.889008F), new Vector2(-68.1220016F, -296.889008F)); + builder.AddCubicBezier(new Vector2(-66.6259995F, -296.889008F), new Vector2(-65.3509979F, -296.574005F), new Vector2(-64.2969971F, -295.945007F)); + builder.AddCubicBezier(new Vector2(-63.2439995F, -295.315002F), new Vector2(-62.4280014F, -294.432007F), new Vector2(-61.848999F, -293.292999F)); + builder.AddCubicBezier(new Vector2(-61.2709999F, -292.153015F), new Vector2(-60.9819984F, -290.769012F), new Vector2(-60.9819984F, -289.136993F)); + builder.AddLine(new Vector2(-59.2989998F, -290.615997F)); + builder.AddLine(new Vector2(-77.302002F, -290.615997F)); + builder.AddLine(new Vector2(-77.302002F, -286.790985F)); + builder.AddLine(new Vector2(-56.8510017F, -286.790985F)); + builder.AddCubicBezier(new Vector2(-56.7490005F, -287.266998F), new Vector2(-56.6809998F, -287.700012F), new Vector2(-56.6469994F, -288.091003F)); + builder.AddCubicBezier(new Vector2(-56.6139984F, -288.480988F), new Vector2(-56.5960007F, -288.847992F), new Vector2(-56.5960007F, -289.187988F)); + builder.AddCubicBezier(new Vector2(-56.5960007F, -291.5F), new Vector2(-57.0800018F, -293.556F), new Vector2(-58.0489998F, -295.359009F)); + builder.AddCubicBezier(new Vector2(-59.0180016F, -297.161011F), new Vector2(-60.3699989F, -298.571991F), new Vector2(-62.1040001F, -299.59201F)); + builder.AddCubicBezier(new Vector2(-63.8380013F, -300.612F), new Vector2(-65.8099976F, -301.122009F), new Vector2(-68.0199966F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-70.3659973F, -301.122009F), new Vector2(-72.4820023F, -300.567993F), new Vector2(-74.3690033F, -299.463989F)); + builder.AddCubicBezier(new Vector2(-76.2559967F, -298.359009F), new Vector2(-77.7529984F, -296.855011F), new Vector2(-78.8570023F, -294.950989F)); + builder.AddCubicBezier(new Vector2(-79.961998F, -293.04599F), new Vector2(-80.5149994F, -290.903992F), new Vector2(-80.5149994F, -288.524994F)); + builder.AddCubicBezier(new Vector2(-80.5149994F, -286.109985F), new Vector2(-79.9540024F, -283.951996F), new Vector2(-78.8320007F, -282.048004F)); + builder.AddCubicBezier(new Vector2(-77.7099991F, -280.143005F), new Vector2(-76.1880035F, -278.638F), new Vector2(-74.2669983F, -277.533997F)); + builder.AddCubicBezier(new Vector2(-72.3470001F, -276.428986F), new Vector2(-70.1620026F, -275.877014F), new Vector2(-67.7139969F, -275.877014F)); + builder.AddCubicBezier(new Vector2(-65.8099976F, -275.877014F), new Vector2(-64.0250015F, -276.234009F), new Vector2(-62.3590012F, -276.947998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1578() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-102.292F, -276.386993F)); + builder.AddLine(new Vector2(-102.292F, -312.800995F)); + builder.AddLine(new Vector2(-106.882004F, -312.800995F)); + builder.AddLine(new Vector2(-106.882004F, -276.386993F)); + builder.AddLine(new Vector2(-102.292F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-85.1559982F, -276.386993F)); + builder.AddLine(new Vector2(-85.1559982F, -291.432007F)); + builder.AddCubicBezier(new Vector2(-85.1559982F, -293.335999F), new Vector2(-85.564003F, -295.019012F), new Vector2(-86.3799973F, -296.480988F)); + builder.AddCubicBezier(new Vector2(-87.1959991F, -297.941986F), new Vector2(-88.3099976F, -299.082001F), new Vector2(-89.7200012F, -299.89801F)); + builder.AddCubicBezier(new Vector2(-91.1309967F, -300.713989F), new Vector2(-92.7549973F, -301.122009F), new Vector2(-94.5910034F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-96.427002F, -301.122009F), new Vector2(-98.0770035F, -300.704987F), new Vector2(-99.538002F, -299.872009F)); + builder.AddCubicBezier(new Vector2(-101F, -299.037994F), new Vector2(-102.139F, -297.908997F), new Vector2(-102.955002F, -296.480988F)); + builder.AddCubicBezier(new Vector2(-103.771004F, -295.053009F), new Vector2(-104.179001F, -293.42099F), new Vector2(-104.179001F, -291.584991F)); + builder.AddLine(new Vector2(-102.292F, -290.514008F)); + builder.AddCubicBezier(new Vector2(-102.292F, -291.738007F), new Vector2(-102.019997F, -292.825989F), new Vector2(-101.475998F, -293.778015F)); + builder.AddCubicBezier(new Vector2(-100.932999F, -294.729004F), new Vector2(-100.183998F, -295.477997F), new Vector2(-99.2320023F, -296.022003F)); + builder.AddCubicBezier(new Vector2(-98.2809982F, -296.565002F), new Vector2(-97.1920013F, -296.838013F), new Vector2(-95.9680023F, -296.838013F)); + builder.AddCubicBezier(new Vector2(-94.1320038F, -296.838013F), new Vector2(-92.6449966F, -296.243011F), new Vector2(-91.5049973F, -295.053009F)); + builder.AddCubicBezier(new Vector2(-90.3659973F, -293.862F), new Vector2(-89.7969971F, -292.350006F), new Vector2(-89.7969971F, -290.514008F)); + builder.AddLine(new Vector2(-89.7969971F, -276.386993F)); + builder.AddLine(new Vector2(-85.1559982F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1579() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-111.370003F, -296.429993F)); + builder.AddLine(new Vector2(-111.370003F, -300.612F)); + builder.AddLine(new Vector2(-127.893997F, -300.612F)); + builder.AddLine(new Vector2(-127.893997F, -296.429993F)); + builder.AddLine(new Vector2(-111.370003F, -296.429993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-117.336998F, -276.386993F)); + builder.AddLine(new Vector2(-117.336998F, -310.760986F)); + builder.AddLine(new Vector2(-121.927002F, -310.760986F)); + builder.AddLine(new Vector2(-121.927002F, -276.386993F)); + builder.AddLine(new Vector2(-117.336998F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1580() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-158.774994F, -282.123993F)); + builder.AddCubicBezier(new Vector2(-159.947998F, -282.786987F), new Vector2(-160.865997F, -283.713013F), new Vector2(-161.529007F, -284.903992F)); + builder.AddCubicBezier(new Vector2(-162.192001F, -286.093994F), new Vector2(-162.522995F, -287.45401F), new Vector2(-162.522995F, -288.984009F)); + builder.AddCubicBezier(new Vector2(-162.522995F, -290.514008F), new Vector2(-162.192001F, -291.86499F), new Vector2(-161.529007F, -293.037994F)); + builder.AddCubicBezier(new Vector2(-160.865997F, -294.210999F), new Vector2(-159.955994F, -295.128998F), new Vector2(-158.800003F, -295.791992F)); + builder.AddCubicBezier(new Vector2(-157.645004F, -296.454987F), new Vector2(-156.300995F, -296.786987F), new Vector2(-154.770996F, -296.786987F)); + builder.AddCubicBezier(new Vector2(-153.274994F, -296.786987F), new Vector2(-151.959F, -296.454987F), new Vector2(-150.819F, -295.791992F)); + builder.AddCubicBezier(new Vector2(-149.679993F, -295.128998F), new Vector2(-148.796997F, -294.210999F), new Vector2(-148.167007F, -293.037994F)); + builder.AddCubicBezier(new Vector2(-147.537994F, -291.86499F), new Vector2(-147.223007F, -290.496002F), new Vector2(-147.223007F, -288.933014F)); + builder.AddCubicBezier(new Vector2(-147.223007F, -287.368988F), new Vector2(-147.537994F, -286F), new Vector2(-148.167007F, -284.826996F)); + builder.AddCubicBezier(new Vector2(-148.796997F, -283.653992F), new Vector2(-149.671005F, -282.743988F), new Vector2(-150.792999F, -282.098999F)); + builder.AddCubicBezier(new Vector2(-151.914993F, -281.453003F), new Vector2(-153.240997F, -281.130005F), new Vector2(-154.770996F, -281.130005F)); + builder.AddCubicBezier(new Vector2(-156.268005F, -281.130005F), new Vector2(-157.602005F, -281.460999F), new Vector2(-158.774994F, -282.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-150.639999F, -277.916992F)); + builder.AddCubicBezier(new Vector2(-149.179001F, -278.664001F), new Vector2(-148.014008F, -279.709015F), new Vector2(-147.147003F, -281.053009F)); + builder.AddCubicBezier(new Vector2(-146.279999F, -282.395996F), new Vector2(-145.794998F, -283.951996F), new Vector2(-145.692993F, -285.720001F)); + builder.AddLine(new Vector2(-145.692993F, -292.145996F)); + builder.AddCubicBezier(new Vector2(-145.794998F, -293.947998F), new Vector2(-146.272003F, -295.519012F), new Vector2(-147.121002F, -296.863007F)); + builder.AddCubicBezier(new Vector2(-147.970993F, -298.205994F), new Vector2(-149.136002F, -299.252014F), new Vector2(-150.615005F, -300F)); + builder.AddCubicBezier(new Vector2(-152.093994F, -300.747009F), new Vector2(-153.785004F, -301.122009F), new Vector2(-155.688995F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-157.865005F, -301.122009F), new Vector2(-159.837997F, -300.585999F), new Vector2(-161.604996F, -299.515015F)); + builder.AddCubicBezier(new Vector2(-163.373001F, -298.444F), new Vector2(-164.759995F, -296.997986F), new Vector2(-165.761993F, -295.179993F)); + builder.AddCubicBezier(new Vector2(-166.764999F, -293.360992F), new Vector2(-167.266006F, -291.29599F), new Vector2(-167.266006F, -288.984009F)); + builder.AddCubicBezier(new Vector2(-167.266006F, -286.67099F), new Vector2(-166.755997F, -284.588989F), new Vector2(-165.735992F, -282.735992F)); + builder.AddCubicBezier(new Vector2(-164.716003F, -280.881989F), new Vector2(-163.332001F, -279.428986F), new Vector2(-161.580002F, -278.376007F)); + builder.AddCubicBezier(new Vector2(-159.828995F, -277.321991F), new Vector2(-157.848999F, -276.795013F), new Vector2(-155.638F, -276.795013F)); + builder.AddCubicBezier(new Vector2(-153.768997F, -276.795013F), new Vector2(-152.102005F, -277.169006F), new Vector2(-150.639999F, -277.916992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-148.983002F, -267.181F)); + builder.AddCubicBezier(new Vector2(-147.063004F, -268.149994F), new Vector2(-145.565994F, -269.51001F), new Vector2(-144.494995F, -271.260986F)); + builder.AddCubicBezier(new Vector2(-143.423996F, -273.013F), new Vector2(-142.888F, -275.044006F), new Vector2(-142.888F, -277.355988F)); + builder.AddLine(new Vector2(-142.888F, -300.612F)); + builder.AddLine(new Vector2(-147.477997F, -300.612F)); + builder.AddLine(new Vector2(-147.477997F, -294.237F)); + builder.AddLine(new Vector2(-146.662003F, -288.830994F)); + builder.AddLine(new Vector2(-147.477997F, -283.373993F)); + builder.AddLine(new Vector2(-147.477997F, -277.355988F)); + builder.AddCubicBezier(new Vector2(-147.477997F, -275.145996F), new Vector2(-148.210007F, -273.385986F), new Vector2(-149.671005F, -272.076996F)); + builder.AddCubicBezier(new Vector2(-151.132996F, -270.769012F), new Vector2(-153.087997F, -270.114014F), new Vector2(-155.535995F, -270.114014F)); + builder.AddCubicBezier(new Vector2(-157.406006F, -270.114014F), new Vector2(-159.022003F, -270.445007F), new Vector2(-160.380997F, -271.108002F)); + builder.AddCubicBezier(new Vector2(-161.740997F, -271.770996F), new Vector2(-162.914001F, -272.733002F), new Vector2(-163.899994F, -273.98999F)); + builder.AddLine(new Vector2(-166.908997F, -270.980988F)); + builder.AddCubicBezier(new Vector2(-165.718994F, -269.31601F), new Vector2(-164.173004F, -268.02301F), new Vector2(-162.268005F, -267.105011F)); + builder.AddCubicBezier(new Vector2(-160.363998F, -266.187012F), new Vector2(-158.154999F, -265.727997F), new Vector2(-155.638F, -265.727997F)); + builder.AddCubicBezier(new Vector2(-153.121994F, -265.727997F), new Vector2(-150.904007F, -266.212006F), new Vector2(-148.983002F, -267.181F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1581() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-189.042999F, -276.386993F)); + builder.AddLine(new Vector2(-189.042999F, -300.612F)); + builder.AddLine(new Vector2(-193.632996F, -300.612F)); + builder.AddLine(new Vector2(-193.632996F, -276.386993F)); + builder.AddLine(new Vector2(-189.042999F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-171.906998F, -276.386993F)); + builder.AddLine(new Vector2(-171.906998F, -291.432007F)); + builder.AddCubicBezier(new Vector2(-171.906998F, -293.096985F), new Vector2(-172.315002F, -294.670013F), new Vector2(-173.130997F, -296.148987F)); + builder.AddCubicBezier(new Vector2(-173.947006F, -297.627991F), new Vector2(-175.061996F, -298.826996F), new Vector2(-176.472F, -299.744995F)); + builder.AddCubicBezier(new Vector2(-177.882996F, -300.662994F), new Vector2(-179.505997F, -301.122009F), new Vector2(-181.341995F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-183.177994F, -301.122009F), new Vector2(-184.828003F, -300.704987F), new Vector2(-186.289001F, -299.872009F)); + builder.AddCubicBezier(new Vector2(-187.751007F, -299.037994F), new Vector2(-188.889999F, -297.908997F), new Vector2(-189.705994F, -296.480988F)); + builder.AddCubicBezier(new Vector2(-190.522003F, -295.053009F), new Vector2(-190.929993F, -293.42099F), new Vector2(-190.929993F, -291.584991F)); + builder.AddLine(new Vector2(-189.042999F, -290.514008F)); + builder.AddCubicBezier(new Vector2(-189.042999F, -291.738007F), new Vector2(-188.770996F, -292.825989F), new Vector2(-188.227005F, -293.778015F)); + builder.AddCubicBezier(new Vector2(-187.684006F, -294.729004F), new Vector2(-186.934998F, -295.477997F), new Vector2(-185.983002F, -296.022003F)); + builder.AddCubicBezier(new Vector2(-185.031998F, -296.565002F), new Vector2(-183.942993F, -296.838013F), new Vector2(-182.718994F, -296.838013F)); + builder.AddCubicBezier(new Vector2(-180.882996F, -296.838013F), new Vector2(-179.397003F, -296.243011F), new Vector2(-178.257004F, -295.053009F)); + builder.AddCubicBezier(new Vector2(-177.117996F, -293.862F), new Vector2(-176.548004F, -292.350006F), new Vector2(-176.548004F, -290.514008F)); + builder.AddLine(new Vector2(-176.548004F, -276.386993F)); + builder.AddLine(new Vector2(-171.906998F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1582() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-200.619995F, -306.298004F)); + builder.AddCubicBezier(new Vector2(-200.076996F, -306.859009F), new Vector2(-199.804001F, -307.565002F), new Vector2(-199.804001F, -308.415009F)); + builder.AddCubicBezier(new Vector2(-199.804001F, -309.230988F), new Vector2(-200.076996F, -309.919006F), new Vector2(-200.619995F, -310.480011F)); + builder.AddCubicBezier(new Vector2(-201.164001F, -311.040985F), new Vector2(-201.862F, -311.321991F), new Vector2(-202.710999F, -311.321991F)); + builder.AddCubicBezier(new Vector2(-203.561005F, -311.321991F), new Vector2(-204.259003F, -311.040985F), new Vector2(-204.802002F, -310.480011F)); + builder.AddCubicBezier(new Vector2(-205.345993F, -309.919006F), new Vector2(-205.617996F, -309.230988F), new Vector2(-205.617996F, -308.415009F)); + builder.AddCubicBezier(new Vector2(-205.617996F, -307.565002F), new Vector2(-205.345993F, -306.859009F), new Vector2(-204.802002F, -306.298004F)); + builder.AddCubicBezier(new Vector2(-204.259003F, -305.737F), new Vector2(-203.561005F, -305.457001F), new Vector2(-202.710999F, -305.457001F)); + builder.AddCubicBezier(new Vector2(-201.862F, -305.457001F), new Vector2(-201.164001F, -305.737F), new Vector2(-200.619995F, -306.298004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-200.416F, -276.386993F)); + builder.AddLine(new Vector2(-200.416F, -300.612F)); + builder.AddLine(new Vector2(-205.057007F, -300.612F)); + builder.AddLine(new Vector2(-205.057007F, -276.386993F)); + builder.AddLine(new Vector2(-200.416F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1583() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-211.738007F, -312.800995F)); + builder.AddLine(new Vector2(-216.378998F, -312.800995F)); + builder.AddLine(new Vector2(-216.378998F, -294.696014F)); + builder.AddLine(new Vector2(-215.511993F, -288.830994F)); + builder.AddLine(new Vector2(-216.378998F, -282.915009F)); + builder.AddLine(new Vector2(-216.378998F, -276.386993F)); + builder.AddLine(new Vector2(-211.738007F, -276.386993F)); + builder.AddLine(new Vector2(-211.738007F, -312.800995F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-227.778F, -281.256989F)); + builder.AddCubicBezier(new Vector2(-228.951004F, -281.953003F), new Vector2(-229.869003F, -282.932007F), new Vector2(-230.531998F, -284.190002F)); + builder.AddCubicBezier(new Vector2(-231.195007F, -285.446991F), new Vector2(-231.526001F, -286.893005F), new Vector2(-231.526001F, -288.524994F)); + builder.AddCubicBezier(new Vector2(-231.526001F, -290.157013F), new Vector2(-231.195007F, -291.59201F), new Vector2(-230.531998F, -292.834015F)); + builder.AddCubicBezier(new Vector2(-229.869003F, -294.075012F), new Vector2(-228.959F, -295.044006F), new Vector2(-227.802994F, -295.740997F)); + builder.AddCubicBezier(new Vector2(-226.647995F, -296.437012F), new Vector2(-225.304001F, -296.786987F), new Vector2(-223.774002F, -296.786987F)); + builder.AddCubicBezier(new Vector2(-222.244003F, -296.786987F), new Vector2(-220.901001F, -296.429993F), new Vector2(-219.744995F, -295.716003F)); + builder.AddCubicBezier(new Vector2(-218.589996F, -295.002014F), new Vector2(-217.688004F, -294.023987F), new Vector2(-217.042007F, -292.78299F)); + builder.AddCubicBezier(new Vector2(-216.397003F, -291.540985F), new Vector2(-216.072998F, -290.105988F), new Vector2(-216.072998F, -288.473999F)); + builder.AddCubicBezier(new Vector2(-216.072998F, -286.875F), new Vector2(-216.397003F, -285.455994F), new Vector2(-217.042007F, -284.214996F)); + builder.AddCubicBezier(new Vector2(-217.688004F, -282.972992F), new Vector2(-218.589996F, -281.997009F), new Vector2(-219.744995F, -281.28299F)); + builder.AddCubicBezier(new Vector2(-220.901001F, -280.569F), new Vector2(-222.244003F, -280.212006F), new Vector2(-223.774002F, -280.212006F)); + builder.AddCubicBezier(new Vector2(-225.270996F, -280.212006F), new Vector2(-226.604996F, -280.559998F), new Vector2(-227.778F, -281.256989F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-219.541F, -277.023987F)); + builder.AddCubicBezier(new Vector2(-218.080002F, -277.789001F), new Vector2(-216.906998F, -278.85199F), new Vector2(-216.022003F, -280.212006F)); + builder.AddCubicBezier(new Vector2(-215.138F, -281.571014F), new Vector2(-214.645004F, -283.118988F), new Vector2(-214.542999F, -284.852997F)); + builder.AddLine(new Vector2(-214.542999F, -292.145996F)); + builder.AddCubicBezier(new Vector2(-214.645004F, -293.912994F), new Vector2(-215.147995F, -295.467987F), new Vector2(-216.048004F, -296.812012F)); + builder.AddCubicBezier(new Vector2(-216.949005F, -298.154999F), new Vector2(-218.130997F, -299.209015F), new Vector2(-219.591995F, -299.973999F)); + builder.AddCubicBezier(new Vector2(-221.054001F, -300.739014F), new Vector2(-222.703003F, -301.122009F), new Vector2(-224.539001F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-226.75F, -301.122009F), new Vector2(-228.738998F, -300.561005F), new Vector2(-230.505997F, -299.438995F)); + builder.AddCubicBezier(new Vector2(-232.274002F, -298.316986F), new Vector2(-233.677002F, -296.803986F), new Vector2(-234.714005F, -294.899994F)); + builder.AddCubicBezier(new Vector2(-235.751999F, -292.994995F), new Vector2(-236.268997F, -290.852997F), new Vector2(-236.268997F, -288.473999F)); + builder.AddCubicBezier(new Vector2(-236.268997F, -286.093994F), new Vector2(-235.751999F, -283.951996F), new Vector2(-234.714005F, -282.048004F)); + builder.AddCubicBezier(new Vector2(-233.677002F, -280.143005F), new Vector2(-232.274002F, -278.638F), new Vector2(-230.505997F, -277.533997F)); + builder.AddCubicBezier(new Vector2(-228.738998F, -276.428986F), new Vector2(-226.75F, -275.877014F), new Vector2(-224.539001F, -275.877014F)); + builder.AddCubicBezier(new Vector2(-222.669998F, -275.877014F), new Vector2(-221.003006F, -276.259003F), new Vector2(-219.541F, -277.023987F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1584() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-248.203003F, -295.154999F)); + builder.AddCubicBezier(new Vector2(-247.115005F, -296.243011F), new Vector2(-245.722F, -296.786987F), new Vector2(-244.020996F, -296.786987F)); + builder.AddCubicBezier(new Vector2(-243.205002F, -296.786987F), new Vector2(-242.490997F, -296.666992F), new Vector2(-241.878998F, -296.429993F)); + builder.AddCubicBezier(new Vector2(-241.266998F, -296.191986F), new Vector2(-240.705994F, -295.799988F), new Vector2(-240.195999F, -295.256989F)); + builder.AddLine(new Vector2(-237.186996F, -298.368011F)); + builder.AddCubicBezier(new Vector2(-238.037003F, -299.354004F), new Vector2(-238.955002F, -300.058014F), new Vector2(-239.940994F, -300.484009F)); + builder.AddCubicBezier(new Vector2(-240.927994F, -300.908997F), new Vector2(-242.031998F, -301.122009F), new Vector2(-243.255997F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-245.942001F, -301.122009F), new Vector2(-247.998993F, -300.20401F), new Vector2(-249.427002F, -298.368011F)); + builder.AddCubicBezier(new Vector2(-250.854996F, -296.532013F), new Vector2(-251.569F, -294.06601F), new Vector2(-251.569F, -290.972992F)); + builder.AddLine(new Vector2(-249.835007F, -290.157013F)); + builder.AddCubicBezier(new Vector2(-249.835007F, -292.401001F), new Vector2(-249.292007F, -294.06601F), new Vector2(-248.203003F, -295.154999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-249.835007F, -276.386993F)); + builder.AddLine(new Vector2(-249.835007F, -300.612F)); + builder.AddLine(new Vector2(-254.425003F, -300.612F)); + builder.AddLine(new Vector2(-254.425003F, -276.386993F)); + builder.AddLine(new Vector2(-249.835007F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1585() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-261.105988F, -276.386993F)); + builder.AddLine(new Vector2(-261.105988F, -300.612F)); + builder.AddLine(new Vector2(-265.747009F, -300.612F)); + builder.AddLine(new Vector2(-265.747009F, -294.696014F)); + builder.AddLine(new Vector2(-264.880005F, -288.830994F)); + builder.AddLine(new Vector2(-265.747009F, -282.915009F)); + builder.AddLine(new Vector2(-265.747009F, -276.386993F)); + builder.AddLine(new Vector2(-261.105988F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-277.119995F, -281.28299F)); + builder.AddCubicBezier(new Vector2(-278.311005F, -281.997009F), new Vector2(-279.237F, -282.972992F), new Vector2(-279.899994F, -284.214996F)); + builder.AddCubicBezier(new Vector2(-280.562988F, -285.455994F), new Vector2(-280.894012F, -286.893005F), new Vector2(-280.894012F, -288.524994F)); + builder.AddCubicBezier(new Vector2(-280.894012F, -290.122986F), new Vector2(-280.562988F, -291.540985F), new Vector2(-279.899994F, -292.78299F)); + builder.AddCubicBezier(new Vector2(-279.237F, -294.023987F), new Vector2(-278.319F, -295.002014F), new Vector2(-277.145996F, -295.716003F)); + builder.AddCubicBezier(new Vector2(-275.972992F, -296.429993F), new Vector2(-274.621002F, -296.786987F), new Vector2(-273.091003F, -296.786987F)); + builder.AddCubicBezier(new Vector2(-271.561005F, -296.786987F), new Vector2(-270.227997F, -296.437012F), new Vector2(-269.088013F, -295.740997F)); + builder.AddCubicBezier(new Vector2(-267.949005F, -295.044006F), new Vector2(-267.056F, -294.06601F), new Vector2(-266.410004F, -292.80899F)); + builder.AddCubicBezier(new Vector2(-265.765015F, -291.550995F), new Vector2(-265.44101F, -290.105988F), new Vector2(-265.44101F, -288.473999F)); + builder.AddCubicBezier(new Vector2(-265.44101F, -286.05899F), new Vector2(-266.138F, -284.07901F), new Vector2(-267.532013F, -282.532013F)); + builder.AddCubicBezier(new Vector2(-268.927002F, -280.984009F), new Vector2(-270.763F, -280.212006F), new Vector2(-273.040009F, -280.212006F)); + builder.AddCubicBezier(new Vector2(-274.570007F, -280.212006F), new Vector2(-275.929993F, -280.569F), new Vector2(-277.119995F, -281.28299F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-268.858002F, -277.023987F)); + builder.AddCubicBezier(new Vector2(-267.397003F, -277.789001F), new Vector2(-266.231995F, -278.85199F), new Vector2(-265.36499F, -280.212006F)); + builder.AddCubicBezier(new Vector2(-264.497986F, -281.571014F), new Vector2(-264.013F, -283.118988F), new Vector2(-263.911011F, -284.852997F)); + builder.AddLine(new Vector2(-263.911011F, -292.145996F)); + builder.AddCubicBezier(new Vector2(-264.013F, -293.912994F), new Vector2(-264.506012F, -295.467987F), new Vector2(-265.390015F, -296.812012F)); + builder.AddCubicBezier(new Vector2(-266.274994F, -298.154999F), new Vector2(-267.438995F, -299.209015F), new Vector2(-268.884003F, -299.973999F)); + builder.AddCubicBezier(new Vector2(-270.329987F, -300.739014F), new Vector2(-271.968994F, -301.122009F), new Vector2(-273.804993F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-276.049011F, -301.122009F), new Vector2(-278.063995F, -300.561005F), new Vector2(-279.848999F, -299.438995F)); + builder.AddCubicBezier(new Vector2(-281.634003F, -298.316986F), new Vector2(-283.045013F, -296.803986F), new Vector2(-284.082001F, -294.899994F)); + builder.AddCubicBezier(new Vector2(-285.119995F, -292.994995F), new Vector2(-285.636993F, -290.852997F), new Vector2(-285.636993F, -288.473999F)); + builder.AddCubicBezier(new Vector2(-285.636993F, -286.093994F), new Vector2(-285.119995F, -283.951996F), new Vector2(-284.082001F, -282.048004F)); + builder.AddCubicBezier(new Vector2(-283.045013F, -280.143005F), new Vector2(-281.634003F, -278.638F), new Vector2(-279.848999F, -277.533997F)); + builder.AddCubicBezier(new Vector2(-278.063995F, -276.428986F), new Vector2(-276.049011F, -275.877014F), new Vector2(-273.804993F, -275.877014F)); + builder.AddCubicBezier(new Vector2(-271.968994F, -275.877014F), new Vector2(-270.320007F, -276.259003F), new Vector2(-268.858002F, -277.023987F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1586() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-306.674011F, -282.123993F)); + builder.AddCubicBezier(new Vector2(-307.846985F, -282.786987F), new Vector2(-308.765015F, -283.713013F), new Vector2(-309.428009F, -284.903992F)); + builder.AddCubicBezier(new Vector2(-310.091003F, -286.093994F), new Vector2(-310.423004F, -287.45401F), new Vector2(-310.423004F, -288.984009F)); + builder.AddCubicBezier(new Vector2(-310.423004F, -290.514008F), new Vector2(-310.091003F, -291.86499F), new Vector2(-309.428009F, -293.037994F)); + builder.AddCubicBezier(new Vector2(-308.765015F, -294.210999F), new Vector2(-307.855988F, -295.128998F), new Vector2(-306.700012F, -295.791992F)); + builder.AddCubicBezier(new Vector2(-305.545013F, -296.454987F), new Vector2(-304.200989F, -296.786987F), new Vector2(-302.67099F, -296.786987F)); + builder.AddCubicBezier(new Vector2(-301.174988F, -296.786987F), new Vector2(-299.858002F, -296.454987F), new Vector2(-298.717987F, -295.791992F)); + builder.AddCubicBezier(new Vector2(-297.57901F, -295.128998F), new Vector2(-296.696014F, -294.210999F), new Vector2(-296.06601F, -293.037994F)); + builder.AddCubicBezier(new Vector2(-295.437012F, -291.86499F), new Vector2(-295.122986F, -290.496002F), new Vector2(-295.122986F, -288.933014F)); + builder.AddCubicBezier(new Vector2(-295.122986F, -287.368988F), new Vector2(-295.437012F, -286F), new Vector2(-296.06601F, -284.826996F)); + builder.AddCubicBezier(new Vector2(-296.696014F, -283.653992F), new Vector2(-297.571014F, -282.743988F), new Vector2(-298.692993F, -282.098999F)); + builder.AddCubicBezier(new Vector2(-299.815002F, -281.453003F), new Vector2(-301.140991F, -281.130005F), new Vector2(-302.67099F, -281.130005F)); + builder.AddCubicBezier(new Vector2(-304.167999F, -281.130005F), new Vector2(-305.501007F, -281.460999F), new Vector2(-306.674011F, -282.123993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-298.540009F, -277.916992F)); + builder.AddCubicBezier(new Vector2(-297.07901F, -278.664001F), new Vector2(-295.912994F, -279.709015F), new Vector2(-295.04599F, -281.053009F)); + builder.AddCubicBezier(new Vector2(-294.178986F, -282.395996F), new Vector2(-293.695007F, -283.951996F), new Vector2(-293.592987F, -285.720001F)); + builder.AddLine(new Vector2(-293.592987F, -292.145996F)); + builder.AddCubicBezier(new Vector2(-293.695007F, -293.947998F), new Vector2(-294.171997F, -295.519012F), new Vector2(-295.020996F, -296.863007F)); + builder.AddCubicBezier(new Vector2(-295.871002F, -298.205994F), new Vector2(-297.035004F, -299.252014F), new Vector2(-298.514008F, -300F)); + builder.AddCubicBezier(new Vector2(-299.993011F, -300.747009F), new Vector2(-301.684998F, -301.122009F), new Vector2(-303.588989F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-305.765015F, -301.122009F), new Vector2(-307.738007F, -300.585999F), new Vector2(-309.505005F, -299.515015F)); + builder.AddCubicBezier(new Vector2(-311.27301F, -298.444F), new Vector2(-312.658997F, -296.997986F), new Vector2(-313.661011F, -295.179993F)); + builder.AddCubicBezier(new Vector2(-314.664001F, -293.360992F), new Vector2(-315.165985F, -291.29599F), new Vector2(-315.165985F, -288.984009F)); + builder.AddCubicBezier(new Vector2(-315.165985F, -286.67099F), new Vector2(-314.656006F, -284.588989F), new Vector2(-313.635986F, -282.735992F)); + builder.AddCubicBezier(new Vector2(-312.615997F, -280.881989F), new Vector2(-311.230988F, -279.428986F), new Vector2(-309.479004F, -278.376007F)); + builder.AddCubicBezier(new Vector2(-307.727997F, -277.321991F), new Vector2(-305.748993F, -276.795013F), new Vector2(-303.537994F, -276.795013F)); + builder.AddCubicBezier(new Vector2(-301.669006F, -276.795013F), new Vector2(-300.002014F, -277.169006F), new Vector2(-298.540009F, -277.916992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-296.881989F, -267.181F)); + builder.AddCubicBezier(new Vector2(-294.962006F, -268.149994F), new Vector2(-293.466003F, -269.51001F), new Vector2(-292.394989F, -271.260986F)); + builder.AddCubicBezier(new Vector2(-291.324005F, -273.013F), new Vector2(-290.787994F, -275.044006F), new Vector2(-290.787994F, -277.355988F)); + builder.AddLine(new Vector2(-290.787994F, -300.612F)); + builder.AddLine(new Vector2(-295.377991F, -300.612F)); + builder.AddLine(new Vector2(-295.377991F, -294.237F)); + builder.AddLine(new Vector2(-294.562012F, -288.830994F)); + builder.AddLine(new Vector2(-295.377991F, -283.373993F)); + builder.AddLine(new Vector2(-295.377991F, -277.355988F)); + builder.AddCubicBezier(new Vector2(-295.377991F, -275.145996F), new Vector2(-296.109985F, -273.385986F), new Vector2(-297.571014F, -272.076996F)); + builder.AddCubicBezier(new Vector2(-299.03299F, -270.769012F), new Vector2(-300.988007F, -270.114014F), new Vector2(-303.436005F, -270.114014F)); + builder.AddCubicBezier(new Vector2(-305.306F, -270.114014F), new Vector2(-306.921997F, -270.445007F), new Vector2(-308.281006F, -271.108002F)); + builder.AddCubicBezier(new Vector2(-309.640991F, -271.770996F), new Vector2(-310.813995F, -272.733002F), new Vector2(-311.799988F, -273.98999F)); + builder.AddLine(new Vector2(-314.80899F, -270.980988F)); + builder.AddCubicBezier(new Vector2(-313.618988F, -269.31601F), new Vector2(-312.072998F, -268.02301F), new Vector2(-310.167999F, -267.105011F)); + builder.AddCubicBezier(new Vector2(-308.264008F, -266.187012F), new Vector2(-306.054993F, -265.727997F), new Vector2(-303.537994F, -265.727997F)); + builder.AddCubicBezier(new Vector2(-301.022003F, -265.727997F), new Vector2(-298.803009F, -266.212006F), new Vector2(-296.881989F, -267.181F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1587() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-324.346008F, -276.947998F)); + builder.AddCubicBezier(new Vector2(-322.681F, -277.661987F), new Vector2(-321.252991F, -278.699005F), new Vector2(-320.062012F, -280.05899F)); + builder.AddLine(new Vector2(-323.019989F, -283.067993F)); + builder.AddCubicBezier(new Vector2(-323.835999F, -282.115997F), new Vector2(-324.813995F, -281.402008F), new Vector2(-325.953003F, -280.925995F)); + builder.AddCubicBezier(new Vector2(-327.092987F, -280.449005F), new Vector2(-328.34201F, -280.212006F), new Vector2(-329.700989F, -280.212006F)); + builder.AddCubicBezier(new Vector2(-331.333008F, -280.212006F), new Vector2(-332.778992F, -280.559998F), new Vector2(-334.036011F, -281.256989F)); + builder.AddCubicBezier(new Vector2(-335.294006F, -281.953003F), new Vector2(-336.263F, -282.940002F), new Vector2(-336.942993F, -284.214996F)); + builder.AddCubicBezier(new Vector2(-337.623993F, -285.48999F), new Vector2(-337.963013F, -286.97699F), new Vector2(-337.963013F, -288.678009F)); + builder.AddCubicBezier(new Vector2(-337.963013F, -290.342987F), new Vector2(-337.640015F, -291.789001F), new Vector2(-336.993988F, -293.013F)); + builder.AddCubicBezier(new Vector2(-336.348999F, -294.237F), new Vector2(-335.431F, -295.187988F), new Vector2(-334.23999F, -295.868988F)); + builder.AddCubicBezier(new Vector2(-333.049988F, -296.549011F), new Vector2(-331.673004F, -296.889008F), new Vector2(-330.109009F, -296.889008F)); + builder.AddCubicBezier(new Vector2(-328.613007F, -296.889008F), new Vector2(-327.338013F, -296.574005F), new Vector2(-326.283997F, -295.945007F)); + builder.AddCubicBezier(new Vector2(-325.230988F, -295.315002F), new Vector2(-324.415009F, -294.432007F), new Vector2(-323.835999F, -293.292999F)); + builder.AddCubicBezier(new Vector2(-323.257996F, -292.153015F), new Vector2(-322.968994F, -290.769012F), new Vector2(-322.968994F, -289.136993F)); + builder.AddLine(new Vector2(-321.286011F, -290.615997F)); + builder.AddLine(new Vector2(-339.289001F, -290.615997F)); + builder.AddLine(new Vector2(-339.289001F, -286.790985F)); + builder.AddLine(new Vector2(-318.838013F, -286.790985F)); + builder.AddCubicBezier(new Vector2(-318.735992F, -287.266998F), new Vector2(-318.667999F, -287.700012F), new Vector2(-318.634003F, -288.091003F)); + builder.AddCubicBezier(new Vector2(-318.601013F, -288.480988F), new Vector2(-318.583008F, -288.847992F), new Vector2(-318.583008F, -289.187988F)); + builder.AddCubicBezier(new Vector2(-318.583008F, -291.5F), new Vector2(-319.067993F, -293.556F), new Vector2(-320.036987F, -295.359009F)); + builder.AddCubicBezier(new Vector2(-321.006012F, -297.161011F), new Vector2(-322.356995F, -298.571991F), new Vector2(-324.091003F, -299.59201F)); + builder.AddCubicBezier(new Vector2(-325.825012F, -300.612F), new Vector2(-327.796997F, -301.122009F), new Vector2(-330.006989F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-332.352997F, -301.122009F), new Vector2(-334.470001F, -300.567993F), new Vector2(-336.356995F, -299.463989F)); + builder.AddCubicBezier(new Vector2(-338.243988F, -298.359009F), new Vector2(-339.740997F, -296.855011F), new Vector2(-340.845001F, -294.950989F)); + builder.AddCubicBezier(new Vector2(-341.950012F, -293.04599F), new Vector2(-342.502014F, -290.903992F), new Vector2(-342.502014F, -288.524994F)); + builder.AddCubicBezier(new Vector2(-342.502014F, -286.109985F), new Vector2(-341.94101F, -283.951996F), new Vector2(-340.819F, -282.048004F)); + builder.AddCubicBezier(new Vector2(-339.696991F, -280.143005F), new Vector2(-338.175995F, -278.638F), new Vector2(-336.255005F, -277.533997F)); + builder.AddCubicBezier(new Vector2(-334.334991F, -276.428986F), new Vector2(-332.148987F, -275.877014F), new Vector2(-329.700989F, -275.877014F)); + builder.AddCubicBezier(new Vector2(-327.796997F, -275.877014F), new Vector2(-326.011993F, -276.234009F), new Vector2(-324.346008F, -276.947998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1588() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-354.38501F, -295.154999F)); + builder.AddCubicBezier(new Vector2(-353.296997F, -296.243011F), new Vector2(-351.903992F, -296.786987F), new Vector2(-350.203003F, -296.786987F)); + builder.AddCubicBezier(new Vector2(-349.386993F, -296.786987F), new Vector2(-348.673004F, -296.666992F), new Vector2(-348.061005F, -296.429993F)); + builder.AddCubicBezier(new Vector2(-347.449005F, -296.191986F), new Vector2(-346.888F, -295.799988F), new Vector2(-346.377991F, -295.256989F)); + builder.AddLine(new Vector2(-343.368988F, -298.368011F)); + builder.AddCubicBezier(new Vector2(-344.218994F, -299.354004F), new Vector2(-345.136993F, -300.058014F), new Vector2(-346.122986F, -300.484009F)); + builder.AddCubicBezier(new Vector2(-347.109985F, -300.908997F), new Vector2(-348.213989F, -301.122009F), new Vector2(-349.437988F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-352.123993F, -301.122009F), new Vector2(-354.181F, -300.20401F), new Vector2(-355.609009F, -298.368011F)); + builder.AddCubicBezier(new Vector2(-357.036987F, -296.532013F), new Vector2(-357.751007F, -294.06601F), new Vector2(-357.751007F, -290.972992F)); + builder.AddLine(new Vector2(-356.016998F, -290.157013F)); + builder.AddCubicBezier(new Vector2(-356.016998F, -292.401001F), new Vector2(-355.473999F, -294.06601F), new Vector2(-354.38501F, -295.154999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-356.016998F, -276.386993F)); + builder.AddLine(new Vector2(-356.016998F, -300.612F)); + builder.AddLine(new Vector2(-360.606995F, -300.612F)); + builder.AddLine(new Vector2(-360.606995F, -276.386993F)); + builder.AddLine(new Vector2(-356.016998F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1589() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-378.738007F, -277.865997F)); + builder.AddCubicBezier(new Vector2(-377.123993F, -279.191986F), new Vector2(-376.315002F, -280.993988F), new Vector2(-376.315002F, -283.272003F)); + builder.AddCubicBezier(new Vector2(-376.315002F, -284.768005F), new Vector2(-376.630005F, -285.975006F), new Vector2(-377.259003F, -286.893005F)); + builder.AddCubicBezier(new Vector2(-377.889008F, -287.811005F), new Vector2(-378.695007F, -288.541992F), new Vector2(-379.681F, -289.085999F)); + builder.AddCubicBezier(new Vector2(-380.667999F, -289.628998F), new Vector2(-381.70401F, -290.062012F), new Vector2(-382.791992F, -290.385986F)); + builder.AddCubicBezier(new Vector2(-383.881012F, -290.709015F), new Vector2(-384.925995F, -291.023987F), new Vector2(-385.928009F, -291.329987F)); + builder.AddCubicBezier(new Vector2(-386.931F, -291.635986F), new Vector2(-387.739014F, -292.01001F), new Vector2(-388.351013F, -292.451996F)); + builder.AddCubicBezier(new Vector2(-388.963013F, -292.893005F), new Vector2(-389.269012F, -293.52301F), new Vector2(-389.269012F, -294.338989F)); + builder.AddCubicBezier(new Vector2(-389.269012F, -295.121002F), new Vector2(-388.92099F, -295.748993F), new Vector2(-388.223999F, -296.226013F)); + builder.AddCubicBezier(new Vector2(-387.528015F, -296.701996F), new Vector2(-386.515015F, -296.940002F), new Vector2(-385.188995F, -296.940002F)); + builder.AddCubicBezier(new Vector2(-383.932007F, -296.940002F), new Vector2(-382.809998F, -296.701996F), new Vector2(-381.822998F, -296.226013F)); + builder.AddCubicBezier(new Vector2(-380.837006F, -295.748993F), new Vector2(-379.987F, -295.070007F), new Vector2(-379.27301F, -294.186005F)); + builder.AddLine(new Vector2(-376.315002F, -297.144012F)); + builder.AddCubicBezier(new Vector2(-377.266998F, -298.470001F), new Vector2(-378.483002F, -299.463989F), new Vector2(-379.962006F, -300.127014F)); + builder.AddCubicBezier(new Vector2(-381.44101F, -300.790009F), new Vector2(-383.131989F, -301.122009F), new Vector2(-385.036011F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-386.838989F, -301.122009F), new Vector2(-388.38501F, -300.833008F), new Vector2(-389.677002F, -300.255005F)); + builder.AddCubicBezier(new Vector2(-390.970001F, -299.675995F), new Vector2(-391.963989F, -298.85199F), new Vector2(-392.660004F, -297.781006F)); + builder.AddCubicBezier(new Vector2(-393.356995F, -296.709991F), new Vector2(-393.705994F, -295.442993F), new Vector2(-393.705994F, -293.981995F)); + builder.AddCubicBezier(new Vector2(-393.705994F, -292.519989F), new Vector2(-393.393005F, -291.337006F), new Vector2(-392.763F, -290.437012F)); + builder.AddCubicBezier(new Vector2(-392.134003F, -289.536011F), new Vector2(-391.326996F, -288.830994F), new Vector2(-390.339996F, -288.321014F)); + builder.AddCubicBezier(new Vector2(-389.354004F, -287.811005F), new Vector2(-388.308014F, -287.403015F), new Vector2(-387.203003F, -287.096985F)); + builder.AddCubicBezier(new Vector2(-386.098999F, -286.790985F), new Vector2(-385.053986F, -286.476013F), new Vector2(-384.066986F, -286.153015F)); + builder.AddCubicBezier(new Vector2(-383.080994F, -285.82901F), new Vector2(-382.274994F, -285.42099F), new Vector2(-381.644989F, -284.928986F)); + builder.AddCubicBezier(new Vector2(-381.015991F, -284.436005F), new Vector2(-380.700989F, -283.747986F), new Vector2(-380.700989F, -282.864014F)); + builder.AddCubicBezier(new Vector2(-380.700989F, -281.979004F), new Vector2(-381.09201F, -281.290009F), new Vector2(-381.873993F, -280.798004F)); + builder.AddCubicBezier(new Vector2(-382.657013F, -280.304993F), new Vector2(-383.760986F, -280.05899F), new Vector2(-385.188995F, -280.05899F)); + builder.AddCubicBezier(new Vector2(-386.617004F, -280.05899F), new Vector2(-387.910004F, -280.321014F), new Vector2(-389.065002F, -280.848999F)); + builder.AddCubicBezier(new Vector2(-390.221008F, -281.376007F), new Vector2(-391.240997F, -282.183014F), new Vector2(-392.125F, -283.272003F)); + builder.AddLine(new Vector2(-395.083008F, -280.313995F)); + builder.AddCubicBezier(new Vector2(-394.335999F, -279.395996F), new Vector2(-393.459991F, -278.605011F), new Vector2(-392.457001F, -277.941986F)); + builder.AddCubicBezier(new Vector2(-391.454987F, -277.278992F), new Vector2(-390.339996F, -276.769012F), new Vector2(-389.115997F, -276.411987F)); + builder.AddCubicBezier(new Vector2(-387.891998F, -276.054993F), new Vector2(-386.600006F, -275.877014F), new Vector2(-385.23999F, -275.877014F)); + builder.AddCubicBezier(new Vector2(-382.519989F, -275.877014F), new Vector2(-380.352997F, -276.540009F), new Vector2(-378.738007F, -277.865997F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1590() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-420.990997F, -276.386993F)); + builder.AddLine(new Vector2(-413.953003F, -294.644989F)); + builder.AddLine(new Vector2(-415.635986F, -294.644989F)); + builder.AddLine(new Vector2(-408.648987F, -276.386993F)); + builder.AddLine(new Vector2(-405.946014F, -276.386993F)); + builder.AddLine(new Vector2(-396.408997F, -300.612F)); + builder.AddLine(new Vector2(-401.203003F, -300.612F)); + builder.AddLine(new Vector2(-408.139008F, -281.742004F)); + builder.AddLine(new Vector2(-406.609009F, -281.742004F)); + builder.AddLine(new Vector2(-413.493988F, -300.612F)); + builder.AddLine(new Vector2(-416.145996F, -300.612F)); + builder.AddLine(new Vector2(-423.031006F, -281.742004F)); + builder.AddLine(new Vector2(-421.501007F, -281.742004F)); + builder.AddLine(new Vector2(-428.437012F, -300.612F)); + builder.AddLine(new Vector2(-433.230988F, -300.612F)); + builder.AddLine(new Vector2(-423.694F, -276.386993F)); + builder.AddLine(new Vector2(-420.990997F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1591() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-451.692993F, -281.38501F)); + builder.AddCubicBezier(new Vector2(-452.884003F, -282.098999F), new Vector2(-453.817993F, -283.075012F), new Vector2(-454.497986F, -284.316986F)); + builder.AddCubicBezier(new Vector2(-455.178986F, -285.558014F), new Vector2(-455.518005F, -286.97699F), new Vector2(-455.518005F, -288.575989F)); + builder.AddCubicBezier(new Vector2(-455.518005F, -290.139008F), new Vector2(-455.178986F, -291.533997F), new Vector2(-454.497986F, -292.757996F)); + builder.AddCubicBezier(new Vector2(-453.817993F, -293.981995F), new Vector2(-452.884003F, -294.941986F), new Vector2(-451.692993F, -295.639008F)); + builder.AddCubicBezier(new Vector2(-450.502991F, -296.334991F), new Vector2(-449.161011F, -296.684998F), new Vector2(-447.664001F, -296.684998F)); + builder.AddCubicBezier(new Vector2(-446.101013F, -296.684998F), new Vector2(-444.731995F, -296.334991F), new Vector2(-443.55899F, -295.639008F)); + builder.AddCubicBezier(new Vector2(-442.385986F, -294.941986F), new Vector2(-441.450989F, -293.981995F), new Vector2(-440.753998F, -292.757996F)); + builder.AddCubicBezier(new Vector2(-440.058014F, -291.533997F), new Vector2(-439.708008F, -290.139008F), new Vector2(-439.708008F, -288.575989F)); + builder.AddCubicBezier(new Vector2(-439.708008F, -286.97699F), new Vector2(-440.048004F, -285.558014F), new Vector2(-440.727997F, -284.316986F)); + builder.AddCubicBezier(new Vector2(-441.408997F, -283.075012F), new Vector2(-442.342987F, -282.098999F), new Vector2(-443.53299F, -281.38501F)); + builder.AddCubicBezier(new Vector2(-444.723999F, -280.67099F), new Vector2(-446.101013F, -280.313995F), new Vector2(-447.664001F, -280.313995F)); + builder.AddCubicBezier(new Vector2(-449.161011F, -280.313995F), new Vector2(-450.502991F, -280.67099F), new Vector2(-451.692993F, -281.38501F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-441.213013F, -277.559998F)); + builder.AddCubicBezier(new Vector2(-439.292999F, -278.682007F), new Vector2(-437.769989F, -280.203003F), new Vector2(-436.64801F, -282.123993F)); + builder.AddCubicBezier(new Vector2(-435.526001F, -284.044006F), new Vector2(-434.964996F, -286.196014F), new Vector2(-434.964996F, -288.575989F)); + builder.AddCubicBezier(new Vector2(-434.964996F, -290.921997F), new Vector2(-435.526001F, -293.04599F), new Vector2(-436.64801F, -294.950989F)); + builder.AddCubicBezier(new Vector2(-437.769989F, -296.855011F), new Vector2(-439.292999F, -298.359009F), new Vector2(-441.213013F, -299.463989F)); + builder.AddCubicBezier(new Vector2(-443.134003F, -300.567993F), new Vector2(-445.285004F, -301.122009F), new Vector2(-447.664001F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-450.01001F, -301.122009F), new Vector2(-452.13501F, -300.561005F), new Vector2(-454.039001F, -299.438995F)); + builder.AddCubicBezier(new Vector2(-455.944F, -298.316986F), new Vector2(-457.455994F, -296.812012F), new Vector2(-458.578003F, -294.924988F)); + builder.AddCubicBezier(new Vector2(-459.700012F, -293.037994F), new Vector2(-460.260986F, -290.921997F), new Vector2(-460.260986F, -288.575989F)); + builder.AddCubicBezier(new Vector2(-460.260986F, -286.196014F), new Vector2(-459.700012F, -284.044006F), new Vector2(-458.578003F, -282.123993F)); + builder.AddCubicBezier(new Vector2(-457.455994F, -280.203003F), new Vector2(-455.944F, -278.682007F), new Vector2(-454.039001F, -277.559998F)); + builder.AddCubicBezier(new Vector2(-452.13501F, -276.437988F), new Vector2(-450.01001F, -275.877014F), new Vector2(-447.664001F, -275.877014F)); + builder.AddCubicBezier(new Vector2(-445.285004F, -275.877014F), new Vector2(-443.134003F, -276.437988F), new Vector2(-441.213013F, -277.559998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1592() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-465.411987F, -276.386993F)); + builder.AddLine(new Vector2(-465.411987F, -312.800995F)); + builder.AddLine(new Vector2(-470.002014F, -312.800995F)); + builder.AddLine(new Vector2(-470.002014F, -276.386993F)); + builder.AddLine(new Vector2(-465.411987F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1593() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-476.734009F, -276.386993F)); + builder.AddLine(new Vector2(-476.734009F, -312.800995F)); + builder.AddLine(new Vector2(-481.324005F, -312.800995F)); + builder.AddLine(new Vector2(-481.324005F, -276.386993F)); + builder.AddLine(new Vector2(-476.734009F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1594() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-492.084991F, -276.947998F)); + builder.AddCubicBezier(new Vector2(-490.420013F, -277.661987F), new Vector2(-488.992004F, -278.699005F), new Vector2(-487.800995F, -280.05899F)); + builder.AddLine(new Vector2(-490.759003F, -283.067993F)); + builder.AddCubicBezier(new Vector2(-491.575012F, -282.115997F), new Vector2(-492.552002F, -281.402008F), new Vector2(-493.69101F, -280.925995F)); + builder.AddCubicBezier(new Vector2(-494.830994F, -280.449005F), new Vector2(-496.080994F, -280.212006F), new Vector2(-497.440002F, -280.212006F)); + builder.AddCubicBezier(new Vector2(-499.071991F, -280.212006F), new Vector2(-500.518005F, -280.559998F), new Vector2(-501.774994F, -281.256989F)); + builder.AddCubicBezier(new Vector2(-503.03299F, -281.953003F), new Vector2(-504.002014F, -282.940002F), new Vector2(-504.682007F, -284.214996F)); + builder.AddCubicBezier(new Vector2(-505.363007F, -285.48999F), new Vector2(-505.701996F, -286.97699F), new Vector2(-505.701996F, -288.678009F)); + builder.AddCubicBezier(new Vector2(-505.701996F, -290.342987F), new Vector2(-505.378998F, -291.789001F), new Vector2(-504.733002F, -293.013F)); + builder.AddCubicBezier(new Vector2(-504.088013F, -294.237F), new Vector2(-503.170013F, -295.187988F), new Vector2(-501.979004F, -295.868988F)); + builder.AddCubicBezier(new Vector2(-500.789001F, -296.549011F), new Vector2(-499.411987F, -296.889008F), new Vector2(-497.847992F, -296.889008F)); + builder.AddCubicBezier(new Vector2(-496.35199F, -296.889008F), new Vector2(-495.076996F, -296.574005F), new Vector2(-494.02301F, -295.945007F)); + builder.AddCubicBezier(new Vector2(-492.970001F, -295.315002F), new Vector2(-492.153992F, -294.432007F), new Vector2(-491.575012F, -293.292999F)); + builder.AddCubicBezier(new Vector2(-490.997009F, -292.153015F), new Vector2(-490.708008F, -290.769012F), new Vector2(-490.708008F, -289.136993F)); + builder.AddLine(new Vector2(-489.024994F, -290.615997F)); + builder.AddLine(new Vector2(-507.028015F, -290.615997F)); + builder.AddLine(new Vector2(-507.028015F, -286.790985F)); + builder.AddLine(new Vector2(-486.576996F, -286.790985F)); + builder.AddCubicBezier(new Vector2(-486.475006F, -287.266998F), new Vector2(-486.407013F, -287.700012F), new Vector2(-486.372986F, -288.091003F)); + builder.AddCubicBezier(new Vector2(-486.339996F, -288.480988F), new Vector2(-486.321991F, -288.847992F), new Vector2(-486.321991F, -289.187988F)); + builder.AddCubicBezier(new Vector2(-486.321991F, -291.5F), new Vector2(-486.807007F, -293.556F), new Vector2(-487.776001F, -295.359009F)); + builder.AddCubicBezier(new Vector2(-488.744995F, -297.161011F), new Vector2(-490.096008F, -298.571991F), new Vector2(-491.829987F, -299.59201F)); + builder.AddCubicBezier(new Vector2(-493.563995F, -300.612F), new Vector2(-495.536011F, -301.122009F), new Vector2(-497.746002F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-500.09201F, -301.122009F), new Vector2(-502.208008F, -300.567993F), new Vector2(-504.095001F, -299.463989F)); + builder.AddCubicBezier(new Vector2(-505.981995F, -298.359009F), new Vector2(-507.479004F, -296.855011F), new Vector2(-508.583008F, -294.950989F)); + builder.AddCubicBezier(new Vector2(-509.687988F, -293.04599F), new Vector2(-510.240997F, -290.903992F), new Vector2(-510.240997F, -288.524994F)); + builder.AddCubicBezier(new Vector2(-510.240997F, -286.109985F), new Vector2(-509.679993F, -283.951996F), new Vector2(-508.558014F, -282.048004F)); + builder.AddCubicBezier(new Vector2(-507.436005F, -280.143005F), new Vector2(-505.914001F, -278.638F), new Vector2(-503.993011F, -277.533997F)); + builder.AddCubicBezier(new Vector2(-502.072998F, -276.428986F), new Vector2(-499.888F, -275.877014F), new Vector2(-497.440002F, -275.877014F)); + builder.AddCubicBezier(new Vector2(-495.536011F, -275.877014F), new Vector2(-493.751007F, -276.234009F), new Vector2(-492.084991F, -276.947998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1595() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-511.872986F, -296.429993F)); + builder.AddLine(new Vector2(-511.872986F, -300.612F)); + builder.AddLine(new Vector2(-530.130981F, -300.612F)); + builder.AddLine(new Vector2(-530.130981F, -296.429993F)); + builder.AddLine(new Vector2(-511.872986F, -296.429993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-519.573975F, -276.386993F)); + builder.AddLine(new Vector2(-519.573975F, -304.233002F)); + builder.AddCubicBezier(new Vector2(-519.573975F, -305.729004F), new Vector2(-519.174988F, -306.891998F), new Vector2(-518.375977F, -307.726013F)); + builder.AddCubicBezier(new Vector2(-517.578003F, -308.55899F), new Vector2(-516.445984F, -308.976013F), new Vector2(-514.984009F, -308.976013F)); + builder.AddCubicBezier(new Vector2(-514.202026F, -308.976013F), new Vector2(-513.539001F, -308.855988F), new Vector2(-512.994995F, -308.618988F)); + builder.AddCubicBezier(new Vector2(-512.452026F, -308.381012F), new Vector2(-511.958008F, -308.023987F), new Vector2(-511.515991F, -307.548004F)); + builder.AddLine(new Vector2(-508.506989F, -310.506012F)); + builder.AddCubicBezier(new Vector2(-509.356995F, -311.424011F), new Vector2(-510.291992F, -312.119995F), new Vector2(-511.312012F, -312.596985F)); + builder.AddCubicBezier(new Vector2(-512.33197F, -313.072998F), new Vector2(-513.539001F, -313.311005F), new Vector2(-514.932983F, -313.311005F)); + builder.AddCubicBezier(new Vector2(-516.768982F, -313.311005F), new Vector2(-518.383972F, -312.920013F), new Vector2(-519.778015F, -312.138F)); + builder.AddCubicBezier(new Vector2(-521.172974F, -311.355011F), new Vector2(-522.26001F, -310.283997F), new Vector2(-523.041992F, -308.924988F)); + builder.AddCubicBezier(new Vector2(-523.825012F, -307.565002F), new Vector2(-524.215027F, -306F), new Vector2(-524.215027F, -304.233002F)); + builder.AddLine(new Vector2(-524.215027F, -276.386993F)); + builder.AddLine(new Vector2(-519.573975F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1596() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-544.921021F, -276.386993F)); + builder.AddLine(new Vector2(-544.921021F, -312.800995F)); + builder.AddLine(new Vector2(-549.510986F, -312.800995F)); + builder.AddLine(new Vector2(-549.510986F, -276.386993F)); + builder.AddLine(new Vector2(-544.921021F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1597() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-556.192017F, -276.386993F)); + builder.AddLine(new Vector2(-556.192017F, -300.612F)); + builder.AddLine(new Vector2(-560.833008F, -300.612F)); + builder.AddLine(new Vector2(-560.833008F, -294.696014F)); + builder.AddLine(new Vector2(-559.966003F, -288.830994F)); + builder.AddLine(new Vector2(-560.833008F, -282.915009F)); + builder.AddLine(new Vector2(-560.833008F, -276.386993F)); + builder.AddLine(new Vector2(-556.192017F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-572.205994F, -281.28299F)); + builder.AddCubicBezier(new Vector2(-573.396973F, -281.997009F), new Vector2(-574.322998F, -282.972992F), new Vector2(-574.986023F, -284.214996F)); + builder.AddCubicBezier(new Vector2(-575.648987F, -285.455994F), new Vector2(-575.97998F, -286.893005F), new Vector2(-575.97998F, -288.524994F)); + builder.AddCubicBezier(new Vector2(-575.97998F, -290.122986F), new Vector2(-575.648987F, -291.540985F), new Vector2(-574.986023F, -292.78299F)); + builder.AddCubicBezier(new Vector2(-574.322998F, -294.023987F), new Vector2(-573.405029F, -295.002014F), new Vector2(-572.231995F, -295.716003F)); + builder.AddCubicBezier(new Vector2(-571.059021F, -296.429993F), new Vector2(-569.70697F, -296.786987F), new Vector2(-568.177002F, -296.786987F)); + builder.AddCubicBezier(new Vector2(-566.646973F, -296.786987F), new Vector2(-565.314026F, -296.437012F), new Vector2(-564.174011F, -295.740997F)); + builder.AddCubicBezier(new Vector2(-563.034973F, -295.044006F), new Vector2(-562.142029F, -294.06601F), new Vector2(-561.495972F, -292.80899F)); + builder.AddCubicBezier(new Vector2(-560.849976F, -291.550995F), new Vector2(-560.526978F, -290.105988F), new Vector2(-560.526978F, -288.473999F)); + builder.AddCubicBezier(new Vector2(-560.526978F, -286.05899F), new Vector2(-561.223999F, -284.07901F), new Vector2(-562.617981F, -282.532013F)); + builder.AddCubicBezier(new Vector2(-564.013F, -280.984009F), new Vector2(-565.848999F, -280.212006F), new Vector2(-568.125977F, -280.212006F)); + builder.AddCubicBezier(new Vector2(-569.656006F, -280.212006F), new Vector2(-571.015991F, -280.569F), new Vector2(-572.205994F, -281.28299F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-563.94397F, -277.023987F)); + builder.AddCubicBezier(new Vector2(-562.482971F, -277.789001F), new Vector2(-561.317993F, -278.85199F), new Vector2(-560.450989F, -280.212006F)); + builder.AddCubicBezier(new Vector2(-559.583984F, -281.571014F), new Vector2(-559.098999F, -283.118988F), new Vector2(-558.997009F, -284.852997F)); + builder.AddLine(new Vector2(-558.997009F, -292.145996F)); + builder.AddCubicBezier(new Vector2(-559.098999F, -293.912994F), new Vector2(-559.59198F, -295.467987F), new Vector2(-560.476013F, -296.812012F)); + builder.AddCubicBezier(new Vector2(-561.361023F, -298.154999F), new Vector2(-562.525024F, -299.209015F), new Vector2(-563.969971F, -299.973999F)); + builder.AddCubicBezier(new Vector2(-565.414978F, -300.739014F), new Vector2(-567.054993F, -301.122009F), new Vector2(-568.890991F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-571.13501F, -301.122009F), new Vector2(-573.150024F, -300.561005F), new Vector2(-574.934998F, -299.438995F)); + builder.AddCubicBezier(new Vector2(-576.719971F, -298.316986F), new Vector2(-578.130981F, -296.803986F), new Vector2(-579.16803F, -294.899994F)); + builder.AddCubicBezier(new Vector2(-580.205994F, -292.994995F), new Vector2(-580.723022F, -290.852997F), new Vector2(-580.723022F, -288.473999F)); + builder.AddCubicBezier(new Vector2(-580.723022F, -286.093994F), new Vector2(-580.205994F, -283.951996F), new Vector2(-579.16803F, -282.048004F)); + builder.AddCubicBezier(new Vector2(-578.130981F, -280.143005F), new Vector2(-576.719971F, -278.638F), new Vector2(-574.934998F, -277.533997F)); + builder.AddCubicBezier(new Vector2(-573.150024F, -276.428986F), new Vector2(-571.13501F, -275.877014F), new Vector2(-568.890991F, -275.877014F)); + builder.AddCubicBezier(new Vector2(-567.054993F, -275.877014F), new Vector2(-565.406006F, -276.259003F), new Vector2(-563.94397F, -277.023987F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1598() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-602.551025F, -276.386993F)); + builder.AddLine(new Vector2(-602.551025F, -300.612F)); + builder.AddLine(new Vector2(-607.140991F, -300.612F)); + builder.AddLine(new Vector2(-607.140991F, -276.386993F)); + builder.AddLine(new Vector2(-602.551025F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-585.414978F, -276.386993F)); + builder.AddLine(new Vector2(-585.414978F, -291.432007F)); + builder.AddCubicBezier(new Vector2(-585.414978F, -293.096985F), new Vector2(-585.822998F, -294.670013F), new Vector2(-586.638977F, -296.148987F)); + builder.AddCubicBezier(new Vector2(-587.455017F, -297.627991F), new Vector2(-588.56897F, -298.826996F), new Vector2(-589.979004F, -299.744995F)); + builder.AddCubicBezier(new Vector2(-591.390015F, -300.662994F), new Vector2(-593.013977F, -301.122009F), new Vector2(-594.849976F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-596.685974F, -301.122009F), new Vector2(-598.335999F, -300.704987F), new Vector2(-599.796997F, -299.872009F)); + builder.AddCubicBezier(new Vector2(-601.258972F, -299.037994F), new Vector2(-602.39801F, -297.908997F), new Vector2(-603.213989F, -296.480988F)); + builder.AddCubicBezier(new Vector2(-604.030029F, -295.053009F), new Vector2(-604.437988F, -293.42099F), new Vector2(-604.437988F, -291.584991F)); + builder.AddLine(new Vector2(-602.551025F, -290.514008F)); + builder.AddCubicBezier(new Vector2(-602.551025F, -291.738007F), new Vector2(-602.278992F, -292.825989F), new Vector2(-601.734985F, -293.778015F)); + builder.AddCubicBezier(new Vector2(-601.190979F, -294.729004F), new Vector2(-600.442993F, -295.477997F), new Vector2(-599.491028F, -296.022003F)); + builder.AddCubicBezier(new Vector2(-598.539978F, -296.565002F), new Vector2(-597.450989F, -296.838013F), new Vector2(-596.22699F, -296.838013F)); + builder.AddCubicBezier(new Vector2(-594.390991F, -296.838013F), new Vector2(-592.905029F, -296.243011F), new Vector2(-591.765015F, -295.053009F)); + builder.AddCubicBezier(new Vector2(-590.625977F, -293.862F), new Vector2(-590.05603F, -292.350006F), new Vector2(-590.05603F, -290.514008F)); + builder.AddLine(new Vector2(-590.05603F, -276.386993F)); + builder.AddLine(new Vector2(-585.414978F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1599() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-628.968994F, -281.38501F)); + builder.AddCubicBezier(new Vector2(-630.159973F, -282.098999F), new Vector2(-631.093994F, -283.075012F), new Vector2(-631.773987F, -284.316986F)); + builder.AddCubicBezier(new Vector2(-632.453979F, -285.558014F), new Vector2(-632.794006F, -286.97699F), new Vector2(-632.794006F, -288.575989F)); + builder.AddCubicBezier(new Vector2(-632.794006F, -290.139008F), new Vector2(-632.453979F, -291.533997F), new Vector2(-631.773987F, -292.757996F)); + builder.AddCubicBezier(new Vector2(-631.093994F, -293.981995F), new Vector2(-630.159973F, -294.941986F), new Vector2(-628.968994F, -295.639008F)); + builder.AddCubicBezier(new Vector2(-627.778992F, -296.334991F), new Vector2(-626.437012F, -296.684998F), new Vector2(-624.940002F, -296.684998F)); + builder.AddCubicBezier(new Vector2(-623.377014F, -296.684998F), new Vector2(-622.007996F, -296.334991F), new Vector2(-620.835022F, -295.639008F)); + builder.AddCubicBezier(new Vector2(-619.661987F, -294.941986F), new Vector2(-618.72699F, -293.981995F), new Vector2(-618.030029F, -292.757996F)); + builder.AddCubicBezier(new Vector2(-617.333984F, -291.533997F), new Vector2(-616.984009F, -290.139008F), new Vector2(-616.984009F, -288.575989F)); + builder.AddCubicBezier(new Vector2(-616.984009F, -286.97699F), new Vector2(-617.323975F, -285.558014F), new Vector2(-618.004028F, -284.316986F)); + builder.AddCubicBezier(new Vector2(-618.684998F, -283.075012F), new Vector2(-619.619019F, -282.098999F), new Vector2(-620.809021F, -281.38501F)); + builder.AddCubicBezier(new Vector2(-622F, -280.67099F), new Vector2(-623.377014F, -280.313995F), new Vector2(-624.940002F, -280.313995F)); + builder.AddCubicBezier(new Vector2(-626.437012F, -280.313995F), new Vector2(-627.778992F, -280.67099F), new Vector2(-628.968994F, -281.38501F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-618.489014F, -277.559998F)); + builder.AddCubicBezier(new Vector2(-616.56897F, -278.682007F), new Vector2(-615.046021F, -280.203003F), new Vector2(-613.924011F, -282.123993F)); + builder.AddCubicBezier(new Vector2(-612.802002F, -284.044006F), new Vector2(-612.241028F, -286.196014F), new Vector2(-612.241028F, -288.575989F)); + builder.AddCubicBezier(new Vector2(-612.241028F, -290.921997F), new Vector2(-612.802002F, -293.04599F), new Vector2(-613.924011F, -294.950989F)); + builder.AddCubicBezier(new Vector2(-615.046021F, -296.855011F), new Vector2(-616.56897F, -298.359009F), new Vector2(-618.489014F, -299.463989F)); + builder.AddCubicBezier(new Vector2(-620.409973F, -300.567993F), new Vector2(-622.560974F, -301.122009F), new Vector2(-624.940002F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-627.286011F, -301.122009F), new Vector2(-629.411011F, -300.561005F), new Vector2(-631.315002F, -299.438995F)); + builder.AddCubicBezier(new Vector2(-633.219971F, -298.316986F), new Vector2(-634.731995F, -296.812012F), new Vector2(-635.854004F, -294.924988F)); + builder.AddCubicBezier(new Vector2(-636.976013F, -293.037994F), new Vector2(-637.536987F, -290.921997F), new Vector2(-637.536987F, -288.575989F)); + builder.AddCubicBezier(new Vector2(-637.536987F, -286.196014F), new Vector2(-636.976013F, -284.044006F), new Vector2(-635.854004F, -282.123993F)); + builder.AddCubicBezier(new Vector2(-634.731995F, -280.203003F), new Vector2(-633.219971F, -278.682007F), new Vector2(-631.315002F, -277.559998F)); + builder.AddCubicBezier(new Vector2(-629.411011F, -276.437988F), new Vector2(-627.286011F, -275.877014F), new Vector2(-624.940002F, -275.877014F)); + builder.AddCubicBezier(new Vector2(-622.560974F, -275.877014F), new Vector2(-620.409973F, -276.437988F), new Vector2(-618.489014F, -277.559998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1600() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-642.942993F, -306.298004F)); + builder.AddCubicBezier(new Vector2(-642.398987F, -306.859009F), new Vector2(-642.127014F, -307.565002F), new Vector2(-642.127014F, -308.415009F)); + builder.AddCubicBezier(new Vector2(-642.127014F, -309.230988F), new Vector2(-642.398987F, -309.919006F), new Vector2(-642.942993F, -310.480011F)); + builder.AddCubicBezier(new Vector2(-643.487F, -311.040985F), new Vector2(-644.184998F, -311.321991F), new Vector2(-645.033997F, -311.321991F)); + builder.AddCubicBezier(new Vector2(-645.883972F, -311.321991F), new Vector2(-646.580994F, -311.040985F), new Vector2(-647.125F, -310.480011F)); + builder.AddCubicBezier(new Vector2(-647.669006F, -309.919006F), new Vector2(-647.940979F, -309.230988F), new Vector2(-647.940979F, -308.415009F)); + builder.AddCubicBezier(new Vector2(-647.940979F, -307.565002F), new Vector2(-647.669006F, -306.859009F), new Vector2(-647.125F, -306.298004F)); + builder.AddCubicBezier(new Vector2(-646.580994F, -305.737F), new Vector2(-645.883972F, -305.457001F), new Vector2(-645.033997F, -305.457001F)); + builder.AddCubicBezier(new Vector2(-644.184998F, -305.457001F), new Vector2(-643.487F, -305.737F), new Vector2(-642.942993F, -306.298004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-642.739014F, -276.386993F)); + builder.AddLine(new Vector2(-642.739014F, -300.612F)); + builder.AddLine(new Vector2(-647.380005F, -300.612F)); + builder.AddLine(new Vector2(-647.380005F, -276.386993F)); + builder.AddLine(new Vector2(-642.739014F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1601() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-651.867981F, -296.429993F)); + builder.AddLine(new Vector2(-651.867981F, -300.612F)); + builder.AddLine(new Vector2(-668.392029F, -300.612F)); + builder.AddLine(new Vector2(-668.392029F, -296.429993F)); + builder.AddLine(new Vector2(-651.867981F, -296.429993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-657.835022F, -276.386993F)); + builder.AddLine(new Vector2(-657.835022F, -310.760986F)); + builder.AddLine(new Vector2(-662.424988F, -310.760986F)); + builder.AddLine(new Vector2(-662.424988F, -276.386993F)); + builder.AddLine(new Vector2(-657.835022F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1602() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-672.72699F, -276.386993F)); + builder.AddLine(new Vector2(-672.72699F, -300.612F)); + builder.AddLine(new Vector2(-677.367981F, -300.612F)); + builder.AddLine(new Vector2(-677.367981F, -294.696014F)); + builder.AddLine(new Vector2(-676.500977F, -288.830994F)); + builder.AddLine(new Vector2(-677.367981F, -282.915009F)); + builder.AddLine(new Vector2(-677.367981F, -276.386993F)); + builder.AddLine(new Vector2(-672.72699F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-688.741028F, -281.28299F)); + builder.AddCubicBezier(new Vector2(-689.932007F, -281.997009F), new Vector2(-690.857971F, -282.972992F), new Vector2(-691.520996F, -284.214996F)); + builder.AddCubicBezier(new Vector2(-692.184021F, -285.455994F), new Vector2(-692.515015F, -286.893005F), new Vector2(-692.515015F, -288.524994F)); + builder.AddCubicBezier(new Vector2(-692.515015F, -290.122986F), new Vector2(-692.184021F, -291.540985F), new Vector2(-691.520996F, -292.78299F)); + builder.AddCubicBezier(new Vector2(-690.857971F, -294.023987F), new Vector2(-689.939026F, -295.002014F), new Vector2(-688.765991F, -295.716003F)); + builder.AddCubicBezier(new Vector2(-687.593018F, -296.429993F), new Vector2(-686.242004F, -296.786987F), new Vector2(-684.711975F, -296.786987F)); + builder.AddCubicBezier(new Vector2(-683.182007F, -296.786987F), new Vector2(-681.848022F, -296.437012F), new Vector2(-680.708008F, -295.740997F)); + builder.AddCubicBezier(new Vector2(-679.56897F, -295.044006F), new Vector2(-678.677002F, -294.06601F), new Vector2(-678.031006F, -292.80899F)); + builder.AddCubicBezier(new Vector2(-677.38501F, -291.550995F), new Vector2(-677.062012F, -290.105988F), new Vector2(-677.062012F, -288.473999F)); + builder.AddCubicBezier(new Vector2(-677.062012F, -286.05899F), new Vector2(-677.758972F, -284.07901F), new Vector2(-679.153015F, -282.532013F)); + builder.AddCubicBezier(new Vector2(-680.547974F, -280.984009F), new Vector2(-682.383972F, -280.212006F), new Vector2(-684.661011F, -280.212006F)); + builder.AddCubicBezier(new Vector2(-686.190979F, -280.212006F), new Vector2(-687.551025F, -280.569F), new Vector2(-688.741028F, -281.28299F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-680.479004F, -277.023987F)); + builder.AddCubicBezier(new Vector2(-679.018005F, -277.789001F), new Vector2(-677.85199F, -278.85199F), new Vector2(-676.984985F, -280.212006F)); + builder.AddCubicBezier(new Vector2(-676.117981F, -281.571014F), new Vector2(-675.633972F, -283.118988F), new Vector2(-675.531982F, -284.852997F)); + builder.AddLine(new Vector2(-675.531982F, -292.145996F)); + builder.AddCubicBezier(new Vector2(-675.633972F, -293.912994F), new Vector2(-676.127014F, -295.467987F), new Vector2(-677.010986F, -296.812012F)); + builder.AddCubicBezier(new Vector2(-677.895996F, -298.154999F), new Vector2(-679.059998F, -299.209015F), new Vector2(-680.505005F, -299.973999F)); + builder.AddCubicBezier(new Vector2(-681.950012F, -300.739014F), new Vector2(-683.590027F, -301.122009F), new Vector2(-685.426025F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-687.669983F, -301.122009F), new Vector2(-689.684021F, -300.561005F), new Vector2(-691.468994F, -299.438995F)); + builder.AddCubicBezier(new Vector2(-693.254028F, -298.316986F), new Vector2(-694.666016F, -296.803986F), new Vector2(-695.703003F, -294.899994F)); + builder.AddCubicBezier(new Vector2(-696.741028F, -292.994995F), new Vector2(-697.257996F, -290.852997F), new Vector2(-697.257996F, -288.473999F)); + builder.AddCubicBezier(new Vector2(-697.257996F, -286.093994F), new Vector2(-696.741028F, -283.951996F), new Vector2(-695.703003F, -282.048004F)); + builder.AddCubicBezier(new Vector2(-694.666016F, -280.143005F), new Vector2(-693.254028F, -278.638F), new Vector2(-691.468994F, -277.533997F)); + builder.AddCubicBezier(new Vector2(-689.684021F, -276.428986F), new Vector2(-687.669983F, -275.877014F), new Vector2(-685.426025F, -275.877014F)); + builder.AddCubicBezier(new Vector2(-683.590027F, -275.877014F), new Vector2(-681.940979F, -276.259003F), new Vector2(-680.479004F, -277.023987F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1603() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-719.085999F, -276.386993F)); + builder.AddLine(new Vector2(-719.085999F, -300.612F)); + builder.AddLine(new Vector2(-723.676025F, -300.612F)); + builder.AddLine(new Vector2(-723.676025F, -276.386993F)); + builder.AddLine(new Vector2(-719.085999F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-701.950012F, -276.386993F)); + builder.AddLine(new Vector2(-701.950012F, -291.432007F)); + builder.AddCubicBezier(new Vector2(-701.950012F, -293.096985F), new Vector2(-702.357971F, -294.670013F), new Vector2(-703.174011F, -296.148987F)); + builder.AddCubicBezier(new Vector2(-703.98999F, -297.627991F), new Vector2(-705.104004F, -298.826996F), new Vector2(-706.513977F, -299.744995F)); + builder.AddCubicBezier(new Vector2(-707.924988F, -300.662994F), new Vector2(-709.549011F, -301.122009F), new Vector2(-711.38501F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-713.221008F, -301.122009F), new Vector2(-714.870972F, -300.704987F), new Vector2(-716.33197F, -299.872009F)); + builder.AddCubicBezier(new Vector2(-717.794006F, -299.037994F), new Vector2(-718.932983F, -297.908997F), new Vector2(-719.749023F, -296.480988F)); + builder.AddCubicBezier(new Vector2(-720.565002F, -295.053009F), new Vector2(-720.973022F, -293.42099F), new Vector2(-720.973022F, -291.584991F)); + builder.AddLine(new Vector2(-719.085999F, -290.514008F)); + builder.AddCubicBezier(new Vector2(-719.085999F, -291.738007F), new Vector2(-718.814026F, -292.825989F), new Vector2(-718.27002F, -293.778015F)); + builder.AddCubicBezier(new Vector2(-717.726013F, -294.729004F), new Vector2(-716.978027F, -295.477997F), new Vector2(-716.026001F, -296.022003F)); + builder.AddCubicBezier(new Vector2(-715.075012F, -296.565002F), new Vector2(-713.986023F, -296.838013F), new Vector2(-712.762024F, -296.838013F)); + builder.AddCubicBezier(new Vector2(-710.926025F, -296.838013F), new Vector2(-709.439026F, -296.243011F), new Vector2(-708.299011F, -295.053009F)); + builder.AddCubicBezier(new Vector2(-707.159973F, -293.862F), new Vector2(-706.591003F, -292.350006F), new Vector2(-706.591003F, -290.514008F)); + builder.AddLine(new Vector2(-706.591003F, -276.386993F)); + builder.AddLine(new Vector2(-701.950012F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1604() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-738.007019F, -295.154999F)); + builder.AddCubicBezier(new Vector2(-736.919006F, -296.243011F), new Vector2(-735.526001F, -296.786987F), new Vector2(-733.825012F, -296.786987F)); + builder.AddCubicBezier(new Vector2(-733.008972F, -296.786987F), new Vector2(-732.294983F, -296.666992F), new Vector2(-731.682983F, -296.429993F)); + builder.AddCubicBezier(new Vector2(-731.070984F, -296.191986F), new Vector2(-730.51001F, -295.799988F), new Vector2(-730F, -295.256989F)); + builder.AddLine(new Vector2(-726.991028F, -298.368011F)); + builder.AddCubicBezier(new Vector2(-727.841003F, -299.354004F), new Vector2(-728.758972F, -300.058014F), new Vector2(-729.744995F, -300.484009F)); + builder.AddCubicBezier(new Vector2(-730.731995F, -300.908997F), new Vector2(-731.835999F, -301.122009F), new Vector2(-733.059998F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-735.745972F, -301.122009F), new Vector2(-737.802979F, -300.20401F), new Vector2(-739.231018F, -298.368011F)); + builder.AddCubicBezier(new Vector2(-740.658997F, -296.532013F), new Vector2(-741.372986F, -294.06601F), new Vector2(-741.372986F, -290.972992F)); + builder.AddLine(new Vector2(-739.638977F, -290.157013F)); + builder.AddCubicBezier(new Vector2(-739.638977F, -292.401001F), new Vector2(-739.096008F, -294.06601F), new Vector2(-738.007019F, -295.154999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-739.638977F, -276.386993F)); + builder.AddLine(new Vector2(-739.638977F, -300.612F)); + builder.AddLine(new Vector2(-744.229004F, -300.612F)); + builder.AddLine(new Vector2(-744.229004F, -276.386993F)); + builder.AddLine(new Vector2(-739.638977F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1605() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-754.98999F, -276.947998F)); + builder.AddCubicBezier(new Vector2(-753.325012F, -277.661987F), new Vector2(-751.895996F, -278.699005F), new Vector2(-750.705994F, -280.05899F)); + builder.AddLine(new Vector2(-753.664001F, -283.067993F)); + builder.AddCubicBezier(new Vector2(-754.47998F, -282.115997F), new Vector2(-755.458008F, -281.402008F), new Vector2(-756.596985F, -280.925995F)); + builder.AddCubicBezier(new Vector2(-757.737F, -280.449005F), new Vector2(-758.986023F, -280.212006F), new Vector2(-760.344971F, -280.212006F)); + builder.AddCubicBezier(new Vector2(-761.97699F, -280.212006F), new Vector2(-763.421997F, -280.559998F), new Vector2(-764.679993F, -281.256989F)); + builder.AddCubicBezier(new Vector2(-765.937988F, -281.953003F), new Vector2(-766.906982F, -282.940002F), new Vector2(-767.586975F, -284.214996F)); + builder.AddCubicBezier(new Vector2(-768.268005F, -285.48999F), new Vector2(-768.606995F, -286.97699F), new Vector2(-768.606995F, -288.678009F)); + builder.AddCubicBezier(new Vector2(-768.606995F, -290.342987F), new Vector2(-768.283997F, -291.789001F), new Vector2(-767.638F, -293.013F)); + builder.AddCubicBezier(new Vector2(-766.992981F, -294.237F), new Vector2(-766.075012F, -295.187988F), new Vector2(-764.883972F, -295.868988F)); + builder.AddCubicBezier(new Vector2(-763.69397F, -296.549011F), new Vector2(-762.317017F, -296.889008F), new Vector2(-760.752991F, -296.889008F)); + builder.AddCubicBezier(new Vector2(-759.257019F, -296.889008F), new Vector2(-757.981995F, -296.574005F), new Vector2(-756.927979F, -295.945007F)); + builder.AddCubicBezier(new Vector2(-755.875F, -295.315002F), new Vector2(-755.057983F, -294.432007F), new Vector2(-754.47998F, -293.292999F)); + builder.AddCubicBezier(new Vector2(-753.901978F, -292.153015F), new Vector2(-753.612976F, -290.769012F), new Vector2(-753.612976F, -289.136993F)); + builder.AddLine(new Vector2(-751.929993F, -290.615997F)); + builder.AddLine(new Vector2(-769.932983F, -290.615997F)); + builder.AddLine(new Vector2(-769.932983F, -286.790985F)); + builder.AddLine(new Vector2(-749.481995F, -286.790985F)); + builder.AddCubicBezier(new Vector2(-749.380005F, -287.266998F), new Vector2(-749.312012F, -287.700012F), new Vector2(-749.278015F, -288.091003F)); + builder.AddCubicBezier(new Vector2(-749.244995F, -288.480988F), new Vector2(-749.22699F, -288.847992F), new Vector2(-749.22699F, -289.187988F)); + builder.AddCubicBezier(new Vector2(-749.22699F, -291.5F), new Vector2(-749.711975F, -293.556F), new Vector2(-750.68103F, -295.359009F)); + builder.AddCubicBezier(new Vector2(-751.650024F, -297.161011F), new Vector2(-753.000977F, -298.571991F), new Vector2(-754.734985F, -299.59201F)); + builder.AddCubicBezier(new Vector2(-756.468994F, -300.612F), new Vector2(-758.440979F, -301.122009F), new Vector2(-760.651001F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-762.997009F, -301.122009F), new Vector2(-765.114014F, -300.567993F), new Vector2(-767.000977F, -299.463989F)); + builder.AddCubicBezier(new Vector2(-768.888F, -298.359009F), new Vector2(-770.38501F, -296.855011F), new Vector2(-771.489014F, -294.950989F)); + builder.AddCubicBezier(new Vector2(-772.593994F, -293.04599F), new Vector2(-773.145996F, -290.903992F), new Vector2(-773.145996F, -288.524994F)); + builder.AddCubicBezier(new Vector2(-773.145996F, -286.109985F), new Vector2(-772.585022F, -283.951996F), new Vector2(-771.463013F, -282.048004F)); + builder.AddCubicBezier(new Vector2(-770.341003F, -280.143005F), new Vector2(-768.820007F, -278.638F), new Vector2(-766.898987F, -277.533997F)); + builder.AddCubicBezier(new Vector2(-764.979004F, -276.428986F), new Vector2(-762.79303F, -275.877014F), new Vector2(-760.344971F, -275.877014F)); + builder.AddCubicBezier(new Vector2(-758.440979F, -275.877014F), new Vector2(-756.656006F, -276.234009F), new Vector2(-754.98999F, -276.947998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1606() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-775.288025F, -296.429993F)); + builder.AddLine(new Vector2(-775.288025F, -300.612F)); + builder.AddLine(new Vector2(-791.812012F, -300.612F)); + builder.AddLine(new Vector2(-791.812012F, -296.429993F)); + builder.AddLine(new Vector2(-775.288025F, -296.429993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-781.255005F, -276.386993F)); + builder.AddLine(new Vector2(-781.255005F, -310.760986F)); + builder.AddLine(new Vector2(-785.844971F, -310.760986F)); + builder.AddLine(new Vector2(-785.844971F, -276.386993F)); + builder.AddLine(new Vector2(-781.255005F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1607() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-812.619995F, -276.386993F)); + builder.AddLine(new Vector2(-812.619995F, -300.612F)); + builder.AddLine(new Vector2(-817.210022F, -300.612F)); + builder.AddLine(new Vector2(-817.210022F, -276.386993F)); + builder.AddLine(new Vector2(-812.619995F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-795.484009F, -276.386993F)); + builder.AddLine(new Vector2(-795.484009F, -291.432007F)); + builder.AddCubicBezier(new Vector2(-795.484009F, -293.096985F), new Vector2(-795.892029F, -294.670013F), new Vector2(-796.708008F, -296.148987F)); + builder.AddCubicBezier(new Vector2(-797.523987F, -297.627991F), new Vector2(-798.638F, -298.826996F), new Vector2(-800.047974F, -299.744995F)); + builder.AddCubicBezier(new Vector2(-801.458984F, -300.662994F), new Vector2(-803.083008F, -301.122009F), new Vector2(-804.919006F, -301.122009F)); + builder.AddCubicBezier(new Vector2(-806.755005F, -301.122009F), new Vector2(-808.405029F, -300.704987F), new Vector2(-809.866028F, -299.872009F)); + builder.AddCubicBezier(new Vector2(-811.328003F, -299.037994F), new Vector2(-812.46698F, -297.908997F), new Vector2(-813.28302F, -296.480988F)); + builder.AddCubicBezier(new Vector2(-814.098999F, -295.053009F), new Vector2(-814.507019F, -293.42099F), new Vector2(-814.507019F, -291.584991F)); + builder.AddLine(new Vector2(-812.619995F, -290.514008F)); + builder.AddCubicBezier(new Vector2(-812.619995F, -291.738007F), new Vector2(-812.348022F, -292.825989F), new Vector2(-811.804016F, -293.778015F)); + builder.AddCubicBezier(new Vector2(-811.26001F, -294.729004F), new Vector2(-810.512024F, -295.477997F), new Vector2(-809.559998F, -296.022003F)); + builder.AddCubicBezier(new Vector2(-808.609009F, -296.565002F), new Vector2(-807.52002F, -296.838013F), new Vector2(-806.296021F, -296.838013F)); + builder.AddCubicBezier(new Vector2(-804.460022F, -296.838013F), new Vector2(-802.973022F, -296.243011F), new Vector2(-801.833008F, -295.053009F)); + builder.AddCubicBezier(new Vector2(-800.69397F, -293.862F), new Vector2(-800.125F, -292.350006F), new Vector2(-800.125F, -290.514008F)); + builder.AddLine(new Vector2(-800.125F, -276.386993F)); + builder.AddLine(new Vector2(-795.484009F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1608() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-824.197021F, -306.298004F)); + builder.AddCubicBezier(new Vector2(-823.653015F, -306.859009F), new Vector2(-823.380981F, -307.565002F), new Vector2(-823.380981F, -308.415009F)); + builder.AddCubicBezier(new Vector2(-823.380981F, -309.230988F), new Vector2(-823.653015F, -309.919006F), new Vector2(-824.197021F, -310.480011F)); + builder.AddCubicBezier(new Vector2(-824.741028F, -311.040985F), new Vector2(-825.439026F, -311.321991F), new Vector2(-826.288025F, -311.321991F)); + builder.AddCubicBezier(new Vector2(-827.138F, -311.321991F), new Vector2(-827.835022F, -311.040985F), new Vector2(-828.379028F, -310.480011F)); + builder.AddCubicBezier(new Vector2(-828.922974F, -309.919006F), new Vector2(-829.195007F, -309.230988F), new Vector2(-829.195007F, -308.415009F)); + builder.AddCubicBezier(new Vector2(-829.195007F, -307.565002F), new Vector2(-828.922974F, -306.859009F), new Vector2(-828.379028F, -306.298004F)); + builder.AddCubicBezier(new Vector2(-827.835022F, -305.737F), new Vector2(-827.138F, -305.457001F), new Vector2(-826.288025F, -305.457001F)); + builder.AddCubicBezier(new Vector2(-825.439026F, -305.457001F), new Vector2(-824.741028F, -305.737F), new Vector2(-824.197021F, -306.298004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-823.992981F, -276.386993F)); + builder.AddLine(new Vector2(-823.992981F, -300.612F)); + builder.AddLine(new Vector2(-828.633972F, -300.612F)); + builder.AddLine(new Vector2(-828.633972F, -276.386993F)); + builder.AddLine(new Vector2(-823.992981F, -276.386993F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1609() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(634.76001F, -342.584991F)); + builder.AddCubicBezier(new Vector2(633.56897F, -343.299011F), new Vector2(632.63501F, -344.274994F), new Vector2(631.955017F, -345.516998F)); + builder.AddCubicBezier(new Vector2(631.275024F, -346.757996F), new Vector2(630.934998F, -348.177002F), new Vector2(630.934998F, -349.776001F)); + builder.AddCubicBezier(new Vector2(630.934998F, -351.338989F), new Vector2(631.275024F, -352.734009F), new Vector2(631.955017F, -353.958008F)); + builder.AddCubicBezier(new Vector2(632.63501F, -355.182007F), new Vector2(633.56897F, -356.141998F), new Vector2(634.76001F, -356.838989F)); + builder.AddCubicBezier(new Vector2(635.950012F, -357.535004F), new Vector2(637.291992F, -357.88501F), new Vector2(638.789001F, -357.88501F)); + builder.AddCubicBezier(new Vector2(640.35199F, -357.88501F), new Vector2(641.721008F, -357.535004F), new Vector2(642.893982F, -356.838989F)); + builder.AddCubicBezier(new Vector2(644.067017F, -356.141998F), new Vector2(645.002014F, -355.182007F), new Vector2(645.698975F, -353.958008F)); + builder.AddCubicBezier(new Vector2(646.39502F, -352.734009F), new Vector2(646.744995F, -351.338989F), new Vector2(646.744995F, -349.776001F)); + builder.AddCubicBezier(new Vector2(646.744995F, -348.177002F), new Vector2(646.405029F, -346.757996F), new Vector2(645.724976F, -345.516998F)); + builder.AddCubicBezier(new Vector2(645.044006F, -344.274994F), new Vector2(644.109985F, -343.299011F), new Vector2(642.919983F, -342.584991F)); + builder.AddCubicBezier(new Vector2(641.729004F, -341.871002F), new Vector2(640.35199F, -341.514008F), new Vector2(638.789001F, -341.514008F)); + builder.AddCubicBezier(new Vector2(637.291992F, -341.514008F), new Vector2(635.950012F, -341.871002F), new Vector2(634.76001F, -342.584991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(645.23999F, -338.76001F)); + builder.AddCubicBezier(new Vector2(647.159973F, -339.881989F), new Vector2(648.682983F, -341.403015F), new Vector2(649.804993F, -343.324005F)); + builder.AddCubicBezier(new Vector2(650.927002F, -345.243988F), new Vector2(651.487976F, -347.395996F), new Vector2(651.487976F, -349.776001F)); + builder.AddCubicBezier(new Vector2(651.487976F, -352.122009F), new Vector2(650.927002F, -354.246002F), new Vector2(649.804993F, -356.151001F)); + builder.AddCubicBezier(new Vector2(648.682983F, -358.054993F), new Vector2(647.159973F, -359.55899F), new Vector2(645.23999F, -360.664001F)); + builder.AddCubicBezier(new Vector2(643.31897F, -361.768005F), new Vector2(641.16803F, -362.321991F), new Vector2(638.789001F, -362.321991F)); + builder.AddCubicBezier(new Vector2(636.442993F, -362.321991F), new Vector2(634.317993F, -361.760986F), new Vector2(632.414001F, -360.639008F)); + builder.AddCubicBezier(new Vector2(630.508972F, -359.516998F), new Vector2(628.997009F, -358.011993F), new Vector2(627.875F, -356.125F)); + builder.AddCubicBezier(new Vector2(626.752991F, -354.238007F), new Vector2(626.192017F, -352.122009F), new Vector2(626.192017F, -349.776001F)); + builder.AddCubicBezier(new Vector2(626.192017F, -347.395996F), new Vector2(626.752991F, -345.243988F), new Vector2(627.875F, -343.324005F)); + builder.AddCubicBezier(new Vector2(628.997009F, -341.403015F), new Vector2(630.508972F, -339.881989F), new Vector2(632.414001F, -338.76001F)); + builder.AddCubicBezier(new Vector2(634.317993F, -337.638F), new Vector2(636.442993F, -337.076996F), new Vector2(638.789001F, -337.076996F)); + builder.AddCubicBezier(new Vector2(641.16803F, -337.076996F), new Vector2(643.31897F, -337.638F), new Vector2(645.23999F, -338.76001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1610() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(624.049988F, -357.630005F)); + builder.AddLine(new Vector2(624.049988F, -361.812012F)); + builder.AddLine(new Vector2(607.526001F, -361.812012F)); + builder.AddLine(new Vector2(607.526001F, -357.630005F)); + builder.AddLine(new Vector2(624.049988F, -357.630005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(618.083008F, -337.587006F)); + builder.AddLine(new Vector2(618.083008F, -371.960999F)); + builder.AddLine(new Vector2(613.492981F, -371.960999F)); + builder.AddLine(new Vector2(613.492981F, -337.587006F)); + builder.AddLine(new Vector2(618.083008F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1611() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(591.638977F, -339.06601F)); + builder.AddCubicBezier(new Vector2(593.252991F, -340.391998F), new Vector2(594.062012F, -342.194F), new Vector2(594.062012F, -344.471985F)); + builder.AddCubicBezier(new Vector2(594.062012F, -345.967987F), new Vector2(593.747009F, -347.174988F), new Vector2(593.117981F, -348.092987F)); + builder.AddCubicBezier(new Vector2(592.487976F, -349.010986F), new Vector2(591.682007F, -349.742004F), new Vector2(590.695984F, -350.286011F)); + builder.AddCubicBezier(new Vector2(589.708984F, -350.82901F), new Vector2(588.672974F, -351.261993F), new Vector2(587.585022F, -351.585999F)); + builder.AddCubicBezier(new Vector2(586.495972F, -351.908997F), new Vector2(585.450989F, -352.223999F), new Vector2(584.447998F, -352.529999F)); + builder.AddCubicBezier(new Vector2(583.445007F, -352.835999F), new Vector2(582.638F, -353.209991F), new Vector2(582.026001F, -353.652008F)); + builder.AddCubicBezier(new Vector2(581.414001F, -354.092987F), new Vector2(581.107971F, -354.722992F), new Vector2(581.107971F, -355.539001F)); + builder.AddCubicBezier(new Vector2(581.107971F, -356.321014F), new Vector2(581.455994F, -356.949005F), new Vector2(582.153015F, -357.425995F)); + builder.AddCubicBezier(new Vector2(582.848999F, -357.902008F), new Vector2(583.862F, -358.140015F), new Vector2(585.187988F, -358.140015F)); + builder.AddCubicBezier(new Vector2(586.445984F, -358.140015F), new Vector2(587.567017F, -357.902008F), new Vector2(588.554016F, -357.425995F)); + builder.AddCubicBezier(new Vector2(589.539978F, -356.949005F), new Vector2(590.390015F, -356.269989F), new Vector2(591.104004F, -355.385986F)); + builder.AddLine(new Vector2(594.062012F, -358.343994F)); + builder.AddCubicBezier(new Vector2(593.109985F, -359.670013F), new Vector2(591.893982F, -360.664001F), new Vector2(590.414978F, -361.326996F)); + builder.AddCubicBezier(new Vector2(588.935974F, -361.98999F), new Vector2(587.244995F, -362.321991F), new Vector2(585.341003F, -362.321991F)); + builder.AddCubicBezier(new Vector2(583.538025F, -362.321991F), new Vector2(581.992004F, -362.03299F), new Vector2(580.700012F, -361.454987F)); + builder.AddCubicBezier(new Vector2(579.406982F, -360.876007F), new Vector2(578.411987F, -360.052002F), new Vector2(577.716003F, -358.980988F)); + builder.AddCubicBezier(new Vector2(577.018982F, -357.910004F), new Vector2(576.671021F, -356.643005F), new Vector2(576.671021F, -355.182007F)); + builder.AddCubicBezier(new Vector2(576.671021F, -353.720001F), new Vector2(576.984009F, -352.536987F), new Vector2(577.614014F, -351.636993F)); + builder.AddCubicBezier(new Vector2(578.242981F, -350.735992F), new Vector2(579.049988F, -350.031006F), new Vector2(580.036987F, -349.520996F)); + builder.AddCubicBezier(new Vector2(581.02301F, -349.010986F), new Vector2(582.067993F, -348.602997F), new Vector2(583.172974F, -348.296997F)); + builder.AddCubicBezier(new Vector2(584.276978F, -347.990997F), new Vector2(585.322998F, -347.675995F), new Vector2(586.309998F, -347.352997F)); + builder.AddCubicBezier(new Vector2(587.296021F, -347.028992F), new Vector2(588.10199F, -346.621002F), new Vector2(588.731995F, -346.128998F)); + builder.AddCubicBezier(new Vector2(589.361023F, -345.635986F), new Vector2(589.676025F, -344.947998F), new Vector2(589.676025F, -344.063995F)); + builder.AddCubicBezier(new Vector2(589.676025F, -343.178986F), new Vector2(589.284973F, -342.48999F), new Vector2(588.502991F, -341.997986F)); + builder.AddCubicBezier(new Vector2(587.719971F, -341.505005F), new Vector2(586.616028F, -341.259003F), new Vector2(585.187988F, -341.259003F)); + builder.AddCubicBezier(new Vector2(583.76001F, -341.259003F), new Vector2(582.46698F, -341.520996F), new Vector2(581.312012F, -342.049011F)); + builder.AddCubicBezier(new Vector2(580.156006F, -342.575989F), new Vector2(579.135986F, -343.382996F), new Vector2(578.252014F, -344.471985F)); + builder.AddLine(new Vector2(575.294006F, -341.514008F)); + builder.AddCubicBezier(new Vector2(576.041016F, -340.596008F), new Vector2(576.916992F, -339.804993F), new Vector2(577.919983F, -339.141998F)); + builder.AddCubicBezier(new Vector2(578.921997F, -338.479004F), new Vector2(580.036987F, -337.968994F), new Vector2(581.260986F, -337.612F)); + builder.AddCubicBezier(new Vector2(582.484985F, -337.255005F), new Vector2(583.776978F, -337.076996F), new Vector2(585.137024F, -337.076996F)); + builder.AddCubicBezier(new Vector2(587.856995F, -337.076996F), new Vector2(590.023987F, -337.73999F), new Vector2(591.638977F, -339.06601F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1612() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(569.862F, -339.06601F)); + builder.AddCubicBezier(new Vector2(571.476013F, -340.391998F), new Vector2(572.284973F, -342.194F), new Vector2(572.284973F, -344.471985F)); + builder.AddCubicBezier(new Vector2(572.284973F, -345.967987F), new Vector2(571.969971F, -347.174988F), new Vector2(571.341003F, -348.092987F)); + builder.AddCubicBezier(new Vector2(570.710999F, -349.010986F), new Vector2(569.905029F, -349.742004F), new Vector2(568.919006F, -350.286011F)); + builder.AddCubicBezier(new Vector2(567.932007F, -350.82901F), new Vector2(566.895996F, -351.261993F), new Vector2(565.807983F, -351.585999F)); + builder.AddCubicBezier(new Vector2(564.718994F, -351.908997F), new Vector2(563.674011F, -352.223999F), new Vector2(562.671021F, -352.529999F)); + builder.AddCubicBezier(new Vector2(561.66803F, -352.835999F), new Vector2(560.861023F, -353.209991F), new Vector2(560.249023F, -353.652008F)); + builder.AddCubicBezier(new Vector2(559.637024F, -354.092987F), new Vector2(559.330994F, -354.722992F), new Vector2(559.330994F, -355.539001F)); + builder.AddCubicBezier(new Vector2(559.330994F, -356.321014F), new Vector2(559.679016F, -356.949005F), new Vector2(560.375977F, -357.425995F)); + builder.AddCubicBezier(new Vector2(561.072021F, -357.902008F), new Vector2(562.085022F, -358.140015F), new Vector2(563.411011F, -358.140015F)); + builder.AddCubicBezier(new Vector2(564.669006F, -358.140015F), new Vector2(565.789978F, -357.902008F), new Vector2(566.776978F, -357.425995F)); + builder.AddCubicBezier(new Vector2(567.763F, -356.949005F), new Vector2(568.612976F, -356.269989F), new Vector2(569.327026F, -355.385986F)); + builder.AddLine(new Vector2(572.284973F, -358.343994F)); + builder.AddCubicBezier(new Vector2(571.333008F, -359.670013F), new Vector2(570.117004F, -360.664001F), new Vector2(568.638F, -361.326996F)); + builder.AddCubicBezier(new Vector2(567.158997F, -361.98999F), new Vector2(565.468018F, -362.321991F), new Vector2(563.564026F, -362.321991F)); + builder.AddCubicBezier(new Vector2(561.760986F, -362.321991F), new Vector2(560.215027F, -362.03299F), new Vector2(558.922974F, -361.454987F)); + builder.AddCubicBezier(new Vector2(557.630005F, -360.876007F), new Vector2(556.63501F, -360.052002F), new Vector2(555.939026F, -358.980988F)); + builder.AddCubicBezier(new Vector2(555.242004F, -357.910004F), new Vector2(554.893982F, -356.643005F), new Vector2(554.893982F, -355.182007F)); + builder.AddCubicBezier(new Vector2(554.893982F, -353.720001F), new Vector2(555.20697F, -352.536987F), new Vector2(555.836975F, -351.636993F)); + builder.AddCubicBezier(new Vector2(556.466003F, -350.735992F), new Vector2(557.27301F, -350.031006F), new Vector2(558.26001F, -349.520996F)); + builder.AddCubicBezier(new Vector2(559.245972F, -349.010986F), new Vector2(560.291016F, -348.602997F), new Vector2(561.395996F, -348.296997F)); + builder.AddCubicBezier(new Vector2(562.5F, -347.990997F), new Vector2(563.546021F, -347.675995F), new Vector2(564.53302F, -347.352997F)); + builder.AddCubicBezier(new Vector2(565.518982F, -347.028992F), new Vector2(566.325012F, -346.621002F), new Vector2(566.955017F, -346.128998F)); + builder.AddCubicBezier(new Vector2(567.583984F, -345.635986F), new Vector2(567.898987F, -344.947998F), new Vector2(567.898987F, -344.063995F)); + builder.AddCubicBezier(new Vector2(567.898987F, -343.178986F), new Vector2(567.507996F, -342.48999F), new Vector2(566.726013F, -341.997986F)); + builder.AddCubicBezier(new Vector2(565.942993F, -341.505005F), new Vector2(564.838989F, -341.259003F), new Vector2(563.411011F, -341.259003F)); + builder.AddCubicBezier(new Vector2(561.982971F, -341.259003F), new Vector2(560.690002F, -341.520996F), new Vector2(559.534973F, -342.049011F)); + builder.AddCubicBezier(new Vector2(558.379028F, -342.575989F), new Vector2(557.359009F, -343.382996F), new Vector2(556.474976F, -344.471985F)); + builder.AddLine(new Vector2(553.517029F, -341.514008F)); + builder.AddCubicBezier(new Vector2(554.263977F, -340.596008F), new Vector2(555.140015F, -339.804993F), new Vector2(556.143005F, -339.141998F)); + builder.AddCubicBezier(new Vector2(557.14502F, -338.479004F), new Vector2(558.26001F, -337.968994F), new Vector2(559.484009F, -337.612F)); + builder.AddCubicBezier(new Vector2(560.708008F, -337.255005F), new Vector2(562F, -337.076996F), new Vector2(563.359985F, -337.076996F)); + builder.AddCubicBezier(new Vector2(566.080017F, -337.076996F), new Vector2(568.247009F, -337.73999F), new Vector2(569.862F, -339.06601F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1613() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(544.89801F, -338.14801F)); + builder.AddCubicBezier(new Vector2(546.562988F, -338.862F), new Vector2(547.992004F, -339.898987F), new Vector2(549.182007F, -341.259003F)); + builder.AddLine(new Vector2(546.223999F, -344.268005F)); + builder.AddCubicBezier(new Vector2(545.40802F, -343.31601F), new Vector2(544.43103F, -342.60199F), new Vector2(543.291992F, -342.126007F)); + builder.AddCubicBezier(new Vector2(542.151978F, -341.648987F), new Vector2(540.901978F, -341.411987F), new Vector2(539.54303F, -341.411987F)); + builder.AddCubicBezier(new Vector2(537.911011F, -341.411987F), new Vector2(536.466003F, -341.76001F), new Vector2(535.208008F, -342.457001F)); + builder.AddCubicBezier(new Vector2(533.950012F, -343.153015F), new Vector2(532.981018F, -344.140015F), new Vector2(532.301025F, -345.415009F)); + builder.AddCubicBezier(new Vector2(531.619995F, -346.690002F), new Vector2(531.281006F, -348.177002F), new Vector2(531.281006F, -349.877991F)); + builder.AddCubicBezier(new Vector2(531.281006F, -351.542999F), new Vector2(531.604004F, -352.989014F), new Vector2(532.25F, -354.213013F)); + builder.AddCubicBezier(new Vector2(532.89502F, -355.437012F), new Vector2(533.812988F, -356.388F), new Vector2(535.004028F, -357.069F)); + builder.AddCubicBezier(new Vector2(536.19397F, -357.748993F), new Vector2(537.570984F, -358.088989F), new Vector2(539.13501F, -358.088989F)); + builder.AddCubicBezier(new Vector2(540.630981F, -358.088989F), new Vector2(541.906006F, -357.773987F), new Vector2(542.960022F, -357.144989F)); + builder.AddCubicBezier(new Vector2(544.013F, -356.515015F), new Vector2(544.830017F, -355.631989F), new Vector2(545.40802F, -354.493011F)); + builder.AddCubicBezier(new Vector2(545.986023F, -353.352997F), new Vector2(546.275024F, -351.968994F), new Vector2(546.275024F, -350.337006F)); + builder.AddLine(new Vector2(547.958008F, -351.81601F)); + builder.AddLine(new Vector2(529.955017F, -351.81601F)); + builder.AddLine(new Vector2(529.955017F, -347.990997F)); + builder.AddLine(new Vector2(550.406006F, -347.990997F)); + builder.AddCubicBezier(new Vector2(550.507996F, -348.46701F), new Vector2(550.575989F, -348.899994F), new Vector2(550.609985F, -349.290985F)); + builder.AddCubicBezier(new Vector2(550.643005F, -349.681F), new Vector2(550.661011F, -350.048004F), new Vector2(550.661011F, -350.388F)); + builder.AddCubicBezier(new Vector2(550.661011F, -352.700012F), new Vector2(550.177002F, -354.756012F), new Vector2(549.208008F, -356.55899F)); + builder.AddCubicBezier(new Vector2(548.239014F, -358.360992F), new Vector2(546.887024F, -359.772003F), new Vector2(545.153015F, -360.791992F)); + builder.AddCubicBezier(new Vector2(543.419006F, -361.812012F), new Vector2(541.447021F, -362.321991F), new Vector2(539.237F, -362.321991F)); + builder.AddCubicBezier(new Vector2(536.890991F, -362.321991F), new Vector2(534.775024F, -361.768005F), new Vector2(532.888F, -360.664001F)); + builder.AddCubicBezier(new Vector2(531.000977F, -359.55899F), new Vector2(529.504028F, -358.054993F), new Vector2(528.400024F, -356.151001F)); + builder.AddCubicBezier(new Vector2(527.294983F, -354.246002F), new Vector2(526.742004F, -352.104004F), new Vector2(526.742004F, -349.725006F)); + builder.AddCubicBezier(new Vector2(526.742004F, -347.309998F), new Vector2(527.302979F, -345.152008F), new Vector2(528.424988F, -343.247986F)); + builder.AddCubicBezier(new Vector2(529.546997F, -341.342987F), new Vector2(531.06897F, -339.838013F), new Vector2(532.98999F, -338.734009F)); + builder.AddCubicBezier(new Vector2(534.909973F, -337.628998F), new Vector2(537.094971F, -337.076996F), new Vector2(539.54303F, -337.076996F)); + builder.AddCubicBezier(new Vector2(541.447021F, -337.076996F), new Vector2(543.231995F, -337.43399F), new Vector2(544.89801F, -338.14801F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1614() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(504.964996F, -337.587006F)); + builder.AddLine(new Vector2(504.964996F, -361.812012F)); + builder.AddLine(new Vector2(500.375F, -361.812012F)); + builder.AddLine(new Vector2(500.375F, -337.587006F)); + builder.AddLine(new Vector2(504.964996F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(522.101013F, -337.587006F)); + builder.AddLine(new Vector2(522.101013F, -352.631989F)); + builder.AddCubicBezier(new Vector2(522.101013F, -354.296997F), new Vector2(521.692993F, -355.869995F), new Vector2(520.877014F, -357.348999F)); + builder.AddCubicBezier(new Vector2(520.060974F, -358.828003F), new Vector2(518.947021F, -360.027008F), new Vector2(517.536987F, -360.945007F)); + builder.AddCubicBezier(new Vector2(516.125977F, -361.863007F), new Vector2(514.502014F, -362.321991F), new Vector2(512.666016F, -362.321991F)); + builder.AddCubicBezier(new Vector2(510.829987F, -362.321991F), new Vector2(509.179993F, -361.904999F), new Vector2(507.718994F, -361.071991F)); + builder.AddCubicBezier(new Vector2(506.256989F, -360.238007F), new Vector2(505.118011F, -359.109009F), new Vector2(504.302002F, -357.681F)); + builder.AddCubicBezier(new Vector2(503.485992F, -356.252991F), new Vector2(503.078003F, -354.621002F), new Vector2(503.078003F, -352.785004F)); + builder.AddLine(new Vector2(504.964996F, -351.713989F)); + builder.AddCubicBezier(new Vector2(504.964996F, -352.937988F), new Vector2(505.237F, -354.026001F), new Vector2(505.781006F, -354.977997F)); + builder.AddCubicBezier(new Vector2(506.324005F, -355.928986F), new Vector2(507.072998F, -356.678009F), new Vector2(508.024994F, -357.221985F)); + builder.AddCubicBezier(new Vector2(508.976013F, -357.765015F), new Vector2(510.065002F, -358.037994F), new Vector2(511.289001F, -358.037994F)); + builder.AddCubicBezier(new Vector2(513.125F, -358.037994F), new Vector2(514.612F, -357.442993F), new Vector2(515.752014F, -356.252991F)); + builder.AddCubicBezier(new Vector2(516.890991F, -355.062012F), new Vector2(517.460022F, -353.549988F), new Vector2(517.460022F, -351.713989F)); + builder.AddLine(new Vector2(517.460022F, -337.587006F)); + builder.AddLine(new Vector2(522.101013F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1615() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(489.614014F, -338.14801F)); + builder.AddCubicBezier(new Vector2(491.278992F, -338.862F), new Vector2(492.707001F, -339.898987F), new Vector2(493.89801F, -341.259003F)); + builder.AddLine(new Vector2(490.940002F, -344.268005F)); + builder.AddCubicBezier(new Vector2(490.123993F, -343.31601F), new Vector2(489.145996F, -342.60199F), new Vector2(488.006989F, -342.126007F)); + builder.AddCubicBezier(new Vector2(486.867004F, -341.648987F), new Vector2(485.618011F, -341.411987F), new Vector2(484.259003F, -341.411987F)); + builder.AddCubicBezier(new Vector2(482.627014F, -341.411987F), new Vector2(481.181F, -341.76001F), new Vector2(479.924011F, -342.457001F)); + builder.AddCubicBezier(new Vector2(478.665985F, -343.153015F), new Vector2(477.696991F, -344.140015F), new Vector2(477.016998F, -345.415009F)); + builder.AddCubicBezier(new Vector2(476.335999F, -346.690002F), new Vector2(475.997009F, -348.177002F), new Vector2(475.997009F, -349.877991F)); + builder.AddCubicBezier(new Vector2(475.997009F, -351.542999F), new Vector2(476.320007F, -352.989014F), new Vector2(476.966003F, -354.213013F)); + builder.AddCubicBezier(new Vector2(477.610992F, -355.437012F), new Vector2(478.528992F, -356.388F), new Vector2(479.720001F, -357.069F)); + builder.AddCubicBezier(new Vector2(480.910004F, -357.748993F), new Vector2(482.286987F, -358.088989F), new Vector2(483.851013F, -358.088989F)); + builder.AddCubicBezier(new Vector2(485.346985F, -358.088989F), new Vector2(486.622009F, -357.773987F), new Vector2(487.675995F, -357.144989F)); + builder.AddCubicBezier(new Vector2(488.729004F, -356.515015F), new Vector2(489.545013F, -355.631989F), new Vector2(490.123993F, -354.493011F)); + builder.AddCubicBezier(new Vector2(490.701996F, -353.352997F), new Vector2(490.990997F, -351.968994F), new Vector2(490.990997F, -350.337006F)); + builder.AddLine(new Vector2(492.674011F, -351.81601F)); + builder.AddLine(new Vector2(474.67099F, -351.81601F)); + builder.AddLine(new Vector2(474.67099F, -347.990997F)); + builder.AddLine(new Vector2(495.122009F, -347.990997F)); + builder.AddCubicBezier(new Vector2(495.223999F, -348.46701F), new Vector2(495.291992F, -348.899994F), new Vector2(495.325989F, -349.290985F)); + builder.AddCubicBezier(new Vector2(495.359009F, -349.681F), new Vector2(495.377014F, -350.048004F), new Vector2(495.377014F, -350.388F)); + builder.AddCubicBezier(new Vector2(495.377014F, -352.700012F), new Vector2(494.891998F, -354.756012F), new Vector2(493.923004F, -356.55899F)); + builder.AddCubicBezier(new Vector2(492.95401F, -358.360992F), new Vector2(491.602997F, -359.772003F), new Vector2(489.868988F, -360.791992F)); + builder.AddCubicBezier(new Vector2(488.13501F, -361.812012F), new Vector2(486.162994F, -362.321991F), new Vector2(483.953003F, -362.321991F)); + builder.AddCubicBezier(new Vector2(481.606995F, -362.321991F), new Vector2(479.48999F, -361.768005F), new Vector2(477.602997F, -360.664001F)); + builder.AddCubicBezier(new Vector2(475.716003F, -359.55899F), new Vector2(474.218994F, -358.054993F), new Vector2(473.11499F, -356.151001F)); + builder.AddCubicBezier(new Vector2(472.01001F, -354.246002F), new Vector2(471.458008F, -352.104004F), new Vector2(471.458008F, -349.725006F)); + builder.AddCubicBezier(new Vector2(471.458008F, -347.309998F), new Vector2(472.019012F, -345.152008F), new Vector2(473.140991F, -343.247986F)); + builder.AddCubicBezier(new Vector2(474.263F, -341.342987F), new Vector2(475.783997F, -339.838013F), new Vector2(477.704987F, -338.734009F)); + builder.AddCubicBezier(new Vector2(479.625F, -337.628998F), new Vector2(481.811005F, -337.076996F), new Vector2(484.259003F, -337.076996F)); + builder.AddCubicBezier(new Vector2(486.162994F, -337.076996F), new Vector2(487.947998F, -337.43399F), new Vector2(489.614014F, -338.14801F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1616() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(459.575012F, -356.355011F)); + builder.AddCubicBezier(new Vector2(460.662994F, -357.442993F), new Vector2(462.056F, -357.987F), new Vector2(463.756989F, -357.987F)); + builder.AddCubicBezier(new Vector2(464.572998F, -357.987F), new Vector2(465.286987F, -357.867004F), new Vector2(465.898987F, -357.630005F)); + builder.AddCubicBezier(new Vector2(466.510986F, -357.391998F), new Vector2(467.071991F, -357F), new Vector2(467.582001F, -356.457001F)); + builder.AddLine(new Vector2(470.591003F, -359.567993F)); + builder.AddCubicBezier(new Vector2(469.740997F, -360.553986F), new Vector2(468.822998F, -361.257996F), new Vector2(467.837006F, -361.68399F)); + builder.AddCubicBezier(new Vector2(466.850006F, -362.109009F), new Vector2(465.746002F, -362.321991F), new Vector2(464.522003F, -362.321991F)); + builder.AddCubicBezier(new Vector2(461.835999F, -362.321991F), new Vector2(459.778992F, -361.403992F), new Vector2(458.351013F, -359.567993F)); + builder.AddCubicBezier(new Vector2(456.923004F, -357.731995F), new Vector2(456.209015F, -355.265991F), new Vector2(456.209015F, -352.173004F)); + builder.AddLine(new Vector2(457.942993F, -351.356995F)); + builder.AddCubicBezier(new Vector2(457.942993F, -353.601013F), new Vector2(458.485992F, -355.265991F), new Vector2(459.575012F, -356.355011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(457.942993F, -337.587006F)); + builder.AddLine(new Vector2(457.942993F, -361.812012F)); + builder.AddLine(new Vector2(453.352997F, -361.812012F)); + builder.AddLine(new Vector2(453.352997F, -337.587006F)); + builder.AddLine(new Vector2(457.942993F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1617() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(446.671997F, -337.587006F)); + builder.AddLine(new Vector2(446.671997F, -361.812012F)); + builder.AddLine(new Vector2(442.031006F, -361.812012F)); + builder.AddLine(new Vector2(442.031006F, -355.895996F)); + builder.AddLine(new Vector2(442.89801F, -350.031006F)); + builder.AddLine(new Vector2(442.031006F, -344.11499F)); + builder.AddLine(new Vector2(442.031006F, -337.587006F)); + builder.AddLine(new Vector2(446.671997F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(430.65799F, -342.483002F)); + builder.AddCubicBezier(new Vector2(429.46701F, -343.196991F), new Vector2(428.540985F, -344.173004F), new Vector2(427.877991F, -345.415009F)); + builder.AddCubicBezier(new Vector2(427.214996F, -346.656006F), new Vector2(426.884003F, -348.092987F), new Vector2(426.884003F, -349.725006F)); + builder.AddCubicBezier(new Vector2(426.884003F, -351.322998F), new Vector2(427.214996F, -352.740997F), new Vector2(427.877991F, -353.983002F)); + builder.AddCubicBezier(new Vector2(428.540985F, -355.223999F), new Vector2(429.459015F, -356.201996F), new Vector2(430.631989F, -356.915985F)); + builder.AddCubicBezier(new Vector2(431.804993F, -357.630005F), new Vector2(433.157013F, -357.987F), new Vector2(434.687012F, -357.987F)); + builder.AddCubicBezier(new Vector2(436.21701F, -357.987F), new Vector2(437.549988F, -357.636993F), new Vector2(438.690002F, -356.94101F)); + builder.AddCubicBezier(new Vector2(439.82901F, -356.243988F), new Vector2(440.721985F, -355.265991F), new Vector2(441.368011F, -354.009003F)); + builder.AddCubicBezier(new Vector2(442.013F, -352.751007F), new Vector2(442.337006F, -351.306F), new Vector2(442.337006F, -349.674011F)); + builder.AddCubicBezier(new Vector2(442.337006F, -347.259003F), new Vector2(441.640015F, -345.278992F), new Vector2(440.246002F, -343.731995F)); + builder.AddCubicBezier(new Vector2(438.851013F, -342.18399F), new Vector2(437.015015F, -341.411987F), new Vector2(434.738007F, -341.411987F)); + builder.AddCubicBezier(new Vector2(433.208008F, -341.411987F), new Vector2(431.847992F, -341.769012F), new Vector2(430.65799F, -342.483002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(438.920013F, -338.223999F)); + builder.AddCubicBezier(new Vector2(440.381012F, -338.989014F), new Vector2(441.54599F, -340.052002F), new Vector2(442.412994F, -341.411987F)); + builder.AddCubicBezier(new Vector2(443.279999F, -342.770996F), new Vector2(443.765015F, -344.319F), new Vector2(443.867004F, -346.053009F)); + builder.AddLine(new Vector2(443.867004F, -353.346008F)); + builder.AddCubicBezier(new Vector2(443.765015F, -355.113007F), new Vector2(443.272003F, -356.667999F), new Vector2(442.388F, -358.011993F)); + builder.AddCubicBezier(new Vector2(441.502991F, -359.355011F), new Vector2(440.338989F, -360.408997F), new Vector2(438.894012F, -361.174011F)); + builder.AddCubicBezier(new Vector2(437.447998F, -361.938995F), new Vector2(435.80899F, -362.321991F), new Vector2(433.972992F, -362.321991F)); + builder.AddCubicBezier(new Vector2(431.729004F, -362.321991F), new Vector2(429.713989F, -361.760986F), new Vector2(427.928986F, -360.639008F)); + builder.AddCubicBezier(new Vector2(426.144012F, -359.516998F), new Vector2(424.733002F, -358.003998F), new Vector2(423.696014F, -356.100006F)); + builder.AddCubicBezier(new Vector2(422.65799F, -354.195007F), new Vector2(422.140991F, -352.053009F), new Vector2(422.140991F, -349.674011F)); + builder.AddCubicBezier(new Vector2(422.140991F, -347.294006F), new Vector2(422.65799F, -345.152008F), new Vector2(423.696014F, -343.247986F)); + builder.AddCubicBezier(new Vector2(424.733002F, -341.342987F), new Vector2(426.144012F, -339.838013F), new Vector2(427.928986F, -338.734009F)); + builder.AddCubicBezier(new Vector2(429.713989F, -337.628998F), new Vector2(431.729004F, -337.076996F), new Vector2(433.972992F, -337.076996F)); + builder.AddCubicBezier(new Vector2(435.80899F, -337.076996F), new Vector2(437.458008F, -337.459015F), new Vector2(438.920013F, -338.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1618() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(395.722992F, -337.587006F)); + builder.AddLine(new Vector2(402.760986F, -355.845001F)); + builder.AddLine(new Vector2(401.078003F, -355.845001F)); + builder.AddLine(new Vector2(408.065002F, -337.587006F)); + builder.AddLine(new Vector2(410.768005F, -337.587006F)); + builder.AddLine(new Vector2(420.304993F, -361.812012F)); + builder.AddLine(new Vector2(415.510986F, -361.812012F)); + builder.AddLine(new Vector2(408.575012F, -342.941986F)); + builder.AddLine(new Vector2(410.105011F, -342.941986F)); + builder.AddLine(new Vector2(403.220001F, -361.812012F)); + builder.AddLine(new Vector2(400.567993F, -361.812012F)); + builder.AddLine(new Vector2(393.683014F, -342.941986F)); + builder.AddLine(new Vector2(395.213013F, -342.941986F)); + builder.AddLine(new Vector2(388.277008F, -361.812012F)); + builder.AddLine(new Vector2(383.483002F, -361.812012F)); + builder.AddLine(new Vector2(393.019989F, -337.587006F)); + builder.AddLine(new Vector2(395.722992F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1619() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(379.556F, -337.587006F)); + builder.AddLine(new Vector2(379.556F, -361.812012F)); + builder.AddLine(new Vector2(374.915009F, -361.812012F)); + builder.AddLine(new Vector2(374.915009F, -355.895996F)); + builder.AddLine(new Vector2(375.782013F, -350.031006F)); + builder.AddLine(new Vector2(374.915009F, -344.11499F)); + builder.AddLine(new Vector2(374.915009F, -337.587006F)); + builder.AddLine(new Vector2(379.556F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(363.541992F, -342.483002F)); + builder.AddCubicBezier(new Vector2(362.351013F, -343.196991F), new Vector2(361.424988F, -344.173004F), new Vector2(360.761993F, -345.415009F)); + builder.AddCubicBezier(new Vector2(360.098999F, -346.656006F), new Vector2(359.768005F, -348.092987F), new Vector2(359.768005F, -349.725006F)); + builder.AddCubicBezier(new Vector2(359.768005F, -351.322998F), new Vector2(360.098999F, -352.740997F), new Vector2(360.761993F, -353.983002F)); + builder.AddCubicBezier(new Vector2(361.424988F, -355.223999F), new Vector2(362.342987F, -356.201996F), new Vector2(363.515991F, -356.915985F)); + builder.AddCubicBezier(new Vector2(364.688995F, -357.630005F), new Vector2(366.040985F, -357.987F), new Vector2(367.571014F, -357.987F)); + builder.AddCubicBezier(new Vector2(369.101013F, -357.987F), new Vector2(370.43399F, -357.636993F), new Vector2(371.574005F, -356.94101F)); + builder.AddCubicBezier(new Vector2(372.713013F, -356.243988F), new Vector2(373.605988F, -355.265991F), new Vector2(374.252014F, -354.009003F)); + builder.AddCubicBezier(new Vector2(374.897003F, -352.751007F), new Vector2(375.221008F, -351.306F), new Vector2(375.221008F, -349.674011F)); + builder.AddCubicBezier(new Vector2(375.221008F, -347.259003F), new Vector2(374.523987F, -345.278992F), new Vector2(373.130005F, -343.731995F)); + builder.AddCubicBezier(new Vector2(371.734985F, -342.18399F), new Vector2(369.898987F, -341.411987F), new Vector2(367.622009F, -341.411987F)); + builder.AddCubicBezier(new Vector2(366.09201F, -341.411987F), new Vector2(364.731995F, -341.769012F), new Vector2(363.541992F, -342.483002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(371.803986F, -338.223999F)); + builder.AddCubicBezier(new Vector2(373.265015F, -338.989014F), new Vector2(374.429993F, -340.052002F), new Vector2(375.296997F, -341.411987F)); + builder.AddCubicBezier(new Vector2(376.164001F, -342.770996F), new Vector2(376.648987F, -344.319F), new Vector2(376.751007F, -346.053009F)); + builder.AddLine(new Vector2(376.751007F, -353.346008F)); + builder.AddCubicBezier(new Vector2(376.648987F, -355.113007F), new Vector2(376.156006F, -356.667999F), new Vector2(375.272003F, -358.011993F)); + builder.AddCubicBezier(new Vector2(374.386993F, -359.355011F), new Vector2(373.222992F, -360.408997F), new Vector2(371.778015F, -361.174011F)); + builder.AddCubicBezier(new Vector2(370.332001F, -361.938995F), new Vector2(368.692993F, -362.321991F), new Vector2(366.856995F, -362.321991F)); + builder.AddCubicBezier(new Vector2(364.613007F, -362.321991F), new Vector2(362.597992F, -361.760986F), new Vector2(360.812988F, -360.639008F)); + builder.AddCubicBezier(new Vector2(359.028015F, -359.516998F), new Vector2(357.617004F, -358.003998F), new Vector2(356.579987F, -356.100006F)); + builder.AddCubicBezier(new Vector2(355.541992F, -354.195007F), new Vector2(355.024994F, -352.053009F), new Vector2(355.024994F, -349.674011F)); + builder.AddCubicBezier(new Vector2(355.024994F, -347.294006F), new Vector2(355.541992F, -345.152008F), new Vector2(356.579987F, -343.247986F)); + builder.AddCubicBezier(new Vector2(357.617004F, -341.342987F), new Vector2(359.028015F, -339.838013F), new Vector2(360.812988F, -338.734009F)); + builder.AddCubicBezier(new Vector2(362.597992F, -337.628998F), new Vector2(364.613007F, -337.076996F), new Vector2(366.856995F, -337.076996F)); + builder.AddCubicBezier(new Vector2(368.692993F, -337.076996F), new Vector2(370.34201F, -337.459015F), new Vector2(371.803986F, -338.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1620() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(323.429993F, -343.324005F)); + builder.AddCubicBezier(new Vector2(322.256989F, -343.987F), new Vector2(321.338989F, -344.912994F), new Vector2(320.675995F, -346.104004F)); + builder.AddCubicBezier(new Vector2(320.013F, -347.294006F), new Vector2(319.682007F, -348.653992F), new Vector2(319.682007F, -350.18399F)); + builder.AddCubicBezier(new Vector2(319.682007F, -351.713989F), new Vector2(320.013F, -353.065002F), new Vector2(320.675995F, -354.238007F)); + builder.AddCubicBezier(new Vector2(321.338989F, -355.411011F), new Vector2(322.248993F, -356.32901F), new Vector2(323.404999F, -356.992004F)); + builder.AddCubicBezier(new Vector2(324.559998F, -357.654999F), new Vector2(325.903992F, -357.987F), new Vector2(327.43399F, -357.987F)); + builder.AddCubicBezier(new Vector2(328.929993F, -357.987F), new Vector2(330.246002F, -357.654999F), new Vector2(331.385986F, -356.992004F)); + builder.AddCubicBezier(new Vector2(332.524994F, -356.32901F), new Vector2(333.40799F, -355.411011F), new Vector2(334.037994F, -354.238007F)); + builder.AddCubicBezier(new Vector2(334.666992F, -353.065002F), new Vector2(334.981995F, -351.696014F), new Vector2(334.981995F, -350.132996F)); + builder.AddCubicBezier(new Vector2(334.981995F, -348.569F), new Vector2(334.666992F, -347.200012F), new Vector2(334.037994F, -346.027008F)); + builder.AddCubicBezier(new Vector2(333.40799F, -344.854004F), new Vector2(332.533997F, -343.944F), new Vector2(331.411987F, -343.299011F)); + builder.AddCubicBezier(new Vector2(330.290009F, -342.653015F), new Vector2(328.963989F, -342.329987F), new Vector2(327.43399F, -342.329987F)); + builder.AddCubicBezier(new Vector2(325.937012F, -342.329987F), new Vector2(324.602997F, -342.661011F), new Vector2(323.429993F, -343.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(331.565002F, -339.117004F)); + builder.AddCubicBezier(new Vector2(333.026001F, -339.864014F), new Vector2(334.19101F, -340.908997F), new Vector2(335.058014F, -342.252991F)); + builder.AddCubicBezier(new Vector2(335.924988F, -343.596008F), new Vector2(336.410004F, -345.152008F), new Vector2(336.511993F, -346.920013F)); + builder.AddLine(new Vector2(336.511993F, -353.346008F)); + builder.AddCubicBezier(new Vector2(336.410004F, -355.14801F), new Vector2(335.933014F, -356.718994F), new Vector2(335.084015F, -358.062988F)); + builder.AddCubicBezier(new Vector2(334.234009F, -359.406006F), new Vector2(333.069F, -360.451996F), new Vector2(331.589996F, -361.200012F)); + builder.AddCubicBezier(new Vector2(330.110992F, -361.946991F), new Vector2(328.420013F, -362.321991F), new Vector2(326.515991F, -362.321991F)); + builder.AddCubicBezier(new Vector2(324.339996F, -362.321991F), new Vector2(322.367004F, -361.786011F), new Vector2(320.600006F, -360.714996F)); + builder.AddCubicBezier(new Vector2(318.832001F, -359.644012F), new Vector2(317.445007F, -358.197998F), new Vector2(316.442993F, -356.380005F)); + builder.AddCubicBezier(new Vector2(315.440002F, -354.561005F), new Vector2(314.938995F, -352.496002F), new Vector2(314.938995F, -350.18399F)); + builder.AddCubicBezier(new Vector2(314.938995F, -347.871002F), new Vector2(315.449005F, -345.789001F), new Vector2(316.468994F, -343.936005F)); + builder.AddCubicBezier(new Vector2(317.489014F, -342.082001F), new Vector2(318.872986F, -340.628998F), new Vector2(320.625F, -339.575989F)); + builder.AddCubicBezier(new Vector2(322.376007F, -338.522003F), new Vector2(324.355988F, -337.994995F), new Vector2(326.566986F, -337.994995F)); + builder.AddCubicBezier(new Vector2(328.436005F, -337.994995F), new Vector2(330.102997F, -338.368988F), new Vector2(331.565002F, -339.117004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(333.221985F, -328.381012F)); + builder.AddCubicBezier(new Vector2(335.141998F, -329.350006F), new Vector2(336.639008F, -330.709991F), new Vector2(337.709991F, -332.460999F)); + builder.AddCubicBezier(new Vector2(338.781006F, -334.213013F), new Vector2(339.316986F, -336.243988F), new Vector2(339.316986F, -338.556F)); + builder.AddLine(new Vector2(339.316986F, -361.812012F)); + builder.AddLine(new Vector2(334.72699F, -361.812012F)); + builder.AddLine(new Vector2(334.72699F, -355.437012F)); + builder.AddLine(new Vector2(335.542999F, -350.031006F)); + builder.AddLine(new Vector2(334.72699F, -344.574005F)); + builder.AddLine(new Vector2(334.72699F, -338.556F)); + builder.AddCubicBezier(new Vector2(334.72699F, -336.346008F), new Vector2(333.994995F, -334.585999F), new Vector2(332.533997F, -333.277008F)); + builder.AddCubicBezier(new Vector2(331.071991F, -331.968994F), new Vector2(329.117004F, -331.313995F), new Vector2(326.669006F, -331.313995F)); + builder.AddCubicBezier(new Vector2(324.799011F, -331.313995F), new Vector2(323.183014F, -331.644989F), new Vector2(321.824005F, -332.308014F)); + builder.AddCubicBezier(new Vector2(320.463989F, -332.971008F), new Vector2(319.290985F, -333.933014F), new Vector2(318.304993F, -335.190002F)); + builder.AddLine(new Vector2(315.29599F, -332.181F)); + builder.AddCubicBezier(new Vector2(316.485992F, -330.515991F), new Vector2(318.032013F, -329.222992F), new Vector2(319.937012F, -328.304993F)); + builder.AddCubicBezier(new Vector2(321.841003F, -327.386993F), new Vector2(324.049988F, -326.928009F), new Vector2(326.566986F, -326.928009F)); + builder.AddCubicBezier(new Vector2(329.083008F, -326.928009F), new Vector2(331.300995F, -327.411987F), new Vector2(333.221985F, -328.381012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1621() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(293.161987F, -337.587006F)); + builder.AddLine(new Vector2(293.161987F, -361.812012F)); + builder.AddLine(new Vector2(288.571991F, -361.812012F)); + builder.AddLine(new Vector2(288.571991F, -337.587006F)); + builder.AddLine(new Vector2(293.161987F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(310.298004F, -337.587006F)); + builder.AddLine(new Vector2(310.298004F, -352.631989F)); + builder.AddCubicBezier(new Vector2(310.298004F, -354.296997F), new Vector2(309.890015F, -355.869995F), new Vector2(309.074005F, -357.348999F)); + builder.AddCubicBezier(new Vector2(308.257996F, -358.828003F), new Vector2(307.143005F, -360.027008F), new Vector2(305.733002F, -360.945007F)); + builder.AddCubicBezier(new Vector2(304.321991F, -361.863007F), new Vector2(302.699005F, -362.321991F), new Vector2(300.863007F, -362.321991F)); + builder.AddCubicBezier(new Vector2(299.027008F, -362.321991F), new Vector2(297.377014F, -361.904999F), new Vector2(295.915985F, -361.071991F)); + builder.AddCubicBezier(new Vector2(294.45401F, -360.238007F), new Vector2(293.315002F, -359.109009F), new Vector2(292.498993F, -357.681F)); + builder.AddCubicBezier(new Vector2(291.683014F, -356.252991F), new Vector2(291.274994F, -354.621002F), new Vector2(291.274994F, -352.785004F)); + builder.AddLine(new Vector2(293.161987F, -351.713989F)); + builder.AddCubicBezier(new Vector2(293.161987F, -352.937988F), new Vector2(293.43399F, -354.026001F), new Vector2(293.977997F, -354.977997F)); + builder.AddCubicBezier(new Vector2(294.520996F, -355.928986F), new Vector2(295.269989F, -356.678009F), new Vector2(296.221985F, -357.221985F)); + builder.AddCubicBezier(new Vector2(297.173004F, -357.765015F), new Vector2(298.261993F, -358.037994F), new Vector2(299.485992F, -358.037994F)); + builder.AddCubicBezier(new Vector2(301.321991F, -358.037994F), new Vector2(302.808014F, -357.442993F), new Vector2(303.947998F, -356.252991F)); + builder.AddCubicBezier(new Vector2(305.087006F, -355.062012F), new Vector2(305.657013F, -353.549988F), new Vector2(305.657013F, -351.713989F)); + builder.AddLine(new Vector2(305.657013F, -337.587006F)); + builder.AddLine(new Vector2(310.298004F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1622() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(281.584991F, -367.497986F)); + builder.AddCubicBezier(new Vector2(282.127991F, -368.05899F), new Vector2(282.401001F, -368.765015F), new Vector2(282.401001F, -369.61499F)); + builder.AddCubicBezier(new Vector2(282.401001F, -370.431F), new Vector2(282.127991F, -371.118988F), new Vector2(281.584991F, -371.679993F)); + builder.AddCubicBezier(new Vector2(281.040985F, -372.240997F), new Vector2(280.342987F, -372.522003F), new Vector2(279.493988F, -372.522003F)); + builder.AddCubicBezier(new Vector2(278.644012F, -372.522003F), new Vector2(277.946014F, -372.240997F), new Vector2(277.403015F, -371.679993F)); + builder.AddCubicBezier(new Vector2(276.859009F, -371.118988F), new Vector2(276.587006F, -370.431F), new Vector2(276.587006F, -369.61499F)); + builder.AddCubicBezier(new Vector2(276.587006F, -368.765015F), new Vector2(276.859009F, -368.05899F), new Vector2(277.403015F, -367.497986F)); + builder.AddCubicBezier(new Vector2(277.946014F, -366.937012F), new Vector2(278.644012F, -366.657013F), new Vector2(279.493988F, -366.657013F)); + builder.AddCubicBezier(new Vector2(280.342987F, -366.657013F), new Vector2(281.040985F, -366.937012F), new Vector2(281.584991F, -367.497986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(281.789001F, -337.587006F)); + builder.AddLine(new Vector2(281.789001F, -361.812012F)); + builder.AddLine(new Vector2(277.14801F, -361.812012F)); + builder.AddLine(new Vector2(277.14801F, -337.587006F)); + builder.AddLine(new Vector2(281.789001F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1623() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(262.919006F, -356.355011F)); + builder.AddCubicBezier(new Vector2(264.006989F, -357.442993F), new Vector2(265.399994F, -357.987F), new Vector2(267.101013F, -357.987F)); + builder.AddCubicBezier(new Vector2(267.916992F, -357.987F), new Vector2(268.631012F, -357.867004F), new Vector2(269.243011F, -357.630005F)); + builder.AddCubicBezier(new Vector2(269.855011F, -357.391998F), new Vector2(270.415985F, -357F), new Vector2(270.925995F, -356.457001F)); + builder.AddLine(new Vector2(273.934998F, -359.567993F)); + builder.AddCubicBezier(new Vector2(273.084991F, -360.553986F), new Vector2(272.166992F, -361.257996F), new Vector2(271.181F, -361.68399F)); + builder.AddCubicBezier(new Vector2(270.194F, -362.109009F), new Vector2(269.089996F, -362.321991F), new Vector2(267.865997F, -362.321991F)); + builder.AddCubicBezier(new Vector2(265.179993F, -362.321991F), new Vector2(263.122986F, -361.403992F), new Vector2(261.695007F, -359.567993F)); + builder.AddCubicBezier(new Vector2(260.266998F, -357.731995F), new Vector2(259.553009F, -355.265991F), new Vector2(259.553009F, -352.173004F)); + builder.AddLine(new Vector2(261.286987F, -351.356995F)); + builder.AddCubicBezier(new Vector2(261.286987F, -353.601013F), new Vector2(261.829987F, -355.265991F), new Vector2(262.919006F, -356.355011F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(261.286987F, -337.587006F)); + builder.AddLine(new Vector2(261.286987F, -361.812012F)); + builder.AddLine(new Vector2(256.696991F, -361.812012F)); + builder.AddLine(new Vector2(256.696991F, -337.587006F)); + builder.AddLine(new Vector2(261.286987F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1624() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(234.996002F, -342.483002F)); + builder.AddCubicBezier(new Vector2(233.822998F, -343.196991F), new Vector2(232.921997F, -344.173004F), new Vector2(232.292999F, -345.415009F)); + builder.AddCubicBezier(new Vector2(231.662994F, -346.656006F), new Vector2(231.350006F, -348.075012F), new Vector2(231.350006F, -349.674011F)); + builder.AddCubicBezier(new Vector2(231.350006F, -351.306F), new Vector2(231.673004F, -352.740997F), new Vector2(232.319F, -353.983002F)); + builder.AddCubicBezier(new Vector2(232.964005F, -355.223999F), new Vector2(233.865997F, -356.201996F), new Vector2(235.022003F, -356.915985F)); + builder.AddCubicBezier(new Vector2(236.177002F, -357.630005F), new Vector2(237.503006F, -357.987F), new Vector2(239F, -357.987F)); + builder.AddCubicBezier(new Vector2(240.529999F, -357.987F), new Vector2(241.873001F, -357.630005F), new Vector2(243.029007F, -356.915985F)); + builder.AddCubicBezier(new Vector2(244.184006F, -356.201996F), new Vector2(245.093994F, -355.223999F), new Vector2(245.757004F, -353.983002F)); + builder.AddCubicBezier(new Vector2(246.419998F, -352.740997F), new Vector2(246.751999F, -351.322998F), new Vector2(246.751999F, -349.725006F)); + builder.AddCubicBezier(new Vector2(246.751999F, -348.092987F), new Vector2(246.419998F, -346.656006F), new Vector2(245.757004F, -345.415009F)); + builder.AddCubicBezier(new Vector2(245.093994F, -344.173004F), new Vector2(244.184006F, -343.196991F), new Vector2(243.029007F, -342.483002F)); + builder.AddCubicBezier(new Vector2(241.873001F, -341.769012F), new Vector2(240.529999F, -341.411987F), new Vector2(239F, -341.411987F)); + builder.AddCubicBezier(new Vector2(237.503006F, -341.411987F), new Vector2(236.169006F, -341.769012F), new Vector2(234.996002F, -342.483002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(231.604996F, -337.587006F)); + builder.AddLine(new Vector2(231.604996F, -344.11499F)); + builder.AddLine(new Vector2(230.738007F, -350.031006F)); + builder.AddLine(new Vector2(231.604996F, -355.895996F)); + builder.AddLine(new Vector2(231.604996F, -374.001007F)); + builder.AddLine(new Vector2(227.014999F, -374.001007F)); + builder.AddLine(new Vector2(227.014999F, -337.587006F)); + builder.AddLine(new Vector2(231.604996F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(245.757004F, -338.734009F)); + builder.AddCubicBezier(new Vector2(247.542007F, -339.838013F), new Vector2(248.945007F, -341.342987F), new Vector2(249.964996F, -343.247986F)); + builder.AddCubicBezier(new Vector2(250.985001F, -345.152008F), new Vector2(251.494995F, -347.294006F), new Vector2(251.494995F, -349.674011F)); + builder.AddCubicBezier(new Vector2(251.494995F, -352.053009F), new Vector2(250.985001F, -354.195007F), new Vector2(249.964996F, -356.100006F)); + builder.AddCubicBezier(new Vector2(248.945007F, -358.003998F), new Vector2(247.542007F, -359.516998F), new Vector2(245.757004F, -360.639008F)); + builder.AddCubicBezier(new Vector2(243.972F, -361.760986F), new Vector2(241.975006F, -362.321991F), new Vector2(239.764999F, -362.321991F)); + builder.AddCubicBezier(new Vector2(237.962006F, -362.321991F), new Vector2(236.322006F, -361.938995F), new Vector2(234.843002F, -361.174011F)); + builder.AddCubicBezier(new Vector2(233.363998F, -360.408997F), new Vector2(232.173004F, -359.355011F), new Vector2(231.272995F, -358.011993F)); + builder.AddCubicBezier(new Vector2(230.371994F, -356.667999F), new Vector2(229.871002F, -355.113007F), new Vector2(229.768997F, -353.346008F)); + builder.AddLine(new Vector2(229.768997F, -346.053009F)); + builder.AddCubicBezier(new Vector2(229.871002F, -344.319F), new Vector2(230.363007F, -342.770996F), new Vector2(231.248001F, -341.411987F)); + builder.AddCubicBezier(new Vector2(232.132004F, -340.052002F), new Vector2(233.313004F, -338.989014F), new Vector2(234.792007F, -338.223999F)); + builder.AddCubicBezier(new Vector2(236.270996F, -337.459015F), new Vector2(237.929001F, -337.076996F), new Vector2(239.764999F, -337.076996F)); + builder.AddCubicBezier(new Vector2(241.975006F, -337.076996F), new Vector2(243.972F, -337.628998F), new Vector2(245.757004F, -338.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1625() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(194.630005F, -342.584991F)); + builder.AddCubicBezier(new Vector2(193.438995F, -343.299011F), new Vector2(192.505005F, -344.274994F), new Vector2(191.824997F, -345.516998F)); + builder.AddCubicBezier(new Vector2(191.143997F, -346.757996F), new Vector2(190.804993F, -348.177002F), new Vector2(190.804993F, -349.776001F)); + builder.AddCubicBezier(new Vector2(190.804993F, -351.338989F), new Vector2(191.143997F, -352.734009F), new Vector2(191.824997F, -353.958008F)); + builder.AddCubicBezier(new Vector2(192.505005F, -355.182007F), new Vector2(193.438995F, -356.141998F), new Vector2(194.630005F, -356.838989F)); + builder.AddCubicBezier(new Vector2(195.820007F, -357.535004F), new Vector2(197.162003F, -357.88501F), new Vector2(198.658997F, -357.88501F)); + builder.AddCubicBezier(new Vector2(200.222F, -357.88501F), new Vector2(201.591003F, -357.535004F), new Vector2(202.764008F, -356.838989F)); + builder.AddCubicBezier(new Vector2(203.936996F, -356.141998F), new Vector2(204.871994F, -355.182007F), new Vector2(205.569F, -353.958008F)); + builder.AddCubicBezier(new Vector2(206.264999F, -352.734009F), new Vector2(206.615005F, -351.338989F), new Vector2(206.615005F, -349.776001F)); + builder.AddCubicBezier(new Vector2(206.615005F, -348.177002F), new Vector2(206.274994F, -346.757996F), new Vector2(205.595001F, -345.516998F)); + builder.AddCubicBezier(new Vector2(204.914001F, -344.274994F), new Vector2(203.979996F, -343.299011F), new Vector2(202.789993F, -342.584991F)); + builder.AddCubicBezier(new Vector2(201.598999F, -341.871002F), new Vector2(200.222F, -341.514008F), new Vector2(198.658997F, -341.514008F)); + builder.AddCubicBezier(new Vector2(197.162003F, -341.514008F), new Vector2(195.820007F, -341.871002F), new Vector2(194.630005F, -342.584991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(205.110001F, -338.76001F)); + builder.AddCubicBezier(new Vector2(207.029999F, -339.881989F), new Vector2(208.552994F, -341.403015F), new Vector2(209.675003F, -343.324005F)); + builder.AddCubicBezier(new Vector2(210.796997F, -345.243988F), new Vector2(211.358002F, -347.395996F), new Vector2(211.358002F, -349.776001F)); + builder.AddCubicBezier(new Vector2(211.358002F, -352.122009F), new Vector2(210.796997F, -354.246002F), new Vector2(209.675003F, -356.151001F)); + builder.AddCubicBezier(new Vector2(208.552994F, -358.054993F), new Vector2(207.029999F, -359.55899F), new Vector2(205.110001F, -360.664001F)); + builder.AddCubicBezier(new Vector2(203.188995F, -361.768005F), new Vector2(201.037994F, -362.321991F), new Vector2(198.658997F, -362.321991F)); + builder.AddCubicBezier(new Vector2(196.313004F, -362.321991F), new Vector2(194.188004F, -361.760986F), new Vector2(192.283997F, -360.639008F)); + builder.AddCubicBezier(new Vector2(190.378998F, -359.516998F), new Vector2(188.867004F, -358.011993F), new Vector2(187.744995F, -356.125F)); + builder.AddCubicBezier(new Vector2(186.623001F, -354.238007F), new Vector2(186.061996F, -352.122009F), new Vector2(186.061996F, -349.776001F)); + builder.AddCubicBezier(new Vector2(186.061996F, -347.395996F), new Vector2(186.623001F, -345.243988F), new Vector2(187.744995F, -343.324005F)); + builder.AddCubicBezier(new Vector2(188.867004F, -341.403015F), new Vector2(190.378998F, -339.881989F), new Vector2(192.283997F, -338.76001F)); + builder.AddCubicBezier(new Vector2(194.188004F, -337.638F), new Vector2(196.313004F, -337.076996F), new Vector2(198.658997F, -337.076996F)); + builder.AddCubicBezier(new Vector2(201.037994F, -337.076996F), new Vector2(203.188995F, -337.638F), new Vector2(205.110001F, -338.76001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1626() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(183.919998F, -357.630005F)); + builder.AddLine(new Vector2(183.919998F, -361.812012F)); + builder.AddLine(new Vector2(167.395996F, -361.812012F)); + builder.AddLine(new Vector2(167.395996F, -357.630005F)); + builder.AddLine(new Vector2(183.919998F, -357.630005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(177.953003F, -337.587006F)); + builder.AddLine(new Vector2(177.953003F, -371.960999F)); + builder.AddLine(new Vector2(173.363007F, -371.960999F)); + builder.AddLine(new Vector2(173.363007F, -337.587006F)); + builder.AddLine(new Vector2(177.953003F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1627() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(137.382004F, -342.483002F)); + builder.AddCubicBezier(new Vector2(136.209F, -343.196991F), new Vector2(135.307999F, -344.173004F), new Vector2(134.679001F, -345.415009F)); + builder.AddCubicBezier(new Vector2(134.048996F, -346.656006F), new Vector2(133.735992F, -348.075012F), new Vector2(133.735992F, -349.674011F)); + builder.AddCubicBezier(new Vector2(133.735992F, -351.306F), new Vector2(134.059006F, -352.740997F), new Vector2(134.705002F, -353.983002F)); + builder.AddCubicBezier(new Vector2(135.350006F, -355.223999F), new Vector2(136.251999F, -356.201996F), new Vector2(137.408005F, -356.915985F)); + builder.AddCubicBezier(new Vector2(138.563004F, -357.630005F), new Vector2(139.889008F, -357.987F), new Vector2(141.386002F, -357.987F)); + builder.AddCubicBezier(new Vector2(142.916F, -357.987F), new Vector2(144.259003F, -357.630005F), new Vector2(145.414993F, -356.915985F)); + builder.AddCubicBezier(new Vector2(146.570007F, -356.201996F), new Vector2(147.479996F, -355.223999F), new Vector2(148.143005F, -353.983002F)); + builder.AddCubicBezier(new Vector2(148.806F, -352.740997F), new Vector2(149.138F, -351.322998F), new Vector2(149.138F, -349.725006F)); + builder.AddCubicBezier(new Vector2(149.138F, -348.092987F), new Vector2(148.806F, -346.656006F), new Vector2(148.143005F, -345.415009F)); + builder.AddCubicBezier(new Vector2(147.479996F, -344.173004F), new Vector2(146.570007F, -343.196991F), new Vector2(145.414993F, -342.483002F)); + builder.AddCubicBezier(new Vector2(144.259003F, -341.769012F), new Vector2(142.916F, -341.411987F), new Vector2(141.386002F, -341.411987F)); + builder.AddCubicBezier(new Vector2(139.889008F, -341.411987F), new Vector2(138.554993F, -341.769012F), new Vector2(137.382004F, -342.483002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(133.990997F, -327.437988F)); + builder.AddLine(new Vector2(133.990997F, -343.656006F)); + builder.AddLine(new Vector2(133.123993F, -349.571991F)); + builder.AddLine(new Vector2(133.990997F, -355.437012F)); + builder.AddLine(new Vector2(133.990997F, -361.812012F)); + builder.AddLine(new Vector2(129.401001F, -361.812012F)); + builder.AddLine(new Vector2(129.401001F, -327.437988F)); + builder.AddLine(new Vector2(133.990997F, -327.437988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(148.143005F, -338.734009F)); + builder.AddCubicBezier(new Vector2(149.927994F, -339.838013F), new Vector2(151.330994F, -341.342987F), new Vector2(152.350998F, -343.247986F)); + builder.AddCubicBezier(new Vector2(153.371002F, -345.152008F), new Vector2(153.880997F, -347.294006F), new Vector2(153.880997F, -349.674011F)); + builder.AddCubicBezier(new Vector2(153.880997F, -352.053009F), new Vector2(153.371002F, -354.195007F), new Vector2(152.350998F, -356.100006F)); + builder.AddCubicBezier(new Vector2(151.330994F, -358.003998F), new Vector2(149.927994F, -359.516998F), new Vector2(148.143005F, -360.639008F)); + builder.AddCubicBezier(new Vector2(146.358002F, -361.760986F), new Vector2(144.360992F, -362.321991F), new Vector2(142.151001F, -362.321991F)); + builder.AddCubicBezier(new Vector2(140.348007F, -362.321991F), new Vector2(138.707993F, -361.938995F), new Vector2(137.229004F, -361.174011F)); + builder.AddCubicBezier(new Vector2(135.75F, -360.408997F), new Vector2(134.559006F, -359.355011F), new Vector2(133.658997F, -358.011993F)); + builder.AddCubicBezier(new Vector2(132.757996F, -356.667999F), new Vector2(132.257004F, -355.113007F), new Vector2(132.154999F, -353.346008F)); + builder.AddLine(new Vector2(132.154999F, -346.053009F)); + builder.AddCubicBezier(new Vector2(132.257004F, -344.319F), new Vector2(132.748993F, -342.770996F), new Vector2(133.634003F, -341.411987F)); + builder.AddCubicBezier(new Vector2(134.518005F, -340.052002F), new Vector2(135.699005F, -338.989014F), new Vector2(137.177994F, -338.223999F)); + builder.AddCubicBezier(new Vector2(138.656998F, -337.459015F), new Vector2(140.315002F, -337.076996F), new Vector2(142.151001F, -337.076996F)); + builder.AddCubicBezier(new Vector2(144.360992F, -337.076996F), new Vector2(146.358002F, -337.628998F), new Vector2(148.143005F, -338.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1628() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(122.668999F, -337.587006F)); + builder.AddLine(new Vector2(122.668999F, -374.001007F)); + builder.AddLine(new Vector2(118.079002F, -374.001007F)); + builder.AddLine(new Vector2(118.079002F, -337.587006F)); + builder.AddLine(new Vector2(122.668999F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1629() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(107.318001F, -338.14801F)); + builder.AddCubicBezier(new Vector2(108.983002F, -338.862F), new Vector2(110.411003F, -339.898987F), new Vector2(111.601997F, -341.259003F)); + builder.AddLine(new Vector2(108.643997F, -344.268005F)); + builder.AddCubicBezier(new Vector2(107.828003F, -343.31601F), new Vector2(106.850998F, -342.60199F), new Vector2(105.711998F, -342.126007F)); + builder.AddCubicBezier(new Vector2(104.571999F, -341.648987F), new Vector2(103.321999F, -341.411987F), new Vector2(101.962997F, -341.411987F)); + builder.AddCubicBezier(new Vector2(100.331001F, -341.411987F), new Vector2(98.8850021F, -341.76001F), new Vector2(97.6279984F, -342.457001F)); + builder.AddCubicBezier(new Vector2(96.3700027F, -343.153015F), new Vector2(95.401001F, -344.140015F), new Vector2(94.7210007F, -345.415009F)); + builder.AddCubicBezier(new Vector2(94.0400009F, -346.690002F), new Vector2(93.7009964F, -348.177002F), new Vector2(93.7009964F, -349.877991F)); + builder.AddCubicBezier(new Vector2(93.7009964F, -351.542999F), new Vector2(94.0240021F, -352.989014F), new Vector2(94.6699982F, -354.213013F)); + builder.AddCubicBezier(new Vector2(95.3150024F, -355.437012F), new Vector2(96.2330017F, -356.388F), new Vector2(97.4240036F, -357.069F)); + builder.AddCubicBezier(new Vector2(98.6139984F, -357.748993F), new Vector2(99.9909973F, -358.088989F), new Vector2(101.555F, -358.088989F)); + builder.AddCubicBezier(new Vector2(103.051003F, -358.088989F), new Vector2(104.325996F, -357.773987F), new Vector2(105.379997F, -357.144989F)); + builder.AddCubicBezier(new Vector2(106.432999F, -356.515015F), new Vector2(107.249001F, -355.631989F), new Vector2(107.828003F, -354.493011F)); + builder.AddCubicBezier(new Vector2(108.405998F, -353.352997F), new Vector2(108.695F, -351.968994F), new Vector2(108.695F, -350.337006F)); + builder.AddLine(new Vector2(110.377998F, -351.81601F)); + builder.AddLine(new Vector2(92.375F, -351.81601F)); + builder.AddLine(new Vector2(92.375F, -347.990997F)); + builder.AddLine(new Vector2(112.825996F, -347.990997F)); + builder.AddCubicBezier(new Vector2(112.928001F, -348.46701F), new Vector2(112.996002F, -348.899994F), new Vector2(113.029999F, -349.290985F)); + builder.AddCubicBezier(new Vector2(113.063004F, -349.681F), new Vector2(113.081001F, -350.048004F), new Vector2(113.081001F, -350.388F)); + builder.AddCubicBezier(new Vector2(113.081001F, -352.700012F), new Vector2(112.597F, -354.756012F), new Vector2(111.627998F, -356.55899F)); + builder.AddCubicBezier(new Vector2(110.658997F, -358.360992F), new Vector2(109.306999F, -359.772003F), new Vector2(107.572998F, -360.791992F)); + builder.AddCubicBezier(new Vector2(105.838997F, -361.812012F), new Vector2(103.866997F, -362.321991F), new Vector2(101.656998F, -362.321991F)); + builder.AddCubicBezier(new Vector2(99.310997F, -362.321991F), new Vector2(97.1949997F, -361.768005F), new Vector2(95.3079987F, -360.664001F)); + builder.AddCubicBezier(new Vector2(93.4209976F, -359.55899F), new Vector2(91.9240036F, -358.054993F), new Vector2(90.8199997F, -356.151001F)); + builder.AddCubicBezier(new Vector2(89.7149963F, -354.246002F), new Vector2(89.1620026F, -352.104004F), new Vector2(89.1620026F, -349.725006F)); + builder.AddCubicBezier(new Vector2(89.1620026F, -347.309998F), new Vector2(89.7229996F, -345.152008F), new Vector2(90.8450012F, -343.247986F)); + builder.AddCubicBezier(new Vector2(91.9670029F, -341.342987F), new Vector2(93.4889984F, -339.838013F), new Vector2(95.4100037F, -338.734009F)); + builder.AddCubicBezier(new Vector2(97.3300018F, -337.628998F), new Vector2(99.5149994F, -337.076996F), new Vector2(101.962997F, -337.076996F)); + builder.AddCubicBezier(new Vector2(103.866997F, -337.076996F), new Vector2(105.652F, -337.43399F), new Vector2(107.318001F, -338.14801F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1630() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(67.3850021F, -337.587006F)); + builder.AddLine(new Vector2(67.3850021F, -374.001007F)); + builder.AddLine(new Vector2(62.7949982F, -374.001007F)); + builder.AddLine(new Vector2(62.7949982F, -337.587006F)); + builder.AddLine(new Vector2(67.3850021F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(84.5210037F, -337.587006F)); + builder.AddLine(new Vector2(84.5210037F, -352.631989F)); + builder.AddCubicBezier(new Vector2(84.5210037F, -354.536011F), new Vector2(84.112999F, -356.218994F), new Vector2(83.2969971F, -357.681F)); + builder.AddCubicBezier(new Vector2(82.4810028F, -359.141998F), new Vector2(81.3659973F, -360.282013F), new Vector2(79.9560013F, -361.097992F)); + builder.AddCubicBezier(new Vector2(78.5449982F, -361.914001F), new Vector2(76.9219971F, -362.321991F), new Vector2(75.0859985F, -362.321991F)); + builder.AddCubicBezier(new Vector2(73.25F, -362.321991F), new Vector2(71.5999985F, -361.904999F), new Vector2(70.1389999F, -361.071991F)); + builder.AddCubicBezier(new Vector2(68.677002F, -360.238007F), new Vector2(67.538002F, -359.109009F), new Vector2(66.7220001F, -357.681F)); + builder.AddCubicBezier(new Vector2(65.9059982F, -356.252991F), new Vector2(65.4980011F, -354.621002F), new Vector2(65.4980011F, -352.785004F)); + builder.AddLine(new Vector2(67.3850021F, -351.713989F)); + builder.AddCubicBezier(new Vector2(67.3850021F, -352.937988F), new Vector2(67.6569977F, -354.026001F), new Vector2(68.2009964F, -354.977997F)); + builder.AddCubicBezier(new Vector2(68.7440033F, -355.928986F), new Vector2(69.4929962F, -356.678009F), new Vector2(70.4449997F, -357.221985F)); + builder.AddCubicBezier(new Vector2(71.3960037F, -357.765015F), new Vector2(72.4850006F, -358.037994F), new Vector2(73.7089996F, -358.037994F)); + builder.AddCubicBezier(new Vector2(75.5449982F, -358.037994F), new Vector2(77.0309982F, -357.442993F), new Vector2(78.1709976F, -356.252991F)); + builder.AddCubicBezier(new Vector2(79.3099976F, -355.062012F), new Vector2(79.8799973F, -353.549988F), new Vector2(79.8799973F, -351.713989F)); + builder.AddLine(new Vector2(79.8799973F, -337.587006F)); + builder.AddLine(new Vector2(84.5210037F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1631() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(45.5569992F, -374.001007F)); + builder.AddLine(new Vector2(40.9160004F, -374.001007F)); + builder.AddLine(new Vector2(40.9160004F, -355.895996F)); + builder.AddLine(new Vector2(41.7830009F, -350.031006F)); + builder.AddLine(new Vector2(40.9160004F, -344.11499F)); + builder.AddLine(new Vector2(40.9160004F, -337.587006F)); + builder.AddLine(new Vector2(45.5569992F, -337.587006F)); + builder.AddLine(new Vector2(45.5569992F, -374.001007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(29.5179996F, -342.457001F)); + builder.AddCubicBezier(new Vector2(28.3449993F, -343.153015F), new Vector2(27.427F, -344.131989F), new Vector2(26.7639999F, -345.390015F)); + builder.AddCubicBezier(new Vector2(26.1009998F, -346.647003F), new Vector2(25.7689991F, -348.092987F), new Vector2(25.7689991F, -349.725006F)); + builder.AddCubicBezier(new Vector2(25.7689991F, -351.356995F), new Vector2(26.1009998F, -352.791992F), new Vector2(26.7639999F, -354.033997F)); + builder.AddCubicBezier(new Vector2(27.427F, -355.274994F), new Vector2(28.3360004F, -356.243988F), new Vector2(29.4920006F, -356.94101F)); + builder.AddCubicBezier(new Vector2(30.6469994F, -357.636993F), new Vector2(31.9909992F, -357.987F), new Vector2(33.5209999F, -357.987F)); + builder.AddCubicBezier(new Vector2(35.0509987F, -357.987F), new Vector2(36.394001F, -357.630005F), new Vector2(37.5499992F, -356.915985F)); + builder.AddCubicBezier(new Vector2(38.7050018F, -356.201996F), new Vector2(39.6069984F, -355.223999F), new Vector2(40.2529984F, -353.983002F)); + builder.AddCubicBezier(new Vector2(40.8979988F, -352.740997F), new Vector2(41.2220001F, -351.306F), new Vector2(41.2220001F, -349.674011F)); + builder.AddCubicBezier(new Vector2(41.2220001F, -348.075012F), new Vector2(40.8979988F, -346.656006F), new Vector2(40.2529984F, -345.415009F)); + builder.AddCubicBezier(new Vector2(39.6069984F, -344.173004F), new Vector2(38.7050018F, -343.196991F), new Vector2(37.5499992F, -342.483002F)); + builder.AddCubicBezier(new Vector2(36.394001F, -341.769012F), new Vector2(35.0509987F, -341.411987F), new Vector2(33.5209999F, -341.411987F)); + builder.AddCubicBezier(new Vector2(32.0239983F, -341.411987F), new Vector2(30.691F, -341.76001F), new Vector2(29.5179996F, -342.457001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(37.7540016F, -338.223999F)); + builder.AddCubicBezier(new Vector2(39.2150002F, -338.989014F), new Vector2(40.3880005F, -340.052002F), new Vector2(41.2729988F, -341.411987F)); + builder.AddCubicBezier(new Vector2(42.1570015F, -342.770996F), new Vector2(42.6500015F, -344.319F), new Vector2(42.7519989F, -346.053009F)); + builder.AddLine(new Vector2(42.7519989F, -353.346008F)); + builder.AddCubicBezier(new Vector2(42.6500015F, -355.113007F), new Vector2(42.1479988F, -356.667999F), new Vector2(41.2480011F, -358.011993F)); + builder.AddCubicBezier(new Vector2(40.3470001F, -359.355011F), new Vector2(39.1640015F, -360.408997F), new Vector2(37.7029991F, -361.174011F)); + builder.AddCubicBezier(new Vector2(36.2410011F, -361.938995F), new Vector2(34.5919991F, -362.321991F), new Vector2(32.7560005F, -362.321991F)); + builder.AddCubicBezier(new Vector2(30.5450001F, -362.321991F), new Vector2(28.5559998F, -361.760986F), new Vector2(26.7889996F, -360.639008F)); + builder.AddCubicBezier(new Vector2(25.0209999F, -359.516998F), new Vector2(23.618F, -358.003998F), new Vector2(22.5809994F, -356.100006F)); + builder.AddCubicBezier(new Vector2(21.5429993F, -354.195007F), new Vector2(21.0259991F, -352.053009F), new Vector2(21.0259991F, -349.674011F)); + builder.AddCubicBezier(new Vector2(21.0259991F, -347.294006F), new Vector2(21.5429993F, -345.152008F), new Vector2(22.5809994F, -343.247986F)); + builder.AddCubicBezier(new Vector2(23.618F, -341.342987F), new Vector2(25.0209999F, -339.838013F), new Vector2(26.7889996F, -338.734009F)); + builder.AddCubicBezier(new Vector2(28.5559998F, -337.628998F), new Vector2(30.5450001F, -337.076996F), new Vector2(32.7560005F, -337.076996F)); + builder.AddCubicBezier(new Vector2(34.625F, -337.076996F), new Vector2(36.2919998F, -337.459015F), new Vector2(37.7540016F, -338.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1632() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(15.8240004F, -337.587006F)); + builder.AddLine(new Vector2(15.8240004F, -374.001007F)); + builder.AddLine(new Vector2(11.2340002F, -374.001007F)); + builder.AddLine(new Vector2(11.2340002F, -337.587006F)); + builder.AddLine(new Vector2(15.8240004F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1633() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(0.0649999976F, -338.479004F)); + builder.AddCubicBezier(new Vector2(1.62800002F, -339.346008F), new Vector2(2.852F, -340.578003F), new Vector2(3.73699999F, -342.177002F)); + builder.AddCubicBezier(new Vector2(4.62099981F, -343.774994F), new Vector2(5.0630002F, -345.627014F), new Vector2(5.0630002F, -347.735992F)); + builder.AddLine(new Vector2(5.0630002F, -361.812012F)); + builder.AddLine(new Vector2(0.47299999F, -361.812012F)); + builder.AddLine(new Vector2(0.47299999F, -347.940002F)); + builder.AddCubicBezier(new Vector2(0.47299999F, -345.933014F), new Vector2(-0.0370000005F, -344.360992F), new Vector2(-1.05700004F, -343.221985F)); + builder.AddCubicBezier(new Vector2(-2.0769999F, -342.082001F), new Vector2(-3.48799992F, -341.514008F), new Vector2(-5.28999996F, -341.514008F)); + builder.AddCubicBezier(new Vector2(-6.48099995F, -341.514008F), new Vector2(-7.5170002F, -341.769012F), new Vector2(-8.40100002F, -342.278992F)); + builder.AddCubicBezier(new Vector2(-9.28600025F, -342.789001F), new Vector2(-9.95600033F, -343.528015F), new Vector2(-10.415F, -344.497009F)); + builder.AddCubicBezier(new Vector2(-10.8739996F, -345.466003F), new Vector2(-11.1040001F, -346.614014F), new Vector2(-11.1040001F, -347.940002F)); + builder.AddLine(new Vector2(-11.1040001F, -361.812012F)); + builder.AddLine(new Vector2(-15.6940002F, -361.812012F)); + builder.AddLine(new Vector2(-15.6940002F, -347.735992F)); + builder.AddCubicBezier(new Vector2(-15.6940002F, -345.627014F), new Vector2(-15.2530003F, -343.774994F), new Vector2(-14.368F, -342.177002F)); + builder.AddCubicBezier(new Vector2(-13.4840002F, -340.578003F), new Vector2(-12.2519999F, -339.346008F), new Vector2(-10.6709995F, -338.479004F)); + builder.AddCubicBezier(new Vector2(-9.09000015F, -337.612F), new Vector2(-7.29699993F, -337.178986F), new Vector2(-5.28999996F, -337.178986F)); + builder.AddCubicBezier(new Vector2(-3.28399992F, -337.178986F), new Vector2(-1.49899995F, -337.612F), new Vector2(0.0649999976F, -338.479004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1634() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-36.9099998F, -342.584991F)); + builder.AddCubicBezier(new Vector2(-38.1010017F, -343.299011F), new Vector2(-39.0349998F, -344.274994F), new Vector2(-39.7150002F, -345.516998F)); + builder.AddCubicBezier(new Vector2(-40.3959999F, -346.757996F), new Vector2(-40.7350006F, -348.177002F), new Vector2(-40.7350006F, -349.776001F)); + builder.AddCubicBezier(new Vector2(-40.7350006F, -351.338989F), new Vector2(-40.3959999F, -352.734009F), new Vector2(-39.7150002F, -353.958008F)); + builder.AddCubicBezier(new Vector2(-39.0349998F, -355.182007F), new Vector2(-38.1010017F, -356.141998F), new Vector2(-36.9099998F, -356.838989F)); + builder.AddCubicBezier(new Vector2(-35.7200012F, -357.535004F), new Vector2(-34.3779984F, -357.88501F), new Vector2(-32.8810005F, -357.88501F)); + builder.AddCubicBezier(new Vector2(-31.3180008F, -357.88501F), new Vector2(-29.948F, -357.535004F), new Vector2(-28.7749996F, -356.838989F)); + builder.AddCubicBezier(new Vector2(-27.6019993F, -356.141998F), new Vector2(-26.6679993F, -355.182007F), new Vector2(-25.9710007F, -353.958008F)); + builder.AddCubicBezier(new Vector2(-25.2749996F, -352.734009F), new Vector2(-24.9249992F, -351.338989F), new Vector2(-24.9249992F, -349.776001F)); + builder.AddCubicBezier(new Vector2(-24.9249992F, -348.177002F), new Vector2(-25.2649994F, -346.757996F), new Vector2(-25.9449997F, -345.516998F)); + builder.AddCubicBezier(new Vector2(-26.6259995F, -344.274994F), new Vector2(-27.5599995F, -343.299011F), new Vector2(-28.75F, -342.584991F)); + builder.AddCubicBezier(new Vector2(-29.941F, -341.871002F), new Vector2(-31.3180008F, -341.514008F), new Vector2(-32.8810005F, -341.514008F)); + builder.AddCubicBezier(new Vector2(-34.3779984F, -341.514008F), new Vector2(-35.7200012F, -341.871002F), new Vector2(-36.9099998F, -342.584991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-26.4300003F, -338.76001F)); + builder.AddCubicBezier(new Vector2(-24.5100002F, -339.881989F), new Vector2(-22.9869995F, -341.403015F), new Vector2(-21.8649998F, -343.324005F)); + builder.AddCubicBezier(new Vector2(-20.743F, -345.243988F), new Vector2(-20.1819992F, -347.395996F), new Vector2(-20.1819992F, -349.776001F)); + builder.AddCubicBezier(new Vector2(-20.1819992F, -352.122009F), new Vector2(-20.743F, -354.246002F), new Vector2(-21.8649998F, -356.151001F)); + builder.AddCubicBezier(new Vector2(-22.9869995F, -358.054993F), new Vector2(-24.5100002F, -359.55899F), new Vector2(-26.4300003F, -360.664001F)); + builder.AddCubicBezier(new Vector2(-28.3509998F, -361.768005F), new Vector2(-30.5020008F, -362.321991F), new Vector2(-32.8810005F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-35.2270012F, -362.321991F), new Vector2(-37.3520012F, -361.760986F), new Vector2(-39.2560005F, -360.639008F)); + builder.AddCubicBezier(new Vector2(-41.1609993F, -359.516998F), new Vector2(-42.6730003F, -358.011993F), new Vector2(-43.7949982F, -356.125F)); + builder.AddCubicBezier(new Vector2(-44.9169998F, -354.238007F), new Vector2(-45.4780006F, -352.122009F), new Vector2(-45.4780006F, -349.776001F)); + builder.AddCubicBezier(new Vector2(-45.4780006F, -347.395996F), new Vector2(-44.9169998F, -345.243988F), new Vector2(-43.7949982F, -343.324005F)); + builder.AddCubicBezier(new Vector2(-42.6730003F, -341.403015F), new Vector2(-41.1609993F, -339.881989F), new Vector2(-39.2560005F, -338.76001F)); + builder.AddCubicBezier(new Vector2(-37.3520012F, -337.638F), new Vector2(-35.2270012F, -337.076996F), new Vector2(-32.8810005F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-30.5020008F, -337.076996F), new Vector2(-28.3509998F, -337.638F), new Vector2(-26.4300003F, -338.76001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1635() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-52.0830002F, -338.14801F)); + builder.AddCubicBezier(new Vector2(-50.4690018F, -338.862F), new Vector2(-49.098999F, -339.864014F), new Vector2(-47.9770012F, -341.157013F)); + builder.AddLine(new Vector2(-50.9860001F, -344.21701F)); + builder.AddCubicBezier(new Vector2(-51.769001F, -343.332001F), new Vector2(-52.6949997F, -342.661011F), new Vector2(-53.7659988F, -342.201996F)); + builder.AddCubicBezier(new Vector2(-54.8370018F, -341.743011F), new Vector2(-56.0180016F, -341.514008F), new Vector2(-57.3100014F, -341.514008F)); + builder.AddCubicBezier(new Vector2(-58.8400002F, -341.514008F), new Vector2(-60.2000008F, -341.871002F), new Vector2(-61.3899994F, -342.584991F)); + builder.AddCubicBezier(new Vector2(-62.5810013F, -343.299011F), new Vector2(-63.5149994F, -344.268005F), new Vector2(-64.1949997F, -345.492004F)); + builder.AddCubicBezier(new Vector2(-64.8759995F, -346.716003F), new Vector2(-65.2149963F, -348.126007F), new Vector2(-65.2149963F, -349.725006F)); + builder.AddCubicBezier(new Vector2(-65.2149963F, -351.322998F), new Vector2(-64.8759995F, -352.734009F), new Vector2(-64.1949997F, -353.958008F)); + builder.AddCubicBezier(new Vector2(-63.5149994F, -355.182007F), new Vector2(-62.5810013F, -356.141998F), new Vector2(-61.3899994F, -356.838989F)); + builder.AddCubicBezier(new Vector2(-60.2000008F, -357.535004F), new Vector2(-58.8400002F, -357.88501F), new Vector2(-57.3100014F, -357.88501F)); + builder.AddCubicBezier(new Vector2(-56.0530014F, -357.88501F), new Vector2(-54.8800011F, -357.654999F), new Vector2(-53.7910004F, -357.196014F)); + builder.AddCubicBezier(new Vector2(-52.7029991F, -356.737F), new Vector2(-51.7849998F, -356.06601F), new Vector2(-51.0369987F, -355.182007F)); + builder.AddLine(new Vector2(-47.9770012F, -358.242004F)); + builder.AddCubicBezier(new Vector2(-49.1329994F, -359.567993F), new Vector2(-50.5099983F, -360.57901F), new Vector2(-52.1080017F, -361.276001F)); + builder.AddCubicBezier(new Vector2(-53.7070007F, -361.971985F), new Vector2(-55.4410019F, -362.321991F), new Vector2(-57.3100014F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-59.6899986F, -362.321991F), new Vector2(-61.8419991F, -361.768005F), new Vector2(-63.762001F, -360.664001F)); + builder.AddCubicBezier(new Vector2(-65.6829987F, -359.55899F), new Vector2(-67.1969986F, -358.054993F), new Vector2(-68.3010025F, -356.151001F)); + builder.AddCubicBezier(new Vector2(-69.4059982F, -354.246002F), new Vector2(-69.9580002F, -352.104004F), new Vector2(-69.9580002F, -349.725006F)); + builder.AddCubicBezier(new Vector2(-69.9580002F, -347.378998F), new Vector2(-69.4059982F, -345.243988F), new Vector2(-68.3010025F, -343.324005F)); + builder.AddCubicBezier(new Vector2(-67.1969986F, -341.403015F), new Vector2(-65.6829987F, -339.881989F), new Vector2(-63.762001F, -338.76001F)); + builder.AddCubicBezier(new Vector2(-61.8419991F, -337.638F), new Vector2(-59.6899986F, -337.076996F), new Vector2(-57.3100014F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-55.4410019F, -337.076996F), new Vector2(-53.6980019F, -337.43399F), new Vector2(-52.0830002F, -338.14801F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1636() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-85.6149979F, -374.001007F)); + builder.AddLine(new Vector2(-90.2559967F, -374.001007F)); + builder.AddLine(new Vector2(-90.2559967F, -355.895996F)); + builder.AddLine(new Vector2(-89.3889999F, -350.031006F)); + builder.AddLine(new Vector2(-90.2559967F, -344.11499F)); + builder.AddLine(new Vector2(-90.2559967F, -337.587006F)); + builder.AddLine(new Vector2(-85.6149979F, -337.587006F)); + builder.AddLine(new Vector2(-85.6149979F, -374.001007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-101.653999F, -342.457001F)); + builder.AddCubicBezier(new Vector2(-102.827003F, -343.153015F), new Vector2(-103.745003F, -344.131989F), new Vector2(-104.407997F, -345.390015F)); + builder.AddCubicBezier(new Vector2(-105.070999F, -346.647003F), new Vector2(-105.403F, -348.092987F), new Vector2(-105.403F, -349.725006F)); + builder.AddCubicBezier(new Vector2(-105.403F, -351.356995F), new Vector2(-105.070999F, -352.791992F), new Vector2(-104.407997F, -354.033997F)); + builder.AddCubicBezier(new Vector2(-103.745003F, -355.274994F), new Vector2(-102.835999F, -356.243988F), new Vector2(-101.68F, -356.94101F)); + builder.AddCubicBezier(new Vector2(-100.525002F, -357.636993F), new Vector2(-99.1809998F, -357.987F), new Vector2(-97.651001F, -357.987F)); + builder.AddCubicBezier(new Vector2(-96.1210022F, -357.987F), new Vector2(-94.7779999F, -357.630005F), new Vector2(-93.6220016F, -356.915985F)); + builder.AddCubicBezier(new Vector2(-92.4670029F, -356.201996F), new Vector2(-91.5650024F, -355.223999F), new Vector2(-90.9189987F, -353.983002F)); + builder.AddCubicBezier(new Vector2(-90.2740021F, -352.740997F), new Vector2(-89.9499969F, -351.306F), new Vector2(-89.9499969F, -349.674011F)); + builder.AddCubicBezier(new Vector2(-89.9499969F, -348.075012F), new Vector2(-90.2740021F, -346.656006F), new Vector2(-90.9189987F, -345.415009F)); + builder.AddCubicBezier(new Vector2(-91.5650024F, -344.173004F), new Vector2(-92.4670029F, -343.196991F), new Vector2(-93.6220016F, -342.483002F)); + builder.AddCubicBezier(new Vector2(-94.7779999F, -341.769012F), new Vector2(-96.1210022F, -341.411987F), new Vector2(-97.651001F, -341.411987F)); + builder.AddCubicBezier(new Vector2(-99.1480026F, -341.411987F), new Vector2(-100.481003F, -341.76001F), new Vector2(-101.653999F, -342.457001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-93.4179993F, -338.223999F)); + builder.AddCubicBezier(new Vector2(-91.9570007F, -338.989014F), new Vector2(-90.7839966F, -340.052002F), new Vector2(-89.8990021F, -341.411987F)); + builder.AddCubicBezier(new Vector2(-89.0149994F, -342.770996F), new Vector2(-88.5220032F, -344.319F), new Vector2(-88.4199982F, -346.053009F)); + builder.AddLine(new Vector2(-88.4199982F, -353.346008F)); + builder.AddCubicBezier(new Vector2(-88.5220032F, -355.113007F), new Vector2(-89.0240021F, -356.667999F), new Vector2(-89.9240036F, -358.011993F)); + builder.AddCubicBezier(new Vector2(-90.8249969F, -359.355011F), new Vector2(-92.0080032F, -360.408997F), new Vector2(-93.4690018F, -361.174011F)); + builder.AddCubicBezier(new Vector2(-94.9309998F, -361.938995F), new Vector2(-96.5800018F, -362.321991F), new Vector2(-98.4160004F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-100.626999F, -362.321991F), new Vector2(-102.615997F, -361.760986F), new Vector2(-104.383003F, -360.639008F)); + builder.AddCubicBezier(new Vector2(-106.151001F, -359.516998F), new Vector2(-107.553001F, -358.003998F), new Vector2(-108.589996F, -356.100006F)); + builder.AddCubicBezier(new Vector2(-109.627998F, -354.195007F), new Vector2(-110.146004F, -352.053009F), new Vector2(-110.146004F, -349.674011F)); + builder.AddCubicBezier(new Vector2(-110.146004F, -347.294006F), new Vector2(-109.627998F, -345.152008F), new Vector2(-108.589996F, -343.247986F)); + builder.AddCubicBezier(new Vector2(-107.553001F, -341.342987F), new Vector2(-106.151001F, -339.838013F), new Vector2(-104.383003F, -338.734009F)); + builder.AddCubicBezier(new Vector2(-102.615997F, -337.628998F), new Vector2(-100.626999F, -337.076996F), new Vector2(-98.4160004F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-96.5469971F, -337.076996F), new Vector2(-94.8799973F, -337.459015F), new Vector2(-93.4179993F, -338.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1637() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-131.973999F, -337.587006F)); + builder.AddLine(new Vector2(-131.973999F, -361.812012F)); + builder.AddLine(new Vector2(-136.563995F, -361.812012F)); + builder.AddLine(new Vector2(-136.563995F, -337.587006F)); + builder.AddLine(new Vector2(-131.973999F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-114.837997F, -337.587006F)); + builder.AddLine(new Vector2(-114.837997F, -352.631989F)); + builder.AddCubicBezier(new Vector2(-114.837997F, -354.296997F), new Vector2(-115.246002F, -355.869995F), new Vector2(-116.061996F, -357.348999F)); + builder.AddCubicBezier(new Vector2(-116.877998F, -358.828003F), new Vector2(-117.991997F, -360.027008F), new Vector2(-119.402F, -360.945007F)); + builder.AddCubicBezier(new Vector2(-120.813004F, -361.863007F), new Vector2(-122.436996F, -362.321991F), new Vector2(-124.273003F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-126.109001F, -362.321991F), new Vector2(-127.759003F, -361.904999F), new Vector2(-129.220001F, -361.071991F)); + builder.AddCubicBezier(new Vector2(-130.682007F, -360.238007F), new Vector2(-131.820999F, -359.109009F), new Vector2(-132.636993F, -357.681F)); + builder.AddCubicBezier(new Vector2(-133.453003F, -356.252991F), new Vector2(-133.860992F, -354.621002F), new Vector2(-133.860992F, -352.785004F)); + builder.AddLine(new Vector2(-131.973999F, -351.713989F)); + builder.AddCubicBezier(new Vector2(-131.973999F, -352.937988F), new Vector2(-131.701996F, -354.026001F), new Vector2(-131.158005F, -354.977997F)); + builder.AddCubicBezier(new Vector2(-130.615005F, -355.928986F), new Vector2(-129.865997F, -356.678009F), new Vector2(-128.914001F, -357.221985F)); + builder.AddCubicBezier(new Vector2(-127.962997F, -357.765015F), new Vector2(-126.874001F, -358.037994F), new Vector2(-125.650002F, -358.037994F)); + builder.AddCubicBezier(new Vector2(-123.814003F, -358.037994F), new Vector2(-122.328003F, -357.442993F), new Vector2(-121.188004F, -356.252991F)); + builder.AddCubicBezier(new Vector2(-120.049004F, -355.062012F), new Vector2(-119.478996F, -353.549988F), new Vector2(-119.478996F, -351.713989F)); + builder.AddLine(new Vector2(-119.478996F, -337.587006F)); + builder.AddLine(new Vector2(-114.837997F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1638() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-143.244995F, -337.587006F)); + builder.AddLine(new Vector2(-143.244995F, -361.812012F)); + builder.AddLine(new Vector2(-147.886002F, -361.812012F)); + builder.AddLine(new Vector2(-147.886002F, -355.895996F)); + builder.AddLine(new Vector2(-147.018997F, -350.031006F)); + builder.AddLine(new Vector2(-147.886002F, -344.11499F)); + builder.AddLine(new Vector2(-147.886002F, -337.587006F)); + builder.AddLine(new Vector2(-143.244995F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-159.259003F, -342.483002F)); + builder.AddCubicBezier(new Vector2(-160.449997F, -343.196991F), new Vector2(-161.375F, -344.173004F), new Vector2(-162.037994F, -345.415009F)); + builder.AddCubicBezier(new Vector2(-162.701004F, -346.656006F), new Vector2(-163.033005F, -348.092987F), new Vector2(-163.033005F, -349.725006F)); + builder.AddCubicBezier(new Vector2(-163.033005F, -351.322998F), new Vector2(-162.701004F, -352.740997F), new Vector2(-162.037994F, -353.983002F)); + builder.AddCubicBezier(new Vector2(-161.375F, -355.223999F), new Vector2(-160.457993F, -356.201996F), new Vector2(-159.285004F, -356.915985F)); + builder.AddCubicBezier(new Vector2(-158.112F, -357.630005F), new Vector2(-156.759995F, -357.987F), new Vector2(-155.229996F, -357.987F)); + builder.AddCubicBezier(new Vector2(-153.699997F, -357.987F), new Vector2(-152.367004F, -357.636993F), new Vector2(-151.227005F, -356.94101F)); + builder.AddCubicBezier(new Vector2(-150.087997F, -356.243988F), new Vector2(-149.195007F, -355.265991F), new Vector2(-148.548996F, -354.009003F)); + builder.AddCubicBezier(new Vector2(-147.904007F, -352.751007F), new Vector2(-147.580002F, -351.306F), new Vector2(-147.580002F, -349.674011F)); + builder.AddCubicBezier(new Vector2(-147.580002F, -347.259003F), new Vector2(-148.276993F, -345.278992F), new Vector2(-149.671005F, -343.731995F)); + builder.AddCubicBezier(new Vector2(-151.065994F, -342.18399F), new Vector2(-152.901993F, -341.411987F), new Vector2(-155.179001F, -341.411987F)); + builder.AddCubicBezier(new Vector2(-156.709F, -341.411987F), new Vector2(-158.069F, -341.769012F), new Vector2(-159.259003F, -342.483002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-150.996994F, -338.223999F)); + builder.AddCubicBezier(new Vector2(-149.535995F, -338.989014F), new Vector2(-148.369995F, -340.052002F), new Vector2(-147.503006F, -341.411987F)); + builder.AddCubicBezier(new Vector2(-146.636002F, -342.770996F), new Vector2(-146.151993F, -344.319F), new Vector2(-146.050003F, -346.053009F)); + builder.AddLine(new Vector2(-146.050003F, -353.346008F)); + builder.AddCubicBezier(new Vector2(-146.151993F, -355.113007F), new Vector2(-146.645004F, -356.667999F), new Vector2(-147.529007F, -358.011993F)); + builder.AddCubicBezier(new Vector2(-148.414001F, -359.355011F), new Vector2(-149.576996F, -360.408997F), new Vector2(-151.022003F, -361.174011F)); + builder.AddCubicBezier(new Vector2(-152.468002F, -361.938995F), new Vector2(-154.108002F, -362.321991F), new Vector2(-155.944F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-158.188004F, -362.321991F), new Vector2(-160.203003F, -361.760986F), new Vector2(-161.988007F, -360.639008F)); + builder.AddCubicBezier(new Vector2(-163.772995F, -359.516998F), new Vector2(-165.184006F, -358.003998F), new Vector2(-166.220993F, -356.100006F)); + builder.AddCubicBezier(new Vector2(-167.259003F, -354.195007F), new Vector2(-167.776001F, -352.053009F), new Vector2(-167.776001F, -349.674011F)); + builder.AddCubicBezier(new Vector2(-167.776001F, -347.294006F), new Vector2(-167.259003F, -345.152008F), new Vector2(-166.220993F, -343.247986F)); + builder.AddCubicBezier(new Vector2(-165.184006F, -341.342987F), new Vector2(-163.772995F, -339.838013F), new Vector2(-161.988007F, -338.734009F)); + builder.AddCubicBezier(new Vector2(-160.203003F, -337.628998F), new Vector2(-158.188004F, -337.076996F), new Vector2(-155.944F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-154.108002F, -337.076996F), new Vector2(-152.459F, -337.459015F), new Vector2(-150.996994F, -338.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1639() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-187.972F, -338.479004F)); + builder.AddCubicBezier(new Vector2(-186.408997F, -339.346008F), new Vector2(-185.184998F, -340.578003F), new Vector2(-184.300003F, -342.177002F)); + builder.AddCubicBezier(new Vector2(-183.416F, -343.774994F), new Vector2(-182.973999F, -345.627014F), new Vector2(-182.973999F, -347.735992F)); + builder.AddLine(new Vector2(-182.973999F, -361.812012F)); + builder.AddLine(new Vector2(-187.563995F, -361.812012F)); + builder.AddLine(new Vector2(-187.563995F, -347.940002F)); + builder.AddCubicBezier(new Vector2(-187.563995F, -345.933014F), new Vector2(-188.074005F, -344.360992F), new Vector2(-189.093994F, -343.221985F)); + builder.AddCubicBezier(new Vector2(-190.113998F, -342.082001F), new Vector2(-191.524994F, -341.514008F), new Vector2(-193.326996F, -341.514008F)); + builder.AddCubicBezier(new Vector2(-194.518005F, -341.514008F), new Vector2(-195.554001F, -341.769012F), new Vector2(-196.438004F, -342.278992F)); + builder.AddCubicBezier(new Vector2(-197.322998F, -342.789001F), new Vector2(-197.992996F, -343.528015F), new Vector2(-198.451996F, -344.497009F)); + builder.AddCubicBezier(new Vector2(-198.910995F, -345.466003F), new Vector2(-199.141006F, -346.614014F), new Vector2(-199.141006F, -347.940002F)); + builder.AddLine(new Vector2(-199.141006F, -361.812012F)); + builder.AddLine(new Vector2(-203.731003F, -361.812012F)); + builder.AddLine(new Vector2(-203.731003F, -347.735992F)); + builder.AddCubicBezier(new Vector2(-203.731003F, -345.627014F), new Vector2(-203.289993F, -343.774994F), new Vector2(-202.404999F, -342.177002F)); + builder.AddCubicBezier(new Vector2(-201.520996F, -340.578003F), new Vector2(-200.287994F, -339.346008F), new Vector2(-198.707001F, -338.479004F)); + builder.AddCubicBezier(new Vector2(-197.126007F, -337.612F), new Vector2(-195.334F, -337.178986F), new Vector2(-193.326996F, -337.178986F)); + builder.AddCubicBezier(new Vector2(-191.320999F, -337.178986F), new Vector2(-189.535995F, -337.612F), new Vector2(-187.972F, -338.479004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1640() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-224.947006F, -342.584991F)); + builder.AddCubicBezier(new Vector2(-226.138F, -343.299011F), new Vector2(-227.072006F, -344.274994F), new Vector2(-227.751999F, -345.516998F)); + builder.AddCubicBezier(new Vector2(-228.432999F, -346.757996F), new Vector2(-228.772003F, -348.177002F), new Vector2(-228.772003F, -349.776001F)); + builder.AddCubicBezier(new Vector2(-228.772003F, -351.338989F), new Vector2(-228.432999F, -352.734009F), new Vector2(-227.751999F, -353.958008F)); + builder.AddCubicBezier(new Vector2(-227.072006F, -355.182007F), new Vector2(-226.138F, -356.141998F), new Vector2(-224.947006F, -356.838989F)); + builder.AddCubicBezier(new Vector2(-223.757004F, -357.535004F), new Vector2(-222.414993F, -357.88501F), new Vector2(-220.917999F, -357.88501F)); + builder.AddCubicBezier(new Vector2(-219.354996F, -357.88501F), new Vector2(-217.985001F, -357.535004F), new Vector2(-216.811996F, -356.838989F)); + builder.AddCubicBezier(new Vector2(-215.639008F, -356.141998F), new Vector2(-214.703995F, -355.182007F), new Vector2(-214.007004F, -353.958008F)); + builder.AddCubicBezier(new Vector2(-213.311005F, -352.734009F), new Vector2(-212.962006F, -351.338989F), new Vector2(-212.962006F, -349.776001F)); + builder.AddCubicBezier(new Vector2(-212.962006F, -348.177002F), new Vector2(-213.302002F, -346.757996F), new Vector2(-213.981995F, -345.516998F)); + builder.AddCubicBezier(new Vector2(-214.662994F, -344.274994F), new Vector2(-215.597F, -343.299011F), new Vector2(-216.787003F, -342.584991F)); + builder.AddCubicBezier(new Vector2(-217.977997F, -341.871002F), new Vector2(-219.354996F, -341.514008F), new Vector2(-220.917999F, -341.514008F)); + builder.AddCubicBezier(new Vector2(-222.414993F, -341.514008F), new Vector2(-223.757004F, -341.871002F), new Vector2(-224.947006F, -342.584991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-214.466003F, -338.76001F)); + builder.AddCubicBezier(new Vector2(-212.546005F, -339.881989F), new Vector2(-211.024002F, -341.403015F), new Vector2(-209.901993F, -343.324005F)); + builder.AddCubicBezier(new Vector2(-208.779999F, -345.243988F), new Vector2(-208.218994F, -347.395996F), new Vector2(-208.218994F, -349.776001F)); + builder.AddCubicBezier(new Vector2(-208.218994F, -352.122009F), new Vector2(-208.779999F, -354.246002F), new Vector2(-209.901993F, -356.151001F)); + builder.AddCubicBezier(new Vector2(-211.024002F, -358.054993F), new Vector2(-212.546005F, -359.55899F), new Vector2(-214.466003F, -360.664001F)); + builder.AddCubicBezier(new Vector2(-216.386993F, -361.768005F), new Vector2(-218.539001F, -362.321991F), new Vector2(-220.917999F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-223.264008F, -362.321991F), new Vector2(-225.389008F, -361.760986F), new Vector2(-227.292999F, -360.639008F)); + builder.AddCubicBezier(new Vector2(-229.197998F, -359.516998F), new Vector2(-230.710007F, -358.011993F), new Vector2(-231.832001F, -356.125F)); + builder.AddCubicBezier(new Vector2(-232.953995F, -354.238007F), new Vector2(-233.514999F, -352.122009F), new Vector2(-233.514999F, -349.776001F)); + builder.AddCubicBezier(new Vector2(-233.514999F, -347.395996F), new Vector2(-232.953995F, -345.243988F), new Vector2(-231.832001F, -343.324005F)); + builder.AddCubicBezier(new Vector2(-230.710007F, -341.403015F), new Vector2(-229.197998F, -339.881989F), new Vector2(-227.292999F, -338.76001F)); + builder.AddCubicBezier(new Vector2(-225.389008F, -337.638F), new Vector2(-223.264008F, -337.076996F), new Vector2(-220.917999F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-218.539001F, -337.076996F), new Vector2(-216.386993F, -337.638F), new Vector2(-214.466003F, -338.76001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1641() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-250.701996F, -327.437988F)); + builder.AddLine(new Vector2(-246.112F, -337.382996F)); + builder.AddLine(new Vector2(-248.712997F, -342.075012F)); + builder.AddLine(new Vector2(-255.802002F, -327.437988F)); + builder.AddLine(new Vector2(-250.701996F, -327.437988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-246.112F, -337.382996F)); + builder.AddLine(new Vector2(-234.789993F, -361.812012F)); + builder.AddLine(new Vector2(-239.889999F, -361.812012F)); + builder.AddLine(new Vector2(-248.100998F, -342.687012F)); + builder.AddLine(new Vector2(-246.468994F, -342.687012F)); + builder.AddLine(new Vector2(-254.272003F, -361.812012F)); + builder.AddLine(new Vector2(-259.372009F, -361.812012F)); + builder.AddLine(new Vector2(-248.865997F, -337.382996F)); + builder.AddLine(new Vector2(-246.112F, -337.382996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1642() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-274.953003F, -339.06601F)); + builder.AddCubicBezier(new Vector2(-273.338989F, -340.391998F), new Vector2(-272.529999F, -342.194F), new Vector2(-272.529999F, -344.471985F)); + builder.AddCubicBezier(new Vector2(-272.529999F, -345.967987F), new Vector2(-272.845001F, -347.174988F), new Vector2(-273.473999F, -348.092987F)); + builder.AddCubicBezier(new Vector2(-274.104004F, -349.010986F), new Vector2(-274.910004F, -349.742004F), new Vector2(-275.895996F, -350.286011F)); + builder.AddCubicBezier(new Vector2(-276.882996F, -350.82901F), new Vector2(-277.919006F, -351.261993F), new Vector2(-279.006989F, -351.585999F)); + builder.AddCubicBezier(new Vector2(-280.096008F, -351.908997F), new Vector2(-281.141998F, -352.223999F), new Vector2(-282.144012F, -352.529999F)); + builder.AddCubicBezier(new Vector2(-283.147003F, -352.835999F), new Vector2(-283.95401F, -353.209991F), new Vector2(-284.56601F, -353.652008F)); + builder.AddCubicBezier(new Vector2(-285.178009F, -354.092987F), new Vector2(-285.484009F, -354.722992F), new Vector2(-285.484009F, -355.539001F)); + builder.AddCubicBezier(new Vector2(-285.484009F, -356.321014F), new Vector2(-285.135986F, -356.949005F), new Vector2(-284.438995F, -357.425995F)); + builder.AddCubicBezier(new Vector2(-283.743011F, -357.902008F), new Vector2(-282.730011F, -358.140015F), new Vector2(-281.403992F, -358.140015F)); + builder.AddCubicBezier(new Vector2(-280.147003F, -358.140015F), new Vector2(-279.024994F, -357.902008F), new Vector2(-278.037994F, -357.425995F)); + builder.AddCubicBezier(new Vector2(-277.052002F, -356.949005F), new Vector2(-276.201996F, -356.269989F), new Vector2(-275.488007F, -355.385986F)); + builder.AddLine(new Vector2(-272.529999F, -358.343994F)); + builder.AddCubicBezier(new Vector2(-273.481995F, -359.670013F), new Vector2(-274.697998F, -360.664001F), new Vector2(-276.177002F, -361.326996F)); + builder.AddCubicBezier(new Vector2(-277.656006F, -361.98999F), new Vector2(-279.346985F, -362.321991F), new Vector2(-281.251007F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-283.053986F, -362.321991F), new Vector2(-284.600006F, -362.03299F), new Vector2(-285.891998F, -361.454987F)); + builder.AddCubicBezier(new Vector2(-287.184998F, -360.876007F), new Vector2(-288.179993F, -360.052002F), new Vector2(-288.876007F, -358.980988F)); + builder.AddCubicBezier(new Vector2(-289.572998F, -357.910004F), new Vector2(-289.92099F, -356.643005F), new Vector2(-289.92099F, -355.182007F)); + builder.AddCubicBezier(new Vector2(-289.92099F, -353.720001F), new Vector2(-289.608002F, -352.536987F), new Vector2(-288.977997F, -351.636993F)); + builder.AddCubicBezier(new Vector2(-288.348999F, -350.735992F), new Vector2(-287.541992F, -350.031006F), new Vector2(-286.554993F, -349.520996F)); + builder.AddCubicBezier(new Vector2(-285.569F, -349.010986F), new Vector2(-284.523987F, -348.602997F), new Vector2(-283.419006F, -348.296997F)); + builder.AddCubicBezier(new Vector2(-282.315002F, -347.990997F), new Vector2(-281.269012F, -347.675995F), new Vector2(-280.282013F, -347.352997F)); + builder.AddCubicBezier(new Vector2(-279.29599F, -347.028992F), new Vector2(-278.48999F, -346.621002F), new Vector2(-277.859985F, -346.128998F)); + builder.AddCubicBezier(new Vector2(-277.230988F, -345.635986F), new Vector2(-276.915985F, -344.947998F), new Vector2(-276.915985F, -344.063995F)); + builder.AddCubicBezier(new Vector2(-276.915985F, -343.178986F), new Vector2(-277.307007F, -342.48999F), new Vector2(-278.088989F, -341.997986F)); + builder.AddCubicBezier(new Vector2(-278.872009F, -341.505005F), new Vector2(-279.976013F, -341.259003F), new Vector2(-281.403992F, -341.259003F)); + builder.AddCubicBezier(new Vector2(-282.832001F, -341.259003F), new Vector2(-284.125F, -341.520996F), new Vector2(-285.279999F, -342.049011F)); + builder.AddCubicBezier(new Vector2(-286.436005F, -342.575989F), new Vector2(-287.455994F, -343.382996F), new Vector2(-288.339996F, -344.471985F)); + builder.AddLine(new Vector2(-291.298004F, -341.514008F)); + builder.AddCubicBezier(new Vector2(-290.550995F, -340.596008F), new Vector2(-289.674988F, -339.804993F), new Vector2(-288.671997F, -339.141998F)); + builder.AddCubicBezier(new Vector2(-287.670013F, -338.479004F), new Vector2(-286.554993F, -337.968994F), new Vector2(-285.330994F, -337.612F)); + builder.AddCubicBezier(new Vector2(-284.106995F, -337.255005F), new Vector2(-282.815002F, -337.076996F), new Vector2(-281.454987F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-278.734985F, -337.076996F), new Vector2(-276.567993F, -337.73999F), new Vector2(-274.953003F, -339.06601F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1643() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-295.837006F, -374.001007F)); + builder.AddLine(new Vector2(-300.477997F, -374.001007F)); + builder.AddLine(new Vector2(-300.477997F, -355.895996F)); + builder.AddLine(new Vector2(-299.610992F, -350.031006F)); + builder.AddLine(new Vector2(-300.477997F, -344.11499F)); + builder.AddLine(new Vector2(-300.477997F, -337.587006F)); + builder.AddLine(new Vector2(-295.837006F, -337.587006F)); + builder.AddLine(new Vector2(-295.837006F, -374.001007F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-311.876007F, -342.457001F)); + builder.AddCubicBezier(new Vector2(-313.049011F, -343.153015F), new Vector2(-313.967987F, -344.131989F), new Vector2(-314.631012F, -345.390015F)); + builder.AddCubicBezier(new Vector2(-315.294006F, -346.647003F), new Vector2(-315.625F, -348.092987F), new Vector2(-315.625F, -349.725006F)); + builder.AddCubicBezier(new Vector2(-315.625F, -351.356995F), new Vector2(-315.294006F, -352.791992F), new Vector2(-314.631012F, -354.033997F)); + builder.AddCubicBezier(new Vector2(-313.967987F, -355.274994F), new Vector2(-313.058014F, -356.243988F), new Vector2(-311.902008F, -356.94101F)); + builder.AddCubicBezier(new Vector2(-310.747009F, -357.636993F), new Vector2(-309.403015F, -357.987F), new Vector2(-307.872986F, -357.987F)); + builder.AddCubicBezier(new Vector2(-306.342987F, -357.987F), new Vector2(-305F, -357.630005F), new Vector2(-303.843994F, -356.915985F)); + builder.AddCubicBezier(new Vector2(-302.688995F, -356.201996F), new Vector2(-301.786987F, -355.223999F), new Vector2(-301.140991F, -353.983002F)); + builder.AddCubicBezier(new Vector2(-300.496002F, -352.740997F), new Vector2(-300.171997F, -351.306F), new Vector2(-300.171997F, -349.674011F)); + builder.AddCubicBezier(new Vector2(-300.171997F, -348.075012F), new Vector2(-300.496002F, -346.656006F), new Vector2(-301.140991F, -345.415009F)); + builder.AddCubicBezier(new Vector2(-301.786987F, -344.173004F), new Vector2(-302.688995F, -343.196991F), new Vector2(-303.843994F, -342.483002F)); + builder.AddCubicBezier(new Vector2(-305F, -341.769012F), new Vector2(-306.342987F, -341.411987F), new Vector2(-307.872986F, -341.411987F)); + builder.AddCubicBezier(new Vector2(-309.369995F, -341.411987F), new Vector2(-310.703003F, -341.76001F), new Vector2(-311.876007F, -342.457001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-303.640015F, -338.223999F)); + builder.AddCubicBezier(new Vector2(-302.178986F, -338.989014F), new Vector2(-301.006012F, -340.052002F), new Vector2(-300.121002F, -341.411987F)); + builder.AddCubicBezier(new Vector2(-299.237F, -342.770996F), new Vector2(-298.743988F, -344.319F), new Vector2(-298.641998F, -346.053009F)); + builder.AddLine(new Vector2(-298.641998F, -353.346008F)); + builder.AddCubicBezier(new Vector2(-298.743988F, -355.113007F), new Vector2(-299.247009F, -356.667999F), new Vector2(-300.147003F, -358.011993F)); + builder.AddCubicBezier(new Vector2(-301.048004F, -359.355011F), new Vector2(-302.230011F, -360.408997F), new Vector2(-303.69101F, -361.174011F)); + builder.AddCubicBezier(new Vector2(-305.153015F, -361.938995F), new Vector2(-306.802002F, -362.321991F), new Vector2(-308.638F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-310.848999F, -362.321991F), new Vector2(-312.838013F, -361.760986F), new Vector2(-314.605011F, -360.639008F)); + builder.AddCubicBezier(new Vector2(-316.372986F, -359.516998F), new Vector2(-317.774994F, -358.003998F), new Vector2(-318.812012F, -356.100006F)); + builder.AddCubicBezier(new Vector2(-319.850006F, -354.195007F), new Vector2(-320.368011F, -352.053009F), new Vector2(-320.368011F, -349.674011F)); + builder.AddCubicBezier(new Vector2(-320.368011F, -347.294006F), new Vector2(-319.850006F, -345.152008F), new Vector2(-318.812012F, -343.247986F)); + builder.AddCubicBezier(new Vector2(-317.774994F, -341.342987F), new Vector2(-316.372986F, -339.838013F), new Vector2(-314.605011F, -338.734009F)); + builder.AddCubicBezier(new Vector2(-312.838013F, -337.628998F), new Vector2(-310.848999F, -337.076996F), new Vector2(-308.638F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-306.769012F, -337.076996F), new Vector2(-305.10199F, -337.459015F), new Vector2(-303.640015F, -338.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1644() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-342.196014F, -337.587006F)); + builder.AddLine(new Vector2(-342.196014F, -361.812012F)); + builder.AddLine(new Vector2(-346.786011F, -361.812012F)); + builder.AddLine(new Vector2(-346.786011F, -337.587006F)); + builder.AddLine(new Vector2(-342.196014F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-325.059998F, -337.587006F)); + builder.AddLine(new Vector2(-325.059998F, -352.631989F)); + builder.AddCubicBezier(new Vector2(-325.059998F, -354.296997F), new Vector2(-325.467987F, -355.869995F), new Vector2(-326.283997F, -357.348999F)); + builder.AddCubicBezier(new Vector2(-327.100006F, -358.828003F), new Vector2(-328.214996F, -360.027008F), new Vector2(-329.625F, -360.945007F)); + builder.AddCubicBezier(new Vector2(-331.036011F, -361.863007F), new Vector2(-332.658997F, -362.321991F), new Vector2(-334.494995F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-336.330994F, -362.321991F), new Vector2(-337.980988F, -361.904999F), new Vector2(-339.441986F, -361.071991F)); + builder.AddCubicBezier(new Vector2(-340.903992F, -360.238007F), new Vector2(-342.042999F, -359.109009F), new Vector2(-342.859009F, -357.681F)); + builder.AddCubicBezier(new Vector2(-343.674988F, -356.252991F), new Vector2(-344.083008F, -354.621002F), new Vector2(-344.083008F, -352.785004F)); + builder.AddLine(new Vector2(-342.196014F, -351.713989F)); + builder.AddCubicBezier(new Vector2(-342.196014F, -352.937988F), new Vector2(-341.924011F, -354.026001F), new Vector2(-341.380005F, -354.977997F)); + builder.AddCubicBezier(new Vector2(-340.837006F, -355.928986F), new Vector2(-340.088013F, -356.678009F), new Vector2(-339.135986F, -357.221985F)); + builder.AddCubicBezier(new Vector2(-338.184998F, -357.765015F), new Vector2(-337.096008F, -358.037994F), new Vector2(-335.872009F, -358.037994F)); + builder.AddCubicBezier(new Vector2(-334.036011F, -358.037994F), new Vector2(-332.549988F, -357.442993F), new Vector2(-331.410004F, -356.252991F)); + builder.AddCubicBezier(new Vector2(-330.270996F, -355.062012F), new Vector2(-329.700989F, -353.549988F), new Vector2(-329.700989F, -351.713989F)); + builder.AddLine(new Vector2(-329.700989F, -337.587006F)); + builder.AddLine(new Vector2(-325.059998F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1645() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-353.77301F, -367.497986F)); + builder.AddCubicBezier(new Vector2(-353.230011F, -368.05899F), new Vector2(-352.957001F, -368.765015F), new Vector2(-352.957001F, -369.61499F)); + builder.AddCubicBezier(new Vector2(-352.957001F, -370.431F), new Vector2(-353.230011F, -371.118988F), new Vector2(-353.77301F, -371.679993F)); + builder.AddCubicBezier(new Vector2(-354.316986F, -372.240997F), new Vector2(-355.015015F, -372.522003F), new Vector2(-355.864014F, -372.522003F)); + builder.AddCubicBezier(new Vector2(-356.713989F, -372.522003F), new Vector2(-357.411987F, -372.240997F), new Vector2(-357.954987F, -371.679993F)); + builder.AddCubicBezier(new Vector2(-358.498993F, -371.118988F), new Vector2(-358.770996F, -370.431F), new Vector2(-358.770996F, -369.61499F)); + builder.AddCubicBezier(new Vector2(-358.770996F, -368.765015F), new Vector2(-358.498993F, -368.05899F), new Vector2(-357.954987F, -367.497986F)); + builder.AddCubicBezier(new Vector2(-357.411987F, -366.937012F), new Vector2(-356.713989F, -366.657013F), new Vector2(-355.864014F, -366.657013F)); + builder.AddCubicBezier(new Vector2(-355.015015F, -366.657013F), new Vector2(-354.316986F, -366.937012F), new Vector2(-353.77301F, -367.497986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-353.569F, -337.587006F)); + builder.AddLine(new Vector2(-353.569F, -361.812012F)); + builder.AddLine(new Vector2(-358.209991F, -361.812012F)); + builder.AddLine(new Vector2(-358.209991F, -337.587006F)); + builder.AddLine(new Vector2(-353.569F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1646() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-362.799988F, -357.630005F)); + builder.AddLine(new Vector2(-362.799988F, -361.812012F)); + builder.AddLine(new Vector2(-381.058014F, -361.812012F)); + builder.AddLine(new Vector2(-381.058014F, -357.630005F)); + builder.AddLine(new Vector2(-362.799988F, -357.630005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-370.501007F, -337.587006F)); + builder.AddLine(new Vector2(-370.501007F, -365.433014F)); + builder.AddCubicBezier(new Vector2(-370.501007F, -366.928986F), new Vector2(-370.10199F, -368.09201F), new Vector2(-369.303009F, -368.925995F)); + builder.AddCubicBezier(new Vector2(-368.505005F, -369.759003F), new Vector2(-367.372986F, -370.175995F), new Vector2(-365.911011F, -370.175995F)); + builder.AddCubicBezier(new Vector2(-365.128998F, -370.175995F), new Vector2(-364.466003F, -370.056F), new Vector2(-363.921997F, -369.819F)); + builder.AddCubicBezier(new Vector2(-363.378998F, -369.580994F), new Vector2(-362.88501F, -369.223999F), new Vector2(-362.442993F, -368.747986F)); + builder.AddLine(new Vector2(-359.43399F, -371.705994F)); + builder.AddCubicBezier(new Vector2(-360.283997F, -372.623993F), new Vector2(-361.218994F, -373.320007F), new Vector2(-362.239014F, -373.796997F)); + builder.AddCubicBezier(new Vector2(-363.259003F, -374.27301F), new Vector2(-364.466003F, -374.510986F), new Vector2(-365.859985F, -374.510986F)); + builder.AddCubicBezier(new Vector2(-367.696014F, -374.510986F), new Vector2(-369.311005F, -374.119995F), new Vector2(-370.704987F, -373.338013F)); + builder.AddCubicBezier(new Vector2(-372.100006F, -372.554993F), new Vector2(-373.187012F, -371.484009F), new Vector2(-373.968994F, -370.125F)); + builder.AddCubicBezier(new Vector2(-374.752014F, -368.765015F), new Vector2(-375.141998F, -367.200012F), new Vector2(-375.141998F, -365.433014F)); + builder.AddLine(new Vector2(-375.141998F, -337.587006F)); + builder.AddLine(new Vector2(-370.501007F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1647() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-399.877014F, -338.14801F)); + builder.AddCubicBezier(new Vector2(-398.212006F, -338.862F), new Vector2(-396.783997F, -339.898987F), new Vector2(-395.592987F, -341.259003F)); + builder.AddLine(new Vector2(-398.550995F, -344.268005F)); + builder.AddCubicBezier(new Vector2(-399.367004F, -343.31601F), new Vector2(-400.343994F, -342.60199F), new Vector2(-401.483002F, -342.126007F)); + builder.AddCubicBezier(new Vector2(-402.622986F, -341.648987F), new Vector2(-403.872986F, -341.411987F), new Vector2(-405.231995F, -341.411987F)); + builder.AddCubicBezier(new Vector2(-406.864014F, -341.411987F), new Vector2(-408.309998F, -341.76001F), new Vector2(-409.566986F, -342.457001F)); + builder.AddCubicBezier(new Vector2(-410.825012F, -343.153015F), new Vector2(-411.794006F, -344.140015F), new Vector2(-412.473999F, -345.415009F)); + builder.AddCubicBezier(new Vector2(-413.154999F, -346.690002F), new Vector2(-413.493988F, -348.177002F), new Vector2(-413.493988F, -349.877991F)); + builder.AddCubicBezier(new Vector2(-413.493988F, -351.542999F), new Vector2(-413.17099F, -352.989014F), new Vector2(-412.524994F, -354.213013F)); + builder.AddCubicBezier(new Vector2(-411.880005F, -355.437012F), new Vector2(-410.962006F, -356.388F), new Vector2(-409.770996F, -357.069F)); + builder.AddCubicBezier(new Vector2(-408.580994F, -357.748993F), new Vector2(-407.20401F, -358.088989F), new Vector2(-405.640015F, -358.088989F)); + builder.AddCubicBezier(new Vector2(-404.144012F, -358.088989F), new Vector2(-402.868988F, -357.773987F), new Vector2(-401.815002F, -357.144989F)); + builder.AddCubicBezier(new Vector2(-400.761993F, -356.515015F), new Vector2(-399.946014F, -355.631989F), new Vector2(-399.367004F, -354.493011F)); + builder.AddCubicBezier(new Vector2(-398.789001F, -353.352997F), new Vector2(-398.5F, -351.968994F), new Vector2(-398.5F, -350.337006F)); + builder.AddLine(new Vector2(-396.816986F, -351.81601F)); + builder.AddLine(new Vector2(-414.820007F, -351.81601F)); + builder.AddLine(new Vector2(-414.820007F, -347.990997F)); + builder.AddLine(new Vector2(-394.368988F, -347.990997F)); + builder.AddCubicBezier(new Vector2(-394.266998F, -348.46701F), new Vector2(-394.199005F, -348.899994F), new Vector2(-394.165009F, -349.290985F)); + builder.AddCubicBezier(new Vector2(-394.131989F, -349.681F), new Vector2(-394.114014F, -350.048004F), new Vector2(-394.114014F, -350.388F)); + builder.AddCubicBezier(new Vector2(-394.114014F, -352.700012F), new Vector2(-394.598999F, -354.756012F), new Vector2(-395.567993F, -356.55899F)); + builder.AddCubicBezier(new Vector2(-396.536987F, -358.360992F), new Vector2(-397.888F, -359.772003F), new Vector2(-399.622009F, -360.791992F)); + builder.AddCubicBezier(new Vector2(-401.355988F, -361.812012F), new Vector2(-403.328003F, -362.321991F), new Vector2(-405.537994F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-407.884003F, -362.321991F), new Vector2(-410F, -361.768005F), new Vector2(-411.886993F, -360.664001F)); + builder.AddCubicBezier(new Vector2(-413.773987F, -359.55899F), new Vector2(-415.270996F, -358.054993F), new Vector2(-416.375F, -356.151001F)); + builder.AddCubicBezier(new Vector2(-417.480011F, -354.246002F), new Vector2(-418.03299F, -352.104004F), new Vector2(-418.03299F, -349.725006F)); + builder.AddCubicBezier(new Vector2(-418.03299F, -347.309998F), new Vector2(-417.471985F, -345.152008F), new Vector2(-416.350006F, -343.247986F)); + builder.AddCubicBezier(new Vector2(-415.227997F, -341.342987F), new Vector2(-413.705994F, -339.838013F), new Vector2(-411.785004F, -338.734009F)); + builder.AddCubicBezier(new Vector2(-409.86499F, -337.628998F), new Vector2(-407.679993F, -337.076996F), new Vector2(-405.231995F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-403.328003F, -337.076996F), new Vector2(-401.542999F, -337.43399F), new Vector2(-399.877014F, -338.14801F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1648() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-439.019989F, -343.324005F)); + builder.AddCubicBezier(new Vector2(-440.192993F, -343.987F), new Vector2(-441.110992F, -344.912994F), new Vector2(-441.773987F, -346.104004F)); + builder.AddCubicBezier(new Vector2(-442.437012F, -347.294006F), new Vector2(-442.768005F, -348.653992F), new Vector2(-442.768005F, -350.18399F)); + builder.AddCubicBezier(new Vector2(-442.768005F, -351.713989F), new Vector2(-442.437012F, -353.065002F), new Vector2(-441.773987F, -354.238007F)); + builder.AddCubicBezier(new Vector2(-441.110992F, -355.411011F), new Vector2(-440.200989F, -356.32901F), new Vector2(-439.045013F, -356.992004F)); + builder.AddCubicBezier(new Vector2(-437.890015F, -357.654999F), new Vector2(-436.54599F, -357.987F), new Vector2(-435.015991F, -357.987F)); + builder.AddCubicBezier(new Vector2(-433.519989F, -357.987F), new Vector2(-432.20401F, -357.654999F), new Vector2(-431.063995F, -356.992004F)); + builder.AddCubicBezier(new Vector2(-429.924988F, -356.32901F), new Vector2(-429.041992F, -355.411011F), new Vector2(-428.411987F, -354.238007F)); + builder.AddCubicBezier(new Vector2(-427.78299F, -353.065002F), new Vector2(-427.467987F, -351.696014F), new Vector2(-427.467987F, -350.132996F)); + builder.AddCubicBezier(new Vector2(-427.467987F, -348.569F), new Vector2(-427.78299F, -347.200012F), new Vector2(-428.411987F, -346.027008F)); + builder.AddCubicBezier(new Vector2(-429.041992F, -344.854004F), new Vector2(-429.915985F, -343.944F), new Vector2(-431.037994F, -343.299011F)); + builder.AddCubicBezier(new Vector2(-432.160004F, -342.653015F), new Vector2(-433.485992F, -342.329987F), new Vector2(-435.015991F, -342.329987F)); + builder.AddCubicBezier(new Vector2(-436.513F, -342.329987F), new Vector2(-437.846985F, -342.661011F), new Vector2(-439.019989F, -343.324005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-430.88501F, -339.117004F)); + builder.AddCubicBezier(new Vector2(-429.424011F, -339.864014F), new Vector2(-428.259003F, -340.908997F), new Vector2(-427.391998F, -342.252991F)); + builder.AddCubicBezier(new Vector2(-426.524994F, -343.596008F), new Vector2(-426.040009F, -345.152008F), new Vector2(-425.937988F, -346.920013F)); + builder.AddLine(new Vector2(-425.937988F, -353.346008F)); + builder.AddCubicBezier(new Vector2(-426.040009F, -355.14801F), new Vector2(-426.516998F, -356.718994F), new Vector2(-427.365997F, -358.062988F)); + builder.AddCubicBezier(new Vector2(-428.216003F, -359.406006F), new Vector2(-429.381012F, -360.451996F), new Vector2(-430.859985F, -361.200012F)); + builder.AddCubicBezier(new Vector2(-432.338989F, -361.946991F), new Vector2(-434.029999F, -362.321991F), new Vector2(-435.93399F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-438.109985F, -362.321991F), new Vector2(-440.083008F, -361.786011F), new Vector2(-441.850006F, -360.714996F)); + builder.AddCubicBezier(new Vector2(-443.618011F, -359.644012F), new Vector2(-445.005005F, -358.197998F), new Vector2(-446.006989F, -356.380005F)); + builder.AddCubicBezier(new Vector2(-447.01001F, -354.561005F), new Vector2(-447.510986F, -352.496002F), new Vector2(-447.510986F, -350.18399F)); + builder.AddCubicBezier(new Vector2(-447.510986F, -347.871002F), new Vector2(-447.001007F, -345.789001F), new Vector2(-445.980988F, -343.936005F)); + builder.AddCubicBezier(new Vector2(-444.960999F, -342.082001F), new Vector2(-443.576996F, -340.628998F), new Vector2(-441.825012F, -339.575989F)); + builder.AddCubicBezier(new Vector2(-440.074005F, -338.522003F), new Vector2(-438.093994F, -337.994995F), new Vector2(-435.882996F, -337.994995F)); + builder.AddCubicBezier(new Vector2(-434.014008F, -337.994995F), new Vector2(-432.346985F, -338.368988F), new Vector2(-430.88501F, -339.117004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-429.227997F, -328.381012F)); + builder.AddCubicBezier(new Vector2(-427.308014F, -329.350006F), new Vector2(-425.811005F, -330.709991F), new Vector2(-424.73999F, -332.460999F)); + builder.AddCubicBezier(new Vector2(-423.669006F, -334.213013F), new Vector2(-423.132996F, -336.243988F), new Vector2(-423.132996F, -338.556F)); + builder.AddLine(new Vector2(-423.132996F, -361.812012F)); + builder.AddLine(new Vector2(-427.722992F, -361.812012F)); + builder.AddLine(new Vector2(-427.722992F, -355.437012F)); + builder.AddLine(new Vector2(-426.907013F, -350.031006F)); + builder.AddLine(new Vector2(-427.722992F, -344.574005F)); + builder.AddLine(new Vector2(-427.722992F, -338.556F)); + builder.AddCubicBezier(new Vector2(-427.722992F, -336.346008F), new Vector2(-428.454987F, -334.585999F), new Vector2(-429.915985F, -333.277008F)); + builder.AddCubicBezier(new Vector2(-431.377991F, -331.968994F), new Vector2(-433.333008F, -331.313995F), new Vector2(-435.781006F, -331.313995F)); + builder.AddCubicBezier(new Vector2(-437.651001F, -331.313995F), new Vector2(-439.266998F, -331.644989F), new Vector2(-440.626007F, -332.308014F)); + builder.AddCubicBezier(new Vector2(-441.985992F, -332.971008F), new Vector2(-443.158997F, -333.933014F), new Vector2(-444.144989F, -335.190002F)); + builder.AddLine(new Vector2(-447.153992F, -332.181F)); + builder.AddCubicBezier(new Vector2(-445.963989F, -330.515991F), new Vector2(-444.417999F, -329.222992F), new Vector2(-442.513F, -328.304993F)); + builder.AddCubicBezier(new Vector2(-440.609009F, -327.386993F), new Vector2(-438.399994F, -326.928009F), new Vector2(-435.882996F, -326.928009F)); + builder.AddCubicBezier(new Vector2(-433.367004F, -326.928009F), new Vector2(-431.148987F, -327.411987F), new Vector2(-429.227997F, -328.381012F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1649() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-452.610992F, -337.587006F)); + builder.AddLine(new Vector2(-452.610992F, -361.812012F)); + builder.AddLine(new Vector2(-457.252014F, -361.812012F)); + builder.AddLine(new Vector2(-457.252014F, -355.895996F)); + builder.AddLine(new Vector2(-456.38501F, -350.031006F)); + builder.AddLine(new Vector2(-457.252014F, -344.11499F)); + builder.AddLine(new Vector2(-457.252014F, -337.587006F)); + builder.AddLine(new Vector2(-452.610992F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-468.625F, -342.483002F)); + builder.AddCubicBezier(new Vector2(-469.81601F, -343.196991F), new Vector2(-470.742004F, -344.173004F), new Vector2(-471.404999F, -345.415009F)); + builder.AddCubicBezier(new Vector2(-472.067993F, -346.656006F), new Vector2(-472.398987F, -348.092987F), new Vector2(-472.398987F, -349.725006F)); + builder.AddCubicBezier(new Vector2(-472.398987F, -351.322998F), new Vector2(-472.067993F, -352.740997F), new Vector2(-471.404999F, -353.983002F)); + builder.AddCubicBezier(new Vector2(-470.742004F, -355.223999F), new Vector2(-469.822998F, -356.201996F), new Vector2(-468.649994F, -356.915985F)); + builder.AddCubicBezier(new Vector2(-467.47699F, -357.630005F), new Vector2(-466.126007F, -357.987F), new Vector2(-464.596008F, -357.987F)); + builder.AddCubicBezier(new Vector2(-463.06601F, -357.987F), new Vector2(-461.731995F, -357.636993F), new Vector2(-460.59201F, -356.94101F)); + builder.AddCubicBezier(new Vector2(-459.453003F, -356.243988F), new Vector2(-458.561005F, -355.265991F), new Vector2(-457.915009F, -354.009003F)); + builder.AddCubicBezier(new Vector2(-457.269989F, -352.751007F), new Vector2(-456.946014F, -351.306F), new Vector2(-456.946014F, -349.674011F)); + builder.AddCubicBezier(new Vector2(-456.946014F, -347.259003F), new Vector2(-457.643005F, -345.278992F), new Vector2(-459.036987F, -343.731995F)); + builder.AddCubicBezier(new Vector2(-460.432007F, -342.18399F), new Vector2(-462.268005F, -341.411987F), new Vector2(-464.545013F, -341.411987F)); + builder.AddCubicBezier(new Vector2(-466.075012F, -341.411987F), new Vector2(-467.434998F, -341.769012F), new Vector2(-468.625F, -342.483002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-460.363007F, -338.223999F)); + builder.AddCubicBezier(new Vector2(-458.902008F, -338.989014F), new Vector2(-457.737F, -340.052002F), new Vector2(-456.869995F, -341.411987F)); + builder.AddCubicBezier(new Vector2(-456.002991F, -342.770996F), new Vector2(-455.518005F, -344.319F), new Vector2(-455.415985F, -346.053009F)); + builder.AddLine(new Vector2(-455.415985F, -353.346008F)); + builder.AddCubicBezier(new Vector2(-455.518005F, -355.113007F), new Vector2(-456.010986F, -356.667999F), new Vector2(-456.894989F, -358.011993F)); + builder.AddCubicBezier(new Vector2(-457.779999F, -359.355011F), new Vector2(-458.942993F, -360.408997F), new Vector2(-460.388F, -361.174011F)); + builder.AddCubicBezier(new Vector2(-461.834015F, -361.938995F), new Vector2(-463.473999F, -362.321991F), new Vector2(-465.309998F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-467.553986F, -362.321991F), new Vector2(-469.567993F, -361.760986F), new Vector2(-471.352997F, -360.639008F)); + builder.AddCubicBezier(new Vector2(-473.138F, -359.516998F), new Vector2(-474.549011F, -358.003998F), new Vector2(-475.585999F, -356.100006F)); + builder.AddCubicBezier(new Vector2(-476.623993F, -354.195007F), new Vector2(-477.141998F, -352.053009F), new Vector2(-477.141998F, -349.674011F)); + builder.AddCubicBezier(new Vector2(-477.141998F, -347.294006F), new Vector2(-476.623993F, -345.152008F), new Vector2(-475.585999F, -343.247986F)); + builder.AddCubicBezier(new Vector2(-474.549011F, -341.342987F), new Vector2(-473.138F, -339.838013F), new Vector2(-471.352997F, -338.734009F)); + builder.AddCubicBezier(new Vector2(-469.567993F, -337.628998F), new Vector2(-467.553986F, -337.076996F), new Vector2(-465.309998F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-463.473999F, -337.076996F), new Vector2(-461.825012F, -337.459015F), new Vector2(-460.363007F, -338.223999F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1650() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-483.186005F, -339.06601F)); + builder.AddCubicBezier(new Vector2(-481.571991F, -340.391998F), new Vector2(-480.763F, -342.194F), new Vector2(-480.763F, -344.471985F)); + builder.AddCubicBezier(new Vector2(-480.763F, -345.967987F), new Vector2(-481.078003F, -347.174988F), new Vector2(-481.707001F, -348.092987F)); + builder.AddCubicBezier(new Vector2(-482.337006F, -349.010986F), new Vector2(-483.143005F, -349.742004F), new Vector2(-484.128998F, -350.286011F)); + builder.AddCubicBezier(new Vector2(-485.115997F, -350.82901F), new Vector2(-486.152008F, -351.261993F), new Vector2(-487.23999F, -351.585999F)); + builder.AddCubicBezier(new Vector2(-488.32901F, -351.908997F), new Vector2(-489.373993F, -352.223999F), new Vector2(-490.376007F, -352.529999F)); + builder.AddCubicBezier(new Vector2(-491.378998F, -352.835999F), new Vector2(-492.187012F, -353.209991F), new Vector2(-492.799011F, -353.652008F)); + builder.AddCubicBezier(new Vector2(-493.411011F, -354.092987F), new Vector2(-493.71701F, -354.722992F), new Vector2(-493.71701F, -355.539001F)); + builder.AddCubicBezier(new Vector2(-493.71701F, -356.321014F), new Vector2(-493.368988F, -356.949005F), new Vector2(-492.671997F, -357.425995F)); + builder.AddCubicBezier(new Vector2(-491.976013F, -357.902008F), new Vector2(-490.963013F, -358.140015F), new Vector2(-489.636993F, -358.140015F)); + builder.AddCubicBezier(new Vector2(-488.380005F, -358.140015F), new Vector2(-487.257996F, -357.902008F), new Vector2(-486.270996F, -357.425995F)); + builder.AddCubicBezier(new Vector2(-485.285004F, -356.949005F), new Vector2(-484.434998F, -356.269989F), new Vector2(-483.721008F, -355.385986F)); + builder.AddLine(new Vector2(-480.763F, -358.343994F)); + builder.AddCubicBezier(new Vector2(-481.714996F, -359.670013F), new Vector2(-482.931F, -360.664001F), new Vector2(-484.410004F, -361.326996F)); + builder.AddCubicBezier(new Vector2(-485.889008F, -361.98999F), new Vector2(-487.579987F, -362.321991F), new Vector2(-489.484009F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-491.286987F, -362.321991F), new Vector2(-492.833008F, -362.03299F), new Vector2(-494.125F, -361.454987F)); + builder.AddCubicBezier(new Vector2(-495.417999F, -360.876007F), new Vector2(-496.411987F, -360.052002F), new Vector2(-497.108002F, -358.980988F)); + builder.AddCubicBezier(new Vector2(-497.804993F, -357.910004F), new Vector2(-498.153992F, -356.643005F), new Vector2(-498.153992F, -355.182007F)); + builder.AddCubicBezier(new Vector2(-498.153992F, -353.720001F), new Vector2(-497.841003F, -352.536987F), new Vector2(-497.210999F, -351.636993F)); + builder.AddCubicBezier(new Vector2(-496.582001F, -350.735992F), new Vector2(-495.774994F, -350.031006F), new Vector2(-494.787994F, -349.520996F)); + builder.AddCubicBezier(new Vector2(-493.802002F, -349.010986F), new Vector2(-492.756012F, -348.602997F), new Vector2(-491.651001F, -348.296997F)); + builder.AddCubicBezier(new Vector2(-490.546997F, -347.990997F), new Vector2(-489.502014F, -347.675995F), new Vector2(-488.515015F, -347.352997F)); + builder.AddCubicBezier(new Vector2(-487.528992F, -347.028992F), new Vector2(-486.721985F, -346.621002F), new Vector2(-486.09201F, -346.128998F)); + builder.AddCubicBezier(new Vector2(-485.463013F, -345.635986F), new Vector2(-485.148987F, -344.947998F), new Vector2(-485.148987F, -344.063995F)); + builder.AddCubicBezier(new Vector2(-485.148987F, -343.178986F), new Vector2(-485.540009F, -342.48999F), new Vector2(-486.321991F, -341.997986F)); + builder.AddCubicBezier(new Vector2(-487.105011F, -341.505005F), new Vector2(-488.209015F, -341.259003F), new Vector2(-489.636993F, -341.259003F)); + builder.AddCubicBezier(new Vector2(-491.065002F, -341.259003F), new Vector2(-492.358002F, -341.520996F), new Vector2(-493.513F, -342.049011F)); + builder.AddCubicBezier(new Vector2(-494.669006F, -342.575989F), new Vector2(-495.688995F, -343.382996F), new Vector2(-496.572998F, -344.471985F)); + builder.AddLine(new Vector2(-499.531006F, -341.514008F)); + builder.AddCubicBezier(new Vector2(-498.783997F, -340.596008F), new Vector2(-497.90799F, -339.804993F), new Vector2(-496.904999F, -339.141998F)); + builder.AddCubicBezier(new Vector2(-495.903015F, -338.479004F), new Vector2(-494.787994F, -337.968994F), new Vector2(-493.563995F, -337.612F)); + builder.AddCubicBezier(new Vector2(-492.339996F, -337.255005F), new Vector2(-491.048004F, -337.076996F), new Vector2(-489.687988F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-486.967987F, -337.076996F), new Vector2(-484.800995F, -337.73999F), new Vector2(-483.186005F, -339.06601F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1651() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-504.962006F, -339.06601F)); + builder.AddCubicBezier(new Vector2(-503.347992F, -340.391998F), new Vector2(-502.540009F, -342.194F), new Vector2(-502.540009F, -344.471985F)); + builder.AddCubicBezier(new Vector2(-502.540009F, -345.967987F), new Vector2(-502.854004F, -347.174988F), new Vector2(-503.483002F, -348.092987F)); + builder.AddCubicBezier(new Vector2(-504.113007F, -349.010986F), new Vector2(-504.920013F, -349.742004F), new Vector2(-505.906006F, -350.286011F)); + builder.AddCubicBezier(new Vector2(-506.893005F, -350.82901F), new Vector2(-507.928986F, -351.261993F), new Vector2(-509.016998F, -351.585999F)); + builder.AddCubicBezier(new Vector2(-510.105988F, -351.908997F), new Vector2(-511.151001F, -352.223999F), new Vector2(-512.153992F, -352.529999F)); + builder.AddCubicBezier(new Vector2(-513.156982F, -352.835999F), new Vector2(-513.963989F, -353.209991F), new Vector2(-514.575989F, -353.652008F)); + builder.AddCubicBezier(new Vector2(-515.187988F, -354.092987F), new Vector2(-515.494019F, -354.722992F), new Vector2(-515.494019F, -355.539001F)); + builder.AddCubicBezier(new Vector2(-515.494019F, -356.321014F), new Vector2(-515.14502F, -356.949005F), new Vector2(-514.447998F, -357.425995F)); + builder.AddCubicBezier(new Vector2(-513.752014F, -357.902008F), new Vector2(-512.73999F, -358.140015F), new Vector2(-511.414001F, -358.140015F)); + builder.AddCubicBezier(new Vector2(-510.157013F, -358.140015F), new Vector2(-509.035004F, -357.902008F), new Vector2(-508.048004F, -357.425995F)); + builder.AddCubicBezier(new Vector2(-507.062012F, -356.949005F), new Vector2(-506.212006F, -356.269989F), new Vector2(-505.497986F, -355.385986F)); + builder.AddLine(new Vector2(-502.540009F, -358.343994F)); + builder.AddCubicBezier(new Vector2(-503.492004F, -359.670013F), new Vector2(-504.707001F, -360.664001F), new Vector2(-506.186005F, -361.326996F)); + builder.AddCubicBezier(new Vector2(-507.665009F, -361.98999F), new Vector2(-509.356995F, -362.321991F), new Vector2(-511.260986F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-513.064026F, -362.321991F), new Vector2(-514.609985F, -362.03299F), new Vector2(-515.901978F, -361.454987F)); + builder.AddCubicBezier(new Vector2(-517.195007F, -360.876007F), new Vector2(-518.189026F, -360.052002F), new Vector2(-518.88501F, -358.980988F)); + builder.AddCubicBezier(new Vector2(-519.58197F, -357.910004F), new Vector2(-519.93103F, -356.643005F), new Vector2(-519.93103F, -355.182007F)); + builder.AddCubicBezier(new Vector2(-519.93103F, -353.720001F), new Vector2(-519.617004F, -352.536987F), new Vector2(-518.987F, -351.636993F)); + builder.AddCubicBezier(new Vector2(-518.357971F, -350.735992F), new Vector2(-517.552002F, -350.031006F), new Vector2(-516.565002F, -349.520996F)); + builder.AddCubicBezier(new Vector2(-515.578979F, -349.010986F), new Vector2(-514.53302F, -348.602997F), new Vector2(-513.427979F, -348.296997F)); + builder.AddCubicBezier(new Vector2(-512.323975F, -347.990997F), new Vector2(-511.278992F, -347.675995F), new Vector2(-510.291992F, -347.352997F)); + builder.AddCubicBezier(new Vector2(-509.306F, -347.028992F), new Vector2(-508.498993F, -346.621002F), new Vector2(-507.868988F, -346.128998F)); + builder.AddCubicBezier(new Vector2(-507.23999F, -345.635986F), new Vector2(-506.925995F, -344.947998F), new Vector2(-506.925995F, -344.063995F)); + builder.AddCubicBezier(new Vector2(-506.925995F, -343.178986F), new Vector2(-507.316986F, -342.48999F), new Vector2(-508.098999F, -341.997986F)); + builder.AddCubicBezier(new Vector2(-508.881989F, -341.505005F), new Vector2(-509.985992F, -341.259003F), new Vector2(-511.414001F, -341.259003F)); + builder.AddCubicBezier(new Vector2(-512.84198F, -341.259003F), new Vector2(-514.13501F, -341.520996F), new Vector2(-515.289978F, -342.049011F)); + builder.AddCubicBezier(new Vector2(-516.445984F, -342.575989F), new Vector2(-517.466003F, -343.382996F), new Vector2(-518.349976F, -344.471985F)); + builder.AddLine(new Vector2(-521.307983F, -341.514008F)); + builder.AddCubicBezier(new Vector2(-520.560974F, -340.596008F), new Vector2(-519.684021F, -339.804993F), new Vector2(-518.68103F, -339.141998F)); + builder.AddCubicBezier(new Vector2(-517.679016F, -338.479004F), new Vector2(-516.565002F, -337.968994F), new Vector2(-515.341003F, -337.612F)); + builder.AddCubicBezier(new Vector2(-514.117004F, -337.255005F), new Vector2(-512.825012F, -337.076996F), new Vector2(-511.464996F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-508.744995F, -337.076996F), new Vector2(-506.576996F, -337.73999F), new Vector2(-504.962006F, -339.06601F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1652() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-529.927002F, -338.14801F)); + builder.AddCubicBezier(new Vector2(-528.262024F, -338.862F), new Vector2(-526.833008F, -339.898987F), new Vector2(-525.643005F, -341.259003F)); + builder.AddLine(new Vector2(-528.601013F, -344.268005F)); + builder.AddCubicBezier(new Vector2(-529.416992F, -343.31601F), new Vector2(-530.39502F, -342.60199F), new Vector2(-531.533997F, -342.126007F)); + builder.AddCubicBezier(new Vector2(-532.674011F, -341.648987F), new Vector2(-533.922974F, -341.411987F), new Vector2(-535.281982F, -341.411987F)); + builder.AddCubicBezier(new Vector2(-536.914001F, -341.411987F), new Vector2(-538.359009F, -341.76001F), new Vector2(-539.617004F, -342.457001F)); + builder.AddCubicBezier(new Vector2(-540.875F, -343.153015F), new Vector2(-541.843994F, -344.140015F), new Vector2(-542.523987F, -345.415009F)); + builder.AddCubicBezier(new Vector2(-543.205017F, -346.690002F), new Vector2(-543.544006F, -348.177002F), new Vector2(-543.544006F, -349.877991F)); + builder.AddCubicBezier(new Vector2(-543.544006F, -351.542999F), new Vector2(-543.221008F, -352.989014F), new Vector2(-542.575012F, -354.213013F)); + builder.AddCubicBezier(new Vector2(-541.929993F, -355.437012F), new Vector2(-541.012024F, -356.388F), new Vector2(-539.820984F, -357.069F)); + builder.AddCubicBezier(new Vector2(-538.630981F, -357.748993F), new Vector2(-537.254028F, -358.088989F), new Vector2(-535.690002F, -358.088989F)); + builder.AddCubicBezier(new Vector2(-534.19397F, -358.088989F), new Vector2(-532.919006F, -357.773987F), new Vector2(-531.86499F, -357.144989F)); + builder.AddCubicBezier(new Vector2(-530.812012F, -356.515015F), new Vector2(-529.994995F, -355.631989F), new Vector2(-529.416992F, -354.493011F)); + builder.AddCubicBezier(new Vector2(-528.838989F, -353.352997F), new Vector2(-528.549988F, -351.968994F), new Vector2(-528.549988F, -350.337006F)); + builder.AddLine(new Vector2(-526.867004F, -351.81601F)); + builder.AddLine(new Vector2(-544.869995F, -351.81601F)); + builder.AddLine(new Vector2(-544.869995F, -347.990997F)); + builder.AddLine(new Vector2(-524.419006F, -347.990997F)); + builder.AddCubicBezier(new Vector2(-524.317017F, -348.46701F), new Vector2(-524.249023F, -348.899994F), new Vector2(-524.215027F, -349.290985F)); + builder.AddCubicBezier(new Vector2(-524.182007F, -349.681F), new Vector2(-524.164001F, -350.048004F), new Vector2(-524.164001F, -350.388F)); + builder.AddCubicBezier(new Vector2(-524.164001F, -352.700012F), new Vector2(-524.648987F, -354.756012F), new Vector2(-525.617981F, -356.55899F)); + builder.AddCubicBezier(new Vector2(-526.586975F, -358.360992F), new Vector2(-527.937988F, -359.772003F), new Vector2(-529.671997F, -360.791992F)); + builder.AddCubicBezier(new Vector2(-531.406006F, -361.812012F), new Vector2(-533.377991F, -362.321991F), new Vector2(-535.588013F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-537.934021F, -362.321991F), new Vector2(-540.051025F, -361.768005F), new Vector2(-541.937988F, -360.664001F)); + builder.AddCubicBezier(new Vector2(-543.825012F, -359.55899F), new Vector2(-545.322021F, -358.054993F), new Vector2(-546.426025F, -356.151001F)); + builder.AddCubicBezier(new Vector2(-547.531006F, -354.246002F), new Vector2(-548.083008F, -352.104004F), new Vector2(-548.083008F, -349.725006F)); + builder.AddCubicBezier(new Vector2(-548.083008F, -347.309998F), new Vector2(-547.521973F, -345.152008F), new Vector2(-546.400024F, -343.247986F)); + builder.AddCubicBezier(new Vector2(-545.278015F, -341.342987F), new Vector2(-543.757019F, -339.838013F), new Vector2(-541.835999F, -338.734009F)); + builder.AddCubicBezier(new Vector2(-539.916016F, -337.628998F), new Vector2(-537.72998F, -337.076996F), new Vector2(-535.281982F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-533.377991F, -337.076996F), new Vector2(-531.593018F, -337.43399F), new Vector2(-529.927002F, -338.14801F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1653() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-552.723999F, -337.587006F)); + builder.AddLine(new Vector2(-552.723999F, -353.141998F)); + builder.AddCubicBezier(new Vector2(-552.723999F, -355.04599F), new Vector2(-553.140991F, -356.678009F), new Vector2(-553.973999F, -358.037994F)); + builder.AddCubicBezier(new Vector2(-554.807983F, -359.397003F), new Vector2(-555.919983F, -360.451996F), new Vector2(-557.314026F, -361.200012F)); + builder.AddCubicBezier(new Vector2(-558.708984F, -361.946991F), new Vector2(-560.289978F, -362.321991F), new Vector2(-562.057007F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-563.757996F, -362.321991F), new Vector2(-565.320984F, -361.938995F), new Vector2(-566.749023F, -361.174011F)); + builder.AddCubicBezier(new Vector2(-568.177002F, -360.408997F), new Vector2(-569.34198F, -359.355011F), new Vector2(-570.242004F, -358.011993F)); + builder.AddCubicBezier(new Vector2(-571.143005F, -356.667999F), new Vector2(-571.64502F, -355.062012F), new Vector2(-571.747009F, -353.192993F)); + builder.AddLine(new Vector2(-569.145996F, -352.223999F)); + builder.AddCubicBezier(new Vector2(-569.145996F, -353.447998F), new Vector2(-568.874023F, -354.484985F), new Vector2(-568.330017F, -355.334991F)); + builder.AddCubicBezier(new Vector2(-567.786987F, -356.18399F), new Vector2(-567.064026F, -356.846985F), new Vector2(-566.163025F, -357.324005F)); + builder.AddCubicBezier(new Vector2(-565.262024F, -357.799988F), new Vector2(-564.25F, -358.037994F), new Vector2(-563.127991F, -358.037994F)); + builder.AddCubicBezier(new Vector2(-561.495972F, -358.037994F), new Vector2(-560.127991F, -357.519012F), new Vector2(-559.02301F, -356.481995F)); + builder.AddCubicBezier(new Vector2(-557.919006F, -355.444F), new Vector2(-557.36499F, -354.026001F), new Vector2(-557.36499F, -352.223999F)); + builder.AddLine(new Vector2(-557.36499F, -337.587006F)); + builder.AddLine(new Vector2(-552.723999F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-569.145996F, -337.587006F)); + builder.AddLine(new Vector2(-569.145996F, -353.192993F)); + builder.AddCubicBezier(new Vector2(-569.145996F, -355.062012F), new Vector2(-569.546997F, -356.678009F), new Vector2(-570.344971F, -358.037994F)); + builder.AddCubicBezier(new Vector2(-571.143982F, -359.397003F), new Vector2(-572.231995F, -360.451996F), new Vector2(-573.609009F, -361.200012F)); + builder.AddCubicBezier(new Vector2(-574.986023F, -361.946991F), new Vector2(-576.523987F, -362.321991F), new Vector2(-578.223999F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-579.958008F, -362.321991F), new Vector2(-581.521973F, -361.938995F), new Vector2(-582.916016F, -361.174011F)); + builder.AddCubicBezier(new Vector2(-584.310974F, -360.408997F), new Vector2(-585.40802F, -359.346008F), new Vector2(-586.205994F, -357.987F)); + builder.AddCubicBezier(new Vector2(-587.005005F, -356.627014F), new Vector2(-587.403992F, -355.028992F), new Vector2(-587.403992F, -353.192993F)); + builder.AddLine(new Vector2(-585.517029F, -352.223999F)); + builder.AddCubicBezier(new Vector2(-585.517029F, -353.447998F), new Vector2(-585.244995F, -354.484985F), new Vector2(-584.700989F, -355.334991F)); + builder.AddCubicBezier(new Vector2(-584.156982F, -356.18399F), new Vector2(-583.44397F, -356.846985F), new Vector2(-582.559021F, -357.324005F)); + builder.AddCubicBezier(new Vector2(-581.674988F, -357.799988F), new Vector2(-580.671997F, -358.037994F), new Vector2(-579.549988F, -358.037994F)); + builder.AddCubicBezier(new Vector2(-577.88501F, -358.037994F), new Vector2(-576.497986F, -357.519012F), new Vector2(-575.393005F, -356.481995F)); + builder.AddCubicBezier(new Vector2(-574.289001F, -355.444F), new Vector2(-573.736023F, -354.026001F), new Vector2(-573.736023F, -352.223999F)); + builder.AddLine(new Vector2(-573.736023F, -337.587006F)); + builder.AddLine(new Vector2(-569.145996F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-585.517029F, -337.587006F)); + builder.AddLine(new Vector2(-585.517029F, -361.812012F)); + builder.AddLine(new Vector2(-590.106995F, -361.812012F)); + builder.AddLine(new Vector2(-590.106995F, -337.587006F)); + builder.AddLine(new Vector2(-585.517029F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1654() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-608.237F, -339.06601F)); + builder.AddCubicBezier(new Vector2(-606.622986F, -340.391998F), new Vector2(-605.815002F, -342.194F), new Vector2(-605.815002F, -344.471985F)); + builder.AddCubicBezier(new Vector2(-605.815002F, -345.967987F), new Vector2(-606.129028F, -347.174988F), new Vector2(-606.757996F, -348.092987F)); + builder.AddCubicBezier(new Vector2(-607.388F, -349.010986F), new Vector2(-608.195007F, -349.742004F), new Vector2(-609.18103F, -350.286011F)); + builder.AddCubicBezier(new Vector2(-610.16803F, -350.82901F), new Vector2(-611.203979F, -351.261993F), new Vector2(-612.291992F, -351.585999F)); + builder.AddCubicBezier(new Vector2(-613.380981F, -351.908997F), new Vector2(-614.426025F, -352.223999F), new Vector2(-615.429016F, -352.529999F)); + builder.AddCubicBezier(new Vector2(-616.432007F, -352.835999F), new Vector2(-617.239014F, -353.209991F), new Vector2(-617.851013F, -353.652008F)); + builder.AddCubicBezier(new Vector2(-618.463013F, -354.092987F), new Vector2(-618.768982F, -354.722992F), new Vector2(-618.768982F, -355.539001F)); + builder.AddCubicBezier(new Vector2(-618.768982F, -356.321014F), new Vector2(-618.421021F, -356.949005F), new Vector2(-617.723999F, -357.425995F)); + builder.AddCubicBezier(new Vector2(-617.028015F, -357.902008F), new Vector2(-616.015015F, -358.140015F), new Vector2(-614.689026F, -358.140015F)); + builder.AddCubicBezier(new Vector2(-613.43103F, -358.140015F), new Vector2(-612.309998F, -357.902008F), new Vector2(-611.322998F, -357.425995F)); + builder.AddCubicBezier(new Vector2(-610.336975F, -356.949005F), new Vector2(-609.487F, -356.269989F), new Vector2(-608.77301F, -355.385986F)); + builder.AddLine(new Vector2(-605.815002F, -358.343994F)); + builder.AddCubicBezier(new Vector2(-606.767029F, -359.670013F), new Vector2(-607.981995F, -360.664001F), new Vector2(-609.460999F, -361.326996F)); + builder.AddCubicBezier(new Vector2(-610.940002F, -361.98999F), new Vector2(-612.632019F, -362.321991F), new Vector2(-614.536011F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-616.338989F, -362.321991F), new Vector2(-617.88501F, -362.03299F), new Vector2(-619.177002F, -361.454987F)); + builder.AddCubicBezier(new Vector2(-620.469971F, -360.876007F), new Vector2(-621.465027F, -360.052002F), new Vector2(-622.161011F, -358.980988F)); + builder.AddCubicBezier(new Vector2(-622.857971F, -357.910004F), new Vector2(-623.205994F, -356.643005F), new Vector2(-623.205994F, -355.182007F)); + builder.AddCubicBezier(new Vector2(-623.205994F, -353.720001F), new Vector2(-622.893005F, -352.536987F), new Vector2(-622.263F, -351.636993F)); + builder.AddCubicBezier(new Vector2(-621.633972F, -350.735992F), new Vector2(-620.827026F, -350.031006F), new Vector2(-619.840027F, -349.520996F)); + builder.AddCubicBezier(new Vector2(-618.854004F, -349.010986F), new Vector2(-617.807983F, -348.602997F), new Vector2(-616.703003F, -348.296997F)); + builder.AddCubicBezier(new Vector2(-615.598999F, -347.990997F), new Vector2(-614.554016F, -347.675995F), new Vector2(-613.567017F, -347.352997F)); + builder.AddCubicBezier(new Vector2(-612.580994F, -347.028992F), new Vector2(-611.775024F, -346.621002F), new Vector2(-611.14502F, -346.128998F)); + builder.AddCubicBezier(new Vector2(-610.515991F, -345.635986F), new Vector2(-610.200989F, -344.947998F), new Vector2(-610.200989F, -344.063995F)); + builder.AddCubicBezier(new Vector2(-610.200989F, -343.178986F), new Vector2(-610.59198F, -342.48999F), new Vector2(-611.374023F, -341.997986F)); + builder.AddCubicBezier(new Vector2(-612.156982F, -341.505005F), new Vector2(-613.260986F, -341.259003F), new Vector2(-614.689026F, -341.259003F)); + builder.AddCubicBezier(new Vector2(-616.117004F, -341.259003F), new Vector2(-617.409973F, -341.520996F), new Vector2(-618.565002F, -342.049011F)); + builder.AddCubicBezier(new Vector2(-619.721008F, -342.575989F), new Vector2(-620.741028F, -343.382996F), new Vector2(-621.625F, -344.471985F)); + builder.AddLine(new Vector2(-624.583008F, -341.514008F)); + builder.AddCubicBezier(new Vector2(-623.835999F, -340.596008F), new Vector2(-622.958984F, -339.804993F), new Vector2(-621.955994F, -339.141998F)); + builder.AddCubicBezier(new Vector2(-620.953979F, -338.479004F), new Vector2(-619.840027F, -337.968994F), new Vector2(-618.616028F, -337.612F)); + builder.AddCubicBezier(new Vector2(-617.392029F, -337.255005F), new Vector2(-616.099976F, -337.076996F), new Vector2(-614.73999F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-612.02002F, -337.076996F), new Vector2(-609.85199F, -337.73999F), new Vector2(-608.237F, -339.06601F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1655() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-629.427979F, -367.497986F)); + builder.AddCubicBezier(new Vector2(-628.883972F, -368.05899F), new Vector2(-628.612F, -368.765015F), new Vector2(-628.612F, -369.61499F)); + builder.AddCubicBezier(new Vector2(-628.612F, -370.431F), new Vector2(-628.883972F, -371.118988F), new Vector2(-629.427979F, -371.679993F)); + builder.AddCubicBezier(new Vector2(-629.971985F, -372.240997F), new Vector2(-630.669983F, -372.522003F), new Vector2(-631.518982F, -372.522003F)); + builder.AddCubicBezier(new Vector2(-632.369019F, -372.522003F), new Vector2(-633.065979F, -372.240997F), new Vector2(-633.609985F, -371.679993F)); + builder.AddCubicBezier(new Vector2(-634.153992F, -371.118988F), new Vector2(-634.426025F, -370.431F), new Vector2(-634.426025F, -369.61499F)); + builder.AddCubicBezier(new Vector2(-634.426025F, -368.765015F), new Vector2(-634.153992F, -368.05899F), new Vector2(-633.609985F, -367.497986F)); + builder.AddCubicBezier(new Vector2(-633.065979F, -366.937012F), new Vector2(-632.369019F, -366.657013F), new Vector2(-631.518982F, -366.657013F)); + builder.AddCubicBezier(new Vector2(-630.669983F, -366.657013F), new Vector2(-629.971985F, -366.937012F), new Vector2(-629.427979F, -367.497986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-629.223999F, -337.587006F)); + builder.AddLine(new Vector2(-629.223999F, -361.812012F)); + builder.AddLine(new Vector2(-633.86499F, -361.812012F)); + builder.AddLine(new Vector2(-633.86499F, -337.587006F)); + builder.AddLine(new Vector2(-629.223999F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1656() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-657.223022F, -337.587006F)); + builder.AddLine(new Vector2(-657.223022F, -374.001007F)); + builder.AddLine(new Vector2(-661.812988F, -374.001007F)); + builder.AddLine(new Vector2(-661.812988F, -337.587006F)); + builder.AddLine(new Vector2(-657.223022F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-640.086975F, -337.587006F)); + builder.AddLine(new Vector2(-640.086975F, -352.631989F)); + builder.AddCubicBezier(new Vector2(-640.086975F, -354.536011F), new Vector2(-640.494995F, -356.218994F), new Vector2(-641.310974F, -357.681F)); + builder.AddCubicBezier(new Vector2(-642.127014F, -359.141998F), new Vector2(-643.241028F, -360.282013F), new Vector2(-644.651001F, -361.097992F)); + builder.AddCubicBezier(new Vector2(-646.062012F, -361.914001F), new Vector2(-647.685974F, -362.321991F), new Vector2(-649.521973F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-651.357971F, -362.321991F), new Vector2(-653.007996F, -361.904999F), new Vector2(-654.468994F, -361.071991F)); + builder.AddCubicBezier(new Vector2(-655.93103F, -360.238007F), new Vector2(-657.070007F, -359.109009F), new Vector2(-657.885986F, -357.681F)); + builder.AddCubicBezier(new Vector2(-658.702026F, -356.252991F), new Vector2(-659.109985F, -354.621002F), new Vector2(-659.109985F, -352.785004F)); + builder.AddLine(new Vector2(-657.223022F, -351.713989F)); + builder.AddCubicBezier(new Vector2(-657.223022F, -352.937988F), new Vector2(-656.950989F, -354.026001F), new Vector2(-656.406982F, -354.977997F)); + builder.AddCubicBezier(new Vector2(-655.862976F, -355.928986F), new Vector2(-655.11499F, -356.678009F), new Vector2(-654.163025F, -357.221985F)); + builder.AddCubicBezier(new Vector2(-653.211975F, -357.765015F), new Vector2(-652.122986F, -358.037994F), new Vector2(-650.898987F, -358.037994F)); + builder.AddCubicBezier(new Vector2(-649.062988F, -358.037994F), new Vector2(-647.577026F, -357.442993F), new Vector2(-646.437012F, -356.252991F)); + builder.AddCubicBezier(new Vector2(-645.297974F, -355.062012F), new Vector2(-644.728027F, -353.549988F), new Vector2(-644.728027F, -351.713989F)); + builder.AddLine(new Vector2(-644.728027F, -337.587006F)); + builder.AddLine(new Vector2(-640.086975F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1657() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-666.301025F, -357.630005F)); + builder.AddLine(new Vector2(-666.301025F, -361.812012F)); + builder.AddLine(new Vector2(-682.825012F, -361.812012F)); + builder.AddLine(new Vector2(-682.825012F, -357.630005F)); + builder.AddLine(new Vector2(-666.301025F, -357.630005F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-672.268005F, -337.587006F)); + builder.AddLine(new Vector2(-672.268005F, -371.960999F)); + builder.AddLine(new Vector2(-676.857971F, -371.960999F)); + builder.AddLine(new Vector2(-676.857971F, -337.587006F)); + builder.AddLine(new Vector2(-672.268005F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1658() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-701.898987F, -338.14801F)); + builder.AddCubicBezier(new Vector2(-700.234009F, -338.862F), new Vector2(-698.804993F, -339.898987F), new Vector2(-697.61499F, -341.259003F)); + builder.AddLine(new Vector2(-700.572998F, -344.268005F)); + builder.AddCubicBezier(new Vector2(-701.388977F, -343.31601F), new Vector2(-702.367004F, -342.60199F), new Vector2(-703.505981F, -342.126007F)); + builder.AddCubicBezier(new Vector2(-704.645996F, -341.648987F), new Vector2(-705.89502F, -341.411987F), new Vector2(-707.254028F, -341.411987F)); + builder.AddCubicBezier(new Vector2(-708.885986F, -341.411987F), new Vector2(-710.330994F, -341.76001F), new Vector2(-711.588989F, -342.457001F)); + builder.AddCubicBezier(new Vector2(-712.846985F, -343.153015F), new Vector2(-713.815979F, -344.140015F), new Vector2(-714.495972F, -345.415009F)); + builder.AddCubicBezier(new Vector2(-715.177002F, -346.690002F), new Vector2(-715.515991F, -348.177002F), new Vector2(-715.515991F, -349.877991F)); + builder.AddCubicBezier(new Vector2(-715.515991F, -351.542999F), new Vector2(-715.192993F, -352.989014F), new Vector2(-714.546997F, -354.213013F)); + builder.AddCubicBezier(new Vector2(-713.901978F, -355.437012F), new Vector2(-712.984009F, -356.388F), new Vector2(-711.79303F, -357.069F)); + builder.AddCubicBezier(new Vector2(-710.603027F, -357.748993F), new Vector2(-709.226013F, -358.088989F), new Vector2(-707.661987F, -358.088989F)); + builder.AddCubicBezier(new Vector2(-706.166016F, -358.088989F), new Vector2(-704.890991F, -357.773987F), new Vector2(-703.836975F, -357.144989F)); + builder.AddCubicBezier(new Vector2(-702.783997F, -356.515015F), new Vector2(-701.96698F, -355.631989F), new Vector2(-701.388977F, -354.493011F)); + builder.AddCubicBezier(new Vector2(-700.810974F, -353.352997F), new Vector2(-700.521973F, -351.968994F), new Vector2(-700.521973F, -350.337006F)); + builder.AddLine(new Vector2(-698.838989F, -351.81601F)); + builder.AddLine(new Vector2(-716.84198F, -351.81601F)); + builder.AddLine(new Vector2(-716.84198F, -347.990997F)); + builder.AddLine(new Vector2(-696.390991F, -347.990997F)); + builder.AddCubicBezier(new Vector2(-696.289001F, -348.46701F), new Vector2(-696.221008F, -348.899994F), new Vector2(-696.187012F, -349.290985F)); + builder.AddCubicBezier(new Vector2(-696.153992F, -349.681F), new Vector2(-696.135986F, -350.048004F), new Vector2(-696.135986F, -350.388F)); + builder.AddCubicBezier(new Vector2(-696.135986F, -352.700012F), new Vector2(-696.620972F, -354.756012F), new Vector2(-697.590027F, -356.55899F)); + builder.AddCubicBezier(new Vector2(-698.559021F, -358.360992F), new Vector2(-699.909973F, -359.772003F), new Vector2(-701.643982F, -360.791992F)); + builder.AddCubicBezier(new Vector2(-703.377991F, -361.812012F), new Vector2(-705.349976F, -362.321991F), new Vector2(-707.559998F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-709.906006F, -362.321991F), new Vector2(-712.02301F, -361.768005F), new Vector2(-713.909973F, -360.664001F)); + builder.AddCubicBezier(new Vector2(-715.796997F, -359.55899F), new Vector2(-717.294006F, -358.054993F), new Vector2(-718.39801F, -356.151001F)); + builder.AddCubicBezier(new Vector2(-719.502991F, -354.246002F), new Vector2(-720.054993F, -352.104004F), new Vector2(-720.054993F, -349.725006F)); + builder.AddCubicBezier(new Vector2(-720.054993F, -347.309998F), new Vector2(-719.494019F, -345.152008F), new Vector2(-718.372009F, -343.247986F)); + builder.AddCubicBezier(new Vector2(-717.25F, -341.342987F), new Vector2(-715.729004F, -339.838013F), new Vector2(-713.807983F, -338.734009F)); + builder.AddCubicBezier(new Vector2(-711.888F, -337.628998F), new Vector2(-709.702026F, -337.076996F), new Vector2(-707.254028F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-705.349976F, -337.076996F), new Vector2(-703.565002F, -337.43399F), new Vector2(-701.898987F, -338.14801F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1659() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-740.174011F, -342.483002F)); + builder.AddCubicBezier(new Vector2(-741.346985F, -343.196991F), new Vector2(-742.249023F, -344.173004F), new Vector2(-742.877991F, -345.415009F)); + builder.AddCubicBezier(new Vector2(-743.507996F, -346.656006F), new Vector2(-743.820984F, -348.075012F), new Vector2(-743.820984F, -349.674011F)); + builder.AddCubicBezier(new Vector2(-743.820984F, -351.306F), new Vector2(-743.497986F, -352.740997F), new Vector2(-742.85199F, -353.983002F)); + builder.AddCubicBezier(new Vector2(-742.205994F, -355.223999F), new Vector2(-741.304993F, -356.201996F), new Vector2(-740.148987F, -356.915985F)); + builder.AddCubicBezier(new Vector2(-738.994019F, -357.630005F), new Vector2(-737.66803F, -357.987F), new Vector2(-736.171021F, -357.987F)); + builder.AddCubicBezier(new Vector2(-734.640991F, -357.987F), new Vector2(-733.297974F, -357.630005F), new Vector2(-732.142029F, -356.915985F)); + builder.AddCubicBezier(new Vector2(-730.987F, -356.201996F), new Vector2(-730.075989F, -355.223999F), new Vector2(-729.413025F, -353.983002F)); + builder.AddCubicBezier(new Vector2(-728.75F, -352.740997F), new Vector2(-728.419006F, -351.322998F), new Vector2(-728.419006F, -349.725006F)); + builder.AddCubicBezier(new Vector2(-728.419006F, -348.092987F), new Vector2(-728.75F, -346.656006F), new Vector2(-729.413025F, -345.415009F)); + builder.AddCubicBezier(new Vector2(-730.075989F, -344.173004F), new Vector2(-730.987F, -343.196991F), new Vector2(-732.142029F, -342.483002F)); + builder.AddCubicBezier(new Vector2(-733.297974F, -341.769012F), new Vector2(-734.640991F, -341.411987F), new Vector2(-736.171021F, -341.411987F)); + builder.AddCubicBezier(new Vector2(-737.66803F, -341.411987F), new Vector2(-739.000977F, -341.769012F), new Vector2(-740.174011F, -342.483002F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-743.565979F, -327.437988F)); + builder.AddLine(new Vector2(-743.565979F, -343.656006F)); + builder.AddLine(new Vector2(-744.432983F, -349.571991F)); + builder.AddLine(new Vector2(-743.565979F, -355.437012F)); + builder.AddLine(new Vector2(-743.565979F, -361.812012F)); + builder.AddLine(new Vector2(-748.156006F, -361.812012F)); + builder.AddLine(new Vector2(-748.156006F, -327.437988F)); + builder.AddLine(new Vector2(-743.565979F, -327.437988F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-729.413025F, -338.734009F)); + builder.AddCubicBezier(new Vector2(-727.627991F, -339.838013F), new Vector2(-726.226013F, -341.342987F), new Vector2(-725.205994F, -343.247986F)); + builder.AddCubicBezier(new Vector2(-724.185974F, -345.152008F), new Vector2(-723.676025F, -347.294006F), new Vector2(-723.676025F, -349.674011F)); + builder.AddCubicBezier(new Vector2(-723.676025F, -352.053009F), new Vector2(-724.185974F, -354.195007F), new Vector2(-725.205994F, -356.100006F)); + builder.AddCubicBezier(new Vector2(-726.226013F, -358.003998F), new Vector2(-727.627991F, -359.516998F), new Vector2(-729.413025F, -360.639008F)); + builder.AddCubicBezier(new Vector2(-731.197998F, -361.760986F), new Vector2(-733.195984F, -362.321991F), new Vector2(-735.406006F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-737.208984F, -362.321991F), new Vector2(-738.848022F, -361.938995F), new Vector2(-740.327026F, -361.174011F)); + builder.AddCubicBezier(new Vector2(-741.80603F, -360.408997F), new Vector2(-742.997009F, -359.355011F), new Vector2(-743.896973F, -358.011993F)); + builder.AddCubicBezier(new Vector2(-744.797974F, -356.667999F), new Vector2(-745.299988F, -355.113007F), new Vector2(-745.401978F, -353.346008F)); + builder.AddLine(new Vector2(-745.401978F, -346.053009F)); + builder.AddCubicBezier(new Vector2(-745.299988F, -344.319F), new Vector2(-744.807983F, -342.770996F), new Vector2(-743.922974F, -341.411987F)); + builder.AddCubicBezier(new Vector2(-743.039001F, -340.052002F), new Vector2(-741.856995F, -338.989014F), new Vector2(-740.377991F, -338.223999F)); + builder.AddCubicBezier(new Vector2(-738.898987F, -337.459015F), new Vector2(-737.242004F, -337.076996F), new Vector2(-735.406006F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-733.195984F, -337.076996F), new Vector2(-731.197998F, -337.628998F), new Vector2(-729.413025F, -338.734009F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1660() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-769.984009F, -342.584991F)); + builder.AddCubicBezier(new Vector2(-771.174988F, -343.299011F), new Vector2(-772.109009F, -344.274994F), new Vector2(-772.789001F, -345.516998F)); + builder.AddCubicBezier(new Vector2(-773.468994F, -346.757996F), new Vector2(-773.809021F, -348.177002F), new Vector2(-773.809021F, -349.776001F)); + builder.AddCubicBezier(new Vector2(-773.809021F, -351.338989F), new Vector2(-773.468994F, -352.734009F), new Vector2(-772.789001F, -353.958008F)); + builder.AddCubicBezier(new Vector2(-772.109009F, -355.182007F), new Vector2(-771.174988F, -356.141998F), new Vector2(-769.984009F, -356.838989F)); + builder.AddCubicBezier(new Vector2(-768.794006F, -357.535004F), new Vector2(-767.452026F, -357.88501F), new Vector2(-765.955017F, -357.88501F)); + builder.AddCubicBezier(new Vector2(-764.392029F, -357.88501F), new Vector2(-763.021973F, -357.535004F), new Vector2(-761.848999F, -356.838989F)); + builder.AddCubicBezier(new Vector2(-760.676025F, -356.141998F), new Vector2(-759.741028F, -355.182007F), new Vector2(-759.044006F, -353.958008F)); + builder.AddCubicBezier(new Vector2(-758.348022F, -352.734009F), new Vector2(-757.999023F, -351.338989F), new Vector2(-757.999023F, -349.776001F)); + builder.AddCubicBezier(new Vector2(-757.999023F, -348.177002F), new Vector2(-758.338989F, -346.757996F), new Vector2(-759.018982F, -345.516998F)); + builder.AddCubicBezier(new Vector2(-759.700012F, -344.274994F), new Vector2(-760.633972F, -343.299011F), new Vector2(-761.823975F, -342.584991F)); + builder.AddCubicBezier(new Vector2(-763.015015F, -341.871002F), new Vector2(-764.392029F, -341.514008F), new Vector2(-765.955017F, -341.514008F)); + builder.AddCubicBezier(new Vector2(-767.452026F, -341.514008F), new Vector2(-768.794006F, -341.871002F), new Vector2(-769.984009F, -342.584991F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-759.502991F, -338.76001F)); + builder.AddCubicBezier(new Vector2(-757.583008F, -339.881989F), new Vector2(-756.060974F, -341.403015F), new Vector2(-754.939026F, -343.324005F)); + builder.AddCubicBezier(new Vector2(-753.817017F, -345.243988F), new Vector2(-753.255981F, -347.395996F), new Vector2(-753.255981F, -349.776001F)); + builder.AddCubicBezier(new Vector2(-753.255981F, -352.122009F), new Vector2(-753.817017F, -354.246002F), new Vector2(-754.939026F, -356.151001F)); + builder.AddCubicBezier(new Vector2(-756.060974F, -358.054993F), new Vector2(-757.583008F, -359.55899F), new Vector2(-759.502991F, -360.664001F)); + builder.AddCubicBezier(new Vector2(-761.424011F, -361.768005F), new Vector2(-763.575989F, -362.321991F), new Vector2(-765.955017F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-768.301025F, -362.321991F), new Vector2(-770.426025F, -361.760986F), new Vector2(-772.330017F, -360.639008F)); + builder.AddCubicBezier(new Vector2(-774.234985F, -359.516998F), new Vector2(-775.747009F, -358.011993F), new Vector2(-776.869019F, -356.125F)); + builder.AddCubicBezier(new Vector2(-777.991028F, -354.238007F), new Vector2(-778.552002F, -352.122009F), new Vector2(-778.552002F, -349.776001F)); + builder.AddCubicBezier(new Vector2(-778.552002F, -347.395996F), new Vector2(-777.991028F, -345.243988F), new Vector2(-776.869019F, -343.324005F)); + builder.AddCubicBezier(new Vector2(-775.747009F, -341.403015F), new Vector2(-774.234985F, -339.881989F), new Vector2(-772.330017F, -338.76001F)); + builder.AddCubicBezier(new Vector2(-770.426025F, -337.638F), new Vector2(-768.301025F, -337.076996F), new Vector2(-765.955017F, -337.076996F)); + builder.AddCubicBezier(new Vector2(-763.575989F, -337.076996F), new Vector2(-761.424011F, -337.638F), new Vector2(-759.502991F, -338.76001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1661() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-800.328979F, -337.587006F)); + builder.AddLine(new Vector2(-800.328979F, -374.001007F)); + builder.AddLine(new Vector2(-804.919006F, -374.001007F)); + builder.AddLine(new Vector2(-804.919006F, -337.587006F)); + builder.AddLine(new Vector2(-800.328979F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-783.192993F, -337.587006F)); + builder.AddLine(new Vector2(-783.192993F, -352.631989F)); + builder.AddCubicBezier(new Vector2(-783.192993F, -354.536011F), new Vector2(-783.601013F, -356.218994F), new Vector2(-784.416992F, -357.681F)); + builder.AddCubicBezier(new Vector2(-785.232971F, -359.141998F), new Vector2(-786.346985F, -360.282013F), new Vector2(-787.757019F, -361.097992F)); + builder.AddCubicBezier(new Vector2(-789.16803F, -361.914001F), new Vector2(-790.791992F, -362.321991F), new Vector2(-792.627991F, -362.321991F)); + builder.AddCubicBezier(new Vector2(-794.463989F, -362.321991F), new Vector2(-796.114014F, -361.904999F), new Vector2(-797.575012F, -361.071991F)); + builder.AddCubicBezier(new Vector2(-799.036987F, -360.238007F), new Vector2(-800.176025F, -359.109009F), new Vector2(-800.992004F, -357.681F)); + builder.AddCubicBezier(new Vector2(-801.807983F, -356.252991F), new Vector2(-802.216003F, -354.621002F), new Vector2(-802.216003F, -352.785004F)); + builder.AddLine(new Vector2(-800.328979F, -351.713989F)); + builder.AddCubicBezier(new Vector2(-800.328979F, -352.937988F), new Vector2(-800.057007F, -354.026001F), new Vector2(-799.513F, -354.977997F)); + builder.AddCubicBezier(new Vector2(-798.968994F, -355.928986F), new Vector2(-798.221008F, -356.678009F), new Vector2(-797.268982F, -357.221985F)); + builder.AddCubicBezier(new Vector2(-796.317993F, -357.765015F), new Vector2(-795.229004F, -358.037994F), new Vector2(-794.005005F, -358.037994F)); + builder.AddCubicBezier(new Vector2(-792.169006F, -358.037994F), new Vector2(-790.682007F, -357.442993F), new Vector2(-789.541992F, -356.252991F)); + builder.AddCubicBezier(new Vector2(-788.403015F, -355.062012F), new Vector2(-787.833984F, -353.549988F), new Vector2(-787.833984F, -351.713989F)); + builder.AddLine(new Vector2(-787.833984F, -337.587006F)); + builder.AddLine(new Vector2(-783.192993F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - - Layer aggregator + // - - - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // - - Offset:<964, 825> + CanvasGeometry Geometry_1662() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-823.023987F, -337.587006F)); + builder.AddLine(new Vector2(-823.023987F, -372.980988F)); + builder.AddLine(new Vector2(-827.817993F, -372.980988F)); + builder.AddLine(new Vector2(-827.817993F, -337.587006F)); + builder.AddLine(new Vector2(-823.023987F, -337.587006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1663() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-3.40799999F, -0.228F)); + builder.AddCubicBezier(new Vector2(-2.59200001F, -0.555999994F), new Vector2(-1.89600003F, -1.06400001F), new Vector2(-1.32000005F, -1.75199997F)); + builder.AddLine(new Vector2(-3.3599999F, -3.76799989F)); + builder.AddCubicBezier(new Vector2(-3.71199989F, -3.36800003F), new Vector2(-4.11999989F, -3.06800008F), new Vector2(-4.58400011F, -2.86800003F)); + builder.AddCubicBezier(new Vector2(-5.04799986F, -2.66799998F), new Vector2(-5.55999994F, -2.56800008F), new Vector2(-6.11999989F, -2.56800008F)); + builder.AddCubicBezier(new Vector2(-6.74399996F, -2.56800008F), new Vector2(-7.28399992F, -2.70000005F), new Vector2(-7.73999977F, -2.96399999F)); + builder.AddCubicBezier(new Vector2(-8.1960001F, -3.22799993F), new Vector2(-8.54800034F, -3.60800004F), new Vector2(-8.79599953F, -4.10400009F)); + builder.AddCubicBezier(new Vector2(-9.04399967F, -4.5999999F), new Vector2(-9.16800022F, -5.18400002F), new Vector2(-9.16800022F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-9.16800022F, -6.52799988F), new Vector2(-9.05200005F, -7.10400009F), new Vector2(-8.81999969F, -7.58400011F)); + builder.AddCubicBezier(new Vector2(-8.5880003F, -8.06400013F), new Vector2(-8.26000023F, -8.43999958F), new Vector2(-7.83599997F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(-7.41200018F, -8.98400021F), new Vector2(-6.91200018F, -9.11999989F), new Vector2(-6.33599997F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-5.80800009F, -9.11999989F), new Vector2(-5.35599995F, -9F), new Vector2(-4.98000002F, -8.76000023F)); + builder.AddCubicBezier(new Vector2(-4.60400009F, -8.52000046F), new Vector2(-4.32000017F, -8.18000031F), new Vector2(-4.12799978F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(-3.93600011F, -7.30000019F), new Vector2(-3.83200002F, -6.75199986F), new Vector2(-3.81599998F, -6.09600019F)); + builder.AddLine(new Vector2(-2.23200011F, -7.17600012F)); + builder.AddLine(new Vector2(-10.6800003F, -7.12799978F)); + builder.AddLine(new Vector2(-10.6800003F, -4.58400011F)); + builder.AddLine(new Vector2(-0.648000002F, -4.63199997F)); + builder.AddCubicBezier(new Vector2(-0.568000019F, -4.92000008F), new Vector2(-0.515999973F, -5.17999983F), new Vector2(-0.492000014F, -5.41200018F)); + builder.AddCubicBezier(new Vector2(-0.467999995F, -5.64400005F), new Vector2(-0.456F, -5.87200022F), new Vector2(-0.456F, -6.09600019F)); + builder.AddCubicBezier(new Vector2(-0.456F, -7.23199987F), new Vector2(-0.712000012F, -8.23999977F), new Vector2(-1.22399998F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-1.73599994F, -10F), new Vector2(-2.43199992F, -10.6879997F), new Vector2(-3.31200004F, -11.184F)); + builder.AddCubicBezier(new Vector2(-4.19199991F, -11.6800003F), new Vector2(-5.21600008F, -11.9280005F), new Vector2(-6.38399982F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-7.56799984F, -11.9280005F), new Vector2(-8.63199997F, -11.6639996F), new Vector2(-9.57600021F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-10.5200005F, -10.6079998F), new Vector2(-11.2639999F, -9.88399982F), new Vector2(-11.8079996F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-12.3520002F, -8.04399967F), new Vector2(-12.6239996F, -7.0079999F), new Vector2(-12.6239996F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-12.6239996F, -4.67199993F), new Vector2(-12.3439999F, -3.61599994F), new Vector2(-11.7840004F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(-11.224F, -1.75999999F), new Vector2(-10.4560003F, -1.03600001F), new Vector2(-9.47999954F, -0.515999973F)); + builder.AddCubicBezier(new Vector2(-8.50399971F, 0.00400000019F), new Vector2(-7.38399982F, 0.263999999F), new Vector2(-6.11999989F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-5.12799978F, 0.263999999F), new Vector2(-4.22399998F, 0.100000001F), new Vector2(-3.40799999F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1664() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-15.2519999F, -0.228F)); + builder.AddCubicBezier(new Vector2(-14.4919996F, -0.555999994F), new Vector2(-13.8000002F, -1.03999996F), new Vector2(-13.1759996F, -1.67999995F)); + builder.AddLine(new Vector2(-15.552F, -4.03200006F)); + builder.AddCubicBezier(new Vector2(-15.8240004F, -3.72799993F), new Vector2(-16.1480007F, -3.49600005F), new Vector2(-16.5240002F, -3.33599997F)); + builder.AddCubicBezier(new Vector2(-16.8999996F, -3.17600012F), new Vector2(-17.3279991F, -3.09599996F), new Vector2(-17.8080006F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-18.3040009F, -3.09599996F), new Vector2(-18.7600002F, -3.21199989F), new Vector2(-19.1760006F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-19.5919991F, -3.67600012F), new Vector2(-19.9160004F, -4F), new Vector2(-20.1480007F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-20.3799992F, -4.83199978F), new Vector2(-20.4960003F, -5.3119998F), new Vector2(-20.4960003F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-20.4960003F, -6.38399982F), new Vector2(-20.3799992F, -6.85200024F), new Vector2(-20.1480007F, -7.26000023F)); + builder.AddCubicBezier(new Vector2(-19.9160004F, -7.66800022F), new Vector2(-19.5960007F, -7.98799992F), new Vector2(-19.1879997F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-18.7800007F, -8.45199966F), new Vector2(-18.3199997F, -8.56799984F), new Vector2(-17.8080006F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-17.3439999F, -8.56799984F), new Vector2(-16.9319992F, -8.49600029F), new Vector2(-16.5720005F, -8.35200024F)); + builder.AddCubicBezier(new Vector2(-16.2119999F, -8.20800018F), new Vector2(-15.8959999F, -7.98400021F), new Vector2(-15.6239996F, -7.67999983F)); + builder.AddLine(new Vector2(-13.2480001F, -10.0799999F)); + builder.AddCubicBezier(new Vector2(-13.8400002F, -10.6879997F), new Vector2(-14.5159998F, -11.1479998F), new Vector2(-15.276F, -11.46F)); + builder.AddCubicBezier(new Vector2(-16.0359993F, -11.7720003F), new Vector2(-16.8799992F, -11.9280005F), new Vector2(-17.8080006F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-19.0240002F, -11.9280005F), new Vector2(-20.1200008F, -11.6639996F), new Vector2(-21.0960007F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-22.0720005F, -10.6079998F), new Vector2(-22.8400002F, -9.88399982F), new Vector2(-23.3999996F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-23.9599991F, -8.04399967F), new Vector2(-24.2399998F, -7F), new Vector2(-24.2399998F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-24.2399998F, -4.67999983F), new Vector2(-23.9640007F, -3.6400001F), new Vector2(-23.4120007F, -2.71199989F)); + builder.AddCubicBezier(new Vector2(-22.8600006F, -1.78400004F), new Vector2(-22.0960007F, -1.05599999F), new Vector2(-21.1200008F, -0.527999997F)); + builder.AddCubicBezier(new Vector2(-20.1439991F, 0F), new Vector2(-19.0480003F, 0.263999999F), new Vector2(-17.8320007F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-16.8719997F, 0.263999999F), new Vector2(-16.0119991F, 0.100000001F), new Vector2(-15.2519999F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1665() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-33.5279999F, 0F)); + builder.AddLine(new Vector2(-33.5279999F, -11.6639996F)); + builder.AddLine(new Vector2(-37.223999F, -11.6639996F)); + builder.AddLine(new Vector2(-37.223999F, 0F)); + builder.AddLine(new Vector2(-33.5279999F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-25.7999992F, 0F)); + builder.AddLine(new Vector2(-25.7999992F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-25.7999992F, -8.26399994F), new Vector2(-25.9920006F, -9.00399971F), new Vector2(-26.3759995F, -9.68400002F)); + builder.AddCubicBezier(new Vector2(-26.7600002F, -10.3640003F), new Vector2(-27.2880001F, -10.9040003F), new Vector2(-27.9599991F, -11.3039999F)); + builder.AddCubicBezier(new Vector2(-28.632F, -11.7040005F), new Vector2(-29.3920002F, -11.9040003F), new Vector2(-30.2399998F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-31.1359997F, -11.9040003F), new Vector2(-31.9400005F, -11.7159996F), new Vector2(-32.6520004F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-33.3639984F, -10.9639997F), new Vector2(-33.9239998F, -10.4320002F), new Vector2(-34.3320007F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-34.7400017F, -9.05599976F), new Vector2(-34.9440002F, -8.25599957F), new Vector2(-34.9440002F, -7.34399986F)); + builder.AddLine(new Vector2(-33.5279999F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(-33.5279999F, -7.04799986F), new Vector2(-33.4399986F, -7.4000001F), new Vector2(-33.2639999F, -7.704F)); + builder.AddCubicBezier(new Vector2(-33.0880013F, -8.00800037F), new Vector2(-32.8479996F, -8.24400043F), new Vector2(-32.5439987F, -8.4119997F)); + builder.AddCubicBezier(new Vector2(-32.2400017F, -8.57999992F), new Vector2(-31.8959999F, -8.66399956F), new Vector2(-31.5119991F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-30.9360008F, -8.66399956F), new Vector2(-30.4559994F, -8.47599983F), new Vector2(-30.0720005F, -8.10000038F)); + builder.AddCubicBezier(new Vector2(-29.6879997F, -7.72399998F), new Vector2(-29.4960003F, -7.23999977F), new Vector2(-29.4960003F, -6.64799976F)); + builder.AddLine(new Vector2(-29.4960003F, 0F)); + builder.AddLine(new Vector2(-25.7999992F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1666() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-41.9039993F, -0.228F)); + builder.AddCubicBezier(new Vector2(-41.0880013F, -0.555999994F), new Vector2(-40.3919983F, -1.06400001F), new Vector2(-39.8160019F, -1.75199997F)); + builder.AddLine(new Vector2(-41.855999F, -3.76799989F)); + builder.AddCubicBezier(new Vector2(-42.2080002F, -3.36800003F), new Vector2(-42.6160011F, -3.06800008F), new Vector2(-43.0800018F, -2.86800003F)); + builder.AddCubicBezier(new Vector2(-43.5439987F, -2.66799998F), new Vector2(-44.0559998F, -2.56800008F), new Vector2(-44.6160011F, -2.56800008F)); + builder.AddCubicBezier(new Vector2(-45.2400017F, -2.56800008F), new Vector2(-45.7799988F, -2.70000005F), new Vector2(-46.2360001F, -2.96399999F)); + builder.AddCubicBezier(new Vector2(-46.6920013F, -3.22799993F), new Vector2(-47.0439987F, -3.60800004F), new Vector2(-47.2919998F, -4.10400009F)); + builder.AddCubicBezier(new Vector2(-47.5400009F, -4.5999999F), new Vector2(-47.6640015F, -5.18400002F), new Vector2(-47.6640015F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-47.6640015F, -6.52799988F), new Vector2(-47.5480003F, -7.10400009F), new Vector2(-47.3160019F, -7.58400011F)); + builder.AddCubicBezier(new Vector2(-47.0839996F, -8.06400013F), new Vector2(-46.7560005F, -8.43999958F), new Vector2(-46.3320007F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(-45.9080009F, -8.98400021F), new Vector2(-45.4080009F, -9.11999989F), new Vector2(-44.8320007F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-44.3040009F, -9.11999989F), new Vector2(-43.8520012F, -9F), new Vector2(-43.4760017F, -8.76000023F)); + builder.AddCubicBezier(new Vector2(-43.0999985F, -8.52000046F), new Vector2(-42.8160019F, -8.18000031F), new Vector2(-42.6240005F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(-42.4319992F, -7.30000019F), new Vector2(-42.3279991F, -6.75199986F), new Vector2(-42.3120003F, -6.09600019F)); + builder.AddLine(new Vector2(-40.7280006F, -7.17600012F)); + builder.AddLine(new Vector2(-49.1759987F, -7.12799978F)); + builder.AddLine(new Vector2(-49.1759987F, -4.58400011F)); + builder.AddLine(new Vector2(-39.144001F, -4.63199997F)); + builder.AddCubicBezier(new Vector2(-39.0639992F, -4.92000008F), new Vector2(-39.012001F, -5.17999983F), new Vector2(-38.987999F, -5.41200018F)); + builder.AddCubicBezier(new Vector2(-38.9640007F, -5.64400005F), new Vector2(-38.9519997F, -5.87200022F), new Vector2(-38.9519997F, -6.09600019F)); + builder.AddCubicBezier(new Vector2(-38.9519997F, -7.23199987F), new Vector2(-39.2080002F, -8.23999977F), new Vector2(-39.7200012F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-40.2319984F, -10F), new Vector2(-40.9280014F, -10.6879997F), new Vector2(-41.8079987F, -11.184F)); + builder.AddCubicBezier(new Vector2(-42.6879997F, -11.6800003F), new Vector2(-43.7120018F, -11.9280005F), new Vector2(-44.8800011F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-46.0639992F, -11.9280005F), new Vector2(-47.1279984F, -11.6639996F), new Vector2(-48.0719986F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-49.0159988F, -10.6079998F), new Vector2(-49.7599983F, -9.88399982F), new Vector2(-50.3040009F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-50.8479996F, -8.04399967F), new Vector2(-51.1199989F, -7.0079999F), new Vector2(-51.1199989F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-51.1199989F, -4.67199993F), new Vector2(-50.8400002F, -3.61599994F), new Vector2(-50.2799988F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(-49.7200012F, -1.75999999F), new Vector2(-48.9519997F, -1.03600001F), new Vector2(-47.9760017F, -0.515999973F)); + builder.AddCubicBezier(new Vector2(-47F, 0.00400000019F), new Vector2(-45.8800011F, 0.263999999F), new Vector2(-44.6160011F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-43.6240005F, 0.263999999F), new Vector2(-42.7200012F, 0.100000001F), new Vector2(-41.9039993F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1667() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-55.2719994F, -0.395999998F)); + builder.AddCubicBezier(new Vector2(-54.4560013F, -0.836000025F), new Vector2(-53.8199997F, -1.44400001F), new Vector2(-53.3639984F, -2.22000003F)); + builder.AddCubicBezier(new Vector2(-52.9080009F, -2.99600005F), new Vector2(-52.6800003F, -3.89599991F), new Vector2(-52.6800003F, -4.92000008F)); + builder.AddLine(new Vector2(-52.6800003F, -11.6639996F)); + builder.AddLine(new Vector2(-56.3759995F, -11.6639996F)); + builder.AddLine(new Vector2(-56.3759995F, -4.96799994F)); + builder.AddCubicBezier(new Vector2(-56.3759995F, -4.36000013F), new Vector2(-56.5320015F, -3.88000011F), new Vector2(-56.8440018F, -3.52800012F)); + builder.AddCubicBezier(new Vector2(-57.1559982F, -3.17600012F), new Vector2(-57.5839996F, -3F), new Vector2(-58.1279984F, -3F)); + builder.AddCubicBezier(new Vector2(-58.4959984F, -3F), new Vector2(-58.8160019F, -3.07999992F), new Vector2(-59.0880013F, -3.24000001F)); + builder.AddCubicBezier(new Vector2(-59.3600006F, -3.4000001F), new Vector2(-59.5680008F, -3.62800002F), new Vector2(-59.7120018F, -3.92400002F)); + builder.AddCubicBezier(new Vector2(-59.855999F, -4.21999979F), new Vector2(-59.9280014F, -4.56799984F), new Vector2(-59.9280014F, -4.96799994F)); + builder.AddLine(new Vector2(-59.9280014F, -11.6639996F)); + builder.AddLine(new Vector2(-63.6240005F, -11.6639996F)); + builder.AddLine(new Vector2(-63.6240005F, -4.92000008F)); + builder.AddCubicBezier(new Vector2(-63.6240005F, -3.91199994F), new Vector2(-63.3919983F, -3.01999998F), new Vector2(-62.9280014F, -2.24399996F)); + builder.AddCubicBezier(new Vector2(-62.4640007F, -1.46800005F), new Vector2(-61.8120003F, -0.856000006F), new Vector2(-60.9720001F, -0.407999992F)); + builder.AddCubicBezier(new Vector2(-60.132F, 0.0399999991F), new Vector2(-59.1839981F, 0.263999999F), new Vector2(-58.1279984F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-57.0400009F, 0.263999999F), new Vector2(-56.0880013F, 0.0439999998F), new Vector2(-55.2719994F, -0.395999998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1668() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-65.8799973F, 4.92000008F)); + builder.AddLine(new Vector2(-65.8799973F, -11.6639996F)); + builder.AddLine(new Vector2(-69.5279999F, -11.6639996F)); + builder.AddLine(new Vector2(-69.5279999F, -8.68799973F)); + builder.AddLine(new Vector2(-68.9759979F, -5.83199978F)); + builder.AddLine(new Vector2(-69.5279999F, -3F)); + builder.AddLine(new Vector2(-69.5279999F, 4.92000008F)); + builder.AddLine(new Vector2(-65.8799973F, 4.92000008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-73.3199997F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-73.7200012F, -3.67600012F), new Vector2(-74.0279999F, -4F), new Vector2(-74.2440033F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-74.4599991F, -4.83199978F), new Vector2(-74.5680008F, -5.3039999F), new Vector2(-74.5680008F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-74.5680008F, -6.36000013F), new Vector2(-74.4560013F, -6.83199978F), new Vector2(-74.2320023F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-74.0080032F, -7.66400003F), new Vector2(-73.6999969F, -7.98799992F), new Vector2(-73.3079987F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-72.9160004F, -8.45199966F), new Vector2(-72.4639969F, -8.56799984F), new Vector2(-71.9520035F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-71.4400024F, -8.56799984F), new Vector2(-70.9919968F, -8.45199966F), new Vector2(-70.6080017F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-70.223999F, -7.98799992F), new Vector2(-69.9199982F, -7.66800022F), new Vector2(-69.6959991F, -7.26000023F)); + builder.AddCubicBezier(new Vector2(-69.4720001F, -6.85200024F), new Vector2(-69.3600006F, -6.38399982F), new Vector2(-69.3600006F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-69.3600006F, -5.03999996F), new Vector2(-69.6039963F, -4.37599993F), new Vector2(-70.0920029F, -3.86400008F)); + builder.AddCubicBezier(new Vector2(-70.5800018F, -3.352F), new Vector2(-71.2080002F, -3.09599996F), new Vector2(-71.9759979F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-72.4720001F, -3.09599996F), new Vector2(-72.9199982F, -3.21199989F), new Vector2(-73.3199997F, -3.44400001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-70.6080017F, -0.216000006F)); + builder.AddCubicBezier(new Vector2(-69.9680023F, -0.519999981F), new Vector2(-69.4520035F, -0.939999998F), new Vector2(-69.0599976F, -1.47599995F)); + builder.AddCubicBezier(new Vector2(-68.6679993F, -2.01200008F), new Vector2(-68.4400024F, -2.62400007F), new Vector2(-68.3759995F, -3.31200004F)); + builder.AddLine(new Vector2(-68.3759995F, -8.35200024F)); + builder.AddCubicBezier(new Vector2(-68.4400024F, -9.03999996F), new Vector2(-68.6679993F, -9.65200043F), new Vector2(-69.0599976F, -10.1879997F)); + builder.AddCubicBezier(new Vector2(-69.4520035F, -10.724F), new Vector2(-69.9639969F, -11.1440001F), new Vector2(-70.5960007F, -11.448F)); + builder.AddCubicBezier(new Vector2(-71.2279968F, -11.7519999F), new Vector2(-71.935997F, -11.9040003F), new Vector2(-72.7200012F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-73.7919998F, -11.9040003F), new Vector2(-74.7519989F, -11.6440001F), new Vector2(-75.5999985F, -11.1239996F)); + builder.AddCubicBezier(new Vector2(-76.447998F, -10.6040001F), new Vector2(-77.1119995F, -9.88399982F), new Vector2(-77.5920029F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-78.0719986F, -8.04399967F), new Vector2(-78.3119965F, -7F), new Vector2(-78.3119965F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-78.3119965F, -4.66400003F), new Vector2(-78.0719986F, -3.62800002F), new Vector2(-77.5920029F, -2.72399998F)); + builder.AddCubicBezier(new Vector2(-77.1119995F, -1.82000005F), new Vector2(-76.4520035F, -1.10000002F), new Vector2(-75.6119995F, -0.56400001F)); + builder.AddCubicBezier(new Vector2(-74.7720032F, -0.0280000009F), new Vector2(-73.8079987F, 0.239999995F), new Vector2(-72.7200012F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(-71.9520035F, 0.239999995F), new Vector2(-71.2480011F, 0.0879999995F), new Vector2(-70.6080017F, -0.216000006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1669() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-82.2959976F, -0.228F)); + builder.AddCubicBezier(new Vector2(-81.4800034F, -0.555999994F), new Vector2(-80.7839966F, -1.06400001F), new Vector2(-80.2080002F, -1.75199997F)); + builder.AddLine(new Vector2(-82.2480011F, -3.76799989F)); + builder.AddCubicBezier(new Vector2(-82.5999985F, -3.36800003F), new Vector2(-83.0080032F, -3.06800008F), new Vector2(-83.4720001F, -2.86800003F)); + builder.AddCubicBezier(new Vector2(-83.935997F, -2.66799998F), new Vector2(-84.447998F, -2.56800008F), new Vector2(-85.0080032F, -2.56800008F)); + builder.AddCubicBezier(new Vector2(-85.6320038F, -2.56800008F), new Vector2(-86.1719971F, -2.70000005F), new Vector2(-86.6279984F, -2.96399999F)); + builder.AddCubicBezier(new Vector2(-87.0839996F, -3.22799993F), new Vector2(-87.435997F, -3.60800004F), new Vector2(-87.6839981F, -4.10400009F)); + builder.AddCubicBezier(new Vector2(-87.9319992F, -4.5999999F), new Vector2(-88.0559998F, -5.18400002F), new Vector2(-88.0559998F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-88.0559998F, -6.52799988F), new Vector2(-87.9400024F, -7.10400009F), new Vector2(-87.7080002F, -7.58400011F)); + builder.AddCubicBezier(new Vector2(-87.4759979F, -8.06400013F), new Vector2(-87.1480026F, -8.43999958F), new Vector2(-86.723999F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(-86.3000031F, -8.98400021F), new Vector2(-85.8000031F, -9.11999989F), new Vector2(-85.223999F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-84.6959991F, -9.11999989F), new Vector2(-84.2440033F, -9F), new Vector2(-83.8679962F, -8.76000023F)); + builder.AddCubicBezier(new Vector2(-83.4919968F, -8.52000046F), new Vector2(-83.2080002F, -8.18000031F), new Vector2(-83.0159988F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(-82.8239975F, -7.30000019F), new Vector2(-82.7200012F, -6.75199986F), new Vector2(-82.7040024F, -6.09600019F)); + builder.AddLine(new Vector2(-81.1200027F, -7.17600012F)); + builder.AddLine(new Vector2(-89.5680008F, -7.12799978F)); + builder.AddLine(new Vector2(-89.5680008F, -4.58400011F)); + builder.AddLine(new Vector2(-79.5360031F, -4.63199997F)); + builder.AddCubicBezier(new Vector2(-79.4560013F, -4.92000008F), new Vector2(-79.4039993F, -5.17999983F), new Vector2(-79.3799973F, -5.41200018F)); + builder.AddCubicBezier(new Vector2(-79.3560028F, -5.64400005F), new Vector2(-79.3440018F, -5.87200022F), new Vector2(-79.3440018F, -6.09600019F)); + builder.AddCubicBezier(new Vector2(-79.3440018F, -7.23199987F), new Vector2(-79.5999985F, -8.23999977F), new Vector2(-80.1119995F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-80.6240005F, -10F), new Vector2(-81.3199997F, -10.6879997F), new Vector2(-82.1999969F, -11.184F)); + builder.AddCubicBezier(new Vector2(-83.0800018F, -11.6800003F), new Vector2(-84.1039963F, -11.9280005F), new Vector2(-85.2720032F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-86.4560013F, -11.9280005F), new Vector2(-87.5199966F, -11.6639996F), new Vector2(-88.4639969F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-89.4079971F, -10.6079998F), new Vector2(-90.1520004F, -9.88399982F), new Vector2(-90.6959991F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-91.2399979F, -8.04399967F), new Vector2(-91.512001F, -7.0079999F), new Vector2(-91.512001F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-91.512001F, -4.67199993F), new Vector2(-91.2320023F, -3.61599994F), new Vector2(-90.6719971F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(-90.1119995F, -1.75999999F), new Vector2(-89.3440018F, -1.03600001F), new Vector2(-88.3679962F, -0.515999973F)); + builder.AddCubicBezier(new Vector2(-87.3919983F, 0.00400000019F), new Vector2(-86.2720032F, 0.263999999F), new Vector2(-85.0080032F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-84.0159988F, 0.263999999F), new Vector2(-83.1119995F, 0.100000001F), new Vector2(-82.2959976F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1670() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-94.0199966F, -0.708000004F)); + builder.AddCubicBezier(new Vector2(-93.1640015F, -1.38800001F), new Vector2(-92.7360001F, -2.296F), new Vector2(-92.7360001F, -3.43199992F)); + builder.AddCubicBezier(new Vector2(-92.7360001F, -4.16800022F), new Vector2(-92.8720016F, -4.76399994F), new Vector2(-93.1439972F, -5.21999979F)); + builder.AddCubicBezier(new Vector2(-93.4160004F, -5.67600012F), new Vector2(-93.7679977F, -6.04400015F), new Vector2(-94.1999969F, -6.32399988F)); + builder.AddCubicBezier(new Vector2(-94.6320038F, -6.60400009F), new Vector2(-95.0879974F, -6.82000017F), new Vector2(-95.5680008F, -6.97200012F)); + builder.AddCubicBezier(new Vector2(-96.0479965F, -7.12400007F), new Vector2(-96.5F, -7.25600004F), new Vector2(-96.9240036F, -7.36800003F)); + builder.AddCubicBezier(new Vector2(-97.3479996F, -7.48000002F), new Vector2(-97.6999969F, -7.6079998F), new Vector2(-97.9800034F, -7.75199986F)); + builder.AddCubicBezier(new Vector2(-98.2600021F, -7.89599991F), new Vector2(-98.4000015F, -8.0880003F), new Vector2(-98.4000015F, -8.32800007F)); + builder.AddCubicBezier(new Vector2(-98.4000015F, -8.53600025F), new Vector2(-98.2959976F, -8.70400047F), new Vector2(-98.0879974F, -8.83199978F)); + builder.AddCubicBezier(new Vector2(-97.8799973F, -8.96000004F), new Vector2(-97.5680008F, -9.02400017F), new Vector2(-97.1520004F, -9.02400017F)); + builder.AddCubicBezier(new Vector2(-96.7200012F, -9.02400017F), new Vector2(-96.276001F, -8.93200016F), new Vector2(-95.8199997F, -8.74800014F)); + builder.AddCubicBezier(new Vector2(-95.3639984F, -8.56400013F), new Vector2(-94.9520035F, -8.25599957F), new Vector2(-94.5839996F, -7.82399988F)); + builder.AddLine(new Vector2(-92.4960022F, -9.96000004F)); + builder.AddCubicBezier(new Vector2(-93.0080032F, -10.632F), new Vector2(-93.6880035F, -11.1400003F), new Vector2(-94.5360031F, -11.4840002F)); + builder.AddCubicBezier(new Vector2(-95.3840027F, -11.8280001F), new Vector2(-96.2959976F, -12F), new Vector2(-97.2720032F, -12F)); + builder.AddCubicBezier(new Vector2(-98.2480011F, -12F), new Vector2(-99.0879974F, -11.8400002F), new Vector2(-99.7919998F, -11.5200005F)); + builder.AddCubicBezier(new Vector2(-100.496002F, -11.1999998F), new Vector2(-101.040001F, -10.7639999F), new Vector2(-101.424004F, -10.2119999F)); + builder.AddCubicBezier(new Vector2(-101.807999F, -9.65999985F), new Vector2(-102F, -9.00800037F), new Vector2(-102F, -8.25599957F)); + builder.AddCubicBezier(new Vector2(-102F, -7.53599977F), new Vector2(-101.863998F, -6.95200014F), new Vector2(-101.592003F, -6.50400019F)); + builder.AddCubicBezier(new Vector2(-101.32F, -6.05600023F), new Vector2(-100.968002F, -5.704F), new Vector2(-100.536003F, -5.44799995F)); + builder.AddCubicBezier(new Vector2(-100.103996F, -5.19199991F), new Vector2(-99.6480026F, -4.98799992F), new Vector2(-99.1679993F, -4.83599997F)); + builder.AddCubicBezier(new Vector2(-98.6880035F, -4.68400002F), new Vector2(-98.2279968F, -4.54799986F), new Vector2(-97.788002F, -4.42799997F)); + builder.AddCubicBezier(new Vector2(-97.3479996F, -4.30800009F), new Vector2(-96.9919968F, -4.17999983F), new Vector2(-96.7200012F, -4.04400015F)); + builder.AddCubicBezier(new Vector2(-96.447998F, -3.90799999F), new Vector2(-96.3119965F, -3.6960001F), new Vector2(-96.3119965F, -3.40799999F)); + builder.AddCubicBezier(new Vector2(-96.3119965F, -3.16799998F), new Vector2(-96.4280014F, -2.98399997F), new Vector2(-96.6600037F, -2.85599995F)); + builder.AddCubicBezier(new Vector2(-96.8919983F, -2.72799993F), new Vector2(-97.2080002F, -2.66400003F), new Vector2(-97.6080017F, -2.66400003F)); + builder.AddCubicBezier(new Vector2(-98.2480011F, -2.66400003F), new Vector2(-98.8280029F, -2.77999997F), new Vector2(-99.3479996F, -3.01200008F)); + builder.AddCubicBezier(new Vector2(-99.8679962F, -3.24399996F), new Vector2(-100.328003F, -3.56800008F), new Vector2(-100.727997F, -3.98399997F)); + builder.AddLine(new Vector2(-102.839996F, -1.87199998F)); + builder.AddCubicBezier(new Vector2(-102.424004F, -1.44000006F), new Vector2(-101.935997F, -1.05999994F), new Vector2(-101.375999F, -0.731999993F)); + builder.AddCubicBezier(new Vector2(-100.816002F, -0.404000014F), new Vector2(-100.199997F, -0.148000002F), new Vector2(-99.5279999F, 0.0359999985F)); + builder.AddCubicBezier(new Vector2(-98.8560028F, 0.219999999F), new Vector2(-98.1760025F, 0.312000006F), new Vector2(-97.487999F, 0.312000006F)); + builder.AddCubicBezier(new Vector2(-96.0319977F, 0.312000006F), new Vector2(-94.8759995F, -0.0280000009F), new Vector2(-94.0199966F, -0.708000004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1671() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-115.872002F, -3.43199992F)); + builder.AddCubicBezier(new Vector2(-116.272003F, -3.6559999F), new Vector2(-116.584F, -3.98000002F), new Vector2(-116.807999F, -4.40399981F)); + builder.AddCubicBezier(new Vector2(-117.031998F, -4.82800007F), new Vector2(-117.143997F, -5.3119998F), new Vector2(-117.143997F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-117.143997F, -6.36800003F), new Vector2(-117.031998F, -6.83199978F), new Vector2(-116.807999F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-116.584F, -7.66400003F), new Vector2(-116.272003F, -7.98799992F), new Vector2(-115.872002F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-115.472F, -8.45199966F), new Vector2(-115.015999F, -8.56799984F), new Vector2(-114.503998F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-113.991997F, -8.56799984F), new Vector2(-113.540001F, -8.45199966F), new Vector2(-113.148003F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-112.755997F, -7.98799992F), new Vector2(-112.447998F, -7.66800022F), new Vector2(-112.223999F, -7.26000023F)); + builder.AddCubicBezier(new Vector2(-112F, -6.85200024F), new Vector2(-111.888F, -6.38399982F), new Vector2(-111.888F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-111.888F, -5.3119998F), new Vector2(-111.996002F, -4.82800007F), new Vector2(-112.211998F, -4.40399981F)); + builder.AddCubicBezier(new Vector2(-112.428001F, -3.98000002F), new Vector2(-112.736F, -3.6559999F), new Vector2(-113.136002F, -3.43199992F)); + builder.AddCubicBezier(new Vector2(-113.536003F, -3.20799994F), new Vector2(-113.991997F, -3.09599996F), new Vector2(-114.503998F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-115.015999F, -3.09599996F), new Vector2(-115.472F, -3.20799994F), new Vector2(-115.872002F, -3.43199992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-111.239998F, -0.551999986F)); + builder.AddCubicBezier(new Vector2(-110.279999F, -1.09599996F), new Vector2(-109.519997F, -1.82799995F), new Vector2(-108.959999F, -2.74799991F)); + builder.AddCubicBezier(new Vector2(-108.400002F, -3.66799998F), new Vector2(-108.120003F, -4.71199989F), new Vector2(-108.120003F, -5.88000011F)); + builder.AddCubicBezier(new Vector2(-108.120003F, -7.01599979F), new Vector2(-108.400002F, -8.04399967F), new Vector2(-108.959999F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-109.519997F, -9.88399982F), new Vector2(-110.283997F, -10.6079998F), new Vector2(-111.251999F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-112.220001F, -11.6639996F), new Vector2(-113.304001F, -11.9280005F), new Vector2(-114.503998F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-115.736F, -11.9280005F), new Vector2(-116.832001F, -11.6599998F), new Vector2(-117.792F, -11.1239996F)); + builder.AddCubicBezier(new Vector2(-118.751999F, -10.5880003F), new Vector2(-119.508003F, -9.86400032F), new Vector2(-120.059998F, -8.95199966F)); + builder.AddCubicBezier(new Vector2(-120.612F, -8.03999996F), new Vector2(-120.888F, -7.01599979F), new Vector2(-120.888F, -5.88000011F)); + builder.AddCubicBezier(new Vector2(-120.888F, -4.72800016F), new Vector2(-120.608002F, -3.68799996F), new Vector2(-120.047997F, -2.75999999F)); + builder.AddCubicBezier(new Vector2(-119.487999F, -1.83200002F), new Vector2(-118.727997F, -1.09599996F), new Vector2(-117.767998F, -0.551999986F)); + builder.AddCubicBezier(new Vector2(-116.807999F, -0.00800000038F), new Vector2(-115.720001F, 0.263999999F), new Vector2(-114.503998F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-113.288002F, 0.263999999F), new Vector2(-112.199997F, -0.00800000038F), new Vector2(-111.239998F, -0.551999986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1672() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-125.82F, -8.07600021F)); + builder.AddCubicBezier(new Vector2(-125.459999F, -8.45199966F), new Vector2(-124.968002F, -8.64000034F), new Vector2(-124.344002F, -8.64000034F)); + builder.AddCubicBezier(new Vector2(-124.040001F, -8.64000034F), new Vector2(-123.767998F, -8.59200001F), new Vector2(-123.528F, -8.49600029F)); + builder.AddCubicBezier(new Vector2(-123.288002F, -8.39999962F), new Vector2(-123.096001F, -8.27200031F), new Vector2(-122.952003F, -8.11200047F)); + builder.AddLine(new Vector2(-120.767998F, -10.8959999F)); + builder.AddCubicBezier(new Vector2(-121.087997F, -11.2320004F), new Vector2(-121.459999F, -11.4840002F), new Vector2(-121.884003F, -11.6520004F)); + builder.AddCubicBezier(new Vector2(-122.307999F, -11.8199997F), new Vector2(-122.800003F, -11.9040003F), new Vector2(-123.360001F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-124.624001F, -11.9040003F), new Vector2(-125.620003F, -11.5279999F), new Vector2(-126.348F, -10.776F)); + builder.AddCubicBezier(new Vector2(-127.075996F, -10.0240002F), new Vector2(-127.592003F, -8.96000004F), new Vector2(-127.896004F, -7.58400011F)); + builder.AddLine(new Vector2(-126.360001F, -6.38399982F)); + builder.AddCubicBezier(new Vector2(-126.360001F, -7.13600016F), new Vector2(-126.18F, -7.69999981F), new Vector2(-125.82F, -8.07600021F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-126.360001F, 0F)); + builder.AddLine(new Vector2(-126.360001F, -11.6639996F)); + builder.AddLine(new Vector2(-130.056F, -11.6639996F)); + builder.AddLine(new Vector2(-130.056F, 0F)); + builder.AddLine(new Vector2(-126.360001F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1673() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-131.639999F, -8.52000046F)); + builder.AddLine(new Vector2(-131.639999F, -11.6639996F)); + builder.AddLine(new Vector2(-140.591995F, -11.6639996F)); + builder.AddLine(new Vector2(-140.591995F, -8.52000046F)); + builder.AddLine(new Vector2(-131.639999F, -8.52000046F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-134.279999F, 0F)); + builder.AddLine(new Vector2(-134.279999F, -16.4880009F)); + builder.AddLine(new Vector2(-137.975998F, -16.4880009F)); + builder.AddLine(new Vector2(-137.975998F, 0F)); + builder.AddLine(new Vector2(-134.279999F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1674() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-149.520004F, 0F)); + builder.AddLine(new Vector2(-149.520004F, -11.6639996F)); + builder.AddLine(new Vector2(-153.216003F, -11.6639996F)); + builder.AddLine(new Vector2(-153.216003F, 0F)); + builder.AddLine(new Vector2(-149.520004F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-141.792007F, 0F)); + builder.AddLine(new Vector2(-141.792007F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-141.792007F, -8.26399994F), new Vector2(-141.983994F, -9.00399971F), new Vector2(-142.367996F, -9.68400002F)); + builder.AddCubicBezier(new Vector2(-142.751999F, -10.3640003F), new Vector2(-143.279999F, -10.9040003F), new Vector2(-143.951996F, -11.3039999F)); + builder.AddCubicBezier(new Vector2(-144.623993F, -11.7040005F), new Vector2(-145.384003F, -11.9040003F), new Vector2(-146.231995F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-147.128006F, -11.9040003F), new Vector2(-147.932007F, -11.7159996F), new Vector2(-148.643997F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-149.356003F, -10.9639997F), new Vector2(-149.916F, -10.4320002F), new Vector2(-150.324005F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-150.731995F, -9.05599976F), new Vector2(-150.936005F, -8.25599957F), new Vector2(-150.936005F, -7.34399986F)); + builder.AddLine(new Vector2(-149.520004F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(-149.520004F, -7.04799986F), new Vector2(-149.432007F, -7.4000001F), new Vector2(-149.255997F, -7.704F)); + builder.AddCubicBezier(new Vector2(-149.080002F, -8.00800037F), new Vector2(-148.839996F, -8.24400043F), new Vector2(-148.535995F, -8.4119997F)); + builder.AddCubicBezier(new Vector2(-148.231995F, -8.57999992F), new Vector2(-147.888F, -8.66399956F), new Vector2(-147.503998F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-146.927994F, -8.66399956F), new Vector2(-146.447998F, -8.47599983F), new Vector2(-146.063995F, -8.10000038F)); + builder.AddCubicBezier(new Vector2(-145.679993F, -7.72399998F), new Vector2(-145.488007F, -7.23999977F), new Vector2(-145.488007F, -6.64799976F)); + builder.AddLine(new Vector2(-145.488007F, 0F)); + builder.AddLine(new Vector2(-141.792007F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1675() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-156.179993F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-155.820007F, -14.2480001F), new Vector2(-155.639999F, -14.7279997F), new Vector2(-155.639999F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-155.639999F, -15.8640003F), new Vector2(-155.820007F, -16.3439999F), new Vector2(-156.179993F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-156.539993F, -17.1119995F), new Vector2(-157.016006F, -17.3040009F), new Vector2(-157.608002F, -17.3040009F)); + builder.AddCubicBezier(new Vector2(-158.167999F, -17.3040009F), new Vector2(-158.639999F, -17.1119995F), new Vector2(-159.024002F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-159.408005F, -16.3439999F), new Vector2(-159.600006F, -15.8640003F), new Vector2(-159.600006F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-159.600006F, -14.7279997F), new Vector2(-159.408005F, -14.2480001F), new Vector2(-159.024002F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-158.639999F, -13.448F), new Vector2(-158.167999F, -13.2480001F), new Vector2(-157.608002F, -13.2480001F)); + builder.AddCubicBezier(new Vector2(-157.016006F, -13.2480001F), new Vector2(-156.539993F, -13.448F), new Vector2(-156.179993F, -13.8479996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-155.759995F, 0F)); + builder.AddLine(new Vector2(-155.759995F, -11.6639996F)); + builder.AddLine(new Vector2(-159.455994F, -11.6639996F)); + builder.AddLine(new Vector2(-159.455994F, 0F)); + builder.AddLine(new Vector2(-155.759995F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1676() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-165.623993F, -8.52000046F)); + builder.AddLine(new Vector2(-165.623993F, -11.6639996F)); + builder.AddLine(new Vector2(-174.576004F, -11.6639996F)); + builder.AddLine(new Vector2(-174.576004F, -8.52000046F)); + builder.AddLine(new Vector2(-165.623993F, -8.52000046F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-168.264008F, 0F)); + builder.AddLine(new Vector2(-168.264008F, -16.4880009F)); + builder.AddLine(new Vector2(-171.960007F, -16.4880009F)); + builder.AddLine(new Vector2(-171.960007F, 0F)); + builder.AddLine(new Vector2(-168.264008F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1677() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-174.936005F, -11.6639996F)); + builder.AddLine(new Vector2(-178.968002F, -11.6639996F)); + builder.AddLine(new Vector2(-181.584F, -7.41599989F)); + builder.AddLine(new Vector2(-179.472F, -5.06400013F)); + builder.AddLine(new Vector2(-174.936005F, -11.6639996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-183.360001F, 0F)); + builder.AddLine(new Vector2(-180.503998F, -4.41599989F)); + builder.AddLine(new Vector2(-182.615997F, -6.79199982F)); + builder.AddLine(new Vector2(-187.391998F, 0F)); + builder.AddLine(new Vector2(-183.360001F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-174.720001F, 0F)); + builder.AddLine(new Vector2(-179.472F, -6.93599987F)); + builder.AddLine(new Vector2(-180.240005F, -7.44000006F)); + builder.AddLine(new Vector2(-182.856003F, -11.6639996F)); + builder.AddLine(new Vector2(-187.151993F, -11.6639996F)); + builder.AddLine(new Vector2(-182.567993F, -5.03999996F)); + builder.AddLine(new Vector2(-181.776001F, -4.51200008F)); + builder.AddLine(new Vector2(-178.992004F, 0F)); + builder.AddLine(new Vector2(-174.720001F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1678() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-190.584F, -0.228F)); + builder.AddCubicBezier(new Vector2(-189.768005F, -0.555999994F), new Vector2(-189.072006F, -1.06400001F), new Vector2(-188.496002F, -1.75199997F)); + builder.AddLine(new Vector2(-190.535995F, -3.76799989F)); + builder.AddCubicBezier(new Vector2(-190.888F, -3.36800003F), new Vector2(-191.296005F, -3.06800008F), new Vector2(-191.759995F, -2.86800003F)); + builder.AddCubicBezier(new Vector2(-192.223999F, -2.66799998F), new Vector2(-192.735992F, -2.56800008F), new Vector2(-193.296005F, -2.56800008F)); + builder.AddCubicBezier(new Vector2(-193.919998F, -2.56800008F), new Vector2(-194.460007F, -2.70000005F), new Vector2(-194.916F, -2.96399999F)); + builder.AddCubicBezier(new Vector2(-195.371994F, -3.22799993F), new Vector2(-195.723999F, -3.60800004F), new Vector2(-195.972F, -4.10400009F)); + builder.AddCubicBezier(new Vector2(-196.220001F, -4.5999999F), new Vector2(-196.343994F, -5.18400002F), new Vector2(-196.343994F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-196.343994F, -6.52799988F), new Vector2(-196.227997F, -7.10400009F), new Vector2(-195.996002F, -7.58400011F)); + builder.AddCubicBezier(new Vector2(-195.764008F, -8.06400013F), new Vector2(-195.436005F, -8.43999958F), new Vector2(-195.011993F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(-194.587997F, -8.98400021F), new Vector2(-194.087997F, -9.11999989F), new Vector2(-193.511993F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-192.983994F, -9.11999989F), new Vector2(-192.531998F, -9F), new Vector2(-192.156006F, -8.76000023F)); + builder.AddCubicBezier(new Vector2(-191.779999F, -8.52000046F), new Vector2(-191.496002F, -8.18000031F), new Vector2(-191.304001F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(-191.112F, -7.30000019F), new Vector2(-191.007996F, -6.75199986F), new Vector2(-190.992004F, -6.09600019F)); + builder.AddLine(new Vector2(-189.408005F, -7.17600012F)); + builder.AddLine(new Vector2(-197.856003F, -7.12799978F)); + builder.AddLine(new Vector2(-197.856003F, -4.58400011F)); + builder.AddLine(new Vector2(-187.824005F, -4.63199997F)); + builder.AddCubicBezier(new Vector2(-187.744003F, -4.92000008F), new Vector2(-187.692001F, -5.17999983F), new Vector2(-187.667999F, -5.41200018F)); + builder.AddCubicBezier(new Vector2(-187.643997F, -5.64400005F), new Vector2(-187.632004F, -5.87200022F), new Vector2(-187.632004F, -6.09600019F)); + builder.AddCubicBezier(new Vector2(-187.632004F, -7.23199987F), new Vector2(-187.888F, -8.23999977F), new Vector2(-188.399994F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-188.912003F, -10F), new Vector2(-189.608002F, -10.6879997F), new Vector2(-190.488007F, -11.184F)); + builder.AddCubicBezier(new Vector2(-191.367996F, -11.6800003F), new Vector2(-192.391998F, -11.9280005F), new Vector2(-193.559998F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-194.744003F, -11.9280005F), new Vector2(-195.807999F, -11.6639996F), new Vector2(-196.751999F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-197.695999F, -10.6079998F), new Vector2(-198.440002F, -9.88399982F), new Vector2(-198.983994F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-199.528F, -8.04399967F), new Vector2(-199.800003F, -7.0079999F), new Vector2(-199.800003F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-199.800003F, -4.67199993F), new Vector2(-199.520004F, -3.61599994F), new Vector2(-198.960007F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(-198.399994F, -1.75999999F), new Vector2(-197.632004F, -1.03600001F), new Vector2(-196.656006F, -0.515999973F)); + builder.AddCubicBezier(new Vector2(-195.679993F, 0.00400000019F), new Vector2(-194.559998F, 0.263999999F), new Vector2(-193.296005F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-192.304001F, 0.263999999F), new Vector2(-191.399994F, 0.100000001F), new Vector2(-190.584F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1679() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-209.087997F, 0F)); + builder.AddLine(new Vector2(-209.087997F, -11.6639996F)); + builder.AddLine(new Vector2(-212.783997F, -11.6639996F)); + builder.AddLine(new Vector2(-212.783997F, 0F)); + builder.AddLine(new Vector2(-209.087997F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-201.360001F, 0F)); + builder.AddLine(new Vector2(-201.360001F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-201.360001F, -8.26399994F), new Vector2(-201.552002F, -9.00399971F), new Vector2(-201.936005F, -9.68400002F)); + builder.AddCubicBezier(new Vector2(-202.320007F, -10.3640003F), new Vector2(-202.848007F, -10.9040003F), new Vector2(-203.520004F, -11.3039999F)); + builder.AddCubicBezier(new Vector2(-204.192001F, -11.7040005F), new Vector2(-204.951996F, -11.9040003F), new Vector2(-205.800003F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-206.695999F, -11.9040003F), new Vector2(-207.5F, -11.7159996F), new Vector2(-208.212006F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-208.923996F, -10.9639997F), new Vector2(-209.483994F, -10.4320002F), new Vector2(-209.891998F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-210.300003F, -9.05599976F), new Vector2(-210.503998F, -8.25599957F), new Vector2(-210.503998F, -7.34399986F)); + builder.AddLine(new Vector2(-209.087997F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(-209.087997F, -7.04799986F), new Vector2(-209F, -7.4000001F), new Vector2(-208.824005F, -7.704F)); + builder.AddCubicBezier(new Vector2(-208.647995F, -8.00800037F), new Vector2(-208.408005F, -8.24400043F), new Vector2(-208.104004F, -8.4119997F)); + builder.AddCubicBezier(new Vector2(-207.800003F, -8.57999992F), new Vector2(-207.455994F, -8.66399956F), new Vector2(-207.072006F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-206.496002F, -8.66399956F), new Vector2(-206.016006F, -8.47599983F), new Vector2(-205.632004F, -8.10000038F)); + builder.AddCubicBezier(new Vector2(-205.248001F, -7.72399998F), new Vector2(-205.056F, -7.23999977F), new Vector2(-205.056F, -6.64799976F)); + builder.AddLine(new Vector2(-205.056F, 0F)); + builder.AddLine(new Vector2(-201.360001F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1680() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-222.024002F, -0.228F)); + builder.AddCubicBezier(new Vector2(-221.207993F, -0.555999994F), new Vector2(-220.511993F, -1.06400001F), new Vector2(-219.936005F, -1.75199997F)); + builder.AddLine(new Vector2(-221.975998F, -3.76799989F)); + builder.AddCubicBezier(new Vector2(-222.328003F, -3.36800003F), new Vector2(-222.735992F, -3.06800008F), new Vector2(-223.199997F, -2.86800003F)); + builder.AddCubicBezier(new Vector2(-223.664001F, -2.66799998F), new Vector2(-224.175995F, -2.56800008F), new Vector2(-224.735992F, -2.56800008F)); + builder.AddCubicBezier(new Vector2(-225.360001F, -2.56800008F), new Vector2(-225.899994F, -2.70000005F), new Vector2(-226.356003F, -2.96399999F)); + builder.AddCubicBezier(new Vector2(-226.811996F, -3.22799993F), new Vector2(-227.164001F, -3.60800004F), new Vector2(-227.412003F, -4.10400009F)); + builder.AddCubicBezier(new Vector2(-227.660004F, -4.5999999F), new Vector2(-227.783997F, -5.18400002F), new Vector2(-227.783997F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-227.783997F, -6.52799988F), new Vector2(-227.667999F, -7.10400009F), new Vector2(-227.436005F, -7.58400011F)); + builder.AddCubicBezier(new Vector2(-227.203995F, -8.06400013F), new Vector2(-226.876007F, -8.43999958F), new Vector2(-226.451996F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(-226.028F, -8.98400021F), new Vector2(-225.528F, -9.11999989F), new Vector2(-224.951996F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-224.423996F, -9.11999989F), new Vector2(-223.972F, -9F), new Vector2(-223.595993F, -8.76000023F)); + builder.AddCubicBezier(new Vector2(-223.220001F, -8.52000046F), new Vector2(-222.936005F, -8.18000031F), new Vector2(-222.744003F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(-222.552002F, -7.30000019F), new Vector2(-222.447998F, -6.75199986F), new Vector2(-222.432007F, -6.09600019F)); + builder.AddLine(new Vector2(-220.848007F, -7.17600012F)); + builder.AddLine(new Vector2(-229.296005F, -7.12799978F)); + builder.AddLine(new Vector2(-229.296005F, -4.58400011F)); + builder.AddLine(new Vector2(-219.264008F, -4.63199997F)); + builder.AddCubicBezier(new Vector2(-219.184006F, -4.92000008F), new Vector2(-219.132004F, -5.17999983F), new Vector2(-219.108002F, -5.41200018F)); + builder.AddCubicBezier(new Vector2(-219.084F, -5.64400005F), new Vector2(-219.072006F, -5.87200022F), new Vector2(-219.072006F, -6.09600019F)); + builder.AddCubicBezier(new Vector2(-219.072006F, -7.23199987F), new Vector2(-219.328003F, -8.23999977F), new Vector2(-219.839996F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-220.352005F, -10F), new Vector2(-221.048004F, -10.6879997F), new Vector2(-221.927994F, -11.184F)); + builder.AddCubicBezier(new Vector2(-222.807999F, -11.6800003F), new Vector2(-223.832001F, -11.9280005F), new Vector2(-225F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-226.184006F, -11.9280005F), new Vector2(-227.248001F, -11.6639996F), new Vector2(-228.192001F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-229.136002F, -10.6079998F), new Vector2(-229.880005F, -9.88399982F), new Vector2(-230.423996F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-230.968002F, -8.04399967F), new Vector2(-231.240005F, -7.0079999F), new Vector2(-231.240005F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-231.240005F, -4.67199993F), new Vector2(-230.960007F, -3.61599994F), new Vector2(-230.399994F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(-229.839996F, -1.75999999F), new Vector2(-229.072006F, -1.03600001F), new Vector2(-228.095993F, -0.515999973F)); + builder.AddCubicBezier(new Vector2(-227.119995F, 0.00400000019F), new Vector2(-226F, 0.263999999F), new Vector2(-224.735992F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-223.744003F, 0.263999999F), new Vector2(-222.839996F, 0.100000001F), new Vector2(-222.024002F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1681() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-240.528F, 0F)); + builder.AddLine(new Vector2(-240.528F, -17.4239998F)); + builder.AddLine(new Vector2(-244.223999F, -17.4239998F)); + builder.AddLine(new Vector2(-244.223999F, 0F)); + builder.AddLine(new Vector2(-240.528F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-232.800003F, 0F)); + builder.AddLine(new Vector2(-232.800003F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-232.800003F, -8.34399986F), new Vector2(-232.992004F, -9.11600018F), new Vector2(-233.376007F, -9.77999973F)); + builder.AddCubicBezier(new Vector2(-233.759995F, -10.4440002F), new Vector2(-234.296005F, -10.9639997F), new Vector2(-234.983994F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-235.671997F, -11.7159996F), new Vector2(-236.472F, -11.9040003F), new Vector2(-237.384003F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-238.264008F, -11.9040003F), new Vector2(-239.048004F, -11.7159996F), new Vector2(-239.735992F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-240.423996F, -10.9639997F), new Vector2(-240.964005F, -10.4320002F), new Vector2(-241.356003F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-241.748001F, -9.05599976F), new Vector2(-241.944F, -8.25599957F), new Vector2(-241.944F, -7.34399986F)); + builder.AddLine(new Vector2(-240.528F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(-240.528F, -7.04799986F), new Vector2(-240.440002F, -7.4000001F), new Vector2(-240.264008F, -7.704F)); + builder.AddCubicBezier(new Vector2(-240.087997F, -8.00800037F), new Vector2(-239.848007F, -8.24400043F), new Vector2(-239.544006F, -8.4119997F)); + builder.AddCubicBezier(new Vector2(-239.240005F, -8.57999992F), new Vector2(-238.895996F, -8.66399956F), new Vector2(-238.511993F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-237.936005F, -8.66399956F), new Vector2(-237.455994F, -8.47599983F), new Vector2(-237.072006F, -8.10000038F)); + builder.AddCubicBezier(new Vector2(-236.688004F, -7.72399998F), new Vector2(-236.496002F, -7.23999977F), new Vector2(-236.496002F, -6.64799976F)); + builder.AddLine(new Vector2(-236.496002F, 0F)); + builder.AddLine(new Vector2(-232.800003F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1682() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-245.807999F, -8.52000046F)); + builder.AddLine(new Vector2(-245.807999F, -11.6639996F)); + builder.AddLine(new Vector2(-254.759995F, -11.6639996F)); + builder.AddLine(new Vector2(-254.759995F, -8.52000046F)); + builder.AddLine(new Vector2(-245.807999F, -8.52000046F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-248.447998F, 0F)); + builder.AddLine(new Vector2(-248.447998F, -16.4880009F)); + builder.AddLine(new Vector2(-252.143997F, -16.4880009F)); + builder.AddLine(new Vector2(-252.143997F, 0F)); + builder.AddLine(new Vector2(-248.447998F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1683() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-268.391998F, 0F)); + builder.AddLine(new Vector2(-268.391998F, -11.6639996F)); + builder.AddLine(new Vector2(-272.088013F, -11.6639996F)); + builder.AddLine(new Vector2(-272.088013F, 0F)); + builder.AddLine(new Vector2(-268.391998F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-260.664001F, 0F)); + builder.AddLine(new Vector2(-260.664001F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-260.664001F, -8.26399994F), new Vector2(-260.855988F, -9.00399971F), new Vector2(-261.23999F, -9.68400002F)); + builder.AddCubicBezier(new Vector2(-261.623993F, -10.3640003F), new Vector2(-262.152008F, -10.9040003F), new Vector2(-262.824005F, -11.3039999F)); + builder.AddCubicBezier(new Vector2(-263.496002F, -11.7040005F), new Vector2(-264.256012F, -11.9040003F), new Vector2(-265.104004F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-266F, -11.9040003F), new Vector2(-266.803986F, -11.7159996F), new Vector2(-267.515991F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-268.227997F, -10.9639997F), new Vector2(-268.787994F, -10.4320002F), new Vector2(-269.196014F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-269.604004F, -9.05599976F), new Vector2(-269.808014F, -8.25599957F), new Vector2(-269.808014F, -7.34399986F)); + builder.AddLine(new Vector2(-268.391998F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(-268.391998F, -7.04799986F), new Vector2(-268.303986F, -7.4000001F), new Vector2(-268.127991F, -7.704F)); + builder.AddCubicBezier(new Vector2(-267.951996F, -8.00800037F), new Vector2(-267.712006F, -8.24400043F), new Vector2(-267.40799F, -8.4119997F)); + builder.AddCubicBezier(new Vector2(-267.104004F, -8.57999992F), new Vector2(-266.76001F, -8.66399956F), new Vector2(-266.376007F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-265.799988F, -8.66399956F), new Vector2(-265.320007F, -8.47599983F), new Vector2(-264.936005F, -8.10000038F)); + builder.AddCubicBezier(new Vector2(-264.552002F, -7.72399998F), new Vector2(-264.359985F, -7.23999977F), new Vector2(-264.359985F, -6.64799976F)); + builder.AddLine(new Vector2(-264.359985F, 0F)); + builder.AddLine(new Vector2(-260.664001F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1684() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-275.052002F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-274.691986F, -14.2480001F), new Vector2(-274.511993F, -14.7279997F), new Vector2(-274.511993F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-274.511993F, -15.8640003F), new Vector2(-274.691986F, -16.3439999F), new Vector2(-275.052002F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-275.411987F, -17.1119995F), new Vector2(-275.888F, -17.3040009F), new Vector2(-276.480011F, -17.3040009F)); + builder.AddCubicBezier(new Vector2(-277.040009F, -17.3040009F), new Vector2(-277.511993F, -17.1119995F), new Vector2(-277.895996F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-278.279999F, -16.3439999F), new Vector2(-278.471985F, -15.8640003F), new Vector2(-278.471985F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-278.471985F, -14.7279997F), new Vector2(-278.279999F, -14.2480001F), new Vector2(-277.895996F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-277.511993F, -13.448F), new Vector2(-277.040009F, -13.2480001F), new Vector2(-276.480011F, -13.2480001F)); + builder.AddCubicBezier(new Vector2(-275.888F, -13.2480001F), new Vector2(-275.411987F, -13.448F), new Vector2(-275.052002F, -13.8479996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-274.631989F, 0F)); + builder.AddLine(new Vector2(-274.631989F, -11.6639996F)); + builder.AddLine(new Vector2(-278.328003F, -11.6639996F)); + builder.AddLine(new Vector2(-278.328003F, 0F)); + builder.AddLine(new Vector2(-274.631989F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1685() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-285.480011F, -17.4239998F)); + builder.AddLine(new Vector2(-289.175995F, -17.4239998F)); + builder.AddLine(new Vector2(-289.175995F, -8.80799961F)); + builder.AddLine(new Vector2(-288.552002F, -6F)); + builder.AddLine(new Vector2(-289.104004F, -3.14400005F)); + builder.AddLine(new Vector2(-289.104004F, 0F)); + builder.AddLine(new Vector2(-285.480011F, 0F)); + builder.AddLine(new Vector2(-285.480011F, -17.4239998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-292.895996F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-293.29599F, -3.67600012F), new Vector2(-293.604004F, -4F), new Vector2(-293.820007F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-294.036011F, -4.83199978F), new Vector2(-294.144012F, -5.3039999F), new Vector2(-294.144012F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-294.144012F, -6.36000013F), new Vector2(-294.028015F, -6.82800007F), new Vector2(-293.79599F, -7.23600006F)); + builder.AddCubicBezier(new Vector2(-293.563995F, -7.64400005F), new Vector2(-293.256012F, -7.96799994F), new Vector2(-292.872009F, -8.20800018F)); + builder.AddCubicBezier(new Vector2(-292.488007F, -8.44799995F), new Vector2(-292.040009F, -8.56799984F), new Vector2(-291.528015F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-291.015991F, -8.56799984F), new Vector2(-290.567993F, -8.45199966F), new Vector2(-290.18399F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-289.799988F, -7.98799992F), new Vector2(-289.5F, -7.66800022F), new Vector2(-289.283997F, -7.26000023F)); + builder.AddCubicBezier(new Vector2(-289.067993F, -6.85200024F), new Vector2(-288.959991F, -6.38399982F), new Vector2(-288.959991F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-288.959991F, -5.3119998F), new Vector2(-289.067993F, -4.83199978F), new Vector2(-289.283997F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-289.5F, -4F), new Vector2(-289.799988F, -3.67600012F), new Vector2(-290.18399F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-290.567993F, -3.21199989F), new Vector2(-291.023987F, -3.09599996F), new Vector2(-291.552002F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-292.048004F, -3.09599996F), new Vector2(-292.496002F, -3.21199989F), new Vector2(-292.895996F, -3.44400001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-290.040009F, -0.252000004F)); + builder.AddCubicBezier(new Vector2(-289.384003F, -0.579999983F), new Vector2(-288.847992F, -1.01999998F), new Vector2(-288.432007F, -1.57200003F)); + builder.AddCubicBezier(new Vector2(-288.015991F, -2.12400007F), new Vector2(-287.776001F, -2.74399996F), new Vector2(-287.712006F, -3.43199992F)); + builder.AddLine(new Vector2(-287.712006F, -8.35200024F)); + builder.AddCubicBezier(new Vector2(-287.776001F, -9.05599976F), new Vector2(-288.015991F, -9.67599964F), new Vector2(-288.432007F, -10.2119999F)); + builder.AddCubicBezier(new Vector2(-288.847992F, -10.7480001F), new Vector2(-289.384003F, -11.1639996F), new Vector2(-290.040009F, -11.46F)); + builder.AddCubicBezier(new Vector2(-290.696014F, -11.7559996F), new Vector2(-291.415985F, -11.9040003F), new Vector2(-292.200012F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-293.303986F, -11.9040003F), new Vector2(-294.287994F, -11.6400003F), new Vector2(-295.152008F, -11.1120005F)); + builder.AddCubicBezier(new Vector2(-296.015991F, -10.5839996F), new Vector2(-296.687988F, -9.86400032F), new Vector2(-297.167999F, -8.95199966F)); + builder.AddCubicBezier(new Vector2(-297.64801F, -8.03999996F), new Vector2(-297.888F, -7F), new Vector2(-297.888F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-297.888F, -4.66400003F), new Vector2(-297.64801F, -3.62400007F), new Vector2(-297.167999F, -2.71199989F)); + builder.AddCubicBezier(new Vector2(-296.687988F, -1.79999995F), new Vector2(-296.019989F, -1.08000004F), new Vector2(-295.164001F, -0.551999986F)); + builder.AddCubicBezier(new Vector2(-294.308014F, -0.0240000002F), new Vector2(-293.320007F, 0.239999995F), new Vector2(-292.200012F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(-291.415985F, 0.239999995F), new Vector2(-290.696014F, 0.0759999976F), new Vector2(-290.040009F, -0.252000004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1686() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-301.872009F, -0.228F)); + builder.AddCubicBezier(new Vector2(-301.056F, -0.555999994F), new Vector2(-300.359985F, -1.06400001F), new Vector2(-299.783997F, -1.75199997F)); + builder.AddLine(new Vector2(-301.824005F, -3.76799989F)); + builder.AddCubicBezier(new Vector2(-302.175995F, -3.36800003F), new Vector2(-302.584015F, -3.06800008F), new Vector2(-303.048004F, -2.86800003F)); + builder.AddCubicBezier(new Vector2(-303.511993F, -2.66799998F), new Vector2(-304.023987F, -2.56800008F), new Vector2(-304.584015F, -2.56800008F)); + builder.AddCubicBezier(new Vector2(-305.208008F, -2.56800008F), new Vector2(-305.747986F, -2.70000005F), new Vector2(-306.20401F, -2.96399999F)); + builder.AddCubicBezier(new Vector2(-306.660004F, -3.22799993F), new Vector2(-307.011993F, -3.60800004F), new Vector2(-307.26001F, -4.10400009F)); + builder.AddCubicBezier(new Vector2(-307.507996F, -4.5999999F), new Vector2(-307.631989F, -5.18400002F), new Vector2(-307.631989F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-307.631989F, -6.52799988F), new Vector2(-307.515991F, -7.10400009F), new Vector2(-307.283997F, -7.58400011F)); + builder.AddCubicBezier(new Vector2(-307.052002F, -8.06400013F), new Vector2(-306.723999F, -8.43999958F), new Vector2(-306.299988F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(-305.876007F, -8.98400021F), new Vector2(-305.376007F, -9.11999989F), new Vector2(-304.799988F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-304.272003F, -9.11999989F), new Vector2(-303.820007F, -9F), new Vector2(-303.444F, -8.76000023F)); + builder.AddCubicBezier(new Vector2(-303.067993F, -8.52000046F), new Vector2(-302.783997F, -8.18000031F), new Vector2(-302.59201F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(-302.399994F, -7.30000019F), new Vector2(-302.29599F, -6.75199986F), new Vector2(-302.279999F, -6.09600019F)); + builder.AddLine(new Vector2(-300.696014F, -7.17600012F)); + builder.AddLine(new Vector2(-309.144012F, -7.12799978F)); + builder.AddLine(new Vector2(-309.144012F, -4.58400011F)); + builder.AddLine(new Vector2(-299.112F, -4.63199997F)); + builder.AddCubicBezier(new Vector2(-299.032013F, -4.92000008F), new Vector2(-298.980011F, -5.17999983F), new Vector2(-298.955994F, -5.41200018F)); + builder.AddCubicBezier(new Vector2(-298.932007F, -5.64400005F), new Vector2(-298.920013F, -5.87200022F), new Vector2(-298.920013F, -6.09600019F)); + builder.AddCubicBezier(new Vector2(-298.920013F, -7.23199987F), new Vector2(-299.175995F, -8.23999977F), new Vector2(-299.687988F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-300.200012F, -10F), new Vector2(-300.895996F, -10.6879997F), new Vector2(-301.776001F, -11.184F)); + builder.AddCubicBezier(new Vector2(-302.656006F, -11.6800003F), new Vector2(-303.679993F, -11.9280005F), new Vector2(-304.847992F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-306.032013F, -11.9280005F), new Vector2(-307.096008F, -11.6639996F), new Vector2(-308.040009F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-308.984009F, -10.6079998F), new Vector2(-309.727997F, -9.88399982F), new Vector2(-310.272003F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-310.81601F, -8.04399967F), new Vector2(-311.088013F, -7.0079999F), new Vector2(-311.088013F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-311.088013F, -4.67199993F), new Vector2(-310.808014F, -3.61599994F), new Vector2(-310.247986F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(-309.687988F, -1.75999999F), new Vector2(-308.920013F, -1.03600001F), new Vector2(-307.944F, -0.515999973F)); + builder.AddCubicBezier(new Vector2(-306.967987F, 0.00400000019F), new Vector2(-305.847992F, 0.263999999F), new Vector2(-304.584015F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-303.59201F, 0.263999999F), new Vector2(-302.687988F, 0.100000001F), new Vector2(-301.872009F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1687() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-318.335999F, 4.92000008F)); + builder.AddLine(new Vector2(-316.272003F, 0.0719999969F)); + builder.AddLine(new Vector2(-318.623993F, -2.66400003F)); + builder.AddLine(new Vector2(-322.127991F, 4.92000008F)); + builder.AddLine(new Vector2(-318.335999F, 4.92000008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-316.272003F, 0.0719999969F)); + builder.AddLine(new Vector2(-311.279999F, -11.6639996F)); + builder.AddLine(new Vector2(-315.264008F, -11.6639996F)); + builder.AddLine(new Vector2(-318.359985F, -2.37599993F)); + builder.AddLine(new Vector2(-316.895996F, -2.37599993F)); + builder.AddLine(new Vector2(-319.944F, -11.6639996F)); + builder.AddLine(new Vector2(-323.928009F, -11.6639996F)); + builder.AddLine(new Vector2(-319.127991F, 0.0719999969F)); + builder.AddLine(new Vector2(-316.272003F, 0.0719999969F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1688() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-325.29599F, 0F)); + builder.AddLine(new Vector2(-325.29599F, -11.6639996F)); + builder.AddLine(new Vector2(-328.920013F, -11.6639996F)); + builder.AddLine(new Vector2(-328.920013F, -8.80799961F)); + builder.AddLine(new Vector2(-328.368011F, -6F)); + builder.AddLine(new Vector2(-328.920013F, -3.14400005F)); + builder.AddLine(new Vector2(-328.920013F, 0F)); + builder.AddLine(new Vector2(-325.29599F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-332.700012F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-333.09201F, -3.67600012F), new Vector2(-333.403992F, -4F), new Vector2(-333.635986F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-333.868011F, -4.83199978F), new Vector2(-333.984009F, -5.3039999F), new Vector2(-333.984009F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-333.984009F, -6.36000013F), new Vector2(-333.868011F, -6.83199978F), new Vector2(-333.635986F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-333.403992F, -7.66400003F), new Vector2(-333.09201F, -7.98799992F), new Vector2(-332.700012F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-332.308014F, -8.45199966F), new Vector2(-331.864014F, -8.56799984F), new Vector2(-331.368011F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-330.855988F, -8.56799984F), new Vector2(-330.399994F, -8.45199966F), new Vector2(-330F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-329.600006F, -7.98799992F), new Vector2(-329.29599F, -7.66800022F), new Vector2(-329.088013F, -7.26000023F)); + builder.AddCubicBezier(new Vector2(-328.880005F, -6.85200024F), new Vector2(-328.776001F, -6.38399982F), new Vector2(-328.776001F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-328.776001F, -5.03999996F), new Vector2(-329.011993F, -4.37599993F), new Vector2(-329.484009F, -3.86400008F)); + builder.AddCubicBezier(new Vector2(-329.955994F, -3.352F), new Vector2(-330.584015F, -3.09599996F), new Vector2(-331.368011F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-331.864014F, -3.09599996F), new Vector2(-332.308014F, -3.21199989F), new Vector2(-332.700012F, -3.44400001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-329.988007F, -0.216000006F)); + builder.AddCubicBezier(new Vector2(-329.355988F, -0.519999981F), new Vector2(-328.843994F, -0.939999998F), new Vector2(-328.451996F, -1.47599995F)); + builder.AddCubicBezier(new Vector2(-328.059998F, -2.01200008F), new Vector2(-327.839996F, -2.62400007F), new Vector2(-327.791992F, -3.31200004F)); + builder.AddLine(new Vector2(-327.791992F, -8.35200024F)); + builder.AddCubicBezier(new Vector2(-327.839996F, -9.03999996F), new Vector2(-328.063995F, -9.65200043F), new Vector2(-328.463989F, -10.1879997F)); + builder.AddCubicBezier(new Vector2(-328.864014F, -10.724F), new Vector2(-329.380005F, -11.1440001F), new Vector2(-330.011993F, -11.448F)); + builder.AddCubicBezier(new Vector2(-330.644012F, -11.7519999F), new Vector2(-331.35199F, -11.9040003F), new Vector2(-332.135986F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-333.208008F, -11.9040003F), new Vector2(-334.164001F, -11.6440001F), new Vector2(-335.003998F, -11.1239996F)); + builder.AddCubicBezier(new Vector2(-335.843994F, -10.6040001F), new Vector2(-336.507996F, -9.88399982F), new Vector2(-336.996002F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-337.484009F, -8.04399967F), new Vector2(-337.727997F, -7F), new Vector2(-337.727997F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-337.727997F, -4.66400003F), new Vector2(-337.484009F, -3.62800002F), new Vector2(-336.996002F, -2.72399998F)); + builder.AddCubicBezier(new Vector2(-336.507996F, -1.82000005F), new Vector2(-335.839996F, -1.10000002F), new Vector2(-334.992004F, -0.56400001F)); + builder.AddCubicBezier(new Vector2(-334.144012F, -0.0280000009F), new Vector2(-333.191986F, 0.239999995F), new Vector2(-332.135986F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(-331.335999F, 0.239999995F), new Vector2(-330.619995F, 0.0879999995F), new Vector2(-329.988007F, -0.216000006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1689() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-339.600006F, 0F)); + builder.AddLine(new Vector2(-339.600006F, -17.4239998F)); + builder.AddLine(new Vector2(-343.29599F, -17.4239998F)); + builder.AddLine(new Vector2(-343.29599F, 0F)); + builder.AddLine(new Vector2(-339.600006F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1690() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-352.835999F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-353.227997F, -3.67600012F), new Vector2(-353.536011F, -4F), new Vector2(-353.76001F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-353.984009F, -4.83199978F), new Vector2(-354.096008F, -5.3039999F), new Vector2(-354.096008F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-354.096008F, -6.36000013F), new Vector2(-353.984009F, -6.83199978F), new Vector2(-353.76001F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-353.536011F, -7.66400003F), new Vector2(-353.227997F, -7.98799992F), new Vector2(-352.835999F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-352.444F, -8.45199966F), new Vector2(-351.992004F, -8.56799984F), new Vector2(-351.480011F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-350.967987F, -8.56799984F), new Vector2(-350.519989F, -8.45199966F), new Vector2(-350.135986F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-349.752014F, -7.98799992F), new Vector2(-349.444F, -7.66400003F), new Vector2(-349.212006F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-348.980011F, -6.83199978F), new Vector2(-348.864014F, -6.36000013F), new Vector2(-348.864014F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-348.864014F, -5.3039999F), new Vector2(-348.980011F, -4.83199978F), new Vector2(-349.212006F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-349.444F, -4F), new Vector2(-349.756012F, -3.67600012F), new Vector2(-350.14801F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-350.540009F, -3.21199989F), new Vector2(-350.992004F, -3.09599996F), new Vector2(-351.503998F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-352F, -3.09599996F), new Vector2(-352.444F, -3.21199989F), new Vector2(-352.835999F, -3.44400001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-353.928009F, 4.92000008F)); + builder.AddLine(new Vector2(-353.928009F, -3F)); + builder.AddLine(new Vector2(-354.480011F, -5.83199978F)); + builder.AddLine(new Vector2(-353.880005F, -8.68799973F)); + builder.AddLine(new Vector2(-353.880005F, -11.6639996F)); + builder.AddLine(new Vector2(-357.575989F, -11.6639996F)); + builder.AddLine(new Vector2(-357.575989F, 4.92000008F)); + builder.AddLine(new Vector2(-353.928009F, 4.92000008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-347.880005F, -0.56400001F)); + builder.AddCubicBezier(new Vector2(-347.015991F, -1.10000002F), new Vector2(-346.339996F, -1.82000005F), new Vector2(-345.85199F, -2.72399998F)); + builder.AddCubicBezier(new Vector2(-345.364014F, -3.62800002F), new Vector2(-345.119995F, -4.66400003F), new Vector2(-345.119995F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-345.119995F, -7F), new Vector2(-345.368011F, -8.03999996F), new Vector2(-345.864014F, -8.95199966F)); + builder.AddCubicBezier(new Vector2(-346.359985F, -9.86400032F), new Vector2(-347.036011F, -10.5839996F), new Vector2(-347.891998F, -11.1120005F)); + builder.AddCubicBezier(new Vector2(-348.747986F, -11.6400003F), new Vector2(-349.720001F, -11.9040003F), new Vector2(-350.808014F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-351.59201F, -11.9040003F), new Vector2(-352.312012F, -11.7440004F), new Vector2(-352.967987F, -11.4239998F)); + builder.AddCubicBezier(new Vector2(-353.623993F, -11.1040001F), new Vector2(-354.160004F, -10.6680002F), new Vector2(-354.575989F, -10.1160002F)); + builder.AddCubicBezier(new Vector2(-354.992004F, -9.56400013F), new Vector2(-355.231995F, -8.93599987F), new Vector2(-355.29599F, -8.23200035F)); + builder.AddLine(new Vector2(-355.29599F, -3.31200004F)); + builder.AddCubicBezier(new Vector2(-355.231995F, -2.62400007F), new Vector2(-354.996002F, -2.01200008F), new Vector2(-354.588013F, -1.47599995F)); + builder.AddCubicBezier(new Vector2(-354.179993F, -0.939999998F), new Vector2(-353.64801F, -0.519999981F), new Vector2(-352.992004F, -0.216000006F)); + builder.AddCubicBezier(new Vector2(-352.335999F, 0.0879999995F), new Vector2(-351.608002F, 0.239999995F), new Vector2(-350.808014F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(-349.720001F, 0.239999995F), new Vector2(-348.743988F, -0.0280000009F), new Vector2(-347.880005F, -0.56400001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1691() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-360.828003F, -0.708000004F)); + builder.AddCubicBezier(new Vector2(-359.971985F, -1.38800001F), new Vector2(-359.544006F, -2.296F), new Vector2(-359.544006F, -3.43199992F)); + builder.AddCubicBezier(new Vector2(-359.544006F, -4.16800022F), new Vector2(-359.679993F, -4.76399994F), new Vector2(-359.951996F, -5.21999979F)); + builder.AddCubicBezier(new Vector2(-360.223999F, -5.67600012F), new Vector2(-360.575989F, -6.04400015F), new Vector2(-361.007996F, -6.32399988F)); + builder.AddCubicBezier(new Vector2(-361.440002F, -6.60400009F), new Vector2(-361.895996F, -6.82000017F), new Vector2(-362.376007F, -6.97200012F)); + builder.AddCubicBezier(new Vector2(-362.855988F, -7.12400007F), new Vector2(-363.308014F, -7.25600004F), new Vector2(-363.731995F, -7.36800003F)); + builder.AddCubicBezier(new Vector2(-364.156006F, -7.48000002F), new Vector2(-364.507996F, -7.6079998F), new Vector2(-364.787994F, -7.75199986F)); + builder.AddCubicBezier(new Vector2(-365.067993F, -7.89599991F), new Vector2(-365.208008F, -8.0880003F), new Vector2(-365.208008F, -8.32800007F)); + builder.AddCubicBezier(new Vector2(-365.208008F, -8.53600025F), new Vector2(-365.104004F, -8.70400047F), new Vector2(-364.895996F, -8.83199978F)); + builder.AddCubicBezier(new Vector2(-364.687988F, -8.96000004F), new Vector2(-364.376007F, -9.02400017F), new Vector2(-363.959991F, -9.02400017F)); + builder.AddCubicBezier(new Vector2(-363.528015F, -9.02400017F), new Vector2(-363.084015F, -8.93200016F), new Vector2(-362.627991F, -8.74800014F)); + builder.AddCubicBezier(new Vector2(-362.171997F, -8.56400013F), new Vector2(-361.76001F, -8.25599957F), new Vector2(-361.391998F, -7.82399988F)); + builder.AddLine(new Vector2(-359.303986F, -9.96000004F)); + builder.AddCubicBezier(new Vector2(-359.81601F, -10.632F), new Vector2(-360.496002F, -11.1400003F), new Vector2(-361.343994F, -11.4840002F)); + builder.AddCubicBezier(new Vector2(-362.191986F, -11.8280001F), new Vector2(-363.104004F, -12F), new Vector2(-364.079987F, -12F)); + builder.AddCubicBezier(new Vector2(-365.056F, -12F), new Vector2(-365.895996F, -11.8400002F), new Vector2(-366.600006F, -11.5200005F)); + builder.AddCubicBezier(new Vector2(-367.303986F, -11.1999998F), new Vector2(-367.847992F, -10.7639999F), new Vector2(-368.231995F, -10.2119999F)); + builder.AddCubicBezier(new Vector2(-368.615997F, -9.65999985F), new Vector2(-368.808014F, -9.00800037F), new Vector2(-368.808014F, -8.25599957F)); + builder.AddCubicBezier(new Vector2(-368.808014F, -7.53599977F), new Vector2(-368.671997F, -6.95200014F), new Vector2(-368.399994F, -6.50400019F)); + builder.AddCubicBezier(new Vector2(-368.127991F, -6.05600023F), new Vector2(-367.776001F, -5.704F), new Vector2(-367.343994F, -5.44799995F)); + builder.AddCubicBezier(new Vector2(-366.911987F, -5.19199991F), new Vector2(-366.455994F, -4.98799992F), new Vector2(-365.976013F, -4.83599997F)); + builder.AddCubicBezier(new Vector2(-365.496002F, -4.68400002F), new Vector2(-365.036011F, -4.54799986F), new Vector2(-364.596008F, -4.42799997F)); + builder.AddCubicBezier(new Vector2(-364.156006F, -4.30800009F), new Vector2(-363.799988F, -4.17999983F), new Vector2(-363.528015F, -4.04400015F)); + builder.AddCubicBezier(new Vector2(-363.256012F, -3.90799999F), new Vector2(-363.119995F, -3.6960001F), new Vector2(-363.119995F, -3.40799999F)); + builder.AddCubicBezier(new Vector2(-363.119995F, -3.16799998F), new Vector2(-363.235992F, -2.98399997F), new Vector2(-363.467987F, -2.85599995F)); + builder.AddCubicBezier(new Vector2(-363.700012F, -2.72799993F), new Vector2(-364.015991F, -2.66400003F), new Vector2(-364.415985F, -2.66400003F)); + builder.AddCubicBezier(new Vector2(-365.056F, -2.66400003F), new Vector2(-365.635986F, -2.77999997F), new Vector2(-366.156006F, -3.01200008F)); + builder.AddCubicBezier(new Vector2(-366.675995F, -3.24399996F), new Vector2(-367.135986F, -3.56800008F), new Vector2(-367.536011F, -3.98399997F)); + builder.AddLine(new Vector2(-369.64801F, -1.87199998F)); + builder.AddCubicBezier(new Vector2(-369.231995F, -1.44000006F), new Vector2(-368.743988F, -1.05999994F), new Vector2(-368.18399F, -0.731999993F)); + builder.AddCubicBezier(new Vector2(-367.623993F, -0.404000014F), new Vector2(-367.007996F, -0.148000002F), new Vector2(-366.335999F, 0.0359999985F)); + builder.AddCubicBezier(new Vector2(-365.664001F, 0.219999999F), new Vector2(-364.984009F, 0.312000006F), new Vector2(-364.29599F, 0.312000006F)); + builder.AddCubicBezier(new Vector2(-362.839996F, 0.312000006F), new Vector2(-361.68399F, -0.0280000009F), new Vector2(-360.828003F, -0.708000004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1692() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-371.532013F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-371.171997F, -14.2480001F), new Vector2(-370.992004F, -14.7279997F), new Vector2(-370.992004F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-370.992004F, -15.8640003F), new Vector2(-371.171997F, -16.3439999F), new Vector2(-371.532013F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-371.891998F, -17.1119995F), new Vector2(-372.368011F, -17.3040009F), new Vector2(-372.959991F, -17.3040009F)); + builder.AddCubicBezier(new Vector2(-373.519989F, -17.3040009F), new Vector2(-373.992004F, -17.1119995F), new Vector2(-374.376007F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-374.76001F, -16.3439999F), new Vector2(-374.951996F, -15.8640003F), new Vector2(-374.951996F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-374.951996F, -14.7279997F), new Vector2(-374.76001F, -14.2480001F), new Vector2(-374.376007F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-373.992004F, -13.448F), new Vector2(-373.519989F, -13.2480001F), new Vector2(-372.959991F, -13.2480001F)); + builder.AddCubicBezier(new Vector2(-372.368011F, -13.2480001F), new Vector2(-371.891998F, -13.448F), new Vector2(-371.532013F, -13.8479996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-371.112F, 0F)); + builder.AddLine(new Vector2(-371.112F, -11.6639996F)); + builder.AddLine(new Vector2(-374.808014F, -11.6639996F)); + builder.AddLine(new Vector2(-374.808014F, 0F)); + builder.AddLine(new Vector2(-371.112F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1693() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-377.399994F, -17.4239998F)); + builder.AddLine(new Vector2(-381.096008F, -17.4239998F)); + builder.AddLine(new Vector2(-381.096008F, -8.80799961F)); + builder.AddLine(new Vector2(-380.471985F, -6F)); + builder.AddLine(new Vector2(-381.023987F, -3.14400005F)); + builder.AddLine(new Vector2(-381.023987F, 0F)); + builder.AddLine(new Vector2(-377.399994F, 0F)); + builder.AddLine(new Vector2(-377.399994F, -17.4239998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-384.81601F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-385.216003F, -3.67600012F), new Vector2(-385.523987F, -4F), new Vector2(-385.73999F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-385.955994F, -4.83199978F), new Vector2(-386.063995F, -5.3039999F), new Vector2(-386.063995F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-386.063995F, -6.36000013F), new Vector2(-385.947998F, -6.82800007F), new Vector2(-385.716003F, -7.23600006F)); + builder.AddCubicBezier(new Vector2(-385.484009F, -7.64400005F), new Vector2(-385.175995F, -7.96799994F), new Vector2(-384.791992F, -8.20800018F)); + builder.AddCubicBezier(new Vector2(-384.40799F, -8.44799995F), new Vector2(-383.959991F, -8.56799984F), new Vector2(-383.447998F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-382.936005F, -8.56799984F), new Vector2(-382.488007F, -8.45199966F), new Vector2(-382.104004F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-381.720001F, -7.98799992F), new Vector2(-381.420013F, -7.66800022F), new Vector2(-381.20401F, -7.26000023F)); + builder.AddCubicBezier(new Vector2(-380.988007F, -6.85200024F), new Vector2(-380.880005F, -6.38399982F), new Vector2(-380.880005F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-380.880005F, -5.3119998F), new Vector2(-380.988007F, -4.83199978F), new Vector2(-381.20401F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-381.420013F, -4F), new Vector2(-381.720001F, -3.67600012F), new Vector2(-382.104004F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-382.488007F, -3.21199989F), new Vector2(-382.944F, -3.09599996F), new Vector2(-383.471985F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-383.967987F, -3.09599996F), new Vector2(-384.415985F, -3.21199989F), new Vector2(-384.81601F, -3.44400001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-381.959991F, -0.252000004F)); + builder.AddCubicBezier(new Vector2(-381.303986F, -0.579999983F), new Vector2(-380.768005F, -1.01999998F), new Vector2(-380.35199F, -1.57200003F)); + builder.AddCubicBezier(new Vector2(-379.936005F, -2.12400007F), new Vector2(-379.696014F, -2.74399996F), new Vector2(-379.631989F, -3.43199992F)); + builder.AddLine(new Vector2(-379.631989F, -8.35200024F)); + builder.AddCubicBezier(new Vector2(-379.696014F, -9.05599976F), new Vector2(-379.936005F, -9.67599964F), new Vector2(-380.35199F, -10.2119999F)); + builder.AddCubicBezier(new Vector2(-380.768005F, -10.7480001F), new Vector2(-381.303986F, -11.1639996F), new Vector2(-381.959991F, -11.46F)); + builder.AddCubicBezier(new Vector2(-382.615997F, -11.7559996F), new Vector2(-383.335999F, -11.9040003F), new Vector2(-384.119995F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-385.223999F, -11.9040003F), new Vector2(-386.208008F, -11.6400003F), new Vector2(-387.071991F, -11.1120005F)); + builder.AddCubicBezier(new Vector2(-387.936005F, -10.5839996F), new Vector2(-388.608002F, -9.86400032F), new Vector2(-389.088013F, -8.95199966F)); + builder.AddCubicBezier(new Vector2(-389.567993F, -8.03999996F), new Vector2(-389.808014F, -7F), new Vector2(-389.808014F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-389.808014F, -4.66400003F), new Vector2(-389.567993F, -3.62400007F), new Vector2(-389.088013F, -2.71199989F)); + builder.AddCubicBezier(new Vector2(-388.608002F, -1.79999995F), new Vector2(-387.940002F, -1.08000004F), new Vector2(-387.084015F, -0.551999986F)); + builder.AddCubicBezier(new Vector2(-386.227997F, -0.0240000002F), new Vector2(-385.23999F, 0.239999995F), new Vector2(-384.119995F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(-383.335999F, 0.239999995F), new Vector2(-382.615997F, 0.0759999976F), new Vector2(-381.959991F, -0.252000004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1694() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-398.35199F, -0.228F)); + builder.AddCubicBezier(new Vector2(-397.536011F, -0.555999994F), new Vector2(-396.839996F, -1.06400001F), new Vector2(-396.264008F, -1.75199997F)); + builder.AddLine(new Vector2(-398.303986F, -3.76799989F)); + builder.AddCubicBezier(new Vector2(-398.656006F, -3.36800003F), new Vector2(-399.063995F, -3.06800008F), new Vector2(-399.528015F, -2.86800003F)); + builder.AddCubicBezier(new Vector2(-399.992004F, -2.66799998F), new Vector2(-400.503998F, -2.56800008F), new Vector2(-401.063995F, -2.56800008F)); + builder.AddCubicBezier(new Vector2(-401.687988F, -2.56800008F), new Vector2(-402.227997F, -2.70000005F), new Vector2(-402.68399F, -2.96399999F)); + builder.AddCubicBezier(new Vector2(-403.140015F, -3.22799993F), new Vector2(-403.492004F, -3.60800004F), new Vector2(-403.73999F, -4.10400009F)); + builder.AddCubicBezier(new Vector2(-403.988007F, -4.5999999F), new Vector2(-404.112F, -5.18400002F), new Vector2(-404.112F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-404.112F, -6.52799988F), new Vector2(-403.996002F, -7.10400009F), new Vector2(-403.764008F, -7.58400011F)); + builder.AddCubicBezier(new Vector2(-403.532013F, -8.06400013F), new Vector2(-403.20401F, -8.43999958F), new Vector2(-402.779999F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(-402.355988F, -8.98400021F), new Vector2(-401.855988F, -9.11999989F), new Vector2(-401.279999F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-400.752014F, -9.11999989F), new Vector2(-400.299988F, -9F), new Vector2(-399.924011F, -8.76000023F)); + builder.AddCubicBezier(new Vector2(-399.548004F, -8.52000046F), new Vector2(-399.264008F, -8.18000031F), new Vector2(-399.071991F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(-398.880005F, -7.30000019F), new Vector2(-398.776001F, -6.75199986F), new Vector2(-398.76001F, -6.09600019F)); + builder.AddLine(new Vector2(-397.175995F, -7.17600012F)); + builder.AddLine(new Vector2(-405.623993F, -7.12799978F)); + builder.AddLine(new Vector2(-405.623993F, -4.58400011F)); + builder.AddLine(new Vector2(-395.59201F, -4.63199997F)); + builder.AddCubicBezier(new Vector2(-395.511993F, -4.92000008F), new Vector2(-395.459991F, -5.17999983F), new Vector2(-395.436005F, -5.41200018F)); + builder.AddCubicBezier(new Vector2(-395.411987F, -5.64400005F), new Vector2(-395.399994F, -5.87200022F), new Vector2(-395.399994F, -6.09600019F)); + builder.AddCubicBezier(new Vector2(-395.399994F, -7.23199987F), new Vector2(-395.656006F, -8.23999977F), new Vector2(-396.167999F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-396.679993F, -10F), new Vector2(-397.376007F, -10.6879997F), new Vector2(-398.256012F, -11.184F)); + builder.AddCubicBezier(new Vector2(-399.135986F, -11.6800003F), new Vector2(-400.160004F, -11.9280005F), new Vector2(-401.328003F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-402.511993F, -11.9280005F), new Vector2(-403.575989F, -11.6639996F), new Vector2(-404.519989F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-405.463989F, -10.6079998F), new Vector2(-406.208008F, -9.88399982F), new Vector2(-406.752014F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-407.29599F, -8.04399967F), new Vector2(-407.567993F, -7.0079999F), new Vector2(-407.567993F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-407.567993F, -4.67199993F), new Vector2(-407.287994F, -3.61599994F), new Vector2(-406.727997F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(-406.167999F, -1.75999999F), new Vector2(-405.399994F, -1.03600001F), new Vector2(-404.424011F, -0.515999973F)); + builder.AddCubicBezier(new Vector2(-403.447998F, 0.00400000019F), new Vector2(-402.328003F, 0.263999999F), new Vector2(-401.063995F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-400.071991F, 0.263999999F), new Vector2(-399.167999F, 0.100000001F), new Vector2(-398.35199F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1695() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-416.364014F, -3.43199992F)); + builder.AddCubicBezier(new Vector2(-416.756012F, -3.6559999F), new Vector2(-417.063995F, -3.98000002F), new Vector2(-417.287994F, -4.40399981F)); + builder.AddCubicBezier(new Vector2(-417.511993F, -4.82800007F), new Vector2(-417.623993F, -5.3119998F), new Vector2(-417.623993F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-417.623993F, -6.36800003F), new Vector2(-417.515991F, -6.83199978F), new Vector2(-417.299988F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-417.084015F, -7.66400003F), new Vector2(-416.776001F, -7.98799992F), new Vector2(-416.376007F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-415.976013F, -8.45199966F), new Vector2(-415.519989F, -8.56799984F), new Vector2(-415.007996F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-414.511993F, -8.56799984F), new Vector2(-414.067993F, -8.45199966F), new Vector2(-413.675995F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-413.283997F, -7.98799992F), new Vector2(-412.971985F, -7.66400003F), new Vector2(-412.73999F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-412.507996F, -6.83199978F), new Vector2(-412.391998F, -6.36000013F), new Vector2(-412.391998F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-412.391998F, -5.3039999F), new Vector2(-412.507996F, -4.83199978F), new Vector2(-412.73999F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-412.971985F, -4F), new Vector2(-413.283997F, -3.67600012F), new Vector2(-413.675995F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-414.067993F, -3.21199989F), new Vector2(-414.511993F, -3.09599996F), new Vector2(-415.007996F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-415.519989F, -3.09599996F), new Vector2(-415.971985F, -3.20799994F), new Vector2(-416.364014F, -3.43199992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-417.455994F, 0F)); + builder.AddLine(new Vector2(-417.455994F, -3.14400005F)); + builder.AddLine(new Vector2(-418.007996F, -6F)); + builder.AddLine(new Vector2(-417.40799F, -8.80799961F)); + builder.AddLine(new Vector2(-417.40799F, -17.4239998F)); + builder.AddLine(new Vector2(-421.104004F, -17.4239998F)); + builder.AddLine(new Vector2(-421.104004F, 0F)); + builder.AddLine(new Vector2(-417.455994F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-411.40799F, -0.56400001F)); + builder.AddCubicBezier(new Vector2(-410.544006F, -1.10000002F), new Vector2(-409.868011F, -1.82000005F), new Vector2(-409.380005F, -2.72399998F)); + builder.AddCubicBezier(new Vector2(-408.891998F, -3.62800002F), new Vector2(-408.64801F, -4.66400003F), new Vector2(-408.64801F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-408.64801F, -7F), new Vector2(-408.895996F, -8.03999996F), new Vector2(-409.391998F, -8.95199966F)); + builder.AddCubicBezier(new Vector2(-409.888F, -9.86400032F), new Vector2(-410.563995F, -10.5839996F), new Vector2(-411.420013F, -11.1120005F)); + builder.AddCubicBezier(new Vector2(-412.276001F, -11.6400003F), new Vector2(-413.247986F, -11.9040003F), new Vector2(-414.335999F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-415.119995F, -11.9040003F), new Vector2(-415.839996F, -11.7559996F), new Vector2(-416.496002F, -11.46F)); + builder.AddCubicBezier(new Vector2(-417.152008F, -11.1639996F), new Vector2(-417.687988F, -10.7480001F), new Vector2(-418.104004F, -10.2119999F)); + builder.AddCubicBezier(new Vector2(-418.519989F, -9.67599964F), new Vector2(-418.76001F, -9.05599976F), new Vector2(-418.824005F, -8.35200024F)); + builder.AddLine(new Vector2(-418.824005F, -3.43199992F)); + builder.AddCubicBezier(new Vector2(-418.76001F, -2.74399996F), new Vector2(-418.523987F, -2.12400007F), new Vector2(-418.115997F, -1.57200003F)); + builder.AddCubicBezier(new Vector2(-417.708008F, -1.01999998F), new Vector2(-417.175995F, -0.579999983F), new Vector2(-416.519989F, -0.252000004F)); + builder.AddCubicBezier(new Vector2(-415.864014F, 0.0759999976F), new Vector2(-415.135986F, 0.239999995F), new Vector2(-414.335999F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(-413.247986F, 0.239999995F), new Vector2(-412.272003F, -0.0280000009F), new Vector2(-411.40799F, -0.56400001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1696() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-432.084015F, -8.07600021F)); + builder.AddCubicBezier(new Vector2(-431.723999F, -8.45199966F), new Vector2(-431.231995F, -8.64000034F), new Vector2(-430.608002F, -8.64000034F)); + builder.AddCubicBezier(new Vector2(-430.303986F, -8.64000034F), new Vector2(-430.032013F, -8.59200001F), new Vector2(-429.791992F, -8.49600029F)); + builder.AddCubicBezier(new Vector2(-429.552002F, -8.39999962F), new Vector2(-429.359985F, -8.27200031F), new Vector2(-429.216003F, -8.11200047F)); + builder.AddLine(new Vector2(-427.032013F, -10.8959999F)); + builder.AddCubicBezier(new Vector2(-427.35199F, -11.2320004F), new Vector2(-427.723999F, -11.4840002F), new Vector2(-428.14801F, -11.6520004F)); + builder.AddCubicBezier(new Vector2(-428.571991F, -11.8199997F), new Vector2(-429.063995F, -11.9040003F), new Vector2(-429.623993F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-430.888F, -11.9040003F), new Vector2(-431.884003F, -11.5279999F), new Vector2(-432.612F, -10.776F)); + builder.AddCubicBezier(new Vector2(-433.339996F, -10.0240002F), new Vector2(-433.855988F, -8.96000004F), new Vector2(-434.160004F, -7.58400011F)); + builder.AddLine(new Vector2(-432.623993F, -6.38399982F)); + builder.AddCubicBezier(new Vector2(-432.623993F, -7.13600016F), new Vector2(-432.444F, -7.69999981F), new Vector2(-432.084015F, -8.07600021F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-432.623993F, 0F)); + builder.AddLine(new Vector2(-432.623993F, -11.6639996F)); + builder.AddLine(new Vector2(-436.320007F, -11.6639996F)); + builder.AddLine(new Vector2(-436.320007F, 0F)); + builder.AddLine(new Vector2(-432.623993F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1697() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-441F, -0.228F)); + builder.AddCubicBezier(new Vector2(-440.18399F, -0.555999994F), new Vector2(-439.488007F, -1.06400001F), new Vector2(-438.911987F, -1.75199997F)); + builder.AddLine(new Vector2(-440.951996F, -3.76799989F)); + builder.AddCubicBezier(new Vector2(-441.303986F, -3.36800003F), new Vector2(-441.712006F, -3.06800008F), new Vector2(-442.175995F, -2.86800003F)); + builder.AddCubicBezier(new Vector2(-442.640015F, -2.66799998F), new Vector2(-443.152008F, -2.56800008F), new Vector2(-443.712006F, -2.56800008F)); + builder.AddCubicBezier(new Vector2(-444.335999F, -2.56800008F), new Vector2(-444.876007F, -2.70000005F), new Vector2(-445.332001F, -2.96399999F)); + builder.AddCubicBezier(new Vector2(-445.787994F, -3.22799993F), new Vector2(-446.140015F, -3.60800004F), new Vector2(-446.388F, -4.10400009F)); + builder.AddCubicBezier(new Vector2(-446.635986F, -4.5999999F), new Vector2(-446.76001F, -5.18400002F), new Vector2(-446.76001F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-446.76001F, -6.52799988F), new Vector2(-446.644012F, -7.10400009F), new Vector2(-446.411987F, -7.58400011F)); + builder.AddCubicBezier(new Vector2(-446.179993F, -8.06400013F), new Vector2(-445.85199F, -8.43999958F), new Vector2(-445.428009F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(-445.003998F, -8.98400021F), new Vector2(-444.503998F, -9.11999989F), new Vector2(-443.928009F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-443.399994F, -9.11999989F), new Vector2(-442.947998F, -9F), new Vector2(-442.571991F, -8.76000023F)); + builder.AddCubicBezier(new Vector2(-442.196014F, -8.52000046F), new Vector2(-441.911987F, -8.18000031F), new Vector2(-441.720001F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(-441.528015F, -7.30000019F), new Vector2(-441.424011F, -6.75199986F), new Vector2(-441.40799F, -6.09600019F)); + builder.AddLine(new Vector2(-439.824005F, -7.17600012F)); + builder.AddLine(new Vector2(-448.272003F, -7.12799978F)); + builder.AddLine(new Vector2(-448.272003F, -4.58400011F)); + builder.AddLine(new Vector2(-438.23999F, -4.63199997F)); + builder.AddCubicBezier(new Vector2(-438.160004F, -4.92000008F), new Vector2(-438.108002F, -5.17999983F), new Vector2(-438.084015F, -5.41200018F)); + builder.AddCubicBezier(new Vector2(-438.059998F, -5.64400005F), new Vector2(-438.048004F, -5.87200022F), new Vector2(-438.048004F, -6.09600019F)); + builder.AddCubicBezier(new Vector2(-438.048004F, -7.23199987F), new Vector2(-438.303986F, -8.23999977F), new Vector2(-438.81601F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-439.328003F, -10F), new Vector2(-440.023987F, -10.6879997F), new Vector2(-440.903992F, -11.184F)); + builder.AddCubicBezier(new Vector2(-441.783997F, -11.6800003F), new Vector2(-442.808014F, -11.9280005F), new Vector2(-443.976013F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-445.160004F, -11.9280005F), new Vector2(-446.223999F, -11.6639996F), new Vector2(-447.167999F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-448.112F, -10.6079998F), new Vector2(-448.855988F, -9.88399982F), new Vector2(-449.399994F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-449.944F, -8.04399967F), new Vector2(-450.216003F, -7.0079999F), new Vector2(-450.216003F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-450.216003F, -4.67199993F), new Vector2(-449.936005F, -3.61599994F), new Vector2(-449.376007F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(-448.81601F, -1.75999999F), new Vector2(-448.048004F, -1.03600001F), new Vector2(-447.071991F, -0.515999973F)); + builder.AddCubicBezier(new Vector2(-446.096008F, 0.00400000019F), new Vector2(-444.976013F, 0.263999999F), new Vector2(-443.712006F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-442.720001F, 0.263999999F), new Vector2(-441.81601F, 0.100000001F), new Vector2(-441F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1698() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-455.399994F, 0F)); + builder.AddLine(new Vector2(-450.432007F, -11.6639996F)); + builder.AddLine(new Vector2(-454.343994F, -11.6639996F)); + builder.AddLine(new Vector2(-457.727997F, -1.96800005F)); + builder.AddLine(new Vector2(-455.976013F, -1.96800005F)); + builder.AddLine(new Vector2(-459.335999F, -11.6639996F)); + builder.AddLine(new Vector2(-463.320007F, -11.6639996F)); + builder.AddLine(new Vector2(-458.376007F, 0F)); + builder.AddLine(new Vector2(-455.399994F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1699() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-466.536011F, -0.228F)); + builder.AddCubicBezier(new Vector2(-465.720001F, -0.555999994F), new Vector2(-465.023987F, -1.06400001F), new Vector2(-464.447998F, -1.75199997F)); + builder.AddLine(new Vector2(-466.488007F, -3.76799989F)); + builder.AddCubicBezier(new Vector2(-466.839996F, -3.36800003F), new Vector2(-467.247986F, -3.06800008F), new Vector2(-467.712006F, -2.86800003F)); + builder.AddCubicBezier(new Vector2(-468.175995F, -2.66799998F), new Vector2(-468.687988F, -2.56800008F), new Vector2(-469.247986F, -2.56800008F)); + builder.AddCubicBezier(new Vector2(-469.872009F, -2.56800008F), new Vector2(-470.411987F, -2.70000005F), new Vector2(-470.868011F, -2.96399999F)); + builder.AddCubicBezier(new Vector2(-471.324005F, -3.22799993F), new Vector2(-471.675995F, -3.60800004F), new Vector2(-471.924011F, -4.10400009F)); + builder.AddCubicBezier(new Vector2(-472.171997F, -4.5999999F), new Vector2(-472.29599F, -5.18400002F), new Vector2(-472.29599F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-472.29599F, -6.52799988F), new Vector2(-472.179993F, -7.10400009F), new Vector2(-471.947998F, -7.58400011F)); + builder.AddCubicBezier(new Vector2(-471.716003F, -8.06400013F), new Vector2(-471.388F, -8.43999958F), new Vector2(-470.963989F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(-470.540009F, -8.98400021F), new Vector2(-470.040009F, -9.11999989F), new Vector2(-469.463989F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-468.936005F, -9.11999989F), new Vector2(-468.484009F, -9F), new Vector2(-468.108002F, -8.76000023F)); + builder.AddCubicBezier(new Vector2(-467.731995F, -8.52000046F), new Vector2(-467.447998F, -8.18000031F), new Vector2(-467.256012F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(-467.063995F, -7.30000019F), new Vector2(-466.959991F, -6.75199986F), new Vector2(-466.944F, -6.09600019F)); + builder.AddLine(new Vector2(-465.359985F, -7.17600012F)); + builder.AddLine(new Vector2(-473.808014F, -7.12799978F)); + builder.AddLine(new Vector2(-473.808014F, -4.58400011F)); + builder.AddLine(new Vector2(-463.776001F, -4.63199997F)); + builder.AddCubicBezier(new Vector2(-463.696014F, -4.92000008F), new Vector2(-463.644012F, -5.17999983F), new Vector2(-463.619995F, -5.41200018F)); + builder.AddCubicBezier(new Vector2(-463.596008F, -5.64400005F), new Vector2(-463.584015F, -5.87200022F), new Vector2(-463.584015F, -6.09600019F)); + builder.AddCubicBezier(new Vector2(-463.584015F, -7.23199987F), new Vector2(-463.839996F, -8.23999977F), new Vector2(-464.35199F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-464.864014F, -10F), new Vector2(-465.559998F, -10.6879997F), new Vector2(-466.440002F, -11.184F)); + builder.AddCubicBezier(new Vector2(-467.320007F, -11.6800003F), new Vector2(-468.343994F, -11.9280005F), new Vector2(-469.511993F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-470.696014F, -11.9280005F), new Vector2(-471.76001F, -11.6639996F), new Vector2(-472.70401F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-473.64801F, -10.6079998F), new Vector2(-474.391998F, -9.88399982F), new Vector2(-474.936005F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-475.480011F, -8.04399967F), new Vector2(-475.752014F, -7.0079999F), new Vector2(-475.752014F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-475.752014F, -4.67199993F), new Vector2(-475.471985F, -3.61599994F), new Vector2(-474.911987F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(-474.35199F, -1.75999999F), new Vector2(-473.584015F, -1.03600001F), new Vector2(-472.608002F, -0.515999973F)); + builder.AddCubicBezier(new Vector2(-471.631989F, 0.00400000019F), new Vector2(-470.511993F, 0.263999999F), new Vector2(-469.247986F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-468.256012F, 0.263999999F), new Vector2(-467.35199F, 0.100000001F), new Vector2(-466.536011F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1700() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-485.040009F, 0F)); + builder.AddLine(new Vector2(-485.040009F, -11.6639996F)); + builder.AddLine(new Vector2(-488.735992F, -11.6639996F)); + builder.AddLine(new Vector2(-488.735992F, 0F)); + builder.AddLine(new Vector2(-485.040009F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-477.312012F, 0F)); + builder.AddLine(new Vector2(-477.312012F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-477.312012F, -8.26399994F), new Vector2(-477.503998F, -9.00399971F), new Vector2(-477.888F, -9.68400002F)); + builder.AddCubicBezier(new Vector2(-478.272003F, -10.3640003F), new Vector2(-478.799988F, -10.9040003F), new Vector2(-479.471985F, -11.3039999F)); + builder.AddCubicBezier(new Vector2(-480.144012F, -11.7040005F), new Vector2(-480.903992F, -11.9040003F), new Vector2(-481.752014F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-482.64801F, -11.9040003F), new Vector2(-483.451996F, -11.7159996F), new Vector2(-484.164001F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-484.876007F, -10.9639997F), new Vector2(-485.436005F, -10.4320002F), new Vector2(-485.843994F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-486.252014F, -9.05599976F), new Vector2(-486.455994F, -8.25599957F), new Vector2(-486.455994F, -7.34399986F)); + builder.AddLine(new Vector2(-485.040009F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(-485.040009F, -7.04799986F), new Vector2(-484.951996F, -7.4000001F), new Vector2(-484.776001F, -7.704F)); + builder.AddCubicBezier(new Vector2(-484.600006F, -8.00800037F), new Vector2(-484.359985F, -8.24400043F), new Vector2(-484.056F, -8.4119997F)); + builder.AddCubicBezier(new Vector2(-483.752014F, -8.57999992F), new Vector2(-483.40799F, -8.66399956F), new Vector2(-483.023987F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-482.447998F, -8.66399956F), new Vector2(-481.967987F, -8.47599983F), new Vector2(-481.584015F, -8.10000038F)); + builder.AddCubicBezier(new Vector2(-481.200012F, -7.72399998F), new Vector2(-481.007996F, -7.23999977F), new Vector2(-481.007996F, -6.64799976F)); + builder.AddLine(new Vector2(-481.007996F, 0F)); + builder.AddLine(new Vector2(-477.312012F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1701() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-495.888F, 0F)); + builder.AddLine(new Vector2(-495.888F, -17.4239998F)); + builder.AddLine(new Vector2(-499.584015F, -17.4239998F)); + builder.AddLine(new Vector2(-499.584015F, 0F)); + builder.AddLine(new Vector2(-495.888F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1702() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-502.175995F, 0F)); + builder.AddLine(new Vector2(-502.175995F, -17.4239998F)); + builder.AddLine(new Vector2(-505.872009F, -17.4239998F)); + builder.AddLine(new Vector2(-505.872009F, 0F)); + builder.AddLine(new Vector2(-502.175995F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1703() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-508.835999F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-508.476013F, -14.2480001F), new Vector2(-508.29599F, -14.7279997F), new Vector2(-508.29599F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-508.29599F, -15.8640003F), new Vector2(-508.476013F, -16.3439999F), new Vector2(-508.835999F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-509.196014F, -17.1119995F), new Vector2(-509.671997F, -17.3040009F), new Vector2(-510.264008F, -17.3040009F)); + builder.AddCubicBezier(new Vector2(-510.824005F, -17.3040009F), new Vector2(-511.29599F, -17.1119995F), new Vector2(-511.679993F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-512.064026F, -16.3439999F), new Vector2(-512.255981F, -15.8640003F), new Vector2(-512.255981F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-512.255981F, -14.7279997F), new Vector2(-512.064026F, -14.2480001F), new Vector2(-511.679993F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-511.29599F, -13.448F), new Vector2(-510.824005F, -13.2480001F), new Vector2(-510.264008F, -13.2480001F)); + builder.AddCubicBezier(new Vector2(-509.671997F, -13.2480001F), new Vector2(-509.196014F, -13.448F), new Vector2(-508.835999F, -13.8479996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-508.415985F, 0F)); + builder.AddLine(new Vector2(-508.415985F, -11.6639996F)); + builder.AddLine(new Vector2(-512.112F, -11.6639996F)); + builder.AddLine(new Vector2(-512.112F, 0F)); + builder.AddLine(new Vector2(-508.415985F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1704() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-524.903992F, 0F)); + builder.AddLine(new Vector2(-522.16803F, -8.06400013F)); + builder.AddLine(new Vector2(-523.080017F, -8.06400013F)); + builder.AddLine(new Vector2(-520.392029F, 0F)); + builder.AddLine(new Vector2(-517.367981F, 0F)); + builder.AddLine(new Vector2(-513.312012F, -11.6639996F)); + builder.AddLine(new Vector2(-516.935974F, -11.6639996F)); + builder.AddLine(new Vector2(-519.47998F, -3.19199991F)); + builder.AddLine(new Vector2(-518.375977F, -3.16799998F)); + builder.AddLine(new Vector2(-521.135986F, -11.6639996F)); + builder.AddLine(new Vector2(-524.159973F, -11.6639996F)); + builder.AddLine(new Vector2(-526.895996F, -3.16799998F)); + builder.AddLine(new Vector2(-525.815979F, -3.19199991F)); + builder.AddLine(new Vector2(-528.335999F, -11.6639996F)); + builder.AddLine(new Vector2(-531.960022F, -11.6639996F)); + builder.AddLine(new Vector2(-527.927979F, 0F)); + builder.AddLine(new Vector2(-524.903992F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1705() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-537.911987F, -17.4239998F)); + builder.AddLine(new Vector2(-541.607971F, -17.4239998F)); + builder.AddLine(new Vector2(-541.607971F, -8.80799961F)); + builder.AddLine(new Vector2(-540.984009F, -6F)); + builder.AddLine(new Vector2(-541.536011F, -3.14400005F)); + builder.AddLine(new Vector2(-541.536011F, 0F)); + builder.AddLine(new Vector2(-537.911987F, 0F)); + builder.AddLine(new Vector2(-537.911987F, -17.4239998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-545.328003F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-545.728027F, -3.67600012F), new Vector2(-546.036011F, -4F), new Vector2(-546.252014F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-546.468018F, -4.83199978F), new Vector2(-546.575989F, -5.3039999F), new Vector2(-546.575989F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-546.575989F, -6.36000013F), new Vector2(-546.460022F, -6.82800007F), new Vector2(-546.228027F, -7.23600006F)); + builder.AddCubicBezier(new Vector2(-545.995972F, -7.64400005F), new Vector2(-545.687988F, -7.96799994F), new Vector2(-545.304016F, -8.20800018F)); + builder.AddCubicBezier(new Vector2(-544.919983F, -8.44799995F), new Vector2(-544.471985F, -8.56799984F), new Vector2(-543.960022F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-543.447998F, -8.56799984F), new Vector2(-543F, -8.45199966F), new Vector2(-542.616028F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-542.231995F, -7.98799992F), new Vector2(-541.932007F, -7.66800022F), new Vector2(-541.716003F, -7.26000023F)); + builder.AddCubicBezier(new Vector2(-541.5F, -6.85200024F), new Vector2(-541.392029F, -6.38399982F), new Vector2(-541.392029F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-541.392029F, -5.3119998F), new Vector2(-541.5F, -4.83199978F), new Vector2(-541.716003F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-541.932007F, -4F), new Vector2(-542.231995F, -3.67600012F), new Vector2(-542.616028F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-543F, -3.21199989F), new Vector2(-543.455994F, -3.09599996F), new Vector2(-543.984009F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-544.47998F, -3.09599996F), new Vector2(-544.927979F, -3.21199989F), new Vector2(-545.328003F, -3.44400001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-542.471985F, -0.252000004F)); + builder.AddCubicBezier(new Vector2(-541.815979F, -0.579999983F), new Vector2(-541.280029F, -1.01999998F), new Vector2(-540.864014F, -1.57200003F)); + builder.AddCubicBezier(new Vector2(-540.447998F, -2.12400007F), new Vector2(-540.208008F, -2.74399996F), new Vector2(-540.143982F, -3.43199992F)); + builder.AddLine(new Vector2(-540.143982F, -8.35200024F)); + builder.AddCubicBezier(new Vector2(-540.208008F, -9.05599976F), new Vector2(-540.447998F, -9.67599964F), new Vector2(-540.864014F, -10.2119999F)); + builder.AddCubicBezier(new Vector2(-541.280029F, -10.7480001F), new Vector2(-541.815979F, -11.1639996F), new Vector2(-542.471985F, -11.46F)); + builder.AddCubicBezier(new Vector2(-543.127991F, -11.7559996F), new Vector2(-543.848022F, -11.9040003F), new Vector2(-544.632019F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-545.736023F, -11.9040003F), new Vector2(-546.719971F, -11.6400003F), new Vector2(-547.583984F, -11.1120005F)); + builder.AddCubicBezier(new Vector2(-548.447998F, -10.5839996F), new Vector2(-549.119995F, -9.86400032F), new Vector2(-549.599976F, -8.95199966F)); + builder.AddCubicBezier(new Vector2(-550.080017F, -8.03999996F), new Vector2(-550.320007F, -7F), new Vector2(-550.320007F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-550.320007F, -4.66400003F), new Vector2(-550.080017F, -3.62400007F), new Vector2(-549.599976F, -2.71199989F)); + builder.AddCubicBezier(new Vector2(-549.119995F, -1.79999995F), new Vector2(-548.452026F, -1.08000004F), new Vector2(-547.596008F, -0.551999986F)); + builder.AddCubicBezier(new Vector2(-546.73999F, -0.0240000002F), new Vector2(-545.752014F, 0.239999995F), new Vector2(-544.632019F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(-543.848022F, 0.239999995F), new Vector2(-543.127991F, 0.0759999976F), new Vector2(-542.471985F, -0.252000004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1706() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-559.656006F, 0F)); + builder.AddLine(new Vector2(-559.656006F, -11.6639996F)); + builder.AddLine(new Vector2(-563.35199F, -11.6639996F)); + builder.AddLine(new Vector2(-563.35199F, 0F)); + builder.AddLine(new Vector2(-559.656006F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-551.927979F, 0F)); + builder.AddLine(new Vector2(-551.927979F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-551.927979F, -8.26399994F), new Vector2(-552.119995F, -9.00399971F), new Vector2(-552.504028F, -9.68400002F)); + builder.AddCubicBezier(new Vector2(-552.888F, -10.3640003F), new Vector2(-553.416016F, -10.9040003F), new Vector2(-554.088013F, -11.3039999F)); + builder.AddCubicBezier(new Vector2(-554.76001F, -11.7040005F), new Vector2(-555.52002F, -11.9040003F), new Vector2(-556.367981F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-557.263977F, -11.9040003F), new Vector2(-558.067993F, -11.7159996F), new Vector2(-558.780029F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-559.492004F, -10.9639997F), new Vector2(-560.052002F, -10.4320002F), new Vector2(-560.460022F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-560.867981F, -9.05599976F), new Vector2(-561.072021F, -8.25599957F), new Vector2(-561.072021F, -7.34399986F)); + builder.AddLine(new Vector2(-559.656006F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(-559.656006F, -7.04799986F), new Vector2(-559.567993F, -7.4000001F), new Vector2(-559.392029F, -7.704F)); + builder.AddCubicBezier(new Vector2(-559.216003F, -8.00800037F), new Vector2(-558.976013F, -8.24400043F), new Vector2(-558.671997F, -8.4119997F)); + builder.AddCubicBezier(new Vector2(-558.367981F, -8.57999992F), new Vector2(-558.023987F, -8.66399956F), new Vector2(-557.640015F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-557.064026F, -8.66399956F), new Vector2(-556.583984F, -8.47599983F), new Vector2(-556.200012F, -8.10000038F)); + builder.AddCubicBezier(new Vector2(-555.815979F, -7.72399998F), new Vector2(-555.624023F, -7.23999977F), new Vector2(-555.624023F, -6.64799976F)); + builder.AddLine(new Vector2(-555.624023F, 0F)); + builder.AddLine(new Vector2(-551.927979F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1707() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-565.919983F, 0F)); + builder.AddLine(new Vector2(-565.919983F, -11.6639996F)); + builder.AddLine(new Vector2(-569.544006F, -11.6639996F)); + builder.AddLine(new Vector2(-569.544006F, -8.80799961F)); + builder.AddLine(new Vector2(-568.992004F, -6F)); + builder.AddLine(new Vector2(-569.544006F, -3.14400005F)); + builder.AddLine(new Vector2(-569.544006F, 0F)); + builder.AddLine(new Vector2(-565.919983F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-573.323975F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-573.716003F, -3.67600012F), new Vector2(-574.028015F, -4F), new Vector2(-574.26001F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-574.492004F, -4.83199978F), new Vector2(-574.607971F, -5.3039999F), new Vector2(-574.607971F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-574.607971F, -6.36000013F), new Vector2(-574.492004F, -6.83199978F), new Vector2(-574.26001F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-574.028015F, -7.66400003F), new Vector2(-573.716003F, -7.98799992F), new Vector2(-573.323975F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-572.932007F, -8.45199966F), new Vector2(-572.487976F, -8.56799984F), new Vector2(-571.992004F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-571.47998F, -8.56799984F), new Vector2(-571.023987F, -8.45199966F), new Vector2(-570.624023F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-570.223999F, -7.98799992F), new Vector2(-569.919983F, -7.66800022F), new Vector2(-569.711975F, -7.26000023F)); + builder.AddCubicBezier(new Vector2(-569.504028F, -6.85200024F), new Vector2(-569.400024F, -6.38399982F), new Vector2(-569.400024F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-569.400024F, -5.03999996F), new Vector2(-569.635986F, -4.37599993F), new Vector2(-570.107971F, -3.86400008F)); + builder.AddCubicBezier(new Vector2(-570.580017F, -3.352F), new Vector2(-571.208008F, -3.09599996F), new Vector2(-571.992004F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-572.487976F, -3.09599996F), new Vector2(-572.932007F, -3.21199989F), new Vector2(-573.323975F, -3.44400001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-570.612F, -0.216000006F)); + builder.AddCubicBezier(new Vector2(-569.97998F, -0.519999981F), new Vector2(-569.468018F, -0.939999998F), new Vector2(-569.075989F, -1.47599995F)); + builder.AddCubicBezier(new Vector2(-568.684021F, -2.01200008F), new Vector2(-568.463989F, -2.62400007F), new Vector2(-568.416016F, -3.31200004F)); + builder.AddLine(new Vector2(-568.416016F, -8.35200024F)); + builder.AddCubicBezier(new Vector2(-568.463989F, -9.03999996F), new Vector2(-568.687988F, -9.65200043F), new Vector2(-569.088013F, -10.1879997F)); + builder.AddCubicBezier(new Vector2(-569.487976F, -10.724F), new Vector2(-570.004028F, -11.1440001F), new Vector2(-570.635986F, -11.448F)); + builder.AddCubicBezier(new Vector2(-571.268005F, -11.7519999F), new Vector2(-571.976013F, -11.9040003F), new Vector2(-572.76001F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-573.83197F, -11.9040003F), new Vector2(-574.788025F, -11.6440001F), new Vector2(-575.627991F, -11.1239996F)); + builder.AddCubicBezier(new Vector2(-576.468018F, -10.6040001F), new Vector2(-577.132019F, -9.88399982F), new Vector2(-577.619995F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-578.107971F, -8.04399967F), new Vector2(-578.35199F, -7F), new Vector2(-578.35199F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-578.35199F, -4.66400003F), new Vector2(-578.107971F, -3.62800002F), new Vector2(-577.619995F, -2.72399998F)); + builder.AddCubicBezier(new Vector2(-577.132019F, -1.82000005F), new Vector2(-576.463989F, -1.10000002F), new Vector2(-575.616028F, -0.56400001F)); + builder.AddCubicBezier(new Vector2(-574.768005F, -0.0280000009F), new Vector2(-573.815979F, 0.239999995F), new Vector2(-572.76001F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(-571.960022F, 0.239999995F), new Vector2(-571.244019F, 0.0879999995F), new Vector2(-570.612F, -0.216000006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1708() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-583.776001F, -8.52000046F)); + builder.AddLine(new Vector2(-583.776001F, -11.6639996F)); + builder.AddLine(new Vector2(-592.728027F, -11.6639996F)); + builder.AddLine(new Vector2(-592.728027F, -8.52000046F)); + builder.AddLine(new Vector2(-583.776001F, -8.52000046F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-586.416016F, 0F)); + builder.AddLine(new Vector2(-586.416016F, -16.4880009F)); + builder.AddLine(new Vector2(-590.112F, -16.4880009F)); + builder.AddLine(new Vector2(-590.112F, 0F)); + builder.AddLine(new Vector2(-586.416016F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1709() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-601.656006F, 0F)); + builder.AddLine(new Vector2(-601.656006F, -11.6639996F)); + builder.AddLine(new Vector2(-605.35199F, -11.6639996F)); + builder.AddLine(new Vector2(-605.35199F, 0F)); + builder.AddLine(new Vector2(-601.656006F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-593.927979F, 0F)); + builder.AddLine(new Vector2(-593.927979F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-593.927979F, -8.26399994F), new Vector2(-594.119995F, -9.00399971F), new Vector2(-594.504028F, -9.68400002F)); + builder.AddCubicBezier(new Vector2(-594.888F, -10.3640003F), new Vector2(-595.416016F, -10.9040003F), new Vector2(-596.088013F, -11.3039999F)); + builder.AddCubicBezier(new Vector2(-596.76001F, -11.7040005F), new Vector2(-597.52002F, -11.9040003F), new Vector2(-598.367981F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-599.263977F, -11.9040003F), new Vector2(-600.067993F, -11.7159996F), new Vector2(-600.780029F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-601.492004F, -10.9639997F), new Vector2(-602.052002F, -10.4320002F), new Vector2(-602.460022F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-602.867981F, -9.05599976F), new Vector2(-603.072021F, -8.25599957F), new Vector2(-603.072021F, -7.34399986F)); + builder.AddLine(new Vector2(-601.656006F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(-601.656006F, -7.04799986F), new Vector2(-601.567993F, -7.4000001F), new Vector2(-601.392029F, -7.704F)); + builder.AddCubicBezier(new Vector2(-601.216003F, -8.00800037F), new Vector2(-600.976013F, -8.24400043F), new Vector2(-600.671997F, -8.4119997F)); + builder.AddCubicBezier(new Vector2(-600.367981F, -8.57999992F), new Vector2(-600.023987F, -8.66399956F), new Vector2(-599.640015F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-599.064026F, -8.66399956F), new Vector2(-598.583984F, -8.47599983F), new Vector2(-598.200012F, -8.10000038F)); + builder.AddCubicBezier(new Vector2(-597.815979F, -7.72399998F), new Vector2(-597.624023F, -7.23999977F), new Vector2(-597.624023F, -6.64799976F)); + builder.AddLine(new Vector2(-597.624023F, 0F)); + builder.AddLine(new Vector2(-593.927979F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1710() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-610.031982F, -0.228F)); + builder.AddCubicBezier(new Vector2(-609.216003F, -0.555999994F), new Vector2(-608.52002F, -1.06400001F), new Vector2(-607.94397F, -1.75199997F)); + builder.AddLine(new Vector2(-609.984009F, -3.76799989F)); + builder.AddCubicBezier(new Vector2(-610.335999F, -3.36800003F), new Vector2(-610.744019F, -3.06800008F), new Vector2(-611.208008F, -2.86800003F)); + builder.AddCubicBezier(new Vector2(-611.671997F, -2.66799998F), new Vector2(-612.184021F, -2.56800008F), new Vector2(-612.744019F, -2.56800008F)); + builder.AddCubicBezier(new Vector2(-613.367981F, -2.56800008F), new Vector2(-613.90802F, -2.70000005F), new Vector2(-614.364014F, -2.96399999F)); + builder.AddCubicBezier(new Vector2(-614.820007F, -3.22799993F), new Vector2(-615.171997F, -3.60800004F), new Vector2(-615.419983F, -4.10400009F)); + builder.AddCubicBezier(new Vector2(-615.66803F, -4.5999999F), new Vector2(-615.791992F, -5.18400002F), new Vector2(-615.791992F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-615.791992F, -6.52799988F), new Vector2(-615.676025F, -7.10400009F), new Vector2(-615.44397F, -7.58400011F)); + builder.AddCubicBezier(new Vector2(-615.211975F, -8.06400013F), new Vector2(-614.883972F, -8.43999958F), new Vector2(-614.460022F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(-614.036011F, -8.98400021F), new Vector2(-613.536011F, -9.11999989F), new Vector2(-612.960022F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-612.432007F, -9.11999989F), new Vector2(-611.97998F, -9F), new Vector2(-611.604004F, -8.76000023F)); + builder.AddCubicBezier(new Vector2(-611.228027F, -8.52000046F), new Vector2(-610.94397F, -8.18000031F), new Vector2(-610.752014F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(-610.559998F, -7.30000019F), new Vector2(-610.455994F, -6.75199986F), new Vector2(-610.440002F, -6.09600019F)); + builder.AddLine(new Vector2(-608.856018F, -7.17600012F)); + builder.AddLine(new Vector2(-617.304016F, -7.12799978F)); + builder.AddLine(new Vector2(-617.304016F, -4.58400011F)); + builder.AddLine(new Vector2(-607.271973F, -4.63199997F)); + builder.AddCubicBezier(new Vector2(-607.192017F, -4.92000008F), new Vector2(-607.140015F, -5.17999983F), new Vector2(-607.116028F, -5.41200018F)); + builder.AddCubicBezier(new Vector2(-607.09198F, -5.64400005F), new Vector2(-607.080017F, -5.87200022F), new Vector2(-607.080017F, -6.09600019F)); + builder.AddCubicBezier(new Vector2(-607.080017F, -7.23199987F), new Vector2(-607.335999F, -8.23999977F), new Vector2(-607.848022F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-608.359985F, -10F), new Vector2(-609.05603F, -10.6879997F), new Vector2(-609.935974F, -11.184F)); + builder.AddCubicBezier(new Vector2(-610.815979F, -11.6800003F), new Vector2(-611.840027F, -11.9280005F), new Vector2(-613.007996F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-614.192017F, -11.9280005F), new Vector2(-615.255981F, -11.6639996F), new Vector2(-616.200012F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-617.143982F, -10.6079998F), new Vector2(-617.888F, -9.88399982F), new Vector2(-618.432007F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-618.976013F, -8.04399967F), new Vector2(-619.247986F, -7.0079999F), new Vector2(-619.247986F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-619.247986F, -4.67199993F), new Vector2(-618.968018F, -3.61599994F), new Vector2(-618.40802F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(-617.848022F, -1.75999999F), new Vector2(-617.080017F, -1.03600001F), new Vector2(-616.104004F, -0.515999973F)); + builder.AddCubicBezier(new Vector2(-615.127991F, 0.00400000019F), new Vector2(-614.007996F, 0.263999999F), new Vector2(-612.744019F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-611.752014F, 0.263999999F), new Vector2(-610.848022F, 0.100000001F), new Vector2(-610.031982F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1711() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-620.83197F, 0F)); + builder.AddLine(new Vector2(-620.83197F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-620.83197F, -8.22399998F), new Vector2(-621.031982F, -9.05599976F), new Vector2(-621.432007F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-621.83197F, -10.4320002F), new Vector2(-622.383972F, -10.9639997F), new Vector2(-623.088013F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-623.791992F, -11.7159996F), new Vector2(-624.583984F, -11.9040003F), new Vector2(-625.463989F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-626.375977F, -11.9040003F), new Vector2(-627.200012F, -11.7119999F), new Vector2(-627.935974F, -11.3280001F)); + builder.AddCubicBezier(new Vector2(-628.671997F, -10.9440002F), new Vector2(-629.255981F, -10.3920002F), new Vector2(-629.687988F, -9.67199993F)); + builder.AddCubicBezier(new Vector2(-630.119995F, -8.95199966F), new Vector2(-630.359985F, -8.09599972F), new Vector2(-630.40802F, -7.10400009F)); + builder.AddLine(new Vector2(-628.271973F, -6.81599998F)); + builder.AddCubicBezier(new Vector2(-628.271973F, -7.19999981F), new Vector2(-628.192017F, -7.52799988F), new Vector2(-628.031982F, -7.80000019F)); + builder.AddCubicBezier(new Vector2(-627.872009F, -8.07199955F), new Vector2(-627.643982F, -8.2840004F), new Vector2(-627.348022F, -8.43599987F)); + builder.AddCubicBezier(new Vector2(-627.052002F, -8.5880003F), new Vector2(-626.728027F, -8.66399956F), new Vector2(-626.375977F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-625.864014F, -8.66399956F), new Vector2(-625.427979F, -8.5F), new Vector2(-625.067993F, -8.17199993F)); + builder.AddCubicBezier(new Vector2(-624.708008F, -7.84399986F), new Vector2(-624.528015F, -7.3920002F), new Vector2(-624.528015F, -6.81599998F)); + builder.AddLine(new Vector2(-624.528015F, 0F)); + builder.AddLine(new Vector2(-620.83197F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-628.271973F, 0F)); + builder.AddLine(new Vector2(-628.271973F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-628.271973F, -8.3760004F), new Vector2(-628.468018F, -9.15999985F), new Vector2(-628.859985F, -9.81599998F)); + builder.AddCubicBezier(new Vector2(-629.252014F, -10.4720001F), new Vector2(-629.771973F, -10.9840002F), new Vector2(-630.419983F, -11.3520002F)); + builder.AddCubicBezier(new Vector2(-631.067993F, -11.7200003F), new Vector2(-631.791992F, -11.9040003F), new Vector2(-632.59198F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-633.471985F, -11.9040003F), new Vector2(-634.252014F, -11.724F), new Vector2(-634.932007F, -11.3640003F)); + builder.AddCubicBezier(new Vector2(-635.612F, -11.0039997F), new Vector2(-636.156006F, -10.4919996F), new Vector2(-636.564026F, -9.82800007F)); + builder.AddCubicBezier(new Vector2(-636.971985F, -9.16399956F), new Vector2(-637.176025F, -8.3760004F), new Vector2(-637.176025F, -7.46400023F)); + builder.AddLine(new Vector2(-635.76001F, -6.81599998F)); + builder.AddCubicBezier(new Vector2(-635.76001F, -7.19999981F), new Vector2(-635.676025F, -7.52799988F), new Vector2(-635.507996F, -7.80000019F)); + builder.AddCubicBezier(new Vector2(-635.340027F, -8.07199955F), new Vector2(-635.112F, -8.2840004F), new Vector2(-634.823975F, -8.43599987F)); + builder.AddCubicBezier(new Vector2(-634.536011F, -8.5880003F), new Vector2(-634.208008F, -8.66399956F), new Vector2(-633.840027F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-633.312012F, -8.66399956F), new Vector2(-632.867981F, -8.5F), new Vector2(-632.507996F, -8.17199993F)); + builder.AddCubicBezier(new Vector2(-632.14801F, -7.84399986F), new Vector2(-631.968018F, -7.3920002F), new Vector2(-631.968018F, -6.81599998F)); + builder.AddLine(new Vector2(-631.968018F, 0F)); + builder.AddLine(new Vector2(-628.271973F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-635.76001F, 0F)); + builder.AddLine(new Vector2(-635.76001F, -11.6639996F)); + builder.AddLine(new Vector2(-639.455994F, -11.6639996F)); + builder.AddLine(new Vector2(-639.455994F, 0F)); + builder.AddLine(new Vector2(-635.76001F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1712() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-644.135986F, -0.228F)); + builder.AddCubicBezier(new Vector2(-643.320007F, -0.555999994F), new Vector2(-642.624023F, -1.06400001F), new Vector2(-642.047974F, -1.75199997F)); + builder.AddLine(new Vector2(-644.088013F, -3.76799989F)); + builder.AddCubicBezier(new Vector2(-644.440002F, -3.36800003F), new Vector2(-644.848022F, -3.06800008F), new Vector2(-645.312012F, -2.86800003F)); + builder.AddCubicBezier(new Vector2(-645.776001F, -2.66799998F), new Vector2(-646.288025F, -2.56800008F), new Vector2(-646.848022F, -2.56800008F)); + builder.AddCubicBezier(new Vector2(-647.471985F, -2.56800008F), new Vector2(-648.012024F, -2.70000005F), new Vector2(-648.468018F, -2.96399999F)); + builder.AddCubicBezier(new Vector2(-648.924011F, -3.22799993F), new Vector2(-649.276001F, -3.60800004F), new Vector2(-649.523987F, -4.10400009F)); + builder.AddCubicBezier(new Vector2(-649.771973F, -4.5999999F), new Vector2(-649.895996F, -5.18400002F), new Vector2(-649.895996F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-649.895996F, -6.52799988F), new Vector2(-649.780029F, -7.10400009F), new Vector2(-649.547974F, -7.58400011F)); + builder.AddCubicBezier(new Vector2(-649.315979F, -8.06400013F), new Vector2(-648.987976F, -8.43999958F), new Vector2(-648.564026F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(-648.140015F, -8.98400021F), new Vector2(-647.640015F, -9.11999989F), new Vector2(-647.064026F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-646.536011F, -9.11999989F), new Vector2(-646.083984F, -9F), new Vector2(-645.708008F, -8.76000023F)); + builder.AddCubicBezier(new Vector2(-645.33197F, -8.52000046F), new Vector2(-645.047974F, -8.18000031F), new Vector2(-644.856018F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(-644.664001F, -7.30000019F), new Vector2(-644.559998F, -6.75199986F), new Vector2(-644.544006F, -6.09600019F)); + builder.AddLine(new Vector2(-642.960022F, -7.17600012F)); + builder.AddLine(new Vector2(-651.40802F, -7.12799978F)); + builder.AddLine(new Vector2(-651.40802F, -4.58400011F)); + builder.AddLine(new Vector2(-641.375977F, -4.63199997F)); + builder.AddCubicBezier(new Vector2(-641.296021F, -4.92000008F), new Vector2(-641.244019F, -5.17999983F), new Vector2(-641.219971F, -5.41200018F)); + builder.AddCubicBezier(new Vector2(-641.195984F, -5.64400005F), new Vector2(-641.184021F, -5.87200022F), new Vector2(-641.184021F, -6.09600019F)); + builder.AddCubicBezier(new Vector2(-641.184021F, -7.23199987F), new Vector2(-641.440002F, -8.23999977F), new Vector2(-641.952026F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-642.463989F, -10F), new Vector2(-643.159973F, -10.6879997F), new Vector2(-644.039978F, -11.184F)); + builder.AddCubicBezier(new Vector2(-644.919983F, -11.6800003F), new Vector2(-645.94397F, -11.9280005F), new Vector2(-647.112F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-648.296021F, -11.9280005F), new Vector2(-649.359985F, -11.6639996F), new Vector2(-650.304016F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-651.247986F, -10.6079998F), new Vector2(-651.992004F, -9.88399982F), new Vector2(-652.536011F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-653.080017F, -8.04399967F), new Vector2(-653.35199F, -7.0079999F), new Vector2(-653.35199F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-653.35199F, -4.67199993F), new Vector2(-653.072021F, -3.61599994F), new Vector2(-652.512024F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(-651.952026F, -1.75999999F), new Vector2(-651.184021F, -1.03600001F), new Vector2(-650.208008F, -0.515999973F)); + builder.AddCubicBezier(new Vector2(-649.231995F, 0.00400000019F), new Vector2(-648.112F, 0.263999999F), new Vector2(-646.848022F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-645.856018F, 0.263999999F), new Vector2(-644.952026F, 0.100000001F), new Vector2(-644.135986F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1713() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-655.97998F, -0.228F)); + builder.AddCubicBezier(new Vector2(-655.219971F, -0.555999994F), new Vector2(-654.528015F, -1.03999996F), new Vector2(-653.903992F, -1.67999995F)); + builder.AddLine(new Vector2(-656.280029F, -4.03200006F)); + builder.AddCubicBezier(new Vector2(-656.552002F, -3.72799993F), new Vector2(-656.875977F, -3.49600005F), new Vector2(-657.252014F, -3.33599997F)); + builder.AddCubicBezier(new Vector2(-657.627991F, -3.17600012F), new Vector2(-658.05603F, -3.09599996F), new Vector2(-658.536011F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-659.031982F, -3.09599996F), new Vector2(-659.487976F, -3.21199989F), new Vector2(-659.903992F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-660.320007F, -3.67600012F), new Vector2(-660.643982F, -4F), new Vector2(-660.875977F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-661.107971F, -4.83199978F), new Vector2(-661.223999F, -5.3119998F), new Vector2(-661.223999F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-661.223999F, -6.38399982F), new Vector2(-661.107971F, -6.85200024F), new Vector2(-660.875977F, -7.26000023F)); + builder.AddCubicBezier(new Vector2(-660.643982F, -7.66800022F), new Vector2(-660.323975F, -7.98799992F), new Vector2(-659.916016F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-659.507996F, -8.45199966F), new Vector2(-659.047974F, -8.56799984F), new Vector2(-658.536011F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-658.072021F, -8.56799984F), new Vector2(-657.659973F, -8.49600029F), new Vector2(-657.299988F, -8.35200024F)); + builder.AddCubicBezier(new Vector2(-656.940002F, -8.20800018F), new Vector2(-656.624023F, -7.98400021F), new Vector2(-656.35199F, -7.67999983F)); + builder.AddLine(new Vector2(-653.976013F, -10.0799999F)); + builder.AddCubicBezier(new Vector2(-654.567993F, -10.6879997F), new Vector2(-655.244019F, -11.1479998F), new Vector2(-656.004028F, -11.46F)); + builder.AddCubicBezier(new Vector2(-656.763977F, -11.7720003F), new Vector2(-657.607971F, -11.9280005F), new Vector2(-658.536011F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-659.752014F, -11.9280005F), new Vector2(-660.848022F, -11.6639996F), new Vector2(-661.823975F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-662.799988F, -10.6079998F), new Vector2(-663.567993F, -9.88399982F), new Vector2(-664.127991F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-664.687988F, -8.04399967F), new Vector2(-664.968018F, -7F), new Vector2(-664.968018F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-664.968018F, -4.67999983F), new Vector2(-664.692017F, -3.6400001F), new Vector2(-664.140015F, -2.71199989F)); + builder.AddCubicBezier(new Vector2(-663.588013F, -1.78400004F), new Vector2(-662.823975F, -1.05599999F), new Vector2(-661.848022F, -0.527999997F)); + builder.AddCubicBezier(new Vector2(-660.872009F, 0F), new Vector2(-659.776001F, 0.263999999F), new Vector2(-658.559998F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-657.599976F, 0.263999999F), new Vector2(-656.73999F, 0.100000001F), new Vector2(-655.97998F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1714() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-674.255981F, 0F)); + builder.AddLine(new Vector2(-674.255981F, -11.6639996F)); + builder.AddLine(new Vector2(-677.952026F, -11.6639996F)); + builder.AddLine(new Vector2(-677.952026F, 0F)); + builder.AddLine(new Vector2(-674.255981F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-666.528015F, 0F)); + builder.AddLine(new Vector2(-666.528015F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-666.528015F, -8.26399994F), new Vector2(-666.719971F, -9.00399971F), new Vector2(-667.104004F, -9.68400002F)); + builder.AddCubicBezier(new Vector2(-667.487976F, -10.3640003F), new Vector2(-668.015991F, -10.9040003F), new Vector2(-668.687988F, -11.3039999F)); + builder.AddCubicBezier(new Vector2(-669.359985F, -11.7040005F), new Vector2(-670.119995F, -11.9040003F), new Vector2(-670.968018F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-671.864014F, -11.9040003F), new Vector2(-672.66803F, -11.7159996F), new Vector2(-673.380005F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-674.09198F, -10.9639997F), new Vector2(-674.651978F, -10.4320002F), new Vector2(-675.059998F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-675.468018F, -9.05599976F), new Vector2(-675.671997F, -8.25599957F), new Vector2(-675.671997F, -7.34399986F)); + builder.AddLine(new Vector2(-674.255981F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(-674.255981F, -7.04799986F), new Vector2(-674.16803F, -7.4000001F), new Vector2(-673.992004F, -7.704F)); + builder.AddCubicBezier(new Vector2(-673.815979F, -8.00800037F), new Vector2(-673.575989F, -8.24400043F), new Vector2(-673.271973F, -8.4119997F)); + builder.AddCubicBezier(new Vector2(-672.968018F, -8.57999992F), new Vector2(-672.624023F, -8.66399956F), new Vector2(-672.23999F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-671.664001F, -8.66399956F), new Vector2(-671.184021F, -8.47599983F), new Vector2(-670.799988F, -8.10000038F)); + builder.AddCubicBezier(new Vector2(-670.416016F, -7.72399998F), new Vector2(-670.223999F, -7.23999977F), new Vector2(-670.223999F, -6.64799976F)); + builder.AddLine(new Vector2(-670.223999F, 0F)); + builder.AddLine(new Vector2(-666.528015F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1715() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-682.848022F, -0.395999998F)); + builder.AddCubicBezier(new Vector2(-682.031982F, -0.836000025F), new Vector2(-681.395996F, -1.44400001F), new Vector2(-680.940002F, -2.22000003F)); + builder.AddCubicBezier(new Vector2(-680.484009F, -2.99600005F), new Vector2(-680.255981F, -3.89599991F), new Vector2(-680.255981F, -4.92000008F)); + builder.AddLine(new Vector2(-680.255981F, -11.6639996F)); + builder.AddLine(new Vector2(-683.952026F, -11.6639996F)); + builder.AddLine(new Vector2(-683.952026F, -4.96799994F)); + builder.AddCubicBezier(new Vector2(-683.952026F, -4.36000013F), new Vector2(-684.107971F, -3.88000011F), new Vector2(-684.419983F, -3.52800012F)); + builder.AddCubicBezier(new Vector2(-684.731995F, -3.17600012F), new Vector2(-685.159973F, -3F), new Vector2(-685.703979F, -3F)); + builder.AddCubicBezier(new Vector2(-686.072021F, -3F), new Vector2(-686.392029F, -3.07999992F), new Vector2(-686.664001F, -3.24000001F)); + builder.AddCubicBezier(new Vector2(-686.935974F, -3.4000001F), new Vector2(-687.143982F, -3.62800002F), new Vector2(-687.288025F, -3.92400002F)); + builder.AddCubicBezier(new Vector2(-687.432007F, -4.21999979F), new Vector2(-687.504028F, -4.56799984F), new Vector2(-687.504028F, -4.96799994F)); + builder.AddLine(new Vector2(-687.504028F, -11.6639996F)); + builder.AddLine(new Vector2(-691.200012F, -11.6639996F)); + builder.AddLine(new Vector2(-691.200012F, -4.92000008F)); + builder.AddCubicBezier(new Vector2(-691.200012F, -3.91199994F), new Vector2(-690.968018F, -3.01999998F), new Vector2(-690.504028F, -2.24399996F)); + builder.AddCubicBezier(new Vector2(-690.039978F, -1.46800005F), new Vector2(-689.388F, -0.856000006F), new Vector2(-688.547974F, -0.407999992F)); + builder.AddCubicBezier(new Vector2(-687.708008F, 0.0399999991F), new Vector2(-686.76001F, 0.263999999F), new Vector2(-685.703979F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-684.616028F, 0.263999999F), new Vector2(-683.664001F, 0.0439999998F), new Vector2(-682.848022F, -0.395999998F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1716() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-700.463989F, -3.43199992F)); + builder.AddCubicBezier(new Vector2(-700.864014F, -3.6559999F), new Vector2(-701.176025F, -3.98000002F), new Vector2(-701.400024F, -4.40399981F)); + builder.AddCubicBezier(new Vector2(-701.624023F, -4.82800007F), new Vector2(-701.736023F, -5.3119998F), new Vector2(-701.736023F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-701.736023F, -6.36800003F), new Vector2(-701.624023F, -6.83199978F), new Vector2(-701.400024F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-701.176025F, -7.66400003F), new Vector2(-700.864014F, -7.98799992F), new Vector2(-700.463989F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-700.064026F, -8.45199966F), new Vector2(-699.607971F, -8.56799984F), new Vector2(-699.096008F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-698.583984F, -8.56799984F), new Vector2(-698.132019F, -8.45199966F), new Vector2(-697.73999F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-697.348022F, -7.98799992F), new Vector2(-697.039978F, -7.66800022F), new Vector2(-696.815979F, -7.26000023F)); + builder.AddCubicBezier(new Vector2(-696.59198F, -6.85200024F), new Vector2(-696.47998F, -6.38399982F), new Vector2(-696.47998F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-696.47998F, -5.3119998F), new Vector2(-696.588013F, -4.82800007F), new Vector2(-696.804016F, -4.40399981F)); + builder.AddCubicBezier(new Vector2(-697.02002F, -3.98000002F), new Vector2(-697.328003F, -3.6559999F), new Vector2(-697.728027F, -3.43199992F)); + builder.AddCubicBezier(new Vector2(-698.127991F, -3.20799994F), new Vector2(-698.583984F, -3.09599996F), new Vector2(-699.096008F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-699.607971F, -3.09599996F), new Vector2(-700.064026F, -3.20799994F), new Vector2(-700.463989F, -3.43199992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-695.83197F, -0.551999986F)); + builder.AddCubicBezier(new Vector2(-694.872009F, -1.09599996F), new Vector2(-694.112F, -1.82799995F), new Vector2(-693.552002F, -2.74799991F)); + builder.AddCubicBezier(new Vector2(-692.992004F, -3.66799998F), new Vector2(-692.711975F, -4.71199989F), new Vector2(-692.711975F, -5.88000011F)); + builder.AddCubicBezier(new Vector2(-692.711975F, -7.01599979F), new Vector2(-692.992004F, -8.04399967F), new Vector2(-693.552002F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-694.112F, -9.88399982F), new Vector2(-694.875977F, -10.6079998F), new Vector2(-695.843994F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-696.812012F, -11.6639996F), new Vector2(-697.895996F, -11.9280005F), new Vector2(-699.096008F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-700.328003F, -11.9280005F), new Vector2(-701.424011F, -11.6599998F), new Vector2(-702.383972F, -11.1239996F)); + builder.AddCubicBezier(new Vector2(-703.343994F, -10.5880003F), new Vector2(-704.099976F, -9.86400032F), new Vector2(-704.651978F, -8.95199966F)); + builder.AddCubicBezier(new Vector2(-705.203979F, -8.03999996F), new Vector2(-705.47998F, -7.01599979F), new Vector2(-705.47998F, -5.88000011F)); + builder.AddCubicBezier(new Vector2(-705.47998F, -4.72800016F), new Vector2(-705.200012F, -3.68799996F), new Vector2(-704.640015F, -2.75999999F)); + builder.AddCubicBezier(new Vector2(-704.080017F, -1.83200002F), new Vector2(-703.320007F, -1.09599996F), new Vector2(-702.359985F, -0.551999986F)); + builder.AddCubicBezier(new Vector2(-701.400024F, -0.00800000038F), new Vector2(-700.312012F, 0.263999999F), new Vector2(-699.096008F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-697.880005F, 0.263999999F), new Vector2(-696.791992F, -0.00800000038F), new Vector2(-695.83197F, -0.551999986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1717() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-714.768005F, 0F)); + builder.AddLine(new Vector2(-714.768005F, -11.6639996F)); + builder.AddLine(new Vector2(-718.463989F, -11.6639996F)); + builder.AddLine(new Vector2(-718.463989F, 0F)); + builder.AddLine(new Vector2(-714.768005F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-707.039978F, 0F)); + builder.AddLine(new Vector2(-707.039978F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-707.039978F, -8.26399994F), new Vector2(-707.231995F, -9.00399971F), new Vector2(-707.616028F, -9.68400002F)); + builder.AddCubicBezier(new Vector2(-708F, -10.3640003F), new Vector2(-708.528015F, -10.9040003F), new Vector2(-709.200012F, -11.3039999F)); + builder.AddCubicBezier(new Vector2(-709.872009F, -11.7040005F), new Vector2(-710.632019F, -11.9040003F), new Vector2(-711.47998F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-712.375977F, -11.9040003F), new Vector2(-713.179993F, -11.7159996F), new Vector2(-713.892029F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-714.604004F, -10.9639997F), new Vector2(-715.164001F, -10.4320002F), new Vector2(-715.572021F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-715.97998F, -9.05599976F), new Vector2(-716.184021F, -8.25599957F), new Vector2(-716.184021F, -7.34399986F)); + builder.AddLine(new Vector2(-714.768005F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(-714.768005F, -7.04799986F), new Vector2(-714.679993F, -7.4000001F), new Vector2(-714.504028F, -7.704F)); + builder.AddCubicBezier(new Vector2(-714.328003F, -8.00800037F), new Vector2(-714.088013F, -8.24400043F), new Vector2(-713.783997F, -8.4119997F)); + builder.AddCubicBezier(new Vector2(-713.47998F, -8.57999992F), new Vector2(-713.135986F, -8.66399956F), new Vector2(-712.752014F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-712.176025F, -8.66399956F), new Vector2(-711.695984F, -8.47599983F), new Vector2(-711.312012F, -8.10000038F)); + builder.AddCubicBezier(new Vector2(-710.927979F, -7.72399998F), new Vector2(-710.736023F, -7.23999977F), new Vector2(-710.736023F, -6.64799976F)); + builder.AddLine(new Vector2(-710.736023F, 0F)); + builder.AddLine(new Vector2(-707.039978F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1718() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-728.495972F, 0F)); + builder.AddLine(new Vector2(-728.495972F, -11.6639996F)); + builder.AddLine(new Vector2(-732.192017F, -11.6639996F)); + builder.AddLine(new Vector2(-732.192017F, 0F)); + builder.AddLine(new Vector2(-728.495972F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-720.768005F, 0F)); + builder.AddLine(new Vector2(-720.768005F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-720.768005F, -8.26399994F), new Vector2(-720.960022F, -9.00399971F), new Vector2(-721.343994F, -9.68400002F)); + builder.AddCubicBezier(new Vector2(-721.728027F, -10.3640003F), new Vector2(-722.255981F, -10.9040003F), new Vector2(-722.927979F, -11.3039999F)); + builder.AddCubicBezier(new Vector2(-723.599976F, -11.7040005F), new Vector2(-724.359985F, -11.9040003F), new Vector2(-725.208008F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-726.104004F, -11.9040003F), new Vector2(-726.90802F, -11.7159996F), new Vector2(-727.619995F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-728.33197F, -10.9639997F), new Vector2(-728.892029F, -10.4320002F), new Vector2(-729.299988F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-729.708008F, -9.05599976F), new Vector2(-729.911987F, -8.25599957F), new Vector2(-729.911987F, -7.34399986F)); + builder.AddLine(new Vector2(-728.495972F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(-728.495972F, -7.04799986F), new Vector2(-728.40802F, -7.4000001F), new Vector2(-728.231995F, -7.704F)); + builder.AddCubicBezier(new Vector2(-728.05603F, -8.00800037F), new Vector2(-727.815979F, -8.24400043F), new Vector2(-727.512024F, -8.4119997F)); + builder.AddCubicBezier(new Vector2(-727.208008F, -8.57999992F), new Vector2(-726.864014F, -8.66399956F), new Vector2(-726.47998F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-725.903992F, -8.66399956F), new Vector2(-725.424011F, -8.47599983F), new Vector2(-725.039978F, -8.10000038F)); + builder.AddCubicBezier(new Vector2(-724.656006F, -7.72399998F), new Vector2(-724.463989F, -7.23999977F), new Vector2(-724.463989F, -6.64799976F)); + builder.AddLine(new Vector2(-724.463989F, 0F)); + builder.AddLine(new Vector2(-720.768005F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1719() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-734.76001F, 0F)); + builder.AddLine(new Vector2(-734.76001F, -11.6639996F)); + builder.AddLine(new Vector2(-738.383972F, -11.6639996F)); + builder.AddLine(new Vector2(-738.383972F, -8.80799961F)); + builder.AddLine(new Vector2(-737.83197F, -6F)); + builder.AddLine(new Vector2(-738.383972F, -3.14400005F)); + builder.AddLine(new Vector2(-738.383972F, 0F)); + builder.AddLine(new Vector2(-734.76001F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-742.164001F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-742.55603F, -3.67600012F), new Vector2(-742.867981F, -4F), new Vector2(-743.099976F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-743.33197F, -4.83199978F), new Vector2(-743.447998F, -5.3039999F), new Vector2(-743.447998F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-743.447998F, -6.36000013F), new Vector2(-743.33197F, -6.83199978F), new Vector2(-743.099976F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-742.867981F, -7.66400003F), new Vector2(-742.55603F, -7.98799992F), new Vector2(-742.164001F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-741.771973F, -8.45199966F), new Vector2(-741.328003F, -8.56799984F), new Vector2(-740.83197F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-740.320007F, -8.56799984F), new Vector2(-739.864014F, -8.45199966F), new Vector2(-739.463989F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-739.064026F, -7.98799992F), new Vector2(-738.76001F, -7.66800022F), new Vector2(-738.552002F, -7.26000023F)); + builder.AddCubicBezier(new Vector2(-738.343994F, -6.85200024F), new Vector2(-738.23999F, -6.38399982F), new Vector2(-738.23999F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-738.23999F, -5.03999996F), new Vector2(-738.476013F, -4.37599993F), new Vector2(-738.947998F, -3.86400008F)); + builder.AddCubicBezier(new Vector2(-739.419983F, -3.352F), new Vector2(-740.047974F, -3.09599996F), new Vector2(-740.83197F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-741.328003F, -3.09599996F), new Vector2(-741.771973F, -3.21199989F), new Vector2(-742.164001F, -3.44400001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-739.452026F, -0.216000006F)); + builder.AddCubicBezier(new Vector2(-738.820007F, -0.519999981F), new Vector2(-738.307983F, -0.939999998F), new Vector2(-737.916016F, -1.47599995F)); + builder.AddCubicBezier(new Vector2(-737.523987F, -2.01200008F), new Vector2(-737.304016F, -2.62400007F), new Vector2(-737.255981F, -3.31200004F)); + builder.AddLine(new Vector2(-737.255981F, -8.35200024F)); + builder.AddCubicBezier(new Vector2(-737.304016F, -9.03999996F), new Vector2(-737.528015F, -9.65200043F), new Vector2(-737.927979F, -10.1879997F)); + builder.AddCubicBezier(new Vector2(-738.328003F, -10.724F), new Vector2(-738.843994F, -11.1440001F), new Vector2(-739.476013F, -11.448F)); + builder.AddCubicBezier(new Vector2(-740.107971F, -11.7519999F), new Vector2(-740.815979F, -11.9040003F), new Vector2(-741.599976F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-742.671997F, -11.9040003F), new Vector2(-743.627991F, -11.6440001F), new Vector2(-744.468018F, -11.1239996F)); + builder.AddCubicBezier(new Vector2(-745.307983F, -10.6040001F), new Vector2(-745.971985F, -9.88399982F), new Vector2(-746.460022F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-746.947998F, -8.04399967F), new Vector2(-747.192017F, -7F), new Vector2(-747.192017F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-747.192017F, -4.66400003F), new Vector2(-746.947998F, -3.62800002F), new Vector2(-746.460022F, -2.72399998F)); + builder.AddCubicBezier(new Vector2(-745.971985F, -1.82000005F), new Vector2(-745.304016F, -1.10000002F), new Vector2(-744.455994F, -0.56400001F)); + builder.AddCubicBezier(new Vector2(-743.607971F, -0.0280000009F), new Vector2(-742.656006F, 0.239999995F), new Vector2(-741.599976F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(-740.799988F, 0.239999995F), new Vector2(-740.083984F, 0.0879999995F), new Vector2(-739.452026F, -0.216000006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1720() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-755.711975F, -0.228F)); + builder.AddCubicBezier(new Vector2(-754.895996F, -0.555999994F), new Vector2(-754.200012F, -1.06400001F), new Vector2(-753.624023F, -1.75199997F)); + builder.AddLine(new Vector2(-755.664001F, -3.76799989F)); + builder.AddCubicBezier(new Vector2(-756.015991F, -3.36800003F), new Vector2(-756.424011F, -3.06800008F), new Vector2(-756.888F, -2.86800003F)); + builder.AddCubicBezier(new Vector2(-757.35199F, -2.66799998F), new Vector2(-757.864014F, -2.56800008F), new Vector2(-758.424011F, -2.56800008F)); + builder.AddCubicBezier(new Vector2(-759.047974F, -2.56800008F), new Vector2(-759.588013F, -2.70000005F), new Vector2(-760.044006F, -2.96399999F)); + builder.AddCubicBezier(new Vector2(-760.5F, -3.22799993F), new Vector2(-760.85199F, -3.60800004F), new Vector2(-761.099976F, -4.10400009F)); + builder.AddCubicBezier(new Vector2(-761.348022F, -4.5999999F), new Vector2(-761.471985F, -5.18400002F), new Vector2(-761.471985F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-761.471985F, -6.52799988F), new Vector2(-761.356018F, -7.10400009F), new Vector2(-761.124023F, -7.58400011F)); + builder.AddCubicBezier(new Vector2(-760.892029F, -8.06400013F), new Vector2(-760.564026F, -8.43999958F), new Vector2(-760.140015F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(-759.716003F, -8.98400021F), new Vector2(-759.216003F, -9.11999989F), new Vector2(-758.640015F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-758.112F, -9.11999989F), new Vector2(-757.659973F, -9F), new Vector2(-757.283997F, -8.76000023F)); + builder.AddCubicBezier(new Vector2(-756.90802F, -8.52000046F), new Vector2(-756.624023F, -8.18000031F), new Vector2(-756.432007F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(-756.23999F, -7.30000019F), new Vector2(-756.135986F, -6.75199986F), new Vector2(-756.119995F, -6.09600019F)); + builder.AddLine(new Vector2(-754.536011F, -7.17600012F)); + builder.AddLine(new Vector2(-762.984009F, -7.12799978F)); + builder.AddLine(new Vector2(-762.984009F, -4.58400011F)); + builder.AddLine(new Vector2(-752.952026F, -4.63199997F)); + builder.AddCubicBezier(new Vector2(-752.872009F, -4.92000008F), new Vector2(-752.820007F, -5.17999983F), new Vector2(-752.796021F, -5.41200018F)); + builder.AddCubicBezier(new Vector2(-752.771973F, -5.64400005F), new Vector2(-752.76001F, -5.87200022F), new Vector2(-752.76001F, -6.09600019F)); + builder.AddCubicBezier(new Vector2(-752.76001F, -7.23199987F), new Vector2(-753.015991F, -8.23999977F), new Vector2(-753.528015F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-754.039978F, -10F), new Vector2(-754.736023F, -10.6879997F), new Vector2(-755.616028F, -11.184F)); + builder.AddCubicBezier(new Vector2(-756.495972F, -11.6800003F), new Vector2(-757.52002F, -11.9280005F), new Vector2(-758.687988F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-759.872009F, -11.9280005F), new Vector2(-760.935974F, -11.6639996F), new Vector2(-761.880005F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-762.823975F, -10.6079998F), new Vector2(-763.567993F, -9.88399982F), new Vector2(-764.112F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-764.656006F, -8.04399967F), new Vector2(-764.927979F, -7.0079999F), new Vector2(-764.927979F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-764.927979F, -4.67199993F), new Vector2(-764.64801F, -3.61599994F), new Vector2(-764.088013F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(-763.528015F, -1.75999999F), new Vector2(-762.76001F, -1.03600001F), new Vector2(-761.783997F, -0.515999973F)); + builder.AddCubicBezier(new Vector2(-760.807983F, 0.00400000019F), new Vector2(-759.687988F, 0.263999999F), new Vector2(-758.424011F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-757.432007F, 0.263999999F), new Vector2(-756.528015F, 0.100000001F), new Vector2(-755.711975F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1721() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-766.512024F, 0F)); + builder.AddLine(new Vector2(-766.512024F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-766.512024F, -8.22399998F), new Vector2(-766.711975F, -9.05599976F), new Vector2(-767.112F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-767.512024F, -10.4320002F), new Vector2(-768.064026F, -10.9639997F), new Vector2(-768.768005F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-769.471985F, -11.7159996F), new Vector2(-770.263977F, -11.9040003F), new Vector2(-771.143982F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-772.05603F, -11.9040003F), new Vector2(-772.880005F, -11.7119999F), new Vector2(-773.616028F, -11.3280001F)); + builder.AddCubicBezier(new Vector2(-774.35199F, -10.9440002F), new Vector2(-774.935974F, -10.3920002F), new Vector2(-775.367981F, -9.67199993F)); + builder.AddCubicBezier(new Vector2(-775.799988F, -8.95199966F), new Vector2(-776.039978F, -8.09599972F), new Vector2(-776.088013F, -7.10400009F)); + builder.AddLine(new Vector2(-773.952026F, -6.81599998F)); + builder.AddCubicBezier(new Vector2(-773.952026F, -7.19999981F), new Vector2(-773.872009F, -7.52799988F), new Vector2(-773.711975F, -7.80000019F)); + builder.AddCubicBezier(new Vector2(-773.552002F, -8.07199955F), new Vector2(-773.323975F, -8.2840004F), new Vector2(-773.028015F, -8.43599987F)); + builder.AddCubicBezier(new Vector2(-772.731995F, -8.5880003F), new Vector2(-772.40802F, -8.66399956F), new Vector2(-772.05603F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-771.544006F, -8.66399956F), new Vector2(-771.107971F, -8.5F), new Vector2(-770.747986F, -8.17199993F)); + builder.AddCubicBezier(new Vector2(-770.388F, -7.84399986F), new Vector2(-770.208008F, -7.3920002F), new Vector2(-770.208008F, -6.81599998F)); + builder.AddLine(new Vector2(-770.208008F, 0F)); + builder.AddLine(new Vector2(-766.512024F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-773.952026F, 0F)); + builder.AddLine(new Vector2(-773.952026F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-773.952026F, -8.3760004F), new Vector2(-774.14801F, -9.15999985F), new Vector2(-774.539978F, -9.81599998F)); + builder.AddCubicBezier(new Vector2(-774.932007F, -10.4720001F), new Vector2(-775.452026F, -10.9840002F), new Vector2(-776.099976F, -11.3520002F)); + builder.AddCubicBezier(new Vector2(-776.747986F, -11.7200003F), new Vector2(-777.471985F, -11.9040003F), new Vector2(-778.271973F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-779.151978F, -11.9040003F), new Vector2(-779.932007F, -11.724F), new Vector2(-780.612F, -11.3640003F)); + builder.AddCubicBezier(new Vector2(-781.291992F, -11.0039997F), new Vector2(-781.835999F, -10.4919996F), new Vector2(-782.244019F, -9.82800007F)); + builder.AddCubicBezier(new Vector2(-782.651978F, -9.16399956F), new Vector2(-782.856018F, -8.3760004F), new Vector2(-782.856018F, -7.46400023F)); + builder.AddLine(new Vector2(-781.440002F, -6.81599998F)); + builder.AddCubicBezier(new Vector2(-781.440002F, -7.19999981F), new Vector2(-781.356018F, -7.52799988F), new Vector2(-781.187988F, -7.80000019F)); + builder.AddCubicBezier(new Vector2(-781.02002F, -8.07199955F), new Vector2(-780.791992F, -8.2840004F), new Vector2(-780.504028F, -8.43599987F)); + builder.AddCubicBezier(new Vector2(-780.216003F, -8.5880003F), new Vector2(-779.888F, -8.66399956F), new Vector2(-779.52002F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-778.992004F, -8.66399956F), new Vector2(-778.547974F, -8.5F), new Vector2(-778.187988F, -8.17199993F)); + builder.AddCubicBezier(new Vector2(-777.828003F, -7.84399986F), new Vector2(-777.64801F, -7.3920002F), new Vector2(-777.64801F, -6.81599998F)); + builder.AddLine(new Vector2(-777.64801F, 0F)); + builder.AddLine(new Vector2(-773.952026F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-781.440002F, 0F)); + builder.AddLine(new Vector2(-781.440002F, -11.6639996F)); + builder.AddLine(new Vector2(-785.135986F, -11.6639996F)); + builder.AddLine(new Vector2(-785.135986F, 0F)); + builder.AddLine(new Vector2(-781.440002F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1722() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-788.099976F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-787.73999F, -14.2480001F), new Vector2(-787.559998F, -14.7279997F), new Vector2(-787.559998F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-787.559998F, -15.8640003F), new Vector2(-787.73999F, -16.3439999F), new Vector2(-788.099976F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-788.460022F, -17.1119995F), new Vector2(-788.935974F, -17.3040009F), new Vector2(-789.528015F, -17.3040009F)); + builder.AddCubicBezier(new Vector2(-790.088013F, -17.3040009F), new Vector2(-790.559998F, -17.1119995F), new Vector2(-790.94397F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-791.328003F, -16.3439999F), new Vector2(-791.52002F, -15.8640003F), new Vector2(-791.52002F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-791.52002F, -14.7279997F), new Vector2(-791.328003F, -14.2480001F), new Vector2(-790.94397F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-790.559998F, -13.448F), new Vector2(-790.088013F, -13.2480001F), new Vector2(-789.528015F, -13.2480001F)); + builder.AddCubicBezier(new Vector2(-788.935974F, -13.2480001F), new Vector2(-788.460022F, -13.448F), new Vector2(-788.099976F, -13.8479996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-787.679993F, 0F)); + builder.AddLine(new Vector2(-787.679993F, -11.6639996F)); + builder.AddLine(new Vector2(-791.375977F, -11.6639996F)); + builder.AddLine(new Vector2(-791.375977F, 0F)); + builder.AddLine(new Vector2(-787.679993F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1723() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-792.984009F, -8.52000046F)); + builder.AddLine(new Vector2(-792.984009F, -11.6639996F)); + builder.AddLine(new Vector2(-801.935974F, -11.6639996F)); + builder.AddLine(new Vector2(-801.935974F, -8.52000046F)); + builder.AddLine(new Vector2(-792.984009F, -8.52000046F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-795.624023F, 0F)); + builder.AddLine(new Vector2(-795.624023F, -16.4880009F)); + builder.AddLine(new Vector2(-799.320007F, -16.4880009F)); + builder.AddLine(new Vector2(-799.320007F, 0F)); + builder.AddLine(new Vector2(-795.624023F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1724() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-803.231995F, -4.51200008F)); + builder.AddLine(new Vector2(-803.231995F, -7.72800016F)); + builder.AddLine(new Vector2(-811.776001F, -7.72800016F)); + builder.AddLine(new Vector2(-811.776001F, -4.51200008F)); + builder.AddLine(new Vector2(-803.231995F, -4.51200008F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1725() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-816.960022F, -0.228F)); + builder.AddCubicBezier(new Vector2(-816.143982F, -0.555999994F), new Vector2(-815.447998F, -1.06400001F), new Vector2(-814.872009F, -1.75199997F)); + builder.AddLine(new Vector2(-816.911987F, -3.76799989F)); + builder.AddCubicBezier(new Vector2(-817.263977F, -3.36800003F), new Vector2(-817.671997F, -3.06800008F), new Vector2(-818.135986F, -2.86800003F)); + builder.AddCubicBezier(new Vector2(-818.599976F, -2.66799998F), new Vector2(-819.112F, -2.56800008F), new Vector2(-819.671997F, -2.56800008F)); + builder.AddCubicBezier(new Vector2(-820.296021F, -2.56800008F), new Vector2(-820.835999F, -2.70000005F), new Vector2(-821.291992F, -2.96399999F)); + builder.AddCubicBezier(new Vector2(-821.747986F, -3.22799993F), new Vector2(-822.099976F, -3.60800004F), new Vector2(-822.348022F, -4.10400009F)); + builder.AddCubicBezier(new Vector2(-822.596008F, -4.5999999F), new Vector2(-822.719971F, -5.18400002F), new Vector2(-822.719971F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-822.719971F, -6.52799988F), new Vector2(-822.604004F, -7.10400009F), new Vector2(-822.372009F, -7.58400011F)); + builder.AddCubicBezier(new Vector2(-822.140015F, -8.06400013F), new Vector2(-821.812012F, -8.43999958F), new Vector2(-821.388F, -8.71199989F)); + builder.AddCubicBezier(new Vector2(-820.963989F, -8.98400021F), new Vector2(-820.463989F, -9.11999989F), new Vector2(-819.888F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-819.359985F, -9.11999989F), new Vector2(-818.90802F, -9F), new Vector2(-818.531982F, -8.76000023F)); + builder.AddCubicBezier(new Vector2(-818.156006F, -8.52000046F), new Vector2(-817.872009F, -8.18000031F), new Vector2(-817.679993F, -7.73999977F)); + builder.AddCubicBezier(new Vector2(-817.487976F, -7.30000019F), new Vector2(-817.383972F, -6.75199986F), new Vector2(-817.367981F, -6.09600019F)); + builder.AddLine(new Vector2(-815.783997F, -7.17600012F)); + builder.AddLine(new Vector2(-824.231995F, -7.12799978F)); + builder.AddLine(new Vector2(-824.231995F, -4.58400011F)); + builder.AddLine(new Vector2(-814.200012F, -4.63199997F)); + builder.AddCubicBezier(new Vector2(-814.119995F, -4.92000008F), new Vector2(-814.067993F, -5.17999983F), new Vector2(-814.044006F, -5.41200018F)); + builder.AddCubicBezier(new Vector2(-814.02002F, -5.64400005F), new Vector2(-814.007996F, -5.87200022F), new Vector2(-814.007996F, -6.09600019F)); + builder.AddCubicBezier(new Vector2(-814.007996F, -7.23199987F), new Vector2(-814.263977F, -8.23999977F), new Vector2(-814.776001F, -9.11999989F)); + builder.AddCubicBezier(new Vector2(-815.288025F, -10F), new Vector2(-815.984009F, -10.6879997F), new Vector2(-816.864014F, -11.184F)); + builder.AddCubicBezier(new Vector2(-817.744019F, -11.6800003F), new Vector2(-818.768005F, -11.9280005F), new Vector2(-819.935974F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-821.119995F, -11.9280005F), new Vector2(-822.184021F, -11.6639996F), new Vector2(-823.127991F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-824.072021F, -10.6079998F), new Vector2(-824.815979F, -9.88399982F), new Vector2(-825.359985F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-825.903992F, -8.04399967F), new Vector2(-826.176025F, -7.0079999F), new Vector2(-826.176025F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-826.176025F, -4.67199993F), new Vector2(-825.895996F, -3.61599994F), new Vector2(-825.335999F, -2.68799996F)); + builder.AddCubicBezier(new Vector2(-824.776001F, -1.75999999F), new Vector2(-824.007996F, -1.03600001F), new Vector2(-823.031982F, -0.515999973F)); + builder.AddCubicBezier(new Vector2(-822.05603F, 0.00400000019F), new Vector2(-820.935974F, 0.263999999F), new Vector2(-819.671997F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-818.679993F, 0.263999999F), new Vector2(-817.776001F, 0.100000001F), new Vector2(-816.960022F, -0.228F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1726() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-835.463989F, 0F)); + builder.AddLine(new Vector2(-835.463989F, -11.6639996F)); + builder.AddLine(new Vector2(-839.159973F, -11.6639996F)); + builder.AddLine(new Vector2(-839.159973F, 0F)); + builder.AddLine(new Vector2(-835.463989F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-827.736023F, 0F)); + builder.AddLine(new Vector2(-827.736023F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-827.736023F, -8.26399994F), new Vector2(-827.927979F, -9.00399971F), new Vector2(-828.312012F, -9.68400002F)); + builder.AddCubicBezier(new Vector2(-828.695984F, -10.3640003F), new Vector2(-829.223999F, -10.9040003F), new Vector2(-829.895996F, -11.3039999F)); + builder.AddCubicBezier(new Vector2(-830.567993F, -11.7040005F), new Vector2(-831.328003F, -11.9040003F), new Vector2(-832.176025F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-833.072021F, -11.9040003F), new Vector2(-833.875977F, -11.7159996F), new Vector2(-834.588013F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-835.299988F, -10.9639997F), new Vector2(-835.859985F, -10.4320002F), new Vector2(-836.268005F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-836.676025F, -9.05599976F), new Vector2(-836.880005F, -8.25599957F), new Vector2(-836.880005F, -7.34399986F)); + builder.AddLine(new Vector2(-835.463989F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(-835.463989F, -7.04799986F), new Vector2(-835.375977F, -7.4000001F), new Vector2(-835.200012F, -7.704F)); + builder.AddCubicBezier(new Vector2(-835.023987F, -8.00800037F), new Vector2(-834.783997F, -8.24400043F), new Vector2(-834.47998F, -8.4119997F)); + builder.AddCubicBezier(new Vector2(-834.176025F, -8.57999992F), new Vector2(-833.83197F, -8.66399956F), new Vector2(-833.447998F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-832.872009F, -8.66399956F), new Vector2(-832.392029F, -8.47599983F), new Vector2(-832.007996F, -8.10000038F)); + builder.AddCubicBezier(new Vector2(-831.624023F, -7.72399998F), new Vector2(-831.432007F, -7.23999977F), new Vector2(-831.432007F, -6.64799976F)); + builder.AddLine(new Vector2(-831.432007F, 0F)); + builder.AddLine(new Vector2(-827.736023F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1727() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-848.711975F, -3.43199992F)); + builder.AddCubicBezier(new Vector2(-849.112F, -3.6559999F), new Vector2(-849.424011F, -3.98000002F), new Vector2(-849.64801F, -4.40399981F)); + builder.AddCubicBezier(new Vector2(-849.872009F, -4.82800007F), new Vector2(-849.984009F, -5.3119998F), new Vector2(-849.984009F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-849.984009F, -6.36800003F), new Vector2(-849.872009F, -6.83199978F), new Vector2(-849.64801F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-849.424011F, -7.66400003F), new Vector2(-849.112F, -7.98799992F), new Vector2(-848.711975F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-848.312012F, -8.45199966F), new Vector2(-847.856018F, -8.56799984F), new Vector2(-847.343994F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-846.83197F, -8.56799984F), new Vector2(-846.380005F, -8.45199966F), new Vector2(-845.987976F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-845.596008F, -7.98799992F), new Vector2(-845.288025F, -7.66800022F), new Vector2(-845.064026F, -7.26000023F)); + builder.AddCubicBezier(new Vector2(-844.840027F, -6.85200024F), new Vector2(-844.728027F, -6.38399982F), new Vector2(-844.728027F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-844.728027F, -5.3119998F), new Vector2(-844.835999F, -4.82800007F), new Vector2(-845.052002F, -4.40399981F)); + builder.AddCubicBezier(new Vector2(-845.268005F, -3.98000002F), new Vector2(-845.575989F, -3.6559999F), new Vector2(-845.976013F, -3.43199992F)); + builder.AddCubicBezier(new Vector2(-846.375977F, -3.20799994F), new Vector2(-846.83197F, -3.09599996F), new Vector2(-847.343994F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-847.856018F, -3.09599996F), new Vector2(-848.312012F, -3.20799994F), new Vector2(-848.711975F, -3.43199992F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-844.080017F, -0.551999986F)); + builder.AddCubicBezier(new Vector2(-843.119995F, -1.09599996F), new Vector2(-842.359985F, -1.82799995F), new Vector2(-841.799988F, -2.74799991F)); + builder.AddCubicBezier(new Vector2(-841.23999F, -3.66799998F), new Vector2(-840.960022F, -4.71199989F), new Vector2(-840.960022F, -5.88000011F)); + builder.AddCubicBezier(new Vector2(-840.960022F, -7.01599979F), new Vector2(-841.23999F, -8.04399967F), new Vector2(-841.799988F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-842.359985F, -9.88399982F), new Vector2(-843.124023F, -10.6079998F), new Vector2(-844.09198F, -11.1359997F)); + builder.AddCubicBezier(new Vector2(-845.059998F, -11.6639996F), new Vector2(-846.143982F, -11.9280005F), new Vector2(-847.343994F, -11.9280005F)); + builder.AddCubicBezier(new Vector2(-848.575989F, -11.9280005F), new Vector2(-849.671997F, -11.6599998F), new Vector2(-850.632019F, -11.1239996F)); + builder.AddCubicBezier(new Vector2(-851.59198F, -10.5880003F), new Vector2(-852.348022F, -9.86400032F), new Vector2(-852.900024F, -8.95199966F)); + builder.AddCubicBezier(new Vector2(-853.452026F, -8.03999996F), new Vector2(-853.728027F, -7.01599979F), new Vector2(-853.728027F, -5.88000011F)); + builder.AddCubicBezier(new Vector2(-853.728027F, -4.72800016F), new Vector2(-853.447998F, -3.68799996F), new Vector2(-852.888F, -2.75999999F)); + builder.AddCubicBezier(new Vector2(-852.328003F, -1.83200002F), new Vector2(-851.567993F, -1.09599996F), new Vector2(-850.607971F, -0.551999986F)); + builder.AddCubicBezier(new Vector2(-849.64801F, -0.00800000038F), new Vector2(-848.559998F, 0.263999999F), new Vector2(-847.343994F, 0.263999999F)); + builder.AddCubicBezier(new Vector2(-846.127991F, 0.263999999F), new Vector2(-845.039978F, -0.00800000038F), new Vector2(-844.080017F, -0.551999986F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1728() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-860.112F, 0F)); + builder.AddLine(new Vector2(-860.112F, -11.6639996F)); + builder.AddLine(new Vector2(-863.736023F, -11.6639996F)); + builder.AddLine(new Vector2(-863.736023F, -8.80799961F)); + builder.AddLine(new Vector2(-863.184021F, -6F)); + builder.AddLine(new Vector2(-863.736023F, -3.14400005F)); + builder.AddLine(new Vector2(-863.736023F, 0F)); + builder.AddLine(new Vector2(-860.112F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-867.515991F, -3.44400001F)); + builder.AddCubicBezier(new Vector2(-867.90802F, -3.67600012F), new Vector2(-868.219971F, -4F), new Vector2(-868.452026F, -4.41599989F)); + builder.AddCubicBezier(new Vector2(-868.684021F, -4.83199978F), new Vector2(-868.799988F, -5.3039999F), new Vector2(-868.799988F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-868.799988F, -6.36000013F), new Vector2(-868.684021F, -6.83199978F), new Vector2(-868.452026F, -7.24800014F)); + builder.AddCubicBezier(new Vector2(-868.219971F, -7.66400003F), new Vector2(-867.90802F, -7.98799992F), new Vector2(-867.515991F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-867.124023F, -8.45199966F), new Vector2(-866.679993F, -8.56799984F), new Vector2(-866.184021F, -8.56799984F)); + builder.AddCubicBezier(new Vector2(-865.671997F, -8.56799984F), new Vector2(-865.216003F, -8.45199966F), new Vector2(-864.815979F, -8.22000027F)); + builder.AddCubicBezier(new Vector2(-864.416016F, -7.98799992F), new Vector2(-864.112F, -7.66800022F), new Vector2(-863.903992F, -7.26000023F)); + builder.AddCubicBezier(new Vector2(-863.695984F, -6.85200024F), new Vector2(-863.59198F, -6.38399982F), new Vector2(-863.59198F, -5.85599995F)); + builder.AddCubicBezier(new Vector2(-863.59198F, -5.03999996F), new Vector2(-863.828003F, -4.37599993F), new Vector2(-864.299988F, -3.86400008F)); + builder.AddCubicBezier(new Vector2(-864.771973F, -3.352F), new Vector2(-865.400024F, -3.09599996F), new Vector2(-866.184021F, -3.09599996F)); + builder.AddCubicBezier(new Vector2(-866.679993F, -3.09599996F), new Vector2(-867.124023F, -3.21199989F), new Vector2(-867.515991F, -3.44400001F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-864.804016F, -0.216000006F)); + builder.AddCubicBezier(new Vector2(-864.171997F, -0.519999981F), new Vector2(-863.659973F, -0.939999998F), new Vector2(-863.268005F, -1.47599995F)); + builder.AddCubicBezier(new Vector2(-862.875977F, -2.01200008F), new Vector2(-862.656006F, -2.62400007F), new Vector2(-862.607971F, -3.31200004F)); + builder.AddLine(new Vector2(-862.607971F, -8.35200024F)); + builder.AddCubicBezier(new Vector2(-862.656006F, -9.03999996F), new Vector2(-862.880005F, -9.65200043F), new Vector2(-863.280029F, -10.1879997F)); + builder.AddCubicBezier(new Vector2(-863.679993F, -10.724F), new Vector2(-864.195984F, -11.1440001F), new Vector2(-864.828003F, -11.448F)); + builder.AddCubicBezier(new Vector2(-865.460022F, -11.7519999F), new Vector2(-866.16803F, -11.9040003F), new Vector2(-866.952026F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-868.023987F, -11.9040003F), new Vector2(-868.97998F, -11.6440001F), new Vector2(-869.820007F, -11.1239996F)); + builder.AddCubicBezier(new Vector2(-870.659973F, -10.6040001F), new Vector2(-871.323975F, -9.88399982F), new Vector2(-871.812012F, -8.96399975F)); + builder.AddCubicBezier(new Vector2(-872.299988F, -8.04399967F), new Vector2(-872.544006F, -7F), new Vector2(-872.544006F, -5.83199978F)); + builder.AddCubicBezier(new Vector2(-872.544006F, -4.66400003F), new Vector2(-872.299988F, -3.62800002F), new Vector2(-871.812012F, -2.72399998F)); + builder.AddCubicBezier(new Vector2(-871.323975F, -1.82000005F), new Vector2(-870.656006F, -1.10000002F), new Vector2(-869.807983F, -0.56400001F)); + builder.AddCubicBezier(new Vector2(-868.960022F, -0.0280000009F), new Vector2(-868.007996F, 0.239999995F), new Vector2(-866.952026F, 0.239999995F)); + builder.AddCubicBezier(new Vector2(-866.151978F, 0.239999995F), new Vector2(-865.435974F, 0.0879999995F), new Vector2(-864.804016F, -0.216000006F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1729() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-879.635986F, -0.708000004F)); + builder.AddCubicBezier(new Vector2(-878.780029F, -1.38800001F), new Vector2(-878.35199F, -2.296F), new Vector2(-878.35199F, -3.43199992F)); + builder.AddCubicBezier(new Vector2(-878.35199F, -4.16800022F), new Vector2(-878.487976F, -4.76399994F), new Vector2(-878.76001F, -5.21999979F)); + builder.AddCubicBezier(new Vector2(-879.031982F, -5.67600012F), new Vector2(-879.383972F, -6.04400015F), new Vector2(-879.815979F, -6.32399988F)); + builder.AddCubicBezier(new Vector2(-880.247986F, -6.60400009F), new Vector2(-880.703979F, -6.82000017F), new Vector2(-881.184021F, -6.97200012F)); + builder.AddCubicBezier(new Vector2(-881.664001F, -7.12400007F), new Vector2(-882.116028F, -7.25600004F), new Vector2(-882.539978F, -7.36800003F)); + builder.AddCubicBezier(new Vector2(-882.963989F, -7.48000002F), new Vector2(-883.315979F, -7.6079998F), new Vector2(-883.596008F, -7.75199986F)); + builder.AddCubicBezier(new Vector2(-883.875977F, -7.89599991F), new Vector2(-884.015991F, -8.0880003F), new Vector2(-884.015991F, -8.32800007F)); + builder.AddCubicBezier(new Vector2(-884.015991F, -8.53600025F), new Vector2(-883.911987F, -8.70400047F), new Vector2(-883.703979F, -8.83199978F)); + builder.AddCubicBezier(new Vector2(-883.495972F, -8.96000004F), new Vector2(-883.184021F, -9.02400017F), new Vector2(-882.768005F, -9.02400017F)); + builder.AddCubicBezier(new Vector2(-882.335999F, -9.02400017F), new Vector2(-881.892029F, -8.93200016F), new Vector2(-881.435974F, -8.74800014F)); + builder.AddCubicBezier(new Vector2(-880.97998F, -8.56400013F), new Vector2(-880.567993F, -8.25599957F), new Vector2(-880.200012F, -7.82399988F)); + builder.AddLine(new Vector2(-878.112F, -9.96000004F)); + builder.AddCubicBezier(new Vector2(-878.624023F, -10.632F), new Vector2(-879.304016F, -11.1400003F), new Vector2(-880.151978F, -11.4840002F)); + builder.AddCubicBezier(new Vector2(-881F, -11.8280001F), new Vector2(-881.911987F, -12F), new Vector2(-882.888F, -12F)); + builder.AddCubicBezier(new Vector2(-883.864014F, -12F), new Vector2(-884.703979F, -11.8400002F), new Vector2(-885.40802F, -11.5200005F)); + builder.AddCubicBezier(new Vector2(-886.112F, -11.1999998F), new Vector2(-886.656006F, -10.7639999F), new Vector2(-887.039978F, -10.2119999F)); + builder.AddCubicBezier(new Vector2(-887.424011F, -9.65999985F), new Vector2(-887.616028F, -9.00800037F), new Vector2(-887.616028F, -8.25599957F)); + builder.AddCubicBezier(new Vector2(-887.616028F, -7.53599977F), new Vector2(-887.47998F, -6.95200014F), new Vector2(-887.208008F, -6.50400019F)); + builder.AddCubicBezier(new Vector2(-886.935974F, -6.05600023F), new Vector2(-886.583984F, -5.704F), new Vector2(-886.151978F, -5.44799995F)); + builder.AddCubicBezier(new Vector2(-885.719971F, -5.19199991F), new Vector2(-885.263977F, -4.98799992F), new Vector2(-884.783997F, -4.83599997F)); + builder.AddCubicBezier(new Vector2(-884.304016F, -4.68400002F), new Vector2(-883.843994F, -4.54799986F), new Vector2(-883.403992F, -4.42799997F)); + builder.AddCubicBezier(new Vector2(-882.963989F, -4.30800009F), new Vector2(-882.607971F, -4.17999983F), new Vector2(-882.335999F, -4.04400015F)); + builder.AddCubicBezier(new Vector2(-882.064026F, -3.90799999F), new Vector2(-881.927979F, -3.6960001F), new Vector2(-881.927979F, -3.40799999F)); + builder.AddCubicBezier(new Vector2(-881.927979F, -3.16799998F), new Vector2(-882.044006F, -2.98399997F), new Vector2(-882.276001F, -2.85599995F)); + builder.AddCubicBezier(new Vector2(-882.507996F, -2.72799993F), new Vector2(-882.823975F, -2.66400003F), new Vector2(-883.223999F, -2.66400003F)); + builder.AddCubicBezier(new Vector2(-883.864014F, -2.66400003F), new Vector2(-884.44397F, -2.77999997F), new Vector2(-884.963989F, -3.01200008F)); + builder.AddCubicBezier(new Vector2(-885.484009F, -3.24399996F), new Vector2(-885.94397F, -3.56800008F), new Vector2(-886.343994F, -3.98399997F)); + builder.AddLine(new Vector2(-888.455994F, -1.87199998F)); + builder.AddCubicBezier(new Vector2(-888.039978F, -1.44000006F), new Vector2(-887.552002F, -1.05999994F), new Vector2(-886.992004F, -0.731999993F)); + builder.AddCubicBezier(new Vector2(-886.432007F, -0.404000014F), new Vector2(-885.815979F, -0.148000002F), new Vector2(-885.143982F, 0.0359999985F)); + builder.AddCubicBezier(new Vector2(-884.471985F, 0.219999999F), new Vector2(-883.791992F, 0.312000006F), new Vector2(-883.104004F, 0.312000006F)); + builder.AddCubicBezier(new Vector2(-881.64801F, 0.312000006F), new Vector2(-880.492004F, -0.0280000009F), new Vector2(-879.635986F, -0.708000004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1730() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-890.340027F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-889.97998F, -14.2480001F), new Vector2(-889.799988F, -14.7279997F), new Vector2(-889.799988F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-889.799988F, -15.8640003F), new Vector2(-889.97998F, -16.3439999F), new Vector2(-890.340027F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-890.700012F, -17.1119995F), new Vector2(-891.176025F, -17.3040009F), new Vector2(-891.768005F, -17.3040009F)); + builder.AddCubicBezier(new Vector2(-892.328003F, -17.3040009F), new Vector2(-892.799988F, -17.1119995F), new Vector2(-893.184021F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-893.567993F, -16.3439999F), new Vector2(-893.76001F, -15.8640003F), new Vector2(-893.76001F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-893.76001F, -14.7279997F), new Vector2(-893.567993F, -14.2480001F), new Vector2(-893.184021F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-892.799988F, -13.448F), new Vector2(-892.328003F, -13.2480001F), new Vector2(-891.768005F, -13.2480001F)); + builder.AddCubicBezier(new Vector2(-891.176025F, -13.2480001F), new Vector2(-890.700012F, -13.448F), new Vector2(-890.340027F, -13.8479996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-889.919983F, 0F)); + builder.AddLine(new Vector2(-889.919983F, -11.6639996F)); + builder.AddLine(new Vector2(-893.616028F, -11.6639996F)); + builder.AddLine(new Vector2(-893.616028F, 0F)); + builder.AddLine(new Vector2(-889.919983F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1731() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-901.452026F, -0.708000004F)); + builder.AddCubicBezier(new Vector2(-900.596008F, -1.38800001F), new Vector2(-900.16803F, -2.296F), new Vector2(-900.16803F, -3.43199992F)); + builder.AddCubicBezier(new Vector2(-900.16803F, -4.16800022F), new Vector2(-900.304016F, -4.76399994F), new Vector2(-900.575989F, -5.21999979F)); + builder.AddCubicBezier(new Vector2(-900.848022F, -5.67600012F), new Vector2(-901.200012F, -6.04400015F), new Vector2(-901.632019F, -6.32399988F)); + builder.AddCubicBezier(new Vector2(-902.064026F, -6.60400009F), new Vector2(-902.52002F, -6.82000017F), new Vector2(-903F, -6.97200012F)); + builder.AddCubicBezier(new Vector2(-903.47998F, -7.12400007F), new Vector2(-903.932007F, -7.25600004F), new Vector2(-904.356018F, -7.36800003F)); + builder.AddCubicBezier(new Vector2(-904.780029F, -7.48000002F), new Vector2(-905.132019F, -7.6079998F), new Vector2(-905.411987F, -7.75199986F)); + builder.AddCubicBezier(new Vector2(-905.692017F, -7.89599991F), new Vector2(-905.83197F, -8.0880003F), new Vector2(-905.83197F, -8.32800007F)); + builder.AddCubicBezier(new Vector2(-905.83197F, -8.53600025F), new Vector2(-905.728027F, -8.70400047F), new Vector2(-905.52002F, -8.83199978F)); + builder.AddCubicBezier(new Vector2(-905.312012F, -8.96000004F), new Vector2(-905F, -9.02400017F), new Vector2(-904.583984F, -9.02400017F)); + builder.AddCubicBezier(new Vector2(-904.151978F, -9.02400017F), new Vector2(-903.708008F, -8.93200016F), new Vector2(-903.252014F, -8.74800014F)); + builder.AddCubicBezier(new Vector2(-902.796021F, -8.56400013F), new Vector2(-902.383972F, -8.25599957F), new Vector2(-902.015991F, -7.82399988F)); + builder.AddLine(new Vector2(-899.927979F, -9.96000004F)); + builder.AddCubicBezier(new Vector2(-900.440002F, -10.632F), new Vector2(-901.119995F, -11.1400003F), new Vector2(-901.968018F, -11.4840002F)); + builder.AddCubicBezier(new Vector2(-902.815979F, -11.8280001F), new Vector2(-903.728027F, -12F), new Vector2(-904.703979F, -12F)); + builder.AddCubicBezier(new Vector2(-905.679993F, -12F), new Vector2(-906.52002F, -11.8400002F), new Vector2(-907.223999F, -11.5200005F)); + builder.AddCubicBezier(new Vector2(-907.927979F, -11.1999998F), new Vector2(-908.471985F, -10.7639999F), new Vector2(-908.856018F, -10.2119999F)); + builder.AddCubicBezier(new Vector2(-909.23999F, -9.65999985F), new Vector2(-909.432007F, -9.00800037F), new Vector2(-909.432007F, -8.25599957F)); + builder.AddCubicBezier(new Vector2(-909.432007F, -7.53599977F), new Vector2(-909.296021F, -6.95200014F), new Vector2(-909.023987F, -6.50400019F)); + builder.AddCubicBezier(new Vector2(-908.752014F, -6.05600023F), new Vector2(-908.400024F, -5.704F), new Vector2(-907.968018F, -5.44799995F)); + builder.AddCubicBezier(new Vector2(-907.536011F, -5.19199991F), new Vector2(-907.080017F, -4.98799992F), new Vector2(-906.599976F, -4.83599997F)); + builder.AddCubicBezier(new Vector2(-906.119995F, -4.68400002F), new Vector2(-905.659973F, -4.54799986F), new Vector2(-905.219971F, -4.42799997F)); + builder.AddCubicBezier(new Vector2(-904.780029F, -4.30800009F), new Vector2(-904.424011F, -4.17999983F), new Vector2(-904.151978F, -4.04400015F)); + builder.AddCubicBezier(new Vector2(-903.880005F, -3.90799999F), new Vector2(-903.744019F, -3.6960001F), new Vector2(-903.744019F, -3.40799999F)); + builder.AddCubicBezier(new Vector2(-903.744019F, -3.16799998F), new Vector2(-903.859985F, -2.98399997F), new Vector2(-904.09198F, -2.85599995F)); + builder.AddCubicBezier(new Vector2(-904.323975F, -2.72799993F), new Vector2(-904.640015F, -2.66400003F), new Vector2(-905.039978F, -2.66400003F)); + builder.AddCubicBezier(new Vector2(-905.679993F, -2.66400003F), new Vector2(-906.26001F, -2.77999997F), new Vector2(-906.780029F, -3.01200008F)); + builder.AddCubicBezier(new Vector2(-907.299988F, -3.24399996F), new Vector2(-907.76001F, -3.56800008F), new Vector2(-908.159973F, -3.98399997F)); + builder.AddLine(new Vector2(-910.271973F, -1.87199998F)); + builder.AddCubicBezier(new Vector2(-909.856018F, -1.44000006F), new Vector2(-909.367981F, -1.05999994F), new Vector2(-908.807983F, -0.731999993F)); + builder.AddCubicBezier(new Vector2(-908.247986F, -0.404000014F), new Vector2(-907.632019F, -0.148000002F), new Vector2(-906.960022F, 0.0359999985F)); + builder.AddCubicBezier(new Vector2(-906.288025F, 0.219999999F), new Vector2(-905.607971F, 0.312000006F), new Vector2(-904.919983F, 0.312000006F)); + builder.AddCubicBezier(new Vector2(-903.463989F, 0.312000006F), new Vector2(-902.307983F, -0.0280000009F), new Vector2(-901.452026F, -0.708000004F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1732() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-912.156006F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-911.796021F, -14.2480001F), new Vector2(-911.616028F, -14.7279997F), new Vector2(-911.616028F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-911.616028F, -15.8640003F), new Vector2(-911.796021F, -16.3439999F), new Vector2(-912.156006F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-912.515991F, -17.1119995F), new Vector2(-912.992004F, -17.3040009F), new Vector2(-913.583984F, -17.3040009F)); + builder.AddCubicBezier(new Vector2(-914.143982F, -17.3040009F), new Vector2(-914.616028F, -17.1119995F), new Vector2(-915F, -16.7280006F)); + builder.AddCubicBezier(new Vector2(-915.383972F, -16.3439999F), new Vector2(-915.575989F, -15.8640003F), new Vector2(-915.575989F, -15.2880001F)); + builder.AddCubicBezier(new Vector2(-915.575989F, -14.7279997F), new Vector2(-915.383972F, -14.2480001F), new Vector2(-915F, -13.8479996F)); + builder.AddCubicBezier(new Vector2(-914.616028F, -13.448F), new Vector2(-914.143982F, -13.2480001F), new Vector2(-913.583984F, -13.2480001F)); + builder.AddCubicBezier(new Vector2(-912.992004F, -13.2480001F), new Vector2(-912.515991F, -13.448F), new Vector2(-912.156006F, -13.8479996F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-911.736023F, 0F)); + builder.AddLine(new Vector2(-911.736023F, -11.6639996F)); + builder.AddLine(new Vector2(-915.432007F, -11.6639996F)); + builder.AddLine(new Vector2(-915.432007F, 0F)); + builder.AddLine(new Vector2(-911.736023F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1733() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-925.487976F, 0F)); + builder.AddLine(new Vector2(-925.487976F, -17.4239998F)); + builder.AddLine(new Vector2(-929.184021F, -17.4239998F)); + builder.AddLine(new Vector2(-929.184021F, 0F)); + builder.AddLine(new Vector2(-925.487976F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-917.76001F, 0F)); + builder.AddLine(new Vector2(-917.76001F, -7.46400023F)); + builder.AddCubicBezier(new Vector2(-917.76001F, -8.34399986F), new Vector2(-917.952026F, -9.11600018F), new Vector2(-918.335999F, -9.77999973F)); + builder.AddCubicBezier(new Vector2(-918.719971F, -10.4440002F), new Vector2(-919.255981F, -10.9639997F), new Vector2(-919.94397F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-920.632019F, -11.7159996F), new Vector2(-921.432007F, -11.9040003F), new Vector2(-922.343994F, -11.9040003F)); + builder.AddCubicBezier(new Vector2(-923.223999F, -11.9040003F), new Vector2(-924.007996F, -11.7159996F), new Vector2(-924.695984F, -11.3400002F)); + builder.AddCubicBezier(new Vector2(-925.383972F, -10.9639997F), new Vector2(-925.924011F, -10.4320002F), new Vector2(-926.315979F, -9.74400043F)); + builder.AddCubicBezier(new Vector2(-926.708008F, -9.05599976F), new Vector2(-926.903992F, -8.25599957F), new Vector2(-926.903992F, -7.34399986F)); + builder.AddLine(new Vector2(-925.487976F, -6.64799976F)); + builder.AddCubicBezier(new Vector2(-925.487976F, -7.04799986F), new Vector2(-925.400024F, -7.4000001F), new Vector2(-925.223999F, -7.704F)); + builder.AddCubicBezier(new Vector2(-925.047974F, -8.00800037F), new Vector2(-924.807983F, -8.24400043F), new Vector2(-924.504028F, -8.4119997F)); + builder.AddCubicBezier(new Vector2(-924.200012F, -8.57999992F), new Vector2(-923.856018F, -8.66399956F), new Vector2(-923.471985F, -8.66399956F)); + builder.AddCubicBezier(new Vector2(-922.895996F, -8.66399956F), new Vector2(-922.416016F, -8.47599983F), new Vector2(-922.031982F, -8.10000038F)); + builder.AddCubicBezier(new Vector2(-921.64801F, -7.72399998F), new Vector2(-921.455994F, -7.23999977F), new Vector2(-921.455994F, -6.64799976F)); + builder.AddLine(new Vector2(-921.455994F, 0F)); + builder.AddLine(new Vector2(-917.76001F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + // - - - Layer aggregator + // - - Offset:<1772, 42> + CanvasGeometry Geometry_1734() + { + CanvasGeometry result; + using (var builder = new CanvasPathBuilder(null)) + { + builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding); + builder.BeginFigure(new Vector2(-930.935974F, -13.632F)); + builder.AddLine(new Vector2(-930.935974F, -16.9440002F)); + builder.AddLine(new Vector2(-945.335999F, -16.9440002F)); + builder.AddLine(new Vector2(-945.335999F, -13.632F)); + builder.AddLine(new Vector2(-930.935974F, -13.632F)); + builder.EndFigure(CanvasFigureLoop.Closed); + builder.BeginFigure(new Vector2(-936.216003F, 0F)); + builder.AddLine(new Vector2(-936.216003F, -16.7280006F)); + builder.AddLine(new Vector2(-940.031982F, -16.7280006F)); + builder.AddLine(new Vector2(-940.031982F, 0F)); + builder.AddLine(new Vector2(-936.216003F, 0F)); + builder.EndFigure(CanvasFigureLoop.Closed); + result = CanvasGeometry.CreatePath(builder); + } + return result; + } + + CompositionColorBrush ColorBrush_Black() + { + return (_colorBrush_Black == null) + ? _colorBrush_Black = _c.CreateColorBrush(Color.FromArgb(0xFF, 0x00, 0x00, 0x00)) + : _colorBrush_Black; + } + + // Color bound to theme property value: Color_E63B3B + CompositionColorBrush ThemeColor_Color_E63B3B_0() + { + if (_themeColor_Color_E63B3B_0 != null) { return _themeColor_Color_E63B3B_0; } + var result = _themeColor_Color_E63B3B_0 = _c.CreateColorBrush(); + BindProperty(_themeColor_Color_E63B3B_0, "Color", "ColorRGB(_theme.Color_E63B3B.W,_theme.Color_E63B3B.X,_theme.Color_E63B3B.Y,_theme.Color_E63B3B.Z)", "_theme", _themeProperties); + return result; + } + + // - - Layer aggregator + // ShapeGroup: Rectangle 1 Offset:<59, 517> + // Color bound to theme property value: Color_E63B3B + CompositionColorBrush ThemeColor_Color_E63B3B_1() + { + if (_themeColor_Color_E63B3B_1 != null) { return _themeColor_Color_E63B3B_1; } + var result = _themeColor_Color_E63B3B_1 = _c.CreateColorBrush(); + var propertySet = result.Properties; + propertySet.InsertScalar("Opacity0", 1F); + BindProperty2(_themeColor_Color_E63B3B_1, "Color", "ColorRGB(_theme.Color_E63B3B.W*my.Opacity0,_theme.Color_E63B3B.X,_theme.Color_E63B3B.Y,_theme.Color_E63B3B.Z)", "_theme", _themeProperties, "my", propertySet); + return result; + } + + // - - - Layer aggregator + // - - Layer: Shape Layer 2 + // ShapeGroup: Rectangle 1 Offset:<59, 517> + // Color bound to theme property value: Color_E63B3B + CompositionColorBrush ThemeColor_Color_E63B3B_2() + { + if (_themeColor_Color_E63B3B_2 != null) { return _themeColor_Color_E63B3B_2; } + var result = _themeColor_Color_E63B3B_2 = _c.CreateColorBrush(); + var propertySet = result.Properties; + propertySet.InsertScalar("Opacity0", 1F); + BindProperty2(_themeColor_Color_E63B3B_2, "Color", "ColorRGB(_theme.Color_E63B3B.W*my.Opacity0,_theme.Color_E63B3B.X,_theme.Color_E63B3B.Y,_theme.Color_E63B3B.Z)", "_theme", _themeProperties, "my", propertySet); + return result; + } + + // - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - Opacity for layer: Comp 1 + // - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - Shape tree root for layer: Shape Layer 3 + // Offset:<416, 509> + // Color bound to theme property value: Color_FF0000 + CompositionColorBrush ThemeColor_Color_FF0000() + { + if (_themeColor_Color_FF0000 != null) { return _themeColor_Color_FF0000; } + var result = _themeColor_Color_FF0000 = _c.CreateColorBrush(); + BindProperty(_themeColor_Color_FF0000, "Color", "ColorRGB(_theme.Color_FF0000.W,_theme.Color_FF0000.X,_theme.Color_FF0000.Y,_theme.Color_FF0000.Z)", "_theme", _themeProperties); + return result; + } + + // Color bound to theme property value: Color_FFFFFF + CompositionColorBrush ThemeColor_Color_FFFFFF_0() + { + if (_themeColor_Color_FFFFFF_0 != null) { return _themeColor_Color_FFFFFF_0; } + var result = _themeColor_Color_FFFFFF_0 = _c.CreateColorBrush(); + BindProperty(_themeColor_Color_FFFFFF_0, "Color", "ColorRGB(_theme.Color_FFFFFF.W,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties); + return result; + } + + // Color bound to theme property value: Color_FFFFFF + CompositionColorBrush ThemeColor_Color_FFFFFF_1() + { + if (_themeColor_Color_FFFFFF_1 != null) { return _themeColor_Color_FFFFFF_1; } + var result = _themeColor_Color_FFFFFF_1 = _c.CreateColorBrush(); + var propertySet = result.Properties; + propertySet.InsertScalar("Opacity0", 0F); + BindProperty2(_themeColor_Color_FFFFFF_1, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet); + return result; + } + + // Color bound to theme property value: Color_FFFFFF + CompositionColorBrush ThemeColor_Color_FFFFFF_2() + { + if (_themeColor_Color_FFFFFF_2 != null) { return _themeColor_Color_FFFFFF_2; } + var result = _themeColor_Color_FFFFFF_2 = _c.CreateColorBrush(); + var propertySet = result.Properties; + propertySet.InsertScalar("Opacity0", 0F); + BindProperty2(_themeColor_Color_FFFFFF_2, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet); + return result; + } + + // Color bound to theme property value: Color_FFFFFF + CompositionColorBrush ThemeColor_Color_FFFFFF_3() + { + if (_themeColor_Color_FFFFFF_3 != null) { return _themeColor_Color_FFFFFF_3; } + var result = _themeColor_Color_FFFFFF_3 = _c.CreateColorBrush(); + BindProperty(_themeColor_Color_FFFFFF_3, "Color", "ColorRGB(_theme.Color_FFFFFF.W*0.05,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties); + return result; + } + + // Color bound to theme property value: Color_FFFFFF + CompositionColorBrush ThemeColor_Color_FFFFFF_4() + { + if (_themeColor_Color_FFFFFF_4 != null) { return _themeColor_Color_FFFFFF_4; } + var result = _themeColor_Color_FFFFFF_4 = _c.CreateColorBrush(); + var propertySet = result.Properties; + propertySet.InsertScalar("Opacity0", 0F); + BindProperty2(_themeColor_Color_FFFFFF_4, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet); + return result; + } + + // Color bound to theme property value: Color_FFFFFF + CompositionColorBrush ThemeColor_Color_FFFFFF_5() + { + if (_themeColor_Color_FFFFFF_5 != null) { return _themeColor_Color_FFFFFF_5; } + var result = _themeColor_Color_FFFFFF_5 = _c.CreateColorBrush(); + var propertySet = result.Properties; + propertySet.InsertScalar("Opacity0", 0F); + BindProperty2(_themeColor_Color_FFFFFF_5, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet); + return result; + } + + // Color bound to theme property value: Color_FFFFFF + CompositionColorBrush ThemeColor_Color_FFFFFF_6() + { + if (_themeColor_Color_FFFFFF_6 != null) { return _themeColor_Color_FFFFFF_6; } + var result = _themeColor_Color_FFFFFF_6 = _c.CreateColorBrush(); + var propertySet = result.Properties; + propertySet.InsertScalar("Opacity0", 0F); + BindProperty2(_themeColor_Color_FFFFFF_6, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet); + return result; + } + + // Color bound to theme property value: Color_FFFFFF + CompositionColorBrush ThemeColor_Color_FFFFFF_7() + { + if (_themeColor_Color_FFFFFF_7 != null) { return _themeColor_Color_FFFFFF_7; } + var result = _themeColor_Color_FFFFFF_7 = _c.CreateColorBrush(); + var propertySet = result.Properties; + propertySet.InsertScalar("Opacity0", 0F); + BindProperty2(_themeColor_Color_FFFFFF_7, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet); + return result; + } + + // Color bound to theme property value: Color_FFFFFF + CompositionColorBrush ThemeColor_Color_FFFFFF_8() + { + if (_themeColor_Color_FFFFFF_8 != null) { return _themeColor_Color_FFFFFF_8; } + var result = _themeColor_Color_FFFFFF_8 = _c.CreateColorBrush(); + var propertySet = result.Properties; + propertySet.InsertScalar("Opacity0", 0F); + BindProperty2(_themeColor_Color_FFFFFF_8, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet); + return result; + } + + // Color bound to theme property value: Color_FFFFFF + CompositionColorBrush ThemeColor_Color_FFFFFF_9() + { + if (_themeColor_Color_FFFFFF_9 != null) { return _themeColor_Color_FFFFFF_9; } + var result = _themeColor_Color_FFFFFF_9 = _c.CreateColorBrush(); + var propertySet = result.Properties; + propertySet.InsertScalar("Opacity0", 0F); + BindProperty2(_themeColor_Color_FFFFFF_9, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 1 + // Layer: text-ministers Outlines + CompositionContainerShape ContainerShape_00() + { + if (_containerShape_00 != null) { return _containerShape_00; } + var result = _containerShape_00 = _c.CreateContainerShape(); + result.Offset = new Vector2(710.526001F, 232.421005F); + result.Scale = new Vector2(0F, 0F); + var shapes = result.Shapes; + // ShapeGroup: s + shapes.Add(SpriteShape_0015()); + // ShapeGroup: s + shapes.Add(SpriteShape_0016()); + // ShapeGroup: s + shapes.Add(SpriteShape_0017()); + // ShapeGroup: s + shapes.Add(SpriteShape_0018()); + // ShapeGroup: s + shapes.Add(SpriteShape_0019()); + // ShapeGroup: s + shapes.Add(SpriteShape_0020()); + // ShapeGroup: s + shapes.Add(SpriteShape_0021()); + // ShapeGroup: s + shapes.Add(SpriteShape_0022()); + // ShapeGroup: s + shapes.Add(SpriteShape_0023()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 1 + // Layer: text-ministers 2 Outlines + CompositionContainerShape ContainerShape_01() + { + if (_containerShape_01 != null) { return _containerShape_01; } + var result = _containerShape_01 = _c.CreateContainerShape(); + result.Offset = new Vector2(710.526001F, 232.421005F); + result.Scale = new Vector2(0F, 0F); + var shapes = result.Shapes; + // ShapeGroup: e + shapes.Add(SpriteShape_0024()); + // ShapeGroup: e + shapes.Add(SpriteShape_0025()); + // ShapeGroup: e + shapes.Add(SpriteShape_0026()); + // ShapeGroup: e + shapes.Add(SpriteShape_0027()); + // ShapeGroup: e + shapes.Add(SpriteShape_0028()); + // ShapeGroup: e + shapes.Add(SpriteShape_0029()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 1 + // Layer: text-ministers 3 Outlines + CompositionContainerShape ContainerShape_02() + { + if (_containerShape_02 != null) { return _containerShape_02; } + var result = _containerShape_02 = _c.CreateContainerShape(); + result.Offset = new Vector2(710.526001F, 207.421005F); + result.Scale = new Vector2(0F, 0F); + var shapes = result.Shapes; + // ShapeGroup: t + shapes.Add(SpriteShape_0030()); + // ShapeGroup: t + shapes.Add(SpriteShape_0031()); + // ShapeGroup: t + shapes.Add(SpriteShape_0032()); + // ShapeGroup: t + shapes.Add(SpriteShape_0033()); + // ShapeGroup: t + shapes.Add(SpriteShape_0034()); + // ShapeGroup: t + shapes.Add(SpriteShape_0035()); + // ShapeGroup: t + shapes.Add(SpriteShape_0036()); + // ShapeGroup: t + shapes.Add(SpriteShape_0037()); + // ShapeGroup: t + shapes.Add(SpriteShape_0038()); + // ShapeGroup: t + shapes.Add(SpriteShape_0039()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 1 + // Layer: text-ministers 4 Outlines + CompositionContainerShape ContainerShape_03() + { + if (_containerShape_03 != null) { return _containerShape_03; } + var result = _containerShape_03 = _c.CreateContainerShape(); + result.Offset = new Vector2(710.526001F, 232.421005F); + result.Scale = new Vector2(0F, 0F); + var shapes = result.Shapes; + // ShapeGroup: e + shapes.Add(SpriteShape_0040()); + // ShapeGroup: e + shapes.Add(SpriteShape_0041()); + // ShapeGroup: e + shapes.Add(SpriteShape_0042()); + // ShapeGroup: e + shapes.Add(SpriteShape_0043()); + // ShapeGroup: e + shapes.Add(SpriteShape_0044()); + // ShapeGroup: e + shapes.Add(SpriteShape_0045()); + // ShapeGroup: e + shapes.Add(SpriteShape_0046()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 1 + // Layer: text-ministers 5 Outlines + CompositionContainerShape ContainerShape_04() + { + if (_containerShape_04 != null) { return _containerShape_04; } + var result = _containerShape_04 = _c.CreateContainerShape(); + result.Offset = new Vector2(710.526001F, 232.421005F); + result.Scale = new Vector2(0F, 0F); + var shapes = result.Shapes; + // ShapeGroup: y + shapes.Add(SpriteShape_0047()); + // ShapeGroup: y + shapes.Add(SpriteShape_0048()); + // ShapeGroup: y + shapes.Add(SpriteShape_0049()); + // ShapeGroup: y + shapes.Add(SpriteShape_0050()); + // ShapeGroup: y + shapes.Add(SpriteShape_0051()); + // ShapeGroup: y + shapes.Add(SpriteShape_0052()); + // ShapeGroup: y + shapes.Add(SpriteShape_0053()); + // ShapeGroup: y + shapes.Add(SpriteShape_0054()); + // ShapeGroup: y + shapes.Add(SpriteShape_0055()); + // ShapeGroup: y + shapes.Add(SpriteShape_0056()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 1 + // Layer: text-ministers 6 Outlines + CompositionContainerShape ContainerShape_05() + { + if (_containerShape_05 != null) { return _containerShape_05; } + var result = _containerShape_05 = _c.CreateContainerShape(); + result.Offset = new Vector2(710.526001F, 232.421005F); + result.Scale = new Vector2(0F, 0F); + var shapes = result.Shapes; + // ShapeGroup: m + shapes.Add(SpriteShape_0057()); + // ShapeGroup: m + shapes.Add(SpriteShape_0058()); + // ShapeGroup: m + shapes.Add(SpriteShape_0059()); + // ShapeGroup: m + shapes.Add(SpriteShape_0060()); + // ShapeGroup: m + shapes.Add(SpriteShape_0061()); + // ShapeGroup: m + shapes.Add(SpriteShape_0062()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 1 + // Layer: text-ministers 7 Outlines + CompositionContainerShape ContainerShape_06() + { + if (_containerShape_06 != null) { return _containerShape_06; } + var result = _containerShape_06 = _c.CreateContainerShape(); + result.Offset = new Vector2(710.526001F, 232.421005F); + result.Scale = new Vector2(0F, 0F); + var shapes = result.Shapes; + // ShapeGroup: y + shapes.Add(SpriteShape_0063()); + // ShapeGroup: y + shapes.Add(SpriteShape_0064()); + // ShapeGroup: y + shapes.Add(SpriteShape_0065()); + // ShapeGroup: y + shapes.Add(SpriteShape_0066()); + // ShapeGroup: y + shapes.Add(SpriteShape_0067()); + // ShapeGroup: y + shapes.Add(SpriteShape_0068()); + // ShapeGroup: y + shapes.Add(SpriteShape_0069()); + // ShapeGroup: y + shapes.Add(SpriteShape_0070()); + // ShapeGroup: y + shapes.Add(SpriteShape_0071()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 1 + // Layer: text-ministers 8 Outlines + CompositionContainerShape ContainerShape_07() + { + if (_containerShape_07 != null) { return _containerShape_07; } + var result = _containerShape_07 = _c.CreateContainerShape(); + result.Offset = new Vector2(525.526001F, 232.421005F); + result.Scale = new Vector2(0F, 0F); + var shapes = result.Shapes; + // ShapeGroup: a + shapes.Add(SpriteShape_0072()); + // ShapeGroup: a + shapes.Add(SpriteShape_0073()); + // ShapeGroup: a + shapes.Add(SpriteShape_0074()); + // ShapeGroup: a + shapes.Add(SpriteShape_0075()); + // ShapeGroup: a + shapes.Add(SpriteShape_0076()); + // ShapeGroup: a + shapes.Add(SpriteShape_0077()); + // ShapeGroup: a + shapes.Add(SpriteShape_0078()); + // ShapeGroup: a + shapes.Add(SpriteShape_0079()); + // ShapeGroup: a + shapes.Add(SpriteShape_0080()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 1 + // Layer: second Outlines + CompositionContainerShape ContainerShape_08() + { + if (_containerShape_08 != null) { return _containerShape_08; } + var result = _containerShape_08 = _c.CreateContainerShape(); + result.Scale = new Vector2(0F, 0F); + var shapes = result.Shapes; + shapes.Add(ContainerShape_09()); + shapes.Add(ContainerShape_10()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: second Outlines + CompositionContainerShape ContainerShape_09() + { + if (_containerShape_09 != null) { return _containerShape_09; } + var result = _containerShape_09 = _c.CreateContainerShape(); + result.Offset = new Vector2(525.789001F, 232.421005F); + var shapes = result.Shapes; + // ShapeGroup: e + shapes.Add(SpriteShape_0081()); + // ShapeGroup: e + shapes.Add(SpriteShape_0082()); + // ShapeGroup: e + shapes.Add(SpriteShape_0083()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: second Outlines + CompositionContainerShape ContainerShape_10() + { + if (_containerShape_10 != null) { return _containerShape_10; } + var result = _containerShape_10 = _c.CreateContainerShape(); + result.Offset = new Vector2(170.526001F, 232.632004F); + var shapes = result.Shapes; + // ShapeGroup: t + shapes.Add(SpriteShape_0084()); + // ShapeGroup: t + shapes.Add(SpriteShape_0085()); + // ShapeGroup: t + shapes.Add(SpriteShape_0086()); + // ShapeGroup: t + shapes.Add(SpriteShape_0087()); + // ShapeGroup: t + shapes.Add(SpriteShape_0088()); + // ShapeGroup: t + shapes.Add(SpriteShape_0089()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + CompositionContainerShape ContainerShape_11() + { + if (_containerShape_11 != null) { return _containerShape_11; } + var result = _containerShape_11 = _c.CreateContainerShape(); + var shapes = result.Shapes; + // ShapeGroup: P + shapes.Add(SpriteShape_0139()); + // ShapeGroup: P + shapes.Add(SpriteShape_0140()); + // ShapeGroup: P + shapes.Add(SpriteShape_0141()); + // ShapeGroup: P + shapes.Add(SpriteShape_0142()); + // ShapeGroup: P + shapes.Add(SpriteShape_0143()); + // ShapeGroup: P + shapes.Add(SpriteShape_0144()); + // ShapeGroup: P + shapes.Add(SpriteShape_0145()); + // ShapeGroup: P + shapes.Add(SpriteShape_0146()); + // ShapeGroup: P + shapes.Add(SpriteShape_0147()); + // ShapeGroup: P + shapes.Add(SpriteShape_0148()); + // ShapeGroup: P + shapes.Add(SpriteShape_0149()); + // ShapeGroup: P + shapes.Add(SpriteShape_0150()); + // ShapeGroup: P + shapes.Add(SpriteShape_0151()); + // ShapeGroup: P + shapes.Add(SpriteShape_0152()); + // ShapeGroup: P + shapes.Add(SpriteShape_0153()); + // ShapeGroup: P + shapes.Add(SpriteShape_0154()); + // ShapeGroup: P + shapes.Add(SpriteShape_0155()); + // ShapeGroup: P + shapes.Add(SpriteShape_0156()); + // ShapeGroup: P + shapes.Add(SpriteShape_0157()); + // ShapeGroup: P + shapes.Add(SpriteShape_0158()); + // ShapeGroup: P + shapes.Add(SpriteShape_0159()); + // ShapeGroup: P + shapes.Add(SpriteShape_0160()); + // ShapeGroup: P + shapes.Add(SpriteShape_0161()); + // ShapeGroup: P + shapes.Add(SpriteShape_0162()); + // ShapeGroup: P + shapes.Add(SpriteShape_0163()); + // ShapeGroup: P + shapes.Add(SpriteShape_0164()); + // ShapeGroup: P + shapes.Add(SpriteShape_0165()); + // ShapeGroup: P + shapes.Add(SpriteShape_0166()); + // ShapeGroup: P + shapes.Add(SpriteShape_0167()); + // ShapeGroup: P + shapes.Add(SpriteShape_0168()); + // ShapeGroup: P + shapes.Add(SpriteShape_0169()); + // ShapeGroup: P + shapes.Add(SpriteShape_0170()); + // ShapeGroup: P + shapes.Add(SpriteShape_0171()); + // ShapeGroup: P + shapes.Add(SpriteShape_0172()); + // ShapeGroup: P + shapes.Add(SpriteShape_0173()); + // ShapeGroup: P + shapes.Add(SpriteShape_0174()); + // ShapeGroup: P + shapes.Add(SpriteShape_0175()); + // ShapeGroup: P + shapes.Add(SpriteShape_0176()); + // ShapeGroup: P + shapes.Add(SpriteShape_0177()); + // ShapeGroup: P + shapes.Add(SpriteShape_0178()); + // ShapeGroup: P + shapes.Add(SpriteShape_0179()); + // ShapeGroup: P + shapes.Add(SpriteShape_0180()); + // ShapeGroup: P + shapes.Add(SpriteShape_0181()); + // ShapeGroup: P + shapes.Add(SpriteShape_0182()); + // ShapeGroup: P + shapes.Add(SpriteShape_0183()); + // ShapeGroup: P + shapes.Add(SpriteShape_0184()); + // ShapeGroup: P + shapes.Add(SpriteShape_0185()); + // ShapeGroup: P + shapes.Add(SpriteShape_0186()); + // ShapeGroup: P + shapes.Add(SpriteShape_0187()); + // ShapeGroup: P + shapes.Add(SpriteShape_0188()); + // ShapeGroup: P + shapes.Add(SpriteShape_0189()); + // ShapeGroup: P + shapes.Add(SpriteShape_0190()); + // ShapeGroup: P + shapes.Add(SpriteShape_0191()); + // ShapeGroup: P + shapes.Add(SpriteShape_0192()); + // ShapeGroup: P + shapes.Add(SpriteShape_0193()); + // ShapeGroup: P + shapes.Add(SpriteShape_0194()); + // ShapeGroup: P + shapes.Add(SpriteShape_0195()); + // ShapeGroup: P + shapes.Add(SpriteShape_0196()); + // ShapeGroup: P + shapes.Add(SpriteShape_0197()); + // ShapeGroup: P + shapes.Add(SpriteShape_0198()); + // ShapeGroup: P + shapes.Add(SpriteShape_0199()); + // ShapeGroup: P + shapes.Add(SpriteShape_0200()); + // ShapeGroup: P + shapes.Add(SpriteShape_0201()); + // ShapeGroup: P + shapes.Add(SpriteShape_0202()); + // ShapeGroup: P + shapes.Add(SpriteShape_0203()); + // ShapeGroup: P + shapes.Add(SpriteShape_0204()); + // ShapeGroup: P + shapes.Add(SpriteShape_0205()); + // ShapeGroup: P + shapes.Add(SpriteShape_0206()); + // ShapeGroup: P + shapes.Add(SpriteShape_0207()); + // ShapeGroup: P + shapes.Add(SpriteShape_0208()); + // ShapeGroup: P + shapes.Add(SpriteShape_0209()); + // ShapeGroup: P + shapes.Add(SpriteShape_0210()); + // ShapeGroup: P + shapes.Add(SpriteShape_0211()); + // ShapeGroup: P + shapes.Add(SpriteShape_0212()); + // ShapeGroup: P + shapes.Add(SpriteShape_0213()); + // ShapeGroup: P + shapes.Add(SpriteShape_0214()); + // ShapeGroup: P + shapes.Add(SpriteShape_0215()); + // ShapeGroup: P + shapes.Add(SpriteShape_0216()); + // ShapeGroup: P + shapes.Add(SpriteShape_0217()); + // ShapeGroup: P + shapes.Add(SpriteShape_0218()); + // ShapeGroup: P + shapes.Add(SpriteShape_0219()); + // ShapeGroup: P + shapes.Add(SpriteShape_0220()); + // ShapeGroup: P + shapes.Add(SpriteShape_0221()); + // ShapeGroup: P + shapes.Add(SpriteShape_0222()); + // ShapeGroup: P + shapes.Add(SpriteShape_0223()); + // ShapeGroup: P + shapes.Add(SpriteShape_0224()); + // ShapeGroup: P + shapes.Add(SpriteShape_0225()); + // ShapeGroup: P + shapes.Add(SpriteShape_0226()); + // ShapeGroup: P + shapes.Add(SpriteShape_0227()); + // ShapeGroup: P + shapes.Add(SpriteShape_0228()); + // ShapeGroup: P + shapes.Add(SpriteShape_0229()); + // ShapeGroup: P + shapes.Add(SpriteShape_0230()); + // ShapeGroup: P + shapes.Add(SpriteShape_0231()); + // ShapeGroup: P + shapes.Add(SpriteShape_0232()); + // ShapeGroup: P + shapes.Add(SpriteShape_0233()); + // ShapeGroup: P + shapes.Add(SpriteShape_0234()); + // ShapeGroup: P + shapes.Add(SpriteShape_0235()); + // ShapeGroup: P + shapes.Add(SpriteShape_0236()); + // ShapeGroup: P + shapes.Add(SpriteShape_0237()); + // ShapeGroup: P + shapes.Add(SpriteShape_0238()); + // ShapeGroup: P + shapes.Add(SpriteShape_0239()); + // ShapeGroup: P + shapes.Add(SpriteShape_0240()); + // ShapeGroup: P + shapes.Add(SpriteShape_0241()); + // ShapeGroup: P + shapes.Add(SpriteShape_0242()); + // ShapeGroup: P + shapes.Add(SpriteShape_0243()); + // ShapeGroup: P + shapes.Add(SpriteShape_0244()); + // ShapeGroup: P + shapes.Add(SpriteShape_0245()); + // ShapeGroup: P + shapes.Add(SpriteShape_0246()); + // ShapeGroup: P + shapes.Add(SpriteShape_0247()); + // ShapeGroup: P + shapes.Add(SpriteShape_0248()); + // ShapeGroup: P + shapes.Add(SpriteShape_0249()); + // ShapeGroup: P + shapes.Add(SpriteShape_0250()); + // ShapeGroup: P + shapes.Add(SpriteShape_0251()); + // ShapeGroup: P + shapes.Add(SpriteShape_0252()); + // ShapeGroup: P + shapes.Add(SpriteShape_0253()); + // ShapeGroup: P + shapes.Add(SpriteShape_0254()); + // ShapeGroup: P + shapes.Add(SpriteShape_0255()); + // ShapeGroup: P + shapes.Add(SpriteShape_0256()); + // ShapeGroup: P + shapes.Add(SpriteShape_0257()); + // ShapeGroup: P + shapes.Add(SpriteShape_0258()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + CompositionContainerShape ContainerShape_12() + { + if (_containerShape_12 != null) { return _containerShape_12; } + var result = _containerShape_12 = _c.CreateContainerShape(); + var shapes = result.Shapes; + // ShapeGroup: P + shapes.Add(SpriteShape_0259()); + // ShapeGroup: P + shapes.Add(SpriteShape_0260()); + // ShapeGroup: P + shapes.Add(SpriteShape_0261()); + // ShapeGroup: P + shapes.Add(SpriteShape_0262()); + // ShapeGroup: P + shapes.Add(SpriteShape_0263()); + // ShapeGroup: P + shapes.Add(SpriteShape_0264()); + // ShapeGroup: P + shapes.Add(SpriteShape_0265()); + // ShapeGroup: P + shapes.Add(SpriteShape_0266()); + // ShapeGroup: P + shapes.Add(SpriteShape_0267()); + // ShapeGroup: P + shapes.Add(SpriteShape_0268()); + // ShapeGroup: P + shapes.Add(SpriteShape_0269()); + // ShapeGroup: P + shapes.Add(SpriteShape_0270()); + // ShapeGroup: P + shapes.Add(SpriteShape_0271()); + // ShapeGroup: P + shapes.Add(SpriteShape_0272()); + // ShapeGroup: P + shapes.Add(SpriteShape_0273()); + // ShapeGroup: P + shapes.Add(SpriteShape_0274()); + // ShapeGroup: P + shapes.Add(SpriteShape_0275()); + // ShapeGroup: P + shapes.Add(SpriteShape_0276()); + // ShapeGroup: P + shapes.Add(SpriteShape_0277()); + // ShapeGroup: P + shapes.Add(SpriteShape_0278()); + // ShapeGroup: P + shapes.Add(SpriteShape_0279()); + // ShapeGroup: P + shapes.Add(SpriteShape_0280()); + // ShapeGroup: P + shapes.Add(SpriteShape_0281()); + // ShapeGroup: P + shapes.Add(SpriteShape_0282()); + // ShapeGroup: P + shapes.Add(SpriteShape_0283()); + // ShapeGroup: P + shapes.Add(SpriteShape_0284()); + // ShapeGroup: P + shapes.Add(SpriteShape_0285()); + // ShapeGroup: P + shapes.Add(SpriteShape_0286()); + // ShapeGroup: P + shapes.Add(SpriteShape_0287()); + // ShapeGroup: P + shapes.Add(SpriteShape_0288()); + // ShapeGroup: P + shapes.Add(SpriteShape_0289()); + // ShapeGroup: P + shapes.Add(SpriteShape_0290()); + // ShapeGroup: P + shapes.Add(SpriteShape_0291()); + // ShapeGroup: P + shapes.Add(SpriteShape_0292()); + // ShapeGroup: P + shapes.Add(SpriteShape_0293()); + // ShapeGroup: P + shapes.Add(SpriteShape_0294()); + // ShapeGroup: P + shapes.Add(SpriteShape_0295()); + // ShapeGroup: P + shapes.Add(SpriteShape_0296()); + // ShapeGroup: P + shapes.Add(SpriteShape_0297()); + // ShapeGroup: P + shapes.Add(SpriteShape_0298()); + // ShapeGroup: P + shapes.Add(SpriteShape_0299()); + // ShapeGroup: P + shapes.Add(SpriteShape_0300()); + // ShapeGroup: P + shapes.Add(SpriteShape_0301()); + // ShapeGroup: P + shapes.Add(SpriteShape_0302()); + // ShapeGroup: P + shapes.Add(SpriteShape_0303()); + // ShapeGroup: P + shapes.Add(SpriteShape_0304()); + // ShapeGroup: P + shapes.Add(SpriteShape_0305()); + // ShapeGroup: P + shapes.Add(SpriteShape_0306()); + // ShapeGroup: P + shapes.Add(SpriteShape_0307()); + // ShapeGroup: P + shapes.Add(SpriteShape_0308()); + // ShapeGroup: P + shapes.Add(SpriteShape_0309()); + // ShapeGroup: P + shapes.Add(SpriteShape_0310()); + // ShapeGroup: P + shapes.Add(SpriteShape_0311()); + // ShapeGroup: P + shapes.Add(SpriteShape_0312()); + // ShapeGroup: P + shapes.Add(SpriteShape_0313()); + // ShapeGroup: P + shapes.Add(SpriteShape_0314()); + // ShapeGroup: P + shapes.Add(SpriteShape_0315()); + // ShapeGroup: P + shapes.Add(SpriteShape_0316()); + // ShapeGroup: P + shapes.Add(SpriteShape_0317()); + // ShapeGroup: P + shapes.Add(SpriteShape_0318()); + // ShapeGroup: P + shapes.Add(SpriteShape_0319()); + // ShapeGroup: P + shapes.Add(SpriteShape_0320()); + // ShapeGroup: P + shapes.Add(SpriteShape_0321()); + // ShapeGroup: P + shapes.Add(SpriteShape_0322()); + // ShapeGroup: P + shapes.Add(SpriteShape_0323()); + // ShapeGroup: P + shapes.Add(SpriteShape_0324()); + // ShapeGroup: P + shapes.Add(SpriteShape_0325()); + // ShapeGroup: P + shapes.Add(SpriteShape_0326()); + // ShapeGroup: P + shapes.Add(SpriteShape_0327()); + // ShapeGroup: P + shapes.Add(SpriteShape_0328()); + // ShapeGroup: P + shapes.Add(SpriteShape_0329()); + // ShapeGroup: P + shapes.Add(SpriteShape_0330()); + // ShapeGroup: P + shapes.Add(SpriteShape_0331()); + // ShapeGroup: P + shapes.Add(SpriteShape_0332()); + // ShapeGroup: P + shapes.Add(SpriteShape_0333()); + // ShapeGroup: P + shapes.Add(SpriteShape_0334()); + // ShapeGroup: P + shapes.Add(SpriteShape_0335()); + // ShapeGroup: P + shapes.Add(SpriteShape_0336()); + // ShapeGroup: P + shapes.Add(SpriteShape_0337()); + // ShapeGroup: P + shapes.Add(SpriteShape_0338()); + // ShapeGroup: P + shapes.Add(SpriteShape_0339()); + // ShapeGroup: P + shapes.Add(SpriteShape_0340()); + // ShapeGroup: P + shapes.Add(SpriteShape_0341()); + // ShapeGroup: P + shapes.Add(SpriteShape_0342()); + // ShapeGroup: P + shapes.Add(SpriteShape_0343()); + // ShapeGroup: P + shapes.Add(SpriteShape_0344()); + // ShapeGroup: P + shapes.Add(SpriteShape_0345()); + // ShapeGroup: P + shapes.Add(SpriteShape_0346()); + // ShapeGroup: P + shapes.Add(SpriteShape_0347()); + // ShapeGroup: P + shapes.Add(SpriteShape_0348()); + // ShapeGroup: P + shapes.Add(SpriteShape_0349()); + // ShapeGroup: P + shapes.Add(SpriteShape_0350()); + // ShapeGroup: P + shapes.Add(SpriteShape_0351()); + // ShapeGroup: P + shapes.Add(SpriteShape_0352()); + // ShapeGroup: P + shapes.Add(SpriteShape_0353()); + // ShapeGroup: P + shapes.Add(SpriteShape_0354()); + // ShapeGroup: P + shapes.Add(SpriteShape_0355()); + // ShapeGroup: P + shapes.Add(SpriteShape_0356()); + // ShapeGroup: P + shapes.Add(SpriteShape_0357()); + // ShapeGroup: P + shapes.Add(SpriteShape_0358()); + // ShapeGroup: P + shapes.Add(SpriteShape_0359()); + // ShapeGroup: P + shapes.Add(SpriteShape_0360()); + // ShapeGroup: P + shapes.Add(SpriteShape_0361()); + // ShapeGroup: P + shapes.Add(SpriteShape_0362()); + // ShapeGroup: P + shapes.Add(SpriteShape_0363()); + // ShapeGroup: P + shapes.Add(SpriteShape_0364()); + // ShapeGroup: P + shapes.Add(SpriteShape_0365()); + // ShapeGroup: P + shapes.Add(SpriteShape_0366()); + // ShapeGroup: P + shapes.Add(SpriteShape_0367()); + // ShapeGroup: P + shapes.Add(SpriteShape_0368()); + // ShapeGroup: P + shapes.Add(SpriteShape_0369()); + // ShapeGroup: P + shapes.Add(SpriteShape_0370()); + // ShapeGroup: P + shapes.Add(SpriteShape_0371()); + // ShapeGroup: P + shapes.Add(SpriteShape_0372()); + // ShapeGroup: P + shapes.Add(SpriteShape_0373()); + // ShapeGroup: P + shapes.Add(SpriteShape_0374()); + // ShapeGroup: P + shapes.Add(SpriteShape_0375()); + // ShapeGroup: P + shapes.Add(SpriteShape_0376()); + // ShapeGroup: P + shapes.Add(SpriteShape_0377()); + // ShapeGroup: P + shapes.Add(SpriteShape_0378()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + CompositionContainerShape ContainerShape_13() + { + if (_containerShape_13 != null) { return _containerShape_13; } + var result = _containerShape_13 = _c.CreateContainerShape(); + var shapes = result.Shapes; + // ShapeGroup: P + shapes.Add(SpriteShape_0379()); + // ShapeGroup: P + shapes.Add(SpriteShape_0380()); + // ShapeGroup: P + shapes.Add(SpriteShape_0381()); + // ShapeGroup: P + shapes.Add(SpriteShape_0382()); + // ShapeGroup: P + shapes.Add(SpriteShape_0383()); + // ShapeGroup: P + shapes.Add(SpriteShape_0384()); + // ShapeGroup: P + shapes.Add(SpriteShape_0385()); + // ShapeGroup: P + shapes.Add(SpriteShape_0386()); + // ShapeGroup: P + shapes.Add(SpriteShape_0387()); + // ShapeGroup: P + shapes.Add(SpriteShape_0388()); + // ShapeGroup: P + shapes.Add(SpriteShape_0389()); + // ShapeGroup: P + shapes.Add(SpriteShape_0390()); + // ShapeGroup: P + shapes.Add(SpriteShape_0391()); + // ShapeGroup: P + shapes.Add(SpriteShape_0392()); + // ShapeGroup: P + shapes.Add(SpriteShape_0393()); + // ShapeGroup: P + shapes.Add(SpriteShape_0394()); + // ShapeGroup: P + shapes.Add(SpriteShape_0395()); + // ShapeGroup: P + shapes.Add(SpriteShape_0396()); + // ShapeGroup: P + shapes.Add(SpriteShape_0397()); + // ShapeGroup: P + shapes.Add(SpriteShape_0398()); + // ShapeGroup: P + shapes.Add(SpriteShape_0399()); + // ShapeGroup: P + shapes.Add(SpriteShape_0400()); + // ShapeGroup: P + shapes.Add(SpriteShape_0401()); + // ShapeGroup: P + shapes.Add(SpriteShape_0402()); + // ShapeGroup: P + shapes.Add(SpriteShape_0403()); + // ShapeGroup: P + shapes.Add(SpriteShape_0404()); + // ShapeGroup: P + shapes.Add(SpriteShape_0405()); + // ShapeGroup: P + shapes.Add(SpriteShape_0406()); + // ShapeGroup: P + shapes.Add(SpriteShape_0407()); + // ShapeGroup: P + shapes.Add(SpriteShape_0408()); + // ShapeGroup: P + shapes.Add(SpriteShape_0409()); + // ShapeGroup: P + shapes.Add(SpriteShape_0410()); + // ShapeGroup: P + shapes.Add(SpriteShape_0411()); + // ShapeGroup: P + shapes.Add(SpriteShape_0412()); + // ShapeGroup: P + shapes.Add(SpriteShape_0413()); + // ShapeGroup: P + shapes.Add(SpriteShape_0414()); + // ShapeGroup: P + shapes.Add(SpriteShape_0415()); + // ShapeGroup: P + shapes.Add(SpriteShape_0416()); + // ShapeGroup: P + shapes.Add(SpriteShape_0417()); + // ShapeGroup: P + shapes.Add(SpriteShape_0418()); + // ShapeGroup: P + shapes.Add(SpriteShape_0419()); + // ShapeGroup: P + shapes.Add(SpriteShape_0420()); + // ShapeGroup: P + shapes.Add(SpriteShape_0421()); + // ShapeGroup: P + shapes.Add(SpriteShape_0422()); + // ShapeGroup: P + shapes.Add(SpriteShape_0423()); + // ShapeGroup: P + shapes.Add(SpriteShape_0424()); + // ShapeGroup: P + shapes.Add(SpriteShape_0425()); + // ShapeGroup: P + shapes.Add(SpriteShape_0426()); + // ShapeGroup: P + shapes.Add(SpriteShape_0427()); + // ShapeGroup: P + shapes.Add(SpriteShape_0428()); + // ShapeGroup: P + shapes.Add(SpriteShape_0429()); + // ShapeGroup: P + shapes.Add(SpriteShape_0430()); + // ShapeGroup: P + shapes.Add(SpriteShape_0431()); + // ShapeGroup: P + shapes.Add(SpriteShape_0432()); + // ShapeGroup: P + shapes.Add(SpriteShape_0433()); + // ShapeGroup: P + shapes.Add(SpriteShape_0434()); + // ShapeGroup: P + shapes.Add(SpriteShape_0435()); + // ShapeGroup: P + shapes.Add(SpriteShape_0436()); + // ShapeGroup: P + shapes.Add(SpriteShape_0437()); + // ShapeGroup: P + shapes.Add(SpriteShape_0438()); + // ShapeGroup: P + shapes.Add(SpriteShape_0439()); + // ShapeGroup: P + shapes.Add(SpriteShape_0440()); + // ShapeGroup: P + shapes.Add(SpriteShape_0441()); + // ShapeGroup: P + shapes.Add(SpriteShape_0442()); + // ShapeGroup: P + shapes.Add(SpriteShape_0443()); + // ShapeGroup: P + shapes.Add(SpriteShape_0444()); + // ShapeGroup: P + shapes.Add(SpriteShape_0445()); + // ShapeGroup: P + shapes.Add(SpriteShape_0446()); + // ShapeGroup: P + shapes.Add(SpriteShape_0447()); + // ShapeGroup: P + shapes.Add(SpriteShape_0448()); + // ShapeGroup: P + shapes.Add(SpriteShape_0449()); + // ShapeGroup: P + shapes.Add(SpriteShape_0450()); + // ShapeGroup: P + shapes.Add(SpriteShape_0451()); + // ShapeGroup: P + shapes.Add(SpriteShape_0452()); + // ShapeGroup: P + shapes.Add(SpriteShape_0453()); + // ShapeGroup: P + shapes.Add(SpriteShape_0454()); + // ShapeGroup: P + shapes.Add(SpriteShape_0455()); + // ShapeGroup: P + shapes.Add(SpriteShape_0456()); + // ShapeGroup: P + shapes.Add(SpriteShape_0457()); + // ShapeGroup: P + shapes.Add(SpriteShape_0458()); + // ShapeGroup: P + shapes.Add(SpriteShape_0459()); + // ShapeGroup: P + shapes.Add(SpriteShape_0460()); + // ShapeGroup: P + shapes.Add(SpriteShape_0461()); + // ShapeGroup: P + shapes.Add(SpriteShape_0462()); + // ShapeGroup: P + shapes.Add(SpriteShape_0463()); + // ShapeGroup: P + shapes.Add(SpriteShape_0464()); + // ShapeGroup: P + shapes.Add(SpriteShape_0465()); + // ShapeGroup: P + shapes.Add(SpriteShape_0466()); + // ShapeGroup: P + shapes.Add(SpriteShape_0467()); + // ShapeGroup: P + shapes.Add(SpriteShape_0468()); + // ShapeGroup: P + shapes.Add(SpriteShape_0469()); + // ShapeGroup: P + shapes.Add(SpriteShape_0470()); + // ShapeGroup: P + shapes.Add(SpriteShape_0471()); + // ShapeGroup: P + shapes.Add(SpriteShape_0472()); + // ShapeGroup: P + shapes.Add(SpriteShape_0473()); + // ShapeGroup: P + shapes.Add(SpriteShape_0474()); + // ShapeGroup: P + shapes.Add(SpriteShape_0475()); + // ShapeGroup: P + shapes.Add(SpriteShape_0476()); + // ShapeGroup: P + shapes.Add(SpriteShape_0477()); + // ShapeGroup: P + shapes.Add(SpriteShape_0478()); + // ShapeGroup: P + shapes.Add(SpriteShape_0479()); + // ShapeGroup: P + shapes.Add(SpriteShape_0480()); + // ShapeGroup: P + shapes.Add(SpriteShape_0481()); + // ShapeGroup: P + shapes.Add(SpriteShape_0482()); + // ShapeGroup: P + shapes.Add(SpriteShape_0483()); + // ShapeGroup: P + shapes.Add(SpriteShape_0484()); + // ShapeGroup: P + shapes.Add(SpriteShape_0485()); + // ShapeGroup: P + shapes.Add(SpriteShape_0486()); + // ShapeGroup: P + shapes.Add(SpriteShape_0487()); + // ShapeGroup: P + shapes.Add(SpriteShape_0488()); + // ShapeGroup: P + shapes.Add(SpriteShape_0489()); + // ShapeGroup: P + shapes.Add(SpriteShape_0490()); + // ShapeGroup: P + shapes.Add(SpriteShape_0491()); + // ShapeGroup: P + shapes.Add(SpriteShape_0492()); + // ShapeGroup: P + shapes.Add(SpriteShape_0493()); + // ShapeGroup: P + shapes.Add(SpriteShape_0494()); + // ShapeGroup: P + shapes.Add(SpriteShape_0495()); + // ShapeGroup: P + shapes.Add(SpriteShape_0496()); + // ShapeGroup: P + shapes.Add(SpriteShape_0497()); + // ShapeGroup: P + shapes.Add(SpriteShape_0498()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + CompositionContainerShape ContainerShape_14() + { + if (_containerShape_14 != null) { return _containerShape_14; } + var result = _containerShape_14 = _c.CreateContainerShape(); + var shapes = result.Shapes; + // ShapeGroup: P + shapes.Add(SpriteShape_0499()); + // ShapeGroup: P + shapes.Add(SpriteShape_0500()); + // ShapeGroup: P + shapes.Add(SpriteShape_0501()); + // ShapeGroup: P + shapes.Add(SpriteShape_0502()); + // ShapeGroup: P + shapes.Add(SpriteShape_0503()); + // ShapeGroup: P + shapes.Add(SpriteShape_0504()); + // ShapeGroup: P + shapes.Add(SpriteShape_0505()); + // ShapeGroup: P + shapes.Add(SpriteShape_0506()); + // ShapeGroup: P + shapes.Add(SpriteShape_0507()); + // ShapeGroup: P + shapes.Add(SpriteShape_0508()); + // ShapeGroup: P + shapes.Add(SpriteShape_0509()); + // ShapeGroup: P + shapes.Add(SpriteShape_0510()); + // ShapeGroup: P + shapes.Add(SpriteShape_0511()); + // ShapeGroup: P + shapes.Add(SpriteShape_0512()); + // ShapeGroup: P + shapes.Add(SpriteShape_0513()); + // ShapeGroup: P + shapes.Add(SpriteShape_0514()); + // ShapeGroup: P + shapes.Add(SpriteShape_0515()); + // ShapeGroup: P + shapes.Add(SpriteShape_0516()); + // ShapeGroup: P + shapes.Add(SpriteShape_0517()); + // ShapeGroup: P + shapes.Add(SpriteShape_0518()); + // ShapeGroup: P + shapes.Add(SpriteShape_0519()); + // ShapeGroup: P + shapes.Add(SpriteShape_0520()); + // ShapeGroup: P + shapes.Add(SpriteShape_0521()); + // ShapeGroup: P + shapes.Add(SpriteShape_0522()); + // ShapeGroup: P + shapes.Add(SpriteShape_0523()); + // ShapeGroup: P + shapes.Add(SpriteShape_0524()); + // ShapeGroup: P + shapes.Add(SpriteShape_0525()); + // ShapeGroup: P + shapes.Add(SpriteShape_0526()); + // ShapeGroup: P + shapes.Add(SpriteShape_0527()); + // ShapeGroup: P + shapes.Add(SpriteShape_0528()); + // ShapeGroup: P + shapes.Add(SpriteShape_0529()); + // ShapeGroup: P + shapes.Add(SpriteShape_0530()); + // ShapeGroup: P + shapes.Add(SpriteShape_0531()); + // ShapeGroup: P + shapes.Add(SpriteShape_0532()); + // ShapeGroup: P + shapes.Add(SpriteShape_0533()); + // ShapeGroup: P + shapes.Add(SpriteShape_0534()); + // ShapeGroup: P + shapes.Add(SpriteShape_0535()); + // ShapeGroup: P + shapes.Add(SpriteShape_0536()); + // ShapeGroup: P + shapes.Add(SpriteShape_0537()); + // ShapeGroup: P + shapes.Add(SpriteShape_0538()); + // ShapeGroup: P + shapes.Add(SpriteShape_0539()); + // ShapeGroup: P + shapes.Add(SpriteShape_0540()); + // ShapeGroup: P + shapes.Add(SpriteShape_0541()); + // ShapeGroup: P + shapes.Add(SpriteShape_0542()); + // ShapeGroup: P + shapes.Add(SpriteShape_0543()); + // ShapeGroup: P + shapes.Add(SpriteShape_0544()); + // ShapeGroup: P + shapes.Add(SpriteShape_0545()); + // ShapeGroup: P + shapes.Add(SpriteShape_0546()); + // ShapeGroup: P + shapes.Add(SpriteShape_0547()); + // ShapeGroup: P + shapes.Add(SpriteShape_0548()); + // ShapeGroup: P + shapes.Add(SpriteShape_0549()); + // ShapeGroup: P + shapes.Add(SpriteShape_0550()); + // ShapeGroup: P + shapes.Add(SpriteShape_0551()); + // ShapeGroup: P + shapes.Add(SpriteShape_0552()); + // ShapeGroup: P + shapes.Add(SpriteShape_0553()); + // ShapeGroup: P + shapes.Add(SpriteShape_0554()); + // ShapeGroup: P + shapes.Add(SpriteShape_0555()); + // ShapeGroup: P + shapes.Add(SpriteShape_0556()); + // ShapeGroup: P + shapes.Add(SpriteShape_0557()); + // ShapeGroup: P + shapes.Add(SpriteShape_0558()); + // ShapeGroup: P + shapes.Add(SpriteShape_0559()); + // ShapeGroup: P + shapes.Add(SpriteShape_0560()); + // ShapeGroup: P + shapes.Add(SpriteShape_0561()); + // ShapeGroup: P + shapes.Add(SpriteShape_0562()); + // ShapeGroup: P + shapes.Add(SpriteShape_0563()); + // ShapeGroup: P + shapes.Add(SpriteShape_0564()); + // ShapeGroup: P + shapes.Add(SpriteShape_0565()); + // ShapeGroup: P + shapes.Add(SpriteShape_0566()); + // ShapeGroup: P + shapes.Add(SpriteShape_0567()); + // ShapeGroup: P + shapes.Add(SpriteShape_0568()); + // ShapeGroup: P + shapes.Add(SpriteShape_0569()); + // ShapeGroup: P + shapes.Add(SpriteShape_0570()); + // ShapeGroup: P + shapes.Add(SpriteShape_0571()); + // ShapeGroup: P + shapes.Add(SpriteShape_0572()); + // ShapeGroup: P + shapes.Add(SpriteShape_0573()); + // ShapeGroup: P + shapes.Add(SpriteShape_0574()); + // ShapeGroup: P + shapes.Add(SpriteShape_0575()); + // ShapeGroup: P + shapes.Add(SpriteShape_0576()); + // ShapeGroup: P + shapes.Add(SpriteShape_0577()); + // ShapeGroup: P + shapes.Add(SpriteShape_0578()); + // ShapeGroup: P + shapes.Add(SpriteShape_0579()); + // ShapeGroup: P + shapes.Add(SpriteShape_0580()); + // ShapeGroup: P + shapes.Add(SpriteShape_0581()); + // ShapeGroup: P + shapes.Add(SpriteShape_0582()); + // ShapeGroup: P + shapes.Add(SpriteShape_0583()); + // ShapeGroup: P + shapes.Add(SpriteShape_0584()); + // ShapeGroup: P + shapes.Add(SpriteShape_0585()); + // ShapeGroup: P + shapes.Add(SpriteShape_0586()); + // ShapeGroup: P + shapes.Add(SpriteShape_0587()); + // ShapeGroup: P + shapes.Add(SpriteShape_0588()); + // ShapeGroup: P + shapes.Add(SpriteShape_0589()); + // ShapeGroup: P + shapes.Add(SpriteShape_0590()); + // ShapeGroup: P + shapes.Add(SpriteShape_0591()); + // ShapeGroup: P + shapes.Add(SpriteShape_0592()); + // ShapeGroup: P + shapes.Add(SpriteShape_0593()); + // ShapeGroup: P + shapes.Add(SpriteShape_0594()); + // ShapeGroup: P + shapes.Add(SpriteShape_0595()); + // ShapeGroup: P + shapes.Add(SpriteShape_0596()); + // ShapeGroup: P + shapes.Add(SpriteShape_0597()); + // ShapeGroup: P + shapes.Add(SpriteShape_0598()); + // ShapeGroup: P + shapes.Add(SpriteShape_0599()); + // ShapeGroup: P + shapes.Add(SpriteShape_0600()); + // ShapeGroup: P + shapes.Add(SpriteShape_0601()); + // ShapeGroup: P + shapes.Add(SpriteShape_0602()); + // ShapeGroup: P + shapes.Add(SpriteShape_0603()); + // ShapeGroup: P + shapes.Add(SpriteShape_0604()); + // ShapeGroup: P + shapes.Add(SpriteShape_0605()); + // ShapeGroup: P + shapes.Add(SpriteShape_0606()); + // ShapeGroup: P + shapes.Add(SpriteShape_0607()); + // ShapeGroup: P + shapes.Add(SpriteShape_0608()); + // ShapeGroup: P + shapes.Add(SpriteShape_0609()); + // ShapeGroup: P + shapes.Add(SpriteShape_0610()); + // ShapeGroup: P + shapes.Add(SpriteShape_0611()); + // ShapeGroup: P + shapes.Add(SpriteShape_0612()); + // ShapeGroup: P + shapes.Add(SpriteShape_0613()); + // ShapeGroup: P + shapes.Add(SpriteShape_0614()); + // ShapeGroup: P + shapes.Add(SpriteShape_0615()); + // ShapeGroup: P + shapes.Add(SpriteShape_0616()); + // ShapeGroup: P + shapes.Add(SpriteShape_0617()); + // ShapeGroup: P + shapes.Add(SpriteShape_0618()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + CompositionContainerShape ContainerShape_15() + { + if (_containerShape_15 != null) { return _containerShape_15; } + var result = _containerShape_15 = _c.CreateContainerShape(); + var shapes = result.Shapes; + // ShapeGroup: P + shapes.Add(SpriteShape_0619()); + // ShapeGroup: P + shapes.Add(SpriteShape_0620()); + // ShapeGroup: P + shapes.Add(SpriteShape_0621()); + // ShapeGroup: P + shapes.Add(SpriteShape_0622()); + // ShapeGroup: P + shapes.Add(SpriteShape_0623()); + // ShapeGroup: P + shapes.Add(SpriteShape_0624()); + // ShapeGroup: P + shapes.Add(SpriteShape_0625()); + // ShapeGroup: P + shapes.Add(SpriteShape_0626()); + // ShapeGroup: P + shapes.Add(SpriteShape_0627()); + // ShapeGroup: P + shapes.Add(SpriteShape_0628()); + // ShapeGroup: P + shapes.Add(SpriteShape_0629()); + // ShapeGroup: P + shapes.Add(SpriteShape_0630()); + // ShapeGroup: P + shapes.Add(SpriteShape_0631()); + // ShapeGroup: P + shapes.Add(SpriteShape_0632()); + // ShapeGroup: P + shapes.Add(SpriteShape_0633()); + // ShapeGroup: P + shapes.Add(SpriteShape_0634()); + // ShapeGroup: P + shapes.Add(SpriteShape_0635()); + // ShapeGroup: P + shapes.Add(SpriteShape_0636()); + // ShapeGroup: P + shapes.Add(SpriteShape_0637()); + // ShapeGroup: P + shapes.Add(SpriteShape_0638()); + // ShapeGroup: P + shapes.Add(SpriteShape_0639()); + // ShapeGroup: P + shapes.Add(SpriteShape_0640()); + // ShapeGroup: P + shapes.Add(SpriteShape_0641()); + // ShapeGroup: P + shapes.Add(SpriteShape_0642()); + // ShapeGroup: P + shapes.Add(SpriteShape_0643()); + // ShapeGroup: P + shapes.Add(SpriteShape_0644()); + // ShapeGroup: P + shapes.Add(SpriteShape_0645()); + // ShapeGroup: P + shapes.Add(SpriteShape_0646()); + // ShapeGroup: P + shapes.Add(SpriteShape_0647()); + // ShapeGroup: P + shapes.Add(SpriteShape_0648()); + // ShapeGroup: P + shapes.Add(SpriteShape_0649()); + // ShapeGroup: P + shapes.Add(SpriteShape_0650()); + // ShapeGroup: P + shapes.Add(SpriteShape_0651()); + // ShapeGroup: P + shapes.Add(SpriteShape_0652()); + // ShapeGroup: P + shapes.Add(SpriteShape_0653()); + // ShapeGroup: P + shapes.Add(SpriteShape_0654()); + // ShapeGroup: P + shapes.Add(SpriteShape_0655()); + // ShapeGroup: P + shapes.Add(SpriteShape_0656()); + // ShapeGroup: P + shapes.Add(SpriteShape_0657()); + // ShapeGroup: P + shapes.Add(SpriteShape_0658()); + // ShapeGroup: P + shapes.Add(SpriteShape_0659()); + // ShapeGroup: P + shapes.Add(SpriteShape_0660()); + // ShapeGroup: P + shapes.Add(SpriteShape_0661()); + // ShapeGroup: P + shapes.Add(SpriteShape_0662()); + // ShapeGroup: P + shapes.Add(SpriteShape_0663()); + // ShapeGroup: P + shapes.Add(SpriteShape_0664()); + // ShapeGroup: P + shapes.Add(SpriteShape_0665()); + // ShapeGroup: P + shapes.Add(SpriteShape_0666()); + // ShapeGroup: P + shapes.Add(SpriteShape_0667()); + // ShapeGroup: P + shapes.Add(SpriteShape_0668()); + // ShapeGroup: P + shapes.Add(SpriteShape_0669()); + // ShapeGroup: P + shapes.Add(SpriteShape_0670()); + // ShapeGroup: P + shapes.Add(SpriteShape_0671()); + // ShapeGroup: P + shapes.Add(SpriteShape_0672()); + // ShapeGroup: P + shapes.Add(SpriteShape_0673()); + // ShapeGroup: P + shapes.Add(SpriteShape_0674()); + // ShapeGroup: P + shapes.Add(SpriteShape_0675()); + // ShapeGroup: P + shapes.Add(SpriteShape_0676()); + // ShapeGroup: P + shapes.Add(SpriteShape_0677()); + // ShapeGroup: P + shapes.Add(SpriteShape_0678()); + // ShapeGroup: P + shapes.Add(SpriteShape_0679()); + // ShapeGroup: P + shapes.Add(SpriteShape_0680()); + // ShapeGroup: P + shapes.Add(SpriteShape_0681()); + // ShapeGroup: P + shapes.Add(SpriteShape_0682()); + // ShapeGroup: P + shapes.Add(SpriteShape_0683()); + // ShapeGroup: P + shapes.Add(SpriteShape_0684()); + // ShapeGroup: P + shapes.Add(SpriteShape_0685()); + // ShapeGroup: P + shapes.Add(SpriteShape_0686()); + // ShapeGroup: P + shapes.Add(SpriteShape_0687()); + // ShapeGroup: P + shapes.Add(SpriteShape_0688()); + // ShapeGroup: P + shapes.Add(SpriteShape_0689()); + // ShapeGroup: P + shapes.Add(SpriteShape_0690()); + // ShapeGroup: P + shapes.Add(SpriteShape_0691()); + // ShapeGroup: P + shapes.Add(SpriteShape_0692()); + // ShapeGroup: P + shapes.Add(SpriteShape_0693()); + // ShapeGroup: P + shapes.Add(SpriteShape_0694()); + // ShapeGroup: P + shapes.Add(SpriteShape_0695()); + // ShapeGroup: P + shapes.Add(SpriteShape_0696()); + // ShapeGroup: P + shapes.Add(SpriteShape_0697()); + // ShapeGroup: P + shapes.Add(SpriteShape_0698()); + // ShapeGroup: P + shapes.Add(SpriteShape_0699()); + // ShapeGroup: P + shapes.Add(SpriteShape_0700()); + // ShapeGroup: P + shapes.Add(SpriteShape_0701()); + // ShapeGroup: P + shapes.Add(SpriteShape_0702()); + // ShapeGroup: P + shapes.Add(SpriteShape_0703()); + // ShapeGroup: P + shapes.Add(SpriteShape_0704()); + // ShapeGroup: P + shapes.Add(SpriteShape_0705()); + // ShapeGroup: P + shapes.Add(SpriteShape_0706()); + // ShapeGroup: P + shapes.Add(SpriteShape_0707()); + // ShapeGroup: P + shapes.Add(SpriteShape_0708()); + // ShapeGroup: P + shapes.Add(SpriteShape_0709()); + // ShapeGroup: P + shapes.Add(SpriteShape_0710()); + // ShapeGroup: P + shapes.Add(SpriteShape_0711()); + // ShapeGroup: P + shapes.Add(SpriteShape_0712()); + // ShapeGroup: P + shapes.Add(SpriteShape_0713()); + // ShapeGroup: P + shapes.Add(SpriteShape_0714()); + // ShapeGroup: P + shapes.Add(SpriteShape_0715()); + // ShapeGroup: P + shapes.Add(SpriteShape_0716()); + // ShapeGroup: P + shapes.Add(SpriteShape_0717()); + // ShapeGroup: P + shapes.Add(SpriteShape_0718()); + // ShapeGroup: P + shapes.Add(SpriteShape_0719()); + // ShapeGroup: P + shapes.Add(SpriteShape_0720()); + // ShapeGroup: P + shapes.Add(SpriteShape_0721()); + // ShapeGroup: P + shapes.Add(SpriteShape_0722()); + // ShapeGroup: P + shapes.Add(SpriteShape_0723()); + // ShapeGroup: P + shapes.Add(SpriteShape_0724()); + // ShapeGroup: P + shapes.Add(SpriteShape_0725()); + // ShapeGroup: P + shapes.Add(SpriteShape_0726()); + // ShapeGroup: P + shapes.Add(SpriteShape_0727()); + // ShapeGroup: P + shapes.Add(SpriteShape_0728()); + // ShapeGroup: P + shapes.Add(SpriteShape_0729()); + // ShapeGroup: P + shapes.Add(SpriteShape_0730()); + // ShapeGroup: P + shapes.Add(SpriteShape_0731()); + // ShapeGroup: P + shapes.Add(SpriteShape_0732()); + // ShapeGroup: P + shapes.Add(SpriteShape_0733()); + // ShapeGroup: P + shapes.Add(SpriteShape_0734()); + // ShapeGroup: P + shapes.Add(SpriteShape_0735()); + // ShapeGroup: P + shapes.Add(SpriteShape_0736()); + // ShapeGroup: P + shapes.Add(SpriteShape_0737()); + // ShapeGroup: P + shapes.Add(SpriteShape_0738()); + return result; + } + + // Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + CompositionContainerShape ContainerShape_16() + { + if (_containerShape_16 != null) { return _containerShape_16; } + var result = _containerShape_16 = _c.CreateContainerShape(); + result.Scale = new Vector2(0F, 0F); + var shapes = result.Shapes; + // Offset:<964, 609> + shapes.Add(SpriteShape_0757()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0758()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0759()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0760()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0761()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0762()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0763()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0764()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0765()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0766()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0767()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0768()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0769()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0770()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0771()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0772()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0773()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0774()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0775()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0776()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0777()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0778()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0779()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0780()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0781()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0782()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0783()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0784()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0785()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0786()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0787()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0788()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0789()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0790()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0791()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0792()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0793()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0794()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0795()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0796()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0797()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0798()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0799()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0800()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0801()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0802()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0803()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0804()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0805()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0806()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0807()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0808()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0809()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0810()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0811()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0812()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0813()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0814()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0815()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0816()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0817()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0818()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0819()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0820()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0821()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0822()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0823()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0824()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0825()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0826()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0827()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0828()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0829()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0830()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0831()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0832()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0833()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0834()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0835()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0836()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0837()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0838()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0839()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0840()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0841()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0842()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0843()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0844()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0845()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0846()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0847()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0848()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0849()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0850()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0851()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0852()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0853()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0854()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0855()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0856()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0857()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0858()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0859()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0860()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0861()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0862()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0863()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0864()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0865()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0866()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0867()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0868()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0869()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0870()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0871()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0872()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0873()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0874()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0875()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0876()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0877()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0878()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0879()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0880()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0881()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0882()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0883()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0884()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0885()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0886()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0887()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0888()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0889()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0890()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0891()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0892()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0893()); + // Offset:<964, 609> + shapes.Add(SpriteShape_0894()); + return result; + } + + // Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + CompositionContainerShape ContainerShape_17() + { + if (_containerShape_17 != null) { return _containerShape_17; } + var result = _containerShape_17 = _c.CreateContainerShape(); + result.Scale = new Vector2(0F, 0F); + var shapes = result.Shapes; + // Offset:<964, 726> + shapes.Add(SpriteShape_0895()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0896()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0897()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0898()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0899()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0900()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0901()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0902()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0903()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0904()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0905()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0906()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0907()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0908()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0909()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0910()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0911()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0912()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0913()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0914()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0915()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0916()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0917()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0918()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0919()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0920()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0921()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0922()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0923()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0924()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0925()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0926()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0927()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0928()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0929()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0930()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0931()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0932()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0933()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0934()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0935()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0936()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0937()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0938()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0939()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0940()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0941()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0942()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0943()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0944()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0945()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0946()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0947()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0948()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0949()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0950()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0951()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0952()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0953()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0954()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0955()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0956()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0957()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0958()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0959()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0960()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0961()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0962()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0963()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0964()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0965()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0966()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0967()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0968()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0969()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0970()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0971()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0972()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0973()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0974()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0975()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0976()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0977()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0978()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0979()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0980()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0981()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0982()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0983()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0984()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0985()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0986()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0987()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0988()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0989()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0990()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0991()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0992()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0993()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0994()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0995()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0996()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0997()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0998()); + // Offset:<964, 726> + shapes.Add(SpriteShape_0999()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1000()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1001()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1002()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1003()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1004()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1005()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1006()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1007()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1008()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1009()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1010()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1011()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1012()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1013()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1014()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1015()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1016()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1017()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1018()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1019()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1020()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1021()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1022()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1023()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1024()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1025()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1026()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1027()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1028()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1029()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1030()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1031()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1032()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1033()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1034()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1035()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1036()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1037()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1038()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1039()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1040()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1041()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1042()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1043()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1044()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1045()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1046()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1047()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1048()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1049()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1050()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1051()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1052()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1053()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1054()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1055()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1056()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1057()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1058()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1059()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1060()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1061()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1062()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1063()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1064()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1065()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1066()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1067()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1068()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1069()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1070()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1071()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1072()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1073()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1074()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1075()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1076()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1077()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1078()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1079()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1080()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1081()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1082()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1083()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1084()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1085()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1086()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1087()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1088()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1089()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1090()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1091()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1092()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1093()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1094()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1095()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1096()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1097()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1098()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1099()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1100()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1101()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1102()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1103()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1104()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1105()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1106()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1107()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1108()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1109()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1110()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1111()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1112()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1113()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1114()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1115()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1116()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1117()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1118()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1119()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1120()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1121()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1122()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1123()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1124()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1125()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1126()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1127()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1128()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1129()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1130()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1131()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1132()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1133()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1134()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1135()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1136()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1137()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1138()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1139()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1140()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1141()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1142()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1143()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1144()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1145()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1146()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1147()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1148()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1149()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1150()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1151()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1152()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1153()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1154()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1155()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1156()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1157()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1158()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1159()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1160()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1161()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1162()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1163()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1164()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1165()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1166()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1167()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1168()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1169()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1170()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1171()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1172()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1173()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1174()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1175()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1176()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1177()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1178()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1179()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1180()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1181()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1182()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1183()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1184()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1185()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1186()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1187()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1188()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1189()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1190()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1191()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1192()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1193()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1194()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1195()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1196()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1197()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1198()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1199()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1200()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1201()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1202()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1203()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1204()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1205()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1206()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1207()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1208()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1209()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1210()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1211()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1212()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1213()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1214()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1215()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1216()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1217()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1218()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1219()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1220()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1221()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1222()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1223()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1224()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1225()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1226()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1227()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1228()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1229()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1230()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1231()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1232()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1233()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1234()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1235()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1236()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1237()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1238()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1239()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1240()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1241()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1242()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1243()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1244()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1245()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1246()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1247()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1248()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1249()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1250()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1251()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1252()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1253()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1254()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1255()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1256()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1257()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1258()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1259()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1260()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1261()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1262()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1263()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1264()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1265()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1266()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1267()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1268()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1269()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1270()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1271()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1272()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1273()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1274()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1275()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1276()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1277()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1278()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1279()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1280()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1281()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1282()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1283()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1284()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1285()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1286()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1287()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1288()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1289()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1290()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1291()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1292()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1293()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1294()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1295()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1296()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1297()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1298()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1299()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1300()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1301()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1302()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1303()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1304()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1305()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1306()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1307()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1308()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1309()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1310()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1311()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1312()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1313()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1314()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1315()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1316()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1317()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1318()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1319()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1320()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1321()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1322()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1323()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1324()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1325()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1326()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1327()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1328()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1329()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1330()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1331()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1332()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1333()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1334()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1335()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1336()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1337()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1338()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1339()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1340()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1341()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1342()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1343()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1344()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1345()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1346()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1347()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1348()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1349()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1350()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1351()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1352()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1353()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1354()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1355()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1356()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1357()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1358()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1359()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1360()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1361()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1362()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1363()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1364()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1365()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1366()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1367()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1368()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1369()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1370()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1371()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1372()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1373()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1374()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1375()); + // Offset:<964, 726> + shapes.Add(SpriteShape_1376()); + return result; + } + + // Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + CompositionContainerShape ContainerShape_18() + { + if (_containerShape_18 != null) { return _containerShape_18; } + var result = _containerShape_18 = _c.CreateContainerShape(); + result.Scale = new Vector2(0F, 0F); + var shapes = result.Shapes; + // Offset:<964, 1018> + shapes.Add(SpriteShape_1377()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1378()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1379()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1380()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1381()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1382()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1383()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1384()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1385()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1386()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1387()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1388()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1389()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1390()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1391()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1392()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1393()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1394()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1395()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1396()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1397()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1398()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1399()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1400()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1401()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1402()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1403()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1404()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1405()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1406()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1407()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1408()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1409()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1410()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1411()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1412()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1413()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1414()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1415()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1416()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1417()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1418()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1419()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1420()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1421()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1422()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1423()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1424()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1425()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1426()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1427()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1428()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1429()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1430()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1431()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1432()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1433()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1434()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1435()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1436()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1437()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1438()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1439()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1440()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1441()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1442()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1443()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1444()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1445()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1446()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1447()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1448()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1449()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1450()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1451()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1452()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1453()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1454()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1455()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1456()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1457()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1458()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1459()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1460()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1461()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1462()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1463()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1464()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1465()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1466()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1467()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1468()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1469()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1470()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1471()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1472()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1473()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1474()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1475()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1476()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1477()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1478()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1479()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1480()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1481()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1482()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1483()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1484()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1485()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1486()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1487()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1488()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1489()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1490()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1491()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1492()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1493()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1494()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1495()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1496()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1497()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1498()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1499()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1500()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1501()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1502()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1503()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1504()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1505()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1506()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1507()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1508()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1509()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1510()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1511()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1512()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1513()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1514()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1515()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1516()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1517()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1518()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1519()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1520()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1521()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1522()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1523()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1524()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1525()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1526()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1527()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1528()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1529()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1530()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1531()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1532()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1533()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1534()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1535()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1536()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1537()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1538()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1539()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1540()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1541()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1542()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1543()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1544()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1545()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1546()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1547()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1548()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1549()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1550()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1551()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1552()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1553()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1554()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1555()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1556()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1557()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1558()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1559()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1560()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1561()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1562()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1563()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1564()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1565()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1566()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1567()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1568()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1569()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1570()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1571()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1572()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1573()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1574()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1575()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1576()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1577()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1578()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1579()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1580()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1581()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1582()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1583()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1584()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1585()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1586()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1587()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1588()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1589()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1590()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1591()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1592()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1593()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1594()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1595()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1596()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1597()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1598()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1599()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1600()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1601()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1602()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1603()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1604()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1605()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1606()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1607()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1608()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1609()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1610()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1611()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1612()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1613()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1614()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1615()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1616()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1617()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1618()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1619()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1620()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1621()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1622()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1623()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1624()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1625()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1626()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1627()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1628()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1629()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1630()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1631()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1632()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1633()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1634()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1635()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1636()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1637()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1638()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1639()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1640()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1641()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1642()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1643()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1644()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1645()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1646()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1647()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1648()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1649()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1650()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1651()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1652()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1653()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1654()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1655()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1656()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1657()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1658()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1659()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1660()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1661()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1662()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1663()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1664()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1665()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1666()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1667()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1668()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1669()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1670()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1671()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1672()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1673()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1674()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1675()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1676()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1677()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1678()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1679()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1680()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1681()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1682()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1683()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1684()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1685()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1686()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1687()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1688()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1689()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1690()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1691()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1692()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1693()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1694()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1695()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1696()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1697()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1698()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1699()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1700()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1701()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1702()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1703()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1704()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1705()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1706()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1707()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1708()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1709()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1710()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1711()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1712()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1713()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1714()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1715()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1716()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1717()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1718()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1719()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1720()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1721()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1722()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1723()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1724()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1725()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1726()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1727()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1728()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1729()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1730()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1731()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1732()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1733()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1734()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1735()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1736()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1737()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1738()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1739()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1740()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1741()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1742()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1743()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1744()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1745()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1746()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1747()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1748()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1749()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1750()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1751()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1752()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1753()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1754()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1755()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1756()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1757()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1758()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1759()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1760()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1761()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1762()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1763()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1764()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1765()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1766()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1767()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1768()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1769()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1770()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1771()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1772()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1773()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1774()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1775()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1776()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1777()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1778()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1779()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1780()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1781()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1782()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1783()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1784()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1785()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1786()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1787()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1788()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1789()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1790()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1791()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1792()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1793()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1794()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1795()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1796()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1797()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1798()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1799()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1800()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1801()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1802()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1803()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1804()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1805()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1806()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1807()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1808()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1809()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1810()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1811()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1812()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1813()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1814()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1815()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1816()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1817()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1818()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1819()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1820()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1821()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1822()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1823()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1824()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1825()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1826()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1827()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1828()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1829()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1830()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1831()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1832()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1833()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1834()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1835()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1836()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1837()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1838()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1839()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1840()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1841()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1842()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1843()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1844()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1845()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1846()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1847()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1848()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1849()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1850()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1851()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1852()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1853()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1854()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1855()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1856()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1857()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1858()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1859()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1860()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1861()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1862()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1863()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1864()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1865()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1866()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1867()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1868()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1869()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1870()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1871()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1872()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1873()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1874()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1875()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1876()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1877()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1878()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1879()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1880()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1881()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1882()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1883()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1884()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1885()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1886()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1887()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1888()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1889()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1890()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1891()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1892()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1893()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1894()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1895()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1896()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1897()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1898()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1899()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1900()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1901()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1902()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1903()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1904()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1905()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1906()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1907()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1908()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1909()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1910()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1911()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1912()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1913()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1914()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1915()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1916()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1917()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1918()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1919()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1920()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1921()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1922()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1923()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1924()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1925()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1926()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1927()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1928()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1929()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1930()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1931()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1932()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1933()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1934()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1935()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1936()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1937()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1938()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1939()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1940()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1941()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1942()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1943()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1944()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1945()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1946()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1947()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1948()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1949()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1950()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1951()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1952()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1953()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1954()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1955()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1956()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1957()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1958()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1959()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1960()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1961()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1962()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1963()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1964()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1965()); + // Offset:<964, 1018> + shapes.Add(SpriteShape_1966()); + return result; + } + + // Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + CompositionContainerShape ContainerShape_19() + { + if (_containerShape_19 != null) { return _containerShape_19; } + var result = _containerShape_19 = _c.CreateContainerShape(); + result.Scale = new Vector2(0F, 0F); + var shapes = result.Shapes; + // Offset:<964, 825> + shapes.Add(SpriteShape_1967()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1968()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1969()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1970()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1971()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1972()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1973()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1974()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1975()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1976()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1977()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1978()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1979()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1980()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1981()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1982()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1983()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1984()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1985()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1986()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1987()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1988()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1989()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1990()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1991()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1992()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1993()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1994()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1995()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1996()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1997()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1998()); + // Offset:<964, 825> + shapes.Add(SpriteShape_1999()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2000()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2001()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2002()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2003()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2004()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2005()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2006()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2007()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2008()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2009()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2010()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2011()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2012()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2013()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2014()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2015()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2016()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2017()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2018()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2019()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2020()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2021()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2022()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2023()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2024()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2025()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2026()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2027()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2028()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2029()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2030()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2031()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2032()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2033()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2034()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2035()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2036()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2037()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2038()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2039()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2040()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2041()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2042()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2043()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2044()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2045()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2046()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2047()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2048()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2049()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2050()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2051()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2052()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2053()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2054()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2055()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2056()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2057()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2058()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2059()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2060()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2061()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2062()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2063()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2064()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2065()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2066()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2067()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2068()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2069()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2070()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2071()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2072()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2073()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2074()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2075()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2076()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2077()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2078()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2079()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2080()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2081()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2082()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2083()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2084()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2085()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2086()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2087()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2088()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2089()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2090()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2091()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2092()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2093()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2094()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2095()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2096()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2097()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2098()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2099()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2100()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2101()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2102()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2103()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2104()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2105()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2106()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2107()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2108()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2109()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2110()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2111()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2112()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2113()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2114()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2115()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2116()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2117()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2118()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2119()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2120()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2121()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2122()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2123()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2124()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2125()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2126()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2127()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2128()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2129()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2130()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2131()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2132()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2133()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2134()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2135()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2136()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2137()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2138()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2139()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2140()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2141()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2142()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2143()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2144()); + // Offset:<964, 825> + shapes.Add(SpriteShape_2145()); + return result; + } + + // Layer aggregator + CompositionContainerShape ContainerShape_20() + { + if (_containerShape_20 != null) { return _containerShape_20; } + var result = _containerShape_20 = _c.CreateContainerShape(); + result.CenterPoint = new Vector2(55F, 0F); + result.Offset = new Vector2(-55F, 592F); + // ShapeGroup: Rectangle 1 Offset:<59, 517> + result.Shapes.Add(SpriteShape_2146()); + return result; + } + + // Layer aggregator + // Layer: Shape Layer 2 + CompositionContainerShape ContainerShape_21() + { + if (_containerShape_21 != null) { return _containerShape_21; } + var result = _containerShape_21 = _c.CreateContainerShape(); + result.Scale = new Vector2(0F, 0F); + result.Shapes.Add(ContainerShape_22()); + return result; + } + + // - Layer aggregator + // Layer: Shape Layer 2 + CompositionContainerShape ContainerShape_22() + { + if (_containerShape_22 != null) { return _containerShape_22; } + var result = _containerShape_22 = _c.CreateContainerShape(); + result.CenterPoint = new Vector2(55F, 0F); + result.Offset = new Vector2(-55F, 592F); + // ShapeGroup: Rectangle 1 Offset:<59, 517> + result.Shapes.Add(SpriteShape_2147()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: NewLogoDraft-1024poutline + CompositionEffectBrush EffectBrush_0() + { + var effectFactory = EffectFactory(); + var result = effectFactory.CreateBrush(); + result.SetSourceParameter("destination", SurfaceBrush_0()); + result.SetSourceParameter("source", SurfaceBrush_1()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: NewLogoDraft-1024poutline + CompositionEffectBrush EffectBrush_1() + { + var effectFactory = EffectFactory(); + var result = effectFactory.CreateBrush(); + result.SetSourceParameter("destination", SurfaceBrush_2()); + result.SetSourceParameter("source", SurfaceBrush_3()); + return result; + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Opacity for layer: NewLogoDraft-1024poutline + CompositionEffectBrush EffectBrush_2() + { + var effectFactory = EffectFactory(); + var result = effectFactory.CreateBrush(); + result.SetSourceParameter("destination", SurfaceBrush_4()); + result.SetSourceParameter("source", SurfaceBrush_5()); + return result; + } + + CompositionEffectFactory EffectFactory() + { + var compositeEffect = new CompositeEffect(); + compositeEffect.Mode = CanvasComposite.DestinationIn; + compositeEffect.Sources.Add(new CompositionEffectSourceParameter("destination")); + compositeEffect.Sources.Add(new CompositionEffectSourceParameter("source")); + if (_effectFactory != null) { return _effectFactory; } + var result = _effectFactory = _c.CreateEffectFactory(compositeEffect); + return result; + } + + // - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - Opacity for layer: Comp 1 + // - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - Shape tree root for layer: Shape Layer 1 + // Offset:<701, 286> + CompositionPathGeometry PathGeometry_0000() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0000())); + } + + // - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - Opacity for layer: Comp 1 + // - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - Masks + // Layer: Shape Layer 1 + CompositionPathGeometry PathGeometry_0001() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0001())); + } + + // - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - Opacity for layer: Comp 1 + // - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - Shape tree root for layer: Shape Layer 2 + // Offset:<523.5, 488.5> + CompositionPathGeometry PathGeometry_0002() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0002())); + } + + // - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - Opacity for layer: Comp 1 + // - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - Masks + // Layer: Shape Layer 2 + CompositionPathGeometry PathGeometry_0003() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0003())); + } + + // - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - Opacity for layer: Comp 1 + // - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - Shape tree root for layer: Shape Layer 3 + // Offset:<416, 509> + CompositionPathGeometry PathGeometry_0004() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0004())); + } + + // - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - Opacity for layer: Comp 1 + // - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - Shape tree root for layer: Shape Layer 3 + // Offset:<416, 509> + CompositionPathGeometry PathGeometry_0005() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0005())); + } + + // - - - - - - - - PreComp layer: Comp 1 + // - - - - - - - Opacity for layer: Comp 1 + // - - - - - - Opacity for layer: NewLogoDraft-1024poutline + // - Masks + // Layer: Shape Layer 3 + CompositionPathGeometry PathGeometry_0006() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0006())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Scale:1.23,1.23, Offset:<1464, 580> + CompositionPathGeometry PathGeometry_0007() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0007())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Scale:1.23,1.23, Offset:<1464, 580> + CompositionPathGeometry PathGeometry_0008() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0008())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Scale:1.23,1.23, Offset:<1464, 580> + CompositionPathGeometry PathGeometry_0009() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0009())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Scale:1.23,1.23, Offset:<1464, 580> + CompositionPathGeometry PathGeometry_0010() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0010())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Scale:1.23,1.23, Offset:<1464, 580> + CompositionPathGeometry PathGeometry_0011() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0011())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Scale:1.23,1.23, Offset:<1464, 580> + CompositionPathGeometry PathGeometry_0012() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0012())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Scale:1.23,1.23, Offset:<1464, 580> + CompositionPathGeometry PathGeometry_0013() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0013())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Scale:1.23,1.23, Offset:<1464, 580> + CompositionPathGeometry PathGeometry_0014() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0014())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers Outlines + // ShapeGroup: s + CompositionPathGeometry PathGeometry_0015() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0015())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers Outlines + // ShapeGroup: s + CompositionPathGeometry PathGeometry_0016() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0016())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers Outlines + // ShapeGroup: s + CompositionPathGeometry PathGeometry_0017() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0017())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers Outlines + // ShapeGroup: s + CompositionPathGeometry PathGeometry_0018() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0018())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers Outlines + // ShapeGroup: s + CompositionPathGeometry PathGeometry_0019() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0019())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers Outlines + // ShapeGroup: s + CompositionPathGeometry PathGeometry_0020() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0020())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers Outlines + // ShapeGroup: s + CompositionPathGeometry PathGeometry_0021() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0021())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers Outlines + // ShapeGroup: s + CompositionPathGeometry PathGeometry_0022() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0022())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers Outlines + // ShapeGroup: s + CompositionPathGeometry PathGeometry_0023() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0023())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 2 Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0024() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0024())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 2 Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0025() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0025())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 2 Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0026() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0026())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 2 Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0027() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0027())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 2 Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0028() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0028())); + } + + CompositionPathGeometry PathGeometry_0029() + { + return (_pathGeometry_0029 == null) + ? _pathGeometry_0029 = _c.CreatePathGeometry(new CompositionPath(Geometry_0029())) + : _pathGeometry_0029; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0030() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0030())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0031() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0031())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0032() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0032())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0033() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0033())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0034() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0034())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0035() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0035())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0036() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0036())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0037() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0037())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0038() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0038())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 4 Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0039() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0039())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 4 Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0040() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0040())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 4 Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0041() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0041())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 4 Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0042() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0042())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 4 Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0043() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0043())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 4 Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0044() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0044())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 4 Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0045() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0045())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0046() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0046())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0047() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0047())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0048() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0048())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0049() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0049())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0050() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0050())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0051() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0051())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0052() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0052())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0053() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0053())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0054() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0054())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 6 Outlines + // ShapeGroup: m + CompositionPathGeometry PathGeometry_0055() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0055())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 6 Outlines + // ShapeGroup: m + CompositionPathGeometry PathGeometry_0056() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0056())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 6 Outlines + // ShapeGroup: m + CompositionPathGeometry PathGeometry_0057() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0057())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 6 Outlines + // ShapeGroup: m + CompositionPathGeometry PathGeometry_0058() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0058())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 6 Outlines + // ShapeGroup: m + CompositionPathGeometry PathGeometry_0059() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0059())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 6 Outlines + // ShapeGroup: m + CompositionPathGeometry PathGeometry_0060() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0060())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0061() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0061())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0062() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0062())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0063() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0063())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0064() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0064())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0065() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0065())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0066() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0066())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0067() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0067())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0068() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0068())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionPathGeometry PathGeometry_0069() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0069())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionPathGeometry PathGeometry_0070() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0070())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionPathGeometry PathGeometry_0071() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0071())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionPathGeometry PathGeometry_0072() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0072())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionPathGeometry PathGeometry_0073() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0073())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionPathGeometry PathGeometry_0074() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0074())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionPathGeometry PathGeometry_0075() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0075())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionPathGeometry PathGeometry_0076() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0076())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionPathGeometry PathGeometry_0077() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0077())); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionPathGeometry PathGeometry_0078() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0078())); + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: Pre-comp 1 + // - - Layer: second Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0079() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0079())); + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: Pre-comp 1 + // - - Layer: second Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0080() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0080())); + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: Pre-comp 1 + // - - Layer: second Outlines + // ShapeGroup: e + CompositionPathGeometry PathGeometry_0081() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0081())); + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: Pre-comp 1 + // - - Layer: second Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0082() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0082())); + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: Pre-comp 1 + // - - Layer: second Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0083() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0083())); + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: Pre-comp 1 + // - - Layer: second Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0084() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0084())); + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: Pre-comp 1 + // - - Layer: second Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0085() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0085())); + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: Pre-comp 1 + // - - Layer: second Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0086() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0086())); + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: Pre-comp 1 + // - - Layer: second Outlines + // ShapeGroup: t + CompositionPathGeometry PathGeometry_0087() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0087())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0088() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0088())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0089() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0089())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0090() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0090())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0091() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0091())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0092() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0092())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0093() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0093())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0094() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0094())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0095() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0095())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0096() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0096())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0097() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0097())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0098() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0098())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0099() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0099())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0100() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0100())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0101() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0101())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0102() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0102())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0103() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0103())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0104() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0104())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0105() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0105())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0106() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0106())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0107() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0107())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0108() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0108())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0109() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0109())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0110() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0110())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0111() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0111())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0112() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0112())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0113() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0113())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0114() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0114())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0115() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0115())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0116() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0116())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0117() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0117())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0118() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0118())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0119() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0119())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0120() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0120())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0121() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0121())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0122() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0122())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0123() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0123())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0124() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0124())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0125() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0125())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0126() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0126())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0127() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0127())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0128() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0128())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0129() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0129())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0130() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0130())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0131() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0131())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0132() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0132())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0133() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0133())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0134() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0134())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0135() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0135())); + } + + // - - PreComp layer: Comp 1 + // - Opacity for layer: Comp 1 + // Layer: © Collapse Project Outlines + CompositionPathGeometry PathGeometry_0136() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0136())); + } + + CompositionPathGeometry PathGeometry_0137() + { + return (_pathGeometry_0137 == null) + ? _pathGeometry_0137 = _c.CreatePathGeometry(new CompositionPath(Geometry_0137())) + : _pathGeometry_0137; + } + + CompositionPathGeometry PathGeometry_0138() + { + return (_pathGeometry_0138 == null) + ? _pathGeometry_0138 = _c.CreatePathGeometry(new CompositionPath(Geometry_0138())) + : _pathGeometry_0138; + } + + CompositionPathGeometry PathGeometry_0139() + { + return (_pathGeometry_0139 == null) + ? _pathGeometry_0139 = _c.CreatePathGeometry(new CompositionPath(Geometry_0139())) + : _pathGeometry_0139; + } + + CompositionPathGeometry PathGeometry_0140() + { + return (_pathGeometry_0140 == null) + ? _pathGeometry_0140 = _c.CreatePathGeometry(new CompositionPath(Geometry_0140())) + : _pathGeometry_0140; + } + + CompositionPathGeometry PathGeometry_0141() + { + return (_pathGeometry_0141 == null) + ? _pathGeometry_0141 = _c.CreatePathGeometry(new CompositionPath(Geometry_0141())) + : _pathGeometry_0141; + } + + CompositionPathGeometry PathGeometry_0142() + { + return (_pathGeometry_0142 == null) + ? _pathGeometry_0142 = _c.CreatePathGeometry(new CompositionPath(Geometry_0142())) + : _pathGeometry_0142; + } + + CompositionPathGeometry PathGeometry_0143() + { + return (_pathGeometry_0143 == null) + ? _pathGeometry_0143 = _c.CreatePathGeometry(new CompositionPath(Geometry_0143())) + : _pathGeometry_0143; + } + + CompositionPathGeometry PathGeometry_0144() + { + return (_pathGeometry_0144 == null) + ? _pathGeometry_0144 = _c.CreatePathGeometry(new CompositionPath(Geometry_0144())) + : _pathGeometry_0144; + } + + CompositionPathGeometry PathGeometry_0145() + { + return (_pathGeometry_0145 == null) + ? _pathGeometry_0145 = _c.CreatePathGeometry(new CompositionPath(Geometry_0145())) + : _pathGeometry_0145; + } + + CompositionPathGeometry PathGeometry_0146() + { + return (_pathGeometry_0146 == null) + ? _pathGeometry_0146 = _c.CreatePathGeometry(new CompositionPath(Geometry_0146())) + : _pathGeometry_0146; + } + + CompositionPathGeometry PathGeometry_0147() + { + return (_pathGeometry_0147 == null) + ? _pathGeometry_0147 = _c.CreatePathGeometry(new CompositionPath(Geometry_0147())) + : _pathGeometry_0147; + } + + CompositionPathGeometry PathGeometry_0148() + { + return (_pathGeometry_0148 == null) + ? _pathGeometry_0148 = _c.CreatePathGeometry(new CompositionPath(Geometry_0148())) + : _pathGeometry_0148; + } + + CompositionPathGeometry PathGeometry_0149() + { + return (_pathGeometry_0149 == null) + ? _pathGeometry_0149 = _c.CreatePathGeometry(new CompositionPath(Geometry_0149())) + : _pathGeometry_0149; + } + + CompositionPathGeometry PathGeometry_0150() + { + return (_pathGeometry_0150 == null) + ? _pathGeometry_0150 = _c.CreatePathGeometry(new CompositionPath(Geometry_0150())) + : _pathGeometry_0150; + } + + CompositionPathGeometry PathGeometry_0151() + { + return (_pathGeometry_0151 == null) + ? _pathGeometry_0151 = _c.CreatePathGeometry(new CompositionPath(Geometry_0151())) + : _pathGeometry_0151; + } + + CompositionPathGeometry PathGeometry_0152() + { + return (_pathGeometry_0152 == null) + ? _pathGeometry_0152 = _c.CreatePathGeometry(new CompositionPath(Geometry_0152())) + : _pathGeometry_0152; + } + + CompositionPathGeometry PathGeometry_0153() + { + return (_pathGeometry_0153 == null) + ? _pathGeometry_0153 = _c.CreatePathGeometry(new CompositionPath(Geometry_0153())) + : _pathGeometry_0153; + } + + CompositionPathGeometry PathGeometry_0154() + { + return (_pathGeometry_0154 == null) + ? _pathGeometry_0154 = _c.CreatePathGeometry(new CompositionPath(Geometry_0154())) + : _pathGeometry_0154; + } + + CompositionPathGeometry PathGeometry_0155() + { + return (_pathGeometry_0155 == null) + ? _pathGeometry_0155 = _c.CreatePathGeometry(new CompositionPath(Geometry_0155())) + : _pathGeometry_0155; + } + + CompositionPathGeometry PathGeometry_0156() + { + return (_pathGeometry_0156 == null) + ? _pathGeometry_0156 = _c.CreatePathGeometry(new CompositionPath(Geometry_0156())) + : _pathGeometry_0156; + } + + CompositionPathGeometry PathGeometry_0157() + { + return (_pathGeometry_0157 == null) + ? _pathGeometry_0157 = _c.CreatePathGeometry(new CompositionPath(Geometry_0157())) + : _pathGeometry_0157; + } + + CompositionPathGeometry PathGeometry_0158() + { + return (_pathGeometry_0158 == null) + ? _pathGeometry_0158 = _c.CreatePathGeometry(new CompositionPath(Geometry_0158())) + : _pathGeometry_0158; + } + + CompositionPathGeometry PathGeometry_0159() + { + return (_pathGeometry_0159 == null) + ? _pathGeometry_0159 = _c.CreatePathGeometry(new CompositionPath(Geometry_0159())) + : _pathGeometry_0159; + } + + CompositionPathGeometry PathGeometry_0160() + { + return (_pathGeometry_0160 == null) + ? _pathGeometry_0160 = _c.CreatePathGeometry(new CompositionPath(Geometry_0160())) + : _pathGeometry_0160; + } + + CompositionPathGeometry PathGeometry_0161() + { + return (_pathGeometry_0161 == null) + ? _pathGeometry_0161 = _c.CreatePathGeometry(new CompositionPath(Geometry_0161())) + : _pathGeometry_0161; + } + + CompositionPathGeometry PathGeometry_0162() + { + return (_pathGeometry_0162 == null) + ? _pathGeometry_0162 = _c.CreatePathGeometry(new CompositionPath(Geometry_0162())) + : _pathGeometry_0162; + } + + CompositionPathGeometry PathGeometry_0163() + { + return (_pathGeometry_0163 == null) + ? _pathGeometry_0163 = _c.CreatePathGeometry(new CompositionPath(Geometry_0163())) + : _pathGeometry_0163; + } + + CompositionPathGeometry PathGeometry_0164() + { + return (_pathGeometry_0164 == null) + ? _pathGeometry_0164 = _c.CreatePathGeometry(new CompositionPath(Geometry_0164())) + : _pathGeometry_0164; + } + + CompositionPathGeometry PathGeometry_0165() + { + return (_pathGeometry_0165 == null) + ? _pathGeometry_0165 = _c.CreatePathGeometry(new CompositionPath(Geometry_0165())) + : _pathGeometry_0165; + } + + CompositionPathGeometry PathGeometry_0166() + { + return (_pathGeometry_0166 == null) + ? _pathGeometry_0166 = _c.CreatePathGeometry(new CompositionPath(Geometry_0166())) + : _pathGeometry_0166; + } + + CompositionPathGeometry PathGeometry_0167() + { + return (_pathGeometry_0167 == null) + ? _pathGeometry_0167 = _c.CreatePathGeometry(new CompositionPath(Geometry_0167())) + : _pathGeometry_0167; + } + + CompositionPathGeometry PathGeometry_0168() + { + return (_pathGeometry_0168 == null) + ? _pathGeometry_0168 = _c.CreatePathGeometry(new CompositionPath(Geometry_0168())) + : _pathGeometry_0168; + } + + CompositionPathGeometry PathGeometry_0169() + { + return (_pathGeometry_0169 == null) + ? _pathGeometry_0169 = _c.CreatePathGeometry(new CompositionPath(Geometry_0169())) + : _pathGeometry_0169; + } + + CompositionPathGeometry PathGeometry_0170() + { + return (_pathGeometry_0170 == null) + ? _pathGeometry_0170 = _c.CreatePathGeometry(new CompositionPath(Geometry_0170())) + : _pathGeometry_0170; + } + + CompositionPathGeometry PathGeometry_0171() + { + return (_pathGeometry_0171 == null) + ? _pathGeometry_0171 = _c.CreatePathGeometry(new CompositionPath(Geometry_0171())) + : _pathGeometry_0171; + } + + CompositionPathGeometry PathGeometry_0172() + { + return (_pathGeometry_0172 == null) + ? _pathGeometry_0172 = _c.CreatePathGeometry(new CompositionPath(Geometry_0172())) + : _pathGeometry_0172; + } + + CompositionPathGeometry PathGeometry_0173() + { + return (_pathGeometry_0173 == null) + ? _pathGeometry_0173 = _c.CreatePathGeometry(new CompositionPath(Geometry_0173())) + : _pathGeometry_0173; + } + + CompositionPathGeometry PathGeometry_0174() + { + return (_pathGeometry_0174 == null) + ? _pathGeometry_0174 = _c.CreatePathGeometry(new CompositionPath(Geometry_0174())) + : _pathGeometry_0174; + } + + CompositionPathGeometry PathGeometry_0175() + { + return (_pathGeometry_0175 == null) + ? _pathGeometry_0175 = _c.CreatePathGeometry(new CompositionPath(Geometry_0175())) + : _pathGeometry_0175; + } + + CompositionPathGeometry PathGeometry_0176() + { + return (_pathGeometry_0176 == null) + ? _pathGeometry_0176 = _c.CreatePathGeometry(new CompositionPath(Geometry_0176())) + : _pathGeometry_0176; + } + + CompositionPathGeometry PathGeometry_0177() + { + return (_pathGeometry_0177 == null) + ? _pathGeometry_0177 = _c.CreatePathGeometry(new CompositionPath(Geometry_0177())) + : _pathGeometry_0177; + } + + CompositionPathGeometry PathGeometry_0178() + { + return (_pathGeometry_0178 == null) + ? _pathGeometry_0178 = _c.CreatePathGeometry(new CompositionPath(Geometry_0178())) + : _pathGeometry_0178; + } + + CompositionPathGeometry PathGeometry_0179() + { + return (_pathGeometry_0179 == null) + ? _pathGeometry_0179 = _c.CreatePathGeometry(new CompositionPath(Geometry_0179())) + : _pathGeometry_0179; + } + + CompositionPathGeometry PathGeometry_0180() + { + return (_pathGeometry_0180 == null) + ? _pathGeometry_0180 = _c.CreatePathGeometry(new CompositionPath(Geometry_0180())) + : _pathGeometry_0180; + } + + CompositionPathGeometry PathGeometry_0181() + { + return (_pathGeometry_0181 == null) + ? _pathGeometry_0181 = _c.CreatePathGeometry(new CompositionPath(Geometry_0181())) + : _pathGeometry_0181; + } + + CompositionPathGeometry PathGeometry_0182() + { + return (_pathGeometry_0182 == null) + ? _pathGeometry_0182 = _c.CreatePathGeometry(new CompositionPath(Geometry_0182())) + : _pathGeometry_0182; + } + + CompositionPathGeometry PathGeometry_0183() + { + return (_pathGeometry_0183 == null) + ? _pathGeometry_0183 = _c.CreatePathGeometry(new CompositionPath(Geometry_0183())) + : _pathGeometry_0183; + } + + CompositionPathGeometry PathGeometry_0184() + { + return (_pathGeometry_0184 == null) + ? _pathGeometry_0184 = _c.CreatePathGeometry(new CompositionPath(Geometry_0184())) + : _pathGeometry_0184; + } + + CompositionPathGeometry PathGeometry_0185() + { + return (_pathGeometry_0185 == null) + ? _pathGeometry_0185 = _c.CreatePathGeometry(new CompositionPath(Geometry_0185())) + : _pathGeometry_0185; + } + + CompositionPathGeometry PathGeometry_0186() + { + return (_pathGeometry_0186 == null) + ? _pathGeometry_0186 = _c.CreatePathGeometry(new CompositionPath(Geometry_0186())) + : _pathGeometry_0186; + } + + CompositionPathGeometry PathGeometry_0187() + { + return (_pathGeometry_0187 == null) + ? _pathGeometry_0187 = _c.CreatePathGeometry(new CompositionPath(Geometry_0187())) + : _pathGeometry_0187; + } + + CompositionPathGeometry PathGeometry_0188() + { + return (_pathGeometry_0188 == null) + ? _pathGeometry_0188 = _c.CreatePathGeometry(new CompositionPath(Geometry_0188())) + : _pathGeometry_0188; + } + + CompositionPathGeometry PathGeometry_0189() + { + return (_pathGeometry_0189 == null) + ? _pathGeometry_0189 = _c.CreatePathGeometry(new CompositionPath(Geometry_0189())) + : _pathGeometry_0189; + } + + CompositionPathGeometry PathGeometry_0190() + { + return (_pathGeometry_0190 == null) + ? _pathGeometry_0190 = _c.CreatePathGeometry(new CompositionPath(Geometry_0190())) + : _pathGeometry_0190; + } + + CompositionPathGeometry PathGeometry_0191() + { + return (_pathGeometry_0191 == null) + ? _pathGeometry_0191 = _c.CreatePathGeometry(new CompositionPath(Geometry_0191())) + : _pathGeometry_0191; + } + + CompositionPathGeometry PathGeometry_0192() + { + return (_pathGeometry_0192 == null) + ? _pathGeometry_0192 = _c.CreatePathGeometry(new CompositionPath(Geometry_0192())) + : _pathGeometry_0192; + } + + CompositionPathGeometry PathGeometry_0193() + { + return (_pathGeometry_0193 == null) + ? _pathGeometry_0193 = _c.CreatePathGeometry(new CompositionPath(Geometry_0193())) + : _pathGeometry_0193; + } + + CompositionPathGeometry PathGeometry_0194() + { + return (_pathGeometry_0194 == null) + ? _pathGeometry_0194 = _c.CreatePathGeometry(new CompositionPath(Geometry_0194())) + : _pathGeometry_0194; + } + + CompositionPathGeometry PathGeometry_0195() + { + return (_pathGeometry_0195 == null) + ? _pathGeometry_0195 = _c.CreatePathGeometry(new CompositionPath(Geometry_0195())) + : _pathGeometry_0195; + } + + CompositionPathGeometry PathGeometry_0196() + { + return (_pathGeometry_0196 == null) + ? _pathGeometry_0196 = _c.CreatePathGeometry(new CompositionPath(Geometry_0196())) + : _pathGeometry_0196; + } + + CompositionPathGeometry PathGeometry_0197() + { + return (_pathGeometry_0197 == null) + ? _pathGeometry_0197 = _c.CreatePathGeometry(new CompositionPath(Geometry_0197())) + : _pathGeometry_0197; + } + + CompositionPathGeometry PathGeometry_0198() + { + return (_pathGeometry_0198 == null) + ? _pathGeometry_0198 = _c.CreatePathGeometry(new CompositionPath(Geometry_0198())) + : _pathGeometry_0198; + } + + CompositionPathGeometry PathGeometry_0199() + { + return (_pathGeometry_0199 == null) + ? _pathGeometry_0199 = _c.CreatePathGeometry(new CompositionPath(Geometry_0199())) + : _pathGeometry_0199; + } + + CompositionPathGeometry PathGeometry_0200() + { + return (_pathGeometry_0200 == null) + ? _pathGeometry_0200 = _c.CreatePathGeometry(new CompositionPath(Geometry_0200())) + : _pathGeometry_0200; + } + + CompositionPathGeometry PathGeometry_0201() + { + return (_pathGeometry_0201 == null) + ? _pathGeometry_0201 = _c.CreatePathGeometry(new CompositionPath(Geometry_0201())) + : _pathGeometry_0201; + } + + CompositionPathGeometry PathGeometry_0202() + { + return (_pathGeometry_0202 == null) + ? _pathGeometry_0202 = _c.CreatePathGeometry(new CompositionPath(Geometry_0202())) + : _pathGeometry_0202; + } + + CompositionPathGeometry PathGeometry_0203() + { + return (_pathGeometry_0203 == null) + ? _pathGeometry_0203 = _c.CreatePathGeometry(new CompositionPath(Geometry_0203())) + : _pathGeometry_0203; + } + + CompositionPathGeometry PathGeometry_0204() + { + return (_pathGeometry_0204 == null) + ? _pathGeometry_0204 = _c.CreatePathGeometry(new CompositionPath(Geometry_0204())) + : _pathGeometry_0204; + } + + CompositionPathGeometry PathGeometry_0205() + { + return (_pathGeometry_0205 == null) + ? _pathGeometry_0205 = _c.CreatePathGeometry(new CompositionPath(Geometry_0205())) + : _pathGeometry_0205; + } + + CompositionPathGeometry PathGeometry_0206() + { + return (_pathGeometry_0206 == null) + ? _pathGeometry_0206 = _c.CreatePathGeometry(new CompositionPath(Geometry_0206())) + : _pathGeometry_0206; + } + + CompositionPathGeometry PathGeometry_0207() + { + return (_pathGeometry_0207 == null) + ? _pathGeometry_0207 = _c.CreatePathGeometry(new CompositionPath(Geometry_0207())) + : _pathGeometry_0207; + } + + CompositionPathGeometry PathGeometry_0208() + { + return (_pathGeometry_0208 == null) + ? _pathGeometry_0208 = _c.CreatePathGeometry(new CompositionPath(Geometry_0208())) + : _pathGeometry_0208; + } + + CompositionPathGeometry PathGeometry_0209() + { + return (_pathGeometry_0209 == null) + ? _pathGeometry_0209 = _c.CreatePathGeometry(new CompositionPath(Geometry_0209())) + : _pathGeometry_0209; + } + + CompositionPathGeometry PathGeometry_0210() + { + return (_pathGeometry_0210 == null) + ? _pathGeometry_0210 = _c.CreatePathGeometry(new CompositionPath(Geometry_0210())) + : _pathGeometry_0210; + } + + CompositionPathGeometry PathGeometry_0211() + { + return (_pathGeometry_0211 == null) + ? _pathGeometry_0211 = _c.CreatePathGeometry(new CompositionPath(Geometry_0211())) + : _pathGeometry_0211; + } + + CompositionPathGeometry PathGeometry_0212() + { + return (_pathGeometry_0212 == null) + ? _pathGeometry_0212 = _c.CreatePathGeometry(new CompositionPath(Geometry_0212())) + : _pathGeometry_0212; + } + + CompositionPathGeometry PathGeometry_0213() + { + return (_pathGeometry_0213 == null) + ? _pathGeometry_0213 = _c.CreatePathGeometry(new CompositionPath(Geometry_0213())) + : _pathGeometry_0213; + } + + CompositionPathGeometry PathGeometry_0214() + { + return (_pathGeometry_0214 == null) + ? _pathGeometry_0214 = _c.CreatePathGeometry(new CompositionPath(Geometry_0214())) + : _pathGeometry_0214; + } + + CompositionPathGeometry PathGeometry_0215() + { + return (_pathGeometry_0215 == null) + ? _pathGeometry_0215 = _c.CreatePathGeometry(new CompositionPath(Geometry_0215())) + : _pathGeometry_0215; + } + + CompositionPathGeometry PathGeometry_0216() + { + return (_pathGeometry_0216 == null) + ? _pathGeometry_0216 = _c.CreatePathGeometry(new CompositionPath(Geometry_0216())) + : _pathGeometry_0216; + } + + CompositionPathGeometry PathGeometry_0217() + { + return (_pathGeometry_0217 == null) + ? _pathGeometry_0217 = _c.CreatePathGeometry(new CompositionPath(Geometry_0217())) + : _pathGeometry_0217; + } + + CompositionPathGeometry PathGeometry_0218() + { + return (_pathGeometry_0218 == null) + ? _pathGeometry_0218 = _c.CreatePathGeometry(new CompositionPath(Geometry_0218())) + : _pathGeometry_0218; + } + + CompositionPathGeometry PathGeometry_0219() + { + return (_pathGeometry_0219 == null) + ? _pathGeometry_0219 = _c.CreatePathGeometry(new CompositionPath(Geometry_0219())) + : _pathGeometry_0219; + } + + CompositionPathGeometry PathGeometry_0220() + { + return (_pathGeometry_0220 == null) + ? _pathGeometry_0220 = _c.CreatePathGeometry(new CompositionPath(Geometry_0220())) + : _pathGeometry_0220; + } + + CompositionPathGeometry PathGeometry_0221() + { + return (_pathGeometry_0221 == null) + ? _pathGeometry_0221 = _c.CreatePathGeometry(new CompositionPath(Geometry_0221())) + : _pathGeometry_0221; + } + + CompositionPathGeometry PathGeometry_0222() + { + return (_pathGeometry_0222 == null) + ? _pathGeometry_0222 = _c.CreatePathGeometry(new CompositionPath(Geometry_0222())) + : _pathGeometry_0222; + } + + CompositionPathGeometry PathGeometry_0223() + { + return (_pathGeometry_0223 == null) + ? _pathGeometry_0223 = _c.CreatePathGeometry(new CompositionPath(Geometry_0223())) + : _pathGeometry_0223; + } + + CompositionPathGeometry PathGeometry_0224() + { + return (_pathGeometry_0224 == null) + ? _pathGeometry_0224 = _c.CreatePathGeometry(new CompositionPath(Geometry_0224())) + : _pathGeometry_0224; + } + + CompositionPathGeometry PathGeometry_0225() + { + return (_pathGeometry_0225 == null) + ? _pathGeometry_0225 = _c.CreatePathGeometry(new CompositionPath(Geometry_0225())) + : _pathGeometry_0225; + } + + CompositionPathGeometry PathGeometry_0226() + { + return (_pathGeometry_0226 == null) + ? _pathGeometry_0226 = _c.CreatePathGeometry(new CompositionPath(Geometry_0226())) + : _pathGeometry_0226; + } + + CompositionPathGeometry PathGeometry_0227() + { + return (_pathGeometry_0227 == null) + ? _pathGeometry_0227 = _c.CreatePathGeometry(new CompositionPath(Geometry_0227())) + : _pathGeometry_0227; + } + + CompositionPathGeometry PathGeometry_0228() + { + return (_pathGeometry_0228 == null) + ? _pathGeometry_0228 = _c.CreatePathGeometry(new CompositionPath(Geometry_0228())) + : _pathGeometry_0228; + } + + CompositionPathGeometry PathGeometry_0229() + { + return (_pathGeometry_0229 == null) + ? _pathGeometry_0229 = _c.CreatePathGeometry(new CompositionPath(Geometry_0229())) + : _pathGeometry_0229; + } + + CompositionPathGeometry PathGeometry_0230() + { + return (_pathGeometry_0230 == null) + ? _pathGeometry_0230 = _c.CreatePathGeometry(new CompositionPath(Geometry_0230())) + : _pathGeometry_0230; + } + + CompositionPathGeometry PathGeometry_0231() + { + return (_pathGeometry_0231 == null) + ? _pathGeometry_0231 = _c.CreatePathGeometry(new CompositionPath(Geometry_0231())) + : _pathGeometry_0231; + } + + CompositionPathGeometry PathGeometry_0232() + { + return (_pathGeometry_0232 == null) + ? _pathGeometry_0232 = _c.CreatePathGeometry(new CompositionPath(Geometry_0232())) + : _pathGeometry_0232; + } + + CompositionPathGeometry PathGeometry_0233() + { + return (_pathGeometry_0233 == null) + ? _pathGeometry_0233 = _c.CreatePathGeometry(new CompositionPath(Geometry_0233())) + : _pathGeometry_0233; + } + + CompositionPathGeometry PathGeometry_0234() + { + return (_pathGeometry_0234 == null) + ? _pathGeometry_0234 = _c.CreatePathGeometry(new CompositionPath(Geometry_0234())) + : _pathGeometry_0234; + } + + CompositionPathGeometry PathGeometry_0235() + { + return (_pathGeometry_0235 == null) + ? _pathGeometry_0235 = _c.CreatePathGeometry(new CompositionPath(Geometry_0235())) + : _pathGeometry_0235; + } + + CompositionPathGeometry PathGeometry_0236() + { + return (_pathGeometry_0236 == null) + ? _pathGeometry_0236 = _c.CreatePathGeometry(new CompositionPath(Geometry_0236())) + : _pathGeometry_0236; + } + + CompositionPathGeometry PathGeometry_0237() + { + return (_pathGeometry_0237 == null) + ? _pathGeometry_0237 = _c.CreatePathGeometry(new CompositionPath(Geometry_0237())) + : _pathGeometry_0237; + } + + CompositionPathGeometry PathGeometry_0238() + { + return (_pathGeometry_0238 == null) + ? _pathGeometry_0238 = _c.CreatePathGeometry(new CompositionPath(Geometry_0238())) + : _pathGeometry_0238; + } + + CompositionPathGeometry PathGeometry_0239() + { + return (_pathGeometry_0239 == null) + ? _pathGeometry_0239 = _c.CreatePathGeometry(new CompositionPath(Geometry_0239())) + : _pathGeometry_0239; + } + + CompositionPathGeometry PathGeometry_0240() + { + return (_pathGeometry_0240 == null) + ? _pathGeometry_0240 = _c.CreatePathGeometry(new CompositionPath(Geometry_0240())) + : _pathGeometry_0240; + } + + CompositionPathGeometry PathGeometry_0241() + { + return (_pathGeometry_0241 == null) + ? _pathGeometry_0241 = _c.CreatePathGeometry(new CompositionPath(Geometry_0241())) + : _pathGeometry_0241; + } + + CompositionPathGeometry PathGeometry_0242() + { + return (_pathGeometry_0242 == null) + ? _pathGeometry_0242 = _c.CreatePathGeometry(new CompositionPath(Geometry_0242())) + : _pathGeometry_0242; + } + + CompositionPathGeometry PathGeometry_0243() + { + return (_pathGeometry_0243 == null) + ? _pathGeometry_0243 = _c.CreatePathGeometry(new CompositionPath(Geometry_0243())) + : _pathGeometry_0243; + } + + CompositionPathGeometry PathGeometry_0244() + { + return (_pathGeometry_0244 == null) + ? _pathGeometry_0244 = _c.CreatePathGeometry(new CompositionPath(Geometry_0244())) + : _pathGeometry_0244; + } + + CompositionPathGeometry PathGeometry_0245() + { + return (_pathGeometry_0245 == null) + ? _pathGeometry_0245 = _c.CreatePathGeometry(new CompositionPath(Geometry_0245())) + : _pathGeometry_0245; + } + + CompositionPathGeometry PathGeometry_0246() + { + return (_pathGeometry_0246 == null) + ? _pathGeometry_0246 = _c.CreatePathGeometry(new CompositionPath(Geometry_0246())) + : _pathGeometry_0246; + } + + CompositionPathGeometry PathGeometry_0247() + { + return (_pathGeometry_0247 == null) + ? _pathGeometry_0247 = _c.CreatePathGeometry(new CompositionPath(Geometry_0247())) + : _pathGeometry_0247; + } + + CompositionPathGeometry PathGeometry_0248() + { + return (_pathGeometry_0248 == null) + ? _pathGeometry_0248 = _c.CreatePathGeometry(new CompositionPath(Geometry_0248())) + : _pathGeometry_0248; + } + + CompositionPathGeometry PathGeometry_0249() + { + return (_pathGeometry_0249 == null) + ? _pathGeometry_0249 = _c.CreatePathGeometry(new CompositionPath(Geometry_0249())) + : _pathGeometry_0249; + } + + CompositionPathGeometry PathGeometry_0250() + { + return (_pathGeometry_0250 == null) + ? _pathGeometry_0250 = _c.CreatePathGeometry(new CompositionPath(Geometry_0250())) + : _pathGeometry_0250; + } + + CompositionPathGeometry PathGeometry_0251() + { + return (_pathGeometry_0251 == null) + ? _pathGeometry_0251 = _c.CreatePathGeometry(new CompositionPath(Geometry_0251())) + : _pathGeometry_0251; + } + + CompositionPathGeometry PathGeometry_0252() + { + return (_pathGeometry_0252 == null) + ? _pathGeometry_0252 = _c.CreatePathGeometry(new CompositionPath(Geometry_0252())) + : _pathGeometry_0252; + } + + CompositionPathGeometry PathGeometry_0253() + { + return (_pathGeometry_0253 == null) + ? _pathGeometry_0253 = _c.CreatePathGeometry(new CompositionPath(Geometry_0253())) + : _pathGeometry_0253; + } + + CompositionPathGeometry PathGeometry_0254() + { + return (_pathGeometry_0254 == null) + ? _pathGeometry_0254 = _c.CreatePathGeometry(new CompositionPath(Geometry_0254())) + : _pathGeometry_0254; + } + + CompositionPathGeometry PathGeometry_0255() + { + return (_pathGeometry_0255 == null) + ? _pathGeometry_0255 = _c.CreatePathGeometry(new CompositionPath(Geometry_0255())) + : _pathGeometry_0255; + } + + CompositionPathGeometry PathGeometry_0256() + { + return (_pathGeometry_0256 == null) + ? _pathGeometry_0256 = _c.CreatePathGeometry(new CompositionPath(Geometry_0256())) + : _pathGeometry_0256; + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0257() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0257())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0258() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0258())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0259() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0259())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0260() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0260())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0261() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0261())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0262() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0262())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0263() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0263())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0264() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0264())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0265() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0265())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0266() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0266())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0267() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0267())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0268() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0268())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0269() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0269())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0270() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0270())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0271() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0271())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0272() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0272())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0273() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0273())); + } + + // - Layer aggregator + // Offset:<128, 166> + CompositionPathGeometry PathGeometry_0274() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0274())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0275() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0275())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0276() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0276())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0277() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0277())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0278() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0278())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0279() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0279())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0280() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0280())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0281() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0281())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0282() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0282())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0283() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0283())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0284() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0284())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0285() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0285())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0286() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0286())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0287() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0287())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0288() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0288())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0289() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0289())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0290() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0290())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0291() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0291())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0292() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0292())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0293() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0293())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0294() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0294())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0295() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0295())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0296() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0296())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0297() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0297())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0298() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0298())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0299() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0299())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0300() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0300())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0301() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0301())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0302() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0302())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0303() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0303())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0304() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0304())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0305() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0305())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0306() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0306())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0307() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0307())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0308() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0308())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0309() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0309())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0310() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0310())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0311() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0311())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0312() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0312())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0313() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0313())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0314() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0314())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0315() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0315())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0316() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0316())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0317() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0317())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0318() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0318())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0319() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0319())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0320() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0320())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0321() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0321())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0322() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0322())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0323() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0323())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0324() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0324())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0325() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0325())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0326() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0326())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0327() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0327())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0328() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0328())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0329() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0329())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0330() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0330())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0331() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0331())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0332() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0332())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0333() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0333())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0334() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0334())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0335() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0335())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0336() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0336())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0337() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0337())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0338() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0338())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0339() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0339())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0340() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0340())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0341() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0341())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0342() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0342())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0343() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0343())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0344() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0344())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0345() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0345())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0346() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0346())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0347() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0347())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0348() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0348())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0349() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0349())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0350() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0350())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0351() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0351())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0352() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0352())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0353() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0353())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0354() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0354())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0355() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0355())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0356() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0356())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0357() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0357())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0358() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0358())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0359() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0359())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0360() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0360())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0361() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0361())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0362() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0362())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0363() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0363())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0364() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0364())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0365() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0365())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0366() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0366())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0367() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0367())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0368() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0368())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0369() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0369())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0370() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0370())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0371() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0371())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0372() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0372())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0373() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0373())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0374() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0374())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0375() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0375())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0376() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0376())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0377() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0377())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0378() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0378())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0379() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0379())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0380() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0380())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0381() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0381())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0382() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0382())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0383() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0383())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0384() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0384())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0385() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0385())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0386() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0386())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0387() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0387())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0388() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0388())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0389() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0389())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0390() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0390())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0391() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0391())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0392() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0392())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0393() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0393())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0394() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0394())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0395() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0395())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0396() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0396())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0397() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0397())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0398() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0398())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0399() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0399())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0400() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0400())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0401() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0401())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0402() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0402())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0403() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0403())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0404() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0404())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0405() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0405())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0406() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0406())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0407() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0407())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0408() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0408())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0409() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0409())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0410() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0410())); + } + + // - - Layer aggregator + // - Layer: Firstly, I would like to apologize for this sudden announcement but, I + // would like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // Offset:<964, 609> + CompositionPathGeometry PathGeometry_0411() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0411())); + } + + CompositionPathGeometry PathGeometry_0412() + { + return (_pathGeometry_0412 == null) + ? _pathGeometry_0412 = _c.CreatePathGeometry(new CompositionPath(Geometry_0412())) + : _pathGeometry_0412; + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0413() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0413())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0414() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0414())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0415() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0415())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0416() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0416())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0417() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0417())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0418() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0418())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0419() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0419())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0420() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0420())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0421() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0421())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0422() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0422())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0423() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0423())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0424() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0424())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0425() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0425())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0426() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0426())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0427() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0427())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0428() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0428())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0429() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0429())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0430() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0430())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0431() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0431())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0432() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0432())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0433() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0433())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0434() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0434())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0435() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0435())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0436() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0436())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0437() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0437())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0438() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0438())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0439() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0439())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0440() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0440())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0441() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0441())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0442() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0442())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0443() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0443())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0444() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0444())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0445() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0445())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0446() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0446())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0447() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0447())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0448() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0448())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0449() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0449())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0450() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0450())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0451() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0451())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0452() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0452())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0453() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0453())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0454() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0454())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0455() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0455())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0456() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0456())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0457() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0457())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0458() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0458())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0459() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0459())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0460() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0460())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0461() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0461())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0462() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0462())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0463() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0463())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0464() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0464())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0465() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0465())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0466() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0466())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0467() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0467())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0468() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0468())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0469() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0469())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0470() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0470())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0471() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0471())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0472() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0472())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0473() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0473())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0474() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0474())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0475() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0475())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0476() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0476())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0477() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0477())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0478() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0478())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0479() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0479())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0480() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0480())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0481() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0481())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0482() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0482())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0483() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0483())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0484() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0484())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0485() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0485())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0486() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0486())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0487() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0487())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0488() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0488())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0489() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0489())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0490() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0490())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0491() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0491())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0492() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0492())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0493() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0493())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0494() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0494())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0495() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0495())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0496() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0496())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0497() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0497())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0498() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0498())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0499() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0499())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0500() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0500())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0501() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0501())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0502() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0502())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0503() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0503())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0504() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0504())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0505() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0505())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0506() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0506())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0507() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0507())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0508() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0508())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0509() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0509())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0510() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0510())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0511() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0511())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0512() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0512())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0513() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0513())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0514() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0514())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0515() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0515())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0516() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0516())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0517() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0517())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0518() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0518())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0519() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0519())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0520() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0520())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0521() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0521())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0522() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0522())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0523() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0523())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0524() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0524())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0525() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0525())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0526() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0526())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0527() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0527())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0528() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0528())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0529() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0529())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0530() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0530())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0531() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0531())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0532() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0532())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0533() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0533())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0534() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0534())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0535() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0535())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0536() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0536())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0537() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0537())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0538() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0538())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0539() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0539())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0540() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0540())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0541() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0541())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0542() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0542())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0543() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0543())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0544() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0544())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0545() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0545())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0546() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0546())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0547() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0547())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0548() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0548())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0549() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0549())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0550() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0550())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0551() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0551())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0552() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0552())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0553() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0553())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0554() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0554())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0555() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0555())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0556() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0556())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0557() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0557())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0558() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0558())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0559() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0559())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0560() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0560())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0561() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0561())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0562() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0562())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0563() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0563())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0564() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0564())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0565() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0565())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0566() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0566())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0567() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0567())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0568() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0568())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0569() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0569())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0570() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0570())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0571() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0571())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0572() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0572())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0573() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0573())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0574() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0574())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0575() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0575())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0576() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0576())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0577() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0577())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0578() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0578())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0579() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0579())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0580() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0580())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0581() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0581())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0582() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0582())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0583() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0583())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0584() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0584())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0585() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0585())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0586() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0586())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0587() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0587())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0588() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0588())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0589() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0589())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0590() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0590())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0591() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0591())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0592() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0592())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0593() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0593())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0594() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0594())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0595() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0595())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0596() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0596())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0597() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0597())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0598() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0598())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0599() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0599())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0600() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0600())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0601() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0601())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0602() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0602())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0603() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0603())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0604() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0604())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0605() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0605())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0606() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0606())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0607() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0607())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0608() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0608())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0609() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0609())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0610() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0610())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0611() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0611())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0612() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0612())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0613() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0613())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0614() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0614())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0615() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0615())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0616() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0616())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0617() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0617())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0618() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0618())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0619() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0619())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0620() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0620())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0621() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0621())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0622() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0622())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0623() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0623())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0624() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0624())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0625() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0625())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0626() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0626())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0627() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0627())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0628() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0628())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0629() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0629())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0630() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0630())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0631() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0631())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0632() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0632())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0633() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0633())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0634() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0634())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0635() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0635())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0636() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0636())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0637() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0637())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0638() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0638())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0639() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0639())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0640() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0640())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0641() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0641())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0642() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0642())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0643() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0643())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0644() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0644())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0645() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0645())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0646() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0646())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0647() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0647())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0648() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0648())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0649() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0649())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0650() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0650())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0651() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0651())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0652() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0652())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0653() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0653())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0654() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0654())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0655() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0655())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0656() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0656())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0657() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0657())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0658() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0658())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0659() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0659())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0660() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0660())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0661() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0661())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0662() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0662())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0663() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0663())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0664() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0664())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0665() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0665())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0666() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0666())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0667() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0667())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0668() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0668())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0669() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0669())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0670() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0670())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0671() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0671())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0672() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0672())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0673() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0673())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0674() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0674())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0675() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0675())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0676() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0676())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0677() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0677())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0678() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0678())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0679() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0679())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0680() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0680())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0681() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0681())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0682() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0682())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0683() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0683())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0684() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0684())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0685() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0685())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0686() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0686())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0687() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0687())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0688() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0688())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0689() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0689())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0690() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0690())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0691() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0691())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0692() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0692())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0693() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0693())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0694() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0694())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0695() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0695())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0696() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0696())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0697() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0697())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0698() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0698())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0699() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0699())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0700() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0700())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0701() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0701())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0702() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0702())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0703() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0703())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0704() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0704())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0705() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0705())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0706() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0706())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0707() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0707())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0708() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0708())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0709() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0709())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0710() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0710())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0711() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0711())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0712() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0712())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0713() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0713())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0714() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0714())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0715() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0715())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0716() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0716())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0717() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0717())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0718() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0718())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0719() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0719())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0720() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0720())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0721() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0721())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0722() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0722())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0723() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0723())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0724() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0724())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0725() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0725())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0726() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0726())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0727() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0727())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0728() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0728())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0729() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0729())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0730() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0730())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0731() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0731())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0732() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0732())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0733() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0733())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0734() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0734())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0735() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0735())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0736() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0736())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0737() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0737())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0738() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0738())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0739() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0739())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0740() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0740())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0741() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0741())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0742() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0742())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0743() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0743())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0744() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0744())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0745() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0745())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0746() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0746())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0747() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0747())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0748() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0748())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0749() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0749())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0750() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0750())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0751() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0751())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0752() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0752())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0753() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0753())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0754() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0754())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0755() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0755())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0756() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0756())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0757() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0757())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0758() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0758())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0759() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0759())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0760() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0760())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0761() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0761())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0762() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0762())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0763() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0763())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0764() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0764())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0765() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0765())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0766() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0766())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0767() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0767())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0768() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0768())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0769() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0769())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0770() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0770())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0771() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0771())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0772() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0772())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0773() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0773())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0774() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0774())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0775() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0775())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0776() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0776())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0777() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0777())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0778() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0778())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0779() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0779())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0780() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0780())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0781() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0781())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0782() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0782())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0783() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0783())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0784() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0784())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0785() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0785())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0786() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0786())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0787() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0787())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0788() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0788())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0789() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0789())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0790() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0790())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0791() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0791())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0792() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0792())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0793() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0793())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0794() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0794())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0795() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0795())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0796() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0796())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0797() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0797())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0798() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0798())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0799() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0799())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0800() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0800())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0801() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0801())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0802() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0802())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0803() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0803())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0804() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0804())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0805() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0805())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0806() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0806())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0807() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0807())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0808() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0808())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0809() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0809())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0810() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0810())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0811() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0811())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0812() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0812())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0813() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0813())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0814() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0814())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0815() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0815())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0816() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0816())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0817() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0817())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0818() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0818())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0819() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0819())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0820() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0820())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0821() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0821())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0822() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0822())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0823() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0823())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0824() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0824())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0825() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0825())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0826() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0826())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0827() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0827())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0828() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0828())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0829() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0829())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0830() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0830())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0831() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0831())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0832() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0832())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0833() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0833())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0834() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0834())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0835() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0835())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0836() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0836())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0837() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0837())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0838() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0838())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0839() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0839())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0840() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0840())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0841() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0841())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0842() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0842())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0843() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0843())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0844() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0844())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0845() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0845())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0846() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0846())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0847() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0847())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0848() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0848())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0849() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0849())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0850() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0850())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0851() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0851())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0852() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0852())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0853() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0853())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0854() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0854())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0855() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0855())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0856() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0856())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0857() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0857())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0858() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0858())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0859() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0859())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0860() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0860())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0861() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0861())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0862() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0862())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0863() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0863())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0864() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0864())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0865() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0865())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0866() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0866())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0867() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0867())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0868() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0868())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0869() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0869())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0870() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0870())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0871() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0871())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0872() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0872())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0873() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0873())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0874() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0874())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0875() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0875())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0876() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0876())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0877() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0877())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0878() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0878())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0879() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0879())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0880() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0880())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0881() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0881())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0882() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0882())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0883() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0883())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0884() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0884())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0885() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0885())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0886() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0886())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0887() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0887())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0888() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0888())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0889() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0889())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0890() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0890())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0891() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0891())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0892() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0892())); + } + + // - - Layer aggregator + // - Layer: For the last following days, Indonesia is currently under windespread + // unrest due to government’s unfair policies, oppression and violence by the police. + // This results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // Offset:<964, 726> + CompositionPathGeometry PathGeometry_0893() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0893())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0894() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0894())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0895() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0895())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0896() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0896())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0897() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0897())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0898() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0898())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0899() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0899())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0900() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0900())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0901() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0901())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0902() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0902())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0903() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0903())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0904() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0904())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0905() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0905())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0906() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0906())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0907() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0907())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0908() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0908())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0909() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0909())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0910() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0910())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0911() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0911())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0912() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0912())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0913() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0913())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0914() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0914())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0915() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0915())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0916() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0916())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0917() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0917())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0918() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0918())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0919() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0919())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0920() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0920())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0921() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0921())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0922() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0922())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0923() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0923())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0924() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0924())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0925() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0925())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0926() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0926())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0927() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0927())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0928() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0928())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0929() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0929())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0930() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0930())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0931() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0931())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0932() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0932())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0933() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0933())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0934() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0934())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0935() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0935())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0936() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0936())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0937() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0937())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0938() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0938())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0939() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0939())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0940() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0940())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0941() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0941())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0942() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0942())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0943() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0943())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0944() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0944())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0945() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0945())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0946() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0946())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0947() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0947())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0948() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0948())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0949() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0949())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0950() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0950())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0951() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0951())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0952() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0952())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0953() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0953())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0954() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0954())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0955() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0955())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0956() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0956())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0957() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0957())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0958() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0958())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0959() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0959())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0960() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0960())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0961() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0961())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0962() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0962())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0963() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0963())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0964() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0964())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0965() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0965())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0966() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0966())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0967() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0967())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0968() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0968())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0969() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0969())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0970() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0970())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0971() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0971())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0972() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0972())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0973() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0973())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0974() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0974())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0975() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0975())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0976() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0976())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0977() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0977())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0978() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0978())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0979() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0979())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0980() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0980())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0981() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0981())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0982() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0982())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0983() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0983())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0984() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0984())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0985() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0985())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0986() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0986())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0987() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0987())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0988() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0988())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0989() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0989())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0990() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0990())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0991() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0991())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0992() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0992())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0993() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0993())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0994() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0994())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0995() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0995())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0996() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0996())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0997() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0997())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0998() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0998())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_0999() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_0999())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1000() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1000())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1001() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1001())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1002() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1002())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1003() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1003())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1004() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1004())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1005() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1005())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1006() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1006())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1007() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1007())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1008() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1008())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1009() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1009())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1010() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1010())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1011() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1011())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1012() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1012())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1013() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1013())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1014() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1014())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1015() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1015())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1016() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1016())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1017() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1017())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1018() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1018())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1019() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1019())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1020() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1020())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1021() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1021())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1022() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1022())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1023() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1023())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1024() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1024())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1025() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1025())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1026() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1026())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1027() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1027())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1028() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1028())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1029() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1029())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1030() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1030())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1031() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1031())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1032() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1032())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1033() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1033())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1034() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1034())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1035() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1035())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1036() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1036())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1037() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1037())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1038() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1038())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1039() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1039())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1040() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1040())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1041() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1041())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1042() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1042())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1043() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1043())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1044() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1044())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1045() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1045())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1046() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1046())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1047() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1047())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1048() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1048())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1049() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1049())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1050() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1050())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1051() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1051())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1052() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1052())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1053() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1053())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1054() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1054())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1055() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1055())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1056() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1056())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1057() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1057())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1058() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1058())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1059() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1059())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1060() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1060())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1061() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1061())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1062() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1062())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1063() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1063())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1064() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1064())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1065() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1065())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1066() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1066())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1067() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1067())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1068() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1068())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1069() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1069())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1070() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1070())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1071() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1071())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1072() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1072())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1073() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1073())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1074() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1074())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1075() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1075())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1076() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1076())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1077() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1077())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1078() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1078())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1079() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1079())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1080() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1080())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1081() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1081())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1082() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1082())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1083() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1083())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1084() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1084())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1085() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1085())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1086() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1086())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1087() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1087())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1088() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1088())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1089() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1089())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1090() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1090())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1091() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1091())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1092() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1092())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1093() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1093())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1094() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1094())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1095() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1095())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1096() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1096())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1097() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1097())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1098() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1098())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1099() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1099())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1100() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1100())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1101() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1101())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1102() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1102())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1103() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1103())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1104() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1104())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1105() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1105())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1106() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1106())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1107() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1107())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1108() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1108())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1109() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1109())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1110() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1110())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1111() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1111())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1112() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1112())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1113() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1113())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1114() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1114())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1115() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1115())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1116() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1116())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1117() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1117())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1118() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1118())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1119() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1119())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1120() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1120())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1121() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1121())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1122() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1122())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1123() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1123())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1124() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1124())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1125() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1125())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1126() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1126())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1127() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1127())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1128() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1128())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1129() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1129())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1130() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1130())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1131() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1131())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1132() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1132())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1133() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1133())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1134() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1134())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1135() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1135())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1136() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1136())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1137() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1137())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1138() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1138())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1139() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1139())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1140() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1140())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1141() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1141())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1142() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1142())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1143() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1143())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1144() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1144())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1145() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1145())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1146() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1146())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1147() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1147())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1148() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1148())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1149() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1149())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1150() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1150())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1151() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1151())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1152() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1152())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1153() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1153())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1154() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1154())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1155() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1155())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1156() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1156())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1157() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1157())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1158() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1158())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1159() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1159())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1160() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1160())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1161() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1161())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1162() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1162())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1163() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1163())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1164() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1164())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1165() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1165())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1166() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1166())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1167() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1167())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1168() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1168())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1169() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1169())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1170() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1170())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1171() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1171())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1172() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1172())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1173() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1173())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1174() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1174())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1175() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1175())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1176() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1176())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1177() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1177())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1178() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1178())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1179() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1179())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1180() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1180())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1181() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1181())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1182() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1182())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1183() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1183())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1184() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1184())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1185() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1185())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1186() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1186())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1187() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1187())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1188() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1188())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1189() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1189())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1190() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1190())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1191() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1191())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1192() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1192())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1193() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1193())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1194() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1194())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1195() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1195())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1196() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1196())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1197() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1197())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1198() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1198())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1199() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1199())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1200() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1200())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1201() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1201())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1202() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1202())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1203() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1203())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1204() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1204())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1205() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1205())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1206() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1206())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1207() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1207())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1208() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1208())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1209() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1209())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1210() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1210())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1211() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1211())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1212() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1212())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1213() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1213())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1214() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1214())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1215() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1215())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1216() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1216())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1217() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1217())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1218() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1218())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1219() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1219())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1220() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1220())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1221() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1221())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1222() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1222())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1223() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1223())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1224() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1224())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1225() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1225())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1226() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1226())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1227() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1227())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1228() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1228())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1229() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1229())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1230() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1230())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1231() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1231())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1232() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1232())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1233() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1233())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1234() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1234())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1235() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1235())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1236() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1236())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1237() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1237())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1238() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1238())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1239() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1239())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1240() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1240())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1241() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1241())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1242() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1242())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1243() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1243())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1244() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1244())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1245() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1245())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1246() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1246())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1247() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1247())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1248() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1248())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1249() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1249())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1250() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1250())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1251() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1251())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1252() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1252())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1253() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1253())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1254() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1254())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1255() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1255())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1256() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1256())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1257() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1257())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1258() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1258())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1259() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1259())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1260() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1260())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1261() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1261())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1262() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1262())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1263() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1263())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1264() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1264())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1265() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1265())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1266() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1266())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1267() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1267())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1268() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1268())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1269() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1269())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1270() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1270())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1271() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1271())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1272() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1272())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1273() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1273())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1274() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1274())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1275() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1275())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1276() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1276())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1277() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1277())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1278() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1278())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1279() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1279())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1280() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1280())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1281() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1281())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1282() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1282())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1283() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1283())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1284() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1284())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1285() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1285())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1286() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1286())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1287() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1287())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1288() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1288())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1289() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1289())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1290() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1290())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1291() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1291())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1292() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1292())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1293() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1293())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1294() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1294())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1295() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1295())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1296() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1296())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1297() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1297())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1298() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1298())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1299() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1299())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1300() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1300())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1301() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1301())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1302() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1302())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1303() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1303())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1304() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1304())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1305() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1305())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1306() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1306())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1307() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1307())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1308() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1308())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1309() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1309())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1310() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1310())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1311() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1311())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1312() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1312())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1313() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1313())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1314() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1314())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1315() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1315())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1316() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1316())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1317() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1317())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1318() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1318())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1319() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1319())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1320() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1320())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1321() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1321())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1322() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1322())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1323() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1323())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1324() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1324())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1325() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1325())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1326() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1326())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1327() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1327())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1328() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1328())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1329() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1329())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1330() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1330())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1331() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1331())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1332() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1332())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1333() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1333())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1334() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1334())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1335() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1335())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1336() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1336())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1337() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1337())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1338() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1338())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1339() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1339())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1340() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1340())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1341() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1341())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1342() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1342())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1343() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1343())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1344() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1344())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1345() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1345())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1346() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1346())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1347() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1347())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1348() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1348())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1349() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1349())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1350() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1350())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1351() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1351())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1352() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1352())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1353() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1353())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1354() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1354())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1355() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1355())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1356() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1356())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1357() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1357())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1358() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1358())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1359() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1359())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1360() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1360())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1361() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1361())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1362() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1362())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1363() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1363())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1364() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1364())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1365() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1365())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1366() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1366())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1367() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1367())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1368() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1368())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1369() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1369())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1370() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1370())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1371() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1371())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1372() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1372())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1373() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1373())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1374() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1374())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1375() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1375())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1376() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1376())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1377() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1377())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1378() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1378())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1379() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1379())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1380() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1380())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1381() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1381())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1382() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1382())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1383() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1383())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1384() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1384())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1385() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1385())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1386() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1386())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1387() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1387())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1388() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1388())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1389() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1389())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1390() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1390())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1391() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1391())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1392() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1392())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1393() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1393())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1394() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1394())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1395() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1395())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1396() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1396())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1397() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1397())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1398() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1398())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1399() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1399())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1400() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1400())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1401() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1401())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1402() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1402())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1403() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1403())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1404() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1404())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1405() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1405())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1406() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1406())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1407() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1407())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1408() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1408())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1409() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1409())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1410() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1410())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1411() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1411())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1412() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1412())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1413() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1413())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1414() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1414())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1415() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1415())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1416() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1416())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1417() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1417())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1418() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1418())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1419() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1419())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1420() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1420())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1421() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1421())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1422() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1422())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1423() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1423())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1424() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1424())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1425() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1425())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1426() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1426())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1427() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1427())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1428() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1428())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1429() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1429())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1430() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1430())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1431() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1431())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1432() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1432())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1433() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1433())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1434() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1434())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1435() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1435())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1436() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1436())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1437() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1437())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1438() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1438())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1439() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1439())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1440() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1440())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1441() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1441())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1442() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1442())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1443() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1443())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1444() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1444())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1445() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1445())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1446() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1446())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1447() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1447())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1448() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1448())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1449() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1449())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1450() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1450())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1451() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1451())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1452() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1452())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1453() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1453())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1454() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1454())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1455() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1455())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1456() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1456())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1457() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1457())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1458() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1458())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1459() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1459())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1460() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1460())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1461() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1461())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1462() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1462())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1463() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1463())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1464() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1464())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1465() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1465())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1466() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1466())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1467() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1467())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1468() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1468())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1469() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1469())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1470() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1470())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1471() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1471())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1472() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1472())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1473() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1473())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1474() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1474())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1475() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1475())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1476() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1476())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1477() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1477())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1478() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1478())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1479() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1479())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1480() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1480())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1481() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1481())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1482() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1482())); + } + + // - - Layer aggregator + // - Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // Offset:<964, 1018> + CompositionPathGeometry PathGeometry_1483() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1483())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1484() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1484())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1485() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1485())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1486() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1486())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1487() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1487())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1488() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1488())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1489() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1489())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1490() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1490())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1491() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1491())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1492() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1492())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1493() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1493())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1494() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1494())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1495() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1495())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1496() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1496())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1497() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1497())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1498() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1498())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1499() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1499())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1500() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1500())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1501() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1501())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1502() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1502())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1503() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1503())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1504() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1504())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1505() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1505())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1506() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1506())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1507() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1507())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1508() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1508())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1509() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1509())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1510() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1510())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1511() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1511())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1512() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1512())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1513() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1513())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1514() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1514())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1515() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1515())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1516() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1516())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1517() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1517())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1518() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1518())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1519() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1519())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1520() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1520())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1521() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1521())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1522() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1522())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1523() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1523())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1524() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1524())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1525() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1525())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1526() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1526())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1527() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1527())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1528() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1528())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1529() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1529())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1530() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1530())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1531() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1531())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1532() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1532())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1533() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1533())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1534() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1534())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1535() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1535())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1536() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1536())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1537() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1537())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1538() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1538())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1539() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1539())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1540() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1540())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1541() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1541())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1542() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1542())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1543() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1543())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1544() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1544())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1545() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1545())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1546() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1546())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1547() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1547())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1548() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1548())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1549() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1549())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1550() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1550())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1551() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1551())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1552() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1552())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1553() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1553())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1554() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1554())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1555() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1555())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1556() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1556())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1557() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1557())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1558() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1558())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1559() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1559())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1560() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1560())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1561() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1561())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1562() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1562())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1563() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1563())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1564() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1564())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1565() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1565())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1566() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1566())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1567() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1567())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1568() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1568())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1569() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1569())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1570() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1570())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1571() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1571())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1572() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1572())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1573() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1573())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1574() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1574())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1575() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1575())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1576() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1576())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1577() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1577())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1578() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1578())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1579() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1579())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1580() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1580())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1581() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1581())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1582() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1582())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1583() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1583())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1584() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1584())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1585() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1585())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1586() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1586())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1587() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1587())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1588() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1588())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1589() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1589())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1590() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1590())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1591() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1591())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1592() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1592())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1593() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1593())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1594() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1594())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1595() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1595())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1596() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1596())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1597() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1597())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1598() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1598())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1599() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1599())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1600() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1600())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1601() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1601())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1602() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1602())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1603() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1603())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1604() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1604())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1605() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1605())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1606() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1606())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1607() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1607())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1608() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1608())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1609() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1609())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1610() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1610())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1611() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1611())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1612() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1612())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1613() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1613())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1614() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1614())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1615() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1615())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1616() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1616())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1617() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1617())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1618() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1618())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1619() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1619())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1620() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1620())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1621() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1621())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1622() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1622())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1623() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1623())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1624() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1624())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1625() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1625())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1626() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1626())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1627() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1627())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1628() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1628())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1629() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1629())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1630() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1630())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1631() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1631())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1632() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1632())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1633() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1633())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1634() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1634())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1635() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1635())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1636() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1636())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1637() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1637())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1638() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1638())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1639() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1639())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1640() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1640())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1641() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1641())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1642() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1642())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1643() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1643())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1644() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1644())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1645() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1645())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1646() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1646())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1647() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1647())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1648() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1648())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1649() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1649())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1650() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1650())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1651() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1651())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1652() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1652())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1653() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1653())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1654() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1654())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1655() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1655())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1656() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1656())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1657() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1657())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1658() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1658())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1659() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1659())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1660() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1660())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1661() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1661())); + } + + // - - Layer aggregator + // - Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // Offset:<964, 825> + CompositionPathGeometry PathGeometry_1662() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1662())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1663() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1663())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1664() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1664())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1665() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1665())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1666() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1666())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1667() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1667())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1668() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1668())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1669() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1669())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1670() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1670())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1671() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1671())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1672() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1672())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1673() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1673())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1674() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1674())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1675() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1675())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1676() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1676())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1677() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1677())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1678() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1678())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1679() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1679())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1680() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1680())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1681() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1681())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1682() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1682())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1683() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1683())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1684() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1684())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1685() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1685())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1686() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1686())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1687() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1687())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1688() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1688())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1689() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1689())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1690() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1690())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1691() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1691())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1692() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1692())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1693() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1693())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1694() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1694())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1695() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1695())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1696() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1696())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1697() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1697())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1698() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1698())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1699() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1699())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1700() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1700())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1701() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1701())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1702() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1702())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1703() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1703())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1704() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1704())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1705() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1705())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1706() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1706())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1707() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1707())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1708() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1708())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1709() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1709())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1710() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1710())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1711() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1711())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1712() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1712())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1713() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1713())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1714() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1714())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1715() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1715())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1716() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1716())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1717() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1717())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1718() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1718())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1719() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1719())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1720() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1720())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1721() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1721())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1722() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1722())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1723() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1723())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1724() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1724())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1725() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1725())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1726() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1726())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1727() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1727())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1728() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1728())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1729() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1729())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1730() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1730())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1731() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1731())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1732() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1732())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1733() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1733())); + } + + // - Layer aggregator + // Offset:<1772, 42> + CompositionPathGeometry PathGeometry_1734() + { + return _c.CreatePathGeometry(new CompositionPath(Geometry_1734())); + } + + // Rectangle Path 1.RectangleGeometry + CompositionRectangleGeometry Rectangle_1920x82() + { + if (_rectangle_1920x82 != null) { return _rectangle_1920x82; } + var result = _rectangle_1920x82 = _c.CreateRectangleGeometry(); + result.Offset = new Vector2(0F, -41F); + result.Size = new Vector2(1920F, 82F); + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: NewLogoDraft-1024poutline + // Shape tree root for layer: Shape Layer 1 + // Path 1 + CompositionSpriteShape SpriteShape_0000() + { + // Offset:<701, 286> + var result = CreateSpriteShape(PathGeometry_0000(), new Matrix3x2(1F, 0F, 0F, 1F, 701F, 286F));; + result.StrokeBrush = ThemeColor_Color_FFFFFF_0(); + result.StrokeMiterLimit = 2F; + result.StrokeThickness = 120F; + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: NewLogoDraft-1024poutline + // Masks + // Offset:<701, 286> + CompositionSpriteShape SpriteShape_0001() + { + // Offset:<701, 286> + var geometry = PathGeometry_0001(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 701F, 286F), ColorBrush_Black());; + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: NewLogoDraft-1024poutline + // Shape tree root for layer: Shape Layer 2 + // Path 1 + CompositionSpriteShape SpriteShape_0002() + { + // Offset:<523.5, 488.5> + var result = CreateSpriteShape(PathGeometry_0002(), new Matrix3x2(1F, 0F, 0F, 1F, 523.5F, 488.5F));; + result.StrokeBrush = ThemeColor_Color_FFFFFF_0(); + result.StrokeMiterLimit = 2F; + result.StrokeThickness = 120F; + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: NewLogoDraft-1024poutline + // Masks + // Offset:<523.5, 488.5> + CompositionSpriteShape SpriteShape_0003() + { + // Offset:<523.5, 488.5> + var geometry = PathGeometry_0003(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 523.5F, 488.5F), ColorBrush_Black());; + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: NewLogoDraft-1024poutline + // Shape tree root for layer: Shape Layer 3 + // Path 1 + CompositionSpriteShape SpriteShape_0004() + { + // Offset:<416, 509> + var result = CreateSpriteShape(PathGeometry_0004(), new Matrix3x2(1F, 0F, 0F, 1F, 416F, 509F));; + result.StrokeBrush = ThemeColor_Color_FFFFFF_0(); + result.StrokeMiterLimit = 2F; + result.StrokeThickness = 60F; + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: NewLogoDraft-1024poutline + // Shape tree root for layer: Shape Layer 3 + // Path 1 + CompositionSpriteShape SpriteShape_0005() + { + // Offset:<416, 509> + var geometry = PathGeometry_0005(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 416F, 509F), ThemeColor_Color_FF0000());; + result.StrokeBrush = ThemeColor_Color_FFFFFF_0(); + result.StrokeMiterLimit = 2F; + result.StrokeThickness = 60F; + return result; + } + + // - - - - - - - PreComp layer: Comp 1 + // - - - - - - Opacity for layer: Comp 1 + // - - - - - Opacity for layer: NewLogoDraft-1024poutline + // Masks + // Offset:<416, 509> + CompositionSpriteShape SpriteShape_0006() + { + // Offset:<416, 509> + var geometry = PathGeometry_0006(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 416F, 509F), ColorBrush_Black());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // e + CompositionSpriteShape SpriteShape_0007() + { + // Offset:<1464, 580>, Scale:<1.23, 1.23> + var geometry = PathGeometry_0007(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // s + CompositionSpriteShape SpriteShape_0008() + { + // Offset:<1464, 580>, Scale:<1.23, 1.23> + var geometry = PathGeometry_0008(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: e + CompositionSpriteShape SpriteShape_0009() + { + // Offset:<1464, 580>, Scale:<1.23, 1.23> + var geometry = PathGeometry_0009(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: e + CompositionSpriteShape SpriteShape_0010() + { + // Offset:<1464, 580>, Scale:<1.23, 1.23> + var geometry = PathGeometry_0010(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // l + CompositionSpriteShape SpriteShape_0011() + { + // Offset:<1464, 580>, Scale:<1.23, 1.23> + var geometry = PathGeometry_0011(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // l + CompositionSpriteShape SpriteShape_0012() + { + // Offset:<1464, 580>, Scale:<1.23, 1.23> + var geometry = PathGeometry_0012(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: e + CompositionSpriteShape SpriteShape_0013() + { + // Offset:<1464, 580>, Scale:<1.23, 1.23> + var geometry = PathGeometry_0013(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // c + CompositionSpriteShape SpriteShape_0014() + { + // Offset:<1464, 580>, Scale:<1.23, 1.23> + var geometry = PathGeometry_0014(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());; + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers Outlines + // s + CompositionSpriteShape SpriteShape_0015() + { + var result = _c.CreateSpriteShape(PathGeometry_0015()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers Outlines + // ShapeGroup: s + CompositionSpriteShape SpriteShape_0016() + { + var result = _c.CreateSpriteShape(PathGeometry_0016()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers Outlines + // e + CompositionSpriteShape SpriteShape_0017() + { + var result = _c.CreateSpriteShape(PathGeometry_0017()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers Outlines + // ShapeGroup: s + CompositionSpriteShape SpriteShape_0018() + { + var result = _c.CreateSpriteShape(PathGeometry_0018()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers Outlines + // s + CompositionSpriteShape SpriteShape_0019() + { + var result = _c.CreateSpriteShape(PathGeometry_0019()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers Outlines + // ShapeGroup: s + CompositionSpriteShape SpriteShape_0020() + { + var result = _c.CreateSpriteShape(PathGeometry_0020()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers Outlines + // ShapeGroup: s + CompositionSpriteShape SpriteShape_0021() + { + var result = _c.CreateSpriteShape(PathGeometry_0021()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers Outlines + // ShapeGroup: s + CompositionSpriteShape SpriteShape_0022() + { + var result = _c.CreateSpriteShape(PathGeometry_0022()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers Outlines + // ShapeGroup: s + CompositionSpriteShape SpriteShape_0023() + { + var result = _c.CreateSpriteShape(PathGeometry_0023()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 2 Outlines + // e + CompositionSpriteShape SpriteShape_0024() + { + var result = _c.CreateSpriteShape(PathGeometry_0024()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 2 Outlines + // c + CompositionSpriteShape SpriteShape_0025() + { + var result = _c.CreateSpriteShape(PathGeometry_0025()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 2 Outlines + // ShapeGroup: e + CompositionSpriteShape SpriteShape_0026() + { + var result = _c.CreateSpriteShape(PathGeometry_0026()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 2 Outlines + // l + CompositionSpriteShape SpriteShape_0027() + { + var result = _c.CreateSpriteShape(PathGeometry_0027()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 2 Outlines + // ShapeGroup: e + CompositionSpriteShape SpriteShape_0028() + { + var result = _c.CreateSpriteShape(PathGeometry_0028()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 2 Outlines + // ShapeGroup: e + CompositionSpriteShape SpriteShape_0029() + { + var result = _c.CreateSpriteShape(PathGeometry_0029()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0030() + { + var result = _c.CreateSpriteShape(PathGeometry_0030()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0031() + { + var result = _c.CreateSpriteShape(PathGeometry_0031()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 3 Outlines + // e + CompositionSpriteShape SpriteShape_0032() + { + var result = _c.CreateSpriteShape(PathGeometry_0032()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0033() + { + var result = _c.CreateSpriteShape(PathGeometry_0033()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0034() + { + var result = _c.CreateSpriteShape(PathGeometry_0034()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0035() + { + var result = _c.CreateSpriteShape(PathGeometry_0035()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 3 Outlines + // l + CompositionSpriteShape SpriteShape_0036() + { + var result = _c.CreateSpriteShape(PathGeometry_0036()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0037() + { + var result = _c.CreateSpriteShape(PathGeometry_0037()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0038() + { + var result = _c.CreateSpriteShape(PathGeometry_0038()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 3 Outlines + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0039() + { + var result = _c.CreateSpriteShape(PathGeometry_0029()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 4 Outlines + // e + CompositionSpriteShape SpriteShape_0040() + { + var result = _c.CreateSpriteShape(PathGeometry_0039()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 4 Outlines + // c + CompositionSpriteShape SpriteShape_0041() + { + var result = _c.CreateSpriteShape(PathGeometry_0040()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 4 Outlines + // ShapeGroup: e + CompositionSpriteShape SpriteShape_0042() + { + var result = _c.CreateSpriteShape(PathGeometry_0041()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 4 Outlines + // ShapeGroup: e + CompositionSpriteShape SpriteShape_0043() + { + var result = _c.CreateSpriteShape(PathGeometry_0042()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 4 Outlines + // s + CompositionSpriteShape SpriteShape_0044() + { + var result = _c.CreateSpriteShape(PathGeometry_0043()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 4 Outlines + // u + CompositionSpriteShape SpriteShape_0045() + { + var result = _c.CreateSpriteShape(PathGeometry_0044()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 4 Outlines + // ShapeGroup: e + CompositionSpriteShape SpriteShape_0046() + { + var result = _c.CreateSpriteShape(PathGeometry_0045()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionSpriteShape SpriteShape_0047() + { + var result = _c.CreateSpriteShape(PathGeometry_0046()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 5 Outlines + // c + CompositionSpriteShape SpriteShape_0048() + { + var result = _c.CreateSpriteShape(PathGeometry_0047()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionSpriteShape SpriteShape_0049() + { + var result = _c.CreateSpriteShape(PathGeometry_0048()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 5 Outlines + // e + CompositionSpriteShape SpriteShape_0050() + { + var result = _c.CreateSpriteShape(PathGeometry_0049()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionSpriteShape SpriteShape_0051() + { + var result = _c.CreateSpriteShape(PathGeometry_0050()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionSpriteShape SpriteShape_0052() + { + var result = _c.CreateSpriteShape(PathGeometry_0051()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 5 Outlines + // s + CompositionSpriteShape SpriteShape_0053() + { + var result = _c.CreateSpriteShape(PathGeometry_0052()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 5 Outlines + // e + CompositionSpriteShape SpriteShape_0054() + { + var result = _c.CreateSpriteShape(PathGeometry_0053()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionSpriteShape SpriteShape_0055() + { + var result = _c.CreateSpriteShape(PathGeometry_0054()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 5 Outlines + // ShapeGroup: y + CompositionSpriteShape SpriteShape_0056() + { + var result = _c.CreateSpriteShape(PathGeometry_0029()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 6 Outlines + // ShapeGroup: m + CompositionSpriteShape SpriteShape_0057() + { + var result = _c.CreateSpriteShape(PathGeometry_0055()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 6 Outlines + // e + CompositionSpriteShape SpriteShape_0058() + { + var result = _c.CreateSpriteShape(PathGeometry_0056()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 6 Outlines + // ShapeGroup: m + CompositionSpriteShape SpriteShape_0059() + { + var result = _c.CreateSpriteShape(PathGeometry_0057()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 6 Outlines + // s + CompositionSpriteShape SpriteShape_0060() + { + var result = _c.CreateSpriteShape(PathGeometry_0058()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 6 Outlines + // ShapeGroup: m + CompositionSpriteShape SpriteShape_0061() + { + var result = _c.CreateSpriteShape(PathGeometry_0059()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 6 Outlines + // s + CompositionSpriteShape SpriteShape_0062() + { + var result = _c.CreateSpriteShape(PathGeometry_0060()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionSpriteShape SpriteShape_0063() + { + var result = _c.CreateSpriteShape(PathGeometry_0061()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 7 Outlines + // c + CompositionSpriteShape SpriteShape_0064() + { + var result = _c.CreateSpriteShape(PathGeometry_0062()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionSpriteShape SpriteShape_0065() + { + var result = _c.CreateSpriteShape(PathGeometry_0063()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionSpriteShape SpriteShape_0066() + { + var result = _c.CreateSpriteShape(PathGeometry_0064()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 7 Outlines + // c + CompositionSpriteShape SpriteShape_0067() + { + var result = _c.CreateSpriteShape(PathGeometry_0065()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionSpriteShape SpriteShape_0068() + { + var result = _c.CreateSpriteShape(PathGeometry_0066()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionSpriteShape SpriteShape_0069() + { + var result = _c.CreateSpriteShape(PathGeometry_0067()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 7 Outlines + // e + CompositionSpriteShape SpriteShape_0070() + { + var result = _c.CreateSpriteShape(PathGeometry_0068()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 7 Outlines + // ShapeGroup: y + CompositionSpriteShape SpriteShape_0071() + { + var result = _c.CreateSpriteShape(PathGeometry_0069()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionSpriteShape SpriteShape_0072() + { + var result = _c.CreateSpriteShape(PathGeometry_0070()); + result.FillBrush = ThemeColor_Color_E63B3B_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionSpriteShape SpriteShape_0073() + { + var result = _c.CreateSpriteShape(PathGeometry_0071()); + result.FillBrush = ThemeColor_Color_E63B3B_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 8 Outlines + // s + CompositionSpriteShape SpriteShape_0074() + { + var result = _c.CreateSpriteShape(PathGeometry_0072()); + result.FillBrush = ThemeColor_Color_E63B3B_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 8 Outlines + // e + CompositionSpriteShape SpriteShape_0075() + { + var result = _c.CreateSpriteShape(PathGeometry_0073()); + result.FillBrush = ThemeColor_Color_E63B3B_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionSpriteShape SpriteShape_0076() + { + var result = _c.CreateSpriteShape(PathGeometry_0074()); + result.FillBrush = ThemeColor_Color_E63B3B_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionSpriteShape SpriteShape_0077() + { + var result = _c.CreateSpriteShape(PathGeometry_0075()); + result.FillBrush = ThemeColor_Color_E63B3B_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionSpriteShape SpriteShape_0078() + { + var result = _c.CreateSpriteShape(PathGeometry_0076()); + result.FillBrush = ThemeColor_Color_E63B3B_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionSpriteShape SpriteShape_0079() + { + var result = _c.CreateSpriteShape(PathGeometry_0077()); + result.FillBrush = ThemeColor_Color_E63B3B_0(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 8 Outlines + // ShapeGroup: a + CompositionSpriteShape SpriteShape_0080() + { + var result = _c.CreateSpriteShape(PathGeometry_0078()); + result.FillBrush = ThemeColor_Color_E63B3B_0(); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: second Outlines + // e + CompositionSpriteShape SpriteShape_0081() + { + var result = _c.CreateSpriteShape(PathGeometry_0079()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: second Outlines + // ShapeGroup: e + CompositionSpriteShape SpriteShape_0082() + { + var result = _c.CreateSpriteShape(PathGeometry_0080()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: second Outlines + // ShapeGroup: e + CompositionSpriteShape SpriteShape_0083() + { + var result = _c.CreateSpriteShape(PathGeometry_0081()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: second Outlines + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0084() + { + var result = _c.CreateSpriteShape(PathGeometry_0082()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: second Outlines + // e + CompositionSpriteShape SpriteShape_0085() + { + var result = _c.CreateSpriteShape(PathGeometry_0083()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: second Outlines + // s + CompositionSpriteShape SpriteShape_0086() + { + var result = _c.CreateSpriteShape(PathGeometry_0084()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: second Outlines + // e + CompositionSpriteShape SpriteShape_0087() + { + var result = _c.CreateSpriteShape(PathGeometry_0085()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: second Outlines + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0088() + { + var result = _c.CreateSpriteShape(PathGeometry_0086()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: second Outlines + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0089() + { + var result = _c.CreateSpriteShape(PathGeometry_0087()); + result.FillBrush = ThemeColor_Color_FFFFFF_0(); + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0090() + { + // Offset:<86, 101> + var geometry = PathGeometry_0088(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // c + CompositionSpriteShape SpriteShape_0091() + { + // Offset:<86, 101> + var geometry = PathGeometry_0089(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // e + CompositionSpriteShape SpriteShape_0092() + { + // Offset:<86, 101> + var geometry = PathGeometry_0090(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0093() + { + // Offset:<86, 101> + var geometry = PathGeometry_0091(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0094() + { + // Offset:<86, 101> + var geometry = PathGeometry_0092(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0095() + { + // Offset:<86, 101> + var geometry = PathGeometry_0093(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0096() + { + // Offset:<86, 101> + var geometry = PathGeometry_0094(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // e + CompositionSpriteShape SpriteShape_0097() + { + // Offset:<86, 101> + var geometry = PathGeometry_0095(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // s + CompositionSpriteShape SpriteShape_0098() + { + // Offset:<86, 101> + var geometry = PathGeometry_0096(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0099() + { + // Offset:<86, 101> + var geometry = PathGeometry_0097(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0100() + { + // Offset:<86, 101> + var geometry = PathGeometry_0098(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // l + CompositionSpriteShape SpriteShape_0101() + { + // Offset:<86, 101> + var geometry = PathGeometry_0099(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // l + CompositionSpriteShape SpriteShape_0102() + { + // Offset:<86, 101> + var geometry = PathGeometry_0100(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0103() + { + // Offset:<86, 101> + var geometry = PathGeometry_0101(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // C + CompositionSpriteShape SpriteShape_0104() + { + // Offset:<86, 101> + var geometry = PathGeometry_0102(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: t + CompositionSpriteShape SpriteShape_0105() + { + // Offset:<86, 101> + var geometry = PathGeometry_0103(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0106() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0104(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // e + CompositionSpriteShape SpriteShape_0107() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0105(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // v + CompositionSpriteShape SpriteShape_0108() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0106(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0109() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0107(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // e + CompositionSpriteShape SpriteShape_0110() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0108(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // s + CompositionSpriteShape SpriteShape_0111() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0109(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // e + CompositionSpriteShape SpriteShape_0112() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0110(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0113() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0111(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // s + CompositionSpriteShape SpriteShape_0114() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0112(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0115() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0113(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0116() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0114(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0117() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0115(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0118() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0116(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0119() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0117(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // l + CompositionSpriteShape SpriteShape_0120() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0118(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // l + CompositionSpriteShape SpriteShape_0121() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0119(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0122() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0120(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // - + CompositionSpriteShape SpriteShape_0123() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0121(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // e + CompositionSpriteShape SpriteShape_0124() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0122(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // s + CompositionSpriteShape SpriteShape_0125() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0123(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0126() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0124(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // e + CompositionSpriteShape SpriteShape_0127() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0125(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // c + CompositionSpriteShape SpriteShape_0128() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0126(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0129() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0127(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0130() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0128(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0131() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0129(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // I + CompositionSpriteShape SpriteShape_0132() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0130(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // M + CompositionSpriteShape SpriteShape_0133() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0131(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0134() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0132(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // e + CompositionSpriteShape SpriteShape_0135() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0133(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0136() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0134(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // ShapeGroup: d + CompositionSpriteShape SpriteShape_0137() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0135(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // U + CompositionSpriteShape SpriteShape_0138() + { + // Offset:<115.5, 129.5> + var geometry = PathGeometry_0136(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());; + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0139() + { + var result = _c.CreateSpriteShape(PathGeometry_0137()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0140() + { + var result = _c.CreateSpriteShape(PathGeometry_0138()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0141() + { + var result = _c.CreateSpriteShape(PathGeometry_0139()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0142() + { + var result = _c.CreateSpriteShape(PathGeometry_0140()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0143() + { + var result = _c.CreateSpriteShape(PathGeometry_0141()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0144() + { + var result = _c.CreateSpriteShape(PathGeometry_0142()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0145() + { + var result = _c.CreateSpriteShape(PathGeometry_0143()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0146() + { + var result = _c.CreateSpriteShape(PathGeometry_0144()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0147() + { + var result = _c.CreateSpriteShape(PathGeometry_0145()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0148() + { + var result = _c.CreateSpriteShape(PathGeometry_0146()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0149() + { + var result = _c.CreateSpriteShape(PathGeometry_0147()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0150() + { + var result = _c.CreateSpriteShape(PathGeometry_0148()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0151() + { + var result = _c.CreateSpriteShape(PathGeometry_0149()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0152() + { + var result = _c.CreateSpriteShape(PathGeometry_0150()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0153() + { + var result = _c.CreateSpriteShape(PathGeometry_0151()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0154() + { + var result = _c.CreateSpriteShape(PathGeometry_0152()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0155() + { + var result = _c.CreateSpriteShape(PathGeometry_0153()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0156() + { + var result = _c.CreateSpriteShape(PathGeometry_0154()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0157() + { + var result = _c.CreateSpriteShape(PathGeometry_0155()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0158() + { + var result = _c.CreateSpriteShape(PathGeometry_0156()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0159() + { + var result = _c.CreateSpriteShape(PathGeometry_0157()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0160() + { + var result = _c.CreateSpriteShape(PathGeometry_0158()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0161() + { + var result = _c.CreateSpriteShape(PathGeometry_0159()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0162() + { + var result = _c.CreateSpriteShape(PathGeometry_0160()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0163() + { + var result = _c.CreateSpriteShape(PathGeometry_0161()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0164() + { + var result = _c.CreateSpriteShape(PathGeometry_0162()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0165() + { + var result = _c.CreateSpriteShape(PathGeometry_0163()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0166() + { + var result = _c.CreateSpriteShape(PathGeometry_0164()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0167() + { + var result = _c.CreateSpriteShape(PathGeometry_0165()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0168() + { + var result = _c.CreateSpriteShape(PathGeometry_0166()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0169() + { + var result = _c.CreateSpriteShape(PathGeometry_0167()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0170() + { + var result = _c.CreateSpriteShape(PathGeometry_0168()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0171() + { + var result = _c.CreateSpriteShape(PathGeometry_0169()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0172() + { + var result = _c.CreateSpriteShape(PathGeometry_0170()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0173() + { + var result = _c.CreateSpriteShape(PathGeometry_0171()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0174() + { + var result = _c.CreateSpriteShape(PathGeometry_0172()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0175() + { + var result = _c.CreateSpriteShape(PathGeometry_0173()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0176() + { + var result = _c.CreateSpriteShape(PathGeometry_0174()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0177() + { + var result = _c.CreateSpriteShape(PathGeometry_0175()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0178() + { + var result = _c.CreateSpriteShape(PathGeometry_0176()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0179() + { + var result = _c.CreateSpriteShape(PathGeometry_0177()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0180() + { + var result = _c.CreateSpriteShape(PathGeometry_0178()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0181() + { + var result = _c.CreateSpriteShape(PathGeometry_0179()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0182() + { + var result = _c.CreateSpriteShape(PathGeometry_0180()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0183() + { + var result = _c.CreateSpriteShape(PathGeometry_0181()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0184() + { + var result = _c.CreateSpriteShape(PathGeometry_0182()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0185() + { + var result = _c.CreateSpriteShape(PathGeometry_0183()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0186() + { + var result = _c.CreateSpriteShape(PathGeometry_0184()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0187() + { + var result = _c.CreateSpriteShape(PathGeometry_0185()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0188() + { + var result = _c.CreateSpriteShape(PathGeometry_0186()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0189() + { + var result = _c.CreateSpriteShape(PathGeometry_0187()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0190() + { + var result = _c.CreateSpriteShape(PathGeometry_0188()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0191() + { + var result = _c.CreateSpriteShape(PathGeometry_0189()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0192() + { + var result = _c.CreateSpriteShape(PathGeometry_0190()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0193() + { + var result = _c.CreateSpriteShape(PathGeometry_0191()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0194() + { + var result = _c.CreateSpriteShape(PathGeometry_0192()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0195() + { + var result = _c.CreateSpriteShape(PathGeometry_0193()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0196() + { + var result = _c.CreateSpriteShape(PathGeometry_0194()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0197() + { + var result = _c.CreateSpriteShape(PathGeometry_0195()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0198() + { + var result = _c.CreateSpriteShape(PathGeometry_0196()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0199() + { + var result = _c.CreateSpriteShape(PathGeometry_0197()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0200() + { + var result = _c.CreateSpriteShape(PathGeometry_0198()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0201() + { + var result = _c.CreateSpriteShape(PathGeometry_0199()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0202() + { + var result = _c.CreateSpriteShape(PathGeometry_0200()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0203() + { + var result = _c.CreateSpriteShape(PathGeometry_0201()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0204() + { + var result = _c.CreateSpriteShape(PathGeometry_0202()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0205() + { + var result = _c.CreateSpriteShape(PathGeometry_0203()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0206() + { + var result = _c.CreateSpriteShape(PathGeometry_0204()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0207() + { + var result = _c.CreateSpriteShape(PathGeometry_0205()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0208() + { + var result = _c.CreateSpriteShape(PathGeometry_0206()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0209() + { + var result = _c.CreateSpriteShape(PathGeometry_0207()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0210() + { + var result = _c.CreateSpriteShape(PathGeometry_0208()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0211() + { + var result = _c.CreateSpriteShape(PathGeometry_0209()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0212() + { + var result = _c.CreateSpriteShape(PathGeometry_0210()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0213() + { + var result = _c.CreateSpriteShape(PathGeometry_0211()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0214() + { + var result = _c.CreateSpriteShape(PathGeometry_0212()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0215() + { + var result = _c.CreateSpriteShape(PathGeometry_0213()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0216() + { + var result = _c.CreateSpriteShape(PathGeometry_0214()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0217() + { + var result = _c.CreateSpriteShape(PathGeometry_0215()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0218() + { + var result = _c.CreateSpriteShape(PathGeometry_0216()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0219() + { + var result = _c.CreateSpriteShape(PathGeometry_0217()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0220() + { + var result = _c.CreateSpriteShape(PathGeometry_0218()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0221() + { + var result = _c.CreateSpriteShape(PathGeometry_0219()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0222() + { + var result = _c.CreateSpriteShape(PathGeometry_0220()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0223() + { + var result = _c.CreateSpriteShape(PathGeometry_0221()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0224() + { + var result = _c.CreateSpriteShape(PathGeometry_0222()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0225() + { + var result = _c.CreateSpriteShape(PathGeometry_0223()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0226() + { + var result = _c.CreateSpriteShape(PathGeometry_0224()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0227() + { + var result = _c.CreateSpriteShape(PathGeometry_0225()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0228() + { + var result = _c.CreateSpriteShape(PathGeometry_0226()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0229() + { + var result = _c.CreateSpriteShape(PathGeometry_0227()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0230() + { + var result = _c.CreateSpriteShape(PathGeometry_0228()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0231() + { + var result = _c.CreateSpriteShape(PathGeometry_0229()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0232() + { + var result = _c.CreateSpriteShape(PathGeometry_0230()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0233() + { + var result = _c.CreateSpriteShape(PathGeometry_0231()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0234() + { + var result = _c.CreateSpriteShape(PathGeometry_0232()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0235() + { + var result = _c.CreateSpriteShape(PathGeometry_0233()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0236() + { + var result = _c.CreateSpriteShape(PathGeometry_0234()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0237() + { + var result = _c.CreateSpriteShape(PathGeometry_0235()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0238() + { + var result = _c.CreateSpriteShape(PathGeometry_0236()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0239() + { + var result = _c.CreateSpriteShape(PathGeometry_0237()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0240() + { + var result = _c.CreateSpriteShape(PathGeometry_0238()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0241() + { + var result = _c.CreateSpriteShape(PathGeometry_0239()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0242() + { + var result = _c.CreateSpriteShape(PathGeometry_0240()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0243() + { + var result = _c.CreateSpriteShape(PathGeometry_0241()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0244() + { + var result = _c.CreateSpriteShape(PathGeometry_0242()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0245() + { + var result = _c.CreateSpriteShape(PathGeometry_0243()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0246() + { + var result = _c.CreateSpriteShape(PathGeometry_0244()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0247() + { + var result = _c.CreateSpriteShape(PathGeometry_0245()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0248() + { + var result = _c.CreateSpriteShape(PathGeometry_0246()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0249() + { + var result = _c.CreateSpriteShape(PathGeometry_0247()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0250() + { + var result = _c.CreateSpriteShape(PathGeometry_0248()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0251() + { + var result = _c.CreateSpriteShape(PathGeometry_0249()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0252() + { + var result = _c.CreateSpriteShape(PathGeometry_0250()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0253() + { + var result = _c.CreateSpriteShape(PathGeometry_0251()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0254() + { + var result = _c.CreateSpriteShape(PathGeometry_0252()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0255() + { + var result = _c.CreateSpriteShape(PathGeometry_0253()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0256() + { + var result = _c.CreateSpriteShape(PathGeometry_0254()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0257() + { + var result = _c.CreateSpriteShape(PathGeometry_0255()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0258() + { + var result = _c.CreateSpriteShape(PathGeometry_0256()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0259() + { + var result = _c.CreateSpriteShape(PathGeometry_0137()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0260() + { + var result = _c.CreateSpriteShape(PathGeometry_0138()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0261() + { + var result = _c.CreateSpriteShape(PathGeometry_0139()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0262() + { + var result = _c.CreateSpriteShape(PathGeometry_0140()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0263() + { + var result = _c.CreateSpriteShape(PathGeometry_0141()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0264() + { + var result = _c.CreateSpriteShape(PathGeometry_0142()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0265() + { + var result = _c.CreateSpriteShape(PathGeometry_0143()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0266() + { + var result = _c.CreateSpriteShape(PathGeometry_0144()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0267() + { + var result = _c.CreateSpriteShape(PathGeometry_0145()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0268() + { + var result = _c.CreateSpriteShape(PathGeometry_0146()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0269() + { + var result = _c.CreateSpriteShape(PathGeometry_0147()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0270() + { + var result = _c.CreateSpriteShape(PathGeometry_0148()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0271() + { + var result = _c.CreateSpriteShape(PathGeometry_0149()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0272() + { + var result = _c.CreateSpriteShape(PathGeometry_0150()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0273() + { + var result = _c.CreateSpriteShape(PathGeometry_0151()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0274() + { + var result = _c.CreateSpriteShape(PathGeometry_0152()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0275() + { + var result = _c.CreateSpriteShape(PathGeometry_0153()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0276() + { + var result = _c.CreateSpriteShape(PathGeometry_0154()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0277() + { + var result = _c.CreateSpriteShape(PathGeometry_0155()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0278() + { + var result = _c.CreateSpriteShape(PathGeometry_0156()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0279() + { + var result = _c.CreateSpriteShape(PathGeometry_0157()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0280() + { + var result = _c.CreateSpriteShape(PathGeometry_0158()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0281() + { + var result = _c.CreateSpriteShape(PathGeometry_0159()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0282() + { + var result = _c.CreateSpriteShape(PathGeometry_0160()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0283() + { + var result = _c.CreateSpriteShape(PathGeometry_0161()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0284() + { + var result = _c.CreateSpriteShape(PathGeometry_0162()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0285() + { + var result = _c.CreateSpriteShape(PathGeometry_0163()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0286() + { + var result = _c.CreateSpriteShape(PathGeometry_0164()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0287() + { + var result = _c.CreateSpriteShape(PathGeometry_0165()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0288() + { + var result = _c.CreateSpriteShape(PathGeometry_0166()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0289() + { + var result = _c.CreateSpriteShape(PathGeometry_0167()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0290() + { + var result = _c.CreateSpriteShape(PathGeometry_0168()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0291() + { + var result = _c.CreateSpriteShape(PathGeometry_0169()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0292() + { + var result = _c.CreateSpriteShape(PathGeometry_0170()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0293() + { + var result = _c.CreateSpriteShape(PathGeometry_0171()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0294() + { + var result = _c.CreateSpriteShape(PathGeometry_0172()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0295() + { + var result = _c.CreateSpriteShape(PathGeometry_0173()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0296() + { + var result = _c.CreateSpriteShape(PathGeometry_0174()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0297() + { + var result = _c.CreateSpriteShape(PathGeometry_0175()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0298() + { + var result = _c.CreateSpriteShape(PathGeometry_0176()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0299() + { + var result = _c.CreateSpriteShape(PathGeometry_0177()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0300() + { + var result = _c.CreateSpriteShape(PathGeometry_0178()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0301() + { + var result = _c.CreateSpriteShape(PathGeometry_0179()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0302() + { + var result = _c.CreateSpriteShape(PathGeometry_0180()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0303() + { + var result = _c.CreateSpriteShape(PathGeometry_0181()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0304() + { + var result = _c.CreateSpriteShape(PathGeometry_0182()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0305() + { + var result = _c.CreateSpriteShape(PathGeometry_0183()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0306() + { + var result = _c.CreateSpriteShape(PathGeometry_0184()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0307() + { + var result = _c.CreateSpriteShape(PathGeometry_0185()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0308() + { + var result = _c.CreateSpriteShape(PathGeometry_0186()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0309() + { + var result = _c.CreateSpriteShape(PathGeometry_0187()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0310() + { + var result = _c.CreateSpriteShape(PathGeometry_0188()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0311() + { + var result = _c.CreateSpriteShape(PathGeometry_0189()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0312() + { + var result = _c.CreateSpriteShape(PathGeometry_0190()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0313() + { + var result = _c.CreateSpriteShape(PathGeometry_0191()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0314() + { + var result = _c.CreateSpriteShape(PathGeometry_0192()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0315() + { + var result = _c.CreateSpriteShape(PathGeometry_0193()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0316() + { + var result = _c.CreateSpriteShape(PathGeometry_0194()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0317() + { + var result = _c.CreateSpriteShape(PathGeometry_0195()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0318() + { + var result = _c.CreateSpriteShape(PathGeometry_0196()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0319() + { + var result = _c.CreateSpriteShape(PathGeometry_0197()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0320() + { + var result = _c.CreateSpriteShape(PathGeometry_0198()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0321() + { + var result = _c.CreateSpriteShape(PathGeometry_0199()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0322() + { + var result = _c.CreateSpriteShape(PathGeometry_0200()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0323() + { + var result = _c.CreateSpriteShape(PathGeometry_0201()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0324() + { + var result = _c.CreateSpriteShape(PathGeometry_0202()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0325() + { + var result = _c.CreateSpriteShape(PathGeometry_0203()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0326() + { + var result = _c.CreateSpriteShape(PathGeometry_0204()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0327() + { + var result = _c.CreateSpriteShape(PathGeometry_0205()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0328() + { + var result = _c.CreateSpriteShape(PathGeometry_0206()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0329() + { + var result = _c.CreateSpriteShape(PathGeometry_0207()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0330() + { + var result = _c.CreateSpriteShape(PathGeometry_0208()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0331() + { + var result = _c.CreateSpriteShape(PathGeometry_0209()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0332() + { + var result = _c.CreateSpriteShape(PathGeometry_0210()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0333() + { + var result = _c.CreateSpriteShape(PathGeometry_0211()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0334() + { + var result = _c.CreateSpriteShape(PathGeometry_0212()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0335() + { + var result = _c.CreateSpriteShape(PathGeometry_0213()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0336() + { + var result = _c.CreateSpriteShape(PathGeometry_0214()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0337() + { + var result = _c.CreateSpriteShape(PathGeometry_0215()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0338() + { + var result = _c.CreateSpriteShape(PathGeometry_0216()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0339() + { + var result = _c.CreateSpriteShape(PathGeometry_0217()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0340() + { + var result = _c.CreateSpriteShape(PathGeometry_0218()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0341() + { + var result = _c.CreateSpriteShape(PathGeometry_0219()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0342() + { + var result = _c.CreateSpriteShape(PathGeometry_0220()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0343() + { + var result = _c.CreateSpriteShape(PathGeometry_0221()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0344() + { + var result = _c.CreateSpriteShape(PathGeometry_0222()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0345() + { + var result = _c.CreateSpriteShape(PathGeometry_0223()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0346() + { + var result = _c.CreateSpriteShape(PathGeometry_0224()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0347() + { + var result = _c.CreateSpriteShape(PathGeometry_0225()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0348() + { + var result = _c.CreateSpriteShape(PathGeometry_0226()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0349() + { + var result = _c.CreateSpriteShape(PathGeometry_0227()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0350() + { + var result = _c.CreateSpriteShape(PathGeometry_0228()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0351() + { + var result = _c.CreateSpriteShape(PathGeometry_0229()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0352() + { + var result = _c.CreateSpriteShape(PathGeometry_0230()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0353() + { + var result = _c.CreateSpriteShape(PathGeometry_0231()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0354() + { + var result = _c.CreateSpriteShape(PathGeometry_0232()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0355() + { + var result = _c.CreateSpriteShape(PathGeometry_0233()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0356() + { + var result = _c.CreateSpriteShape(PathGeometry_0234()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0357() + { + var result = _c.CreateSpriteShape(PathGeometry_0235()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0358() + { + var result = _c.CreateSpriteShape(PathGeometry_0236()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0359() + { + var result = _c.CreateSpriteShape(PathGeometry_0237()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0360() + { + var result = _c.CreateSpriteShape(PathGeometry_0238()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0361() + { + var result = _c.CreateSpriteShape(PathGeometry_0239()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0362() + { + var result = _c.CreateSpriteShape(PathGeometry_0240()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0363() + { + var result = _c.CreateSpriteShape(PathGeometry_0241()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0364() + { + var result = _c.CreateSpriteShape(PathGeometry_0242()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0365() + { + var result = _c.CreateSpriteShape(PathGeometry_0243()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0366() + { + var result = _c.CreateSpriteShape(PathGeometry_0244()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0367() + { + var result = _c.CreateSpriteShape(PathGeometry_0245()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0368() + { + var result = _c.CreateSpriteShape(PathGeometry_0246()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0369() + { + var result = _c.CreateSpriteShape(PathGeometry_0247()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0370() + { + var result = _c.CreateSpriteShape(PathGeometry_0248()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0371() + { + var result = _c.CreateSpriteShape(PathGeometry_0249()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0372() + { + var result = _c.CreateSpriteShape(PathGeometry_0250()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0373() + { + var result = _c.CreateSpriteShape(PathGeometry_0251()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0374() + { + var result = _c.CreateSpriteShape(PathGeometry_0252()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0375() + { + var result = _c.CreateSpriteShape(PathGeometry_0253()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0376() + { + var result = _c.CreateSpriteShape(PathGeometry_0254()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0377() + { + var result = _c.CreateSpriteShape(PathGeometry_0255()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0378() + { + var result = _c.CreateSpriteShape(PathGeometry_0256()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0379() + { + var result = _c.CreateSpriteShape(PathGeometry_0137()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0380() + { + var result = _c.CreateSpriteShape(PathGeometry_0138()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0381() + { + var result = _c.CreateSpriteShape(PathGeometry_0139()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0382() + { + var result = _c.CreateSpriteShape(PathGeometry_0140()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0383() + { + var result = _c.CreateSpriteShape(PathGeometry_0141()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0384() + { + var result = _c.CreateSpriteShape(PathGeometry_0142()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0385() + { + var result = _c.CreateSpriteShape(PathGeometry_0143()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0386() + { + var result = _c.CreateSpriteShape(PathGeometry_0144()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0387() + { + var result = _c.CreateSpriteShape(PathGeometry_0145()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0388() + { + var result = _c.CreateSpriteShape(PathGeometry_0146()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0389() + { + var result = _c.CreateSpriteShape(PathGeometry_0147()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0390() + { + var result = _c.CreateSpriteShape(PathGeometry_0148()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0391() + { + var result = _c.CreateSpriteShape(PathGeometry_0149()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0392() + { + var result = _c.CreateSpriteShape(PathGeometry_0150()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0393() + { + var result = _c.CreateSpriteShape(PathGeometry_0151()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0394() + { + var result = _c.CreateSpriteShape(PathGeometry_0152()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0395() + { + var result = _c.CreateSpriteShape(PathGeometry_0153()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0396() + { + var result = _c.CreateSpriteShape(PathGeometry_0154()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0397() + { + var result = _c.CreateSpriteShape(PathGeometry_0155()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0398() + { + var result = _c.CreateSpriteShape(PathGeometry_0156()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0399() + { + var result = _c.CreateSpriteShape(PathGeometry_0157()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0400() + { + var result = _c.CreateSpriteShape(PathGeometry_0158()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0401() + { + var result = _c.CreateSpriteShape(PathGeometry_0159()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0402() + { + var result = _c.CreateSpriteShape(PathGeometry_0160()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0403() + { + var result = _c.CreateSpriteShape(PathGeometry_0161()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0404() + { + var result = _c.CreateSpriteShape(PathGeometry_0162()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0405() + { + var result = _c.CreateSpriteShape(PathGeometry_0163()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0406() + { + var result = _c.CreateSpriteShape(PathGeometry_0164()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0407() + { + var result = _c.CreateSpriteShape(PathGeometry_0165()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0408() + { + var result = _c.CreateSpriteShape(PathGeometry_0166()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0409() + { + var result = _c.CreateSpriteShape(PathGeometry_0167()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0410() + { + var result = _c.CreateSpriteShape(PathGeometry_0168()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0411() + { + var result = _c.CreateSpriteShape(PathGeometry_0169()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0412() + { + var result = _c.CreateSpriteShape(PathGeometry_0170()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0413() + { + var result = _c.CreateSpriteShape(PathGeometry_0171()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0414() + { + var result = _c.CreateSpriteShape(PathGeometry_0172()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0415() + { + var result = _c.CreateSpriteShape(PathGeometry_0173()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0416() + { + var result = _c.CreateSpriteShape(PathGeometry_0174()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0417() + { + var result = _c.CreateSpriteShape(PathGeometry_0175()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0418() + { + var result = _c.CreateSpriteShape(PathGeometry_0176()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0419() + { + var result = _c.CreateSpriteShape(PathGeometry_0177()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0420() + { + var result = _c.CreateSpriteShape(PathGeometry_0178()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0421() + { + var result = _c.CreateSpriteShape(PathGeometry_0179()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0422() + { + var result = _c.CreateSpriteShape(PathGeometry_0180()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0423() + { + var result = _c.CreateSpriteShape(PathGeometry_0181()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0424() + { + var result = _c.CreateSpriteShape(PathGeometry_0182()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0425() + { + var result = _c.CreateSpriteShape(PathGeometry_0183()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0426() + { + var result = _c.CreateSpriteShape(PathGeometry_0184()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0427() + { + var result = _c.CreateSpriteShape(PathGeometry_0185()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0428() + { + var result = _c.CreateSpriteShape(PathGeometry_0186()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0429() + { + var result = _c.CreateSpriteShape(PathGeometry_0187()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0430() + { + var result = _c.CreateSpriteShape(PathGeometry_0188()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0431() + { + var result = _c.CreateSpriteShape(PathGeometry_0189()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0432() + { + var result = _c.CreateSpriteShape(PathGeometry_0190()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0433() + { + var result = _c.CreateSpriteShape(PathGeometry_0191()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0434() + { + var result = _c.CreateSpriteShape(PathGeometry_0192()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0435() + { + var result = _c.CreateSpriteShape(PathGeometry_0193()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0436() + { + var result = _c.CreateSpriteShape(PathGeometry_0194()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0437() + { + var result = _c.CreateSpriteShape(PathGeometry_0195()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0438() + { + var result = _c.CreateSpriteShape(PathGeometry_0196()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0439() + { + var result = _c.CreateSpriteShape(PathGeometry_0197()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0440() + { + var result = _c.CreateSpriteShape(PathGeometry_0198()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0441() + { + var result = _c.CreateSpriteShape(PathGeometry_0199()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0442() + { + var result = _c.CreateSpriteShape(PathGeometry_0200()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0443() + { + var result = _c.CreateSpriteShape(PathGeometry_0201()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0444() + { + var result = _c.CreateSpriteShape(PathGeometry_0202()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0445() + { + var result = _c.CreateSpriteShape(PathGeometry_0203()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0446() + { + var result = _c.CreateSpriteShape(PathGeometry_0204()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0447() + { + var result = _c.CreateSpriteShape(PathGeometry_0205()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0448() + { + var result = _c.CreateSpriteShape(PathGeometry_0206()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0449() + { + var result = _c.CreateSpriteShape(PathGeometry_0207()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0450() + { + var result = _c.CreateSpriteShape(PathGeometry_0208()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0451() + { + var result = _c.CreateSpriteShape(PathGeometry_0209()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0452() + { + var result = _c.CreateSpriteShape(PathGeometry_0210()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0453() + { + var result = _c.CreateSpriteShape(PathGeometry_0211()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0454() + { + var result = _c.CreateSpriteShape(PathGeometry_0212()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0455() + { + var result = _c.CreateSpriteShape(PathGeometry_0213()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0456() + { + var result = _c.CreateSpriteShape(PathGeometry_0214()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0457() + { + var result = _c.CreateSpriteShape(PathGeometry_0215()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0458() + { + var result = _c.CreateSpriteShape(PathGeometry_0216()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0459() + { + var result = _c.CreateSpriteShape(PathGeometry_0217()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0460() + { + var result = _c.CreateSpriteShape(PathGeometry_0218()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0461() + { + var result = _c.CreateSpriteShape(PathGeometry_0219()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0462() + { + var result = _c.CreateSpriteShape(PathGeometry_0220()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0463() + { + var result = _c.CreateSpriteShape(PathGeometry_0221()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0464() + { + var result = _c.CreateSpriteShape(PathGeometry_0222()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0465() + { + var result = _c.CreateSpriteShape(PathGeometry_0223()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0466() + { + var result = _c.CreateSpriteShape(PathGeometry_0224()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0467() + { + var result = _c.CreateSpriteShape(PathGeometry_0225()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0468() + { + var result = _c.CreateSpriteShape(PathGeometry_0226()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0469() + { + var result = _c.CreateSpriteShape(PathGeometry_0227()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0470() + { + var result = _c.CreateSpriteShape(PathGeometry_0228()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0471() + { + var result = _c.CreateSpriteShape(PathGeometry_0229()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0472() + { + var result = _c.CreateSpriteShape(PathGeometry_0230()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0473() + { + var result = _c.CreateSpriteShape(PathGeometry_0231()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0474() + { + var result = _c.CreateSpriteShape(PathGeometry_0232()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0475() + { + var result = _c.CreateSpriteShape(PathGeometry_0233()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0476() + { + var result = _c.CreateSpriteShape(PathGeometry_0234()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0477() + { + var result = _c.CreateSpriteShape(PathGeometry_0235()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0478() + { + var result = _c.CreateSpriteShape(PathGeometry_0236()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0479() + { + var result = _c.CreateSpriteShape(PathGeometry_0237()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0480() + { + var result = _c.CreateSpriteShape(PathGeometry_0238()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0481() + { + var result = _c.CreateSpriteShape(PathGeometry_0239()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0482() + { + var result = _c.CreateSpriteShape(PathGeometry_0240()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0483() + { + var result = _c.CreateSpriteShape(PathGeometry_0241()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0484() + { + var result = _c.CreateSpriteShape(PathGeometry_0242()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0485() + { + var result = _c.CreateSpriteShape(PathGeometry_0243()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0486() + { + var result = _c.CreateSpriteShape(PathGeometry_0244()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0487() + { + var result = _c.CreateSpriteShape(PathGeometry_0245()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0488() + { + var result = _c.CreateSpriteShape(PathGeometry_0246()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0489() + { + var result = _c.CreateSpriteShape(PathGeometry_0247()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0490() + { + var result = _c.CreateSpriteShape(PathGeometry_0248()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0491() + { + var result = _c.CreateSpriteShape(PathGeometry_0249()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0492() + { + var result = _c.CreateSpriteShape(PathGeometry_0250()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0493() + { + var result = _c.CreateSpriteShape(PathGeometry_0251()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0494() + { + var result = _c.CreateSpriteShape(PathGeometry_0252()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0495() + { + var result = _c.CreateSpriteShape(PathGeometry_0253()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0496() + { + var result = _c.CreateSpriteShape(PathGeometry_0254()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0497() + { + var result = _c.CreateSpriteShape(PathGeometry_0255()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0498() + { + var result = _c.CreateSpriteShape(PathGeometry_0256()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0499() + { + var result = _c.CreateSpriteShape(PathGeometry_0137()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0500() + { + var result = _c.CreateSpriteShape(PathGeometry_0138()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0501() + { + var result = _c.CreateSpriteShape(PathGeometry_0139()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0502() + { + var result = _c.CreateSpriteShape(PathGeometry_0140()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0503() + { + var result = _c.CreateSpriteShape(PathGeometry_0141()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0504() + { + var result = _c.CreateSpriteShape(PathGeometry_0142()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0505() + { + var result = _c.CreateSpriteShape(PathGeometry_0143()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0506() + { + var result = _c.CreateSpriteShape(PathGeometry_0144()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0507() + { + var result = _c.CreateSpriteShape(PathGeometry_0145()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0508() + { + var result = _c.CreateSpriteShape(PathGeometry_0146()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0509() + { + var result = _c.CreateSpriteShape(PathGeometry_0147()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0510() + { + var result = _c.CreateSpriteShape(PathGeometry_0148()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0511() + { + var result = _c.CreateSpriteShape(PathGeometry_0149()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0512() + { + var result = _c.CreateSpriteShape(PathGeometry_0150()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0513() + { + var result = _c.CreateSpriteShape(PathGeometry_0151()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0514() + { + var result = _c.CreateSpriteShape(PathGeometry_0152()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0515() + { + var result = _c.CreateSpriteShape(PathGeometry_0153()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0516() + { + var result = _c.CreateSpriteShape(PathGeometry_0154()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0517() + { + var result = _c.CreateSpriteShape(PathGeometry_0155()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0518() + { + var result = _c.CreateSpriteShape(PathGeometry_0156()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0519() + { + var result = _c.CreateSpriteShape(PathGeometry_0157()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0520() + { + var result = _c.CreateSpriteShape(PathGeometry_0158()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0521() + { + var result = _c.CreateSpriteShape(PathGeometry_0159()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0522() + { + var result = _c.CreateSpriteShape(PathGeometry_0160()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0523() + { + var result = _c.CreateSpriteShape(PathGeometry_0161()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0524() + { + var result = _c.CreateSpriteShape(PathGeometry_0162()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0525() + { + var result = _c.CreateSpriteShape(PathGeometry_0163()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0526() + { + var result = _c.CreateSpriteShape(PathGeometry_0164()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0527() + { + var result = _c.CreateSpriteShape(PathGeometry_0165()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0528() + { + var result = _c.CreateSpriteShape(PathGeometry_0166()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0529() + { + var result = _c.CreateSpriteShape(PathGeometry_0167()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0530() + { + var result = _c.CreateSpriteShape(PathGeometry_0168()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0531() + { + var result = _c.CreateSpriteShape(PathGeometry_0169()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0532() + { + var result = _c.CreateSpriteShape(PathGeometry_0170()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0533() + { + var result = _c.CreateSpriteShape(PathGeometry_0171()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0534() + { + var result = _c.CreateSpriteShape(PathGeometry_0172()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0535() + { + var result = _c.CreateSpriteShape(PathGeometry_0173()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0536() + { + var result = _c.CreateSpriteShape(PathGeometry_0174()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0537() + { + var result = _c.CreateSpriteShape(PathGeometry_0175()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0538() + { + var result = _c.CreateSpriteShape(PathGeometry_0176()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0539() + { + var result = _c.CreateSpriteShape(PathGeometry_0177()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0540() + { + var result = _c.CreateSpriteShape(PathGeometry_0178()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0541() + { + var result = _c.CreateSpriteShape(PathGeometry_0179()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0542() + { + var result = _c.CreateSpriteShape(PathGeometry_0180()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0543() + { + var result = _c.CreateSpriteShape(PathGeometry_0181()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0544() + { + var result = _c.CreateSpriteShape(PathGeometry_0182()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0545() + { + var result = _c.CreateSpriteShape(PathGeometry_0183()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0546() + { + var result = _c.CreateSpriteShape(PathGeometry_0184()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0547() + { + var result = _c.CreateSpriteShape(PathGeometry_0185()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0548() + { + var result = _c.CreateSpriteShape(PathGeometry_0186()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0549() + { + var result = _c.CreateSpriteShape(PathGeometry_0187()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0550() + { + var result = _c.CreateSpriteShape(PathGeometry_0188()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0551() + { + var result = _c.CreateSpriteShape(PathGeometry_0189()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0552() + { + var result = _c.CreateSpriteShape(PathGeometry_0190()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0553() + { + var result = _c.CreateSpriteShape(PathGeometry_0191()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0554() + { + var result = _c.CreateSpriteShape(PathGeometry_0192()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0555() + { + var result = _c.CreateSpriteShape(PathGeometry_0193()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0556() + { + var result = _c.CreateSpriteShape(PathGeometry_0194()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0557() + { + var result = _c.CreateSpriteShape(PathGeometry_0195()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0558() + { + var result = _c.CreateSpriteShape(PathGeometry_0196()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0559() + { + var result = _c.CreateSpriteShape(PathGeometry_0197()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0560() + { + var result = _c.CreateSpriteShape(PathGeometry_0198()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0561() + { + var result = _c.CreateSpriteShape(PathGeometry_0199()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0562() + { + var result = _c.CreateSpriteShape(PathGeometry_0200()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0563() + { + var result = _c.CreateSpriteShape(PathGeometry_0201()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0564() + { + var result = _c.CreateSpriteShape(PathGeometry_0202()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0565() + { + var result = _c.CreateSpriteShape(PathGeometry_0203()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0566() + { + var result = _c.CreateSpriteShape(PathGeometry_0204()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0567() + { + var result = _c.CreateSpriteShape(PathGeometry_0205()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0568() + { + var result = _c.CreateSpriteShape(PathGeometry_0206()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0569() + { + var result = _c.CreateSpriteShape(PathGeometry_0207()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0570() + { + var result = _c.CreateSpriteShape(PathGeometry_0208()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0571() + { + var result = _c.CreateSpriteShape(PathGeometry_0209()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0572() + { + var result = _c.CreateSpriteShape(PathGeometry_0210()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0573() + { + var result = _c.CreateSpriteShape(PathGeometry_0211()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0574() + { + var result = _c.CreateSpriteShape(PathGeometry_0212()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0575() + { + var result = _c.CreateSpriteShape(PathGeometry_0213()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0576() + { + var result = _c.CreateSpriteShape(PathGeometry_0214()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0577() + { + var result = _c.CreateSpriteShape(PathGeometry_0215()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0578() + { + var result = _c.CreateSpriteShape(PathGeometry_0216()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0579() + { + var result = _c.CreateSpriteShape(PathGeometry_0217()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0580() + { + var result = _c.CreateSpriteShape(PathGeometry_0218()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0581() + { + var result = _c.CreateSpriteShape(PathGeometry_0219()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0582() + { + var result = _c.CreateSpriteShape(PathGeometry_0220()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0583() + { + var result = _c.CreateSpriteShape(PathGeometry_0221()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0584() + { + var result = _c.CreateSpriteShape(PathGeometry_0222()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0585() + { + var result = _c.CreateSpriteShape(PathGeometry_0223()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0586() + { + var result = _c.CreateSpriteShape(PathGeometry_0224()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0587() + { + var result = _c.CreateSpriteShape(PathGeometry_0225()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0588() + { + var result = _c.CreateSpriteShape(PathGeometry_0226()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0589() + { + var result = _c.CreateSpriteShape(PathGeometry_0227()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0590() + { + var result = _c.CreateSpriteShape(PathGeometry_0228()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0591() + { + var result = _c.CreateSpriteShape(PathGeometry_0229()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0592() + { + var result = _c.CreateSpriteShape(PathGeometry_0230()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0593() + { + var result = _c.CreateSpriteShape(PathGeometry_0231()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0594() + { + var result = _c.CreateSpriteShape(PathGeometry_0232()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0595() + { + var result = _c.CreateSpriteShape(PathGeometry_0233()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0596() + { + var result = _c.CreateSpriteShape(PathGeometry_0234()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0597() + { + var result = _c.CreateSpriteShape(PathGeometry_0235()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0598() + { + var result = _c.CreateSpriteShape(PathGeometry_0236()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0599() + { + var result = _c.CreateSpriteShape(PathGeometry_0237()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0600() + { + var result = _c.CreateSpriteShape(PathGeometry_0238()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0601() + { + var result = _c.CreateSpriteShape(PathGeometry_0239()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0602() + { + var result = _c.CreateSpriteShape(PathGeometry_0240()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0603() + { + var result = _c.CreateSpriteShape(PathGeometry_0241()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0604() + { + var result = _c.CreateSpriteShape(PathGeometry_0242()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0605() + { + var result = _c.CreateSpriteShape(PathGeometry_0243()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0606() + { + var result = _c.CreateSpriteShape(PathGeometry_0244()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0607() + { + var result = _c.CreateSpriteShape(PathGeometry_0245()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0608() + { + var result = _c.CreateSpriteShape(PathGeometry_0246()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0609() + { + var result = _c.CreateSpriteShape(PathGeometry_0247()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0610() + { + var result = _c.CreateSpriteShape(PathGeometry_0248()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0611() + { + var result = _c.CreateSpriteShape(PathGeometry_0249()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0612() + { + var result = _c.CreateSpriteShape(PathGeometry_0250()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0613() + { + var result = _c.CreateSpriteShape(PathGeometry_0251()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0614() + { + var result = _c.CreateSpriteShape(PathGeometry_0252()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0615() + { + var result = _c.CreateSpriteShape(PathGeometry_0253()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0616() + { + var result = _c.CreateSpriteShape(PathGeometry_0254()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0617() + { + var result = _c.CreateSpriteShape(PathGeometry_0255()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0618() + { + var result = _c.CreateSpriteShape(PathGeometry_0256()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0619() + { + var result = _c.CreateSpriteShape(PathGeometry_0137()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0620() + { + var result = _c.CreateSpriteShape(PathGeometry_0138()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0621() + { + var result = _c.CreateSpriteShape(PathGeometry_0139()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0622() + { + var result = _c.CreateSpriteShape(PathGeometry_0140()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0623() + { + var result = _c.CreateSpriteShape(PathGeometry_0141()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0624() + { + var result = _c.CreateSpriteShape(PathGeometry_0142()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0625() + { + var result = _c.CreateSpriteShape(PathGeometry_0143()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0626() + { + var result = _c.CreateSpriteShape(PathGeometry_0144()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0627() + { + var result = _c.CreateSpriteShape(PathGeometry_0145()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0628() + { + var result = _c.CreateSpriteShape(PathGeometry_0146()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0629() + { + var result = _c.CreateSpriteShape(PathGeometry_0147()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0630() + { + var result = _c.CreateSpriteShape(PathGeometry_0148()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0631() + { + var result = _c.CreateSpriteShape(PathGeometry_0149()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0632() + { + var result = _c.CreateSpriteShape(PathGeometry_0150()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0633() + { + var result = _c.CreateSpriteShape(PathGeometry_0151()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0634() + { + var result = _c.CreateSpriteShape(PathGeometry_0152()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0635() + { + var result = _c.CreateSpriteShape(PathGeometry_0153()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0636() + { + var result = _c.CreateSpriteShape(PathGeometry_0154()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0637() + { + var result = _c.CreateSpriteShape(PathGeometry_0155()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0638() + { + var result = _c.CreateSpriteShape(PathGeometry_0156()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0639() + { + var result = _c.CreateSpriteShape(PathGeometry_0157()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0640() + { + var result = _c.CreateSpriteShape(PathGeometry_0158()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0641() + { + var result = _c.CreateSpriteShape(PathGeometry_0159()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0642() + { + var result = _c.CreateSpriteShape(PathGeometry_0160()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0643() + { + var result = _c.CreateSpriteShape(PathGeometry_0161()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0644() + { + var result = _c.CreateSpriteShape(PathGeometry_0162()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0645() + { + var result = _c.CreateSpriteShape(PathGeometry_0163()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0646() + { + var result = _c.CreateSpriteShape(PathGeometry_0164()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0647() + { + var result = _c.CreateSpriteShape(PathGeometry_0165()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0648() + { + var result = _c.CreateSpriteShape(PathGeometry_0166()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0649() + { + var result = _c.CreateSpriteShape(PathGeometry_0167()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0650() + { + var result = _c.CreateSpriteShape(PathGeometry_0168()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0651() + { + var result = _c.CreateSpriteShape(PathGeometry_0169()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0652() + { + var result = _c.CreateSpriteShape(PathGeometry_0170()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0653() + { + var result = _c.CreateSpriteShape(PathGeometry_0171()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0654() + { + var result = _c.CreateSpriteShape(PathGeometry_0172()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0655() + { + var result = _c.CreateSpriteShape(PathGeometry_0173()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0656() + { + var result = _c.CreateSpriteShape(PathGeometry_0174()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0657() + { + var result = _c.CreateSpriteShape(PathGeometry_0175()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0658() + { + var result = _c.CreateSpriteShape(PathGeometry_0176()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0659() + { + var result = _c.CreateSpriteShape(PathGeometry_0177()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0660() + { + var result = _c.CreateSpriteShape(PathGeometry_0178()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0661() + { + var result = _c.CreateSpriteShape(PathGeometry_0179()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0662() + { + var result = _c.CreateSpriteShape(PathGeometry_0180()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0663() + { + var result = _c.CreateSpriteShape(PathGeometry_0181()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0664() + { + var result = _c.CreateSpriteShape(PathGeometry_0182()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0665() + { + var result = _c.CreateSpriteShape(PathGeometry_0183()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0666() + { + var result = _c.CreateSpriteShape(PathGeometry_0184()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0667() + { + var result = _c.CreateSpriteShape(PathGeometry_0185()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0668() + { + var result = _c.CreateSpriteShape(PathGeometry_0186()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0669() + { + var result = _c.CreateSpriteShape(PathGeometry_0187()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0670() + { + var result = _c.CreateSpriteShape(PathGeometry_0188()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0671() + { + var result = _c.CreateSpriteShape(PathGeometry_0189()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0672() + { + var result = _c.CreateSpriteShape(PathGeometry_0190()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0673() + { + var result = _c.CreateSpriteShape(PathGeometry_0191()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0674() + { + var result = _c.CreateSpriteShape(PathGeometry_0192()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0675() + { + var result = _c.CreateSpriteShape(PathGeometry_0193()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0676() + { + var result = _c.CreateSpriteShape(PathGeometry_0194()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0677() + { + var result = _c.CreateSpriteShape(PathGeometry_0195()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0678() + { + var result = _c.CreateSpriteShape(PathGeometry_0196()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0679() + { + var result = _c.CreateSpriteShape(PathGeometry_0197()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0680() + { + var result = _c.CreateSpriteShape(PathGeometry_0198()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0681() + { + var result = _c.CreateSpriteShape(PathGeometry_0199()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0682() + { + var result = _c.CreateSpriteShape(PathGeometry_0200()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0683() + { + var result = _c.CreateSpriteShape(PathGeometry_0201()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0684() + { + var result = _c.CreateSpriteShape(PathGeometry_0202()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0685() + { + var result = _c.CreateSpriteShape(PathGeometry_0203()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0686() + { + var result = _c.CreateSpriteShape(PathGeometry_0204()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0687() + { + var result = _c.CreateSpriteShape(PathGeometry_0205()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0688() + { + var result = _c.CreateSpriteShape(PathGeometry_0206()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0689() + { + var result = _c.CreateSpriteShape(PathGeometry_0207()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0690() + { + var result = _c.CreateSpriteShape(PathGeometry_0208()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0691() + { + var result = _c.CreateSpriteShape(PathGeometry_0209()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0692() + { + var result = _c.CreateSpriteShape(PathGeometry_0210()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0693() + { + var result = _c.CreateSpriteShape(PathGeometry_0211()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0694() + { + var result = _c.CreateSpriteShape(PathGeometry_0212()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0695() + { + var result = _c.CreateSpriteShape(PathGeometry_0213()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0696() + { + var result = _c.CreateSpriteShape(PathGeometry_0214()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0697() + { + var result = _c.CreateSpriteShape(PathGeometry_0215()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0698() + { + var result = _c.CreateSpriteShape(PathGeometry_0216()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0699() + { + var result = _c.CreateSpriteShape(PathGeometry_0217()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0700() + { + var result = _c.CreateSpriteShape(PathGeometry_0218()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0701() + { + var result = _c.CreateSpriteShape(PathGeometry_0219()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0702() + { + var result = _c.CreateSpriteShape(PathGeometry_0220()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // G + CompositionSpriteShape SpriteShape_0703() + { + var result = _c.CreateSpriteShape(PathGeometry_0221()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0704() + { + var result = _c.CreateSpriteShape(PathGeometry_0222()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0705() + { + var result = _c.CreateSpriteShape(PathGeometry_0223()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0706() + { + var result = _c.CreateSpriteShape(PathGeometry_0224()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0707() + { + var result = _c.CreateSpriteShape(PathGeometry_0225()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0708() + { + var result = _c.CreateSpriteShape(PathGeometry_0226()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0709() + { + var result = _c.CreateSpriteShape(PathGeometry_0227()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0710() + { + var result = _c.CreateSpriteShape(PathGeometry_0228()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0711() + { + var result = _c.CreateSpriteShape(PathGeometry_0229()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0712() + { + var result = _c.CreateSpriteShape(PathGeometry_0230()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0713() + { + var result = _c.CreateSpriteShape(PathGeometry_0231()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0714() + { + var result = _c.CreateSpriteShape(PathGeometry_0232()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0715() + { + var result = _c.CreateSpriteShape(PathGeometry_0233()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0716() + { + var result = _c.CreateSpriteShape(PathGeometry_0234()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0717() + { + var result = _c.CreateSpriteShape(PathGeometry_0235()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0718() + { + var result = _c.CreateSpriteShape(PathGeometry_0236()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0719() + { + var result = _c.CreateSpriteShape(PathGeometry_0237()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0720() + { + var result = _c.CreateSpriteShape(PathGeometry_0238()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0721() + { + var result = _c.CreateSpriteShape(PathGeometry_0239()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // I + CompositionSpriteShape SpriteShape_0722() + { + var result = _c.CreateSpriteShape(PathGeometry_0240()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0723() + { + var result = _c.CreateSpriteShape(PathGeometry_0241()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0724() + { + var result = _c.CreateSpriteShape(PathGeometry_0242()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // S + CompositionSpriteShape SpriteShape_0725() + { + var result = _c.CreateSpriteShape(PathGeometry_0243()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0726() + { + var result = _c.CreateSpriteShape(PathGeometry_0244()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0727() + { + var result = _c.CreateSpriteShape(PathGeometry_0245()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0728() + { + var result = _c.CreateSpriteShape(PathGeometry_0246()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0729() + { + var result = _c.CreateSpriteShape(PathGeometry_0247()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0730() + { + var result = _c.CreateSpriteShape(PathGeometry_0248()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // C + CompositionSpriteShape SpriteShape_0731() + { + var result = _c.CreateSpriteShape(PathGeometry_0249()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0732() + { + var result = _c.CreateSpriteShape(PathGeometry_0250()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0733() + { + var result = _c.CreateSpriteShape(PathGeometry_0251()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0734() + { + var result = _c.CreateSpriteShape(PathGeometry_0252()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0735() + { + var result = _c.CreateSpriteShape(PathGeometry_0253()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0736() + { + var result = _c.CreateSpriteShape(PathGeometry_0254()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0737() + { + var result = _c.CreateSpriteShape(PathGeometry_0255()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // ShapeGroup: P + CompositionSpriteShape SpriteShape_0738() + { + var result = _c.CreateSpriteShape(PathGeometry_0256()); + result.FillBrush = ThemeColor_Color_FFFFFF_3(); + return result; + } + + // Layer aggregator + // ShapeGroup: n + CompositionSpriteShape SpriteShape_0739() + { + // Offset:<128, 166> + var geometry = PathGeometry_0257(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // ShapeGroup: n + CompositionSpriteShape SpriteShape_0740() + { + // Offset:<128, 166> + var geometry = PathGeometry_0258(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // ShapeGroup: n + CompositionSpriteShape SpriteShape_0741() + { + // Offset:<128, 166> + var geometry = PathGeometry_0259(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // ShapeGroup: n + CompositionSpriteShape SpriteShape_0742() + { + // Offset:<128, 166> + var geometry = PathGeometry_0260(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // - + CompositionSpriteShape SpriteShape_0743() + { + // Offset:<128, 166> + var geometry = PathGeometry_0261(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // ShapeGroup: n + CompositionSpriteShape SpriteShape_0744() + { + // Offset:<128, 166> + var geometry = PathGeometry_0262(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // ShapeGroup: n + CompositionSpriteShape SpriteShape_0745() + { + // Offset:<128, 166> + var geometry = PathGeometry_0263(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_0746() + { + // Offset:<128, 166> + var geometry = PathGeometry_0264(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // ShapeGroup: n + CompositionSpriteShape SpriteShape_0747() + { + // Offset:<128, 166> + var geometry = PathGeometry_0265(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // s + CompositionSpriteShape SpriteShape_0748() + { + // Offset:<128, 166> + var geometry = PathGeometry_0266(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // ShapeGroup: n + CompositionSpriteShape SpriteShape_0749() + { + // Offset:<128, 166> + var geometry = PathGeometry_0267(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // s + CompositionSpriteShape SpriteShape_0750() + { + // Offset:<128, 166> + var geometry = PathGeometry_0268(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // ShapeGroup: n + CompositionSpriteShape SpriteShape_0751() + { + // Offset:<128, 166> + var geometry = PathGeometry_0269(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // ShapeGroup: n + CompositionSpriteShape SpriteShape_0752() + { + // Offset:<128, 166> + var geometry = PathGeometry_0270(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // ShapeGroup: n + CompositionSpriteShape SpriteShape_0753() + { + // Offset:<128, 166> + var geometry = PathGeometry_0271(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // , + CompositionSpriteShape SpriteShape_0754() + { + // Offset:<128, 166> + var geometry = PathGeometry_0272(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // ShapeGroup: n + CompositionSpriteShape SpriteShape_0755() + { + // Offset:<128, 166> + var geometry = PathGeometry_0273(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // Layer aggregator + // ShapeGroup: n + CompositionSpriteShape SpriteShape_0756() + { + // Offset:<128, 166> + var geometry = PathGeometry_0274(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // . + CompositionSpriteShape SpriteShape_0757() + { + // Offset:<964, 609> + var geometry = PathGeometry_0275(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0758() + { + // Offset:<964, 609> + var geometry = PathGeometry_0276(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0759() + { + // Offset:<964, 609> + var geometry = PathGeometry_0277(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // s + CompositionSpriteShape SpriteShape_0760() + { + // Offset:<964, 609> + var geometry = PathGeometry_0278(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // e + CompositionSpriteShape SpriteShape_0761() + { + // Offset:<964, 609> + var geometry = PathGeometry_0279(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0762() + { + // Offset:<964, 609> + var geometry = PathGeometry_0280(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0763() + { + // Offset:<964, 609> + var geometry = PathGeometry_0281(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0764() + { + // Offset:<964, 609> + var geometry = PathGeometry_0282(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0765() + { + // Offset:<964, 609> + var geometry = PathGeometry_0283(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // I + CompositionSpriteShape SpriteShape_0766() + { + // Offset:<964, 609> + var geometry = PathGeometry_0284(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0767() + { + // Offset:<964, 609> + var geometry = PathGeometry_0285(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0768() + { + // Offset:<964, 609> + var geometry = PathGeometry_0286(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0769() + { + // Offset:<964, 609> + var geometry = PathGeometry_0287(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0770() + { + // Offset:<964, 609> + var geometry = PathGeometry_0288(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0771() + { + // Offset:<964, 609> + var geometry = PathGeometry_0289(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0772() + { + // Offset:<964, 609> + var geometry = PathGeometry_0290(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // e + CompositionSpriteShape SpriteShape_0773() + { + // Offset:<964, 609> + var geometry = PathGeometry_0291(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0774() + { + // Offset:<964, 609> + var geometry = PathGeometry_0292(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0775() + { + // Offset:<964, 609> + var geometry = PathGeometry_0293(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0776() + { + // Offset:<964, 609> + var geometry = PathGeometry_0294(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0777() + { + // Offset:<964, 609> + var geometry = PathGeometry_0295(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0778() + { + // Offset:<964, 609> + var geometry = PathGeometry_0296(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // l + CompositionSpriteShape SpriteShape_0779() + { + // Offset:<964, 609> + var geometry = PathGeometry_0297(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0780() + { + // Offset:<964, 609> + var geometry = PathGeometry_0298(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0781() + { + // Offset:<964, 609> + var geometry = PathGeometry_0299(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // e + CompositionSpriteShape SpriteShape_0782() + { + // Offset:<964, 609> + var geometry = PathGeometry_0300(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0783() + { + // Offset:<964, 609> + var geometry = PathGeometry_0301(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0784() + { + // Offset:<964, 609> + var geometry = PathGeometry_0302(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // u + CompositionSpriteShape SpriteShape_0785() + { + // Offset:<964, 609> + var geometry = PathGeometry_0303(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // c + CompositionSpriteShape SpriteShape_0786() + { + // Offset:<964, 609> + var geometry = PathGeometry_0304(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // s + CompositionSpriteShape SpriteShape_0787() + { + // Offset:<964, 609> + var geometry = PathGeometry_0305(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0788() + { + // Offset:<964, 609> + var geometry = PathGeometry_0306(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0789() + { + // Offset:<964, 609> + var geometry = PathGeometry_0307(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0790() + { + // Offset:<964, 609> + var geometry = PathGeometry_0308(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0791() + { + // Offset:<964, 609> + var geometry = PathGeometry_0309(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // w + CompositionSpriteShape SpriteShape_0792() + { + // Offset:<964, 609> + var geometry = PathGeometry_0310(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0793() + { + // Offset:<964, 609> + var geometry = PathGeometry_0311(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0794() + { + // Offset:<964, 609> + var geometry = PathGeometry_0312(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0795() + { + // Offset:<964, 609> + var geometry = PathGeometry_0313(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0796() + { + // Offset:<964, 609> + var geometry = PathGeometry_0314(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0797() + { + // Offset:<964, 609> + var geometry = PathGeometry_0315(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0798() + { + // Offset:<964, 609> + var geometry = PathGeometry_0316(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0799() + { + // Offset:<964, 609> + var geometry = PathGeometry_0317(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // e + CompositionSpriteShape SpriteShape_0800() + { + // Offset:<964, 609> + var geometry = PathGeometry_0318(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0801() + { + // Offset:<964, 609> + var geometry = PathGeometry_0319(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0802() + { + // Offset:<964, 609> + var geometry = PathGeometry_0320(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0803() + { + // Offset:<964, 609> + var geometry = PathGeometry_0321(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0804() + { + // Offset:<964, 609> + var geometry = PathGeometry_0322(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0805() + { + // Offset:<964, 609> + var geometry = PathGeometry_0323(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0806() + { + // Offset:<964, 609> + var geometry = PathGeometry_0324(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0807() + { + // Offset:<964, 609> + var geometry = PathGeometry_0325(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0808() + { + // Offset:<964, 609> + var geometry = PathGeometry_0326(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0809() + { + // Offset:<964, 609> + var geometry = PathGeometry_0327(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0810() + { + // Offset:<964, 609> + var geometry = PathGeometry_0328(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0811() + { + // Offset:<964, 609> + var geometry = PathGeometry_0329(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0812() + { + // Offset:<964, 609> + var geometry = PathGeometry_0330(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // e + CompositionSpriteShape SpriteShape_0813() + { + // Offset:<964, 609> + var geometry = PathGeometry_0331(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0814() + { + // Offset:<964, 609> + var geometry = PathGeometry_0332(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0815() + { + // Offset:<964, 609> + var geometry = PathGeometry_0333(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // s + CompositionSpriteShape SpriteShape_0816() + { + // Offset:<964, 609> + var geometry = PathGeometry_0334(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // u + CompositionSpriteShape SpriteShape_0817() + { + // Offset:<964, 609> + var geometry = PathGeometry_0335(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0818() + { + // Offset:<964, 609> + var geometry = PathGeometry_0336(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0819() + { + // Offset:<964, 609> + var geometry = PathGeometry_0337(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0820() + { + // Offset:<964, 609> + var geometry = PathGeometry_0338(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0821() + { + // Offset:<964, 609> + var geometry = PathGeometry_0339(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0822() + { + // Offset:<964, 609> + var geometry = PathGeometry_0340(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0823() + { + // Offset:<964, 609> + var geometry = PathGeometry_0341(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0824() + { + // Offset:<964, 609> + var geometry = PathGeometry_0342(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0825() + { + // Offset:<964, 609> + var geometry = PathGeometry_0343(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0826() + { + // Offset:<964, 609> + var geometry = PathGeometry_0344(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // e + CompositionSpriteShape SpriteShape_0827() + { + // Offset:<964, 609> + var geometry = PathGeometry_0345(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0828() + { + // Offset:<964, 609> + var geometry = PathGeometry_0346(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0829() + { + // Offset:<964, 609> + var geometry = PathGeometry_0347(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // l + CompositionSpriteShape SpriteShape_0830() + { + // Offset:<964, 609> + var geometry = PathGeometry_0348(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0831() + { + // Offset:<964, 609> + var geometry = PathGeometry_0349(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // l + CompositionSpriteShape SpriteShape_0832() + { + // Offset:<964, 609> + var geometry = PathGeometry_0350(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // u + CompositionSpriteShape SpriteShape_0833() + { + // Offset:<964, 609> + var geometry = PathGeometry_0351(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0834() + { + // Offset:<964, 609> + var geometry = PathGeometry_0352(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // w + CompositionSpriteShape SpriteShape_0835() + { + // Offset:<964, 609> + var geometry = PathGeometry_0353(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // I + CompositionSpriteShape SpriteShape_0836() + { + // Offset:<964, 609> + var geometry = PathGeometry_0354(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // , + CompositionSpriteShape SpriteShape_0837() + { + // Offset:<964, 609> + var geometry = PathGeometry_0355(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0838() + { + // Offset:<964, 609> + var geometry = PathGeometry_0356(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // u + CompositionSpriteShape SpriteShape_0839() + { + // Offset:<964, 609> + var geometry = PathGeometry_0357(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0840() + { + // Offset:<964, 609> + var geometry = PathGeometry_0358(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0841() + { + // Offset:<964, 609> + var geometry = PathGeometry_0359(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0842() + { + // Offset:<964, 609> + var geometry = PathGeometry_0360(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // e + CompositionSpriteShape SpriteShape_0843() + { + // Offset:<964, 609> + var geometry = PathGeometry_0361(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0844() + { + // Offset:<964, 609> + var geometry = PathGeometry_0362(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // e + CompositionSpriteShape SpriteShape_0845() + { + // Offset:<964, 609> + var geometry = PathGeometry_0363(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // c + CompositionSpriteShape SpriteShape_0846() + { + // Offset:<964, 609> + var geometry = PathGeometry_0364(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0847() + { + // Offset:<964, 609> + var geometry = PathGeometry_0365(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // u + CompositionSpriteShape SpriteShape_0848() + { + // Offset:<964, 609> + var geometry = PathGeometry_0366(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0849() + { + // Offset:<964, 609> + var geometry = PathGeometry_0367(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0850() + { + // Offset:<964, 609> + var geometry = PathGeometry_0368(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0851() + { + // Offset:<964, 609> + var geometry = PathGeometry_0369(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0852() + { + // Offset:<964, 609> + var geometry = PathGeometry_0370(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0853() + { + // Offset:<964, 609> + var geometry = PathGeometry_0371(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // e + CompositionSpriteShape SpriteShape_0854() + { + // Offset:<964, 609> + var geometry = PathGeometry_0372(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0855() + { + // Offset:<964, 609> + var geometry = PathGeometry_0373(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0856() + { + // Offset:<964, 609> + var geometry = PathGeometry_0374(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // u + CompositionSpriteShape SpriteShape_0857() + { + // Offset:<964, 609> + var geometry = PathGeometry_0375(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // s + CompositionSpriteShape SpriteShape_0858() + { + // Offset:<964, 609> + var geometry = PathGeometry_0376(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // s + CompositionSpriteShape SpriteShape_0859() + { + // Offset:<964, 609> + var geometry = PathGeometry_0377(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0860() + { + // Offset:<964, 609> + var geometry = PathGeometry_0378(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0861() + { + // Offset:<964, 609> + var geometry = PathGeometry_0379(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0862() + { + // Offset:<964, 609> + var geometry = PathGeometry_0380(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0863() + { + // Offset:<964, 609> + var geometry = PathGeometry_0381(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0864() + { + // Offset:<964, 609> + var geometry = PathGeometry_0382(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0865() + { + // Offset:<964, 609> + var geometry = PathGeometry_0383(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // e + CompositionSpriteShape SpriteShape_0866() + { + // Offset:<964, 609> + var geometry = PathGeometry_0384(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0867() + { + // Offset:<964, 609> + var geometry = PathGeometry_0385(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0868() + { + // Offset:<964, 609> + var geometry = PathGeometry_0386(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0869() + { + // Offset:<964, 609> + var geometry = PathGeometry_0387(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0870() + { + // Offset:<964, 609> + var geometry = PathGeometry_0388(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // l + CompositionSpriteShape SpriteShape_0871() + { + // Offset:<964, 609> + var geometry = PathGeometry_0389(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0872() + { + // Offset:<964, 609> + var geometry = PathGeometry_0390(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0873() + { + // Offset:<964, 609> + var geometry = PathGeometry_0391(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0874() + { + // Offset:<964, 609> + var geometry = PathGeometry_0392(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0875() + { + // Offset:<964, 609> + var geometry = PathGeometry_0393(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0876() + { + // Offset:<964, 609> + var geometry = PathGeometry_0394(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // e + CompositionSpriteShape SpriteShape_0877() + { + // Offset:<964, 609> + var geometry = PathGeometry_0395(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0878() + { + // Offset:<964, 609> + var geometry = PathGeometry_0396(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0879() + { + // Offset:<964, 609> + var geometry = PathGeometry_0397(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // l + CompositionSpriteShape SpriteShape_0880() + { + // Offset:<964, 609> + var geometry = PathGeometry_0398(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0881() + { + // Offset:<964, 609> + var geometry = PathGeometry_0399(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // l + CompositionSpriteShape SpriteShape_0882() + { + // Offset:<964, 609> + var geometry = PathGeometry_0400(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // u + CompositionSpriteShape SpriteShape_0883() + { + // Offset:<964, 609> + var geometry = PathGeometry_0401(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0884() + { + // Offset:<964, 609> + var geometry = PathGeometry_0402(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // w + CompositionSpriteShape SpriteShape_0885() + { + // Offset:<964, 609> + var geometry = PathGeometry_0403(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // I + CompositionSpriteShape SpriteShape_0886() + { + // Offset:<964, 609> + var geometry = PathGeometry_0404(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // , + CompositionSpriteShape SpriteShape_0887() + { + // Offset:<964, 609> + var geometry = PathGeometry_0405(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0888() + { + // Offset:<964, 609> + var geometry = PathGeometry_0406(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // l + CompositionSpriteShape SpriteShape_0889() + { + // Offset:<964, 609> + var geometry = PathGeometry_0407(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0890() + { + // Offset:<964, 609> + var geometry = PathGeometry_0408(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // s + CompositionSpriteShape SpriteShape_0891() + { + // Offset:<964, 609> + var geometry = PathGeometry_0409(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0892() + { + // Offset:<964, 609> + var geometry = PathGeometry_0410(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0893() + { + // Offset:<964, 609> + var geometry = PathGeometry_0411(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0894() + { + // Offset:<964, 609> + var geometry = PathGeometry_0412(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // . + CompositionSpriteShape SpriteShape_0895() + { + // Offset:<964, 726> + var geometry = PathGeometry_0413(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_0896() + { + // Offset:<964, 726> + var geometry = PathGeometry_0414(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0897() + { + // Offset:<964, 726> + var geometry = PathGeometry_0415(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0898() + { + // Offset:<964, 726> + var geometry = PathGeometry_0416(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0899() + { + // Offset:<964, 726> + var geometry = PathGeometry_0417(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0900() + { + // Offset:<964, 726> + var geometry = PathGeometry_0418(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_0901() + { + // Offset:<964, 726> + var geometry = PathGeometry_0419(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0902() + { + // Offset:<964, 726> + var geometry = PathGeometry_0420(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0903() + { + // Offset:<964, 726> + var geometry = PathGeometry_0421(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_0904() + { + // Offset:<964, 726> + var geometry = PathGeometry_0422(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0905() + { + // Offset:<964, 726> + var geometry = PathGeometry_0423(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0906() + { + // Offset:<964, 726> + var geometry = PathGeometry_0424(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0907() + { + // Offset:<964, 726> + var geometry = PathGeometry_0425(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0908() + { + // Offset:<964, 726> + var geometry = PathGeometry_0426(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0909() + { + // Offset:<964, 726> + var geometry = PathGeometry_0427(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0910() + { + // Offset:<964, 726> + var geometry = PathGeometry_0428(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // w + CompositionSpriteShape SpriteShape_0911() + { + // Offset:<964, 726> + var geometry = PathGeometry_0429(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0912() + { + // Offset:<964, 726> + var geometry = PathGeometry_0430(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0913() + { + // Offset:<964, 726> + var geometry = PathGeometry_0431(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_0914() + { + // Offset:<964, 726> + var geometry = PathGeometry_0432(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_0915() + { + // Offset:<964, 726> + var geometry = PathGeometry_0433(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_0916() + { + // Offset:<964, 726> + var geometry = PathGeometry_0434(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0917() + { + // Offset:<964, 726> + var geometry = PathGeometry_0435(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0918() + { + // Offset:<964, 726> + var geometry = PathGeometry_0436(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0919() + { + // Offset:<964, 726> + var geometry = PathGeometry_0437(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0920() + { + // Offset:<964, 726> + var geometry = PathGeometry_0438(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // w + CompositionSpriteShape SpriteShape_0921() + { + // Offset:<964, 726> + var geometry = PathGeometry_0439(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_0922() + { + // Offset:<964, 726> + var geometry = PathGeometry_0440(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0923() + { + // Offset:<964, 726> + var geometry = PathGeometry_0441(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0924() + { + // Offset:<964, 726> + var geometry = PathGeometry_0442(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0925() + { + // Offset:<964, 726> + var geometry = PathGeometry_0443(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // c + CompositionSpriteShape SpriteShape_0926() + { + // Offset:<964, 726> + var geometry = PathGeometry_0444(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0927() + { + // Offset:<964, 726> + var geometry = PathGeometry_0445(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // v + CompositionSpriteShape SpriteShape_0928() + { + // Offset:<964, 726> + var geometry = PathGeometry_0446(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0929() + { + // Offset:<964, 726> + var geometry = PathGeometry_0447(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_0930() + { + // Offset:<964, 726> + var geometry = PathGeometry_0448(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0931() + { + // Offset:<964, 726> + var geometry = PathGeometry_0449(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0932() + { + // Offset:<964, 726> + var geometry = PathGeometry_0450(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0933() + { + // Offset:<964, 726> + var geometry = PathGeometry_0451(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0934() + { + // Offset:<964, 726> + var geometry = PathGeometry_0452(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0935() + { + // Offset:<964, 726> + var geometry = PathGeometry_0453(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0936() + { + // Offset:<964, 726> + var geometry = PathGeometry_0454(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_0937() + { + // Offset:<964, 726> + var geometry = PathGeometry_0455(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0938() + { + // Offset:<964, 726> + var geometry = PathGeometry_0456(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0939() + { + // Offset:<964, 726> + var geometry = PathGeometry_0457(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_0940() + { + // Offset:<964, 726> + var geometry = PathGeometry_0458(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0941() + { + // Offset:<964, 726> + var geometry = PathGeometry_0459(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_0942() + { + // Offset:<964, 726> + var geometry = PathGeometry_0460(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0943() + { + // Offset:<964, 726> + var geometry = PathGeometry_0461(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0944() + { + // Offset:<964, 726> + var geometry = PathGeometry_0462(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_0945() + { + // Offset:<964, 726> + var geometry = PathGeometry_0463(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0946() + { + // Offset:<964, 726> + var geometry = PathGeometry_0464(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_0947() + { + // Offset:<964, 726> + var geometry = PathGeometry_0465(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0948() + { + // Offset:<964, 726> + var geometry = PathGeometry_0466(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0949() + { + // Offset:<964, 726> + var geometry = PathGeometry_0467(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // , + CompositionSpriteShape SpriteShape_0950() + { + // Offset:<964, 726> + var geometry = PathGeometry_0468(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0951() + { + // Offset:<964, 726> + var geometry = PathGeometry_0469(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_0952() + { + // Offset:<964, 726> + var geometry = PathGeometry_0470(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0953() + { + // Offset:<964, 726> + var geometry = PathGeometry_0471(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0954() + { + // Offset:<964, 726> + var geometry = PathGeometry_0472(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0955() + { + // Offset:<964, 726> + var geometry = PathGeometry_0473(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_0956() + { + // Offset:<964, 726> + var geometry = PathGeometry_0474(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_0957() + { + // Offset:<964, 726> + var geometry = PathGeometry_0475(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0958() + { + // Offset:<964, 726> + var geometry = PathGeometry_0476(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_0959() + { + // Offset:<964, 726> + var geometry = PathGeometry_0477(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0960() + { + // Offset:<964, 726> + var geometry = PathGeometry_0478(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0961() + { + // Offset:<964, 726> + var geometry = PathGeometry_0479(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0962() + { + // Offset:<964, 726> + var geometry = PathGeometry_0480(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_0963() + { + // Offset:<964, 726> + var geometry = PathGeometry_0481(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0964() + { + // Offset:<964, 726> + var geometry = PathGeometry_0482(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0965() + { + // Offset:<964, 726> + var geometry = PathGeometry_0483(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_0966() + { + // Offset:<964, 726> + var geometry = PathGeometry_0484(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0967() + { + // Offset:<964, 726> + var geometry = PathGeometry_0485(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_0968() + { + // Offset:<964, 726> + var geometry = PathGeometry_0486(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0969() + { + // Offset:<964, 726> + var geometry = PathGeometry_0487(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0970() + { + // Offset:<964, 726> + var geometry = PathGeometry_0488(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0971() + { + // Offset:<964, 726> + var geometry = PathGeometry_0489(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0972() + { + // Offset:<964, 726> + var geometry = PathGeometry_0490(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_0973() + { + // Offset:<964, 726> + var geometry = PathGeometry_0491(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0974() + { + // Offset:<964, 726> + var geometry = PathGeometry_0492(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // . + CompositionSpriteShape SpriteShape_0975() + { + // Offset:<964, 726> + var geometry = PathGeometry_0493(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0976() + { + // Offset:<964, 726> + var geometry = PathGeometry_0494(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0977() + { + // Offset:<964, 726> + var geometry = PathGeometry_0495(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0978() + { + // Offset:<964, 726> + var geometry = PathGeometry_0496(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0979() + { + // Offset:<964, 726> + var geometry = PathGeometry_0497(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0980() + { + // Offset:<964, 726> + var geometry = PathGeometry_0498(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0981() + { + // Offset:<964, 726> + var geometry = PathGeometry_0499(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0982() + { + // Offset:<964, 726> + var geometry = PathGeometry_0500(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_0983() + { + // Offset:<964, 726> + var geometry = PathGeometry_0501(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0984() + { + // Offset:<964, 726> + var geometry = PathGeometry_0502(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0985() + { + // Offset:<964, 726> + var geometry = PathGeometry_0503(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0986() + { + // Offset:<964, 726> + var geometry = PathGeometry_0504(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_0987() + { + // Offset:<964, 726> + var geometry = PathGeometry_0505(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0988() + { + // Offset:<964, 726> + var geometry = PathGeometry_0506(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_0989() + { + // Offset:<964, 726> + var geometry = PathGeometry_0507(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0990() + { + // Offset:<964, 726> + var geometry = PathGeometry_0508(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0991() + { + // Offset:<964, 726> + var geometry = PathGeometry_0509(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0992() + { + // Offset:<964, 726> + var geometry = PathGeometry_0510(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0993() + { + // Offset:<964, 726> + var geometry = PathGeometry_0511(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0994() + { + // Offset:<964, 726> + var geometry = PathGeometry_0512(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0995() + { + // Offset:<964, 726> + var geometry = PathGeometry_0513(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0996() + { + // Offset:<964, 726> + var geometry = PathGeometry_0514(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0997() + { + // Offset:<964, 726> + var geometry = PathGeometry_0515(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0998() + { + // Offset:<964, 726> + var geometry = PathGeometry_0516(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_0999() + { + // Offset:<964, 726> + var geometry = PathGeometry_0517(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1000() + { + // Offset:<964, 726> + var geometry = PathGeometry_0518(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1001() + { + // Offset:<964, 726> + var geometry = PathGeometry_0519(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1002() + { + // Offset:<964, 726> + var geometry = PathGeometry_0520(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1003() + { + // Offset:<964, 726> + var geometry = PathGeometry_0521(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // w + CompositionSpriteShape SpriteShape_1004() + { + // Offset:<964, 726> + var geometry = PathGeometry_0522(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1005() + { + // Offset:<964, 726> + var geometry = PathGeometry_0523(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1006() + { + // Offset:<964, 726> + var geometry = PathGeometry_0524(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1007() + { + // Offset:<964, 726> + var geometry = PathGeometry_0525(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1008() + { + // Offset:<964, 726> + var geometry = PathGeometry_0526(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // v + CompositionSpriteShape SpriteShape_1009() + { + // Offset:<964, 726> + var geometry = PathGeometry_0527(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1010() + { + // Offset:<964, 726> + var geometry = PathGeometry_0528(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1011() + { + // Offset:<964, 726> + var geometry = PathGeometry_0529(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1012() + { + // Offset:<964, 726> + var geometry = PathGeometry_0530(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // c + CompositionSpriteShape SpriteShape_1013() + { + // Offset:<964, 726> + var geometry = PathGeometry_0531(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1014() + { + // Offset:<964, 726> + var geometry = PathGeometry_0532(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1015() + { + // Offset:<964, 726> + var geometry = PathGeometry_0533(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1016() + { + // Offset:<964, 726> + var geometry = PathGeometry_0534(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1017() + { + // Offset:<964, 726> + var geometry = PathGeometry_0535(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // c + CompositionSpriteShape SpriteShape_1018() + { + // Offset:<964, 726> + var geometry = PathGeometry_0536(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1019() + { + // Offset:<964, 726> + var geometry = PathGeometry_0537(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1020() + { + // Offset:<964, 726> + var geometry = PathGeometry_0538(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1021() + { + // Offset:<964, 726> + var geometry = PathGeometry_0539(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1022() + { + // Offset:<964, 726> + var geometry = PathGeometry_0540(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1023() + { + // Offset:<964, 726> + var geometry = PathGeometry_0541(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1024() + { + // Offset:<964, 726> + var geometry = PathGeometry_0542(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1025() + { + // Offset:<964, 726> + var geometry = PathGeometry_0543(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1026() + { + // Offset:<964, 726> + var geometry = PathGeometry_0544(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1027() + { + // Offset:<964, 726> + var geometry = PathGeometry_0545(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1028() + { + // Offset:<964, 726> + var geometry = PathGeometry_0546(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1029() + { + // Offset:<964, 726> + var geometry = PathGeometry_0547(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - + CompositionSpriteShape SpriteShape_1030() + { + // Offset:<964, 726> + var geometry = PathGeometry_0548(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1031() + { + // Offset:<964, 726> + var geometry = PathGeometry_0549(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1032() + { + // Offset:<964, 726> + var geometry = PathGeometry_0550(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1033() + { + // Offset:<964, 726> + var geometry = PathGeometry_0551(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1034() + { + // Offset:<964, 726> + var geometry = PathGeometry_0552(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1035() + { + // Offset:<964, 726> + var geometry = PathGeometry_0553(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1036() + { + // Offset:<964, 726> + var geometry = PathGeometry_0554(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1037() + { + // Offset:<964, 726> + var geometry = PathGeometry_0555(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1038() + { + // Offset:<964, 726> + var geometry = PathGeometry_0556(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1039() + { + // Offset:<964, 726> + var geometry = PathGeometry_0557(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1040() + { + // Offset:<964, 726> + var geometry = PathGeometry_0558(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // v + CompositionSpriteShape SpriteShape_1041() + { + // Offset:<964, 726> + var geometry = PathGeometry_0559(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1042() + { + // Offset:<964, 726> + var geometry = PathGeometry_0560(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1043() + { + // Offset:<964, 726> + var geometry = PathGeometry_0561(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1044() + { + // Offset:<964, 726> + var geometry = PathGeometry_0562(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // , + CompositionSpriteShape SpriteShape_1045() + { + // Offset:<964, 726> + var geometry = PathGeometry_0563(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1046() + { + // Offset:<964, 726> + var geometry = PathGeometry_0564(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1047() + { + // Offset:<964, 726> + var geometry = PathGeometry_0565(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // v + CompositionSpriteShape SpriteShape_1048() + { + // Offset:<964, 726> + var geometry = PathGeometry_0566(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1049() + { + // Offset:<964, 726> + var geometry = PathGeometry_0567(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - + CompositionSpriteShape SpriteShape_1050() + { + // Offset:<964, 726> + var geometry = PathGeometry_0568(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1051() + { + // Offset:<964, 726> + var geometry = PathGeometry_0569(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1052() + { + // Offset:<964, 726> + var geometry = PathGeometry_0570(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1053() + { + // Offset:<964, 726> + var geometry = PathGeometry_0571(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1054() + { + // Offset:<964, 726> + var geometry = PathGeometry_0572(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1055() + { + // Offset:<964, 726> + var geometry = PathGeometry_0573(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // c + CompositionSpriteShape SpriteShape_1056() + { + // Offset:<964, 726> + var geometry = PathGeometry_0574(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1057() + { + // Offset:<964, 726> + var geometry = PathGeometry_0575(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1058() + { + // Offset:<964, 726> + var geometry = PathGeometry_0576(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1059() + { + // Offset:<964, 726> + var geometry = PathGeometry_0577(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // v + CompositionSpriteShape SpriteShape_1060() + { + // Offset:<964, 726> + var geometry = PathGeometry_0578(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1061() + { + // Offset:<964, 726> + var geometry = PathGeometry_0579(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1062() + { + // Offset:<964, 726> + var geometry = PathGeometry_0580(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1063() + { + // Offset:<964, 726> + var geometry = PathGeometry_0581(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // c + CompositionSpriteShape SpriteShape_1064() + { + // Offset:<964, 726> + var geometry = PathGeometry_0582(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1065() + { + // Offset:<964, 726> + var geometry = PathGeometry_0583(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1066() + { + // Offset:<964, 726> + var geometry = PathGeometry_0584(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1067() + { + // Offset:<964, 726> + var geometry = PathGeometry_0585(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1068() + { + // Offset:<964, 726> + var geometry = PathGeometry_0586(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1069() + { + // Offset:<964, 726> + var geometry = PathGeometry_0587(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1070() + { + // Offset:<964, 726> + var geometry = PathGeometry_0588(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1071() + { + // Offset:<964, 726> + var geometry = PathGeometry_0589(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1072() + { + // Offset:<964, 726> + var geometry = PathGeometry_0590(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1073() + { + // Offset:<964, 726> + var geometry = PathGeometry_0591(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1074() + { + // Offset:<964, 726> + var geometry = PathGeometry_0592(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1075() + { + // Offset:<964, 726> + var geometry = PathGeometry_0593(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1076() + { + // Offset:<964, 726> + var geometry = PathGeometry_0594(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - + CompositionSpriteShape SpriteShape_1077() + { + // Offset:<964, 726> + var geometry = PathGeometry_0595(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1078() + { + // Offset:<964, 726> + var geometry = PathGeometry_0596(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1079() + { + // Offset:<964, 726> + var geometry = PathGeometry_0597(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1080() + { + // Offset:<964, 726> + var geometry = PathGeometry_0598(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1081() + { + // Offset:<964, 726> + var geometry = PathGeometry_0599(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1082() + { + // Offset:<964, 726> + var geometry = PathGeometry_0600(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1083() + { + // Offset:<964, 726> + var geometry = PathGeometry_0601(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1084() + { + // Offset:<964, 726> + var geometry = PathGeometry_0602(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1085() + { + // Offset:<964, 726> + var geometry = PathGeometry_0603(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1086() + { + // Offset:<964, 726> + var geometry = PathGeometry_0604(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1087() + { + // Offset:<964, 726> + var geometry = PathGeometry_0605(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1088() + { + // Offset:<964, 726> + var geometry = PathGeometry_0606(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1089() + { + // Offset:<964, 726> + var geometry = PathGeometry_0607(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1090() + { + // Offset:<964, 726> + var geometry = PathGeometry_0608(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1091() + { + // Offset:<964, 726> + var geometry = PathGeometry_0609(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1092() + { + // Offset:<964, 726> + var geometry = PathGeometry_0610(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1093() + { + // Offset:<964, 726> + var geometry = PathGeometry_0611(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1094() + { + // Offset:<964, 726> + var geometry = PathGeometry_0612(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1095() + { + // Offset:<964, 726> + var geometry = PathGeometry_0613(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1096() + { + // Offset:<964, 726> + var geometry = PathGeometry_0614(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_1097() + { + // Offset:<964, 726> + var geometry = PathGeometry_0615(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1098() + { + // Offset:<964, 726> + var geometry = PathGeometry_0616(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_1099() + { + // Offset:<964, 726> + var geometry = PathGeometry_0617(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1100() + { + // Offset:<964, 726> + var geometry = PathGeometry_0618(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1101() + { + // Offset:<964, 726> + var geometry = PathGeometry_0619(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1102() + { + // Offset:<964, 726> + var geometry = PathGeometry_0620(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ) + CompositionSpriteShape SpriteShape_1103() + { + // Offset:<964, 726> + var geometry = PathGeometry_0621(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1104() + { + // Offset:<964, 726> + var geometry = PathGeometry_0622(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1105() + { + // Offset:<964, 726> + var geometry = PathGeometry_0623(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1106() + { + // Offset:<964, 726> + var geometry = PathGeometry_0624(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1107() + { + // Offset:<964, 726> + var geometry = PathGeometry_0625(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ( + CompositionSpriteShape SpriteShape_1108() + { + // Offset:<964, 726> + var geometry = PathGeometry_0626(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1109() + { + // Offset:<964, 726> + var geometry = PathGeometry_0627(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1110() + { + // Offset:<964, 726> + var geometry = PathGeometry_0628(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // w + CompositionSpriteShape SpriteShape_1111() + { + // Offset:<964, 726> + var geometry = PathGeometry_0629(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1112() + { + // Offset:<964, 726> + var geometry = PathGeometry_0630(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1113() + { + // Offset:<964, 726> + var geometry = PathGeometry_0631(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1114() + { + // Offset:<964, 726> + var geometry = PathGeometry_0632(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1115() + { + // Offset:<964, 726> + var geometry = PathGeometry_0633(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_1116() + { + // Offset:<964, 726> + var geometry = PathGeometry_0634(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1117() + { + // Offset:<964, 726> + var geometry = PathGeometry_0635(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1118() + { + // Offset:<964, 726> + var geometry = PathGeometry_0636(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1119() + { + // Offset:<964, 726> + var geometry = PathGeometry_0637(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1120() + { + // Offset:<964, 726> + var geometry = PathGeometry_0638(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1121() + { + // Offset:<964, 726> + var geometry = PathGeometry_0639(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1122() + { + // Offset:<964, 726> + var geometry = PathGeometry_0640(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // , + CompositionSpriteShape SpriteShape_1123() + { + // Offset:<964, 726> + var geometry = PathGeometry_0641(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1124() + { + // Offset:<964, 726> + var geometry = PathGeometry_0642(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1125() + { + // Offset:<964, 726> + var geometry = PathGeometry_0643(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // v + CompositionSpriteShape SpriteShape_1126() + { + // Offset:<964, 726> + var geometry = PathGeometry_0644(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1127() + { + // Offset:<964, 726> + var geometry = PathGeometry_0645(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1128() + { + // Offset:<964, 726> + var geometry = PathGeometry_0646(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1129() + { + // Offset:<964, 726> + var geometry = PathGeometry_0647(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1130() + { + // Offset:<964, 726> + var geometry = PathGeometry_0648(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1131() + { + // Offset:<964, 726> + var geometry = PathGeometry_0649(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1132() + { + // Offset:<964, 726> + var geometry = PathGeometry_0650(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1133() + { + // Offset:<964, 726> + var geometry = PathGeometry_0651(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // - + CompositionSpriteShape SpriteShape_1134() + { + // Offset:<964, 726> + var geometry = PathGeometry_0652(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1135() + { + // Offset:<964, 726> + var geometry = PathGeometry_0653(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1136() + { + // Offset:<964, 726> + var geometry = PathGeometry_0654(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1137() + { + // Offset:<964, 726> + var geometry = PathGeometry_0655(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1138() + { + // Offset:<964, 726> + var geometry = PathGeometry_0656(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1139() + { + // Offset:<964, 726> + var geometry = PathGeometry_0657(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1140() + { + // Offset:<964, 726> + var geometry = PathGeometry_0658(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1141() + { + // Offset:<964, 726> + var geometry = PathGeometry_0659(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1142() + { + // Offset:<964, 726> + var geometry = PathGeometry_0660(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1143() + { + // Offset:<964, 726> + var geometry = PathGeometry_0661(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1144() + { + // Offset:<964, 726> + var geometry = PathGeometry_0662(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1145() + { + // Offset:<964, 726> + var geometry = PathGeometry_0663(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1146() + { + // Offset:<964, 726> + var geometry = PathGeometry_0664(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_1147() + { + // Offset:<964, 726> + var geometry = PathGeometry_0665(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1148() + { + // Offset:<964, 726> + var geometry = PathGeometry_0666(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1149() + { + // Offset:<964, 726> + var geometry = PathGeometry_0667(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1150() + { + // Offset:<964, 726> + var geometry = PathGeometry_0668(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1151() + { + // Offset:<964, 726> + var geometry = PathGeometry_0669(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1152() + { + // Offset:<964, 726> + var geometry = PathGeometry_0670(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1153() + { + // Offset:<964, 726> + var geometry = PathGeometry_0671(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1154() + { + // Offset:<964, 726> + var geometry = PathGeometry_0672(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1155() + { + // Offset:<964, 726> + var geometry = PathGeometry_0673(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1156() + { + // Offset:<964, 726> + var geometry = PathGeometry_0674(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1157() + { + // Offset:<964, 726> + var geometry = PathGeometry_0675(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1158() + { + // Offset:<964, 726> + var geometry = PathGeometry_0676(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1159() + { + // Offset:<964, 726> + var geometry = PathGeometry_0677(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1160() + { + // Offset:<964, 726> + var geometry = PathGeometry_0678(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1161() + { + // Offset:<964, 726> + var geometry = PathGeometry_0679(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1162() + { + // Offset:<964, 726> + var geometry = PathGeometry_0680(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1163() + { + // Offset:<964, 726> + var geometry = PathGeometry_0681(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1164() + { + // Offset:<964, 726> + var geometry = PathGeometry_0682(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1165() + { + // Offset:<964, 726> + var geometry = PathGeometry_0683(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1166() + { + // Offset:<964, 726> + var geometry = PathGeometry_0684(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // , + CompositionSpriteShape SpriteShape_1167() + { + // Offset:<964, 726> + var geometry = PathGeometry_0685(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1168() + { + // Offset:<964, 726> + var geometry = PathGeometry_0686(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1169() + { + // Offset:<964, 726> + var geometry = PathGeometry_0687(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1170() + { + // Offset:<964, 726> + var geometry = PathGeometry_0688(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1171() + { + // Offset:<964, 726> + var geometry = PathGeometry_0689(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1172() + { + // Offset:<964, 726> + var geometry = PathGeometry_0690(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1173() + { + // Offset:<964, 726> + var geometry = PathGeometry_0691(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1174() + { + // Offset:<964, 726> + var geometry = PathGeometry_0692(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // v + CompositionSpriteShape SpriteShape_1175() + { + // Offset:<964, 726> + var geometry = PathGeometry_0693(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1176() + { + // Offset:<964, 726> + var geometry = PathGeometry_0694(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1177() + { + // Offset:<964, 726> + var geometry = PathGeometry_0695(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1178() + { + // Offset:<964, 726> + var geometry = PathGeometry_0696(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1179() + { + // Offset:<964, 726> + var geometry = PathGeometry_0697(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1180() + { + // Offset:<964, 726> + var geometry = PathGeometry_0698(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1181() + { + // Offset:<964, 726> + var geometry = PathGeometry_0699(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1182() + { + // Offset:<964, 726> + var geometry = PathGeometry_0700(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1183() + { + // Offset:<964, 726> + var geometry = PathGeometry_0701(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1184() + { + // Offset:<964, 726> + var geometry = PathGeometry_0702(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_1185() + { + // Offset:<964, 726> + var geometry = PathGeometry_0703(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1186() + { + // Offset:<964, 726> + var geometry = PathGeometry_0704(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1187() + { + // Offset:<964, 726> + var geometry = PathGeometry_0705(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1188() + { + // Offset:<964, 726> + var geometry = PathGeometry_0706(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_1189() + { + // Offset:<964, 726> + var geometry = PathGeometry_0707(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1190() + { + // Offset:<964, 726> + var geometry = PathGeometry_0708(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1191() + { + // Offset:<964, 726> + var geometry = PathGeometry_0709(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_1192() + { + // Offset:<964, 726> + var geometry = PathGeometry_0710(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1193() + { + // Offset:<964, 726> + var geometry = PathGeometry_0711(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1194() + { + // Offset:<964, 726> + var geometry = PathGeometry_0712(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1195() + { + // Offset:<964, 726> + var geometry = PathGeometry_0713(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1196() + { + // Offset:<964, 726> + var geometry = PathGeometry_0714(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1197() + { + // Offset:<964, 726> + var geometry = PathGeometry_0715(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1198() + { + // Offset:<964, 726> + var geometry = PathGeometry_0716(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1199() + { + // Offset:<964, 726> + var geometry = PathGeometry_0717(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1200() + { + // Offset:<964, 726> + var geometry = PathGeometry_0718(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1201() + { + // Offset:<964, 726> + var geometry = PathGeometry_0719(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1202() + { + // Offset:<964, 726> + var geometry = PathGeometry_0720(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1203() + { + // Offset:<964, 726> + var geometry = PathGeometry_0721(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1204() + { + // Offset:<964, 726> + var geometry = PathGeometry_0722(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1205() + { + // Offset:<964, 726> + var geometry = PathGeometry_0723(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1206() + { + // Offset:<964, 726> + var geometry = PathGeometry_0724(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1207() + { + // Offset:<964, 726> + var geometry = PathGeometry_0725(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1208() + { + // Offset:<964, 726> + var geometry = PathGeometry_0726(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1209() + { + // Offset:<964, 726> + var geometry = PathGeometry_0727(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // c + CompositionSpriteShape SpriteShape_1210() + { + // Offset:<964, 726> + var geometry = PathGeometry_0728(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1211() + { + // Offset:<964, 726> + var geometry = PathGeometry_0729(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1212() + { + // Offset:<964, 726> + var geometry = PathGeometry_0730(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1213() + { + // Offset:<964, 726> + var geometry = PathGeometry_0731(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1214() + { + // Offset:<964, 726> + var geometry = PathGeometry_0732(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1215() + { + // Offset:<964, 726> + var geometry = PathGeometry_0733(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1216() + { + // Offset:<964, 726> + var geometry = PathGeometry_0734(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1217() + { + // Offset:<964, 726> + var geometry = PathGeometry_0735(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1218() + { + // Offset:<964, 726> + var geometry = PathGeometry_0736(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1219() + { + // Offset:<964, 726> + var geometry = PathGeometry_0737(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1220() + { + // Offset:<964, 726> + var geometry = PathGeometry_0738(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1221() + { + // Offset:<964, 726> + var geometry = PathGeometry_0739(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1222() + { + // Offset:<964, 726> + var geometry = PathGeometry_0740(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1223() + { + // Offset:<964, 726> + var geometry = PathGeometry_0741(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1224() + { + // Offset:<964, 726> + var geometry = PathGeometry_0742(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1225() + { + // Offset:<964, 726> + var geometry = PathGeometry_0743(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1226() + { + // Offset:<964, 726> + var geometry = PathGeometry_0744(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1227() + { + // Offset:<964, 726> + var geometry = PathGeometry_0745(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1228() + { + // Offset:<964, 726> + var geometry = PathGeometry_0746(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1229() + { + // Offset:<964, 726> + var geometry = PathGeometry_0747(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1230() + { + // Offset:<964, 726> + var geometry = PathGeometry_0748(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // w + CompositionSpriteShape SpriteShape_1231() + { + // Offset:<964, 726> + var geometry = PathGeometry_0749(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1232() + { + // Offset:<964, 726> + var geometry = PathGeometry_0750(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1233() + { + // Offset:<964, 726> + var geometry = PathGeometry_0751(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1234() + { + // Offset:<964, 726> + var geometry = PathGeometry_0752(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1235() + { + // Offset:<964, 726> + var geometry = PathGeometry_0753(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1236() + { + // Offset:<964, 726> + var geometry = PathGeometry_0754(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1237() + { + // Offset:<964, 726> + var geometry = PathGeometry_0755(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_1238() + { + // Offset:<964, 726> + var geometry = PathGeometry_0756(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1239() + { + // Offset:<964, 726> + var geometry = PathGeometry_0757(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1240() + { + // Offset:<964, 726> + var geometry = PathGeometry_0758(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1241() + { + // Offset:<964, 726> + var geometry = PathGeometry_0759(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1242() + { + // Offset:<964, 726> + var geometry = PathGeometry_0760(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1243() + { + // Offset:<964, 726> + var geometry = PathGeometry_0761(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1244() + { + // Offset:<964, 726> + var geometry = PathGeometry_0762(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1245() + { + // Offset:<964, 726> + var geometry = PathGeometry_0763(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // . + CompositionSpriteShape SpriteShape_1246() + { + // Offset:<964, 726> + var geometry = PathGeometry_0764(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1247() + { + // Offset:<964, 726> + var geometry = PathGeometry_0765(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // c + CompositionSpriteShape SpriteShape_1248() + { + // Offset:<964, 726> + var geometry = PathGeometry_0766(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1249() + { + // Offset:<964, 726> + var geometry = PathGeometry_0767(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1250() + { + // Offset:<964, 726> + var geometry = PathGeometry_0768(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1251() + { + // Offset:<964, 726> + var geometry = PathGeometry_0769(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1252() + { + // Offset:<964, 726> + var geometry = PathGeometry_0770(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1253() + { + // Offset:<964, 726> + var geometry = PathGeometry_0771(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1254() + { + // Offset:<964, 726> + var geometry = PathGeometry_0772(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1255() + { + // Offset:<964, 726> + var geometry = PathGeometry_0773(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1256() + { + // Offset:<964, 726> + var geometry = PathGeometry_0774(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1257() + { + // Offset:<964, 726> + var geometry = PathGeometry_0775(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1258() + { + // Offset:<964, 726> + var geometry = PathGeometry_0776(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // c + CompositionSpriteShape SpriteShape_1259() + { + // Offset:<964, 726> + var geometry = PathGeometry_0777(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1260() + { + // Offset:<964, 726> + var geometry = PathGeometry_0778(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1261() + { + // Offset:<964, 726> + var geometry = PathGeometry_0779(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1262() + { + // Offset:<964, 726> + var geometry = PathGeometry_0780(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1263() + { + // Offset:<964, 726> + var geometry = PathGeometry_0781(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1264() + { + // Offset:<964, 726> + var geometry = PathGeometry_0782(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // v + CompositionSpriteShape SpriteShape_1265() + { + // Offset:<964, 726> + var geometry = PathGeometry_0783(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1266() + { + // Offset:<964, 726> + var geometry = PathGeometry_0784(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1267() + { + // Offset:<964, 726> + var geometry = PathGeometry_0785(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1268() + { + // Offset:<964, 726> + var geometry = PathGeometry_0786(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1269() + { + // Offset:<964, 726> + var geometry = PathGeometry_0787(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1270() + { + // Offset:<964, 726> + var geometry = PathGeometry_0788(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1271() + { + // Offset:<964, 726> + var geometry = PathGeometry_0789(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1272() + { + // Offset:<964, 726> + var geometry = PathGeometry_0790(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1273() + { + // Offset:<964, 726> + var geometry = PathGeometry_0791(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1274() + { + // Offset:<964, 726> + var geometry = PathGeometry_0792(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1275() + { + // Offset:<964, 726> + var geometry = PathGeometry_0793(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1276() + { + // Offset:<964, 726> + var geometry = PathGeometry_0794(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1277() + { + // Offset:<964, 726> + var geometry = PathGeometry_0795(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1278() + { + // Offset:<964, 726> + var geometry = PathGeometry_0796(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // , + CompositionSpriteShape SpriteShape_1279() + { + // Offset:<964, 726> + var geometry = PathGeometry_0797(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1280() + { + // Offset:<964, 726> + var geometry = PathGeometry_0798(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1281() + { + // Offset:<964, 726> + var geometry = PathGeometry_0799(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1282() + { + // Offset:<964, 726> + var geometry = PathGeometry_0800(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // c + CompositionSpriteShape SpriteShape_1283() + { + // Offset:<964, 726> + var geometry = PathGeometry_0801(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1284() + { + // Offset:<964, 726> + var geometry = PathGeometry_0802(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1285() + { + // Offset:<964, 726> + var geometry = PathGeometry_0803(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1286() + { + // Offset:<964, 726> + var geometry = PathGeometry_0804(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1287() + { + // Offset:<964, 726> + var geometry = PathGeometry_0805(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1288() + { + // Offset:<964, 726> + var geometry = PathGeometry_0806(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1289() + { + // Offset:<964, 726> + var geometry = PathGeometry_0807(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1290() + { + // Offset:<964, 726> + var geometry = PathGeometry_0808(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1291() + { + // Offset:<964, 726> + var geometry = PathGeometry_0809(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1292() + { + // Offset:<964, 726> + var geometry = PathGeometry_0810(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_1293() + { + // Offset:<964, 726> + var geometry = PathGeometry_0811(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1294() + { + // Offset:<964, 726> + var geometry = PathGeometry_0812(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ’ + CompositionSpriteShape SpriteShape_1295() + { + // Offset:<964, 726> + var geometry = PathGeometry_0813(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1296() + { + // Offset:<964, 726> + var geometry = PathGeometry_0814(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1297() + { + // Offset:<964, 726> + var geometry = PathGeometry_0815(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1298() + { + // Offset:<964, 726> + var geometry = PathGeometry_0816(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1299() + { + // Offset:<964, 726> + var geometry = PathGeometry_0817(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1300() + { + // Offset:<964, 726> + var geometry = PathGeometry_0818(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1301() + { + // Offset:<964, 726> + var geometry = PathGeometry_0819(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1302() + { + // Offset:<964, 726> + var geometry = PathGeometry_0820(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // v + CompositionSpriteShape SpriteShape_1303() + { + // Offset:<964, 726> + var geometry = PathGeometry_0821(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1304() + { + // Offset:<964, 726> + var geometry = PathGeometry_0822(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1305() + { + // Offset:<964, 726> + var geometry = PathGeometry_0823(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1306() + { + // Offset:<964, 726> + var geometry = PathGeometry_0824(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1307() + { + // Offset:<964, 726> + var geometry = PathGeometry_0825(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1308() + { + // Offset:<964, 726> + var geometry = PathGeometry_0826(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_1309() + { + // Offset:<964, 726> + var geometry = PathGeometry_0827(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1310() + { + // Offset:<964, 726> + var geometry = PathGeometry_0828(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1311() + { + // Offset:<964, 726> + var geometry = PathGeometry_0829(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1312() + { + // Offset:<964, 726> + var geometry = PathGeometry_0830(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1313() + { + // Offset:<964, 726> + var geometry = PathGeometry_0831(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1314() + { + // Offset:<964, 726> + var geometry = PathGeometry_0832(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1315() + { + // Offset:<964, 726> + var geometry = PathGeometry_0833(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_1316() + { + // Offset:<964, 726> + var geometry = PathGeometry_0834(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1317() + { + // Offset:<964, 726> + var geometry = PathGeometry_0835(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1318() + { + // Offset:<964, 726> + var geometry = PathGeometry_0836(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1319() + { + // Offset:<964, 726> + var geometry = PathGeometry_0837(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1320() + { + // Offset:<964, 726> + var geometry = PathGeometry_0838(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1321() + { + // Offset:<964, 726> + var geometry = PathGeometry_0839(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1322() + { + // Offset:<964, 726> + var geometry = PathGeometry_0840(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1323() + { + // Offset:<964, 726> + var geometry = PathGeometry_0841(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1324() + { + // Offset:<964, 726> + var geometry = PathGeometry_0842(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1325() + { + // Offset:<964, 726> + var geometry = PathGeometry_0843(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1326() + { + // Offset:<964, 726> + var geometry = PathGeometry_0844(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // w + CompositionSpriteShape SpriteShape_1327() + { + // Offset:<964, 726> + var geometry = PathGeometry_0845(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1328() + { + // Offset:<964, 726> + var geometry = PathGeometry_0846(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1329() + { + // Offset:<964, 726> + var geometry = PathGeometry_0847(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1330() + { + // Offset:<964, 726> + var geometry = PathGeometry_0848(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1331() + { + // Offset:<964, 726> + var geometry = PathGeometry_0849(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_1332() + { + // Offset:<964, 726> + var geometry = PathGeometry_0850(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1333() + { + // Offset:<964, 726> + var geometry = PathGeometry_0851(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1334() + { + // Offset:<964, 726> + var geometry = PathGeometry_0852(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1335() + { + // Offset:<964, 726> + var geometry = PathGeometry_0853(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1336() + { + // Offset:<964, 726> + var geometry = PathGeometry_0854(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1337() + { + // Offset:<964, 726> + var geometry = PathGeometry_0855(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1338() + { + // Offset:<964, 726> + var geometry = PathGeometry_0856(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1339() + { + // Offset:<964, 726> + var geometry = PathGeometry_0857(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // u + CompositionSpriteShape SpriteShape_1340() + { + // Offset:<964, 726> + var geometry = PathGeometry_0858(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // c + CompositionSpriteShape SpriteShape_1341() + { + // Offset:<964, 726> + var geometry = PathGeometry_0859(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1342() + { + // Offset:<964, 726> + var geometry = PathGeometry_0860(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1343() + { + // Offset:<964, 726> + var geometry = PathGeometry_0861(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1344() + { + // Offset:<964, 726> + var geometry = PathGeometry_0862(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1345() + { + // Offset:<964, 726> + var geometry = PathGeometry_0863(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1346() + { + // Offset:<964, 726> + var geometry = PathGeometry_0864(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1347() + { + // Offset:<964, 726> + var geometry = PathGeometry_0865(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1348() + { + // Offset:<964, 726> + var geometry = PathGeometry_0866(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1349() + { + // Offset:<964, 726> + var geometry = PathGeometry_0867(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1350() + { + // Offset:<964, 726> + var geometry = PathGeometry_0868(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1351() + { + // Offset:<964, 726> + var geometry = PathGeometry_0869(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // I + CompositionSpriteShape SpriteShape_1352() + { + // Offset:<964, 726> + var geometry = PathGeometry_0870(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // , + CompositionSpriteShape SpriteShape_1353() + { + // Offset:<964, 726> + var geometry = PathGeometry_0871(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1354() + { + // Offset:<964, 726> + var geometry = PathGeometry_0872(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1355() + { + // Offset:<964, 726> + var geometry = PathGeometry_0873(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1356() + { + // Offset:<964, 726> + var geometry = PathGeometry_0874(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1357() + { + // Offset:<964, 726> + var geometry = PathGeometry_0875(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1358() + { + // Offset:<964, 726> + var geometry = PathGeometry_0876(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1359() + { + // Offset:<964, 726> + var geometry = PathGeometry_0877(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1360() + { + // Offset:<964, 726> + var geometry = PathGeometry_0878(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // w + CompositionSpriteShape SpriteShape_1361() + { + // Offset:<964, 726> + var geometry = PathGeometry_0879(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1362() + { + // Offset:<964, 726> + var geometry = PathGeometry_0880(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1363() + { + // Offset:<964, 726> + var geometry = PathGeometry_0881(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1364() + { + // Offset:<964, 726> + var geometry = PathGeometry_0882(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1365() + { + // Offset:<964, 726> + var geometry = PathGeometry_0883(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1366() + { + // Offset:<964, 726> + var geometry = PathGeometry_0884(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1367() + { + // Offset:<964, 726> + var geometry = PathGeometry_0885(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // s + CompositionSpriteShape SpriteShape_1368() + { + // Offset:<964, 726> + var geometry = PathGeometry_0886(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1369() + { + // Offset:<964, 726> + var geometry = PathGeometry_0887(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // l + CompositionSpriteShape SpriteShape_1370() + { + // Offset:<964, 726> + var geometry = PathGeometry_0888(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // e + CompositionSpriteShape SpriteShape_1371() + { + // Offset:<964, 726> + var geometry = PathGeometry_0889(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1372() + { + // Offset:<964, 726> + var geometry = PathGeometry_0890(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1373() + { + // Offset:<964, 726> + var geometry = PathGeometry_0891(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1374() + { + // Offset:<964, 726> + var geometry = PathGeometry_0892(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1375() + { + // Offset:<964, 726> + var geometry = PathGeometry_0893(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1376() + { + // Offset:<964, 726> + var geometry = PathGeometry_0412(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ) + CompositionSpriteShape SpriteShape_1377() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0894(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1378() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0895(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1379() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0896(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1380() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0897(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1381() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0898(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1382() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0899(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1383() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0900(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1384() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0901(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1385() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0902(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1386() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0903(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // w + CompositionSpriteShape SpriteShape_1387() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0904(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1388() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0905(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1389() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0906(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // . + CompositionSpriteShape SpriteShape_1390() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0907(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1391() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0908(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1392() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0909(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1393() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0910(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1394() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0911(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1395() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0912(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1396() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0913(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1397() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0914(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // w + CompositionSpriteShape SpriteShape_1398() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0915(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1399() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0916(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1400() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0917(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1401() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0918(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1402() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0919(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1403() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0920(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1404() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0921(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1405() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0922(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1406() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0923(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // v + CompositionSpriteShape SpriteShape_1407() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0924(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1408() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0925(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1409() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0926(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1410() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0927(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1411() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0928(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1412() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0929(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1413() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0930(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1414() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0931(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1415() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0932(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1416() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0933(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1417() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0934(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1418() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0935(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1419() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0936(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1420() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0937(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1421() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0938(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1422() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0939(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1423() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0940(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1424() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0941(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1425() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0942(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1426() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0943(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1427() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0944(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1428() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0945(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1429() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0946(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1430() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0947(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1431() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0948(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1432() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0949(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1433() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0950(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // v + CompositionSpriteShape SpriteShape_1434() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0951(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1435() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0952(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1436() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0953(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1437() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0954(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // u + CompositionSpriteShape SpriteShape_1438() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0955(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1439() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0956(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // w + CompositionSpriteShape SpriteShape_1440() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0957(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1441() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0958(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1442() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0959(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1443() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0960(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1444() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0961(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1445() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0962(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1446() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0963(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1447() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0964(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1448() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0965(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // . + CompositionSpriteShape SpriteShape_1449() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0966(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1450() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0967(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1451() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0968(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1452() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0969(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1453() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0970(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1454() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0971(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1455() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0972(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1456() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0973(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1457() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0974(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1458() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0975(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1459() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0976(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1460() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0977(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ’ + CompositionSpriteShape SpriteShape_1461() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0978(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // I + CompositionSpriteShape SpriteShape_1462() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0979(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // , + CompositionSpriteShape SpriteShape_1463() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0980(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1464() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0981(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1465() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0982(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1466() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0983(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ( + CompositionSpriteShape SpriteShape_1467() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0984(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1468() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0985(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1469() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0986(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1470() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0987(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1471() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0988(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1472() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0989(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1473() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0990(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1474() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0991(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1475() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0992(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1476() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0993(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1477() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0994(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1478() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0995(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1479() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0996(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1480() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0997(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1481() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0998(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // u + CompositionSpriteShape SpriteShape_1482() + { + // Offset:<964, 1018> + var geometry = PathGeometry_0999(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1483() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1000(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1484() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1001(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1485() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1002(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1486() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1003(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1487() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1004(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1488() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1005(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1489() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1006(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1490() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1007(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1491() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1008(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1492() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1009(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1493() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1010(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1494() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1011(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1495() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1012(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1496() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1013(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1497() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1014(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1498() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1015(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1499() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1016(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1500() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1017(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // u + CompositionSpriteShape SpriteShape_1501() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1018(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1502() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1019(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1503() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1020(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1504() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1021(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1505() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1022(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1506() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1023(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // w + CompositionSpriteShape SpriteShape_1507() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1024(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1508() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1025(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1509() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1026(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1510() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1027(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1511() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1028(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // w + CompositionSpriteShape SpriteShape_1512() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1029(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // , + CompositionSpriteShape SpriteShape_1513() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1030(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1514() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1031(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1515() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1032(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1516() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1033(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1517() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1034(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1518() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1035(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1519() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1036(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1520() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1037(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1521() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1038(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1522() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1039(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1523() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1040(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1524() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1041(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1525() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1042(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // v + CompositionSpriteShape SpriteShape_1526() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1043(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1527() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1044(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1528() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1045(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1529() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1046(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1530() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1047(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1531() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1048(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1532() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1049(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1533() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1050(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1534() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1051(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1535() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1052(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1536() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1053(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1537() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1054(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1538() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1055(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1539() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1056(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1540() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1057(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1541() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1058(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1542() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1059(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1543() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1060(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1544() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1061(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1545() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1062(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1546() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1063(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1547() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1064(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1548() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1065(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1549() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1066(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1550() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1067(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1551() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1068(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1552() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1069(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1553() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1070(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1554() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1071(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1555() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1072(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1556() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1073(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1557() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1074(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1558() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1075(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1559() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1076(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1560() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1077(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1561() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1078(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1562() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1079(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1563() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1080(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1564() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1081(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1565() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1082(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1566() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1083(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1567() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1084(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1568() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1085(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // w + CompositionSpriteShape SpriteShape_1569() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1086(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1570() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1087(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1571() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1088(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1572() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1089(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1573() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1090(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1574() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1091(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1575() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1092(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1576() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1093(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1577() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1094(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1578() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1095(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1579() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1096(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1580() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1097(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1581() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1098(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1582() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1099(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1583() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1100(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1584() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1101(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1585() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1102(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // u + CompositionSpriteShape SpriteShape_1586() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1103(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1587() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1104(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1588() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1105(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1589() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1106(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1590() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1107(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // u + CompositionSpriteShape SpriteShape_1591() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1108(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1592() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1109(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1593() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1110(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1594() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1111(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1595() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1112(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1596() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1113(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1597() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1114(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1598() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1115(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1599() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1116(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1600() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1117(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1601() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1118(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1602() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1119(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1603() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1120(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1604() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1121(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1605() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1122(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1606() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1123(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1607() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1124(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1608() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1125(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1609() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1126(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1610() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1127(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1611() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1128(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1612() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1129(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1613() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1130(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1614() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1131(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1615() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1132(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1616() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1133(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1617() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1134(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1618() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1135(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1619() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1136(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1620() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1137(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1621() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1138(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1622() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1139(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1623() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1140(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1624() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1141(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1625() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1142(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1626() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1143(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1627() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1144(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1628() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1145(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1629() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1146(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1630() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1147(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1631() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1148(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1632() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1149(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1633() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1150(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1634() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1151(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // v + CompositionSpriteShape SpriteShape_1635() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1152(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1636() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1153(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // w + CompositionSpriteShape SpriteShape_1637() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1154(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1638() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1155(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1639() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1156(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1640() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1157(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1641() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1158(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1642() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1159(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1643() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1160(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1644() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1161(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1645() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1162(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1646() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1163(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1647() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1164(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1648() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1165(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1649() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1166(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1650() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1167(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1651() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1168(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1652() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1169(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1653() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1170(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1654() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1171(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1655() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1172(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1656() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1173(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1657() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1174(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1658() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1175(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1659() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1176(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1660() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1177(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1661() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1178(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1662() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1179(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1663() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1180(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // v + CompositionSpriteShape SpriteShape_1664() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1181(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1665() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1182(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1666() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1183(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1667() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1184(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1668() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1185(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1669() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1186(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1670() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1187(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1671() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1188(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1672() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1189(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1673() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1190(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1674() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1191(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1675() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1192(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1676() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1193(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1677() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1194(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1678() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1195(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1679() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1196(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1680() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1197(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1681() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1198(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1682() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1199(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1683() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1200(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1684() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1201(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1685() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1202(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1686() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1203(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1687() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1204(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1688() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1205(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1689() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1206(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1690() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1207(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1691() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1208(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1692() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1209(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1693() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1210(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1694() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1211(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1695() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1212(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1696() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1213(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1697() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1214(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1698() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1215(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1699() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1216(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // I + CompositionSpriteShape SpriteShape_1700() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1217(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // . + CompositionSpriteShape SpriteShape_1701() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1218(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1702() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1219(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1703() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1220(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1704() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1221(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1705() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1222(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1706() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1223(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1707() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1224(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1708() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1225(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1709() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1226(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1710() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1227(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1711() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1228(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1712() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1229(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1713() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1230(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1714() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1231(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1715() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1232(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1716() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1233(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1717() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1234(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1718() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1235(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1719() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1236(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1720() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1237(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1721() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1238(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1722() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1239(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1723() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1240(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1724() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1241(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1725() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1242(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1726() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1243(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1727() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1244(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1728() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1245(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1729() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1246(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1730() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1247(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1731() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1248(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1732() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1249(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1733() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1250(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1734() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1251(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // V + CompositionSpriteShape SpriteShape_1735() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1252(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1736() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1253(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1737() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1254(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1738() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1255(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1739() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1256(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ) + CompositionSpriteShape SpriteShape_1740() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1257(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1741() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1258(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1742() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1259(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1743() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1260(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1744() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1261(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1745() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1262(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // w + CompositionSpriteShape SpriteShape_1746() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1263(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1747() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1264(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1748() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1265(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1749() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1266(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1750() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1267(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1751() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1268(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1752() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1269(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1753() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1270(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1754() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1271(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1755() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1272(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ( + CompositionSpriteShape SpriteShape_1756() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1273(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1757() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1274(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1758() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1275(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1759() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1276(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1760() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1277(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1761() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1278(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1762() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1279(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1763() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1280(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1764() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1281(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1765() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1282(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1766() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1283(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1767() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1284(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1768() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1285(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // I + CompositionSpriteShape SpriteShape_1769() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1286(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // , + CompositionSpriteShape SpriteShape_1770() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1287(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1771() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1288(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1772() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1289(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1773() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1290(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1774() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1291(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1775() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1292(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1776() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1293(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1777() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1294(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1778() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1295(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1779() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1296(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1780() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1297(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1781() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1298(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1782() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1299(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1783() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1300(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1784() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1301(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1785() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1302(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1786() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1303(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1787() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1304(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1788() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1305(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // , + CompositionSpriteShape SpriteShape_1789() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1306(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1790() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1307(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1791() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1308(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1792() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1309(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1793() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1310(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1794() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1311(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1795() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1312(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1796() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1313(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1797() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1314(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1798() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1315(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1799() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1316(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1800() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1317(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1801() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1318(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1802() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1319(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1803() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1320(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1804() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1321(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1805() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1322(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1806() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1323(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1807() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1324(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1808() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1325(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1809() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1326(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1810() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1327(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1811() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1328(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1812() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1329(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1813() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1330(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1814() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1331(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1815() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1332(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1816() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1333(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1817() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1334(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1818() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1335(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1819() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1336(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1820() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1337(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1821() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1338(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1822() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1339(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1823() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1340(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1824() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1341(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1825() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1342(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1826() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1343(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1827() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1344(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1828() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1345(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1829() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1346(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1830() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1347(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1831() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1348(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1832() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1349(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1833() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1350(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1834() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1351(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1835() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1352(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1836() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1353(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1837() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1354(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1838() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1355(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1839() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1356(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1840() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1357(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // . + CompositionSpriteShape SpriteShape_1841() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1358(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1842() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1359(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1843() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1360(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1844() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1361(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1845() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1362(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1846() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1363(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1847() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1364(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1848() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1365(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1849() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1366(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1850() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1367(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1851() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1368(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // u + CompositionSpriteShape SpriteShape_1852() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1369(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1853() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1370(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1854() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1371(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1855() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1372(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1856() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1373(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // w + CompositionSpriteShape SpriteShape_1857() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1374(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1858() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1375(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1859() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1376(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1860() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1377(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1861() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1378(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1862() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1379(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1863() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1380(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1864() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1381(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1865() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1382(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1866() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1383(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1867() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1384(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1868() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1385(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1869() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1386(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1870() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1387(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1871() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1388(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1872() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1389(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1873() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1390(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1874() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1391(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1875() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1392(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1876() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1393(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1877() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1394(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1878() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1395(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1879() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1396(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1880() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1397(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1881() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1398(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1882() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1399(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1883() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1400(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1884() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1401(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1885() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1402(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1886() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1403(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1887() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1404(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1888() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1405(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1889() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1406(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1890() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1407(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1891() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1408(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1892() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1409(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1893() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1410(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1894() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1411(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1895() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1412(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1896() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1413(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1897() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1414(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // v + CompositionSpriteShape SpriteShape_1898() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1415(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1899() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1416(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1900() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1417(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1901() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1418(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // w + CompositionSpriteShape SpriteShape_1902() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1419(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1903() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1420(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1904() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1421(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1905() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1422(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1906() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1423(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1907() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1424(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1908() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1425(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1909() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1426(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1910() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1427(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1911() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1428(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1912() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1429(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1913() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1430(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1914() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1431(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1915() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1432(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1916() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1433(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1917() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1434(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1918() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1435(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1919() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1436(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1920() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1437(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1921() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1438(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1922() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1439(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1923() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1440(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1924() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1441(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1925() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1442(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1926() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1443(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1927() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1444(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1928() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1445(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1929() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1446(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1930() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1447(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // s + CompositionSpriteShape SpriteShape_1931() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1448(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1932() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1449(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // c + CompositionSpriteShape SpriteShape_1933() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1450(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1934() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1451(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1935() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1452(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1936() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1453(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1937() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1454(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1938() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1455(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1939() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1456(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1940() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1457(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1941() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1458(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1942() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1459(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1943() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1460(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1944() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1461(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1945() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1462(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1946() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1463(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1947() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1464(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1948() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1465(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1949() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1466(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1950() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1467(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // v + CompositionSpriteShape SpriteShape_1951() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1468(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1952() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1469(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1953() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1470(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1954() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1471(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1955() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1472(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1956() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1473(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // , + CompositionSpriteShape SpriteShape_1957() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1474(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1958() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1475(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // l + CompositionSpriteShape SpriteShape_1959() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1476(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1960() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1477(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1961() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1478(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // w + CompositionSpriteShape SpriteShape_1962() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1479(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1963() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1480(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // ShapeGroup: ) + CompositionSpriteShape SpriteShape_1964() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1481(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // e + CompositionSpriteShape SpriteShape_1965() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1482(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + // M + CompositionSpriteShape SpriteShape_1966() + { + // Offset:<964, 1018> + var geometry = PathGeometry_1483(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // . + CompositionSpriteShape SpriteShape_1967() + { + // Offset:<964, 825> + var geometry = PathGeometry_1484(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // w + CompositionSpriteShape SpriteShape_1968() + { + // Offset:<964, 825> + var geometry = PathGeometry_1485(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1969() + { + // Offset:<964, 825> + var geometry = PathGeometry_1486(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // l + CompositionSpriteShape SpriteShape_1970() + { + // Offset:<964, 825> + var geometry = PathGeometry_1487(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_1971() + { + // Offset:<964, 825> + var geometry = PathGeometry_1488(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1972() + { + // Offset:<964, 825> + var geometry = PathGeometry_1489(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1973() + { + // Offset:<964, 825> + var geometry = PathGeometry_1490(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1974() + { + // Offset:<964, 825> + var geometry = PathGeometry_1491(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1975() + { + // Offset:<964, 825> + var geometry = PathGeometry_1492(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1976() + { + // Offset:<964, 825> + var geometry = PathGeometry_1493(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // u + CompositionSpriteShape SpriteShape_1977() + { + // Offset:<964, 825> + var geometry = PathGeometry_1494(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1978() + { + // Offset:<964, 825> + var geometry = PathGeometry_1495(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1979() + { + // Offset:<964, 825> + var geometry = PathGeometry_1496(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_1980() + { + // Offset:<964, 825> + var geometry = PathGeometry_1497(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1981() + { + // Offset:<964, 825> + var geometry = PathGeometry_1498(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1982() + { + // Offset:<964, 825> + var geometry = PathGeometry_1499(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // M + CompositionSpriteShape SpriteShape_1983() + { + // Offset:<964, 825> + var geometry = PathGeometry_1500(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1984() + { + // Offset:<964, 825> + var geometry = PathGeometry_1501(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1985() + { + // Offset:<964, 825> + var geometry = PathGeometry_1502(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1986() + { + // Offset:<964, 825> + var geometry = PathGeometry_1503(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_1987() + { + // Offset:<964, 825> + var geometry = PathGeometry_1504(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1988() + { + // Offset:<964, 825> + var geometry = PathGeometry_1505(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1989() + { + // Offset:<964, 825> + var geometry = PathGeometry_1506(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_1990() + { + // Offset:<964, 825> + var geometry = PathGeometry_1507(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1991() + { + // Offset:<964, 825> + var geometry = PathGeometry_1508(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1992() + { + // Offset:<964, 825> + var geometry = PathGeometry_1509(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1993() + { + // Offset:<964, 825> + var geometry = PathGeometry_1510(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // c + CompositionSpriteShape SpriteShape_1994() + { + // Offset:<964, 825> + var geometry = PathGeometry_1511(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1995() + { + // Offset:<964, 825> + var geometry = PathGeometry_1512(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // l + CompositionSpriteShape SpriteShape_1996() + { + // Offset:<964, 825> + var geometry = PathGeometry_1513(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // c + CompositionSpriteShape SpriteShape_1997() + { + // Offset:<964, 825> + var geometry = PathGeometry_1514(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // , + CompositionSpriteShape SpriteShape_1998() + { + // Offset:<964, 825> + var geometry = PathGeometry_1515(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_1999() + { + // Offset:<964, 825> + var geometry = PathGeometry_1516(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2000() + { + // Offset:<964, 825> + var geometry = PathGeometry_1517(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2001() + { + // Offset:<964, 825> + var geometry = PathGeometry_1518(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2002() + { + // Offset:<964, 825> + var geometry = PathGeometry_1519(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2003() + { + // Offset:<964, 825> + var geometry = PathGeometry_1520(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2004() + { + // Offset:<964, 825> + var geometry = PathGeometry_1521(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2005() + { + // Offset:<964, 825> + var geometry = PathGeometry_1522(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2006() + { + // Offset:<964, 825> + var geometry = PathGeometry_1523(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2007() + { + // Offset:<964, 825> + var geometry = PathGeometry_1524(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // s + CompositionSpriteShape SpriteShape_2008() + { + // Offset:<964, 825> + var geometry = PathGeometry_1525(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ’ + CompositionSpriteShape SpriteShape_2009() + { + // Offset:<964, 825> + var geometry = PathGeometry_1526(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2010() + { + // Offset:<964, 825> + var geometry = PathGeometry_1527(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2011() + { + // Offset:<964, 825> + var geometry = PathGeometry_1528(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2012() + { + // Offset:<964, 825> + var geometry = PathGeometry_1529(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // w + CompositionSpriteShape SpriteShape_2013() + { + // Offset:<964, 825> + var geometry = PathGeometry_1530(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2014() + { + // Offset:<964, 825> + var geometry = PathGeometry_1531(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // u + CompositionSpriteShape SpriteShape_2015() + { + // Offset:<964, 825> + var geometry = PathGeometry_1532(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2016() + { + // Offset:<964, 825> + var geometry = PathGeometry_1533(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2017() + { + // Offset:<964, 825> + var geometry = PathGeometry_1534(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2018() + { + // Offset:<964, 825> + var geometry = PathGeometry_1535(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2019() + { + // Offset:<964, 825> + var geometry = PathGeometry_1536(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2020() + { + // Offset:<964, 825> + var geometry = PathGeometry_1537(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2021() + { + // Offset:<964, 825> + var geometry = PathGeometry_1538(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2022() + { + // Offset:<964, 825> + var geometry = PathGeometry_1539(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2023() + { + // Offset:<964, 825> + var geometry = PathGeometry_1540(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2024() + { + // Offset:<964, 825> + var geometry = PathGeometry_1541(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2025() + { + // Offset:<964, 825> + var geometry = PathGeometry_1542(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2026() + { + // Offset:<964, 825> + var geometry = PathGeometry_1543(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // l + CompositionSpriteShape SpriteShape_2027() + { + // Offset:<964, 825> + var geometry = PathGeometry_1544(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2028() + { + // Offset:<964, 825> + var geometry = PathGeometry_1545(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2029() + { + // Offset:<964, 825> + var geometry = PathGeometry_1546(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // . + CompositionSpriteShape SpriteShape_2030() + { + // Offset:<964, 825> + var geometry = PathGeometry_1547(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2031() + { + // Offset:<964, 825> + var geometry = PathGeometry_1548(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2032() + { + // Offset:<964, 825> + var geometry = PathGeometry_1549(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2033() + { + // Offset:<964, 825> + var geometry = PathGeometry_1550(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2034() + { + // Offset:<964, 825> + var geometry = PathGeometry_1551(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // u + CompositionSpriteShape SpriteShape_2035() + { + // Offset:<964, 825> + var geometry = PathGeometry_1552(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2036() + { + // Offset:<964, 825> + var geometry = PathGeometry_1553(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // c + CompositionSpriteShape SpriteShape_2037() + { + // Offset:<964, 825> + var geometry = PathGeometry_1554(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // s + CompositionSpriteShape SpriteShape_2038() + { + // Offset:<964, 825> + var geometry = PathGeometry_1555(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2039() + { + // Offset:<964, 825> + var geometry = PathGeometry_1556(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2040() + { + // Offset:<964, 825> + var geometry = PathGeometry_1557(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2041() + { + // Offset:<964, 825> + var geometry = PathGeometry_1558(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2042() + { + // Offset:<964, 825> + var geometry = PathGeometry_1559(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2043() + { + // Offset:<964, 825> + var geometry = PathGeometry_1560(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2044() + { + // Offset:<964, 825> + var geometry = PathGeometry_1561(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2045() + { + // Offset:<964, 825> + var geometry = PathGeometry_1562(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2046() + { + // Offset:<964, 825> + var geometry = PathGeometry_1563(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2047() + { + // Offset:<964, 825> + var geometry = PathGeometry_1564(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2048() + { + // Offset:<964, 825> + var geometry = PathGeometry_1565(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // u + CompositionSpriteShape SpriteShape_2049() + { + // Offset:<964, 825> + var geometry = PathGeometry_1566(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2050() + { + // Offset:<964, 825> + var geometry = PathGeometry_1567(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2051() + { + // Offset:<964, 825> + var geometry = PathGeometry_1568(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // s + CompositionSpriteShape SpriteShape_2052() + { + // Offset:<964, 825> + var geometry = PathGeometry_1569(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2053() + { + // Offset:<964, 825> + var geometry = PathGeometry_1570(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2054() + { + // Offset:<964, 825> + var geometry = PathGeometry_1571(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2055() + { + // Offset:<964, 825> + var geometry = PathGeometry_1572(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2056() + { + // Offset:<964, 825> + var geometry = PathGeometry_1573(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2057() + { + // Offset:<964, 825> + var geometry = PathGeometry_1574(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // u + CompositionSpriteShape SpriteShape_2058() + { + // Offset:<964, 825> + var geometry = PathGeometry_1575(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // c + CompositionSpriteShape SpriteShape_2059() + { + // Offset:<964, 825> + var geometry = PathGeometry_1576(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2060() + { + // Offset:<964, 825> + var geometry = PathGeometry_1577(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2061() + { + // Offset:<964, 825> + var geometry = PathGeometry_1578(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2062() + { + // Offset:<964, 825> + var geometry = PathGeometry_1579(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2063() + { + // Offset:<964, 825> + var geometry = PathGeometry_1580(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2064() + { + // Offset:<964, 825> + var geometry = PathGeometry_1581(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2065() + { + // Offset:<964, 825> + var geometry = PathGeometry_1582(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2066() + { + // Offset:<964, 825> + var geometry = PathGeometry_1583(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2067() + { + // Offset:<964, 825> + var geometry = PathGeometry_1584(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2068() + { + // Offset:<964, 825> + var geometry = PathGeometry_1585(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2069() + { + // Offset:<964, 825> + var geometry = PathGeometry_1586(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2070() + { + // Offset:<964, 825> + var geometry = PathGeometry_1587(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2071() + { + // Offset:<964, 825> + var geometry = PathGeometry_1588(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // s + CompositionSpriteShape SpriteShape_2072() + { + // Offset:<964, 825> + var geometry = PathGeometry_1589(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // w + CompositionSpriteShape SpriteShape_2073() + { + // Offset:<964, 825> + var geometry = PathGeometry_1590(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2074() + { + // Offset:<964, 825> + var geometry = PathGeometry_1591(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // l + CompositionSpriteShape SpriteShape_2075() + { + // Offset:<964, 825> + var geometry = PathGeometry_1592(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // l + CompositionSpriteShape SpriteShape_2076() + { + // Offset:<964, 825> + var geometry = PathGeometry_1593(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2077() + { + // Offset:<964, 825> + var geometry = PathGeometry_1594(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2078() + { + // Offset:<964, 825> + var geometry = PathGeometry_1595(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // l + CompositionSpriteShape SpriteShape_2079() + { + // Offset:<964, 825> + var geometry = PathGeometry_1596(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2080() + { + // Offset:<964, 825> + var geometry = PathGeometry_1597(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2081() + { + // Offset:<964, 825> + var geometry = PathGeometry_1598(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2082() + { + // Offset:<964, 825> + var geometry = PathGeometry_1599(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2083() + { + // Offset:<964, 825> + var geometry = PathGeometry_1600(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2084() + { + // Offset:<964, 825> + var geometry = PathGeometry_1601(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2085() + { + // Offset:<964, 825> + var geometry = PathGeometry_1602(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2086() + { + // Offset:<964, 825> + var geometry = PathGeometry_1603(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2087() + { + // Offset:<964, 825> + var geometry = PathGeometry_1604(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2088() + { + // Offset:<964, 825> + var geometry = PathGeometry_1605(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2089() + { + // Offset:<964, 825> + var geometry = PathGeometry_1606(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2090() + { + // Offset:<964, 825> + var geometry = PathGeometry_1607(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2091() + { + // Offset:<964, 825> + var geometry = PathGeometry_1608(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2092() + { + // Offset:<964, 825> + var geometry = PathGeometry_1609(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2093() + { + // Offset:<964, 825> + var geometry = PathGeometry_1610(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // s + CompositionSpriteShape SpriteShape_2094() + { + // Offset:<964, 825> + var geometry = PathGeometry_1611(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // s + CompositionSpriteShape SpriteShape_2095() + { + // Offset:<964, 825> + var geometry = PathGeometry_1612(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2096() + { + // Offset:<964, 825> + var geometry = PathGeometry_1613(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2097() + { + // Offset:<964, 825> + var geometry = PathGeometry_1614(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2098() + { + // Offset:<964, 825> + var geometry = PathGeometry_1615(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2099() + { + // Offset:<964, 825> + var geometry = PathGeometry_1616(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2100() + { + // Offset:<964, 825> + var geometry = PathGeometry_1617(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // w + CompositionSpriteShape SpriteShape_2101() + { + // Offset:<964, 825> + var geometry = PathGeometry_1618(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2102() + { + // Offset:<964, 825> + var geometry = PathGeometry_1619(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2103() + { + // Offset:<964, 825> + var geometry = PathGeometry_1620(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2104() + { + // Offset:<964, 825> + var geometry = PathGeometry_1621(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2105() + { + // Offset:<964, 825> + var geometry = PathGeometry_1622(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2106() + { + // Offset:<964, 825> + var geometry = PathGeometry_1623(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2107() + { + // Offset:<964, 825> + var geometry = PathGeometry_1624(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2108() + { + // Offset:<964, 825> + var geometry = PathGeometry_1625(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2109() + { + // Offset:<964, 825> + var geometry = PathGeometry_1626(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2110() + { + // Offset:<964, 825> + var geometry = PathGeometry_1627(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // l + CompositionSpriteShape SpriteShape_2111() + { + // Offset:<964, 825> + var geometry = PathGeometry_1628(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2112() + { + // Offset:<964, 825> + var geometry = PathGeometry_1629(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2113() + { + // Offset:<964, 825> + var geometry = PathGeometry_1630(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2114() + { + // Offset:<964, 825> + var geometry = PathGeometry_1631(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // l + CompositionSpriteShape SpriteShape_2115() + { + // Offset:<964, 825> + var geometry = PathGeometry_1632(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // u + CompositionSpriteShape SpriteShape_2116() + { + // Offset:<964, 825> + var geometry = PathGeometry_1633(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2117() + { + // Offset:<964, 825> + var geometry = PathGeometry_1634(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // c + CompositionSpriteShape SpriteShape_2118() + { + // Offset:<964, 825> + var geometry = PathGeometry_1635(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2119() + { + // Offset:<964, 825> + var geometry = PathGeometry_1636(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2120() + { + // Offset:<964, 825> + var geometry = PathGeometry_1637(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2121() + { + // Offset:<964, 825> + var geometry = PathGeometry_1638(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // u + CompositionSpriteShape SpriteShape_2122() + { + // Offset:<964, 825> + var geometry = PathGeometry_1639(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2123() + { + // Offset:<964, 825> + var geometry = PathGeometry_1640(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2124() + { + // Offset:<964, 825> + var geometry = PathGeometry_1641(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // s + CompositionSpriteShape SpriteShape_2125() + { + // Offset:<964, 825> + var geometry = PathGeometry_1642(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2126() + { + // Offset:<964, 825> + var geometry = PathGeometry_1643(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2127() + { + // Offset:<964, 825> + var geometry = PathGeometry_1644(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2128() + { + // Offset:<964, 825> + var geometry = PathGeometry_1645(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2129() + { + // Offset:<964, 825> + var geometry = PathGeometry_1646(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2130() + { + // Offset:<964, 825> + var geometry = PathGeometry_1647(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2131() + { + // Offset:<964, 825> + var geometry = PathGeometry_1648(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2132() + { + // Offset:<964, 825> + var geometry = PathGeometry_1649(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // s + CompositionSpriteShape SpriteShape_2133() + { + // Offset:<964, 825> + var geometry = PathGeometry_1650(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // s + CompositionSpriteShape SpriteShape_2134() + { + // Offset:<964, 825> + var geometry = PathGeometry_1651(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2135() + { + // Offset:<964, 825> + var geometry = PathGeometry_1652(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2136() + { + // Offset:<964, 825> + var geometry = PathGeometry_1653(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // s + CompositionSpriteShape SpriteShape_2137() + { + // Offset:<964, 825> + var geometry = PathGeometry_1654(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2138() + { + // Offset:<964, 825> + var geometry = PathGeometry_1655(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2139() + { + // Offset:<964, 825> + var geometry = PathGeometry_1656(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2140() + { + // Offset:<964, 825> + var geometry = PathGeometry_1657(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // e + CompositionSpriteShape SpriteShape_2141() + { + // Offset:<964, 825> + var geometry = PathGeometry_1658(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2142() + { + // Offset:<964, 825> + var geometry = PathGeometry_1659(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2143() + { + // Offset:<964, 825> + var geometry = PathGeometry_1660(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // ShapeGroup: . + CompositionSpriteShape SpriteShape_2144() + { + // Offset:<964, 825> + var geometry = PathGeometry_1661(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + // I + CompositionSpriteShape SpriteShape_2145() + { + // Offset:<964, 825> + var geometry = PathGeometry_1662(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 825F), ThemeColor_Color_FFFFFF_8());; + return result; + } + + // - Layer aggregator + // Rectangle Path 1 + CompositionSpriteShape SpriteShape_2146() + { + // Offset:<59, 517> + var geometry = Rectangle_1920x82(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 59F, 517F), ThemeColor_Color_E63B3B_1());; + return result; + } + + // - - Layer aggregator + // - Layer: Shape Layer 2 + // Rectangle Path 1 + CompositionSpriteShape SpriteShape_2147() + { + // Offset:<59, 517> + var geometry = Rectangle_1920x82(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 59F, 517F), ThemeColor_Color_E63B3B_2());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_2148() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1663(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // c + CompositionSpriteShape SpriteShape_2149() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1664(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2150() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1665(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_2151() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1666(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // u + CompositionSpriteShape SpriteShape_2152() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1667(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2153() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1668(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_2154() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1669(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // s + CompositionSpriteShape SpriteShape_2155() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1670(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2156() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1671(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2157() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1672(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2158() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1673(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2159() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1674(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2160() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1675(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2161() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1676(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2162() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1677(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_2163() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1678(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2164() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1679(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_2165() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1680(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2166() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1681(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2167() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1682(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2168() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1683(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2169() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1684(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2170() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1685(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_2171() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1686(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2172() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1687(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2173() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1688(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // l + CompositionSpriteShape SpriteShape_2174() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1689(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2175() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1690(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // s + CompositionSpriteShape SpriteShape_2176() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1691(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2177() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1692(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2178() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1693(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_2179() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1694(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2180() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1695(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2181() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1696(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_2182() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1697(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // v + CompositionSpriteShape SpriteShape_2183() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1698(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_2184() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1699(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2185() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1700(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // l + CompositionSpriteShape SpriteShape_2186() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1701(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // l + CompositionSpriteShape SpriteShape_2187() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1702(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2188() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1703(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // w + CompositionSpriteShape SpriteShape_2189() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1704(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2190() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1705(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2191() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1706(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2192() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1707(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2193() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1708(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2194() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1709(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_2195() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1710(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2196() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1711(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_2197() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1712(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // c + CompositionSpriteShape SpriteShape_2198() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1713(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2199() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1714(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // u + CompositionSpriteShape SpriteShape_2200() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1715(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2201() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1716(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2202() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1717(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2203() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1718(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2204() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1719(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_2205() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1720(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2206() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1721(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2207() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1722(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2208() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1723(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // - + CompositionSpriteShape SpriteShape_2209() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1724(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // e + CompositionSpriteShape SpriteShape_2210() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1725(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2211() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1726(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2212() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1727(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2213() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1728(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // s + CompositionSpriteShape SpriteShape_2214() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1729(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2215() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1730(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // s + CompositionSpriteShape SpriteShape_2216() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1731(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2217() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1732(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2218() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1733(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // Layer aggregator + // ShapeGroup: e + CompositionSpriteShape SpriteShape_2219() + { + // Offset:<1772, 42> + var geometry = PathGeometry_1734(); + var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 1772F, 42F), ThemeColor_Color_FFFFFF_9());; + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: NewLogoDraft-1024poutline + CompositionSurfaceBrush SurfaceBrush_0() + { + return _c.CreateSurfaceBrush(VisualSurface_0()); + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: NewLogoDraft-1024poutline + CompositionSurfaceBrush SurfaceBrush_1() + { + return _c.CreateSurfaceBrush(VisualSurface_1()); + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: NewLogoDraft-1024poutline + CompositionSurfaceBrush SurfaceBrush_2() + { + return _c.CreateSurfaceBrush(VisualSurface_2()); + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: NewLogoDraft-1024poutline + CompositionSurfaceBrush SurfaceBrush_3() + { + return _c.CreateSurfaceBrush(VisualSurface_3()); + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: NewLogoDraft-1024poutline + CompositionSurfaceBrush SurfaceBrush_4() + { + return _c.CreateSurfaceBrush(VisualSurface_4()); + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: NewLogoDraft-1024poutline + CompositionSurfaceBrush SurfaceBrush_5() + { + return _c.CreateSurfaceBrush(VisualSurface_5()); + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: NewLogoDraft-1024poutline + CompositionVisualSurface VisualSurface_0() + { + var result = _c.CreateVisualSurface(); + result.SourceVisual = ContainerVisual_2(); + result.SourceSize = new Vector2(1024F, 1024F); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: NewLogoDraft-1024poutline + CompositionVisualSurface VisualSurface_1() + { + var result = _c.CreateVisualSurface(); + result.SourceVisual = ContainerVisual_3(); + result.SourceSize = new Vector2(1024F, 1024F); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: NewLogoDraft-1024poutline + CompositionVisualSurface VisualSurface_2() + { + var result = _c.CreateVisualSurface(); + result.SourceVisual = ContainerVisual_4(); + result.SourceSize = new Vector2(1024F, 1024F); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: NewLogoDraft-1024poutline + CompositionVisualSurface VisualSurface_3() + { + var result = _c.CreateVisualSurface(); + result.SourceVisual = ContainerVisual_5(); + result.SourceSize = new Vector2(1024F, 1024F); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: NewLogoDraft-1024poutline + CompositionVisualSurface VisualSurface_4() + { + var result = _c.CreateVisualSurface(); + result.SourceVisual = ContainerVisual_6(); + result.SourceSize = new Vector2(1024F, 1024F); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: NewLogoDraft-1024poutline + CompositionVisualSurface VisualSurface_5() + { + var result = _c.CreateVisualSurface(); + result.SourceVisual = ContainerVisual_7(); + result.SourceSize = new Vector2(1024F, 1024F); + return result; + } + + // PreComp layer: Comp 1 + ContainerVisual ContainerVisual_0() + { + if (_containerVisual_0 != null) { return _containerVisual_0; } + var result = _containerVisual_0 = _c.CreateContainerVisual(); + result.Clip = InsetClip_0(); + result.IsVisible = false; + result.Size = new Vector2(1920F, 1080F); + // Scale:<1, 1> + result.TransformMatrix = new Matrix4x4(1F, 0F, 0F, 0F, 0F, 1F, 0F, 0F, 0F, 0F, 0F, 0F, 0F, 0F, 0F, 1F); + var children = result.Children; + // Opacity for layer: Comp 1 + children.InsertAtTop(ContainerVisual_1()); + // Opacity for layer: Comp 1 + children.InsertAtTop(ShapeVisual_06()); + // Opacity for layer: Comp 1 + children.InsertAtTop(ContainerVisual_8()); + // Opacity for layer: Comp 1 + children.InsertAtTop(ShapeVisual_08()); + // Opacity for layer: Comp 1 + children.InsertAtTop(ContainerVisual_9()); + return result; + } + + // PreComp layer: Comp 1 + // PreComp layer: NewLogoDraft-1024poutline + ContainerVisual ContainerVisual_1() + { + if (_containerVisual_1 != null) { return _containerVisual_1; } + var result = _containerVisual_1 = _c.CreateContainerVisual(); + result.Clip = InsetClip_0(); + result.IsVisible = false; + result.Size = new Vector2(1024F, 1024F); + // Offset:<1324.9199, 487.12>, Scale:<0.12, 0.12> + result.TransformMatrix = new Matrix4x4(0.119999997F, 0F, 0F, 0F, 0F, 0.119999997F, 0F, 0F, 0F, 0F, 0F, 0F, 1324.91992F, 487.119995F, 0F, 1F); + var children = result.Children; + // Opacity for layer: NewLogoDraft-1024poutline + children.InsertAtTop(SpriteVisual_0()); + // Opacity for layer: NewLogoDraft-1024poutline + children.InsertAtTop(SpriteVisual_1()); + // Opacity for layer: NewLogoDraft-1024poutline + children.InsertAtTop(SpriteVisual_2()); + return result; + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: NewLogoDraft-1024poutline + ContainerVisual ContainerVisual_2() + { + var result = _c.CreateContainerVisual(); + result.BorderMode = CompositionBorderMode.Soft; + // Shape tree root for layer: Shape Layer 1 + result.Children.InsertAtTop(ShapeVisual_00()); + return result; + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: NewLogoDraft-1024poutline + ContainerVisual ContainerVisual_3() + { + var result = _c.CreateContainerVisual(); + result.BorderMode = CompositionBorderMode.Soft; + // Masks + result.Children.InsertAtTop(ShapeVisual_01()); + return result; + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: NewLogoDraft-1024poutline + ContainerVisual ContainerVisual_4() + { + var result = _c.CreateContainerVisual(); + result.BorderMode = CompositionBorderMode.Soft; + // Shape tree root for layer: Shape Layer 2 + result.Children.InsertAtTop(ShapeVisual_02()); + return result; + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: NewLogoDraft-1024poutline + ContainerVisual ContainerVisual_5() + { + var result = _c.CreateContainerVisual(); + result.BorderMode = CompositionBorderMode.Soft; + // Masks + result.Children.InsertAtTop(ShapeVisual_03()); + return result; + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: NewLogoDraft-1024poutline + ContainerVisual ContainerVisual_6() + { + var result = _c.CreateContainerVisual(); + result.BorderMode = CompositionBorderMode.Soft; + // Shape tree root for layer: Shape Layer 3 + result.Children.InsertAtTop(ShapeVisual_04()); + return result; + } + + // - - - - - PreComp layer: Comp 1 + // - - - - Opacity for layer: Comp 1 + // - - - Opacity for layer: NewLogoDraft-1024poutline + ContainerVisual ContainerVisual_7() + { + var result = _c.CreateContainerVisual(); + result.BorderMode = CompositionBorderMode.Soft; + // Masks + result.Children.InsertAtTop(ShapeVisual_05()); + return result; + } + + // PreComp layer: Comp 1 + // PreComp layer: Pre-comp 1 + ContainerVisual ContainerVisual_8() + { + if (_containerVisual_8 != null) { return _containerVisual_8; } + var result = _containerVisual_8 = _c.CreateContainerVisual(); + result.Clip = InsetClip_0(); + result.IsVisible = false; + result.Size = new Vector2(1920F, 142F); + // Offset:<-30, 469>, Scale:<1, 1> + result.TransformMatrix = new Matrix4x4(1F, 0F, 0F, 0F, 0F, 1F, 0F, 0F, 0F, 0F, 0F, 0F, -30F, 469F, 0F, 1F); + // Opacity for layer: Pre-comp 1 + result.Children.InsertAtTop(ShapeVisual_07()); + return result; + } + + // PreComp layer: Comp 1 + // PreComp layer: Pre-comp 2 + ContainerVisual ContainerVisual_9() + { + if (_containerVisual_9 != null) { return _containerVisual_9; } + var result = _containerVisual_9 = _c.CreateContainerVisual(); + result.Clip = InsetClip_0(); + result.IsVisible = false; + result.Size = new Vector2(1920F, 1201F); + // Offset:<-57.599945, -96.52997>, Scale:<1.06, 1.06> + result.TransformMatrix = new Matrix4x4(1.05999994F, 0F, 0F, 0F, 0F, 1.05999994F, 0F, 0F, 0F, 0F, 0F, 0F, -57.5999451F, -96.5299683F, 0F, 1F); + // Opacity for layer: Pre-comp 2 + result.Children.InsertAtTop(ShapeVisual_09()); + return result; + } + + // The root of the composition. + ContainerVisual Root() + { + if (_root != null) { return _root; } + var result = _root = _c.CreateContainerVisual(); + var propertySet = result.Properties; + propertySet.InsertScalar("Progress", 0F); + var children = result.Children; + // PreComp layer: Comp 1 + children.InsertAtTop(ContainerVisual_0()); + // Layer aggregator + children.InsertAtTop(ShapeVisual_10()); + return result; + } + + CubicBezierEasingFunction CubicBezierEasingFunction_0() + { + return (_cubicBezierEasingFunction_0 == null) + ? _cubicBezierEasingFunction_0 = _c.CreateCubicBezierEasingFunction(new Vector2(0F, 0F), new Vector2(1F, 1F)) + : _cubicBezierEasingFunction_0; + } + + CubicBezierEasingFunction CubicBezierEasingFunction_1() + { + return (_cubicBezierEasingFunction_1 == null) + ? _cubicBezierEasingFunction_1 = _c.CreateCubicBezierEasingFunction(new Vector2(0.166999996F, 0.166999996F), new Vector2(0.833000004F, 0.833000004F)) + : _cubicBezierEasingFunction_1; + } + + CubicBezierEasingFunction CubicBezierEasingFunction_2() + { + return (_cubicBezierEasingFunction_2 == null) + ? _cubicBezierEasingFunction_2 = _c.CreateCubicBezierEasingFunction(new Vector2(0.333000004F, 0F), new Vector2(0F, 1F)) + : _cubicBezierEasingFunction_2; + } + + CubicBezierEasingFunction CubicBezierEasingFunction_3() + { + return (_cubicBezierEasingFunction_3 == null) + ? _cubicBezierEasingFunction_3 = _c.CreateCubicBezierEasingFunction(new Vector2(0.166999996F, 0F), new Vector2(0F, 1F)) + : _cubicBezierEasingFunction_3; + } + + InsetClip InsetClip_0() + { + if (_insetClip_0 != null) { return _insetClip_0; } + var result = _insetClip_0 = _c.CreateInsetClip(); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 3 Outlines + // Offset.Y + ScalarKeyFrameAnimation OffsetYScalarAnimation_207p421_to_m36p579() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 207.421005F, StepThenHoldEasingFunction()); + // Frame 4410. + result.InsertKeyFrame(0.918749988F, 207.421005F, HoldThenStepEasingFunction()); + // Frame 4435. + result.InsertKeyFrame(0.923958361F, 88.4209976F, CubicBezierEasingFunction_2()); + // Frame 4460. + result.InsertKeyFrame(0.929166675F, -36.5789986F, CubicBezierEasingFunction_3()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 8 Outlines + // Offset.Y + ScalarKeyFrameAnimation OffsetYScalarAnimation_232p421_to_113p421() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 232.421005F, StepThenHoldEasingFunction()); + // Frame 4545. + result.InsertKeyFrame(0.946874976F, 232.421005F, HoldThenStepEasingFunction()); + // Frame 4576. + result.InsertKeyFrame(0.953333318F, 113.420998F, CubicBezierEasingFunction_2()); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: second Outlines + // Offset.Y + ScalarKeyFrameAnimation OffsetYScalarAnimation_232p421_to_m10p579() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 232.421005F, StepThenHoldEasingFunction()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, 232.421005F, HoldThenStepEasingFunction()); + // Frame 4380. + result.InsertKeyFrame(0.912500024F, 113.420998F, CubicBezierEasingFunction_2()); + // Frame 4545. + result.InsertKeyFrame(0.946874976F, 113.420998F, _c.CreateCubicBezierEasingFunction(new Vector2(0.166999996F, 0F), new Vector2(0.56099999F, 1F))); + // Frame 4575. + result.InsertKeyFrame(0.953125F, -10.5790005F, CubicBezierEasingFunction_2()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers Outlines + // Offset.Y + ScalarKeyFrameAnimation OffsetYScalarAnimation_232p421_to_m11p579() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 232.421005F, StepThenHoldEasingFunction()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, 232.421005F, HoldThenStepEasingFunction()); + // Frame 4380. + result.InsertKeyFrame(0.912500024F, 113.420998F, CubicBezierEasingFunction_2()); + // Frame 4410. + result.InsertKeyFrame(0.918749988F, -11.5790005F, CubicBezierEasingFunction_3()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 2 Outlines + // Offset.Y + ScalarKeyFrameAnimation OffsetYScalarAnimation_232p421_to_m29p579() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 232.421005F, StepThenHoldEasingFunction()); + // Frame 4380. + result.InsertKeyFrame(0.912500024F, 232.421005F, HoldThenStepEasingFunction()); + // Frame 4410. + result.InsertKeyFrame(0.918749988F, 113.420998F, CubicBezierEasingFunction_2()); + // Frame 4440. + result.InsertKeyFrame(0.925000012F, -29.5790005F, CubicBezierEasingFunction_3()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 6 Outlines + // Offset.Y + ScalarKeyFrameAnimation OffsetYScalarAnimation_232p421_to_m31p579_0() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 232.421005F, StepThenHoldEasingFunction()); + // Frame 4480. + result.InsertKeyFrame(0.933333337F, 232.421005F, HoldThenStepEasingFunction()); + // Frame 4496. + result.InsertKeyFrame(0.936666667F, 113.420998F, CubicBezierEasingFunction_2()); + // Frame 4511. + result.InsertKeyFrame(0.939791679F, -31.5790005F, CubicBezierEasingFunction_3()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 7 Outlines + // Offset.Y + ScalarKeyFrameAnimation OffsetYScalarAnimation_232p421_to_m31p579_1() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 232.421005F, StepThenHoldEasingFunction()); + // Frame 4496. + result.InsertKeyFrame(0.936666667F, 232.421005F, HoldThenStepEasingFunction()); + // Frame 4511. + result.InsertKeyFrame(0.939791679F, 113.420998F, CubicBezierEasingFunction_2()); + // Frame 4545. + result.InsertKeyFrame(0.946874976F, 113.420998F, CubicBezierEasingFunction_3()); + // Frame 4574. + result.InsertKeyFrame(0.952916682F, -31.5790005F, CubicBezierEasingFunction_3()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 5 Outlines + // Offset.Y + ScalarKeyFrameAnimation OffsetYScalarAnimation_232p421_to_m34p579() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 232.421005F, StepThenHoldEasingFunction()); + // Frame 4460. + result.InsertKeyFrame(0.929166675F, 232.421005F, HoldThenStepEasingFunction()); + // Frame 4480. + result.InsertKeyFrame(0.933333337F, 113.420998F, CubicBezierEasingFunction_2()); + // Frame 4496. + result.InsertKeyFrame(0.936666667F, -34.5789986F, CubicBezierEasingFunction_3()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 4 Outlines + // Offset.Y + ScalarKeyFrameAnimation OffsetYScalarAnimation_232p421_to_m36p579() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 232.421005F, StepThenHoldEasingFunction()); + // Frame 4435. + result.InsertKeyFrame(0.923958361F, 232.421005F, HoldThenStepEasingFunction()); + // Frame 4460. + result.InsertKeyFrame(0.929166675F, 113.420998F, CubicBezierEasingFunction_2()); + // Frame 4480. + result.InsertKeyFrame(0.933333337F, -36.5789986F, CubicBezierEasingFunction_3()); + return result; + } + + // - - - - PreComp layer: Comp 1 + // - - - Opacity for layer: Comp 1 + // - - Opacity for layer: Pre-comp 1 + // - Layer: second Outlines + // Offset.Y + ScalarKeyFrameAnimation OffsetYScalarAnimation_232p632_to_113p632() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 232.632004F, StepThenHoldEasingFunction()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, 232.632004F, HoldThenStepEasingFunction()); + // Frame 4380. + result.InsertKeyFrame(0.912500024F, 113.632004F, CubicBezierEasingFunction_2()); + return result; + } + + // Opacity0 + ScalarKeyFrameAnimation Opacity0ScalarAnimation_0_to_0_0() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 0F, StepThenHoldEasingFunction()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, 0F, HoldThenStepEasingFunction()); + // Frame 4380. + result.InsertKeyFrame(0.912500024F, 1F, CubicBezierEasingFunction_0()); + // Frame 4470. + result.InsertKeyFrame(0.931249976F, 1F, CubicBezierEasingFunction_0()); + // Frame 4500. + result.InsertKeyFrame(0.9375F, 0F, CubicBezierEasingFunction_0()); + return result; + } + + // Opacity0 + ScalarKeyFrameAnimation Opacity0ScalarAnimation_0_to_0_1() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 0F, StepThenHoldEasingFunction()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, 0F, HoldThenStepEasingFunction()); + // Frame 4380. + result.InsertKeyFrame(0.912500024F, 1F, CubicBezierEasingFunction_1()); + // Frame 4470. + result.InsertKeyFrame(0.931249976F, 1F, CubicBezierEasingFunction_1()); + // Frame 4500. + result.InsertKeyFrame(0.9375F, 0F, CubicBezierEasingFunction_1()); + return result; + } + + // Opacity0 + ScalarKeyFrameAnimation Opacity0ScalarAnimation_0_to_0_2() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 0F, HoldThenStepEasingFunction()); + // Frame 30. + result.InsertKeyFrame(0.00625000009F, 1F, CubicBezierEasingFunction_1()); + // Frame 3690. + result.InsertKeyFrame(0.768750012F, 1F, CubicBezierEasingFunction_1()); + // Frame 3720. + result.InsertKeyFrame(0.774999976F, 0F, CubicBezierEasingFunction_1()); + return result; + } + + // Opacity0 + ScalarKeyFrameAnimation Opacity0ScalarAnimation_0_to_0_3() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 0F, StepThenHoldEasingFunction()); + // Frame 60. + result.InsertKeyFrame(0.0125000002F, 0F, HoldThenStepEasingFunction()); + // Frame 90. + result.InsertKeyFrame(0.0187500007F, 1F, CubicBezierEasingFunction_1()); + // Frame 3690. + result.InsertKeyFrame(0.768750012F, 1F, CubicBezierEasingFunction_1()); + // Frame 3720. + result.InsertKeyFrame(0.774999976F, 0F, CubicBezierEasingFunction_1()); + return result; + } + + // Opacity0 + ScalarKeyFrameAnimation Opacity0ScalarAnimation_0_to_0_4() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 0F, StepThenHoldEasingFunction()); + // Frame 361. + result.InsertKeyFrame(0.0752083361F, 0F, HoldThenStepEasingFunction()); + // Frame 391. + result.InsertKeyFrame(0.0814583302F, 1F, CubicBezierEasingFunction_1()); + // Frame 3690. + result.InsertKeyFrame(0.768750012F, 1F, CubicBezierEasingFunction_1()); + // Frame 3720. + result.InsertKeyFrame(0.774999976F, 0F, CubicBezierEasingFunction_1()); + return result; + } + + // Opacity0 + ScalarKeyFrameAnimation Opacity0ScalarAnimation_0_to_0_5() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 0F, StepThenHoldEasingFunction()); + // Frame 900. + result.InsertKeyFrame(0.1875F, 0F, HoldThenStepEasingFunction()); + // Frame 930. + result.InsertKeyFrame(0.193749994F, 1F, CubicBezierEasingFunction_1()); + // Frame 3690. + result.InsertKeyFrame(0.768750012F, 1F, CubicBezierEasingFunction_1()); + // Frame 3720. + result.InsertKeyFrame(0.774999976F, 0F, CubicBezierEasingFunction_1()); + return result; + } + + // Opacity0 + ScalarKeyFrameAnimation Opacity0ScalarAnimation_0_to_0_6() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 0F, StepThenHoldEasingFunction()); + // Frame 3750. + result.InsertKeyFrame(0.78125F, 0F, HoldThenStepEasingFunction()); + // Frame 3780. + result.InsertKeyFrame(0.787500024F, 1F, CubicBezierEasingFunction_1()); + // Frame 4320. + result.InsertKeyFrame(0.899999976F, 1F, CubicBezierEasingFunction_1()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, 0F, CubicBezierEasingFunction_1()); + return result; + } + + // Opacity0 + ScalarKeyFrameAnimation Opacity0ScalarAnimation_0_to_0_7() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 0F, HoldThenStepEasingFunction()); + // Frame 30. + result.InsertKeyFrame(0.00625000009F, 1F, CubicBezierEasingFunction_1()); + // Frame 4170. + result.InsertKeyFrame(0.868749976F, 1F, CubicBezierEasingFunction_1()); + // Frame 4200. + result.InsertKeyFrame(0.875F, 0F, CubicBezierEasingFunction_1()); + return result; + } + + // Opacity0 + ScalarKeyFrameAnimation Opacity0ScalarAnimation_1_to_0_0() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 1F, StepThenHoldEasingFunction()); + // Frame 3690. + result.InsertKeyFrame(0.768750012F, 1F, HoldThenStepEasingFunction()); + // Frame 3720. + result.InsertKeyFrame(0.774999976F, 0F, CubicBezierEasingFunction_1()); + return result; + } + + // Opacity0 + ScalarKeyFrameAnimation Opacity0ScalarAnimation_1_to_0_1() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 1F, StepThenHoldEasingFunction()); + // Frame 4320. + result.InsertKeyFrame(0.899999976F, 1F, HoldThenStepEasingFunction()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, 0F, CubicBezierEasingFunction_1()); + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // Layer opacity animation + ScalarKeyFrameAnimation OpacityScalarAnimation_0_to_0() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 0F, StepThenHoldEasingFunction()); + // Frame 4590. + result.InsertKeyFrame(0.956250012F, 0F, HoldThenStepEasingFunction()); + // Frame 4620. + result.InsertKeyFrame(0.962499976F, 1F, CubicBezierEasingFunction_1()); + // Frame 4770. + result.InsertKeyFrame(0.993749976F, 1F, CubicBezierEasingFunction_1()); + // Frame 4800. + result.InsertKeyFrame(1F, 0F, CubicBezierEasingFunction_1()); + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // Layer opacity animation + ScalarKeyFrameAnimation OpacityScalarAnimation_0_to_0p033() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 0F, StepThenHoldEasingFunction()); + // Frame 4590. + result.InsertKeyFrame(0.956250012F, 0F, HoldThenStepEasingFunction()); + // Frame 4620. + result.InsertKeyFrame(0.962499976F, 1F, CubicBezierEasingFunction_0()); + // Frame 4770. + result.InsertKeyFrame(0.993749976F, 1F, CubicBezierEasingFunction_0()); + // Frame 4799. + result.InsertKeyFrame(0.999791682F, 0.0333300009F, CubicBezierEasingFunction_0()); + return result; + } + + // PreComp layer: Comp 1 + // Layer opacity animation + ScalarKeyFrameAnimation OpacityScalarAnimation_0_to_1() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 0F, StepThenHoldEasingFunction()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, 0F, HoldThenStepEasingFunction()); + // Frame 4370. + result.InsertKeyFrame(0.910416663F, 1F, CubicBezierEasingFunction_1()); + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // Layer opacity animation + ScalarKeyFrameAnimation OpacityScalarAnimation_1_to_0_0() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 1F, StepThenHoldEasingFunction()); + // Frame 4679. + result.InsertKeyFrame(0.974791646F, 1F, HoldThenStepEasingFunction()); + // Frame 4709. + result.InsertKeyFrame(0.98104167F, 0F, CubicBezierEasingFunction_1()); + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // Layer opacity animation + ScalarKeyFrameAnimation OpacityScalarAnimation_1_to_0_1() + { + // Frame 0. + var result = CreateScalarKeyFrameAnimation(0F, 1F, StepThenHoldEasingFunction()); + // Frame 4680. + result.InsertKeyFrame(0.975000024F, 1F, HoldThenStepEasingFunction()); + // Frame 4710. + result.InsertKeyFrame(0.981249988F, 0F, CubicBezierEasingFunction_1()); + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: NewLogoDraft-1024poutline + // Shape tree root for layer: Shape Layer 1 + ShapeVisual ShapeVisual_00() + { + if (_shapeVisual_00 != null) { return _shapeVisual_00; } + var result = _shapeVisual_00 = _c.CreateShapeVisual(); + result.IsVisible = false; + result.Size = new Vector2(1024F, 1024F); + // Offset:<701, 286> + result.Shapes.Add(SpriteShape_0000()); + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: NewLogoDraft-1024poutline + // Masks + ShapeVisual ShapeVisual_01() + { + if (_shapeVisual_01 != null) { return _shapeVisual_01; } + var result = _shapeVisual_01 = _c.CreateShapeVisual(); + result.IsVisible = false; + result.Size = new Vector2(1024F, 1024F); + // Layer: Shape Layer 1 + result.Shapes.Add(SpriteShape_0001()); + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: NewLogoDraft-1024poutline + // Shape tree root for layer: Shape Layer 2 + ShapeVisual ShapeVisual_02() + { + if (_shapeVisual_02 != null) { return _shapeVisual_02; } + var result = _shapeVisual_02 = _c.CreateShapeVisual(); + result.IsVisible = false; + result.Size = new Vector2(1024F, 1024F); + // Offset:<523.5, 488.5> + result.Shapes.Add(SpriteShape_0002()); + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: NewLogoDraft-1024poutline + // Masks + ShapeVisual ShapeVisual_03() + { + if (_shapeVisual_03 != null) { return _shapeVisual_03; } + var result = _shapeVisual_03 = _c.CreateShapeVisual(); + result.IsVisible = false; + result.Size = new Vector2(1024F, 1024F); + // Layer: Shape Layer 2 + result.Shapes.Add(SpriteShape_0003()); + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: NewLogoDraft-1024poutline + // Shape tree root for layer: Shape Layer 3 + ShapeVisual ShapeVisual_04() + { + if (_shapeVisual_04 != null) { return _shapeVisual_04; } + var result = _shapeVisual_04 = _c.CreateShapeVisual(); + result.IsVisible = false; + result.Size = new Vector2(1024F, 1024F); + var shapes = result.Shapes; + // Offset:<416, 509> + shapes.Add(SpriteShape_0004()); + // Offset:<416, 509> + shapes.Add(SpriteShape_0005()); + return result; + } + + // - - - - - - PreComp layer: Comp 1 + // - - - - - Opacity for layer: Comp 1 + // - - - - Opacity for layer: NewLogoDraft-1024poutline + // Masks + ShapeVisual ShapeVisual_05() + { + if (_shapeVisual_05 != null) { return _shapeVisual_05; } + var result = _shapeVisual_05 = _c.CreateShapeVisual(); + result.IsVisible = false; + result.Size = new Vector2(1024F, 1024F); + // Layer: Shape Layer 3 + result.Shapes.Add(SpriteShape_0006()); + return result; + } + + // PreComp layer: Comp 1 + // Shape tree root for layer: collapse Outlines + ShapeVisual ShapeVisual_06() + { + if (_shapeVisual_06 != null) { return _shapeVisual_06; } + var result = _shapeVisual_06 = _c.CreateShapeVisual(); + result.IsVisible = false; + result.Size = new Vector2(1920F, 1080F); + var shapes = result.Shapes; + // Scale:1.23,1.23, Offset:<1464, 580> + shapes.Add(SpriteShape_0007()); + // Scale:1.23,1.23, Offset:<1464, 580> + shapes.Add(SpriteShape_0008()); + // Scale:1.23,1.23, Offset:<1464, 580> + shapes.Add(SpriteShape_0009()); + // Scale:1.23,1.23, Offset:<1464, 580> + shapes.Add(SpriteShape_0010()); + // Scale:1.23,1.23, Offset:<1464, 580> + shapes.Add(SpriteShape_0011()); + // Scale:1.23,1.23, Offset:<1464, 580> + shapes.Add(SpriteShape_0012()); + // Scale:1.23,1.23, Offset:<1464, 580> + shapes.Add(SpriteShape_0013()); + // Scale:1.23,1.23, Offset:<1464, 580> + shapes.Add(SpriteShape_0014()); + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // Layer aggregator + ShapeVisual ShapeVisual_07() + { + var result = _c.CreateShapeVisual(); + result.Size = new Vector2(1920F, 142F); + var shapes = result.Shapes; + // Layer: text-ministers Outlines + shapes.Add(ContainerShape_00()); + // Layer: text-ministers 2 Outlines + shapes.Add(ContainerShape_01()); + // Layer: text-ministers 3 Outlines + shapes.Add(ContainerShape_02()); + // Layer: text-ministers 4 Outlines + shapes.Add(ContainerShape_03()); + // Layer: text-ministers 5 Outlines + shapes.Add(ContainerShape_04()); + // Layer: text-ministers 6 Outlines + shapes.Add(ContainerShape_05()); + // Layer: text-ministers 7 Outlines + shapes.Add(ContainerShape_06()); + // Layer: text-ministers 8 Outlines + shapes.Add(ContainerShape_07()); + // Layer: second Outlines + shapes.Add(ContainerShape_08()); + return result; + } + + // PreComp layer: Comp 1 + // Layer aggregator + ShapeVisual ShapeVisual_08() + { + if (_shapeVisual_08 != null) { return _shapeVisual_08; } + var result = _shapeVisual_08 = _c.CreateShapeVisual(); + result.IsVisible = false; + result.Size = new Vector2(1920F, 1080F); + var shapes = result.Shapes; + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0090()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0091()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0092()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0093()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0094()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0095()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0096()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0097()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0098()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0099()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0100()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0101()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0102()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0103()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0104()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0105()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0106()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0107()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0108()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0109()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0110()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0111()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0112()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0113()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0114()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0115()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0116()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0117()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0118()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0119()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0120()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0121()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0122()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0123()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0124()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0125()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0126()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0127()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0128()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0129()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0130()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0131()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0132()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0133()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0134()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0135()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0136()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0137()); + // Layer: © Collapse Project Outlines + shapes.Add(SpriteShape_0138()); + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // Layer aggregator + ShapeVisual ShapeVisual_09() + { + var result = _c.CreateShapeVisual(); + result.Size = new Vector2(1920F, 1201F); + var shapes = result.Shapes; + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + shapes.Add(ContainerShape_11()); + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + shapes.Add(ContainerShape_12()); + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + shapes.Add(ContainerShape_13()); + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + shapes.Add(ContainerShape_14()); + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + shapes.Add(ContainerShape_15()); + return result; + } + + // Layer aggregator + ShapeVisual ShapeVisual_10() + { + var result = _c.CreateShapeVisual(); + result.Size = new Vector2(1920F, 1080F); + var shapes = result.Shapes; + // Offset:<128, 166> + shapes.Add(SpriteShape_0739()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0740()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0741()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0742()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0743()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0744()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0745()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0746()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0747()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0748()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0749()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0750()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0751()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0752()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0753()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0754()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0755()); + // Offset:<128, 166> + shapes.Add(SpriteShape_0756()); + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + shapes.Add(ContainerShape_16()); + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + shapes.Add(ContainerShape_17()); + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + shapes.Add(ContainerShape_18()); + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + shapes.Add(ContainerShape_19()); + shapes.Add(ContainerShape_20()); + // Layer: Shape Layer 2 + shapes.Add(ContainerShape_21()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2148()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2149()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2150()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2151()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2152()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2153()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2154()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2155()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2156()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2157()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2158()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2159()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2160()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2161()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2162()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2163()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2164()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2165()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2166()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2167()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2168()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2169()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2170()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2171()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2172()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2173()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2174()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2175()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2176()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2177()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2178()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2179()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2180()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2181()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2182()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2183()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2184()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2185()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2186()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2187()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2188()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2189()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2190()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2191()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2192()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2193()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2194()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2195()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2196()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2197()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2198()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2199()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2200()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2201()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2202()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2203()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2204()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2205()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2206()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2207()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2208()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2209()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2210()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2211()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2212()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2213()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2214()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2215()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2216()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2217()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2218()); + // Offset:<1772, 42> + shapes.Add(SpriteShape_2219()); + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // Transforms for NewLogoDraft-1024poutline Scale(0.12,0.12,0), Offset(305,-194,0) + SpriteVisual SpriteVisual_0() + { + var result = _c.CreateSpriteVisual(); + result.Size = new Vector2(1024F, 1024F); + result.Brush = EffectBrush_0(); + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // Transforms for NewLogoDraft-1024poutline Scale(0.12,0.12,0), Offset(305,-194,0) + SpriteVisual SpriteVisual_1() + { + var result = _c.CreateSpriteVisual(); + result.Size = new Vector2(1024F, 1024F); + result.Brush = EffectBrush_1(); + return result; + } + + // - PreComp layer: Comp 1 + // Opacity for layer: Comp 1 + // Transforms for NewLogoDraft-1024poutline Scale(0.12,0.12,0), Offset(305,-194,0) + SpriteVisual SpriteVisual_2() + { + var result = _c.CreateSpriteVisual(); + result.Size = new Vector2(1024F, 1024F); + result.Brush = EffectBrush_2(); + return result; + } + + StepEasingFunction HoldThenStepEasingFunction() + { + if (_holdThenStepEasingFunction != null) { return _holdThenStepEasingFunction; } + var result = _holdThenStepEasingFunction = _c.CreateStepEasingFunction(); + result.IsFinalStepSingleFrame = true; + return result; + } + + StepEasingFunction StepThenHoldEasingFunction() + { + if (_stepThenHoldEasingFunction != null) { return _stepThenHoldEasingFunction; } + var result = _stepThenHoldEasingFunction = _c.CreateStepEasingFunction(); + result.IsInitialStepSingleFrame = true; + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // Offset + Vector2KeyFrameAnimation OffsetVector2Animation_0() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(-4849.73682F, 462.65799F), StepThenHoldEasingFunction()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, new Vector2(-4849.73682F, 462.65799F), HoldThenStepEasingFunction()); + // Frame 4799. + result.InsertKeyFrame(0.999791682F, new Vector2(-6163.73682F, 462.65799F), CubicBezierEasingFunction_1()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // Offset + Vector2KeyFrameAnimation OffsetVector2Animation_1() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(-1227.78894F, 705.65802F), StepThenHoldEasingFunction()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, new Vector2(-1227.78894F, 705.65802F), HoldThenStepEasingFunction()); + // Frame 4799. + result.InsertKeyFrame(0.999791682F, new Vector2(-922.789001F, 705.65802F), CubicBezierEasingFunction_1()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // Offset + Vector2KeyFrameAnimation OffsetVector2Animation_2() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(-8027.31592F, 218.237F), StepThenHoldEasingFunction()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, new Vector2(-8027.31592F, 218.237F), HoldThenStepEasingFunction()); + // Frame 4799. + result.InsertKeyFrame(0.999791682F, new Vector2(-6777.31592F, 218.237F), CubicBezierEasingFunction_1()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // Offset + Vector2KeyFrameAnimation OffsetVector2Animation_3() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(-1516.94702F, 942.973999F), StepThenHoldEasingFunction()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, new Vector2(-1516.94702F, 942.973999F), HoldThenStepEasingFunction()); + // Frame 4799. + result.InsertKeyFrame(0.999791682F, new Vector2(-2307.94702F, 942.973999F), CubicBezierEasingFunction_1()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 2 + // Layer: + // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP + // 2 Outlines + // Offset + Vector2KeyFrameAnimation OffsetVector2Animation_4() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(-6094.1582F, 1178.86804F), StepThenHoldEasingFunction()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, new Vector2(-6094.1582F, 1178.86804F), HoldThenStepEasingFunction()); + // Frame 4799. + result.InsertKeyFrame(0.999791682F, new Vector2(-5726.1582F, 1178.86804F), CubicBezierEasingFunction_1()); + return result; + } + + // - Layer aggregator + // Scale + Vector2KeyFrameAnimation ScaleVector2Animation_0() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 1F), HoldThenStepEasingFunction()); + // Frame 3690. + result.InsertKeyFrame(0.768750012F, new Vector2(1F, 1F), CubicBezierEasingFunction_1()); + return result; + } + + // - - Layer aggregator + // - Layer: Shape Layer 2 + // Scale + Vector2KeyFrameAnimation ScaleVector2Animation_1() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 1F), StepThenHoldEasingFunction()); + // Frame 3750. + result.InsertKeyFrame(0.78125F, new Vector2(0F, 1F), HoldThenStepEasingFunction()); + // Frame 4320. + result.InsertKeyFrame(0.899999976F, new Vector2(1F, 1F), CubicBezierEasingFunction_1()); + return result; + } + + Vector2KeyFrameAnimation ShapeVisibilityAnimation_00() + { + // Frame 0. + if (_shapeVisibilityAnimation_00 != null) { return _shapeVisibilityAnimation_00; } + var result = _shapeVisibilityAnimation_00 = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 0F), HoldThenStepEasingFunction()); + // Frame 4350. + result.InsertKeyFrame(0.90625F, new Vector2(1F, 1F), HoldThenStepEasingFunction()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 2 Outlines + Vector2KeyFrameAnimation ShapeVisibilityAnimation_01() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 0F), HoldThenStepEasingFunction()); + // Frame 4380. + result.InsertKeyFrame(0.912500024F, new Vector2(1F, 1F), HoldThenStepEasingFunction()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 3 Outlines + Vector2KeyFrameAnimation ShapeVisibilityAnimation_02() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 0F), HoldThenStepEasingFunction()); + // Frame 4410. + result.InsertKeyFrame(0.918749988F, new Vector2(1F, 1F), HoldThenStepEasingFunction()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 4 Outlines + Vector2KeyFrameAnimation ShapeVisibilityAnimation_03() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 0F), HoldThenStepEasingFunction()); + // Frame 4435. + result.InsertKeyFrame(0.923958361F, new Vector2(1F, 1F), HoldThenStepEasingFunction()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 5 Outlines + Vector2KeyFrameAnimation ShapeVisibilityAnimation_04() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 0F), HoldThenStepEasingFunction()); + // Frame 4460. + result.InsertKeyFrame(0.929166675F, new Vector2(1F, 1F), HoldThenStepEasingFunction()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 6 Outlines + Vector2KeyFrameAnimation ShapeVisibilityAnimation_05() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 0F), HoldThenStepEasingFunction()); + // Frame 4480. + result.InsertKeyFrame(0.933333337F, new Vector2(1F, 1F), HoldThenStepEasingFunction()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 7 Outlines + Vector2KeyFrameAnimation ShapeVisibilityAnimation_06() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 0F), HoldThenStepEasingFunction()); + // Frame 4496. + result.InsertKeyFrame(0.936666667F, new Vector2(1F, 1F), HoldThenStepEasingFunction()); + return result; + } + + // - - - PreComp layer: Comp 1 + // - - Opacity for layer: Comp 1 + // - Opacity for layer: Pre-comp 1 + // Layer: text-ministers 8 Outlines + Vector2KeyFrameAnimation ShapeVisibilityAnimation_07() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 0F), HoldThenStepEasingFunction()); + // Frame 4525. + result.InsertKeyFrame(0.942708313F, new Vector2(1F, 1F), HoldThenStepEasingFunction()); + return result; + } + + // - Layer aggregator + // Layer: Firstly, I would like to apologize for this sudden announcement but, I would + // like to bring you some information regarding what is currently happening in + // Indonesia. Outlines + Vector2KeyFrameAnimation ShapeVisibilityAnimation_08() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 0F), HoldThenStepEasingFunction()); + // Frame 60. + result.InsertKeyFrame(0.0125000002F, new Vector2(1F, 1F), HoldThenStepEasingFunction()); + return result; + } + + // - Layer aggregator + // Layer: For the last following days, Indonesia is currently under windespread unrest + // due to government’s unfair policies, oppression and violence by the police. This + // results in a widerange anger from the citizens and an absolute untrust to the + // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan + // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove + // by the anti-protest police forces even he was not a part of the demonstration. + // Reportedly as of August 31st, there are number of other victims who passed away in + // the hospital. Outlines + Vector2KeyFrameAnimation ShapeVisibilityAnimation_09() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 0F), HoldThenStepEasingFunction()); + // Frame 361. + result.InsertKeyFrame(0.0752083361F, new Vector2(1F, 1F), HoldThenStepEasingFunction()); + return result; + } + + // - Layer aggregator + // Layer: Meanwhile, the government and the police started to oppress the protesters + // with violence and began to open fire to the protesters without any reason. They + // began to force censorship across social media platform, starting from TikTok, + // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It + // reportedly that some military forces have been deployed in case of a next wave of + // demonstration and might potentialy lead the country under its martial law by making + // fabricated scenarios and slanders to divide the nation, which will cause more chaos + // and confusion to citizens (yes, I’m not kidding. This is how our government tries + // to gain control over their own people. How shameless) Outlines + Vector2KeyFrameAnimation ShapeVisibilityAnimation_10() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 0F), HoldThenStepEasingFunction()); + // Frame 900. + result.InsertKeyFrame(0.1875F, new Vector2(1F, 1F), HoldThenStepEasingFunction()); + return result; + } + + // - Layer aggregator + // Layer: I hope this message finds you and could help to bring awareness to + // international fellows regarding the current situation of this country. To learn + // more about what’s happening, click the “Learn More” button below. Outlines + Vector2KeyFrameAnimation ShapeVisibilityAnimation_11() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 0F), HoldThenStepEasingFunction()); + // Frame 1560. + result.InsertKeyFrame(0.324999988F, new Vector2(1F, 1F), HoldThenStepEasingFunction()); + return result; + } + + // - Layer aggregator + // Layer: Shape Layer 2 + Vector2KeyFrameAnimation ShapeVisibilityAnimation_12() + { + // Frame 0. + var result = CreateVector2KeyFrameAnimation(0F, new Vector2(0F, 0F), HoldThenStepEasingFunction()); + // Frame 2130. + result.InsertKeyFrame(0.443749994F, new Vector2(1F, 1F), HoldThenStepEasingFunction()); + return result; + } + + internal TempResetIndonesiaTaglineCrisis_AnimatedVisual( + Compositor compositor, + CompositionPropertySet themeProperties + ) + { + _c = compositor; + _themeProperties = themeProperties; + _reusableExpressionAnimation = compositor.CreateExpressionAnimation(); + Root(); + } + + public Visual RootVisual => _root; + public TimeSpan Duration => TimeSpan.FromTicks(c_durationTicks); + public Vector2 Size => new Vector2(1920F, 1080F); + void IDisposable.Dispose() => _root?.Dispose(); + + public void CreateAnimations() + { + _themeColor_Color_E63B3B_1.Properties.StartAnimation("Opacity0", Opacity0ScalarAnimation_1_to_0_0(), AnimationController_0()); + _themeColor_Color_E63B3B_2.Properties.StartAnimation("Opacity0", Opacity0ScalarAnimation_1_to_0_1(), AnimationController_0()); + _themeColor_Color_FFFFFF_1.Properties.StartAnimation("Opacity0", Opacity0ScalarAnimation_0_to_0_0(), AnimationController_0()); + _themeColor_Color_FFFFFF_2.Properties.StartAnimation("Opacity0", Opacity0ScalarAnimation_0_to_0_1(), AnimationController_0()); + _themeColor_Color_FFFFFF_4.Properties.StartAnimation("Opacity0", Opacity0ScalarAnimation_0_to_0_2(), AnimationController_0()); + _themeColor_Color_FFFFFF_5.Properties.StartAnimation("Opacity0", Opacity0ScalarAnimation_0_to_0_3(), AnimationController_0()); + _themeColor_Color_FFFFFF_6.Properties.StartAnimation("Opacity0", Opacity0ScalarAnimation_0_to_0_4(), AnimationController_0()); + _themeColor_Color_FFFFFF_7.Properties.StartAnimation("Opacity0", Opacity0ScalarAnimation_0_to_0_5(), AnimationController_0()); + _themeColor_Color_FFFFFF_8.Properties.StartAnimation("Opacity0", Opacity0ScalarAnimation_0_to_0_6(), AnimationController_0()); + _themeColor_Color_FFFFFF_9.Properties.StartAnimation("Opacity0", Opacity0ScalarAnimation_0_to_0_7(), AnimationController_0()); + _containerShape_00.StartAnimation("Offset.Y", OffsetYScalarAnimation_232p421_to_m11p579(), AnimationController_0()); + _containerShape_00.StartAnimation("Scale", ShapeVisibilityAnimation_00(), AnimationController_0()); + _containerShape_01.StartAnimation("Offset.Y", OffsetYScalarAnimation_232p421_to_m29p579(), AnimationController_0()); + _containerShape_01.StartAnimation("Scale", ShapeVisibilityAnimation_01(), AnimationController_0()); + _containerShape_02.StartAnimation("Offset.Y", OffsetYScalarAnimation_207p421_to_m36p579(), AnimationController_0()); + _containerShape_02.StartAnimation("Scale", ShapeVisibilityAnimation_02(), AnimationController_0()); + _containerShape_03.StartAnimation("Offset.Y", OffsetYScalarAnimation_232p421_to_m36p579(), AnimationController_0()); + _containerShape_03.StartAnimation("Scale", ShapeVisibilityAnimation_03(), AnimationController_0()); + _containerShape_04.StartAnimation("Offset.Y", OffsetYScalarAnimation_232p421_to_m34p579(), AnimationController_0()); + _containerShape_04.StartAnimation("Scale", ShapeVisibilityAnimation_04(), AnimationController_0()); + _containerShape_05.StartAnimation("Offset.Y", OffsetYScalarAnimation_232p421_to_m31p579_0(), AnimationController_0()); + _containerShape_05.StartAnimation("Scale", ShapeVisibilityAnimation_05(), AnimationController_0()); + _containerShape_06.StartAnimation("Offset.Y", OffsetYScalarAnimation_232p421_to_m31p579_1(), AnimationController_0()); + _containerShape_06.StartAnimation("Scale", ShapeVisibilityAnimation_06(), AnimationController_0()); + _containerShape_07.StartAnimation("Offset.Y", OffsetYScalarAnimation_232p421_to_113p421(), AnimationController_0()); + _containerShape_07.StartAnimation("Scale", ShapeVisibilityAnimation_07(), AnimationController_0()); + _containerShape_08.StartAnimation("Scale", ShapeVisibilityAnimation_00(), AnimationController_0()); + _containerShape_09.StartAnimation("Offset.Y", OffsetYScalarAnimation_232p421_to_m10p579(), AnimationController_0()); + _containerShape_10.StartAnimation("Offset.Y", OffsetYScalarAnimation_232p632_to_113p632(), AnimationController_0()); + _containerShape_11.StartAnimation("Offset", OffsetVector2Animation_0(), AnimationController_0()); + _containerShape_12.StartAnimation("Offset", OffsetVector2Animation_1(), AnimationController_0()); + _containerShape_13.StartAnimation("Offset", OffsetVector2Animation_2(), AnimationController_0()); + _containerShape_14.StartAnimation("Offset", OffsetVector2Animation_3(), AnimationController_0()); + _containerShape_15.StartAnimation("Offset", OffsetVector2Animation_4(), AnimationController_0()); + _containerShape_16.StartAnimation("Scale", ShapeVisibilityAnimation_08(), AnimationController_0()); + _containerShape_17.StartAnimation("Scale", ShapeVisibilityAnimation_09(), AnimationController_0()); + _containerShape_18.StartAnimation("Scale", ShapeVisibilityAnimation_10(), AnimationController_0()); + _containerShape_19.StartAnimation("Scale", ShapeVisibilityAnimation_11(), AnimationController_0()); + _containerShape_20.StartAnimation("Scale", ScaleVector2Animation_0(), AnimationController_0()); + _containerShape_21.StartAnimation("Scale", ShapeVisibilityAnimation_12(), AnimationController_0()); + _containerShape_22.StartAnimation("Scale", ScaleVector2Animation_1(), AnimationController_0()); + _containerVisual_0.StartAnimation("IsVisible", IsVisibleBooleanAnimation(), AnimationController_0()); + _containerVisual_0.StartAnimation("Opacity", OpacityScalarAnimation_0_to_1(), AnimationController_0()); + _containerVisual_1.StartAnimation("IsVisible", IsVisibleBooleanAnimation(), AnimationController_0()); + _containerVisual_1.StartAnimation("Opacity", OpacityScalarAnimation_0_to_0p033(), AnimationController_0()); + _containerVisual_8.StartAnimation("IsVisible", IsVisibleBooleanAnimation(), AnimationController_0()); + _containerVisual_8.StartAnimation("Opacity", OpacityScalarAnimation_1_to_0_0(), AnimationController_0()); + _containerVisual_9.StartAnimation("Opacity", OpacityScalarAnimation_1_to_0_1(), AnimationController_0()); + _containerVisual_9.StartAnimation("IsVisible", IsVisibleBooleanAnimation(), AnimationController_0()); + _shapeVisual_00.StartAnimation("IsVisible", IsVisibleBooleanAnimation(), AnimationController_0()); + _shapeVisual_01.StartAnimation("IsVisible", IsVisibleBooleanAnimation(), AnimationController_0()); + _shapeVisual_02.StartAnimation("IsVisible", IsVisibleBooleanAnimation(), AnimationController_0()); + _shapeVisual_03.StartAnimation("IsVisible", IsVisibleBooleanAnimation(), AnimationController_0()); + _shapeVisual_04.StartAnimation("IsVisible", IsVisibleBooleanAnimation(), AnimationController_0()); + _shapeVisual_05.StartAnimation("IsVisible", IsVisibleBooleanAnimation(), AnimationController_0()); + _shapeVisual_06.StartAnimation("Opacity", OpacityScalarAnimation_0_to_0(), AnimationController_0()); + _shapeVisual_06.StartAnimation("IsVisible", IsVisibleBooleanAnimation(), AnimationController_0()); + _shapeVisual_08.StartAnimation("IsVisible", IsVisibleBooleanAnimation(), AnimationController_0()); + } + + public void DestroyAnimations() + { + _themeColor_Color_E63B3B_1.Properties.StopAnimation("Opacity0"); + _themeColor_Color_E63B3B_2.Properties.StopAnimation("Opacity0"); + _themeColor_Color_FFFFFF_1.Properties.StopAnimation("Opacity0"); + _themeColor_Color_FFFFFF_2.Properties.StopAnimation("Opacity0"); + _themeColor_Color_FFFFFF_4.Properties.StopAnimation("Opacity0"); + _themeColor_Color_FFFFFF_5.Properties.StopAnimation("Opacity0"); + _themeColor_Color_FFFFFF_6.Properties.StopAnimation("Opacity0"); + _themeColor_Color_FFFFFF_7.Properties.StopAnimation("Opacity0"); + _themeColor_Color_FFFFFF_8.Properties.StopAnimation("Opacity0"); + _themeColor_Color_FFFFFF_9.Properties.StopAnimation("Opacity0"); + _containerShape_00.StopAnimation("Offset.Y"); + _containerShape_00.StopAnimation("Scale"); + _containerShape_01.StopAnimation("Offset.Y"); + _containerShape_01.StopAnimation("Scale"); + _containerShape_02.StopAnimation("Offset.Y"); + _containerShape_02.StopAnimation("Scale"); + _containerShape_03.StopAnimation("Offset.Y"); + _containerShape_03.StopAnimation("Scale"); + _containerShape_04.StopAnimation("Offset.Y"); + _containerShape_04.StopAnimation("Scale"); + _containerShape_05.StopAnimation("Offset.Y"); + _containerShape_05.StopAnimation("Scale"); + _containerShape_06.StopAnimation("Offset.Y"); + _containerShape_06.StopAnimation("Scale"); + _containerShape_07.StopAnimation("Offset.Y"); + _containerShape_07.StopAnimation("Scale"); + _containerShape_08.StopAnimation("Scale"); + _containerShape_09.StopAnimation("Offset.Y"); + _containerShape_10.StopAnimation("Offset.Y"); + _containerShape_11.StopAnimation("Offset"); + _containerShape_12.StopAnimation("Offset"); + _containerShape_13.StopAnimation("Offset"); + _containerShape_14.StopAnimation("Offset"); + _containerShape_15.StopAnimation("Offset"); + _containerShape_16.StopAnimation("Scale"); + _containerShape_17.StopAnimation("Scale"); + _containerShape_18.StopAnimation("Scale"); + _containerShape_19.StopAnimation("Scale"); + _containerShape_20.StopAnimation("Scale"); + _containerShape_21.StopAnimation("Scale"); + _containerShape_22.StopAnimation("Scale"); + _containerVisual_0.StopAnimation("IsVisible"); + _containerVisual_0.StopAnimation("Opacity"); + _containerVisual_1.StopAnimation("IsVisible"); + _containerVisual_1.StopAnimation("Opacity"); + _containerVisual_8.StopAnimation("IsVisible"); + _containerVisual_8.StopAnimation("Opacity"); + _containerVisual_9.StopAnimation("Opacity"); + _containerVisual_9.StopAnimation("IsVisible"); + _shapeVisual_00.StopAnimation("IsVisible"); + _shapeVisual_01.StopAnimation("IsVisible"); + _shapeVisual_02.StopAnimation("IsVisible"); + _shapeVisual_03.StopAnimation("IsVisible"); + _shapeVisual_04.StopAnimation("IsVisible"); + _shapeVisual_05.StopAnimation("IsVisible"); + _shapeVisual_06.StopAnimation("Opacity"); + _shapeVisual_06.StopAnimation("IsVisible"); + _shapeVisual_08.StopAnimation("IsVisible"); + } + + } + } +} diff --git a/CollapseLauncher/Classes/AnimatedVisuals/Lottie/TempResetIndonesiaTaglineCrisis.json b/CollapseLauncher/Classes/AnimatedVisuals/Lottie/TempResetIndonesiaTaglineCrisis.json new file mode 100644 index 000000000..21e00f274 --- /dev/null +++ b/CollapseLauncher/Classes/AnimatedVisuals/Lottie/TempResetIndonesiaTaglineCrisis.json @@ -0,0 +1 @@ +{"v":"5.12.2","fr":60,"ip":0,"op":4800,"w":1920,"h":1080,"nm":"CrisisIntro","ddd":0,"assets":[{"id":"comp_0","nm":"Comp 1","fr":60,"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Pre-comp 2","refId":"comp_1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":330,"s":[100]},{"t":360,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2,"l":2},"a":{"a":0,"k":[960,600.5,0],"ix":1,"l":2},"s":{"a":0,"k":[106,106,100],"ix":6,"l":2}},"ao":0,"w":1920,"h":1201,"ip":0,"op":450,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Under MIT License - All Rights Reserved Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":120,"s":[100]},{"t":150,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[115.5,129.5,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.96,0.56],[-0.56,0.96],[0,1.216],[0,0],[0,0],[0,0],[0.36,-0.64],[0.616,-0.352],[0.8,0],[0.632,0.352],[0.368,0.64],[0,0.88],[0,0],[0,0],[0,0],[-0.568,-0.968],[-0.976,-0.56],[-1.232,0]],"o":[[0.96,-0.56],[0.56,-0.96],[0,0],[0,0],[0,0],[0,0.864],[-0.36,0.64],[-0.616,0.352],[-0.8,0],[-0.632,-0.352],[-0.368,-0.64],[0,0],[0,0],[0,0],[0,1.216],[0.568,0.968],[0.976,0.56],[1.232,0]],"v":[[11.52,-0.6],[13.8,-2.88],[14.64,-6.144],[14.64,-16.656],[12.36,-16.656],[12.36,-6.192],[11.82,-3.936],[10.356,-2.448],[8.232,-1.92],[6.084,-2.448],[4.584,-3.936],[4.032,-6.216],[4.032,-16.656],[1.752,-16.656],[1.752,-6.168],[2.604,-2.892],[4.92,-0.6],[8.232,0.24]],"c":true},"ix":2},"nm":"U","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"U","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.696],[0.664,0.432],[0.864,0],[0.688,-0.392],[0.384,-0.672],[0,-0.864],[0,0],[-0.256,0.448],[-0.448,0.256],[-0.576,0],[-0.536,-0.56],[0,-0.864],[0,0]],"o":[[0,0],[0,-0.784],[-0.384,-0.696],[-0.664,-0.432],[-0.864,0],[-0.688,0.392],[-0.384,0.672],[0,0],[0,-0.576],[0.256,-0.448],[0.448,-0.256],[0.864,0],[0.536,0.56],[0,0],[0,0]],"v":[[28.2,0],[28.2,-7.08],[27.624,-9.3],[26.052,-10.992],[23.76,-11.64],[21.432,-11.052],[19.824,-9.456],[19.248,-7.152],[20.136,-6.648],[20.52,-8.184],[21.576,-9.24],[23.112,-9.624],[25.212,-8.784],[26.016,-6.648],[26.016,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20.136,0],[20.136,-11.4],[17.976,-11.4],[17.976,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.688,0.36],[-0.416,0.64],[-0.048,0.816],[0,0],[0.424,0.632],[0.688,0.36],[0.864,0],[0.832,-0.528],[0.488,-0.896],[0,-1.12],[-0.488,-0.896],[-0.832,-0.52],[-1.04,0]],"o":[[0.688,-0.36],[0.416,-0.64],[0,0],[-0.048,-0.832],[-0.424,-0.632],[-0.688,-0.36],[-1.04,0],[-0.832,0.528],[-0.488,0.896],[0,1.12],[0.488,0.896],[0.832,0.52],[0.88,0]],"v":[[38.28,-0.3],[39.936,-1.8],[40.632,-3.984],[40.632,-7.416],[39.924,-9.612],[38.256,-11.1],[35.928,-11.64],[33.12,-10.848],[31.14,-8.712],[30.408,-5.688],[31.14,-2.664],[33.12,-0.54],[35.928,0.24]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.552,0.328],[0.312,0.592],[0,0.768],[-0.312,0.584],[-0.544,0.328],[-0.72,0],[-0.544,-0.336],[-0.304,-0.584],[0,-0.768],[0.304,-0.584],[0.544,-0.336],[0.72,0]],"o":[[-0.552,-0.328],[-0.312,-0.592],[0,-0.768],[0.312,-0.584],[0.544,-0.328],[0.72,0],[0.544,0.336],[0.304,0.584],[0,0.752],[-0.304,0.584],[-0.544,0.336],[-0.704,0]],"v":[[34.404,-2.292],[33.108,-3.672],[32.64,-5.712],[33.108,-7.74],[34.392,-9.108],[36.288,-9.6],[38.184,-9.096],[39.456,-7.716],[39.912,-5.688],[39.456,-3.684],[38.184,-2.304],[36.288,-1.8]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[41.952,-17.136],[39.768,-17.136],[39.768,-8.616],[40.176,-5.856],[39.768,-3.072],[39.768,0],[41.952,0]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.784,0.336],[-0.56,0.64],[0,0],[0.536,-0.224],[0.64,0],[0.592,0.328],[0.32,0.6],[0,0.8],[-0.304,0.576],[-0.56,0.32],[-0.736,0],[-0.496,-0.296],[-0.272,-0.536],[0,-0.768],[0,0],[0,0],[0,0],[0,0],[-0.016,0.184],[0,0.16],[0.456,0.848],[0.816,0.48],[1.04,0],[0.888,-0.52],[0.52,-0.896],[0,-1.12],[-0.528,-0.896],[-0.904,-0.52],[-1.152,0]],"o":[[0.784,-0.336],[0,0],[-0.384,0.448],[-0.536,0.224],[-0.768,0],[-0.592,-0.328],[-0.32,-0.6],[0,-0.784],[0.304,-0.576],[0.56,-0.32],[0.704,0],[0.496,0.296],[0.272,0.536],[0,0],[0,0],[0,0],[0,0],[0.048,-0.224],[0.016,-0.184],[0,-1.088],[-0.456,-0.848],[-0.816,-0.48],[-1.104,0],[-0.888,0.52],[-0.52,0.896],[0,1.136],[0.528,0.896],[0.904,0.52],[0.896,0]],"v":[[52.896,-0.264],[54.912,-1.728],[53.52,-3.144],[52.14,-2.136],[50.376,-1.8],[48.336,-2.292],[46.968,-3.684],[46.488,-5.784],[46.944,-7.824],[48.24,-9.168],[50.184,-9.648],[51.984,-9.204],[53.136,-7.956],[53.544,-6],[54.336,-6.696],[45.864,-6.696],[45.864,-4.896],[55.488,-4.896],[55.584,-5.508],[55.608,-6.024],[54.924,-8.928],[53.016,-10.92],[50.232,-11.64],[47.244,-10.86],[45.132,-8.736],[44.352,-5.712],[45.144,-2.664],[47.292,-0.54],[50.376,0.24]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[60.12,0],[60.12,-11.4],[57.96,-11.4],[57.96,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.512,0.512],[-0.8,0],[-0.288,-0.112],[-0.24,-0.256],[0,0],[0.464,0.2],[0.576,0],[0.672,-0.864],[0,-1.456],[0,0]],"o":[[0.512,-0.512],[0.384,0],[0.288,0.112],[0,0],[-0.4,-0.464],[-0.464,-0.2],[-1.264,0],[-0.672,0.864],[0,0],[0,-1.056]],"v":[[60.888,-8.832],[62.856,-9.6],[63.864,-9.432],[64.656,-8.88],[66.072,-10.344],[64.776,-11.34],[63.216,-11.64],[60.312,-10.344],[59.304,-6.864],[60.12,-6.48]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[75.624,0],[75.624,-12.696],[75.12,-12.552],[80.664,-3.408],[82.272,-3.408],[87.816,-12.552],[87.312,-12.696],[87.312,0],[89.568,0],[89.568,-16.656],[87.984,-16.656],[80.928,-5.064],[82.008,-5.064],[74.952,-16.656],[73.368,-16.656],[73.368,0]],"c":true},"ix":2},"nm":"M","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"M","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[95.76,0],[95.76,-16.656],[93.504,-16.656],[93.504,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[106.368,0],[106.368,-16.176],[104.088,-16.176],[104.088,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[112.008,-14.592],[112.008,-16.656],[98.448,-16.656],[98.448,-14.592]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[121.536,0],[121.536,-16.656],[119.28,-16.656],[119.28,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[129.744,0],[129.744,-2.064],[120.816,-2.064],[120.816,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[134.328,0],[134.328,-11.4],[132.144,-11.4],[132.144,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.256,0.264],[0,0.4],[0.256,0.264],[0.4,0],[0.256,-0.264],[0,-0.384],[-0.256,-0.264],[-0.4,0]],"o":[[0.256,-0.264],[0,-0.384],[-0.256,-0.264],[-0.4,0],[-0.256,0.264],[0,0.4],[0.256,0.264],[0.4,0]],"v":[[134.232,-14.076],[134.616,-15.072],[134.232,-16.044],[133.248,-16.44],[132.264,-16.044],[131.88,-15.072],[132.264,-14.076],[133.248,-13.68]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,0.336],[-0.528,0.608],[0,0],[0.504,-0.216],[0.608,0],[0.56,0.336],[0.32,0.576],[0,0.752],[-0.32,0.576],[-0.56,0.328],[-0.72,0],[-0.512,-0.216],[-0.352,-0.416],[0,0],[0.752,0.328],[0.88,0],[0.904,-0.52],[0.52,-0.896],[0,-1.12],[-0.52,-0.904],[-0.904,-0.528],[-1.12,0]],"o":[[0.76,-0.336],[0,0],[-0.368,0.416],[-0.504,0.216],[-0.72,0],[-0.56,-0.336],[-0.32,-0.576],[0,-0.752],[0.32,-0.576],[0.56,-0.328],[0.592,0],[0.512,0.216],[0,0],[-0.544,-0.624],[-0.752,-0.328],[-1.12,0],[-0.904,0.52],[-0.52,0.896],[0,1.104],[0.52,0.904],[0.904,0.528],[0.88,0]],"v":[[145.188,-0.264],[147.12,-1.68],[145.704,-3.12],[144.396,-2.172],[142.728,-1.848],[140.808,-2.352],[139.488,-3.72],[139.008,-5.712],[139.488,-7.704],[140.808,-9.06],[142.728,-9.552],[144.384,-9.228],[145.68,-8.28],[147.12,-9.72],[145.176,-11.148],[142.728,-11.64],[139.692,-10.86],[137.556,-8.736],[136.776,-5.712],[137.556,-2.7],[139.692,-0.552],[142.728,0.24]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.784,0.336],[-0.56,0.64],[0,0],[0.536,-0.224],[0.64,0],[0.592,0.328],[0.32,0.6],[0,0.8],[-0.304,0.576],[-0.56,0.32],[-0.736,0],[-0.496,-0.296],[-0.272,-0.536],[0,-0.768],[0,0],[0,0],[0,0],[0,0],[-0.016,0.184],[0,0.16],[0.456,0.848],[0.816,0.48],[1.04,0],[0.888,-0.52],[0.52,-0.896],[0,-1.12],[-0.528,-0.896],[-0.904,-0.52],[-1.152,0]],"o":[[0.784,-0.336],[0,0],[-0.384,0.448],[-0.536,0.224],[-0.768,0],[-0.592,-0.328],[-0.32,-0.6],[0,-0.784],[0.304,-0.576],[0.56,-0.32],[0.704,0],[0.496,0.296],[0.272,0.536],[0,0],[0,0],[0,0],[0,0],[0.048,-0.224],[0.016,-0.184],[0,-1.088],[-0.456,-0.848],[-0.816,-0.48],[-1.104,0],[-0.888,0.52],[-0.52,0.896],[0,1.136],[0.528,0.896],[0.904,0.52],[0.896,0]],"v":[[156.84,-0.264],[158.856,-1.728],[157.464,-3.144],[156.084,-2.136],[154.32,-1.8],[152.28,-2.292],[150.912,-3.684],[150.432,-5.784],[150.888,-7.824],[152.184,-9.168],[154.128,-9.648],[155.928,-9.204],[157.08,-7.956],[157.488,-6],[158.28,-6.696],[149.808,-6.696],[149.808,-4.896],[159.432,-4.896],[159.528,-5.508],[159.552,-6.024],[158.868,-8.928],[156.96,-10.92],[154.176,-11.64],[151.188,-10.86],[149.076,-8.736],[148.296,-5.712],[149.088,-2.664],[151.236,-0.54],[154.32,0.24]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.696],[0.664,0.432],[0.864,0],[0.688,-0.392],[0.384,-0.672],[0,-0.864],[0,0],[-0.256,0.448],[-0.448,0.256],[-0.576,0],[-0.536,-0.56],[0,-0.864],[0,0]],"o":[[0,0],[0,-0.784],[-0.384,-0.696],[-0.664,-0.432],[-0.864,0],[-0.688,0.392],[-0.384,0.672],[0,0],[0,-0.576],[0.256,-0.448],[0.448,-0.256],[0.864,0],[0.536,0.56],[0,0],[0,0]],"v":[[172.128,0],[172.128,-7.08],[171.552,-9.3],[169.98,-10.992],[167.688,-11.64],[165.36,-11.052],[163.752,-9.456],[163.176,-7.152],[164.064,-6.648],[164.448,-8.184],[165.504,-9.24],[167.04,-9.624],[169.14,-8.784],[169.944,-6.648],[169.944,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[164.064,0],[164.064,-11.4],[161.904,-11.4],[161.904,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,0.624],[0,1.072],[0.296,0.432],[0.464,0.256],[0.512,0.152],[0.472,0.144],[0.288,0.208],[0,0.384],[-0.328,0.224],[-0.624,0],[-0.464,-0.224],[-0.336,-0.416],[0,0],[0.696,0.312],[0.896,0],[0.608,-0.272],[0.328,-0.504],[0,-0.688],[-0.296,-0.424],[-0.464,-0.24],[-0.52,-0.144],[-0.464,-0.152],[-0.296,-0.232],[0,-0.416],[0.368,-0.232],[0.672,0],[0.544,0.248],[0.416,0.512],[0,0],[-0.472,-0.312],[-0.576,-0.168],[-0.64,0]],"o":[[0.76,-0.624],[0,-0.704],[-0.296,-0.432],[-0.464,-0.256],[-0.512,-0.152],[-0.472,-0.144],[-0.288,-0.208],[0,-0.368],[0.328,-0.224],[0.592,0],[0.464,0.224],[0,0],[-0.448,-0.624],[-0.696,-0.312],[-0.848,0],[-0.608,0.272],[-0.328,0.504],[0,0.688],[0.296,0.424],[0.464,0.24],[0.52,0.144],[0.464,0.152],[0.296,0.232],[0,0.416],[-0.368,0.232],[-0.672,0],[-0.544,-0.248],[0,0],[0.352,0.432],[0.472,0.312],[0.576,0.168],[1.28,0]],"v":[[181.74,-0.696],[182.88,-3.24],[182.436,-4.944],[181.296,-5.976],[179.832,-6.588],[178.356,-7.032],[177.216,-7.56],[176.784,-8.448],[177.276,-9.336],[178.704,-9.672],[180.288,-9.336],[181.488,-8.376],[182.88,-9.768],[181.164,-11.172],[178.776,-11.64],[176.592,-11.232],[175.188,-10.068],[174.696,-8.28],[175.14,-6.612],[176.28,-5.616],[177.756,-5.04],[179.232,-4.596],[180.372,-4.02],[180.816,-3.048],[180.264,-2.076],[178.704,-1.728],[176.88,-2.1],[175.44,-3.24],[174.048,-1.848],[175.284,-0.732],[176.856,-0.012],[178.68,0.24]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.784,0.336],[-0.56,0.64],[0,0],[0.536,-0.224],[0.64,0],[0.592,0.328],[0.32,0.6],[0,0.8],[-0.304,0.576],[-0.56,0.32],[-0.736,0],[-0.496,-0.296],[-0.272,-0.536],[0,-0.768],[0,0],[0,0],[0,0],[0,0],[-0.016,0.184],[0,0.16],[0.456,0.848],[0.816,0.48],[1.04,0],[0.888,-0.52],[0.52,-0.896],[0,-1.12],[-0.528,-0.896],[-0.904,-0.52],[-1.152,0]],"o":[[0.784,-0.336],[0,0],[-0.384,0.448],[-0.536,0.224],[-0.768,0],[-0.592,-0.328],[-0.32,-0.6],[0,-0.784],[0.304,-0.576],[0.56,-0.32],[0.704,0],[0.496,0.296],[0.272,0.536],[0,0],[0,0],[0,0],[0,0],[0.048,-0.224],[0.016,-0.184],[0,-1.088],[-0.456,-0.848],[-0.816,-0.48],[-1.104,0],[-0.888,0.52],[-0.52,0.896],[0,1.136],[0.528,0.896],[0.904,0.52],[0.896,0]],"v":[[193.104,-0.264],[195.12,-1.728],[193.728,-3.144],[192.348,-2.136],[190.584,-1.8],[188.544,-2.292],[187.176,-3.684],[186.696,-5.784],[187.152,-7.824],[188.448,-9.168],[190.392,-9.648],[192.192,-9.204],[193.344,-7.956],[193.752,-6],[194.544,-6.696],[186.072,-6.696],[186.072,-4.896],[195.696,-4.896],[195.792,-5.508],[195.816,-6.024],[195.132,-8.928],[193.224,-10.92],[190.44,-11.64],[187.452,-10.86],[185.34,-8.736],[184.56,-5.712],[185.352,-2.664],[187.5,-0.54],[190.584,0.24]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[211.032,-5.064],[211.032,-7.128],[203.136,-7.128],[203.136,-5.064]],"c":true},"ix":2},"nm":"-","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"-","np":3,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[220.056,0],[225.696,-14.088],[224.832,-14.088],[230.448,0],[232.896,0],[226.104,-16.656],[224.472,-16.656],[217.632,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[229.656,-3.768],[229.656,-5.736],[220.896,-5.736],[220.896,-3.768]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[237.36,0],[237.36,-17.136],[235.2,-17.136],[235.2,0]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[242.688,0],[242.688,-17.136],[240.528,-17.136],[240.528,0]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.784,0.392],[-0.424,0.704],[0,0.944],[0.424,0.704],[0.784,0.408],[1.056,0],[0,0],[0,0],[0,0],[-0.52,-0.528],[0,-0.8],[0.52,-0.496],[0.976,0],[0,0],[0,0]],"o":[[1.056,0],[0.784,-0.392],[0.424,-0.704],[0,-0.912],[-0.424,-0.704],[-0.784,-0.408],[0,0],[0,0],[0,0],[0.96,0],[0.52,0.528],[0,0.848],[-0.52,0.496],[0,0],[0,0],[0,0]],"v":[[257.328,-7.248],[260.088,-7.836],[261.9,-9.48],[262.536,-11.952],[261.9,-14.376],[260.088,-16.044],[257.328,-16.656],[252.72,-16.656],[252.72,-14.688],[257.256,-14.688],[259.476,-13.896],[260.256,-11.904],[259.476,-9.888],[257.232,-9.144],[252.72,-9.144],[252.72,-7.248]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[253.464,0],[253.464,-16.656],[251.208,-16.656],[251.208,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[263.664,0],[256.896,-8.208],[254.76,-7.464],[260.808,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[268.128,0],[268.128,-11.4],[265.944,-11.4],[265.944,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.256,0.264],[0,0.4],[0.256,0.264],[0.4,0],[0.256,-0.264],[0,-0.384],[-0.256,-0.264],[-0.4,0]],"o":[[0.256,-0.264],[0,-0.384],[-0.256,-0.264],[-0.4,0],[-0.256,0.264],[0,0.4],[0.256,0.264],[0.4,0]],"v":[[268.032,-14.076],[268.416,-15.072],[268.032,-16.044],[267.048,-16.44],[266.064,-16.044],[265.68,-15.072],[266.064,-14.076],[267.048,-13.68]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.904,0.456],[-0.504,0.824],[0,1.088],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.688,-0.616],[1.152,0],[0.64,0.312],[0.464,0.592],[0,0],[-0.896,-0.432],[-1.184,0]],"o":[[0.904,-0.456],[0.504,-0.824],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.04],[-0.688,0.616],[-0.88,0],[-0.64,-0.312],[0,0],[0.56,0.784],[0.896,0.432],[1.184,0]],"v":[[279.18,4.332],[281.292,2.412],[282.048,-0.456],[282.048,-11.4],[279.888,-11.4],[279.888,-8.4],[280.272,-5.856],[279.888,-3.288],[279.888,-0.456],[278.856,2.028],[276.096,2.952],[273.816,2.484],[272.16,1.128],[270.744,2.544],[272.928,4.368],[276.048,5.016]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.688,0.352],[-0.408,0.632],[-0.048,0.832],[0,0],[0.4,0.632],[0.696,0.352],[0.896,0],[0.832,-0.504],[0.472,-0.856],[0,-1.088],[-0.48,-0.872],[-0.824,-0.496],[-1.04,0]],"o":[[0.688,-0.352],[0.408,-0.632],[0,0],[-0.048,-0.848],[-0.4,-0.632],[-0.696,-0.352],[-1.024,0],[-0.832,0.504],[-0.472,0.856],[0,1.088],[0.48,0.872],[0.824,0.496],[0.88,0]],"v":[[278.4,-0.72],[280.044,-2.196],[280.728,-4.392],[280.728,-7.416],[280.056,-9.636],[278.412,-11.112],[276.024,-11.64],[273.24,-10.884],[271.284,-8.844],[270.576,-5.928],[271.296,-2.988],[273.252,-0.936],[276.048,-0.192]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.552,0.312],[0.312,0.56],[0,0.72],[-0.312,0.552],[-0.544,0.312],[-0.72,0],[-0.536,-0.312],[-0.296,-0.552],[0,-0.736],[0.296,-0.552],[0.528,-0.304],[0.72,0]],"o":[[-0.552,-0.312],[-0.312,-0.56],[0,-0.72],[0.312,-0.552],[0.544,-0.312],[0.704,0],[0.536,0.312],[0.296,0.552],[0,0.736],[-0.296,0.552],[-0.528,0.304],[-0.704,0]],"v":[[274.572,-2.7],[273.276,-4.008],[272.808,-5.928],[273.276,-7.836],[274.56,-9.132],[276.456,-9.6],[278.316,-9.132],[279.564,-7.836],[280.008,-5.904],[279.564,-3.972],[278.328,-2.688],[276.456,-2.232]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.688],[0.664,0.384],[0.864,0],[0.688,-0.392],[0.384,-0.672],[0,-0.864],[0,0],[-0.256,0.448],[-0.448,0.256],[-0.576,0],[-0.536,-0.56],[0,-0.864],[0,0]],"o":[[0,0],[0,-0.896],[-0.384,-0.688],[-0.664,-0.384],[-0.864,0],[-0.688,0.392],[-0.384,0.672],[0,0],[0,-0.576],[0.256,-0.448],[0.448,-0.256],[0.864,0],[0.536,0.56],[0,0],[0,0]],"v":[[295.416,0],[295.416,-7.08],[294.84,-9.456],[293.268,-11.064],[290.976,-11.64],[288.648,-11.052],[287.04,-9.456],[286.464,-7.152],[287.352,-6.648],[287.736,-8.184],[288.792,-9.24],[290.328,-9.624],[292.428,-8.784],[293.232,-6.648],[293.232,0]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[287.352,0],[287.352,-17.136],[285.192,-17.136],[285.192,0]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[302.112,0],[302.112,-16.176],[299.952,-16.176],[299.952,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[304.92,-9.432],[304.92,-11.4],[297.144,-11.4],[297.144,-9.432]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,0.624],[0,1.072],[0.296,0.432],[0.464,0.256],[0.512,0.152],[0.472,0.144],[0.288,0.208],[0,0.384],[-0.328,0.224],[-0.624,0],[-0.464,-0.224],[-0.336,-0.416],[0,0],[0.696,0.312],[0.896,0],[0.608,-0.272],[0.328,-0.504],[0,-0.688],[-0.296,-0.424],[-0.464,-0.24],[-0.52,-0.144],[-0.464,-0.152],[-0.296,-0.232],[0,-0.416],[0.368,-0.232],[0.672,0],[0.544,0.248],[0.416,0.512],[0,0],[-0.472,-0.312],[-0.576,-0.168],[-0.64,0]],"o":[[0.76,-0.624],[0,-0.704],[-0.296,-0.432],[-0.464,-0.256],[-0.512,-0.152],[-0.472,-0.144],[-0.288,-0.208],[0,-0.368],[0.328,-0.224],[0.592,0],[0.464,0.224],[0,0],[-0.448,-0.624],[-0.696,-0.312],[-0.848,0],[-0.608,0.272],[-0.328,0.504],[0,0.688],[0.296,0.424],[0.464,0.24],[0.52,0.144],[0.464,0.152],[0.296,0.232],[0,0.416],[-0.368,0.232],[-0.672,0],[-0.544,-0.248],[0,0],[0.352,0.432],[0.472,0.312],[0.576,0.168],[1.28,0]],"v":[[313.476,-0.696],[314.616,-3.24],[314.172,-4.944],[313.032,-5.976],[311.568,-6.588],[310.092,-7.032],[308.952,-7.56],[308.52,-8.448],[309.012,-9.336],[310.44,-9.672],[312.024,-9.336],[313.224,-8.376],[314.616,-9.768],[312.9,-11.172],[310.512,-11.64],[308.328,-11.232],[306.924,-10.068],[306.432,-8.28],[306.876,-6.612],[308.016,-5.616],[309.492,-5.04],[310.968,-4.596],[312.108,-4.02],[312.552,-3.048],[312,-2.076],[310.44,-1.728],[308.616,-2.1],[307.176,-3.24],[305.784,-1.848],[307.02,-0.732],[308.592,-0.012],[310.416,0.24]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.784,0.392],[-0.424,0.704],[0,0.944],[0.424,0.704],[0.784,0.408],[1.056,0],[0,0],[0,0],[0,0],[-0.52,-0.528],[0,-0.8],[0.52,-0.496],[0.976,0],[0,0],[0,0]],"o":[[1.056,0],[0.784,-0.392],[0.424,-0.704],[0,-0.912],[-0.424,-0.704],[-0.784,-0.408],[0,0],[0,0],[0,0],[0.96,0],[0.52,0.528],[0,0.848],[-0.52,0.496],[0,0],[0,0],[0,0]],"v":[[328.512,-7.248],[331.272,-7.836],[333.084,-9.48],[333.72,-11.952],[333.084,-14.376],[331.272,-16.044],[328.512,-16.656],[323.904,-16.656],[323.904,-14.688],[328.44,-14.688],[330.66,-13.896],[331.44,-11.904],[330.66,-9.888],[328.416,-9.144],[323.904,-9.144],[323.904,-7.248]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[324.648,0],[324.648,-16.656],[322.392,-16.656],[322.392,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[334.848,0],[328.08,-8.208],[325.944,-7.464],[331.992,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.784,0.336],[-0.56,0.64],[0,0],[0.536,-0.224],[0.64,0],[0.592,0.328],[0.32,0.6],[0,0.8],[-0.304,0.576],[-0.56,0.32],[-0.736,0],[-0.496,-0.296],[-0.272,-0.536],[0,-0.768],[0,0],[0,0],[0,0],[0,0],[-0.016,0.184],[0,0.16],[0.456,0.848],[0.816,0.48],[1.04,0],[0.888,-0.52],[0.52,-0.896],[0,-1.12],[-0.528,-0.896],[-0.904,-0.52],[-1.152,0]],"o":[[0.784,-0.336],[0,0],[-0.384,0.448],[-0.536,0.224],[-0.768,0],[-0.592,-0.328],[-0.32,-0.6],[0,-0.784],[0.304,-0.576],[0.56,-0.32],[0.704,0],[0.496,0.296],[0.272,0.536],[0,0],[0,0],[0,0],[0,0],[0.048,-0.224],[0.016,-0.184],[0,-1.088],[-0.456,-0.848],[-0.816,-0.48],[-1.104,0],[-0.888,0.52],[-0.52,0.896],[0,1.136],[0.528,0.896],[0.904,0.52],[0.896,0]],"v":[[344.232,-0.264],[346.248,-1.728],[344.856,-3.144],[343.476,-2.136],[341.712,-1.8],[339.672,-2.292],[338.304,-3.684],[337.824,-5.784],[338.28,-7.824],[339.576,-9.168],[341.52,-9.648],[343.32,-9.204],[344.472,-7.956],[344.88,-6],[345.672,-6.696],[337.2,-6.696],[337.2,-4.896],[346.824,-4.896],[346.92,-5.508],[346.944,-6.024],[346.26,-8.928],[344.352,-10.92],[341.568,-11.64],[338.58,-10.86],[336.468,-8.736],[335.688,-5.712],[336.48,-2.664],[338.628,-0.54],[341.712,0.24]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,0.624],[0,1.072],[0.296,0.432],[0.464,0.256],[0.512,0.152],[0.472,0.144],[0.288,0.208],[0,0.384],[-0.328,0.224],[-0.624,0],[-0.464,-0.224],[-0.336,-0.416],[0,0],[0.696,0.312],[0.896,0],[0.608,-0.272],[0.328,-0.504],[0,-0.688],[-0.296,-0.424],[-0.464,-0.24],[-0.52,-0.144],[-0.464,-0.152],[-0.296,-0.232],[0,-0.416],[0.368,-0.232],[0.672,0],[0.544,0.248],[0.416,0.512],[0,0],[-0.472,-0.312],[-0.576,-0.168],[-0.64,0]],"o":[[0.76,-0.624],[0,-0.704],[-0.296,-0.432],[-0.464,-0.256],[-0.512,-0.152],[-0.472,-0.144],[-0.288,-0.208],[0,-0.368],[0.328,-0.224],[0.592,0],[0.464,0.224],[0,0],[-0.448,-0.624],[-0.696,-0.312],[-0.848,0],[-0.608,0.272],[-0.328,0.504],[0,0.688],[0.296,0.424],[0.464,0.24],[0.52,0.144],[0.464,0.152],[0.296,0.232],[0,0.416],[-0.368,0.232],[-0.672,0],[-0.544,-0.248],[0,0],[0.352,0.432],[0.472,0.312],[0.576,0.168],[1.28,0]],"v":[[355.98,-0.696],[357.12,-3.24],[356.676,-4.944],[355.536,-5.976],[354.072,-6.588],[352.596,-7.032],[351.456,-7.56],[351.024,-8.448],[351.516,-9.336],[352.944,-9.672],[354.528,-9.336],[355.728,-8.376],[357.12,-9.768],[355.404,-11.172],[353.016,-11.64],[350.832,-11.232],[349.428,-10.068],[348.936,-8.28],[349.38,-6.612],[350.52,-5.616],[351.996,-5.04],[353.472,-4.596],[354.612,-4.02],[355.056,-3.048],[354.504,-2.076],[352.944,-1.728],[351.12,-2.1],[349.68,-3.24],[348.288,-1.848],[349.524,-0.732],[351.096,-0.012],[352.92,0.24]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.784,0.336],[-0.56,0.64],[0,0],[0.536,-0.224],[0.64,0],[0.592,0.328],[0.32,0.6],[0,0.8],[-0.304,0.576],[-0.56,0.32],[-0.736,0],[-0.496,-0.296],[-0.272,-0.536],[0,-0.768],[0,0],[0,0],[0,0],[0,0],[-0.016,0.184],[0,0.16],[0.456,0.848],[0.816,0.48],[1.04,0],[0.888,-0.52],[0.52,-0.896],[0,-1.12],[-0.528,-0.896],[-0.904,-0.52],[-1.152,0]],"o":[[0.784,-0.336],[0,0],[-0.384,0.448],[-0.536,0.224],[-0.768,0],[-0.592,-0.328],[-0.32,-0.6],[0,-0.784],[0.304,-0.576],[0.56,-0.32],[0.704,0],[0.496,0.296],[0.272,0.536],[0,0],[0,0],[0,0],[0,0],[0.048,-0.224],[0.016,-0.184],[0,-1.088],[-0.456,-0.848],[-0.816,-0.48],[-1.104,0],[-0.888,0.52],[-0.52,0.896],[0,1.136],[0.528,0.896],[0.904,0.52],[0.896,0]],"v":[[367.344,-0.264],[369.36,-1.728],[367.968,-3.144],[366.588,-2.136],[364.824,-1.8],[362.784,-2.292],[361.416,-3.684],[360.936,-5.784],[361.392,-7.824],[362.688,-9.168],[364.632,-9.648],[366.432,-9.204],[367.584,-7.956],[367.992,-6],[368.784,-6.696],[360.312,-6.696],[360.312,-4.896],[369.936,-4.896],[370.032,-5.508],[370.056,-6.024],[369.372,-8.928],[367.464,-10.92],[364.68,-11.64],[361.692,-10.86],[359.58,-8.736],[358.8,-5.712],[359.592,-2.664],[361.74,-0.54],[364.824,0.24]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[374.568,0],[374.568,-11.4],[372.408,-11.4],[372.408,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.512,0.512],[-0.8,0],[-0.288,-0.112],[-0.24,-0.256],[0,0],[0.464,0.2],[0.576,0],[0.672,-0.864],[0,-1.456],[0,0]],"o":[[0.512,-0.512],[0.384,0],[0.288,0.112],[0,0],[-0.4,-0.464],[-0.464,-0.2],[-1.264,0],[-0.672,0.864],[0,0],[0,-1.056]],"v":[[375.336,-8.832],[377.304,-9.6],[378.312,-9.432],[379.104,-8.88],[380.52,-10.344],[379.224,-11.34],[377.664,-11.64],[374.76,-10.344],[373.752,-6.864],[374.568,-6.48]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[387.024,0],[392.256,-11.4],[389.952,-11.4],[385.728,-1.776],[387.12,-1.776],[382.92,-11.4],[380.52,-11.4],[385.752,0]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.784,0.336],[-0.56,0.64],[0,0],[0.536,-0.224],[0.64,0],[0.592,0.328],[0.32,0.6],[0,0.8],[-0.304,0.576],[-0.56,0.32],[-0.736,0],[-0.496,-0.296],[-0.272,-0.536],[0,-0.768],[0,0],[0,0],[0,0],[0,0],[-0.016,0.184],[0,0.16],[0.456,0.848],[0.816,0.48],[1.04,0],[0.888,-0.52],[0.52,-0.896],[0,-1.12],[-0.528,-0.896],[-0.904,-0.52],[-1.152,0]],"o":[[0.784,-0.336],[0,0],[-0.384,0.448],[-0.536,0.224],[-0.768,0],[-0.592,-0.328],[-0.32,-0.6],[0,-0.784],[0.304,-0.576],[0.56,-0.32],[0.704,0],[0.496,0.296],[0.272,0.536],[0,0],[0,0],[0,0],[0,0],[0.048,-0.224],[0.016,-0.184],[0,-1.088],[-0.456,-0.848],[-0.816,-0.48],[-1.104,0],[-0.888,0.52],[-0.52,0.896],[0,1.136],[0.528,0.896],[0.904,0.52],[0.896,0]],"v":[[401.472,-0.264],[403.488,-1.728],[402.096,-3.144],[400.716,-2.136],[398.952,-1.8],[396.912,-2.292],[395.544,-3.684],[395.064,-5.784],[395.52,-7.824],[396.816,-9.168],[398.76,-9.648],[400.56,-9.204],[401.712,-7.956],[402.12,-6],[402.912,-6.696],[394.44,-6.696],[394.44,-4.896],[404.064,-4.896],[404.16,-5.508],[404.184,-6.024],[403.5,-8.928],[401.592,-10.92],[398.808,-11.64],[395.82,-10.86],[393.708,-8.736],[392.928,-5.712],[393.72,-2.664],[395.868,-0.54],[398.952,0.24]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.688,0.36],[-0.416,0.64],[-0.048,0.816],[0,0],[0.424,0.632],[0.688,0.36],[0.864,0],[0.832,-0.528],[0.488,-0.896],[0,-1.12],[-0.488,-0.896],[-0.832,-0.52],[-1.04,0]],"o":[[0.688,-0.36],[0.416,-0.64],[0,0],[-0.048,-0.832],[-0.424,-0.632],[-0.688,-0.36],[-1.04,0],[-0.832,0.528],[-0.488,0.896],[0,1.12],[0.488,0.896],[0.832,0.52],[0.88,0]],"v":[[413.688,-0.3],[415.344,-1.8],[416.04,-3.984],[416.04,-7.416],[415.332,-9.612],[413.664,-11.1],[411.336,-11.64],[408.528,-10.848],[406.548,-8.712],[405.816,-5.688],[406.548,-2.664],[408.528,-0.54],[411.336,0.24]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.552,0.328],[0.312,0.592],[0,0.768],[-0.312,0.584],[-0.544,0.328],[-0.72,0],[-0.544,-0.336],[-0.304,-0.584],[0,-0.768],[0.304,-0.584],[0.544,-0.336],[0.72,0]],"o":[[-0.552,-0.328],[-0.312,-0.592],[0,-0.768],[0.312,-0.584],[0.544,-0.328],[0.72,0],[0.544,0.336],[0.304,0.584],[0,0.752],[-0.304,0.584],[-0.544,0.336],[-0.704,0]],"v":[[409.812,-2.292],[408.516,-3.672],[408.048,-5.712],[408.516,-7.74],[409.8,-9.108],[411.696,-9.6],[413.592,-9.096],[414.864,-7.716],[415.32,-5.688],[414.864,-3.684],[413.592,-2.304],[411.696,-1.8]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[417.36,-17.136],[415.176,-17.136],[415.176,-8.616],[415.584,-5.856],[415.176,-3.072],[415.176,0],[417.36,0]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":450,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"© Collapse Project Outlines","sr":1,"ks":{"o":{"k":[{"s":[0],"t":0,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}},{"s":[100],"t":30,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}},{"s":[100],"t":120,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}},{"s":[0],"t":150,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}}]},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[86,101,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.223,0.522],[-0.906,0.934],[-0.486,1.242],[0,1.419],[0.485,1.232],[0.896,0.924],[1.25,0.514],[1.474,0],[1.232,-0.522],[0.905,-0.914],[0.485,-1.232],[0,-1.418],[-0.504,-1.241],[-0.906,-0.933],[-1.232,-0.522],[-1.475,0]],"o":[[1.222,-0.522],[0.905,-0.933],[0.485,-1.241],[0,-1.437],[-0.486,-1.232],[-0.896,-0.924],[-1.251,-0.513],[-1.475,0],[-1.232,0.523],[-0.906,0.915],[-0.486,1.232],[0,1.438],[0.504,1.242],[0.905,0.934],[1.232,0.522],[1.474,0]],"v":[[15.414,-0.504],[18.606,-2.688],[20.692,-5.95],[21.42,-9.94],[20.692,-13.944],[18.62,-17.178],[15.4,-19.334],[11.312,-20.104],[7.252,-19.32],[4.046,-17.164],[1.96,-13.944],[1.232,-9.968],[1.988,-5.95],[4.102,-2.688],[7.308,-0.504],[11.368,0.28]],"c":true},"ix":2},"nm":"©","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.719,0.299],[-0.616,0.598],[0,0],[0.317,-0.149],[0.41,0],[0.354,0.196],[0.196,0.346],[0,0.448],[-0.196,0.336],[-0.355,0.196],[-0.411,0],[-0.299,-0.112],[-0.224,-0.261],[0,0],[0.718,0.29],[0.84,0],[0.933,-0.504],[0.541,-0.858],[0,-1.101],[-0.532,-0.868],[-0.924,-0.494],[-1.158,0]],"o":[[0.718,-0.298],[0,0],[-0.206,0.262],[-0.318,0.15],[-0.411,0],[-0.355,-0.196],[-0.196,-0.345],[0,-0.466],[0.196,-0.336],[0.354,-0.196],[0.392,0],[0.298,0.112],[0,0],[-0.56,-0.56],[-0.719,-0.289],[-1.158,0],[-0.934,0.504],[-0.542,0.859],[0,1.083],[0.532,0.868],[0.924,0.495],[0.877,0]],"v":[[14.098,-4.648],[16.1,-5.992],[13.636,-8.456],[12.852,-7.84],[11.76,-7.616],[10.612,-7.91],[9.786,-8.722],[9.492,-9.912],[9.786,-11.116],[10.612,-11.914],[11.76,-12.208],[12.796,-12.04],[13.58,-11.48],[16.016,-13.944],[14.098,-15.218],[11.76,-15.652],[8.624,-14.896],[6.412,-12.852],[5.6,-9.912],[6.398,-6.986],[8.582,-4.942],[11.704,-4.2]],"c":true},"ix":2},"nm":"©","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[1.278,0.775],[0.718,1.316],[0,1.643],[-0.71,1.298],[-1.288,0.756],[-1.68,0],[-1.288,-0.765],[-0.728,-1.297],[0,-1.624],[0.728,-1.316],[1.288,-0.774],[1.68,0]],"o":[[-1.279,-0.774],[-0.719,-1.316],[0,-1.642],[0.709,-1.297],[1.288,-0.756],[1.68,0],[1.288,0.766],[0.728,1.298],[0,1.643],[-0.728,1.316],[-1.288,0.775],[-1.68,0]],"v":[[6.874,-2.394],[3.878,-5.53],[2.8,-9.968],[3.864,-14.378],[6.86,-17.458],[11.312,-18.592],[15.764,-17.444],[18.788,-14.35],[19.88,-9.968],[18.788,-5.53],[15.764,-2.394],[11.312,-1.232]],"c":true},"ix":2},"nm":"©","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"©","np":6,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.232,0.494],[-0.934,0.896],[0,0],[0.746,-0.308],[1.008,0],[0.709,0.29],[0.522,0.551],[0.28,0.756],[0,0.934],[-0.28,0.766],[-0.523,0.542],[-0.71,0.29],[-0.859,0],[-0.738,-0.317],[-0.504,-0.56],[0,0],[1.222,0.504],[1.568,0],[1.25,-0.513],[0.942,-0.914],[0.522,-1.241],[0,-1.437],[-0.523,-1.241],[-0.943,-0.933],[-1.26,-0.513],[-1.475,0]],"o":[[1.232,-0.494],[0,0],[-0.523,0.579],[-0.747,0.308],[-0.859,0],[-0.71,-0.289],[-0.523,-0.55],[-0.28,-0.756],[0,-0.896],[0.28,-0.765],[0.522,-0.541],[0.709,-0.289],[0.97,0],[0.737,0.318],[0,0],[-0.915,-0.877],[-1.223,-0.504],[-1.494,0],[-1.251,0.514],[-0.943,0.915],[-0.523,1.242],[0,1.438],[0.522,1.242],[0.942,0.934],[1.26,0.513],[1.624,0]],"v":[[43.54,-0.434],[46.788,-2.52],[43.792,-5.516],[41.888,-4.186],[39.256,-3.724],[36.904,-4.158],[35.056,-5.418],[33.852,-7.378],[33.432,-9.912],[33.852,-12.404],[35.056,-14.364],[36.904,-15.61],[39.256,-16.044],[41.818,-15.568],[43.68,-14.252],[46.648,-17.248],[43.442,-19.32],[39.256,-20.076],[35.14,-19.306],[31.85,-17.164],[29.652,-13.93],[28.868,-9.912],[29.652,-5.894],[31.85,-2.632],[35.154,-0.462],[39.256,0.308]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.12,0.635],[-0.654,1.074],[0,1.363],[0.653,1.074],[1.129,0.616],[1.4,0],[1.12,-0.625],[0.644,-1.064],[0,-1.325],[-0.654,-1.082],[-1.12,-0.634],[-1.419,0]],"o":[[1.12,-0.634],[0.653,-1.073],[0,-1.325],[-0.654,-1.073],[-1.13,-0.616],[-1.438,0],[-1.12,0.626],[-0.644,1.064],[0,1.344],[0.653,1.083],[1.12,0.635],[1.418,0]],"v":[[58.856,-0.644],[61.516,-3.206],[62.496,-6.86],[61.516,-10.458],[58.842,-12.992],[55.048,-13.916],[51.212,-12.978],[48.566,-10.444],[47.6,-6.86],[48.58,-3.22],[51.24,-0.644],[55.048,0.308]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.466,0.262],[0.261,0.495],[0,0.635],[-0.262,0.486],[-0.467,0.271],[-0.598,0],[-0.458,-0.27],[-0.262,-0.476],[0,-0.616],[0.252,-0.494],[0.466,-0.261],[0.597,0]],"o":[[-0.467,-0.261],[-0.262,-0.494],[0,-0.597],[0.261,-0.485],[0.466,-0.27],[0.597,0],[0.457,0.271],[0.261,0.476],[0,0.635],[-0.252,0.495],[-0.467,0.262],[-0.598,0]],"v":[[53.452,-4.004],[52.36,-5.138],[51.968,-6.832],[52.36,-8.456],[53.452,-9.59],[55.048,-9.996],[56.63,-9.59],[57.708,-8.47],[58.1,-6.832],[57.722,-5.138],[56.644,-4.004],[55.048,-3.612]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[68.908,0],[68.908,-20.328],[64.596,-20.328],[64.596,0]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[76.244,0],[76.244,-20.328],[71.932,-20.328],[71.932,0]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.738,0.354],[-0.458,0.626],[-0.056,0.803],[0,0],[0.466,0.626],[0.737,0.355],[0.914,0],[0.98,-0.606],[0.569,-1.073],[0,-1.362],[-0.57,-1.054],[-0.99,-0.625],[-1.232,0]],"o":[[0.737,-0.354],[0.457,-0.625],[0,0],[-0.056,-0.802],[-0.467,-0.625],[-0.738,-0.354],[-1.251,0],[-0.98,0.607],[-0.57,1.074],[0,1.363],[0.569,1.055],[0.989,0.626],[0.933,0]],"v":[[87.458,-0.252],[89.25,-1.722],[90.02,-3.864],[90.02,-9.744],[89.236,-11.886],[87.43,-13.356],[84.952,-13.888],[81.606,-12.978],[79.282,-10.458],[78.428,-6.804],[79.282,-3.178],[81.62,-0.658],[84.952,0.28]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.457,0.271],[0.27,0.486],[0,0.616],[-0.271,0.486],[-0.458,0.271],[-0.579,0],[-0.467,-0.27],[-0.243,-0.476],[0,-0.616],[0.55,-0.597],[0.914,0]],"o":[[-0.458,-0.27],[-0.271,-0.485],[0,-0.616],[0.27,-0.485],[0.457,-0.27],[0.597,0],[0.466,0.271],[0.242,0.476],[0,0.952],[-0.551,0.598],[-0.579,0]],"v":[[84.294,-4.018],[83.202,-5.152],[82.796,-6.804],[83.202,-8.456],[84.294,-9.59],[85.848,-9.996],[87.444,-9.59],[88.508,-8.47],[88.872,-6.832],[88.046,-4.508],[85.848,-3.612]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[92.932,0],[92.932,-13.608],[88.704,-13.608],[88.704,-10.276],[89.348,-7],[88.704,-3.668],[88.704,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.008,0.626],[-0.57,1.055],[0,1.363],[0.578,1.064],[0.998,0.616],[1.269,0],[0.765,-0.373],[0.485,-0.644],[0.074,-0.821],[0,0],[-0.476,-0.625],[-0.766,-0.354],[-0.934,0]],"o":[[1.008,-0.625],[0.569,-1.054],[0,-1.362],[-0.579,-1.064],[-0.999,-0.616],[-0.915,0],[-0.766,0.374],[-0.486,0.644],[0,0],[0.074,0.803],[0.476,0.626],[0.765,0.354],[1.269,0]],"v":[[107.24,-0.658],[109.606,-3.178],[110.46,-6.804],[109.592,-10.444],[107.226,-12.964],[103.824,-13.888],[101.304,-13.328],[99.428,-11.802],[98.588,-9.604],[98.588,-3.864],[99.414,-1.722],[101.276,-0.252],[103.824,0.28]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[100.184,5.74],[100.184,-3.5],[99.54,-6.804],[100.24,-10.136],[100.24,-13.608],[95.928,-13.608],[95.928,5.74]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.457,0.271],[0.261,0.486],[0,0.616],[-0.262,0.486],[-0.458,0.271],[-0.598,0],[-0.448,-0.27],[-0.271,-0.485],[0,-0.616],[0.27,-0.485],[0.457,-0.27],[0.597,0]],"o":[[-0.458,-0.27],[-0.262,-0.485],[0,-0.616],[0.261,-0.485],[0.457,-0.27],[0.597,0],[0.448,0.271],[0.27,0.486],[0,0.616],[-0.271,0.486],[-0.458,0.271],[-0.579,0]],"v":[[101.458,-4.018],[100.38,-5.152],[99.988,-6.804],[100.38,-8.456],[101.458,-9.59],[103.04,-9.996],[104.608,-9.59],[105.686,-8.456],[106.092,-6.804],[105.686,-5.152],[104.594,-4.018],[103.012,-3.612]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.999,0.794],[0,1.326],[0.317,0.532],[0.504,0.327],[0.56,0.178],[0.494,0.131],[0.326,0.168],[0,0.28],[-0.243,0.15],[-0.486,0],[-0.532,-0.214],[-0.43,-0.504],[0,0],[0.989,0.402],[1.138,0],[0.821,-0.373],[0.448,-0.644],[0,-0.877],[-0.318,-0.522],[-0.504,-0.298],[-0.56,-0.177],[-0.514,-0.14],[-0.318,-0.158],[0,-0.336],[0.27,-0.149],[0.466,0],[0.606,0.271],[0.466,0.486],[0,0],[-0.654,-0.382],[-0.784,-0.214],[-0.803,0]],"o":[[0.998,-0.793],[0,-0.858],[-0.318,-0.532],[-0.504,-0.326],[-0.56,-0.177],[-0.495,-0.13],[-0.327,-0.168],[0,-0.242],[0.242,-0.149],[0.504,0],[0.532,0.215],[0,0],[-0.598,-0.784],[-0.99,-0.401],[-1.139,0],[-0.822,0.374],[-0.448,0.644],[0,0.84],[0.317,0.523],[0.504,0.299],[0.56,0.178],[0.513,0.14],[0.317,0.159],[0,0.28],[-0.271,0.15],[-0.747,0],[-0.607,-0.27],[0,0],[0.485,0.504],[0.653,0.383],[0.784,0.214],[1.698,0]],"v":[[121.618,-0.826],[123.116,-4.004],[122.64,-6.09],[121.408,-7.378],[119.812,-8.134],[118.23,-8.596],[116.998,-9.044],[116.508,-9.716],[116.872,-10.304],[117.964,-10.528],[119.518,-10.206],[120.96,-9.128],[123.396,-11.62],[121.016,-13.398],[117.824,-14],[114.884,-13.44],[112.98,-11.914],[112.308,-9.632],[112.784,-7.588],[114.016,-6.356],[115.612,-5.642],[117.222,-5.166],[118.468,-4.718],[118.944,-3.976],[118.538,-3.332],[117.432,-3.108],[115.402,-3.514],[113.792,-4.648],[111.328,-2.184],[113.036,-0.854],[115.192,0.042],[117.572,0.364]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.952,0.382],[-0.672,0.803],[0,0],[0.541,-0.233],[0.653,0],[0.532,0.308],[0.289,0.579],[0,0.784],[-0.271,0.56],[-0.495,0.318],[-0.672,0],[-0.439,-0.28],[-0.224,-0.513],[-0.019,-0.765],[0,0],[0,0],[0,0],[0,0],[-0.028,0.271],[0,0.262],[0.597,1.027],[1.026,0.579],[1.362,0],[1.101,-0.616],[0.634,-1.073],[0,-1.344],[-0.654,-1.082],[-1.139,-0.606],[-1.475,0]],"o":[[0.952,-0.382],[0,0],[-0.411,0.467],[-0.542,0.234],[-0.728,0],[-0.532,-0.308],[-0.29,-0.578],[0,-0.784],[0.27,-0.56],[0.494,-0.317],[0.616,0],[0.438,0.28],[0.224,0.514],[0,0],[0,0],[0,0],[0,0],[0.093,-0.336],[0.028,-0.27],[0,-1.325],[-0.598,-1.026],[-1.027,-0.578],[-1.382,0],[-1.102,0.616],[-0.635,1.074],[0,1.382],[0.653,1.083],[1.138,0.606],[1.157,0]],"v":[[135.296,-0.266],[137.732,-2.044],[135.352,-4.396],[133.924,-3.346],[132.132,-2.996],[130.242,-3.458],[129.01,-4.788],[128.576,-6.832],[128.982,-8.848],[130.13,-10.164],[131.88,-10.64],[133.462,-10.22],[134.456,-9.03],[134.82,-7.112],[136.668,-8.372],[126.812,-8.316],[126.812,-5.348],[138.516,-5.404],[138.698,-6.314],[138.74,-7.112],[137.844,-10.64],[135.408,-13.048],[131.824,-13.916],[128.1,-12.992],[125.496,-10.458],[124.544,-6.832],[125.524,-3.136],[128.212,-0.602],[132.132,0.308]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.952,0.486],[-0.551,0.896],[0,1.195],[0.55,0.887],[0.952,0.486],[1.194,0],[0,0],[0,0],[0,0],[-0.57,-0.298],[-0.327,-0.541],[0,-0.746],[0.326,-0.541],[0.569,-0.298],[0.728,0],[0,0],[0,0]],"o":[[1.194,0],[0.952,-0.485],[0.55,-0.896],[0,-1.213],[-0.551,-0.886],[-0.952,-0.485],[0,0],[0,0],[0,0],[0.728,0],[0.569,0.299],[0.326,0.542],[0,0.747],[-0.327,0.542],[-0.57,0.299],[0,0],[0,0],[0,0]],"v":[[154.56,-7.56],[157.78,-8.288],[160.034,-10.36],[160.86,-13.496],[160.034,-16.646],[157.78,-18.704],[154.56,-19.432],[149.128,-19.432],[149.128,-17.136],[154.42,-17.136],[156.366,-16.688],[157.71,-15.428],[158.2,-13.496],[157.71,-11.564],[156.366,-10.304],[154.42,-9.856],[149.128,-9.856],[149.128,-7.56]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[149.996,0],[149.996,-19.432],[147.364,-19.432],[147.364,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[166.404,0],[166.404,-13.3],[163.884,-13.3],[163.884,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.598,0.598],[-0.934,0],[-0.336,-0.13],[-0.28,-0.298],[0,0],[0.541,0.234],[0.672,0],[0.784,-1.008],[0,-1.698],[0,0]],"o":[[0.597,-0.597],[0.448,0],[0.336,0.131],[0,0],[-0.467,-0.541],[-0.542,-0.233],[-1.475,0],[-0.784,1.008],[0,0],[0,-1.232]],"v":[[167.3,-10.304],[169.596,-11.2],[170.772,-11.004],[171.696,-10.36],[173.348,-12.068],[171.836,-13.23],[170.016,-13.58],[166.628,-12.068],[165.452,-8.008],[166.404,-7.56]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.055,0.616],[-0.616,1.055],[0,1.307],[0.616,1.046],[1.054,0.607],[1.306,0],[1.045,-0.616],[0.616,-1.036],[0,-1.288],[-0.616,-1.054],[-1.046,-0.616],[-1.288,0]],"o":[[1.054,-0.616],[0.616,-1.054],[0,-1.288],[-0.616,-1.045],[-1.055,-0.606],[-1.288,0],[-1.046,0.616],[-0.616,1.036],[0,1.307],[0.616,1.055],[1.045,0.616],[1.306,0]],"v":[[184.282,-0.644],[186.788,-3.15],[187.712,-6.692],[186.788,-10.192],[184.282,-12.67],[180.74,-13.58],[177.24,-12.656],[174.748,-10.178],[173.824,-6.692],[174.748,-3.15],[177.24,-0.644],[180.74,0.28]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.653,0.392],[0.373,0.682],[0,0.878],[-0.374,0.672],[-0.654,0.383],[-0.822,0],[-0.644,-0.382],[-0.383,-0.672],[0,-0.858],[0.373,-0.681],[0.653,-0.392],[0.858,0]],"o":[[-0.654,-0.392],[-0.374,-0.681],[0,-0.858],[0.373,-0.672],[0.653,-0.382],[0.858,0],[0.644,0.383],[0.382,0.672],[0,0.878],[-0.374,0.682],[-0.654,0.392],[-0.822,0]],"v":[[178.528,-2.744],[176.988,-4.354],[176.428,-6.692],[176.988,-8.988],[178.528,-10.57],[180.74,-11.144],[182.994,-10.57],[184.534,-8.988],[185.108,-6.692],[184.548,-4.354],[183.008,-2.744],[180.74,-2.156]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.672,0.345],[-0.411,0.653],[0,0.97],[0,0],[0,0],[0,0],[0.41,-0.346],[0.56,0],[0.308,0.149],[0.262,0.317],[0,0],[-0.588,-0.28],[-0.858,0]],"o":[[0.672,-0.346],[0.41,-0.654],[0,0],[0,0],[0,0],[0,0.69],[-0.411,0.345],[-0.429,0],[-0.308,-0.15],[0,0],[0.467,0.522],[0.588,0.28],[0.784,0]],"v":[[191.016,5.334],[192.64,3.836],[193.256,1.4],[193.256,-13.3],[190.736,-13.3],[190.736,1.428],[190.12,2.982],[188.664,3.5],[187.558,3.276],[186.704,2.576],[185.08,4.228],[186.662,5.432],[188.832,5.852]],"c":true},"ix":2},"nm":"j","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.299,0.308],[0,0.467],[0.298,0.308],[0.466,0],[0.308,-0.308],[0,-0.448],[-0.308,-0.308],[-0.448,0]],"o":[[0.298,-0.308],[0,-0.448],[-0.299,-0.308],[-0.448,0],[-0.308,0.308],[0,0.467],[0.308,0.308],[0.466,0]],"v":[[193.172,-16.422],[193.62,-17.584],[193.172,-18.718],[192.024,-19.18],[190.89,-18.718],[190.428,-17.584],[190.89,-16.422],[192.024,-15.96]],"c":true},"ix":2},"nm":"j","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"j","np":5,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.915,0.392],[-0.654,0.747],[0,0],[0.625,-0.261],[0.746,0],[0.69,0.383],[0.373,0.7],[0,0.934],[-0.355,0.672],[-0.654,0.374],[-0.859,0],[-0.579,-0.345],[-0.318,-0.625],[0,-0.896],[0,0],[0,0],[0,0],[0,0],[-0.019,0.215],[0,0.187],[0.532,0.99],[0.952,0.56],[1.213,0],[1.036,-0.606],[0.606,-1.045],[0,-1.306],[-0.616,-1.045],[-1.055,-0.606],[-1.344,0]],"o":[[0.914,-0.392],[0,0],[-0.448,0.523],[-0.626,0.262],[-0.896,0],[-0.691,-0.382],[-0.374,-0.7],[0,-0.914],[0.354,-0.672],[0.653,-0.373],[0.821,0],[0.578,0.346],[0.317,0.626],[0,0],[0,0],[0,0],[0,0],[0.056,-0.261],[0.018,-0.214],[0,-1.269],[-0.532,-0.989],[-0.952,-0.56],[-1.288,0],[-1.036,0.607],[-0.607,1.046],[0,1.326],[0.616,1.046],[1.054,0.607],[1.045,0]],"v":[[206.052,-0.308],[208.404,-2.016],[206.78,-3.668],[205.17,-2.492],[203.112,-2.1],[200.732,-2.674],[199.136,-4.298],[198.576,-6.748],[199.108,-9.128],[200.62,-10.696],[202.888,-11.256],[204.988,-10.738],[206.332,-9.282],[206.808,-7],[207.732,-7.812],[197.848,-7.812],[197.848,-5.712],[209.076,-5.712],[209.188,-6.426],[209.216,-7.028],[208.418,-10.416],[206.192,-12.74],[202.944,-13.58],[199.458,-12.67],[196.994,-10.192],[196.084,-6.664],[197.008,-3.108],[199.514,-0.63],[203.112,0.28]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.887,0.392],[-0.616,0.71],[0,0],[0.588,-0.252],[0.709,0],[0.653,0.392],[0.373,0.672],[0,0.878],[-0.374,0.672],[-0.654,0.383],[-0.84,0],[-0.598,-0.252],[-0.411,-0.485],[0,0],[0.877,0.383],[1.026,0],[1.054,-0.606],[0.606,-1.045],[0,-1.306],[-0.607,-1.054],[-1.055,-0.616],[-1.307,0]],"o":[[0.886,-0.392],[0,0],[-0.43,0.486],[-0.588,0.252],[-0.84,0],[-0.654,-0.392],[-0.374,-0.672],[0,-0.877],[0.373,-0.672],[0.653,-0.382],[0.69,0],[0.597,0.252],[0,0],[-0.635,-0.728],[-0.878,-0.382],[-1.307,0],[-1.055,0.607],[-0.607,1.046],[0,1.288],[0.606,1.055],[1.054,0.616],[1.026,0]],"v":[[220.906,-0.308],[223.16,-1.96],[221.508,-3.64],[219.982,-2.534],[218.036,-2.156],[215.796,-2.744],[214.256,-4.34],[213.696,-6.664],[214.256,-8.988],[215.796,-10.57],[218.036,-11.144],[219.968,-10.766],[221.48,-9.66],[223.16,-11.34],[220.892,-13.006],[218.036,-13.58],[214.494,-12.67],[212.002,-10.192],[211.092,-6.664],[212.002,-3.15],[214.494,-0.644],[218.036,0.28]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[230.048,0],[230.048,-18.872],[227.528,-18.872],[227.528,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[233.324,-11.004],[233.324,-13.3],[224.252,-13.3],[224.252,-11.004]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":450,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"Pre-comp 1","refId":"comp_2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":329,"s":[100]},{"t":359,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[930,540,0],"ix":2,"l":2},"a":{"a":0,"k":[960,71,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":1920,"h":142,"ip":0,"op":1800,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"collapse Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":240,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":270,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":420,"s":[100]},{"t":450,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1464,580,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[123,123,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.027,0.874],[-1.664,1.707],[0,0],[1.002,-0.426],[1.28,0],[1.109,0.619],[0.618,1.11],[0,1.451],[-0.619,1.088],[-1.088,0.619],[-1.366,0],[-0.96,-0.384],[-0.726,-0.81],[0,0],[2.026,0.832],[2.474,0],[2.602,-1.408],[1.493,-2.453],[0,-3.114],[-1.472,-2.474],[-2.603,-1.408],[-3.243,0]],"o":[[2.026,-0.874],[0,0],[-0.726,0.811],[-1.003,0.427],[-1.323,0],[-1.11,-0.618],[-0.619,-1.109],[0,-1.408],[0.618,-1.088],[1.088,-0.618],[1.237,0],[0.96,0.384],[0,0],[-1.579,-1.621],[-2.027,-0.832],[-3.243,0],[-2.603,1.408],[-1.494,2.454],[0,3.072],[1.472,2.475],[2.602,1.408],[2.56,0]],"v":[[25.376,-0.608],[30.912,-4.48],[24.576,-10.752],[21.984,-8.896],[18.56,-8.256],[14.912,-9.184],[12.32,-11.776],[11.392,-15.616],[12.32,-19.36],[14.88,-21.92],[18.56,-22.848],[21.856,-22.272],[24.384,-20.48],[30.72,-26.88],[25.312,-30.56],[18.56,-31.808],[9.792,-29.696],[3.648,-23.904],[1.408,-15.552],[3.616,-7.232],[9.728,-1.408],[18.496,0.704]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.56,1.451],[-1.494,2.454],[0,3.115],[1.493,2.454],[2.581,1.408],[3.2,0],[2.56,-1.429],[1.472,-2.432],[0,-3.029],[-1.494,-2.474],[-2.56,-1.45],[-3.243,0]],"o":[[2.56,-1.45],[1.493,-2.453],[0,-3.029],[-1.494,-2.453],[-2.582,-1.408],[-3.286,0],[-2.56,1.43],[-1.472,2.432],[0,3.072],[1.493,2.475],[2.56,1.451],[3.242,0]],"v":[[58.112,-1.472],[64.192,-7.328],[66.432,-15.68],[64.192,-23.904],[58.08,-29.696],[49.408,-31.808],[40.64,-29.664],[34.592,-23.872],[32.384,-15.68],[34.624,-7.36],[40.704,-1.472],[49.408,0.704]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.066,0.598],[0.597,1.131],[0,1.451],[-0.598,1.11],[-1.067,0.619],[-1.366,0],[-1.046,-0.618],[-0.598,-1.088],[0,-1.408],[0.576,-1.13],[1.066,-0.597],[1.365,0]],"o":[[-1.067,-0.597],[-0.598,-1.13],[0,-1.365],[0.597,-1.109],[1.066,-0.618],[1.365,0],[1.045,0.619],[0.597,1.088],[0,1.451],[-0.576,1.131],[-1.067,0.598],[-1.366,0]],"v":[[45.76,-9.152],[43.264,-11.744],[42.368,-15.616],[43.264,-19.328],[45.76,-21.92],[49.408,-22.848],[53.024,-21.92],[55.488,-19.36],[56.384,-15.616],[55.52,-11.744],[53.056,-9.152],[49.408,-8.256]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[81.088,0],[81.088,-46.464],[71.232,-46.464],[71.232,0]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[97.856,0],[97.856,-46.464],[88,-46.464],[88,0]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.686,0.81],[-1.046,1.43],[-0.128,1.835],[0,0],[1.066,1.43],[1.685,0.811],[2.09,0],[2.24,-1.386],[1.301,-2.453],[0,-3.114],[-1.302,-2.41],[-2.262,-1.429],[-2.816,0]],"o":[[1.685,-0.81],[1.045,-1.429],[0,0],[-0.128,-1.834],[-1.067,-1.429],[-1.686,-0.81],[-2.859,0],[-2.24,1.387],[-1.302,2.454],[0,3.115],[1.301,2.411],[2.261,1.43],[2.133,0]],"v":[[123.488,-0.576],[127.584,-3.936],[129.344,-8.832],[129.344,-22.272],[127.552,-27.168],[123.424,-30.528],[117.76,-31.744],[110.112,-29.664],[104.8,-23.904],[102.848,-15.552],[104.8,-7.264],[110.144,-1.504],[117.76,0.64]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.045,0.619],[0.618,1.11],[0,1.408],[-0.619,1.11],[-1.046,0.619],[-1.323,0],[-1.067,-0.618],[-0.555,-1.088],[0,-1.408],[1.258,-1.365],[2.09,0]],"o":[[-1.046,-0.618],[-0.619,-1.109],[0,-1.408],[0.618,-1.109],[1.045,-0.618],[1.365,0],[1.066,0.619],[0.554,1.088],[0,2.176],[-1.259,1.366],[-1.323,0]],"v":[[116.256,-9.184],[113.76,-11.776],[112.832,-15.552],[113.76,-19.328],[116.256,-21.92],[119.808,-22.848],[123.456,-21.92],[125.888,-19.36],[126.72,-15.616],[124.832,-10.304],[119.808,-8.256]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[136,0],[136,-31.104],[126.336,-31.104],[126.336,-23.488],[127.808,-16],[126.336,-8.384],[126.336,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.304,1.43],[-1.302,2.411],[0,3.115],[1.322,2.432],[2.282,1.408],[2.901,0],[1.749,-0.853],[1.109,-1.472],[0.17,-1.877],[0,0],[-1.088,-1.429],[-1.75,-0.81],[-2.134,0]],"o":[[2.304,-1.429],[1.301,-2.41],[0,-3.114],[-1.323,-2.432],[-2.283,-1.408],[-2.091,0],[-1.75,0.854],[-1.11,1.472],[0,0],[0.17,1.835],[1.088,1.43],[1.749,0.81],[2.901,0]],"v":[[168.704,-1.504],[174.112,-7.264],[176.064,-15.552],[174.08,-23.872],[168.672,-29.632],[160.896,-31.744],[155.136,-30.464],[150.848,-26.976],[148.928,-21.952],[148.928,-8.832],[150.816,-3.936],[155.072,-0.576],[160.896,0.64]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[152.576,13.12],[152.576,-8],[151.104,-15.552],[152.704,-23.168],[152.704,-31.104],[142.848,-31.104],[142.848,13.12]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[1.045,0.619],[0.597,1.11],[0,1.408],[-0.598,1.11],[-1.046,0.619],[-1.366,0],[-1.024,-0.618],[-0.619,-1.109],[0,-1.408],[0.618,-1.109],[1.045,-0.618],[1.365,0]],"o":[[-1.046,-0.618],[-0.598,-1.109],[0,-1.408],[0.597,-1.109],[1.045,-0.618],[1.365,0],[1.024,0.619],[0.618,1.11],[0,1.408],[-0.619,1.11],[-1.046,0.619],[-1.323,0]],"v":[[155.488,-9.184],[153.024,-11.776],[152.128,-15.552],[153.024,-19.328],[155.488,-21.92],[159.104,-22.848],[162.688,-21.92],[165.152,-19.328],[166.08,-15.552],[165.152,-11.776],[162.656,-9.184],[159.04,-8.256]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.283,1.814],[0,3.03],[0.725,1.216],[1.152,0.747],[1.28,0.406],[1.13,0.299],[0.746,0.384],[0,0.64],[-0.555,0.342],[-1.11,0],[-1.216,-0.49],[-0.982,-1.152],[0,0],[2.261,0.918],[2.602,0],[1.877,-0.853],[1.024,-1.472],[0,-2.005],[-0.726,-1.194],[-1.152,-0.682],[-1.28,-0.405],[-1.174,-0.32],[-0.726,-0.362],[0,-0.768],[0.618,-0.341],[1.066,0],[1.386,0.619],[1.066,1.11],[0,0],[-1.494,-0.874],[-1.792,-0.49],[-1.835,0]],"o":[[2.282,-1.813],[0,-1.962],[-0.726,-1.216],[-1.152,-0.746],[-1.28,-0.405],[-1.131,-0.298],[-0.747,-0.384],[0,-0.554],[0.554,-0.341],[1.152,0],[1.216,0.491],[0,0],[-1.366,-1.792],[-2.262,-0.917],[-2.603,0],[-1.878,0.854],[-1.024,1.472],[0,1.92],[0.725,1.195],[1.152,0.683],[1.28,0.406],[1.173,0.32],[0.725,0.363],[0,0.64],[-0.619,0.342],[-1.707,0],[-1.387,-0.618],[0,0],[1.109,1.152],[1.493,0.875],[1.792,0.49],[3.882,0]],"v":[[201.568,-1.888],[204.992,-9.152],[203.904,-13.92],[201.088,-16.864],[197.44,-18.592],[193.824,-19.648],[191.008,-20.672],[189.888,-22.208],[190.72,-23.552],[193.216,-24.064],[196.768,-23.328],[200.064,-20.864],[205.632,-26.56],[200.192,-30.624],[192.896,-32],[186.176,-30.72],[181.824,-27.232],[180.288,-22.016],[181.376,-17.344],[184.192,-14.528],[187.84,-12.896],[191.52,-11.808],[194.368,-10.784],[195.456,-9.088],[194.528,-7.616],[192,-7.104],[187.36,-8.032],[183.68,-10.624],[178.048,-4.992],[181.952,-1.952],[186.88,0.096],[192.32,0.832]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.176,0.874],[-1.536,1.835],[0,0],[1.237,-0.533],[1.493,0],[1.216,0.704],[0.661,1.323],[0,1.792],[-0.619,1.28],[-1.131,0.726],[-1.536,0],[-1.003,-0.64],[-0.512,-1.173],[-0.043,-1.749],[0,0],[0,0],[0,0],[0,0],[-0.064,0.619],[0,0.598],[1.365,2.347],[2.346,1.323],[3.114,0],[2.517,-1.408],[1.45,-2.453],[0,-3.072],[-1.494,-2.474],[-2.603,-1.386],[-3.371,0]],"o":[[2.176,-0.874],[0,0],[-0.939,1.067],[-1.238,0.534],[-1.664,0],[-1.216,-0.704],[-0.662,-1.322],[0,-1.792],[0.618,-1.28],[1.13,-0.725],[1.408,0],[1.002,0.64],[0.512,1.174],[0,0],[0,0],[0,0],[0,0],[0.213,-0.768],[0.064,-0.618],[0,-3.029],[-1.366,-2.346],[-2.347,-1.322],[-3.158,0],[-2.518,1.408],[-1.451,2.454],[0,3.158],[1.493,2.475],[2.602,1.386],[2.645,0]],"v":[[232.832,-0.608],[238.4,-4.672],[232.96,-10.048],[229.696,-7.648],[225.6,-6.848],[221.28,-7.904],[218.464,-10.944],[217.472,-15.616],[218.4,-20.224],[221.024,-23.232],[225.024,-24.32],[228.64,-23.36],[230.912,-20.64],[231.744,-16.256],[235.968,-19.136],[213.44,-19.008],[213.44,-12.224],[240.192,-12.352],[240.608,-14.432],[240.704,-16.256],[238.656,-24.32],[233.088,-29.824],[224.896,-31.808],[216.384,-29.696],[210.432,-23.904],[208.256,-15.616],[210.496,-7.168],[216.64,-1.376],[225.6,0.704]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":450,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"NewLogoDraft-1024poutline","refId":"comp_3","sr":1,"ks":{"o":{"k":[{"s":[0],"t":240,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}},{"s":[100],"t":270,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}},{"s":[100],"t":420,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}},{"s":[3.333],"t":449,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}}]},"r":{"a":0,"k":0,"ix":10},"p":{"k":[{"s":[1464,580,0],"t":0,"i":{"x":1,"y":1},"o":{"x":0,"y":0}},{"s":[1464,580,0],"t":449,"i":{"x":1,"y":1},"o":{"x":0,"y":0}}],"l":2},"a":{"a":0,"k":[1159,774,0],"ix":1,"l":2},"s":{"a":0,"k":[12,12,100],"ix":6,"l":2}},"ao":0,"w":1024,"h":1024,"ip":0,"op":1800,"st":0,"bm":0}]},{"id":"comp_1","nm":"Pre-comp 2","fr":60,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP 5 Outlines","ln":"INDONESIAGELAP","sr":1,"ks":{"o":{"a":0,"k":5,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[-6094.158,1178.868,0],"to":[0,0,0],"ti":[0,0,0]},{"t":449,"s":[-5726.158,1178.868,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[126.984,0],[160.732,-201.916],[124.696,-201.916],[91.52,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[169.884,-57.486],[169.884,-88.946],[9.724,-88.946],[9.724,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[62.92,0],[96.096,-201.916],[60.346,-201.916],[26.884,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[179.322,-117.26],[179.322,-148.72],[19.448,-148.72],[19.448,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[303.732,0],[303.732,-201.916],[258.83,-201.916],[258.83,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[300.872,-163.592],[300.872,-201.916],[219.934,-201.916],[219.934,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.484,10.202],[0,13.54],[4.764,8.866],[8.294,4.862],[10.296,0],[4.764,-1.046],[5.528,-1.524],[0,0],[-4.004,0.478],[-3.624,0],[-5.626,-2.382],[-3.052,-4.384],[0,-6.48],[3.048,-4.478],[5.148,-2.476],[6.864,0],[7.052,3.244],[3.62,5.34],[0,0],[-11.632,-4.764],[-14.112,0]],"o":[[11.82,-5.814],[6.48,-10.198],[0,-12.012],[-4.768,-8.866],[-8.294,-4.862],[-4.196,0],[-4.768,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.624,0],[5.622,2.386],[3.048,4.388],[0,6.292],[-3.052,4.482],[-5.148,2.48],[-7.628,0],[-7.056,-3.24],[0,0],[8.008,9.152],[11.628,4.764],[15.824,0]],"v":[[461.604,-5.577],[489.06,-29.601],[498.784,-65.208],[491.634,-96.525],[472.043,-117.117],[444.158,-124.41],[430.716,-122.837],[415.272,-118.976],[395.252,-93.808],[405.262,-95.953],[416.702,-96.668],[436.579,-93.093],[449.592,-82.94],[454.168,-66.638],[449.592,-50.479],[437.294,-40.04],[419.276,-36.322],[397.254,-41.184],[381.238,-54.054],[352.066,-24.882],[381.524,-4.004],[420.134,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[444.158,-118.976],[495.066,-176.748],[444.444,-176.462],[395.252,-119.262],[395.252,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[459.602,-163.592],[495.066,-176.748],[495.066,-201.916],[364.65,-201.916],[364.65,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[622.05,0],[622.05,-201.916],[577.148,-201.916],[577.148,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[619.19,-163.592],[619.19,-201.916],[538.252,-201.916],[538.252,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.528,9.536],[10.296,5.148],[13.916,0],[12.298,-6.864],[8.196,-13.536],[0,0],[-6.39,4.29],[-8.008,0],[-5.054,-4.478],[0,-7.816],[1.238,-3.526],[2.954,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.816,-7.816],[4.67,-6.48],[2.002,-6.766],[0,-12.772],[-5.532,-9.532],[-10.296,-5.148],[-16.208,0],[-12.298,6.864],[0,0],[5.908,-9.724],[6.386,-4.29],[8.008,0],[5.05,4.482],[0,3.432],[-1.242,3.53],[-2.958,3.91],[0,0],[0,0]],"v":[[728.442,-24.596],[782.496,-78.078],[801.229,-99.528],[811.239,-119.405],[814.242,-141.856],[805.948,-175.318],[782.21,-197.34],[745.888,-205.062],[703.131,-194.766],[672.386,-164.164],[702.702,-137.852],[721.149,-158.873],[742.742,-165.308],[762.333,-158.587],[769.912,-140.14],[768.053,-129.701],[761.761,-118.547],[750.464,-105.248],[672.958,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[818.532,0],[818.532,-38.324],[710.996,-38.324],[672.958,-25.168],[672.958,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[979.55,0],[1013.298,-201.916],[977.262,-201.916],[944.086,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1022.45,-57.486],[1022.45,-88.946],[862.29,-88.946],[862.29,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[915.486,0],[948.662,-201.916],[912.912,-201.916],[879.45,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1031.888,-117.26],[1031.888,-148.72],[872.014,-148.72],[872.014,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1117.974,0],[1179.75,-167.31],[1163.162,-167.31],[1223.508,0],[1271.27,0],[1192.048,-201.916],[1151.15,-201.916],[1071.356,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1226.94,-36.322],[1226.94,-72.93],[1117.116,-72.93],[1117.116,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.536,9.152],[0,0],[7.624,-3.146],[10.296,0],[7.244,2.958],[5.336,5.626],[2.86,7.722],[0,9.536],[-2.86,7.82],[-5.34,5.532],[-7.248,2.958],[-8.772,0],[-7.534,-3.24],[-5.148,-5.72],[0,0],[12.486,5.148],[16.016,0],[12.772,-5.242],[9.626,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.63,-9.532],[-12.87,-5.242],[-15.064,0]],"o":[[12.584,-5.05],[0,0],[-5.34,5.912],[-7.628,3.146],[-8.772,0],[-7.248,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.152],[2.86,-7.816],[5.336,-5.528],[7.244,-2.954],[9.912,0],[7.53,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.256,0],[-12.776,5.246],[-9.63,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.626,9.536],[12.87,5.242],[16.588,0]],"v":[[1446.302,-4.433],[1479.478,-25.74],[1448.876,-56.342],[1429.428,-42.757],[1402.544,-38.038],[1378.52,-42.471],[1359.644,-55.341],[1347.346,-75.361],[1343.056,-101.244],[1347.346,-126.698],[1359.644,-146.718],[1378.52,-159.445],[1402.544,-163.878],[1428.713,-159.016],[1447.732,-145.574],[1478.048,-176.176],[1445.301,-197.34],[1402.544,-205.062],[1360.502,-197.197],[1326.897,-175.318],[1304.446,-142.285],[1296.438,-101.244],[1304.446,-60.203],[1326.897,-26.884],[1360.645,-4.719],[1402.544,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1555.554,0],[1617.33,-167.31],[1600.742,-167.31],[1661.088,0],[1708.85,0],[1629.628,-201.916],[1588.73,-201.916],[1508.936,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1664.52,-36.322],[1664.52,-72.93],[1554.696,-72.93],[1554.696,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.202,5.246],[-5.434,8.772],[0,11.06],[9.152,9.916],[17.16,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.152,4.768],[12.964,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.244,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.288,-4.004],[0,-4.956],[4.956,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.3,0],[10.198,-5.242],[5.434,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.632,-3.24],[8.008,-8.482],[0,-9.532],[-4.674,-8.008],[-9.152,-4.764],[0,0],[0,0],[0,0],[7.244,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.72,0],[4.098,2.288],[2.288,4.004],[0,7.628],[-4.96,5.054],[0,0],[0,0],[0,0]],"v":[[1841.554,0],[1878.305,-7.865],[1901.757,-28.886],[1909.908,-58.63],[1896.18,-95.238],[1856.712,-114.972],[1855.568,-99.814],[1891.032,-117.403],[1903.044,-149.292],[1896.037,-175.604],[1875.302,-194.766],[1842.126,-201.916],[1789.788,-201.916],[1789.788,-166.738],[1833.546,-166.738],[1851.278,-161.161],[1858.142,-144.716],[1851.278,-127.842],[1833.546,-122.408],[1789.788,-122.408],[1789.788,-88.088],[1837.264,-88.088],[1851.993,-84.656],[1861.574,-75.218],[1865.006,-61.776],[1857.57,-42.757],[1837.264,-35.178],[1789.788,-35.178],[1789.788,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1799.798,0],[1799.798,-201.916],[1755.182,-201.916],[1755.182,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2071.212,0],[2104.96,-201.916],[2068.924,-201.916],[2035.748,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2114.112,-57.486],[2114.112,-88.946],[1953.952,-88.946],[1953.952,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2007.148,0],[2040.324,-201.916],[2004.574,-201.916],[1971.112,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2123.55,-117.26],[2123.55,-148.72],[1963.676,-148.72],[1963.676,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.296,4.96],[-5.72,8.866],[0,12.204],[5.622,8.964],[10.104,5.054],[13.536,0],[0,0],[0,0],[0,0],[-4.862,-4.764],[0,-7.244],[4.956,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.916,0],[10.296,-4.956],[5.72,-8.866],[0,-11.44],[-5.626,-8.96],[-10.108,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.862,4.768],[0,7.628],[-4.96,4.482],[0,0],[0,0],[0,0]],"v":[[2259.114,-82.94],[2295.436,-90.376],[2319.46,-111.111],[2328.04,-142.714],[2319.603,-173.316],[2296.008,-194.337],[2260.544,-201.916],[2212.496,-201.916],[2212.496,-166.738],[2255.396,-166.738],[2275.845,-159.588],[2283.138,-141.57],[2275.702,-123.409],[2255.11,-116.688],[2212.496,-116.688],[2212.496,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2223.078,0],[2223.078,-201.916],[2177.89,-201.916],[2177.89,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2341.196,0],[2266.264,-98.384],[2224.794,-86.944],[2287.714,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2430.428,0],[2430.428,-201.916],[2385.24,-201.916],[2385.24,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2530.814,0],[2530.814,-38.896],[2419.846,-38.896],[2419.846,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2520.518,-84.084],[2520.518,-122.122],[2419.846,-122.122],[2419.846,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2529.098,-163.02],[2529.098,-201.916],[2419.846,-201.916],[2419.846,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.334,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[2699.268,-13.299],[2719.86,-58.63],[2714.569,-85.228],[2700.984,-102.96],[2682.537,-114.543],[2662.231,-122.408],[2643.641,-129.272],[2630.056,-137.423],[2624.908,-149.578],[2631.772,-162.305],[2650.362,-166.738],[2671.097,-162.162],[2689.544,-148.148],[2719.002,-177.606],[2690.116,-197.626],[2651.22,-205.062],[2614.326,-198.055],[2589.015,-177.606],[2580.006,-145.288],[2585.154,-119.834],[2598.739,-102.96],[2617.329,-91.806],[2637.492,-83.941],[2656.082,-76.934],[2669.667,-68.068],[2674.672,-54.912],[2666.807,-40.469],[2644.928,-35.178],[2617.329,-41.327],[2595.736,-58.63],[2566.564,-29.458],[2599.025,-4.862],[2642.068,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2818.244,0],[2818.244,-201.916],[2773.056,-201.916],[2773.056,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2918.63,0],[2918.63,-38.896],[2807.662,-38.896],[2807.662,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2908.334,-84.084],[2908.334,-122.122],[2807.662,-122.122],[2807.662,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2916.914,-163.02],[2916.914,-201.916],[2807.662,-201.916],[2807.662,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3063.06,0],[3063.06,-199.342],[3017.586,-199.342],[3017.586,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3125.98,-162.448],[3125.98,-201.916],[2954.38,-201.916],[2954.38,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3221.218,0],[3221.218,-201.916],[3176.03,-201.916],[3176.03,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3330.184,0],[3330.184,-161.59],[3316.742,-201.916],[3284.996,-201.916],[3284.996,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3435.718,-49.478],[3316.742,-201.916],[3305.588,-152.438],[3424.278,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3457.74,0],[3457.74,-201.916],[3412.266,-201.916],[3412.266,-40.326],[3424.278,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.058,-4.862],[-5.054,-9.246],[0,-12.584],[4.956,-9.246],[9.053,-4.956],[12.2,0],[0,0],[0,0]],"o":[[15.06,0],[12.87,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.63,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.058,4.96],[0,0],[0,0],[0,0]],"v":[[3603.028,0],[3644.927,-7.436],[3678.532,-28.457],[3700.84,-60.489],[3708.848,-100.958],[3700.84,-141.856],[3678.389,-173.745],[3644.641,-194.623],[3602.456,-201.916],[3550.69,-201.916],[3550.69,-162.448],[3601.884,-162.448],[3633.487,-155.155],[3654.651,-133.991],[3662.23,-101.244],[3654.794,-68.211],[3633.773,-46.904],[3601.884,-39.468],[3552.12,-39.468],[3552.12,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3566.42,0],[3566.42,-201.916],[3521.232,-201.916],[3521.232,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.724,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.968,-5.336],[-15.256,0]],"o":[[12.772,-5.336],[9.532,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.724,9.536],[12.964,5.336],[15.06,0]],"v":[[3900.468,-4.576],[3933.93,-26.741],[3956.238,-59.917],[3964.246,-100.958],[3956.381,-142.285],[3933.93,-175.461],[3900.039,-197.483],[3858.14,-205.348],[3815.812,-197.483],[3782.064,-175.461],[3759.756,-142.428],[3751.748,-101.244],[3759.756,-60.203],[3782.35,-26.884],[3816.384,-4.576],[3858.712,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.86,7.82],[0,9.536],[-4.96,9.438],[-9.058,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.86,7.722],[0,12.584],[-5.054,9.536],[-8.964,5.34],[-8.964,0]],"v":[[3833.687,-42.185],[3814.668,-55.055],[3802.37,-75.218],[3798.08,-101.244],[3805.516,-134.277],[3826.537,-156.299],[3858.14,-164.164],[3882.45,-159.731],[3901.612,-146.861],[3913.91,-126.841],[3918.2,-101.244],[3910.621,-68.068],[3889.6,-45.76],[3858.14,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4063.202,0],[4063.202,-161.59],[4049.76,-201.916],[4018.014,-201.916],[4018.014,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4168.736,-49.478],[4049.76,-201.916],[4038.606,-152.438],[4157.296,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4190.758,0],[4190.758,-201.916],[4145.284,-201.916],[4145.284,-40.326],[4157.296,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4299.438,0],[4299.438,-201.916],[4254.25,-201.916],[4254.25,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4399.824,0],[4399.824,-38.896],[4288.856,-38.896],[4288.856,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4389.528,-84.084],[4389.528,-122.122],[4288.856,-122.122],[4288.856,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4398.108,-163.02],[4398.108,-201.916],[4288.856,-201.916],[4288.856,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.333,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[4568.278,-13.299],[4588.87,-58.63],[4583.579,-85.228],[4569.994,-102.96],[4551.547,-114.543],[4531.241,-122.408],[4512.651,-129.272],[4499.066,-137.423],[4493.918,-149.578],[4500.782,-162.305],[4519.372,-166.738],[4540.107,-162.162],[4558.554,-148.148],[4588.012,-177.606],[4559.126,-197.626],[4520.23,-205.062],[4483.336,-198.055],[4458.025,-177.606],[4449.016,-145.288],[4454.164,-119.834],[4467.749,-102.96],[4486.339,-91.806],[4506.502,-83.941],[4525.092,-76.934],[4538.677,-68.068],[4543.682,-54.912],[4535.817,-40.469],[4513.938,-35.178],[4486.339,-41.327],[4464.746,-58.63],[4435.574,-29.458],[4468.035,-4.862],[4511.078,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4687.254,0],[4687.254,-201.916],[4642.066,-201.916],[4642.066,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4782.778,0],[4844.554,-167.31],[4827.966,-167.31],[4888.312,0],[4936.074,0],[4856.852,-201.916],[4815.954,-201.916],[4736.16,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4891.744,-36.322],[4891.744,-72.93],[4781.92,-72.93],[4781.92,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5092.516,0],[5126.264,-201.916],[5090.228,-201.916],[5057.052,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5135.416,-57.486],[5135.416,-88.946],[4975.256,-88.946],[4975.256,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5028.452,0],[5061.628,-201.916],[5025.878,-201.916],[4992.416,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5144.854,-117.26],[5144.854,-148.72],[4984.98,-148.72],[4984.98,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5244.382,0],[5244.382,-201.916],[5199.194,-201.916],[5199.194,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5353.348,0],[5353.348,-161.59],[5339.906,-201.916],[5308.16,-201.916],[5308.16,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5458.882,-49.478],[5339.906,-201.916],[5328.752,-152.438],[5447.442,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5480.904,0],[5480.904,-201.916],[5435.43,-201.916],[5435.43,-40.326],[5447.442,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.335,12.204],[9.626,9.058],[12.87,4.862],[15.251,0],[0,0],[0,0],[0,0],[-9.058,-4.862],[-5.054,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.2,0],[0,0],[0,0]],"o":[[15.06,0],[12.87,-4.956],[9.532,-9.054],[5.335,-12.298],[0,-15.06],[-5.34,-12.2],[-9.63,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.058,4.96],[0,0],[0,0],[0,0]],"v":[[5626.192,0],[5668.091,-7.436],[5701.696,-28.457],[5724.004,-60.489],[5732.012,-100.958],[5724.004,-141.856],[5701.553,-173.745],[5667.805,-194.623],[5625.62,-201.916],[5573.854,-201.916],[5573.854,-162.448],[5625.048,-162.448],[5656.651,-155.155],[5677.815,-133.991],[5685.394,-101.244],[5677.958,-68.211],[5656.937,-46.904],[5625.048,-39.468],[5575.284,-39.468],[5575.284,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5589.584,0],[5589.584,-201.916],[5544.396,-201.916],[5544.396,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.724,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.335,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.968,-5.336],[-15.256,0]],"o":[[12.772,-5.336],[9.532,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.537,9.438],[-5.34,12.584],[0,14.684],[5.335,12.682],[9.724,9.536],[12.964,5.336],[15.06,0]],"v":[[5923.632,-4.576],[5957.094,-26.741],[5979.402,-59.917],[5987.41,-100.958],[5979.545,-142.285],[5957.094,-175.461],[5923.203,-197.483],[5881.304,-205.348],[5838.976,-197.483],[5805.228,-175.461],[5782.92,-142.428],[5774.912,-101.244],[5782.92,-60.203],[5805.514,-26.884],[5839.548,-4.576],[5881.876,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.337,2.958],[5.335,5.626],[2.86,7.82],[0,9.536],[-4.96,9.438],[-9.058,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.34],[5.049,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.86,7.722],[0,12.584],[-5.054,9.536],[-8.964,5.34],[-8.964,0]],"v":[[5856.851,-42.185],[5837.832,-55.055],[5825.534,-75.218],[5821.244,-101.244],[5828.68,-134.277],[5849.701,-156.299],[5881.304,-164.164],[5905.614,-159.731],[5924.776,-146.861],[5937.074,-126.841],[5941.364,-101.244],[5933.785,-68.068],[5912.764,-45.76],[5881.304,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6086.366,0],[6086.366,-161.59],[6072.924,-201.916],[6041.178,-201.916],[6041.178,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6191.899,-49.478],[6072.924,-201.916],[6061.77,-152.438],[6180.459,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6213.921,0],[6213.921,-201.916],[6168.448,-201.916],[6168.448,-40.326],[6180.459,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6322.602,0],[6322.602,-201.916],[6277.414,-201.916],[6277.414,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6422.988,0],[6422.988,-38.896],[6312.02,-38.896],[6312.02,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6412.692,-84.084],[6412.692,-122.122],[6312.02,-122.122],[6312.02,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6421.272,-163.02],[6421.272,-201.916],[6312.02,-201.916],[6312.02,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.333,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[6591.441,-13.299],[6612.034,-58.63],[6606.743,-85.228],[6593.158,-102.96],[6574.71,-114.543],[6554.405,-122.408],[6535.814,-129.272],[6522.229,-137.423],[6517.082,-149.578],[6523.946,-162.305],[6542.536,-166.738],[6563.271,-162.162],[6581.718,-148.148],[6611.176,-177.606],[6582.29,-197.626],[6543.394,-205.062],[6506.5,-198.055],[6481.188,-177.606],[6472.18,-145.288],[6477.328,-119.834],[6490.913,-102.96],[6509.502,-91.806],[6529.666,-83.941],[6548.256,-76.934],[6561.841,-68.068],[6566.846,-54.912],[6558.98,-40.469],[6537.102,-35.178],[6509.502,-41.327],[6487.91,-58.63],[6458.738,-29.458],[6491.199,-4.862],[6534.242,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6710.418,0],[6710.418,-201.916],[6665.23,-201.916],[6665.23,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6805.942,0],[6867.718,-167.31],[6851.13,-167.31],[6911.476,0],[6959.238,0],[6880.016,-201.916],[6839.118,-201.916],[6759.324,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6914.908,-36.322],[6914.908,-72.93],[6805.083,-72.93],[6805.083,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.351,8.486],[-8.678,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.478,-8.58],[8.294,-4.478],[11.627,0],[8.96,5.434],[5.148,9.536],[0,12.396],[-5.246,9.438],[-9.344,5.246],[-11.824,0],[-8.866,-4.29],[-6.292,-8.388],[0,0],[14.3,6.39],[17.348,0],[13.058,-5.336],[9.912,-9.438],[5.528,-12.486],[0,-14.872],[-5.434,-12.584],[-9.536,-9.532],[-12.87,-5.434],[-14.872,0]],"o":[[15.345,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.294,4.482],[-11.632,0],[-8.964,-5.434],[-5.148,-9.532],[0,-12.584],[5.242,-9.438],[9.34,-5.242],[10.868,0],[8.866,4.29],[0,0],[-9.344,-11.056],[-14.3,-6.386],[-15.064,0],[-13.062,5.34],[-9.917,9.438],[-5.532,12.49],[0,14.684],[5.434,12.584],[9.532,9.536],[12.87,5.434],[20.02,0]],"v":[[7143.279,-9.295],[7179.314,-46.904],[7192.328,-107.822],[7192.328,-114.4],[7086.222,-114.4],[7086.222,-76.362],[7176.312,-74.932],[7146.282,-94.952],[7139.561,-64.064],[7120.398,-44.473],[7090.512,-37.752],[7059.624,-45.903],[7038.459,-68.354],[7030.738,-101.244],[7038.603,-134.277],[7060.481,-156.299],[7092.228,-164.164],[7121.829,-157.729],[7144.565,-138.71],[7175.454,-169.598],[7139.99,-195.767],[7092.514,-205.348],[7050.329,-197.34],[7015.866,-175.175],[6992.7,-142.285],[6984.406,-101.244],[6992.557,-60.346],[7015.007,-27.17],[7048.613,-4.719],[7090.226,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7289.568,0],[7289.568,-201.916],[7244.38,-201.916],[7244.38,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7389.954,0],[7389.954,-38.896],[7278.986,-38.896],[7278.986,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7379.658,-84.084],[7379.658,-122.122],[7278.986,-122.122],[7278.986,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7388.238,-163.02],[7388.238,-201.916],[7278.986,-201.916],[7278.986,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7490.626,0],[7490.626,-201.916],[7445.438,-201.916],[7445.438,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7580.144,0],[7580.144,-39.468],[7480.33,-39.468],[7480.33,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7657.364,0],[7719.14,-167.31],[7702.552,-167.31],[7762.897,0],[7810.66,0],[7731.438,-201.916],[7690.54,-201.916],[7610.746,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7766.33,-36.322],[7766.33,-72.93],[7656.505,-72.93],[7656.505,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.394,5.148],[-6.006,9.63],[0,13.156],[6.006,9.63],[10.39,5.148],[12.772,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.672,-4.384],[0,-6.292],[2.668,-4.384],[4.478,-2.19],[5.528,0],[0,0],[0,0]],"o":[[12.772,0],[10.39,-5.148],[6.006,-9.626],[0,-13.344],[-6.006,-9.626],[-10.394,-5.148],[0,0],[0,0],[0,0],[5.528,0],[4.478,2.194],[2.668,4.388],[0,6.104],[-2.672,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[7941.647,-73.502],[7976.396,-81.224],[8000.993,-103.389],[8010.001,-137.566],[8000.993,-172.029],[7976.396,-194.194],[7941.647,-201.916],[7891.598,-201.916],[7891.598,-166.738],[7935.07,-166.738],[7950.084,-163.449],[7960.81,-153.582],[7964.813,-137.566],[7960.81,-121.836],[7950.084,-111.969],[7935.07,-108.68],[7891.598,-108.68],[7891.598,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7902.18,0],[7902.18,-201.916],[7856.992,-201.916],[7856.992,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8169.589,0],[8203.338,-201.916],[8167.301,-201.916],[8134.125,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8212.489,-57.486],[8212.489,-88.946],[8052.33,-88.946],[8052.33,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8105.525,0],[8138.702,-201.916],[8102.952,-201.916],[8069.489,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8221.928,-117.26],[8221.928,-148.72],[8062.054,-148.72],[8062.054,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8346.338,0],[8346.338,-201.916],[8301.436,-201.916],[8301.436,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8343.478,-163.592],[8343.478,-201.916],[8262.539,-201.916],[8262.539,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.484,10.202],[0,13.54],[4.764,8.866],[8.294,4.862],[10.296,0],[4.764,-1.046],[5.527,-1.524],[0,0],[-4.004,0.478],[-3.624,0],[-5.626,-2.382],[-3.053,-4.384],[0,-6.48],[3.047,-4.478],[5.148,-2.476],[6.864,0],[7.052,3.244],[3.62,5.34],[0,0],[-11.632,-4.764],[-14.112,0]],"o":[[11.819,-5.814],[6.479,-10.198],[0,-12.012],[-4.769,-8.866],[-8.294,-4.862],[-4.196,0],[-4.769,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.624,0],[5.622,2.386],[3.047,4.388],[0,6.292],[-3.053,4.482],[-5.147,2.48],[-7.628,0],[-7.056,-3.24],[0,0],[8.008,9.152],[11.628,4.764],[15.823,0]],"v":[[8504.21,-5.577],[8531.666,-29.601],[8541.39,-65.208],[8534.24,-96.525],[8514.648,-117.117],[8486.764,-124.41],[8473.322,-122.837],[8457.878,-118.976],[8437.857,-93.808],[8447.868,-95.953],[8459.308,-96.668],[8479.185,-93.093],[8492.198,-82.94],[8496.773,-66.638],[8492.198,-50.479],[8479.899,-40.04],[8461.882,-36.322],[8439.859,-41.184],[8423.844,-54.054],[8394.672,-24.882],[8424.13,-4.004],[8462.74,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8486.764,-118.976],[8537.672,-176.748],[8487.05,-176.462],[8437.857,-119.262],[8437.857,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8502.208,-163.592],[8537.672,-176.748],[8537.672,-201.916],[8407.256,-201.916],[8407.256,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8664.656,0],[8664.656,-201.916],[8619.754,-201.916],[8619.754,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8661.796,-163.592],[8661.796,-201.916],[8580.857,-201.916],[8580.857,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.527,9.536],[10.296,5.148],[13.916,0],[12.298,-6.864],[8.195,-13.536],[0,0],[-6.39,4.29],[-8.009,0],[-5.055,-4.478],[0,-7.816],[1.238,-3.526],[2.954,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.815,-7.816],[4.67,-6.48],[2.003,-6.766],[0,-12.772],[-5.533,-9.532],[-10.296,-5.148],[-16.208,0],[-12.298,6.864],[0,0],[5.907,-9.724],[6.386,-4.29],[8.008,0],[5.05,4.482],[0,3.432],[-1.242,3.53],[-2.958,3.91],[0,0],[0,0]],"v":[[8771.048,-24.596],[8825.103,-78.078],[8843.835,-99.528],[8853.845,-119.405],[8856.849,-141.856],[8848.555,-175.318],[8824.816,-197.34],[8788.494,-205.062],[8745.737,-194.766],[8714.992,-164.164],[8745.309,-137.852],[8763.755,-158.873],[8785.349,-165.308],[8804.939,-158.587],[8812.519,-140.14],[8810.659,-129.701],[8804.367,-118.547],[8793.07,-105.248],[8715.564,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8861.139,0],[8861.139,-38.324],[8753.603,-38.324],[8715.564,-25.168],[8715.564,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9022.156,0],[9055.904,-201.916],[9019.868,-201.916],[8986.691,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9065.056,-57.486],[9065.056,-88.946],[8904.896,-88.946],[8904.896,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8958.092,0],[8991.268,-201.916],[8955.518,-201.916],[8922.056,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9074.494,-117.26],[9074.494,-148.72],[8914.62,-148.72],[8914.62,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[9160.58,0],[9222.355,-167.31],[9205.768,-167.31],[9266.114,0],[9313.876,0],[9234.654,-201.916],[9193.756,-201.916],[9113.962,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9269.546,-36.322],[9269.546,-72.93],[9159.722,-72.93],[9159.722,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.536,9.152],[0,0],[7.623,-3.146],[10.296,0],[7.243,2.958],[5.335,5.626],[2.859,7.722],[0,9.536],[-2.86,7.82],[-5.341,5.532],[-7.249,2.958],[-8.771,0],[-7.534,-3.24],[-5.148,-5.72],[0,0],[12.485,5.148],[16.017,0],[12.772,-5.242],[9.626,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.63,-9.532],[-12.87,-5.242],[-15.063,0]],"o":[[12.584,-5.05],[0,0],[-5.34,5.912],[-7.629,3.146],[-8.771,0],[-7.249,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.152],[2.859,-7.816],[5.335,-5.528],[7.243,-2.954],[9.912,0],[7.53,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.256,0],[-12.775,5.246],[-9.63,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.626,9.536],[12.87,5.242],[16.588,0]],"v":[[9488.908,-4.433],[9522.084,-25.74],[9491.481,-56.342],[9472.034,-42.757],[9445.149,-38.038],[9421.126,-42.471],[9402.25,-55.341],[9389.952,-75.361],[9385.662,-101.244],[9389.952,-126.698],[9402.25,-146.718],[9421.126,-159.445],[9445.149,-163.878],[9471.318,-159.016],[9490.338,-145.574],[9520.653,-176.176],[9487.907,-197.34],[9445.149,-205.062],[9403.107,-197.197],[9369.503,-175.318],[9347.052,-142.285],[9339.044,-101.244],[9347.052,-60.203],[9369.503,-26.884],[9403.251,-4.719],[9445.149,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[9598.16,0],[9659.936,-167.31],[9643.348,-167.31],[9703.694,0],[9751.456,0],[9672.234,-201.916],[9631.336,-201.916],[9551.542,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9707.126,-36.322],[9707.126,-72.93],[9597.302,-72.93],[9597.302,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.202,5.246],[-5.435,8.772],[0,11.06],[9.151,9.916],[17.159,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.151,4.768],[12.964,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.243,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.288,-4.004],[0,-4.956],[4.956,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.3,0],[10.197,-5.242],[5.434,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.632,-3.24],[8.008,-8.482],[0,-9.532],[-4.674,-8.008],[-9.152,-4.764],[0,0],[0,0],[0,0],[7.243,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.72,0],[4.099,2.288],[2.288,4.004],[0,7.628],[-4.96,5.054],[0,0],[0,0],[0,0]],"v":[[9884.16,0],[9920.911,-7.865],[9944.363,-28.886],[9952.514,-58.63],[9938.786,-95.238],[9899.318,-114.972],[9898.174,-99.814],[9933.638,-117.403],[9945.65,-149.292],[9938.643,-175.604],[9917.908,-194.766],[9884.732,-201.916],[9832.394,-201.916],[9832.394,-166.738],[9876.152,-166.738],[9893.884,-161.161],[9900.748,-144.716],[9893.884,-127.842],[9876.152,-122.408],[9832.394,-122.408],[9832.394,-88.088],[9879.87,-88.088],[9894.599,-84.656],[9904.18,-75.218],[9907.612,-61.776],[9900.176,-42.757],[9879.87,-35.178],[9832.394,-35.178],[9832.394,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9842.404,0],[9842.404,-201.916],[9797.788,-201.916],[9797.788,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10113.818,0],[10147.566,-201.916],[10111.53,-201.916],[10078.354,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10156.718,-57.486],[10156.718,-88.946],[9996.558,-88.946],[9996.558,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10049.754,0],[10082.93,-201.916],[10047.18,-201.916],[10013.718,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10166.156,-117.26],[10166.156,-148.72],[10006.282,-148.72],[10006.282,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.296,4.96],[-5.721,8.866],[0,12.204],[5.622,8.964],[10.104,5.054],[13.535,0],[0,0],[0,0],[0,0],[-4.862,-4.764],[0,-7.244],[4.956,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.916,0],[10.296,-4.956],[5.72,-8.866],[0,-11.44],[-5.626,-8.96],[-10.108,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.862,4.768],[0,7.628],[-4.96,4.482],[0,0],[0,0],[0,0]],"v":[[10301.72,-82.94],[10338.042,-90.376],[10362.066,-111.111],[10370.646,-142.714],[10362.209,-173.316],[10338.614,-194.337],[10303.15,-201.916],[10255.102,-201.916],[10255.102,-166.738],[10298.002,-166.738],[10318.451,-159.588],[10325.744,-141.57],[10318.308,-123.409],[10297.716,-116.688],[10255.102,-116.688],[10255.102,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10265.684,0],[10265.684,-201.916],[10220.496,-201.916],[10220.496,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10383.802,0],[10308.87,-98.384],[10267.4,-86.944],[10330.32,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10473.033,0],[10473.033,-201.916],[10427.846,-201.916],[10427.846,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10573.42,0],[10573.42,-38.896],[10462.451,-38.896],[10462.451,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10563.124,-84.084],[10563.124,-122.122],[10462.451,-122.122],[10462.451,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10571.703,-163.02],[10571.703,-201.916],[10462.451,-201.916],[10462.451,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[10741.874,-13.299],[10762.466,-58.63],[10757.175,-85.228],[10743.59,-102.96],[10725.143,-114.543],[10704.837,-122.408],[10686.247,-129.272],[10672.662,-137.423],[10667.514,-149.578],[10674.378,-162.305],[10692.968,-166.738],[10713.703,-162.162],[10732.149,-148.148],[10761.607,-177.606],[10732.722,-197.626],[10693.826,-205.062],[10656.932,-198.055],[10631.621,-177.606],[10622.611,-145.288],[10627.76,-119.834],[10641.345,-102.96],[10659.935,-91.806],[10680.098,-83.941],[10698.688,-76.934],[10712.272,-68.068],[10717.277,-54.912],[10709.413,-40.469],[10687.534,-35.178],[10659.935,-41.327],[10638.342,-58.63],[10609.17,-29.458],[10641.631,-4.862],[10684.674,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10860.85,0],[10860.85,-201.916],[10815.662,-201.916],[10815.662,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10961.236,0],[10961.236,-38.896],[10850.268,-38.896],[10850.268,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10950.94,-84.084],[10950.94,-122.122],[10850.268,-122.122],[10850.268,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10959.52,-163.02],[10959.52,-201.916],[10850.268,-201.916],[10850.268,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11105.666,0],[11105.666,-199.342],[11060.191,-199.342],[11060.191,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11168.586,-162.448],[11168.586,-201.916],[10996.985,-201.916],[10996.985,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11263.823,0],[11263.823,-201.916],[11218.636,-201.916],[11218.636,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11372.789,0],[11372.789,-161.59],[11359.348,-201.916],[11327.602,-201.916],[11327.602,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11478.323,-49.478],[11359.348,-201.916],[11348.193,-152.438],[11466.884,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11500.346,0],[11500.346,-201.916],[11454.871,-201.916],[11454.871,-40.326],[11466.884,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.055,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.06,0],[12.869,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.631,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[11645.634,0],[11687.533,-7.436],[11721.138,-28.457],[11743.445,-60.489],[11751.454,-100.958],[11743.445,-141.856],[11720.995,-173.745],[11687.247,-194.623],[11645.062,-201.916],[11593.296,-201.916],[11593.296,-162.448],[11644.49,-162.448],[11676.093,-155.155],[11697.257,-133.991],[11704.836,-101.244],[11697.399,-68.211],[11676.379,-46.904],[11644.49,-39.468],[11594.726,-39.468],[11594.726,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11609.025,0],[11609.025,-201.916],[11563.838,-201.916],[11563.838,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.341,12.682],[0,14.684],[5.242,12.682],[9.725,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.969,-5.336],[-15.257,0]],"o":[[12.771,-5.336],[9.532,-9.438],[5.335,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.725,9.536],[12.964,5.336],[15.06,0]],"v":[[11943.073,-4.576],[11976.535,-26.741],[11998.844,-59.917],[12006.852,-100.958],[11998.986,-142.285],[11976.535,-175.461],[11942.645,-197.483],[11900.745,-205.348],[11858.417,-197.483],[11824.669,-175.461],[11802.361,-142.428],[11794.354,-101.244],[11802.361,-60.203],[11824.955,-26.884],[11858.989,-4.576],[11901.317,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.96,9.438],[-9.059,5.246],[-12.012,0],[-7.437,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.335,5.626],[2.859,7.722],[0,12.584],[-5.055,9.536],[-8.964,5.34],[-8.964,0]],"v":[[11876.292,-42.185],[11857.273,-55.055],[11844.976,-75.218],[11840.686,-101.244],[11848.121,-134.277],[11869.143,-156.299],[11900.745,-164.164],[11925.056,-159.731],[11944.218,-146.861],[11956.516,-126.841],[11960.806,-101.244],[11953.227,-68.068],[11932.205,-45.76],[11900.745,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12105.808,0],[12105.808,-161.59],[12092.366,-201.916],[12060.62,-201.916],[12060.62,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12211.342,-49.478],[12092.366,-201.916],[12081.212,-152.438],[12199.902,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12233.364,0],[12233.364,-201.916],[12187.89,-201.916],[12187.89,-40.326],[12199.902,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12342.043,0],[12342.043,-201.916],[12296.855,-201.916],[12296.855,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12442.43,0],[12442.43,-38.896],[12331.461,-38.896],[12331.461,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12432.134,-84.084],[12432.134,-122.122],[12331.461,-122.122],[12331.461,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12440.713,-163.02],[12440.713,-201.916],[12331.461,-201.916],[12331.461,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[12610.884,-13.299],[12631.476,-58.63],[12626.185,-85.228],[12612.6,-102.96],[12594.152,-114.543],[12573.847,-122.408],[12555.257,-129.272],[12541.672,-137.423],[12536.523,-149.578],[12543.388,-162.305],[12561.978,-166.738],[12582.713,-162.162],[12601.159,-148.148],[12630.617,-177.606],[12601.731,-197.626],[12562.836,-205.062],[12525.941,-198.055],[12500.631,-177.606],[12491.621,-145.288],[12496.77,-119.834],[12510.354,-102.96],[12528.944,-91.806],[12549.107,-83.941],[12567.697,-76.934],[12581.282,-68.068],[12586.287,-54.912],[12578.423,-40.469],[12556.544,-35.178],[12528.944,-41.327],[12507.352,-58.63],[12478.18,-29.458],[12510.641,-4.862],[12553.684,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12729.859,0],[12729.859,-201.916],[12684.672,-201.916],[12684.672,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12825.384,0],[12887.159,-167.31],[12870.571,-167.31],[12930.918,0],[12978.68,0],[12899.458,-201.916],[12858.56,-201.916],[12778.766,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12934.35,-36.322],[12934.35,-72.93],[12824.525,-72.93],[12824.525,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13135.122,0],[13168.87,-201.916],[13132.834,-201.916],[13099.657,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13178.021,-57.486],[13178.021,-88.946],[13017.861,-88.946],[13017.861,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13071.058,0],[13104.233,-201.916],[13068.483,-201.916],[13035.021,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13187.46,-117.26],[13187.46,-148.72],[13027.586,-148.72],[13027.586,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13286.987,0],[13286.987,-201.916],[13241.8,-201.916],[13241.8,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13395.953,0],[13395.953,-161.59],[13382.512,-201.916],[13350.766,-201.916],[13350.766,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13501.487,-49.478],[13382.512,-201.916],[13371.357,-152.438],[13490.048,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13523.51,0],[13523.51,-201.916],[13478.035,-201.916],[13478.035,-40.326],[13490.048,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.055,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.06,0],[12.869,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.631,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[13668.798,0],[13710.697,-7.436],[13744.302,-28.457],[13766.609,-60.489],[13774.618,-100.958],[13766.609,-141.856],[13744.159,-173.745],[13710.411,-194.623],[13668.226,-201.916],[13616.46,-201.916],[13616.46,-162.448],[13667.654,-162.448],[13699.257,-155.155],[13720.421,-133.991],[13728,-101.244],[13720.563,-68.211],[13699.543,-46.904],[13667.654,-39.468],[13617.89,-39.468],[13617.89,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13632.189,0],[13632.189,-201.916],[13587.002,-201.916],[13587.002,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.341,12.682],[0,14.684],[5.242,12.682],[9.725,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.969,-5.336],[-15.257,0]],"o":[[12.771,-5.336],[9.532,-9.438],[5.335,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.725,9.536],[12.964,5.336],[15.06,0]],"v":[[13966.237,-4.576],[13999.699,-26.741],[14022.008,-59.917],[14030.016,-100.958],[14022.15,-142.285],[13999.699,-175.461],[13965.809,-197.483],[13923.909,-205.348],[13881.581,-197.483],[13847.833,-175.461],[13825.525,-142.428],[13817.518,-101.244],[13825.525,-60.203],[13848.119,-26.884],[13882.153,-4.576],[13924.481,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.96,9.438],[-9.059,5.246],[-12.012,0],[-7.437,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.335,5.626],[2.859,7.722],[0,12.584],[-5.055,9.536],[-8.964,5.34],[-8.964,0]],"v":[[13899.456,-42.185],[13880.438,-55.055],[13868.14,-75.218],[13863.85,-101.244],[13871.285,-134.277],[13892.307,-156.299],[13923.909,-164.164],[13948.22,-159.731],[13967.382,-146.861],[13979.68,-126.841],[13983.97,-101.244],[13976.391,-68.068],[13955.369,-45.76],[13923.909,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14128.971,0],[14128.971,-161.59],[14115.529,-201.916],[14083.783,-201.916],[14083.783,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14234.505,-49.478],[14115.529,-201.916],[14104.375,-152.438],[14223.065,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14256.527,0],[14256.527,-201.916],[14211.053,-201.916],[14211.053,-40.326],[14223.065,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14365.207,0],[14365.207,-201.916],[14320.02,-201.916],[14320.02,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14465.594,0],[14465.594,-38.896],[14354.625,-38.896],[14354.625,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14455.298,-84.084],[14455.298,-122.122],[14354.625,-122.122],[14354.625,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14463.877,-163.02],[14463.877,-201.916],[14354.625,-201.916],[14354.625,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[14634.048,-13.299],[14654.64,-58.63],[14649.349,-85.228],[14635.764,-102.96],[14617.316,-114.543],[14597.011,-122.408],[14578.421,-129.272],[14564.836,-137.423],[14559.688,-149.578],[14566.552,-162.305],[14585.142,-166.738],[14605.877,-162.162],[14624.323,-148.148],[14653.781,-177.606],[14624.896,-197.626],[14586,-205.062],[14549.105,-198.055],[14523.795,-177.606],[14514.785,-145.288],[14519.934,-119.834],[14533.519,-102.96],[14552.108,-91.806],[14572.271,-83.941],[14590.861,-76.934],[14604.446,-68.068],[14609.451,-54.912],[14601.587,-40.469],[14579.708,-35.178],[14552.108,-41.327],[14530.516,-58.63],[14501.344,-29.458],[14533.805,-4.862],[14576.848,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14753.022,0],[14753.022,-201.916],[14707.835,-201.916],[14707.835,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14848.548,0],[14910.323,-167.31],[14893.735,-167.31],[14954.082,0],[15001.844,0],[14922.622,-201.916],[14881.724,-201.916],[14801.93,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14957.514,-36.322],[14957.514,-72.93],[14847.689,-72.93],[14847.689,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.351,8.486],[-8.679,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.478,-8.58],[8.294,-4.478],[11.628,0],[8.96,5.434],[5.148,9.536],[0,12.396],[-5.247,9.438],[-9.345,5.246],[-11.825,0],[-8.866,-4.29],[-6.292,-8.388],[0,0],[14.3,6.39],[17.348,0],[13.058,-5.336],[9.911,-9.438],[5.527,-12.486],[0,-14.872],[-5.434,-12.584],[-9.536,-9.532],[-12.87,-5.434],[-14.871,0]],"o":[[15.346,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.294,4.482],[-11.632,0],[-8.964,-5.434],[-5.147,-9.532],[0,-12.584],[5.241,-9.438],[9.339,-5.242],[10.867,0],[8.866,4.29],[0,0],[-9.344,-11.056],[-14.3,-6.386],[-15.063,0],[-13.062,5.34],[-9.916,9.438],[-5.532,12.49],[0,14.684],[5.435,12.584],[9.532,9.536],[12.87,5.434],[20.021,0]],"v":[[15185.885,-9.295],[15221.921,-46.904],[15234.934,-107.822],[15234.934,-114.4],[15128.827,-114.4],[15128.827,-76.362],[15218.918,-74.932],[15188.888,-94.952],[15182.167,-64.064],[15163.005,-44.473],[15133.117,-37.752],[15102.229,-45.903],[15081.065,-68.354],[15073.344,-101.244],[15081.209,-134.277],[15103.088,-156.299],[15134.834,-164.164],[15164.435,-157.729],[15187.172,-138.71],[15218.06,-169.598],[15182.596,-195.767],[15135.119,-205.348],[15092.935,-197.34],[15058.472,-175.175],[15035.306,-142.285],[15027.012,-101.244],[15035.162,-60.346],[15057.613,-27.17],[15091.219,-4.719],[15132.831,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15332.173,0],[15332.173,-201.916],[15286.985,-201.916],[15286.985,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15432.56,0],[15432.56,-38.896],[15321.591,-38.896],[15321.591,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15422.264,-84.084],[15422.264,-122.122],[15321.591,-122.122],[15321.591,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15430.843,-163.02],[15430.843,-201.916],[15321.591,-201.916],[15321.591,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15533.23,0],[15533.23,-201.916],[15488.043,-201.916],[15488.043,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15622.749,0],[15622.749,-39.468],[15522.935,-39.468],[15522.935,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15699.97,0],[15761.745,-167.31],[15745.157,-167.31],[15805.504,0],[15853.266,0],[15774.044,-201.916],[15733.146,-201.916],[15653.352,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15808.936,-36.322],[15808.936,-72.93],[15699.111,-72.93],[15699.111,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.395,5.148],[-6.006,9.63],[0,13.156],[6.006,9.63],[10.39,5.148],[12.771,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.673,-4.384],[0,-6.292],[2.667,-4.384],[4.478,-2.19],[5.527,0],[0,0],[0,0]],"o":[[12.771,0],[10.39,-5.148],[6.006,-9.626],[0,-13.344],[-6.006,-9.626],[-10.395,-5.148],[0,0],[0,0],[0,0],[5.527,0],[4.478,2.194],[2.667,4.388],[0,6.104],[-2.673,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[15984.254,-73.502],[16019.003,-81.224],[16043.599,-103.389],[16052.607,-137.566],[16043.599,-172.029],[16019.003,-194.194],[15984.254,-201.916],[15934.203,-201.916],[15934.203,-166.738],[15977.676,-166.738],[15992.69,-163.449],[16003.416,-153.582],[16007.42,-137.566],[16003.416,-121.836],[15992.69,-111.969],[15977.676,-108.68],[15934.203,-108.68],[15934.203,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15944.785,0],[15944.785,-201.916],[15899.598,-201.916],[15899.598,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16212.195,0],[16245.943,-201.916],[16209.907,-201.916],[16176.73,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16255.095,-57.486],[16255.095,-88.946],[16094.935,-88.946],[16094.935,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16148.131,0],[16181.307,-201.916],[16145.557,-201.916],[16112.095,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16264.533,-117.26],[16264.533,-148.72],[16104.659,-148.72],[16104.659,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16388.943,0],[16388.943,-201.916],[16344.041,-201.916],[16344.041,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16386.082,-163.592],[16386.082,-201.916],[16305.145,-201.916],[16305.145,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.482,10.202],[0,13.54],[4.764,8.866],[8.293,4.862],[10.295,0],[4.764,-1.046],[5.527,-1.524],[0,0],[-4.004,0.478],[-3.623,0],[-5.625,-2.382],[-3.053,-4.384],[0,-6.48],[3.047,-4.478],[5.148,-2.476],[6.863,0],[7.051,3.244],[3.619,5.34],[0,0],[-11.633,-4.764],[-14.111,0]],"o":[[11.82,-5.814],[6.48,-10.198],[0,-12.012],[-4.768,-8.866],[-8.295,-4.862],[-4.197,0],[-4.768,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.623,0],[5.621,2.386],[3.047,4.388],[0,6.292],[-3.053,4.482],[-5.148,2.48],[-7.629,0],[-7.057,-3.24],[0,0],[8.01,9.152],[11.627,4.764],[15.824,0]],"v":[[16546.814,-5.577],[16574.27,-29.601],[16583.994,-65.208],[16576.844,-96.525],[16557.254,-117.117],[16529.369,-124.41],[16515.926,-122.837],[16500.482,-118.976],[16480.463,-93.808],[16490.473,-95.953],[16501.912,-96.668],[16521.789,-93.093],[16534.803,-82.94],[16539.379,-66.638],[16534.803,-50.479],[16522.504,-40.04],[16504.486,-36.322],[16482.465,-41.184],[16466.449,-54.054],[16437.275,-24.882],[16466.734,-4.004],[16505.344,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16529.369,-118.976],[16580.275,-176.748],[16529.654,-176.462],[16480.463,-119.262],[16480.463,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16544.812,-163.592],[16580.275,-176.748],[16580.275,-201.916],[16449.859,-201.916],[16449.859,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16707.262,0],[16707.262,-201.916],[16662.359,-201.916],[16662.359,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16704.4,-163.592],[16704.4,-201.916],[16623.463,-201.916],[16623.463,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.529,9.536],[10.297,5.148],[13.914,0],[12.299,-6.864],[8.195,-13.536],[0,0],[-6.391,4.29],[-8.008,0],[-5.053,-4.478],[0,-7.816],[1.238,-3.526],[2.953,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.816,-7.816],[4.67,-6.48],[2.002,-6.766],[0,-12.772],[-5.531,-9.532],[-10.295,-5.148],[-16.209,0],[-12.299,6.864],[0,0],[5.908,-9.724],[6.387,-4.29],[8.008,0],[5.051,4.482],[0,3.432],[-1.242,3.53],[-2.959,3.91],[0,0],[0,0]],"v":[[16813.652,-24.596],[16867.707,-78.078],[16886.439,-99.528],[16896.449,-119.405],[16899.453,-141.856],[16891.158,-175.318],[16867.42,-197.34],[16831.1,-205.062],[16788.342,-194.766],[16757.598,-164.164],[16787.912,-137.852],[16806.359,-158.873],[16827.953,-165.308],[16847.543,-158.587],[16855.123,-140.14],[16853.264,-129.701],[16846.973,-118.547],[16835.674,-105.248],[16758.168,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16903.742,0],[16903.742,-38.324],[16796.207,-38.324],[16758.168,-25.168],[16758.168,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17064.762,0],[17098.51,-201.916],[17062.473,-201.916],[17029.297,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17107.662,-57.486],[17107.662,-88.946],[16947.502,-88.946],[16947.502,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17000.697,0],[17033.873,-201.916],[16998.123,-201.916],[16964.662,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17117.1,-117.26],[17117.1,-148.72],[16957.225,-148.72],[16957.225,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[17203.186,0],[17264.961,-167.31],[17248.373,-167.31],[17308.719,0],[17356.48,0],[17277.26,-201.916],[17236.361,-201.916],[17156.566,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17312.15,-36.322],[17312.15,-72.93],[17202.328,-72.93],[17202.328,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.537,9.152],[0,0],[7.625,-3.146],[10.295,0],[7.244,2.958],[5.336,5.626],[2.861,7.722],[0,9.536],[-2.859,7.82],[-5.34,5.532],[-7.248,2.958],[-8.773,0],[-7.533,-3.24],[-5.148,-5.72],[0,0],[12.486,5.148],[16.016,0],[12.771,-5.242],[9.627,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.629,-9.532],[-12.869,-5.242],[-15.064,0]],"o":[[12.584,-5.05],[0,0],[-5.342,5.912],[-7.627,3.146],[-8.773,0],[-7.248,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.152],[2.861,-7.816],[5.336,-5.528],[7.244,-2.954],[9.91,0],[7.529,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.258,0],[-12.775,5.246],[-9.629,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.627,9.536],[12.871,5.242],[16.588,0]],"v":[[17531.514,-4.433],[17564.689,-25.74],[17534.088,-56.342],[17514.639,-42.757],[17487.756,-38.038],[17463.73,-42.471],[17444.855,-55.341],[17432.557,-75.361],[17428.268,-101.244],[17432.557,-126.698],[17444.855,-146.718],[17463.73,-159.445],[17487.756,-163.878],[17513.924,-159.016],[17532.943,-145.574],[17563.26,-176.176],[17530.512,-197.34],[17487.756,-205.062],[17445.713,-197.197],[17412.107,-175.318],[17389.656,-142.285],[17381.648,-101.244],[17389.656,-60.203],[17412.107,-26.884],[17445.855,-4.719],[17487.756,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[17640.766,0],[17702.541,-167.31],[17685.953,-167.31],[17746.299,0],[17794.061,0],[17714.84,-201.916],[17673.941,-201.916],[17594.146,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17749.73,-36.322],[17749.73,-72.93],[17639.908,-72.93],[17639.908,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.203,5.246],[-5.434,8.772],[0,11.06],[9.152,9.916],[17.16,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.152,4.768],[12.965,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.244,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.289,-4.004],[0,-4.956],[4.955,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.301,0],[10.197,-5.242],[5.436,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.631,-3.24],[8.008,-8.482],[0,-9.532],[-4.676,-8.008],[-9.15,-4.764],[0,0],[0,0],[0,0],[7.244,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.721,0],[4.098,2.288],[2.287,4.004],[0,7.628],[-4.961,5.054],[0,0],[0,0],[0,0]],"v":[[17926.764,0],[17963.516,-7.865],[17986.967,-28.886],[17995.119,-58.63],[17981.391,-95.238],[17941.922,-114.972],[17940.779,-99.814],[17976.242,-117.403],[17988.254,-149.292],[17981.248,-175.604],[17960.512,-194.766],[17927.336,-201.916],[17874.998,-201.916],[17874.998,-166.738],[17918.756,-166.738],[17936.488,-161.161],[17943.352,-144.716],[17936.488,-127.842],[17918.756,-122.408],[17874.998,-122.408],[17874.998,-88.088],[17922.475,-88.088],[17937.203,-84.656],[17946.785,-75.218],[17950.217,-61.776],[17942.781,-42.757],[17922.475,-35.178],[17874.998,-35.178],[17874.998,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17885.008,0],[17885.008,-201.916],[17840.393,-201.916],[17840.393,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18156.422,0],[18190.17,-201.916],[18154.133,-201.916],[18120.957,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18199.322,-57.486],[18199.322,-88.946],[18039.162,-88.946],[18039.162,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18092.357,0],[18125.533,-201.916],[18089.783,-201.916],[18056.322,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18208.76,-117.26],[18208.76,-148.72],[18048.885,-148.72],[18048.885,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":91,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.295,4.96],[-5.721,8.866],[0,12.204],[5.621,8.964],[10.105,5.054],[13.535,0],[0,0],[0,0],[0,0],[-4.861,-4.764],[0,-7.244],[4.955,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.914,0],[10.297,-4.956],[5.719,-8.866],[0,-11.44],[-5.627,-8.96],[-10.107,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.861,4.768],[0,7.628],[-4.961,4.482],[0,0],[0,0],[0,0]],"v":[[18344.324,-82.94],[18380.645,-90.376],[18404.67,-111.111],[18413.25,-142.714],[18404.812,-173.316],[18381.217,-194.337],[18345.754,-201.916],[18297.705,-201.916],[18297.705,-166.738],[18340.605,-166.738],[18361.055,-159.588],[18368.348,-141.57],[18360.912,-123.409],[18340.32,-116.688],[18297.705,-116.688],[18297.705,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18308.287,0],[18308.287,-201.916],[18263.1,-201.916],[18263.1,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18426.406,0],[18351.473,-98.384],[18310.004,-86.944],[18372.924,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":92,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18515.639,0],[18515.639,-201.916],[18470.451,-201.916],[18470.451,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18616.025,0],[18616.025,-38.896],[18505.057,-38.896],[18505.057,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18605.729,-84.084],[18605.729,-122.122],[18505.057,-122.122],[18505.057,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18614.309,-163.02],[18614.309,-201.916],[18505.057,-201.916],[18505.057,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":93,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[18784.479,-13.299],[18805.07,-58.63],[18799.779,-85.228],[18786.195,-102.96],[18767.748,-114.543],[18747.441,-122.408],[18728.852,-129.272],[18715.268,-137.423],[18710.119,-149.578],[18716.982,-162.305],[18735.572,-166.738],[18756.309,-162.162],[18774.756,-148.148],[18804.213,-177.606],[18775.328,-197.626],[18736.432,-205.062],[18699.537,-198.055],[18674.227,-177.606],[18665.217,-145.288],[18670.365,-119.834],[18683.951,-102.96],[18702.541,-91.806],[18722.703,-83.941],[18741.293,-76.934],[18754.879,-68.068],[18759.883,-54.912],[18752.018,-40.469],[18730.139,-35.178],[18702.541,-41.327],[18680.947,-58.63],[18651.775,-29.458],[18684.236,-4.862],[18727.279,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":94,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18903.453,0],[18903.453,-201.916],[18858.266,-201.916],[18858.266,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19003.84,0],[19003.84,-38.896],[18892.871,-38.896],[18892.871,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18993.543,-84.084],[18993.543,-122.122],[18892.871,-122.122],[18892.871,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19002.123,-163.02],[19002.123,-201.916],[18892.871,-201.916],[18892.871,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":95,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19148.27,0],[19148.27,-199.342],[19102.797,-199.342],[19102.797,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19211.189,-162.448],[19211.189,-201.916],[19039.59,-201.916],[19039.59,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":96,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19306.428,0],[19306.428,-201.916],[19261.24,-201.916],[19261.24,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":97,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19415.393,0],[19415.393,-161.59],[19401.951,-201.916],[19370.205,-201.916],[19370.205,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19520.928,-49.478],[19401.951,-201.916],[19390.797,-152.438],[19509.486,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19542.949,0],[19542.949,-201.916],[19497.475,-201.916],[19497.475,-40.326],[19509.486,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":98,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.871,4.96],[-9.537,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.627,9.058],[12.871,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.053,-9.246],[0,-12.584],[4.955,-9.246],[9.053,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.061,0],[12.869,-4.956],[9.531,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.629,-9.054],[-12.869,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.053,4.862],[5.051,9.25],[0,12.776],[-4.961,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[19688.236,0],[19730.137,-7.436],[19763.742,-28.457],[19786.049,-60.489],[19794.057,-100.958],[19786.049,-141.856],[19763.598,-173.745],[19729.85,-194.623],[19687.666,-201.916],[19635.898,-201.916],[19635.898,-162.448],[19687.094,-162.448],[19718.697,-155.155],[19739.859,-133.991],[19747.439,-101.244],[19740.004,-68.211],[19718.982,-46.904],[19687.094,-39.468],[19637.33,-39.468],[19637.33,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19651.629,0],[19651.629,-201.916],[19606.441,-201.916],[19606.441,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":99,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.775,5.336],[-9.537,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.723,9.438],[12.871,5.246],[15.061,0],[12.965,-5.242],[9.531,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.725,-9.532],[-12.969,-5.336],[-15.256,0]],"o":[[12.771,-5.336],[9.531,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.725,-9.438],[-12.869,-5.242],[-15.256,0],[-12.969,5.246],[-9.535,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.723,9.536],[12.965,5.336],[15.061,0]],"v":[[19985.678,-4.576],[20019.141,-26.741],[20041.447,-59.917],[20049.455,-100.958],[20041.59,-142.285],[20019.141,-175.461],[19985.248,-197.483],[19943.35,-205.348],[19901.021,-197.483],[19867.273,-175.461],[19844.965,-142.428],[19836.957,-101.244],[19844.965,-60.203],[19867.561,-26.884],[19901.594,-4.576],[19943.922,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.961,9.438],[-9.057,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.34],[5.051,-9.532],[8.959,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.859,-7.816],[0,-12.584],[4.955,-9.438],[9.055,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.861,7.722],[0,12.584],[-5.053,9.536],[-8.965,5.34],[-8.965,0]],"v":[[19918.896,-42.185],[19899.877,-55.055],[19887.58,-75.218],[19883.289,-101.244],[19890.727,-134.277],[19911.746,-156.299],[19943.35,-164.164],[19967.66,-159.731],[19986.822,-146.861],[19999.119,-126.841],[20003.41,-101.244],[19995.83,-68.068],[19974.811,-45.76],[19943.35,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":100,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20148.412,0],[20148.412,-161.59],[20134.971,-201.916],[20103.225,-201.916],[20103.225,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20253.947,-49.478],[20134.971,-201.916],[20123.816,-152.438],[20242.506,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20275.969,0],[20275.969,-201.916],[20230.494,-201.916],[20230.494,-40.326],[20242.506,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":101,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20384.646,0],[20384.646,-201.916],[20339.459,-201.916],[20339.459,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20485.033,0],[20485.033,-38.896],[20374.064,-38.896],[20374.064,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20474.736,-84.084],[20474.736,-122.122],[20374.064,-122.122],[20374.064,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20483.316,-163.02],[20483.316,-201.916],[20374.064,-201.916],[20374.064,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":102,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[20653.486,-13.299],[20674.078,-58.63],[20668.787,-85.228],[20655.203,-102.96],[20636.756,-114.543],[20616.449,-122.408],[20597.859,-129.272],[20584.275,-137.423],[20579.127,-149.578],[20585.99,-162.305],[20604.58,-166.738],[20625.316,-162.162],[20643.764,-148.148],[20673.221,-177.606],[20644.336,-197.626],[20605.439,-205.062],[20568.545,-198.055],[20543.234,-177.606],[20534.225,-145.288],[20539.373,-119.834],[20552.959,-102.96],[20571.549,-91.806],[20591.711,-83.941],[20610.301,-76.934],[20623.887,-68.068],[20628.891,-54.912],[20621.025,-40.469],[20599.146,-35.178],[20571.549,-41.327],[20549.955,-58.63],[20520.783,-29.458],[20553.244,-4.862],[20596.287,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":103,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20772.463,0],[20772.463,-201.916],[20727.275,-201.916],[20727.275,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":104,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20867.988,0],[20929.764,-167.31],[20913.176,-167.31],[20973.521,0],[21021.283,0],[20942.062,-201.916],[20901.164,-201.916],[20821.369,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20976.953,-36.322],[20976.953,-72.93],[20867.131,-72.93],[20867.131,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":105,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21177.727,0],[21211.475,-201.916],[21175.438,-201.916],[21142.262,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21220.627,-57.486],[21220.627,-88.946],[21060.467,-88.946],[21060.467,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21113.662,0],[21146.838,-201.916],[21111.088,-201.916],[21077.627,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21230.064,-117.26],[21230.064,-148.72],[21070.189,-148.72],[21070.189,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":106,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21329.592,0],[21329.592,-201.916],[21284.404,-201.916],[21284.404,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":107,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21438.557,0],[21438.557,-161.59],[21425.115,-201.916],[21393.369,-201.916],[21393.369,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21544.092,-49.478],[21425.115,-201.916],[21413.961,-152.438],[21532.65,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21566.113,0],[21566.113,-201.916],[21520.639,-201.916],[21520.639,-40.326],[21532.65,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":108,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.871,4.96],[-9.537,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.627,9.058],[12.871,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.053,-9.246],[0,-12.584],[4.955,-9.246],[9.053,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.061,0],[12.869,-4.956],[9.531,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.629,-9.054],[-12.869,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.053,4.862],[5.051,9.25],[0,12.776],[-4.961,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[21711.4,0],[21753.301,-7.436],[21786.906,-28.457],[21809.213,-60.489],[21817.221,-100.958],[21809.213,-141.856],[21786.762,-173.745],[21753.014,-194.623],[21710.83,-201.916],[21659.062,-201.916],[21659.062,-162.448],[21710.258,-162.448],[21741.861,-155.155],[21763.023,-133.991],[21770.604,-101.244],[21763.168,-68.211],[21742.146,-46.904],[21710.258,-39.468],[21660.494,-39.468],[21660.494,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21674.793,0],[21674.793,-201.916],[21629.605,-201.916],[21629.605,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":109,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.775,5.336],[-9.537,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.723,9.438],[12.871,5.246],[15.061,0],[12.965,-5.242],[9.531,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.725,-9.532],[-12.969,-5.336],[-15.256,0]],"o":[[12.771,-5.336],[9.531,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.725,-9.438],[-12.869,-5.242],[-15.256,0],[-12.969,5.246],[-9.535,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.723,9.536],[12.965,5.336],[15.061,0]],"v":[[22008.842,-4.576],[22042.305,-26.741],[22064.611,-59.917],[22072.619,-100.958],[22064.754,-142.285],[22042.305,-175.461],[22008.412,-197.483],[21966.514,-205.348],[21924.186,-197.483],[21890.438,-175.461],[21868.129,-142.428],[21860.121,-101.244],[21868.129,-60.203],[21890.725,-26.884],[21924.758,-4.576],[21967.086,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.961,9.438],[-9.057,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.34],[5.051,-9.532],[8.959,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.859,-7.816],[0,-12.584],[4.955,-9.438],[9.055,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.861,7.722],[0,12.584],[-5.053,9.536],[-8.965,5.34],[-8.965,0]],"v":[[21942.061,-42.185],[21923.041,-55.055],[21910.744,-75.218],[21906.453,-101.244],[21913.891,-134.277],[21934.91,-156.299],[21966.514,-164.164],[21990.824,-159.731],[22009.986,-146.861],[22022.283,-126.841],[22026.574,-101.244],[22018.994,-68.068],[21997.975,-45.76],[21966.514,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":110,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22171.574,0],[22171.574,-161.59],[22158.133,-201.916],[22126.387,-201.916],[22126.387,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22277.109,-49.478],[22158.133,-201.916],[22146.979,-152.438],[22265.668,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22299.131,0],[22299.131,-201.916],[22253.656,-201.916],[22253.656,-40.326],[22265.668,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":111,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22407.811,0],[22407.811,-201.916],[22362.623,-201.916],[22362.623,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22508.197,0],[22508.197,-38.896],[22397.229,-38.896],[22397.229,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22497.9,-84.084],[22497.9,-122.122],[22397.229,-122.122],[22397.229,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22506.48,-163.02],[22506.48,-201.916],[22397.229,-201.916],[22397.229,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":112,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[22676.65,-13.299],[22697.242,-58.63],[22691.951,-85.228],[22678.367,-102.96],[22659.92,-114.543],[22639.613,-122.408],[22621.023,-129.272],[22607.439,-137.423],[22602.291,-149.578],[22609.154,-162.305],[22627.744,-166.738],[22648.48,-162.162],[22666.928,-148.148],[22696.385,-177.606],[22667.5,-197.626],[22628.604,-205.062],[22591.709,-198.055],[22566.398,-177.606],[22557.389,-145.288],[22562.537,-119.834],[22576.123,-102.96],[22594.713,-91.806],[22614.875,-83.941],[22633.465,-76.934],[22647.051,-68.068],[22652.055,-54.912],[22644.189,-40.469],[22622.311,-35.178],[22594.713,-41.327],[22573.119,-58.63],[22543.947,-29.458],[22576.408,-4.862],[22619.451,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":113,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22795.627,0],[22795.627,-201.916],[22750.439,-201.916],[22750.439,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":114,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22891.152,0],[22952.928,-167.31],[22936.34,-167.31],[22996.686,0],[23044.447,0],[22965.227,-201.916],[22924.328,-201.916],[22844.533,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23000.117,-36.322],[23000.117,-72.93],[22890.295,-72.93],[22890.295,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":115,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.35,8.486],[-8.678,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.477,-8.58],[8.293,-4.478],[11.627,0],[8.959,5.434],[5.148,9.536],[0,12.396],[-5.246,9.438],[-9.344,5.246],[-11.824,0],[-8.865,-4.29],[-6.291,-8.388],[0,0],[14.301,6.39],[17.348,0],[13.059,-5.336],[9.912,-9.438],[5.527,-12.486],[0,-14.872],[-5.436,-12.584],[-9.537,-9.532],[-12.869,-5.434],[-14.871,0]],"o":[[15.346,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.295,4.482],[-11.633,0],[-8.965,-5.434],[-5.148,-9.532],[0,-12.584],[5.242,-9.438],[9.34,-5.242],[10.869,0],[8.865,4.29],[0,0],[-9.344,-11.056],[-14.299,-6.386],[-15.064,0],[-13.062,5.34],[-9.916,9.438],[-5.533,12.49],[0,14.684],[5.434,12.584],[9.531,9.536],[12.871,5.434],[20.02,0]],"v":[[23228.488,-9.295],[23264.525,-46.904],[23277.537,-107.822],[23277.537,-114.4],[23171.432,-114.4],[23171.432,-76.362],[23261.521,-74.932],[23231.492,-94.952],[23224.771,-64.064],[23205.609,-44.473],[23175.723,-37.752],[23144.834,-45.903],[23123.67,-68.354],[23115.947,-101.244],[23123.812,-134.277],[23145.691,-156.299],[23177.438,-164.164],[23207.039,-157.729],[23229.775,-138.71],[23260.664,-169.598],[23225.199,-195.767],[23177.725,-205.348],[23135.539,-197.34],[23101.076,-175.175],[23077.91,-142.285],[23069.615,-101.244],[23077.768,-60.346],[23100.219,-27.17],[23133.822,-4.719],[23175.436,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":116,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23374.777,0],[23374.777,-201.916],[23329.59,-201.916],[23329.59,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23475.164,0],[23475.164,-38.896],[23364.195,-38.896],[23364.195,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23464.867,-84.084],[23464.867,-122.122],[23364.195,-122.122],[23364.195,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23473.447,-163.02],[23473.447,-201.916],[23364.195,-201.916],[23364.195,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":117,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23575.834,0],[23575.834,-201.916],[23530.646,-201.916],[23530.646,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23665.352,0],[23665.352,-39.468],[23565.539,-39.468],[23565.539,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":118,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[23742.574,0],[23804.35,-167.31],[23787.762,-167.31],[23848.107,0],[23895.869,0],[23816.648,-201.916],[23775.75,-201.916],[23695.955,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23851.539,-36.322],[23851.539,-72.93],[23741.717,-72.93],[23741.717,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":119,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.395,5.148],[-6.006,9.63],[0,13.156],[6.008,9.63],[10.391,5.148],[12.771,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.672,-4.384],[0,-6.292],[2.668,-4.384],[4.477,-2.19],[5.527,0],[0,0],[0,0]],"o":[[12.771,0],[10.391,-5.148],[6.008,-9.626],[0,-13.344],[-6.006,-9.626],[-10.395,-5.148],[0,0],[0,0],[0,0],[5.527,0],[4.477,2.194],[2.668,4.388],[0,6.104],[-2.672,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[24026.857,-73.502],[24061.605,-81.224],[24086.201,-103.389],[24095.211,-137.566],[24086.201,-172.029],[24061.605,-194.194],[24026.857,-201.916],[23976.807,-201.916],[23976.807,-166.738],[24020.279,-166.738],[24035.295,-163.449],[24046.02,-153.582],[24050.023,-137.566],[24046.02,-121.836],[24035.295,-111.969],[24020.279,-108.68],[23976.807,-108.68],[23976.807,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23987.389,0],[23987.389,-201.916],[23942.201,-201.916],[23942.201,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":120,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":450,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP 4 Outlines","ln":"INDONESIAGELAP","sr":1,"ks":{"o":{"k":[{"s":[5],"t":0,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}},{"s":[5],"t":449,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}}]},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[-1516.947,942.974,0],"to":[0,0,0],"ti":[0,0,0]},{"t":449,"s":[-2307.947,942.974,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[126.984,0],[160.732,-201.916],[124.696,-201.916],[91.52,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[169.884,-57.486],[169.884,-88.946],[9.724,-88.946],[9.724,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[62.92,0],[96.096,-201.916],[60.346,-201.916],[26.884,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[179.322,-117.26],[179.322,-148.72],[19.448,-148.72],[19.448,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[303.732,0],[303.732,-201.916],[258.83,-201.916],[258.83,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[300.872,-163.592],[300.872,-201.916],[219.934,-201.916],[219.934,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.484,10.202],[0,13.54],[4.764,8.866],[8.294,4.862],[10.296,0],[4.764,-1.046],[5.528,-1.524],[0,0],[-4.004,0.478],[-3.624,0],[-5.626,-2.382],[-3.052,-4.384],[0,-6.48],[3.048,-4.478],[5.148,-2.476],[6.864,0],[7.052,3.244],[3.62,5.34],[0,0],[-11.632,-4.764],[-14.112,0]],"o":[[11.82,-5.814],[6.48,-10.198],[0,-12.012],[-4.768,-8.866],[-8.294,-4.862],[-4.196,0],[-4.768,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.624,0],[5.622,2.386],[3.048,4.388],[0,6.292],[-3.052,4.482],[-5.148,2.48],[-7.628,0],[-7.056,-3.24],[0,0],[8.008,9.152],[11.628,4.764],[15.824,0]],"v":[[461.604,-5.577],[489.06,-29.601],[498.784,-65.208],[491.634,-96.525],[472.043,-117.117],[444.158,-124.41],[430.716,-122.837],[415.272,-118.976],[395.252,-93.808],[405.262,-95.953],[416.702,-96.668],[436.579,-93.093],[449.592,-82.94],[454.168,-66.638],[449.592,-50.479],[437.294,-40.04],[419.276,-36.322],[397.254,-41.184],[381.238,-54.054],[352.066,-24.882],[381.524,-4.004],[420.134,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[444.158,-118.976],[495.066,-176.748],[444.444,-176.462],[395.252,-119.262],[395.252,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[459.602,-163.592],[495.066,-176.748],[495.066,-201.916],[364.65,-201.916],[364.65,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[622.05,0],[622.05,-201.916],[577.148,-201.916],[577.148,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[619.19,-163.592],[619.19,-201.916],[538.252,-201.916],[538.252,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.528,9.536],[10.296,5.148],[13.916,0],[12.298,-6.864],[8.196,-13.536],[0,0],[-6.39,4.29],[-8.008,0],[-5.054,-4.478],[0,-7.816],[1.238,-3.526],[2.954,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.816,-7.816],[4.67,-6.48],[2.002,-6.766],[0,-12.772],[-5.532,-9.532],[-10.296,-5.148],[-16.208,0],[-12.298,6.864],[0,0],[5.908,-9.724],[6.386,-4.29],[8.008,0],[5.05,4.482],[0,3.432],[-1.242,3.53],[-2.958,3.91],[0,0],[0,0]],"v":[[728.442,-24.596],[782.496,-78.078],[801.229,-99.528],[811.239,-119.405],[814.242,-141.856],[805.948,-175.318],[782.21,-197.34],[745.888,-205.062],[703.131,-194.766],[672.386,-164.164],[702.702,-137.852],[721.149,-158.873],[742.742,-165.308],[762.333,-158.587],[769.912,-140.14],[768.053,-129.701],[761.761,-118.547],[750.464,-105.248],[672.958,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[818.532,0],[818.532,-38.324],[710.996,-38.324],[672.958,-25.168],[672.958,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[979.55,0],[1013.298,-201.916],[977.262,-201.916],[944.086,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1022.45,-57.486],[1022.45,-88.946],[862.29,-88.946],[862.29,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[915.486,0],[948.662,-201.916],[912.912,-201.916],[879.45,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1031.888,-117.26],[1031.888,-148.72],[872.014,-148.72],[872.014,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1117.974,0],[1179.75,-167.31],[1163.162,-167.31],[1223.508,0],[1271.27,0],[1192.048,-201.916],[1151.15,-201.916],[1071.356,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1226.94,-36.322],[1226.94,-72.93],[1117.116,-72.93],[1117.116,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.536,9.152],[0,0],[7.624,-3.146],[10.296,0],[7.244,2.958],[5.336,5.626],[2.86,7.722],[0,9.536],[-2.86,7.82],[-5.34,5.532],[-7.248,2.958],[-8.772,0],[-7.534,-3.24],[-5.148,-5.72],[0,0],[12.486,5.148],[16.016,0],[12.772,-5.242],[9.626,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.63,-9.532],[-12.87,-5.242],[-15.064,0]],"o":[[12.584,-5.05],[0,0],[-5.34,5.912],[-7.628,3.146],[-8.772,0],[-7.248,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.152],[2.86,-7.816],[5.336,-5.528],[7.244,-2.954],[9.912,0],[7.53,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.256,0],[-12.776,5.246],[-9.63,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.626,9.536],[12.87,5.242],[16.588,0]],"v":[[1446.302,-4.433],[1479.478,-25.74],[1448.876,-56.342],[1429.428,-42.757],[1402.544,-38.038],[1378.52,-42.471],[1359.644,-55.341],[1347.346,-75.361],[1343.056,-101.244],[1347.346,-126.698],[1359.644,-146.718],[1378.52,-159.445],[1402.544,-163.878],[1428.713,-159.016],[1447.732,-145.574],[1478.048,-176.176],[1445.301,-197.34],[1402.544,-205.062],[1360.502,-197.197],[1326.897,-175.318],[1304.446,-142.285],[1296.438,-101.244],[1304.446,-60.203],[1326.897,-26.884],[1360.645,-4.719],[1402.544,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1555.554,0],[1617.33,-167.31],[1600.742,-167.31],[1661.088,0],[1708.85,0],[1629.628,-201.916],[1588.73,-201.916],[1508.936,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1664.52,-36.322],[1664.52,-72.93],[1554.696,-72.93],[1554.696,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.202,5.246],[-5.434,8.772],[0,11.06],[9.152,9.916],[17.16,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.152,4.768],[12.964,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.244,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.288,-4.004],[0,-4.956],[4.956,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.3,0],[10.198,-5.242],[5.434,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.632,-3.24],[8.008,-8.482],[0,-9.532],[-4.674,-8.008],[-9.152,-4.764],[0,0],[0,0],[0,0],[7.244,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.72,0],[4.098,2.288],[2.288,4.004],[0,7.628],[-4.96,5.054],[0,0],[0,0],[0,0]],"v":[[1841.554,0],[1878.305,-7.865],[1901.757,-28.886],[1909.908,-58.63],[1896.18,-95.238],[1856.712,-114.972],[1855.568,-99.814],[1891.032,-117.403],[1903.044,-149.292],[1896.037,-175.604],[1875.302,-194.766],[1842.126,-201.916],[1789.788,-201.916],[1789.788,-166.738],[1833.546,-166.738],[1851.278,-161.161],[1858.142,-144.716],[1851.278,-127.842],[1833.546,-122.408],[1789.788,-122.408],[1789.788,-88.088],[1837.264,-88.088],[1851.993,-84.656],[1861.574,-75.218],[1865.006,-61.776],[1857.57,-42.757],[1837.264,-35.178],[1789.788,-35.178],[1789.788,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1799.798,0],[1799.798,-201.916],[1755.182,-201.916],[1755.182,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2071.212,0],[2104.96,-201.916],[2068.924,-201.916],[2035.748,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2114.112,-57.486],[2114.112,-88.946],[1953.952,-88.946],[1953.952,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2007.148,0],[2040.324,-201.916],[2004.574,-201.916],[1971.112,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2123.55,-117.26],[2123.55,-148.72],[1963.676,-148.72],[1963.676,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.296,4.96],[-5.72,8.866],[0,12.204],[5.622,8.964],[10.104,5.054],[13.536,0],[0,0],[0,0],[0,0],[-4.862,-4.764],[0,-7.244],[4.956,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.916,0],[10.296,-4.956],[5.72,-8.866],[0,-11.44],[-5.626,-8.96],[-10.108,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.862,4.768],[0,7.628],[-4.96,4.482],[0,0],[0,0],[0,0]],"v":[[2259.114,-82.94],[2295.436,-90.376],[2319.46,-111.111],[2328.04,-142.714],[2319.603,-173.316],[2296.008,-194.337],[2260.544,-201.916],[2212.496,-201.916],[2212.496,-166.738],[2255.396,-166.738],[2275.845,-159.588],[2283.138,-141.57],[2275.702,-123.409],[2255.11,-116.688],[2212.496,-116.688],[2212.496,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2223.078,0],[2223.078,-201.916],[2177.89,-201.916],[2177.89,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2341.196,0],[2266.264,-98.384],[2224.794,-86.944],[2287.714,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2430.428,0],[2430.428,-201.916],[2385.24,-201.916],[2385.24,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2530.814,0],[2530.814,-38.896],[2419.846,-38.896],[2419.846,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2520.518,-84.084],[2520.518,-122.122],[2419.846,-122.122],[2419.846,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2529.098,-163.02],[2529.098,-201.916],[2419.846,-201.916],[2419.846,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.334,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[2699.268,-13.299],[2719.86,-58.63],[2714.569,-85.228],[2700.984,-102.96],[2682.537,-114.543],[2662.231,-122.408],[2643.641,-129.272],[2630.056,-137.423],[2624.908,-149.578],[2631.772,-162.305],[2650.362,-166.738],[2671.097,-162.162],[2689.544,-148.148],[2719.002,-177.606],[2690.116,-197.626],[2651.22,-205.062],[2614.326,-198.055],[2589.015,-177.606],[2580.006,-145.288],[2585.154,-119.834],[2598.739,-102.96],[2617.329,-91.806],[2637.492,-83.941],[2656.082,-76.934],[2669.667,-68.068],[2674.672,-54.912],[2666.807,-40.469],[2644.928,-35.178],[2617.329,-41.327],[2595.736,-58.63],[2566.564,-29.458],[2599.025,-4.862],[2642.068,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2818.244,0],[2818.244,-201.916],[2773.056,-201.916],[2773.056,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2918.63,0],[2918.63,-38.896],[2807.662,-38.896],[2807.662,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2908.334,-84.084],[2908.334,-122.122],[2807.662,-122.122],[2807.662,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2916.914,-163.02],[2916.914,-201.916],[2807.662,-201.916],[2807.662,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3063.06,0],[3063.06,-199.342],[3017.586,-199.342],[3017.586,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3125.98,-162.448],[3125.98,-201.916],[2954.38,-201.916],[2954.38,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3221.218,0],[3221.218,-201.916],[3176.03,-201.916],[3176.03,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3330.184,0],[3330.184,-161.59],[3316.742,-201.916],[3284.996,-201.916],[3284.996,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3435.718,-49.478],[3316.742,-201.916],[3305.588,-152.438],[3424.278,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3457.74,0],[3457.74,-201.916],[3412.266,-201.916],[3412.266,-40.326],[3424.278,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.058,-4.862],[-5.054,-9.246],[0,-12.584],[4.956,-9.246],[9.053,-4.956],[12.2,0],[0,0],[0,0]],"o":[[15.06,0],[12.87,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.63,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.058,4.96],[0,0],[0,0],[0,0]],"v":[[3603.028,0],[3644.927,-7.436],[3678.532,-28.457],[3700.84,-60.489],[3708.848,-100.958],[3700.84,-141.856],[3678.389,-173.745],[3644.641,-194.623],[3602.456,-201.916],[3550.69,-201.916],[3550.69,-162.448],[3601.884,-162.448],[3633.487,-155.155],[3654.651,-133.991],[3662.23,-101.244],[3654.794,-68.211],[3633.773,-46.904],[3601.884,-39.468],[3552.12,-39.468],[3552.12,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3566.42,0],[3566.42,-201.916],[3521.232,-201.916],[3521.232,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.724,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.968,-5.336],[-15.256,0]],"o":[[12.772,-5.336],[9.532,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.724,9.536],[12.964,5.336],[15.06,0]],"v":[[3900.468,-4.576],[3933.93,-26.741],[3956.238,-59.917],[3964.246,-100.958],[3956.381,-142.285],[3933.93,-175.461],[3900.039,-197.483],[3858.14,-205.348],[3815.812,-197.483],[3782.064,-175.461],[3759.756,-142.428],[3751.748,-101.244],[3759.756,-60.203],[3782.35,-26.884],[3816.384,-4.576],[3858.712,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.86,7.82],[0,9.536],[-4.96,9.438],[-9.058,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.86,7.722],[0,12.584],[-5.054,9.536],[-8.964,5.34],[-8.964,0]],"v":[[3833.687,-42.185],[3814.668,-55.055],[3802.37,-75.218],[3798.08,-101.244],[3805.516,-134.277],[3826.537,-156.299],[3858.14,-164.164],[3882.45,-159.731],[3901.612,-146.861],[3913.91,-126.841],[3918.2,-101.244],[3910.621,-68.068],[3889.6,-45.76],[3858.14,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4063.202,0],[4063.202,-161.59],[4049.76,-201.916],[4018.014,-201.916],[4018.014,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4168.736,-49.478],[4049.76,-201.916],[4038.606,-152.438],[4157.296,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4190.758,0],[4190.758,-201.916],[4145.284,-201.916],[4145.284,-40.326],[4157.296,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4299.438,0],[4299.438,-201.916],[4254.25,-201.916],[4254.25,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4399.824,0],[4399.824,-38.896],[4288.856,-38.896],[4288.856,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4389.528,-84.084],[4389.528,-122.122],[4288.856,-122.122],[4288.856,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4398.108,-163.02],[4398.108,-201.916],[4288.856,-201.916],[4288.856,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.333,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[4568.278,-13.299],[4588.87,-58.63],[4583.579,-85.228],[4569.994,-102.96],[4551.547,-114.543],[4531.241,-122.408],[4512.651,-129.272],[4499.066,-137.423],[4493.918,-149.578],[4500.782,-162.305],[4519.372,-166.738],[4540.107,-162.162],[4558.554,-148.148],[4588.012,-177.606],[4559.126,-197.626],[4520.23,-205.062],[4483.336,-198.055],[4458.025,-177.606],[4449.016,-145.288],[4454.164,-119.834],[4467.749,-102.96],[4486.339,-91.806],[4506.502,-83.941],[4525.092,-76.934],[4538.677,-68.068],[4543.682,-54.912],[4535.817,-40.469],[4513.938,-35.178],[4486.339,-41.327],[4464.746,-58.63],[4435.574,-29.458],[4468.035,-4.862],[4511.078,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4687.254,0],[4687.254,-201.916],[4642.066,-201.916],[4642.066,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4782.778,0],[4844.554,-167.31],[4827.966,-167.31],[4888.312,0],[4936.074,0],[4856.852,-201.916],[4815.954,-201.916],[4736.16,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4891.744,-36.322],[4891.744,-72.93],[4781.92,-72.93],[4781.92,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5092.516,0],[5126.264,-201.916],[5090.228,-201.916],[5057.052,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5135.416,-57.486],[5135.416,-88.946],[4975.256,-88.946],[4975.256,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5028.452,0],[5061.628,-201.916],[5025.878,-201.916],[4992.416,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5144.854,-117.26],[5144.854,-148.72],[4984.98,-148.72],[4984.98,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5244.382,0],[5244.382,-201.916],[5199.194,-201.916],[5199.194,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5353.348,0],[5353.348,-161.59],[5339.906,-201.916],[5308.16,-201.916],[5308.16,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5458.882,-49.478],[5339.906,-201.916],[5328.752,-152.438],[5447.442,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5480.904,0],[5480.904,-201.916],[5435.43,-201.916],[5435.43,-40.326],[5447.442,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.335,12.204],[9.626,9.058],[12.87,4.862],[15.251,0],[0,0],[0,0],[0,0],[-9.058,-4.862],[-5.054,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.2,0],[0,0],[0,0]],"o":[[15.06,0],[12.87,-4.956],[9.532,-9.054],[5.335,-12.298],[0,-15.06],[-5.34,-12.2],[-9.63,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.058,4.96],[0,0],[0,0],[0,0]],"v":[[5626.192,0],[5668.091,-7.436],[5701.696,-28.457],[5724.004,-60.489],[5732.012,-100.958],[5724.004,-141.856],[5701.553,-173.745],[5667.805,-194.623],[5625.62,-201.916],[5573.854,-201.916],[5573.854,-162.448],[5625.048,-162.448],[5656.651,-155.155],[5677.815,-133.991],[5685.394,-101.244],[5677.958,-68.211],[5656.937,-46.904],[5625.048,-39.468],[5575.284,-39.468],[5575.284,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5589.584,0],[5589.584,-201.916],[5544.396,-201.916],[5544.396,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.724,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.335,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.968,-5.336],[-15.256,0]],"o":[[12.772,-5.336],[9.532,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.537,9.438],[-5.34,12.584],[0,14.684],[5.335,12.682],[9.724,9.536],[12.964,5.336],[15.06,0]],"v":[[5923.632,-4.576],[5957.094,-26.741],[5979.402,-59.917],[5987.41,-100.958],[5979.545,-142.285],[5957.094,-175.461],[5923.203,-197.483],[5881.304,-205.348],[5838.976,-197.483],[5805.228,-175.461],[5782.92,-142.428],[5774.912,-101.244],[5782.92,-60.203],[5805.514,-26.884],[5839.548,-4.576],[5881.876,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.337,2.958],[5.335,5.626],[2.86,7.82],[0,9.536],[-4.96,9.438],[-9.058,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.34],[5.049,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.86,7.722],[0,12.584],[-5.054,9.536],[-8.964,5.34],[-8.964,0]],"v":[[5856.851,-42.185],[5837.832,-55.055],[5825.534,-75.218],[5821.244,-101.244],[5828.68,-134.277],[5849.701,-156.299],[5881.304,-164.164],[5905.614,-159.731],[5924.776,-146.861],[5937.074,-126.841],[5941.364,-101.244],[5933.785,-68.068],[5912.764,-45.76],[5881.304,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6086.366,0],[6086.366,-161.59],[6072.924,-201.916],[6041.178,-201.916],[6041.178,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6191.899,-49.478],[6072.924,-201.916],[6061.77,-152.438],[6180.459,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6213.921,0],[6213.921,-201.916],[6168.448,-201.916],[6168.448,-40.326],[6180.459,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6322.602,0],[6322.602,-201.916],[6277.414,-201.916],[6277.414,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6422.988,0],[6422.988,-38.896],[6312.02,-38.896],[6312.02,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6412.692,-84.084],[6412.692,-122.122],[6312.02,-122.122],[6312.02,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6421.272,-163.02],[6421.272,-201.916],[6312.02,-201.916],[6312.02,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.333,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[6591.441,-13.299],[6612.034,-58.63],[6606.743,-85.228],[6593.158,-102.96],[6574.71,-114.543],[6554.405,-122.408],[6535.814,-129.272],[6522.229,-137.423],[6517.082,-149.578],[6523.946,-162.305],[6542.536,-166.738],[6563.271,-162.162],[6581.718,-148.148],[6611.176,-177.606],[6582.29,-197.626],[6543.394,-205.062],[6506.5,-198.055],[6481.188,-177.606],[6472.18,-145.288],[6477.328,-119.834],[6490.913,-102.96],[6509.502,-91.806],[6529.666,-83.941],[6548.256,-76.934],[6561.841,-68.068],[6566.846,-54.912],[6558.98,-40.469],[6537.102,-35.178],[6509.502,-41.327],[6487.91,-58.63],[6458.738,-29.458],[6491.199,-4.862],[6534.242,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6710.418,0],[6710.418,-201.916],[6665.23,-201.916],[6665.23,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6805.942,0],[6867.718,-167.31],[6851.13,-167.31],[6911.476,0],[6959.238,0],[6880.016,-201.916],[6839.118,-201.916],[6759.324,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6914.908,-36.322],[6914.908,-72.93],[6805.083,-72.93],[6805.083,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.351,8.486],[-8.678,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.478,-8.58],[8.294,-4.478],[11.627,0],[8.96,5.434],[5.148,9.536],[0,12.396],[-5.246,9.438],[-9.344,5.246],[-11.824,0],[-8.866,-4.29],[-6.292,-8.388],[0,0],[14.3,6.39],[17.348,0],[13.058,-5.336],[9.912,-9.438],[5.528,-12.486],[0,-14.872],[-5.434,-12.584],[-9.536,-9.532],[-12.87,-5.434],[-14.872,0]],"o":[[15.345,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.294,4.482],[-11.632,0],[-8.964,-5.434],[-5.148,-9.532],[0,-12.584],[5.242,-9.438],[9.34,-5.242],[10.868,0],[8.866,4.29],[0,0],[-9.344,-11.056],[-14.3,-6.386],[-15.064,0],[-13.062,5.34],[-9.917,9.438],[-5.532,12.49],[0,14.684],[5.434,12.584],[9.532,9.536],[12.87,5.434],[20.02,0]],"v":[[7143.279,-9.295],[7179.314,-46.904],[7192.328,-107.822],[7192.328,-114.4],[7086.222,-114.4],[7086.222,-76.362],[7176.312,-74.932],[7146.282,-94.952],[7139.561,-64.064],[7120.398,-44.473],[7090.512,-37.752],[7059.624,-45.903],[7038.459,-68.354],[7030.738,-101.244],[7038.603,-134.277],[7060.481,-156.299],[7092.228,-164.164],[7121.829,-157.729],[7144.565,-138.71],[7175.454,-169.598],[7139.99,-195.767],[7092.514,-205.348],[7050.329,-197.34],[7015.866,-175.175],[6992.7,-142.285],[6984.406,-101.244],[6992.557,-60.346],[7015.007,-27.17],[7048.613,-4.719],[7090.226,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7289.568,0],[7289.568,-201.916],[7244.38,-201.916],[7244.38,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7389.954,0],[7389.954,-38.896],[7278.986,-38.896],[7278.986,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7379.658,-84.084],[7379.658,-122.122],[7278.986,-122.122],[7278.986,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7388.238,-163.02],[7388.238,-201.916],[7278.986,-201.916],[7278.986,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7490.626,0],[7490.626,-201.916],[7445.438,-201.916],[7445.438,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7580.144,0],[7580.144,-39.468],[7480.33,-39.468],[7480.33,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7657.364,0],[7719.14,-167.31],[7702.552,-167.31],[7762.897,0],[7810.66,0],[7731.438,-201.916],[7690.54,-201.916],[7610.746,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7766.33,-36.322],[7766.33,-72.93],[7656.505,-72.93],[7656.505,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.394,5.148],[-6.006,9.63],[0,13.156],[6.006,9.63],[10.39,5.148],[12.772,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.672,-4.384],[0,-6.292],[2.668,-4.384],[4.478,-2.19],[5.528,0],[0,0],[0,0]],"o":[[12.772,0],[10.39,-5.148],[6.006,-9.626],[0,-13.344],[-6.006,-9.626],[-10.394,-5.148],[0,0],[0,0],[0,0],[5.528,0],[4.478,2.194],[2.668,4.388],[0,6.104],[-2.672,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[7941.647,-73.502],[7976.396,-81.224],[8000.993,-103.389],[8010.001,-137.566],[8000.993,-172.029],[7976.396,-194.194],[7941.647,-201.916],[7891.598,-201.916],[7891.598,-166.738],[7935.07,-166.738],[7950.084,-163.449],[7960.81,-153.582],[7964.813,-137.566],[7960.81,-121.836],[7950.084,-111.969],[7935.07,-108.68],[7891.598,-108.68],[7891.598,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7902.18,0],[7902.18,-201.916],[7856.992,-201.916],[7856.992,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8169.589,0],[8203.338,-201.916],[8167.301,-201.916],[8134.125,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8212.489,-57.486],[8212.489,-88.946],[8052.33,-88.946],[8052.33,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8105.525,0],[8138.702,-201.916],[8102.952,-201.916],[8069.489,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8221.928,-117.26],[8221.928,-148.72],[8062.054,-148.72],[8062.054,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8346.338,0],[8346.338,-201.916],[8301.436,-201.916],[8301.436,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8343.478,-163.592],[8343.478,-201.916],[8262.539,-201.916],[8262.539,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.484,10.202],[0,13.54],[4.764,8.866],[8.294,4.862],[10.296,0],[4.764,-1.046],[5.527,-1.524],[0,0],[-4.004,0.478],[-3.624,0],[-5.626,-2.382],[-3.053,-4.384],[0,-6.48],[3.047,-4.478],[5.148,-2.476],[6.864,0],[7.052,3.244],[3.62,5.34],[0,0],[-11.632,-4.764],[-14.112,0]],"o":[[11.819,-5.814],[6.479,-10.198],[0,-12.012],[-4.769,-8.866],[-8.294,-4.862],[-4.196,0],[-4.769,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.624,0],[5.622,2.386],[3.047,4.388],[0,6.292],[-3.053,4.482],[-5.147,2.48],[-7.628,0],[-7.056,-3.24],[0,0],[8.008,9.152],[11.628,4.764],[15.823,0]],"v":[[8504.21,-5.577],[8531.666,-29.601],[8541.39,-65.208],[8534.24,-96.525],[8514.648,-117.117],[8486.764,-124.41],[8473.322,-122.837],[8457.878,-118.976],[8437.857,-93.808],[8447.868,-95.953],[8459.308,-96.668],[8479.185,-93.093],[8492.198,-82.94],[8496.773,-66.638],[8492.198,-50.479],[8479.899,-40.04],[8461.882,-36.322],[8439.859,-41.184],[8423.844,-54.054],[8394.672,-24.882],[8424.13,-4.004],[8462.74,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8486.764,-118.976],[8537.672,-176.748],[8487.05,-176.462],[8437.857,-119.262],[8437.857,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8502.208,-163.592],[8537.672,-176.748],[8537.672,-201.916],[8407.256,-201.916],[8407.256,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8664.656,0],[8664.656,-201.916],[8619.754,-201.916],[8619.754,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8661.796,-163.592],[8661.796,-201.916],[8580.857,-201.916],[8580.857,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.527,9.536],[10.296,5.148],[13.916,0],[12.298,-6.864],[8.195,-13.536],[0,0],[-6.39,4.29],[-8.009,0],[-5.055,-4.478],[0,-7.816],[1.238,-3.526],[2.954,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.815,-7.816],[4.67,-6.48],[2.003,-6.766],[0,-12.772],[-5.533,-9.532],[-10.296,-5.148],[-16.208,0],[-12.298,6.864],[0,0],[5.907,-9.724],[6.386,-4.29],[8.008,0],[5.05,4.482],[0,3.432],[-1.242,3.53],[-2.958,3.91],[0,0],[0,0]],"v":[[8771.048,-24.596],[8825.103,-78.078],[8843.835,-99.528],[8853.845,-119.405],[8856.849,-141.856],[8848.555,-175.318],[8824.816,-197.34],[8788.494,-205.062],[8745.737,-194.766],[8714.992,-164.164],[8745.309,-137.852],[8763.755,-158.873],[8785.349,-165.308],[8804.939,-158.587],[8812.519,-140.14],[8810.659,-129.701],[8804.367,-118.547],[8793.07,-105.248],[8715.564,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8861.139,0],[8861.139,-38.324],[8753.603,-38.324],[8715.564,-25.168],[8715.564,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9022.156,0],[9055.904,-201.916],[9019.868,-201.916],[8986.691,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9065.056,-57.486],[9065.056,-88.946],[8904.896,-88.946],[8904.896,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8958.092,0],[8991.268,-201.916],[8955.518,-201.916],[8922.056,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9074.494,-117.26],[9074.494,-148.72],[8914.62,-148.72],[8914.62,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[9160.58,0],[9222.355,-167.31],[9205.768,-167.31],[9266.114,0],[9313.876,0],[9234.654,-201.916],[9193.756,-201.916],[9113.962,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9269.546,-36.322],[9269.546,-72.93],[9159.722,-72.93],[9159.722,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.536,9.152],[0,0],[7.623,-3.146],[10.296,0],[7.243,2.958],[5.335,5.626],[2.859,7.722],[0,9.536],[-2.86,7.82],[-5.341,5.532],[-7.249,2.958],[-8.771,0],[-7.534,-3.24],[-5.148,-5.72],[0,0],[12.485,5.148],[16.017,0],[12.772,-5.242],[9.626,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.63,-9.532],[-12.87,-5.242],[-15.063,0]],"o":[[12.584,-5.05],[0,0],[-5.34,5.912],[-7.629,3.146],[-8.771,0],[-7.249,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.152],[2.859,-7.816],[5.335,-5.528],[7.243,-2.954],[9.912,0],[7.53,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.256,0],[-12.775,5.246],[-9.63,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.626,9.536],[12.87,5.242],[16.588,0]],"v":[[9488.908,-4.433],[9522.084,-25.74],[9491.481,-56.342],[9472.034,-42.757],[9445.149,-38.038],[9421.126,-42.471],[9402.25,-55.341],[9389.952,-75.361],[9385.662,-101.244],[9389.952,-126.698],[9402.25,-146.718],[9421.126,-159.445],[9445.149,-163.878],[9471.318,-159.016],[9490.338,-145.574],[9520.653,-176.176],[9487.907,-197.34],[9445.149,-205.062],[9403.107,-197.197],[9369.503,-175.318],[9347.052,-142.285],[9339.044,-101.244],[9347.052,-60.203],[9369.503,-26.884],[9403.251,-4.719],[9445.149,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[9598.16,0],[9659.936,-167.31],[9643.348,-167.31],[9703.694,0],[9751.456,0],[9672.234,-201.916],[9631.336,-201.916],[9551.542,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9707.126,-36.322],[9707.126,-72.93],[9597.302,-72.93],[9597.302,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.202,5.246],[-5.435,8.772],[0,11.06],[9.151,9.916],[17.159,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.151,4.768],[12.964,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.243,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.288,-4.004],[0,-4.956],[4.956,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.3,0],[10.197,-5.242],[5.434,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.632,-3.24],[8.008,-8.482],[0,-9.532],[-4.674,-8.008],[-9.152,-4.764],[0,0],[0,0],[0,0],[7.243,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.72,0],[4.099,2.288],[2.288,4.004],[0,7.628],[-4.96,5.054],[0,0],[0,0],[0,0]],"v":[[9884.16,0],[9920.911,-7.865],[9944.363,-28.886],[9952.514,-58.63],[9938.786,-95.238],[9899.318,-114.972],[9898.174,-99.814],[9933.638,-117.403],[9945.65,-149.292],[9938.643,-175.604],[9917.908,-194.766],[9884.732,-201.916],[9832.394,-201.916],[9832.394,-166.738],[9876.152,-166.738],[9893.884,-161.161],[9900.748,-144.716],[9893.884,-127.842],[9876.152,-122.408],[9832.394,-122.408],[9832.394,-88.088],[9879.87,-88.088],[9894.599,-84.656],[9904.18,-75.218],[9907.612,-61.776],[9900.176,-42.757],[9879.87,-35.178],[9832.394,-35.178],[9832.394,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9842.404,0],[9842.404,-201.916],[9797.788,-201.916],[9797.788,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10113.818,0],[10147.566,-201.916],[10111.53,-201.916],[10078.354,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10156.718,-57.486],[10156.718,-88.946],[9996.558,-88.946],[9996.558,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10049.754,0],[10082.93,-201.916],[10047.18,-201.916],[10013.718,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10166.156,-117.26],[10166.156,-148.72],[10006.282,-148.72],[10006.282,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.296,4.96],[-5.721,8.866],[0,12.204],[5.622,8.964],[10.104,5.054],[13.535,0],[0,0],[0,0],[0,0],[-4.862,-4.764],[0,-7.244],[4.956,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.916,0],[10.296,-4.956],[5.72,-8.866],[0,-11.44],[-5.626,-8.96],[-10.108,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.862,4.768],[0,7.628],[-4.96,4.482],[0,0],[0,0],[0,0]],"v":[[10301.72,-82.94],[10338.042,-90.376],[10362.066,-111.111],[10370.646,-142.714],[10362.209,-173.316],[10338.614,-194.337],[10303.15,-201.916],[10255.102,-201.916],[10255.102,-166.738],[10298.002,-166.738],[10318.451,-159.588],[10325.744,-141.57],[10318.308,-123.409],[10297.716,-116.688],[10255.102,-116.688],[10255.102,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10265.684,0],[10265.684,-201.916],[10220.496,-201.916],[10220.496,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10383.802,0],[10308.87,-98.384],[10267.4,-86.944],[10330.32,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10473.033,0],[10473.033,-201.916],[10427.846,-201.916],[10427.846,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10573.42,0],[10573.42,-38.896],[10462.451,-38.896],[10462.451,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10563.124,-84.084],[10563.124,-122.122],[10462.451,-122.122],[10462.451,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10571.703,-163.02],[10571.703,-201.916],[10462.451,-201.916],[10462.451,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[10741.874,-13.299],[10762.466,-58.63],[10757.175,-85.228],[10743.59,-102.96],[10725.143,-114.543],[10704.837,-122.408],[10686.247,-129.272],[10672.662,-137.423],[10667.514,-149.578],[10674.378,-162.305],[10692.968,-166.738],[10713.703,-162.162],[10732.149,-148.148],[10761.607,-177.606],[10732.722,-197.626],[10693.826,-205.062],[10656.932,-198.055],[10631.621,-177.606],[10622.611,-145.288],[10627.76,-119.834],[10641.345,-102.96],[10659.935,-91.806],[10680.098,-83.941],[10698.688,-76.934],[10712.272,-68.068],[10717.277,-54.912],[10709.413,-40.469],[10687.534,-35.178],[10659.935,-41.327],[10638.342,-58.63],[10609.17,-29.458],[10641.631,-4.862],[10684.674,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10860.85,0],[10860.85,-201.916],[10815.662,-201.916],[10815.662,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10961.236,0],[10961.236,-38.896],[10850.268,-38.896],[10850.268,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10950.94,-84.084],[10950.94,-122.122],[10850.268,-122.122],[10850.268,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10959.52,-163.02],[10959.52,-201.916],[10850.268,-201.916],[10850.268,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11105.666,0],[11105.666,-199.342],[11060.191,-199.342],[11060.191,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11168.586,-162.448],[11168.586,-201.916],[10996.985,-201.916],[10996.985,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11263.823,0],[11263.823,-201.916],[11218.636,-201.916],[11218.636,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11372.789,0],[11372.789,-161.59],[11359.348,-201.916],[11327.602,-201.916],[11327.602,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11478.323,-49.478],[11359.348,-201.916],[11348.193,-152.438],[11466.884,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11500.346,0],[11500.346,-201.916],[11454.871,-201.916],[11454.871,-40.326],[11466.884,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.055,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.06,0],[12.869,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.631,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[11645.634,0],[11687.533,-7.436],[11721.138,-28.457],[11743.445,-60.489],[11751.454,-100.958],[11743.445,-141.856],[11720.995,-173.745],[11687.247,-194.623],[11645.062,-201.916],[11593.296,-201.916],[11593.296,-162.448],[11644.49,-162.448],[11676.093,-155.155],[11697.257,-133.991],[11704.836,-101.244],[11697.399,-68.211],[11676.379,-46.904],[11644.49,-39.468],[11594.726,-39.468],[11594.726,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11609.025,0],[11609.025,-201.916],[11563.838,-201.916],[11563.838,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.341,12.682],[0,14.684],[5.242,12.682],[9.725,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.969,-5.336],[-15.257,0]],"o":[[12.771,-5.336],[9.532,-9.438],[5.335,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.725,9.536],[12.964,5.336],[15.06,0]],"v":[[11943.073,-4.576],[11976.535,-26.741],[11998.844,-59.917],[12006.852,-100.958],[11998.986,-142.285],[11976.535,-175.461],[11942.645,-197.483],[11900.745,-205.348],[11858.417,-197.483],[11824.669,-175.461],[11802.361,-142.428],[11794.354,-101.244],[11802.361,-60.203],[11824.955,-26.884],[11858.989,-4.576],[11901.317,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.96,9.438],[-9.059,5.246],[-12.012,0],[-7.437,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.335,5.626],[2.859,7.722],[0,12.584],[-5.055,9.536],[-8.964,5.34],[-8.964,0]],"v":[[11876.292,-42.185],[11857.273,-55.055],[11844.976,-75.218],[11840.686,-101.244],[11848.121,-134.277],[11869.143,-156.299],[11900.745,-164.164],[11925.056,-159.731],[11944.218,-146.861],[11956.516,-126.841],[11960.806,-101.244],[11953.227,-68.068],[11932.205,-45.76],[11900.745,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12105.808,0],[12105.808,-161.59],[12092.366,-201.916],[12060.62,-201.916],[12060.62,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12211.342,-49.478],[12092.366,-201.916],[12081.212,-152.438],[12199.902,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12233.364,0],[12233.364,-201.916],[12187.89,-201.916],[12187.89,-40.326],[12199.902,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12342.043,0],[12342.043,-201.916],[12296.855,-201.916],[12296.855,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12442.43,0],[12442.43,-38.896],[12331.461,-38.896],[12331.461,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12432.134,-84.084],[12432.134,-122.122],[12331.461,-122.122],[12331.461,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12440.713,-163.02],[12440.713,-201.916],[12331.461,-201.916],[12331.461,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[12610.884,-13.299],[12631.476,-58.63],[12626.185,-85.228],[12612.6,-102.96],[12594.152,-114.543],[12573.847,-122.408],[12555.257,-129.272],[12541.672,-137.423],[12536.523,-149.578],[12543.388,-162.305],[12561.978,-166.738],[12582.713,-162.162],[12601.159,-148.148],[12630.617,-177.606],[12601.731,-197.626],[12562.836,-205.062],[12525.941,-198.055],[12500.631,-177.606],[12491.621,-145.288],[12496.77,-119.834],[12510.354,-102.96],[12528.944,-91.806],[12549.107,-83.941],[12567.697,-76.934],[12581.282,-68.068],[12586.287,-54.912],[12578.423,-40.469],[12556.544,-35.178],[12528.944,-41.327],[12507.352,-58.63],[12478.18,-29.458],[12510.641,-4.862],[12553.684,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12729.859,0],[12729.859,-201.916],[12684.672,-201.916],[12684.672,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12825.384,0],[12887.159,-167.31],[12870.571,-167.31],[12930.918,0],[12978.68,0],[12899.458,-201.916],[12858.56,-201.916],[12778.766,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12934.35,-36.322],[12934.35,-72.93],[12824.525,-72.93],[12824.525,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13135.122,0],[13168.87,-201.916],[13132.834,-201.916],[13099.657,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13178.021,-57.486],[13178.021,-88.946],[13017.861,-88.946],[13017.861,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13071.058,0],[13104.233,-201.916],[13068.483,-201.916],[13035.021,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13187.46,-117.26],[13187.46,-148.72],[13027.586,-148.72],[13027.586,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13286.987,0],[13286.987,-201.916],[13241.8,-201.916],[13241.8,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13395.953,0],[13395.953,-161.59],[13382.512,-201.916],[13350.766,-201.916],[13350.766,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13501.487,-49.478],[13382.512,-201.916],[13371.357,-152.438],[13490.048,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13523.51,0],[13523.51,-201.916],[13478.035,-201.916],[13478.035,-40.326],[13490.048,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.055,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.06,0],[12.869,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.631,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[13668.798,0],[13710.697,-7.436],[13744.302,-28.457],[13766.609,-60.489],[13774.618,-100.958],[13766.609,-141.856],[13744.159,-173.745],[13710.411,-194.623],[13668.226,-201.916],[13616.46,-201.916],[13616.46,-162.448],[13667.654,-162.448],[13699.257,-155.155],[13720.421,-133.991],[13728,-101.244],[13720.563,-68.211],[13699.543,-46.904],[13667.654,-39.468],[13617.89,-39.468],[13617.89,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13632.189,0],[13632.189,-201.916],[13587.002,-201.916],[13587.002,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.341,12.682],[0,14.684],[5.242,12.682],[9.725,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.969,-5.336],[-15.257,0]],"o":[[12.771,-5.336],[9.532,-9.438],[5.335,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.725,9.536],[12.964,5.336],[15.06,0]],"v":[[13966.237,-4.576],[13999.699,-26.741],[14022.008,-59.917],[14030.016,-100.958],[14022.15,-142.285],[13999.699,-175.461],[13965.809,-197.483],[13923.909,-205.348],[13881.581,-197.483],[13847.833,-175.461],[13825.525,-142.428],[13817.518,-101.244],[13825.525,-60.203],[13848.119,-26.884],[13882.153,-4.576],[13924.481,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.96,9.438],[-9.059,5.246],[-12.012,0],[-7.437,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.335,5.626],[2.859,7.722],[0,12.584],[-5.055,9.536],[-8.964,5.34],[-8.964,0]],"v":[[13899.456,-42.185],[13880.438,-55.055],[13868.14,-75.218],[13863.85,-101.244],[13871.285,-134.277],[13892.307,-156.299],[13923.909,-164.164],[13948.22,-159.731],[13967.382,-146.861],[13979.68,-126.841],[13983.97,-101.244],[13976.391,-68.068],[13955.369,-45.76],[13923.909,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14128.971,0],[14128.971,-161.59],[14115.529,-201.916],[14083.783,-201.916],[14083.783,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14234.505,-49.478],[14115.529,-201.916],[14104.375,-152.438],[14223.065,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14256.527,0],[14256.527,-201.916],[14211.053,-201.916],[14211.053,-40.326],[14223.065,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14365.207,0],[14365.207,-201.916],[14320.02,-201.916],[14320.02,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14465.594,0],[14465.594,-38.896],[14354.625,-38.896],[14354.625,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14455.298,-84.084],[14455.298,-122.122],[14354.625,-122.122],[14354.625,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14463.877,-163.02],[14463.877,-201.916],[14354.625,-201.916],[14354.625,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[14634.048,-13.299],[14654.64,-58.63],[14649.349,-85.228],[14635.764,-102.96],[14617.316,-114.543],[14597.011,-122.408],[14578.421,-129.272],[14564.836,-137.423],[14559.688,-149.578],[14566.552,-162.305],[14585.142,-166.738],[14605.877,-162.162],[14624.323,-148.148],[14653.781,-177.606],[14624.896,-197.626],[14586,-205.062],[14549.105,-198.055],[14523.795,-177.606],[14514.785,-145.288],[14519.934,-119.834],[14533.519,-102.96],[14552.108,-91.806],[14572.271,-83.941],[14590.861,-76.934],[14604.446,-68.068],[14609.451,-54.912],[14601.587,-40.469],[14579.708,-35.178],[14552.108,-41.327],[14530.516,-58.63],[14501.344,-29.458],[14533.805,-4.862],[14576.848,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14753.022,0],[14753.022,-201.916],[14707.835,-201.916],[14707.835,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14848.548,0],[14910.323,-167.31],[14893.735,-167.31],[14954.082,0],[15001.844,0],[14922.622,-201.916],[14881.724,-201.916],[14801.93,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14957.514,-36.322],[14957.514,-72.93],[14847.689,-72.93],[14847.689,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.351,8.486],[-8.679,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.478,-8.58],[8.294,-4.478],[11.628,0],[8.96,5.434],[5.148,9.536],[0,12.396],[-5.247,9.438],[-9.345,5.246],[-11.825,0],[-8.866,-4.29],[-6.292,-8.388],[0,0],[14.3,6.39],[17.348,0],[13.058,-5.336],[9.911,-9.438],[5.527,-12.486],[0,-14.872],[-5.434,-12.584],[-9.536,-9.532],[-12.87,-5.434],[-14.871,0]],"o":[[15.346,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.294,4.482],[-11.632,0],[-8.964,-5.434],[-5.147,-9.532],[0,-12.584],[5.241,-9.438],[9.339,-5.242],[10.867,0],[8.866,4.29],[0,0],[-9.344,-11.056],[-14.3,-6.386],[-15.063,0],[-13.062,5.34],[-9.916,9.438],[-5.532,12.49],[0,14.684],[5.435,12.584],[9.532,9.536],[12.87,5.434],[20.021,0]],"v":[[15185.885,-9.295],[15221.921,-46.904],[15234.934,-107.822],[15234.934,-114.4],[15128.827,-114.4],[15128.827,-76.362],[15218.918,-74.932],[15188.888,-94.952],[15182.167,-64.064],[15163.005,-44.473],[15133.117,-37.752],[15102.229,-45.903],[15081.065,-68.354],[15073.344,-101.244],[15081.209,-134.277],[15103.088,-156.299],[15134.834,-164.164],[15164.435,-157.729],[15187.172,-138.71],[15218.06,-169.598],[15182.596,-195.767],[15135.119,-205.348],[15092.935,-197.34],[15058.472,-175.175],[15035.306,-142.285],[15027.012,-101.244],[15035.162,-60.346],[15057.613,-27.17],[15091.219,-4.719],[15132.831,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15332.173,0],[15332.173,-201.916],[15286.985,-201.916],[15286.985,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15432.56,0],[15432.56,-38.896],[15321.591,-38.896],[15321.591,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15422.264,-84.084],[15422.264,-122.122],[15321.591,-122.122],[15321.591,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15430.843,-163.02],[15430.843,-201.916],[15321.591,-201.916],[15321.591,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15533.23,0],[15533.23,-201.916],[15488.043,-201.916],[15488.043,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15622.749,0],[15622.749,-39.468],[15522.935,-39.468],[15522.935,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15699.97,0],[15761.745,-167.31],[15745.157,-167.31],[15805.504,0],[15853.266,0],[15774.044,-201.916],[15733.146,-201.916],[15653.352,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15808.936,-36.322],[15808.936,-72.93],[15699.111,-72.93],[15699.111,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.395,5.148],[-6.006,9.63],[0,13.156],[6.006,9.63],[10.39,5.148],[12.771,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.673,-4.384],[0,-6.292],[2.667,-4.384],[4.478,-2.19],[5.527,0],[0,0],[0,0]],"o":[[12.771,0],[10.39,-5.148],[6.006,-9.626],[0,-13.344],[-6.006,-9.626],[-10.395,-5.148],[0,0],[0,0],[0,0],[5.527,0],[4.478,2.194],[2.667,4.388],[0,6.104],[-2.673,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[15984.254,-73.502],[16019.003,-81.224],[16043.599,-103.389],[16052.607,-137.566],[16043.599,-172.029],[16019.003,-194.194],[15984.254,-201.916],[15934.203,-201.916],[15934.203,-166.738],[15977.676,-166.738],[15992.69,-163.449],[16003.416,-153.582],[16007.42,-137.566],[16003.416,-121.836],[15992.69,-111.969],[15977.676,-108.68],[15934.203,-108.68],[15934.203,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15944.785,0],[15944.785,-201.916],[15899.598,-201.916],[15899.598,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16212.195,0],[16245.943,-201.916],[16209.907,-201.916],[16176.73,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16255.095,-57.486],[16255.095,-88.946],[16094.935,-88.946],[16094.935,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16148.131,0],[16181.307,-201.916],[16145.557,-201.916],[16112.095,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16264.533,-117.26],[16264.533,-148.72],[16104.659,-148.72],[16104.659,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16388.943,0],[16388.943,-201.916],[16344.041,-201.916],[16344.041,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16386.082,-163.592],[16386.082,-201.916],[16305.145,-201.916],[16305.145,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.482,10.202],[0,13.54],[4.764,8.866],[8.293,4.862],[10.295,0],[4.764,-1.046],[5.527,-1.524],[0,0],[-4.004,0.478],[-3.623,0],[-5.625,-2.382],[-3.053,-4.384],[0,-6.48],[3.047,-4.478],[5.148,-2.476],[6.863,0],[7.051,3.244],[3.619,5.34],[0,0],[-11.633,-4.764],[-14.111,0]],"o":[[11.82,-5.814],[6.48,-10.198],[0,-12.012],[-4.768,-8.866],[-8.295,-4.862],[-4.197,0],[-4.768,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.623,0],[5.621,2.386],[3.047,4.388],[0,6.292],[-3.053,4.482],[-5.148,2.48],[-7.629,0],[-7.057,-3.24],[0,0],[8.01,9.152],[11.627,4.764],[15.824,0]],"v":[[16546.814,-5.577],[16574.27,-29.601],[16583.994,-65.208],[16576.844,-96.525],[16557.254,-117.117],[16529.369,-124.41],[16515.926,-122.837],[16500.482,-118.976],[16480.463,-93.808],[16490.473,-95.953],[16501.912,-96.668],[16521.789,-93.093],[16534.803,-82.94],[16539.379,-66.638],[16534.803,-50.479],[16522.504,-40.04],[16504.486,-36.322],[16482.465,-41.184],[16466.449,-54.054],[16437.275,-24.882],[16466.734,-4.004],[16505.344,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16529.369,-118.976],[16580.275,-176.748],[16529.654,-176.462],[16480.463,-119.262],[16480.463,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16544.812,-163.592],[16580.275,-176.748],[16580.275,-201.916],[16449.859,-201.916],[16449.859,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16707.262,0],[16707.262,-201.916],[16662.359,-201.916],[16662.359,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16704.4,-163.592],[16704.4,-201.916],[16623.463,-201.916],[16623.463,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.529,9.536],[10.297,5.148],[13.914,0],[12.299,-6.864],[8.195,-13.536],[0,0],[-6.391,4.29],[-8.008,0],[-5.053,-4.478],[0,-7.816],[1.238,-3.526],[2.953,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.816,-7.816],[4.67,-6.48],[2.002,-6.766],[0,-12.772],[-5.531,-9.532],[-10.295,-5.148],[-16.209,0],[-12.299,6.864],[0,0],[5.908,-9.724],[6.387,-4.29],[8.008,0],[5.051,4.482],[0,3.432],[-1.242,3.53],[-2.959,3.91],[0,0],[0,0]],"v":[[16813.652,-24.596],[16867.707,-78.078],[16886.439,-99.528],[16896.449,-119.405],[16899.453,-141.856],[16891.158,-175.318],[16867.42,-197.34],[16831.1,-205.062],[16788.342,-194.766],[16757.598,-164.164],[16787.912,-137.852],[16806.359,-158.873],[16827.953,-165.308],[16847.543,-158.587],[16855.123,-140.14],[16853.264,-129.701],[16846.973,-118.547],[16835.674,-105.248],[16758.168,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16903.742,0],[16903.742,-38.324],[16796.207,-38.324],[16758.168,-25.168],[16758.168,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17064.762,0],[17098.51,-201.916],[17062.473,-201.916],[17029.297,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17107.662,-57.486],[17107.662,-88.946],[16947.502,-88.946],[16947.502,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17000.697,0],[17033.873,-201.916],[16998.123,-201.916],[16964.662,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17117.1,-117.26],[17117.1,-148.72],[16957.225,-148.72],[16957.225,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[17203.186,0],[17264.961,-167.31],[17248.373,-167.31],[17308.719,0],[17356.48,0],[17277.26,-201.916],[17236.361,-201.916],[17156.566,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17312.15,-36.322],[17312.15,-72.93],[17202.328,-72.93],[17202.328,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.537,9.152],[0,0],[7.625,-3.146],[10.295,0],[7.244,2.958],[5.336,5.626],[2.861,7.722],[0,9.536],[-2.859,7.82],[-5.34,5.532],[-7.248,2.958],[-8.773,0],[-7.533,-3.24],[-5.148,-5.72],[0,0],[12.486,5.148],[16.016,0],[12.771,-5.242],[9.627,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.629,-9.532],[-12.869,-5.242],[-15.064,0]],"o":[[12.584,-5.05],[0,0],[-5.342,5.912],[-7.627,3.146],[-8.773,0],[-7.248,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.152],[2.861,-7.816],[5.336,-5.528],[7.244,-2.954],[9.91,0],[7.529,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.258,0],[-12.775,5.246],[-9.629,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.627,9.536],[12.871,5.242],[16.588,0]],"v":[[17531.514,-4.433],[17564.689,-25.74],[17534.088,-56.342],[17514.639,-42.757],[17487.756,-38.038],[17463.73,-42.471],[17444.855,-55.341],[17432.557,-75.361],[17428.268,-101.244],[17432.557,-126.698],[17444.855,-146.718],[17463.73,-159.445],[17487.756,-163.878],[17513.924,-159.016],[17532.943,-145.574],[17563.26,-176.176],[17530.512,-197.34],[17487.756,-205.062],[17445.713,-197.197],[17412.107,-175.318],[17389.656,-142.285],[17381.648,-101.244],[17389.656,-60.203],[17412.107,-26.884],[17445.855,-4.719],[17487.756,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[17640.766,0],[17702.541,-167.31],[17685.953,-167.31],[17746.299,0],[17794.061,0],[17714.84,-201.916],[17673.941,-201.916],[17594.146,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17749.73,-36.322],[17749.73,-72.93],[17639.908,-72.93],[17639.908,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.203,5.246],[-5.434,8.772],[0,11.06],[9.152,9.916],[17.16,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.152,4.768],[12.965,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.244,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.289,-4.004],[0,-4.956],[4.955,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.301,0],[10.197,-5.242],[5.436,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.631,-3.24],[8.008,-8.482],[0,-9.532],[-4.676,-8.008],[-9.15,-4.764],[0,0],[0,0],[0,0],[7.244,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.721,0],[4.098,2.288],[2.287,4.004],[0,7.628],[-4.961,5.054],[0,0],[0,0],[0,0]],"v":[[17926.764,0],[17963.516,-7.865],[17986.967,-28.886],[17995.119,-58.63],[17981.391,-95.238],[17941.922,-114.972],[17940.779,-99.814],[17976.242,-117.403],[17988.254,-149.292],[17981.248,-175.604],[17960.512,-194.766],[17927.336,-201.916],[17874.998,-201.916],[17874.998,-166.738],[17918.756,-166.738],[17936.488,-161.161],[17943.352,-144.716],[17936.488,-127.842],[17918.756,-122.408],[17874.998,-122.408],[17874.998,-88.088],[17922.475,-88.088],[17937.203,-84.656],[17946.785,-75.218],[17950.217,-61.776],[17942.781,-42.757],[17922.475,-35.178],[17874.998,-35.178],[17874.998,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17885.008,0],[17885.008,-201.916],[17840.393,-201.916],[17840.393,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18156.422,0],[18190.17,-201.916],[18154.133,-201.916],[18120.957,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18199.322,-57.486],[18199.322,-88.946],[18039.162,-88.946],[18039.162,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18092.357,0],[18125.533,-201.916],[18089.783,-201.916],[18056.322,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18208.76,-117.26],[18208.76,-148.72],[18048.885,-148.72],[18048.885,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":91,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.295,4.96],[-5.721,8.866],[0,12.204],[5.621,8.964],[10.105,5.054],[13.535,0],[0,0],[0,0],[0,0],[-4.861,-4.764],[0,-7.244],[4.955,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.914,0],[10.297,-4.956],[5.719,-8.866],[0,-11.44],[-5.627,-8.96],[-10.107,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.861,4.768],[0,7.628],[-4.961,4.482],[0,0],[0,0],[0,0]],"v":[[18344.324,-82.94],[18380.645,-90.376],[18404.67,-111.111],[18413.25,-142.714],[18404.812,-173.316],[18381.217,-194.337],[18345.754,-201.916],[18297.705,-201.916],[18297.705,-166.738],[18340.605,-166.738],[18361.055,-159.588],[18368.348,-141.57],[18360.912,-123.409],[18340.32,-116.688],[18297.705,-116.688],[18297.705,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18308.287,0],[18308.287,-201.916],[18263.1,-201.916],[18263.1,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18426.406,0],[18351.473,-98.384],[18310.004,-86.944],[18372.924,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":92,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18515.639,0],[18515.639,-201.916],[18470.451,-201.916],[18470.451,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18616.025,0],[18616.025,-38.896],[18505.057,-38.896],[18505.057,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18605.729,-84.084],[18605.729,-122.122],[18505.057,-122.122],[18505.057,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18614.309,-163.02],[18614.309,-201.916],[18505.057,-201.916],[18505.057,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":93,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[18784.479,-13.299],[18805.07,-58.63],[18799.779,-85.228],[18786.195,-102.96],[18767.748,-114.543],[18747.441,-122.408],[18728.852,-129.272],[18715.268,-137.423],[18710.119,-149.578],[18716.982,-162.305],[18735.572,-166.738],[18756.309,-162.162],[18774.756,-148.148],[18804.213,-177.606],[18775.328,-197.626],[18736.432,-205.062],[18699.537,-198.055],[18674.227,-177.606],[18665.217,-145.288],[18670.365,-119.834],[18683.951,-102.96],[18702.541,-91.806],[18722.703,-83.941],[18741.293,-76.934],[18754.879,-68.068],[18759.883,-54.912],[18752.018,-40.469],[18730.139,-35.178],[18702.541,-41.327],[18680.947,-58.63],[18651.775,-29.458],[18684.236,-4.862],[18727.279,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":94,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18903.453,0],[18903.453,-201.916],[18858.266,-201.916],[18858.266,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19003.84,0],[19003.84,-38.896],[18892.871,-38.896],[18892.871,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18993.543,-84.084],[18993.543,-122.122],[18892.871,-122.122],[18892.871,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19002.123,-163.02],[19002.123,-201.916],[18892.871,-201.916],[18892.871,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":95,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19148.27,0],[19148.27,-199.342],[19102.797,-199.342],[19102.797,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19211.189,-162.448],[19211.189,-201.916],[19039.59,-201.916],[19039.59,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":96,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19306.428,0],[19306.428,-201.916],[19261.24,-201.916],[19261.24,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":97,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19415.393,0],[19415.393,-161.59],[19401.951,-201.916],[19370.205,-201.916],[19370.205,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19520.928,-49.478],[19401.951,-201.916],[19390.797,-152.438],[19509.486,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19542.949,0],[19542.949,-201.916],[19497.475,-201.916],[19497.475,-40.326],[19509.486,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":98,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.871,4.96],[-9.537,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.627,9.058],[12.871,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.053,-9.246],[0,-12.584],[4.955,-9.246],[9.053,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.061,0],[12.869,-4.956],[9.531,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.629,-9.054],[-12.869,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.053,4.862],[5.051,9.25],[0,12.776],[-4.961,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[19688.236,0],[19730.137,-7.436],[19763.742,-28.457],[19786.049,-60.489],[19794.057,-100.958],[19786.049,-141.856],[19763.598,-173.745],[19729.85,-194.623],[19687.666,-201.916],[19635.898,-201.916],[19635.898,-162.448],[19687.094,-162.448],[19718.697,-155.155],[19739.859,-133.991],[19747.439,-101.244],[19740.004,-68.211],[19718.982,-46.904],[19687.094,-39.468],[19637.33,-39.468],[19637.33,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19651.629,0],[19651.629,-201.916],[19606.441,-201.916],[19606.441,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":99,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.775,5.336],[-9.537,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.723,9.438],[12.871,5.246],[15.061,0],[12.965,-5.242],[9.531,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.725,-9.532],[-12.969,-5.336],[-15.256,0]],"o":[[12.771,-5.336],[9.531,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.725,-9.438],[-12.869,-5.242],[-15.256,0],[-12.969,5.246],[-9.535,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.723,9.536],[12.965,5.336],[15.061,0]],"v":[[19985.678,-4.576],[20019.141,-26.741],[20041.447,-59.917],[20049.455,-100.958],[20041.59,-142.285],[20019.141,-175.461],[19985.248,-197.483],[19943.35,-205.348],[19901.021,-197.483],[19867.273,-175.461],[19844.965,-142.428],[19836.957,-101.244],[19844.965,-60.203],[19867.561,-26.884],[19901.594,-4.576],[19943.922,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.961,9.438],[-9.057,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.34],[5.051,-9.532],[8.959,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.859,-7.816],[0,-12.584],[4.955,-9.438],[9.055,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.861,7.722],[0,12.584],[-5.053,9.536],[-8.965,5.34],[-8.965,0]],"v":[[19918.896,-42.185],[19899.877,-55.055],[19887.58,-75.218],[19883.289,-101.244],[19890.727,-134.277],[19911.746,-156.299],[19943.35,-164.164],[19967.66,-159.731],[19986.822,-146.861],[19999.119,-126.841],[20003.41,-101.244],[19995.83,-68.068],[19974.811,-45.76],[19943.35,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":100,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20148.412,0],[20148.412,-161.59],[20134.971,-201.916],[20103.225,-201.916],[20103.225,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20253.947,-49.478],[20134.971,-201.916],[20123.816,-152.438],[20242.506,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20275.969,0],[20275.969,-201.916],[20230.494,-201.916],[20230.494,-40.326],[20242.506,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":101,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20384.646,0],[20384.646,-201.916],[20339.459,-201.916],[20339.459,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20485.033,0],[20485.033,-38.896],[20374.064,-38.896],[20374.064,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20474.736,-84.084],[20474.736,-122.122],[20374.064,-122.122],[20374.064,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20483.316,-163.02],[20483.316,-201.916],[20374.064,-201.916],[20374.064,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":102,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[20653.486,-13.299],[20674.078,-58.63],[20668.787,-85.228],[20655.203,-102.96],[20636.756,-114.543],[20616.449,-122.408],[20597.859,-129.272],[20584.275,-137.423],[20579.127,-149.578],[20585.99,-162.305],[20604.58,-166.738],[20625.316,-162.162],[20643.764,-148.148],[20673.221,-177.606],[20644.336,-197.626],[20605.439,-205.062],[20568.545,-198.055],[20543.234,-177.606],[20534.225,-145.288],[20539.373,-119.834],[20552.959,-102.96],[20571.549,-91.806],[20591.711,-83.941],[20610.301,-76.934],[20623.887,-68.068],[20628.891,-54.912],[20621.025,-40.469],[20599.146,-35.178],[20571.549,-41.327],[20549.955,-58.63],[20520.783,-29.458],[20553.244,-4.862],[20596.287,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":103,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20772.463,0],[20772.463,-201.916],[20727.275,-201.916],[20727.275,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":104,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20867.988,0],[20929.764,-167.31],[20913.176,-167.31],[20973.521,0],[21021.283,0],[20942.062,-201.916],[20901.164,-201.916],[20821.369,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20976.953,-36.322],[20976.953,-72.93],[20867.131,-72.93],[20867.131,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":105,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21177.727,0],[21211.475,-201.916],[21175.438,-201.916],[21142.262,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21220.627,-57.486],[21220.627,-88.946],[21060.467,-88.946],[21060.467,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21113.662,0],[21146.838,-201.916],[21111.088,-201.916],[21077.627,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21230.064,-117.26],[21230.064,-148.72],[21070.189,-148.72],[21070.189,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":106,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21329.592,0],[21329.592,-201.916],[21284.404,-201.916],[21284.404,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":107,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21438.557,0],[21438.557,-161.59],[21425.115,-201.916],[21393.369,-201.916],[21393.369,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21544.092,-49.478],[21425.115,-201.916],[21413.961,-152.438],[21532.65,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21566.113,0],[21566.113,-201.916],[21520.639,-201.916],[21520.639,-40.326],[21532.65,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":108,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.871,4.96],[-9.537,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.627,9.058],[12.871,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.053,-9.246],[0,-12.584],[4.955,-9.246],[9.053,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.061,0],[12.869,-4.956],[9.531,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.629,-9.054],[-12.869,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.053,4.862],[5.051,9.25],[0,12.776],[-4.961,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[21711.4,0],[21753.301,-7.436],[21786.906,-28.457],[21809.213,-60.489],[21817.221,-100.958],[21809.213,-141.856],[21786.762,-173.745],[21753.014,-194.623],[21710.83,-201.916],[21659.062,-201.916],[21659.062,-162.448],[21710.258,-162.448],[21741.861,-155.155],[21763.023,-133.991],[21770.604,-101.244],[21763.168,-68.211],[21742.146,-46.904],[21710.258,-39.468],[21660.494,-39.468],[21660.494,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21674.793,0],[21674.793,-201.916],[21629.605,-201.916],[21629.605,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":109,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.775,5.336],[-9.537,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.723,9.438],[12.871,5.246],[15.061,0],[12.965,-5.242],[9.531,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.725,-9.532],[-12.969,-5.336],[-15.256,0]],"o":[[12.771,-5.336],[9.531,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.725,-9.438],[-12.869,-5.242],[-15.256,0],[-12.969,5.246],[-9.535,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.723,9.536],[12.965,5.336],[15.061,0]],"v":[[22008.842,-4.576],[22042.305,-26.741],[22064.611,-59.917],[22072.619,-100.958],[22064.754,-142.285],[22042.305,-175.461],[22008.412,-197.483],[21966.514,-205.348],[21924.186,-197.483],[21890.438,-175.461],[21868.129,-142.428],[21860.121,-101.244],[21868.129,-60.203],[21890.725,-26.884],[21924.758,-4.576],[21967.086,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.961,9.438],[-9.057,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.34],[5.051,-9.532],[8.959,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.859,-7.816],[0,-12.584],[4.955,-9.438],[9.055,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.861,7.722],[0,12.584],[-5.053,9.536],[-8.965,5.34],[-8.965,0]],"v":[[21942.061,-42.185],[21923.041,-55.055],[21910.744,-75.218],[21906.453,-101.244],[21913.891,-134.277],[21934.91,-156.299],[21966.514,-164.164],[21990.824,-159.731],[22009.986,-146.861],[22022.283,-126.841],[22026.574,-101.244],[22018.994,-68.068],[21997.975,-45.76],[21966.514,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":110,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22171.574,0],[22171.574,-161.59],[22158.133,-201.916],[22126.387,-201.916],[22126.387,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22277.109,-49.478],[22158.133,-201.916],[22146.979,-152.438],[22265.668,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22299.131,0],[22299.131,-201.916],[22253.656,-201.916],[22253.656,-40.326],[22265.668,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":111,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22407.811,0],[22407.811,-201.916],[22362.623,-201.916],[22362.623,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22508.197,0],[22508.197,-38.896],[22397.229,-38.896],[22397.229,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22497.9,-84.084],[22497.9,-122.122],[22397.229,-122.122],[22397.229,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22506.48,-163.02],[22506.48,-201.916],[22397.229,-201.916],[22397.229,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":112,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[22676.65,-13.299],[22697.242,-58.63],[22691.951,-85.228],[22678.367,-102.96],[22659.92,-114.543],[22639.613,-122.408],[22621.023,-129.272],[22607.439,-137.423],[22602.291,-149.578],[22609.154,-162.305],[22627.744,-166.738],[22648.48,-162.162],[22666.928,-148.148],[22696.385,-177.606],[22667.5,-197.626],[22628.604,-205.062],[22591.709,-198.055],[22566.398,-177.606],[22557.389,-145.288],[22562.537,-119.834],[22576.123,-102.96],[22594.713,-91.806],[22614.875,-83.941],[22633.465,-76.934],[22647.051,-68.068],[22652.055,-54.912],[22644.189,-40.469],[22622.311,-35.178],[22594.713,-41.327],[22573.119,-58.63],[22543.947,-29.458],[22576.408,-4.862],[22619.451,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":113,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22795.627,0],[22795.627,-201.916],[22750.439,-201.916],[22750.439,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":114,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22891.152,0],[22952.928,-167.31],[22936.34,-167.31],[22996.686,0],[23044.447,0],[22965.227,-201.916],[22924.328,-201.916],[22844.533,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23000.117,-36.322],[23000.117,-72.93],[22890.295,-72.93],[22890.295,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":115,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.35,8.486],[-8.678,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.477,-8.58],[8.293,-4.478],[11.627,0],[8.959,5.434],[5.148,9.536],[0,12.396],[-5.246,9.438],[-9.344,5.246],[-11.824,0],[-8.865,-4.29],[-6.291,-8.388],[0,0],[14.301,6.39],[17.348,0],[13.059,-5.336],[9.912,-9.438],[5.527,-12.486],[0,-14.872],[-5.436,-12.584],[-9.537,-9.532],[-12.869,-5.434],[-14.871,0]],"o":[[15.346,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.295,4.482],[-11.633,0],[-8.965,-5.434],[-5.148,-9.532],[0,-12.584],[5.242,-9.438],[9.34,-5.242],[10.869,0],[8.865,4.29],[0,0],[-9.344,-11.056],[-14.299,-6.386],[-15.064,0],[-13.062,5.34],[-9.916,9.438],[-5.533,12.49],[0,14.684],[5.434,12.584],[9.531,9.536],[12.871,5.434],[20.02,0]],"v":[[23228.488,-9.295],[23264.525,-46.904],[23277.537,-107.822],[23277.537,-114.4],[23171.432,-114.4],[23171.432,-76.362],[23261.521,-74.932],[23231.492,-94.952],[23224.771,-64.064],[23205.609,-44.473],[23175.723,-37.752],[23144.834,-45.903],[23123.67,-68.354],[23115.947,-101.244],[23123.812,-134.277],[23145.691,-156.299],[23177.438,-164.164],[23207.039,-157.729],[23229.775,-138.71],[23260.664,-169.598],[23225.199,-195.767],[23177.725,-205.348],[23135.539,-197.34],[23101.076,-175.175],[23077.91,-142.285],[23069.615,-101.244],[23077.768,-60.346],[23100.219,-27.17],[23133.822,-4.719],[23175.436,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":116,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23374.777,0],[23374.777,-201.916],[23329.59,-201.916],[23329.59,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23475.164,0],[23475.164,-38.896],[23364.195,-38.896],[23364.195,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23464.867,-84.084],[23464.867,-122.122],[23364.195,-122.122],[23364.195,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23473.447,-163.02],[23473.447,-201.916],[23364.195,-201.916],[23364.195,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":117,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23575.834,0],[23575.834,-201.916],[23530.646,-201.916],[23530.646,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23665.352,0],[23665.352,-39.468],[23565.539,-39.468],[23565.539,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":118,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[23742.574,0],[23804.35,-167.31],[23787.762,-167.31],[23848.107,0],[23895.869,0],[23816.648,-201.916],[23775.75,-201.916],[23695.955,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23851.539,-36.322],[23851.539,-72.93],[23741.717,-72.93],[23741.717,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":119,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.395,5.148],[-6.006,9.63],[0,13.156],[6.008,9.63],[10.391,5.148],[12.771,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.672,-4.384],[0,-6.292],[2.668,-4.384],[4.477,-2.19],[5.527,0],[0,0],[0,0]],"o":[[12.771,0],[10.391,-5.148],[6.008,-9.626],[0,-13.344],[-6.006,-9.626],[-10.395,-5.148],[0,0],[0,0],[0,0],[5.527,0],[4.477,2.194],[2.668,4.388],[0,6.104],[-2.672,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[24026.857,-73.502],[24061.605,-81.224],[24086.201,-103.389],[24095.211,-137.566],[24086.201,-172.029],[24061.605,-194.194],[24026.857,-201.916],[23976.807,-201.916],[23976.807,-166.738],[24020.279,-166.738],[24035.295,-163.449],[24046.02,-153.582],[24050.023,-137.566],[24046.02,-121.836],[24035.295,-111.969],[24020.279,-108.68],[23976.807,-108.68],[23976.807,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23987.389,0],[23987.389,-201.916],[23942.201,-201.916],[23942.201,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":120,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":450,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP 2 Outlines 2","ln":"INDONESIAGELAP","sr":1,"ks":{"o":{"k":[{"s":[5],"t":0,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}},{"s":[5],"t":449,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}}]},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[-8027.316,218.237,0],"to":[0,0,0],"ti":[0,0,0]},{"t":449,"s":[-6777.316,218.237,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[126.984,0],[160.732,-201.916],[124.696,-201.916],[91.52,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[169.884,-57.486],[169.884,-88.946],[9.724,-88.946],[9.724,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[62.92,0],[96.096,-201.916],[60.346,-201.916],[26.884,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[179.322,-117.26],[179.322,-148.72],[19.448,-148.72],[19.448,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[303.732,0],[303.732,-201.916],[258.83,-201.916],[258.83,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[300.872,-163.592],[300.872,-201.916],[219.934,-201.916],[219.934,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.484,10.202],[0,13.54],[4.764,8.866],[8.294,4.862],[10.296,0],[4.764,-1.046],[5.528,-1.524],[0,0],[-4.004,0.478],[-3.624,0],[-5.626,-2.382],[-3.052,-4.384],[0,-6.48],[3.048,-4.478],[5.148,-2.476],[6.864,0],[7.052,3.244],[3.62,5.34],[0,0],[-11.632,-4.764],[-14.112,0]],"o":[[11.82,-5.814],[6.48,-10.198],[0,-12.012],[-4.768,-8.866],[-8.294,-4.862],[-4.196,0],[-4.768,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.624,0],[5.622,2.386],[3.048,4.388],[0,6.292],[-3.052,4.482],[-5.148,2.48],[-7.628,0],[-7.056,-3.24],[0,0],[8.008,9.152],[11.628,4.764],[15.824,0]],"v":[[461.604,-5.577],[489.06,-29.601],[498.784,-65.208],[491.634,-96.525],[472.043,-117.117],[444.158,-124.41],[430.716,-122.837],[415.272,-118.976],[395.252,-93.808],[405.262,-95.953],[416.702,-96.668],[436.579,-93.093],[449.592,-82.94],[454.168,-66.638],[449.592,-50.479],[437.294,-40.04],[419.276,-36.322],[397.254,-41.184],[381.238,-54.054],[352.066,-24.882],[381.524,-4.004],[420.134,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[444.158,-118.976],[495.066,-176.748],[444.444,-176.462],[395.252,-119.262],[395.252,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[459.602,-163.592],[495.066,-176.748],[495.066,-201.916],[364.65,-201.916],[364.65,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[622.05,0],[622.05,-201.916],[577.148,-201.916],[577.148,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[619.19,-163.592],[619.19,-201.916],[538.252,-201.916],[538.252,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.528,9.536],[10.296,5.148],[13.916,0],[12.298,-6.864],[8.196,-13.536],[0,0],[-6.39,4.29],[-8.008,0],[-5.054,-4.478],[0,-7.816],[1.238,-3.526],[2.954,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.816,-7.816],[4.67,-6.48],[2.002,-6.766],[0,-12.772],[-5.532,-9.532],[-10.296,-5.148],[-16.208,0],[-12.298,6.864],[0,0],[5.908,-9.724],[6.386,-4.29],[8.008,0],[5.05,4.482],[0,3.432],[-1.242,3.53],[-2.958,3.91],[0,0],[0,0]],"v":[[728.442,-24.596],[782.496,-78.078],[801.229,-99.528],[811.239,-119.405],[814.242,-141.856],[805.948,-175.318],[782.21,-197.34],[745.888,-205.062],[703.131,-194.766],[672.386,-164.164],[702.702,-137.852],[721.149,-158.873],[742.742,-165.308],[762.333,-158.587],[769.912,-140.14],[768.053,-129.701],[761.761,-118.547],[750.464,-105.248],[672.958,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[818.532,0],[818.532,-38.324],[710.996,-38.324],[672.958,-25.168],[672.958,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[979.55,0],[1013.298,-201.916],[977.262,-201.916],[944.086,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1022.45,-57.486],[1022.45,-88.946],[862.29,-88.946],[862.29,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[915.486,0],[948.662,-201.916],[912.912,-201.916],[879.45,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1031.888,-117.26],[1031.888,-148.72],[872.014,-148.72],[872.014,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1117.974,0],[1179.75,-167.31],[1163.162,-167.31],[1223.508,0],[1271.27,0],[1192.048,-201.916],[1151.15,-201.916],[1071.356,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1226.94,-36.322],[1226.94,-72.93],[1117.116,-72.93],[1117.116,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.536,9.152],[0,0],[7.624,-3.146],[10.296,0],[7.244,2.958],[5.336,5.626],[2.86,7.722],[0,9.536],[-2.86,7.82],[-5.34,5.532],[-7.248,2.958],[-8.772,0],[-7.534,-3.24],[-5.148,-5.72],[0,0],[12.486,5.148],[16.016,0],[12.772,-5.242],[9.626,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.63,-9.532],[-12.87,-5.242],[-15.064,0]],"o":[[12.584,-5.05],[0,0],[-5.34,5.912],[-7.628,3.146],[-8.772,0],[-7.248,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.152],[2.86,-7.816],[5.336,-5.528],[7.244,-2.954],[9.912,0],[7.53,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.256,0],[-12.776,5.246],[-9.63,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.626,9.536],[12.87,5.242],[16.588,0]],"v":[[1446.302,-4.433],[1479.478,-25.74],[1448.876,-56.342],[1429.428,-42.757],[1402.544,-38.038],[1378.52,-42.471],[1359.644,-55.341],[1347.346,-75.361],[1343.056,-101.244],[1347.346,-126.698],[1359.644,-146.718],[1378.52,-159.445],[1402.544,-163.878],[1428.713,-159.016],[1447.732,-145.574],[1478.048,-176.176],[1445.301,-197.34],[1402.544,-205.062],[1360.502,-197.197],[1326.897,-175.318],[1304.446,-142.285],[1296.438,-101.244],[1304.446,-60.203],[1326.897,-26.884],[1360.645,-4.719],[1402.544,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1555.554,0],[1617.33,-167.31],[1600.742,-167.31],[1661.088,0],[1708.85,0],[1629.628,-201.916],[1588.73,-201.916],[1508.936,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1664.52,-36.322],[1664.52,-72.93],[1554.696,-72.93],[1554.696,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.202,5.246],[-5.434,8.772],[0,11.06],[9.152,9.916],[17.16,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.152,4.768],[12.964,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.244,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.288,-4.004],[0,-4.956],[4.956,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.3,0],[10.198,-5.242],[5.434,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.632,-3.24],[8.008,-8.482],[0,-9.532],[-4.674,-8.008],[-9.152,-4.764],[0,0],[0,0],[0,0],[7.244,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.72,0],[4.098,2.288],[2.288,4.004],[0,7.628],[-4.96,5.054],[0,0],[0,0],[0,0]],"v":[[1841.554,0],[1878.305,-7.865],[1901.757,-28.886],[1909.908,-58.63],[1896.18,-95.238],[1856.712,-114.972],[1855.568,-99.814],[1891.032,-117.403],[1903.044,-149.292],[1896.037,-175.604],[1875.302,-194.766],[1842.126,-201.916],[1789.788,-201.916],[1789.788,-166.738],[1833.546,-166.738],[1851.278,-161.161],[1858.142,-144.716],[1851.278,-127.842],[1833.546,-122.408],[1789.788,-122.408],[1789.788,-88.088],[1837.264,-88.088],[1851.993,-84.656],[1861.574,-75.218],[1865.006,-61.776],[1857.57,-42.757],[1837.264,-35.178],[1789.788,-35.178],[1789.788,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1799.798,0],[1799.798,-201.916],[1755.182,-201.916],[1755.182,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2071.212,0],[2104.96,-201.916],[2068.924,-201.916],[2035.748,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2114.112,-57.486],[2114.112,-88.946],[1953.952,-88.946],[1953.952,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2007.148,0],[2040.324,-201.916],[2004.574,-201.916],[1971.112,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2123.55,-117.26],[2123.55,-148.72],[1963.676,-148.72],[1963.676,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.296,4.96],[-5.72,8.866],[0,12.204],[5.622,8.964],[10.104,5.054],[13.536,0],[0,0],[0,0],[0,0],[-4.862,-4.764],[0,-7.244],[4.956,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.916,0],[10.296,-4.956],[5.72,-8.866],[0,-11.44],[-5.626,-8.96],[-10.108,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.862,4.768],[0,7.628],[-4.96,4.482],[0,0],[0,0],[0,0]],"v":[[2259.114,-82.94],[2295.436,-90.376],[2319.46,-111.111],[2328.04,-142.714],[2319.603,-173.316],[2296.008,-194.337],[2260.544,-201.916],[2212.496,-201.916],[2212.496,-166.738],[2255.396,-166.738],[2275.845,-159.588],[2283.138,-141.57],[2275.702,-123.409],[2255.11,-116.688],[2212.496,-116.688],[2212.496,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2223.078,0],[2223.078,-201.916],[2177.89,-201.916],[2177.89,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2341.196,0],[2266.264,-98.384],[2224.794,-86.944],[2287.714,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2430.428,0],[2430.428,-201.916],[2385.24,-201.916],[2385.24,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2530.814,0],[2530.814,-38.896],[2419.846,-38.896],[2419.846,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2520.518,-84.084],[2520.518,-122.122],[2419.846,-122.122],[2419.846,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2529.098,-163.02],[2529.098,-201.916],[2419.846,-201.916],[2419.846,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.334,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[2699.268,-13.299],[2719.86,-58.63],[2714.569,-85.228],[2700.984,-102.96],[2682.537,-114.543],[2662.231,-122.408],[2643.641,-129.272],[2630.056,-137.423],[2624.908,-149.578],[2631.772,-162.305],[2650.362,-166.738],[2671.097,-162.162],[2689.544,-148.148],[2719.002,-177.606],[2690.116,-197.626],[2651.22,-205.062],[2614.326,-198.055],[2589.015,-177.606],[2580.006,-145.288],[2585.154,-119.834],[2598.739,-102.96],[2617.329,-91.806],[2637.492,-83.941],[2656.082,-76.934],[2669.667,-68.068],[2674.672,-54.912],[2666.807,-40.469],[2644.928,-35.178],[2617.329,-41.327],[2595.736,-58.63],[2566.564,-29.458],[2599.025,-4.862],[2642.068,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2818.244,0],[2818.244,-201.916],[2773.056,-201.916],[2773.056,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2918.63,0],[2918.63,-38.896],[2807.662,-38.896],[2807.662,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2908.334,-84.084],[2908.334,-122.122],[2807.662,-122.122],[2807.662,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2916.914,-163.02],[2916.914,-201.916],[2807.662,-201.916],[2807.662,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3063.06,0],[3063.06,-199.342],[3017.586,-199.342],[3017.586,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3125.98,-162.448],[3125.98,-201.916],[2954.38,-201.916],[2954.38,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3221.218,0],[3221.218,-201.916],[3176.03,-201.916],[3176.03,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3330.184,0],[3330.184,-161.59],[3316.742,-201.916],[3284.996,-201.916],[3284.996,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3435.718,-49.478],[3316.742,-201.916],[3305.588,-152.438],[3424.278,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3457.74,0],[3457.74,-201.916],[3412.266,-201.916],[3412.266,-40.326],[3424.278,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.058,-4.862],[-5.054,-9.246],[0,-12.584],[4.956,-9.246],[9.053,-4.956],[12.2,0],[0,0],[0,0]],"o":[[15.06,0],[12.87,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.63,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.058,4.96],[0,0],[0,0],[0,0]],"v":[[3603.028,0],[3644.927,-7.436],[3678.532,-28.457],[3700.84,-60.489],[3708.848,-100.958],[3700.84,-141.856],[3678.389,-173.745],[3644.641,-194.623],[3602.456,-201.916],[3550.69,-201.916],[3550.69,-162.448],[3601.884,-162.448],[3633.487,-155.155],[3654.651,-133.991],[3662.23,-101.244],[3654.794,-68.211],[3633.773,-46.904],[3601.884,-39.468],[3552.12,-39.468],[3552.12,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3566.42,0],[3566.42,-201.916],[3521.232,-201.916],[3521.232,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.724,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.968,-5.336],[-15.256,0]],"o":[[12.772,-5.336],[9.532,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.724,9.536],[12.964,5.336],[15.06,0]],"v":[[3900.468,-4.576],[3933.93,-26.741],[3956.238,-59.917],[3964.246,-100.958],[3956.381,-142.285],[3933.93,-175.461],[3900.039,-197.483],[3858.14,-205.348],[3815.812,-197.483],[3782.064,-175.461],[3759.756,-142.428],[3751.748,-101.244],[3759.756,-60.203],[3782.35,-26.884],[3816.384,-4.576],[3858.712,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.86,7.82],[0,9.536],[-4.96,9.438],[-9.058,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.86,7.722],[0,12.584],[-5.054,9.536],[-8.964,5.34],[-8.964,0]],"v":[[3833.687,-42.185],[3814.668,-55.055],[3802.37,-75.218],[3798.08,-101.244],[3805.516,-134.277],[3826.537,-156.299],[3858.14,-164.164],[3882.45,-159.731],[3901.612,-146.861],[3913.91,-126.841],[3918.2,-101.244],[3910.621,-68.068],[3889.6,-45.76],[3858.14,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4063.202,0],[4063.202,-161.59],[4049.76,-201.916],[4018.014,-201.916],[4018.014,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4168.736,-49.478],[4049.76,-201.916],[4038.606,-152.438],[4157.296,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4190.758,0],[4190.758,-201.916],[4145.284,-201.916],[4145.284,-40.326],[4157.296,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4299.438,0],[4299.438,-201.916],[4254.25,-201.916],[4254.25,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4399.824,0],[4399.824,-38.896],[4288.856,-38.896],[4288.856,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4389.528,-84.084],[4389.528,-122.122],[4288.856,-122.122],[4288.856,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4398.108,-163.02],[4398.108,-201.916],[4288.856,-201.916],[4288.856,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.333,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[4568.278,-13.299],[4588.87,-58.63],[4583.579,-85.228],[4569.994,-102.96],[4551.547,-114.543],[4531.241,-122.408],[4512.651,-129.272],[4499.066,-137.423],[4493.918,-149.578],[4500.782,-162.305],[4519.372,-166.738],[4540.107,-162.162],[4558.554,-148.148],[4588.012,-177.606],[4559.126,-197.626],[4520.23,-205.062],[4483.336,-198.055],[4458.025,-177.606],[4449.016,-145.288],[4454.164,-119.834],[4467.749,-102.96],[4486.339,-91.806],[4506.502,-83.941],[4525.092,-76.934],[4538.677,-68.068],[4543.682,-54.912],[4535.817,-40.469],[4513.938,-35.178],[4486.339,-41.327],[4464.746,-58.63],[4435.574,-29.458],[4468.035,-4.862],[4511.078,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4687.254,0],[4687.254,-201.916],[4642.066,-201.916],[4642.066,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4782.778,0],[4844.554,-167.31],[4827.966,-167.31],[4888.312,0],[4936.074,0],[4856.852,-201.916],[4815.954,-201.916],[4736.16,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4891.744,-36.322],[4891.744,-72.93],[4781.92,-72.93],[4781.92,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5092.516,0],[5126.264,-201.916],[5090.228,-201.916],[5057.052,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5135.416,-57.486],[5135.416,-88.946],[4975.256,-88.946],[4975.256,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5028.452,0],[5061.628,-201.916],[5025.878,-201.916],[4992.416,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5144.854,-117.26],[5144.854,-148.72],[4984.98,-148.72],[4984.98,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5244.382,0],[5244.382,-201.916],[5199.194,-201.916],[5199.194,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5353.348,0],[5353.348,-161.59],[5339.906,-201.916],[5308.16,-201.916],[5308.16,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5458.882,-49.478],[5339.906,-201.916],[5328.752,-152.438],[5447.442,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5480.904,0],[5480.904,-201.916],[5435.43,-201.916],[5435.43,-40.326],[5447.442,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.335,12.204],[9.626,9.058],[12.87,4.862],[15.251,0],[0,0],[0,0],[0,0],[-9.058,-4.862],[-5.054,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.2,0],[0,0],[0,0]],"o":[[15.06,0],[12.87,-4.956],[9.532,-9.054],[5.335,-12.298],[0,-15.06],[-5.34,-12.2],[-9.63,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.058,4.96],[0,0],[0,0],[0,0]],"v":[[5626.192,0],[5668.091,-7.436],[5701.696,-28.457],[5724.004,-60.489],[5732.012,-100.958],[5724.004,-141.856],[5701.553,-173.745],[5667.805,-194.623],[5625.62,-201.916],[5573.854,-201.916],[5573.854,-162.448],[5625.048,-162.448],[5656.651,-155.155],[5677.815,-133.991],[5685.394,-101.244],[5677.958,-68.211],[5656.937,-46.904],[5625.048,-39.468],[5575.284,-39.468],[5575.284,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5589.584,0],[5589.584,-201.916],[5544.396,-201.916],[5544.396,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.724,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.335,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.968,-5.336],[-15.256,0]],"o":[[12.772,-5.336],[9.532,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.537,9.438],[-5.34,12.584],[0,14.684],[5.335,12.682],[9.724,9.536],[12.964,5.336],[15.06,0]],"v":[[5923.632,-4.576],[5957.094,-26.741],[5979.402,-59.917],[5987.41,-100.958],[5979.545,-142.285],[5957.094,-175.461],[5923.203,-197.483],[5881.304,-205.348],[5838.976,-197.483],[5805.228,-175.461],[5782.92,-142.428],[5774.912,-101.244],[5782.92,-60.203],[5805.514,-26.884],[5839.548,-4.576],[5881.876,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.337,2.958],[5.335,5.626],[2.86,7.82],[0,9.536],[-4.96,9.438],[-9.058,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.34],[5.049,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.86,7.722],[0,12.584],[-5.054,9.536],[-8.964,5.34],[-8.964,0]],"v":[[5856.851,-42.185],[5837.832,-55.055],[5825.534,-75.218],[5821.244,-101.244],[5828.68,-134.277],[5849.701,-156.299],[5881.304,-164.164],[5905.614,-159.731],[5924.776,-146.861],[5937.074,-126.841],[5941.364,-101.244],[5933.785,-68.068],[5912.764,-45.76],[5881.304,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6086.366,0],[6086.366,-161.59],[6072.924,-201.916],[6041.178,-201.916],[6041.178,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6191.899,-49.478],[6072.924,-201.916],[6061.77,-152.438],[6180.459,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6213.921,0],[6213.921,-201.916],[6168.448,-201.916],[6168.448,-40.326],[6180.459,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6322.602,0],[6322.602,-201.916],[6277.414,-201.916],[6277.414,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6422.988,0],[6422.988,-38.896],[6312.02,-38.896],[6312.02,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6412.692,-84.084],[6412.692,-122.122],[6312.02,-122.122],[6312.02,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6421.272,-163.02],[6421.272,-201.916],[6312.02,-201.916],[6312.02,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.333,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[6591.441,-13.299],[6612.034,-58.63],[6606.743,-85.228],[6593.158,-102.96],[6574.71,-114.543],[6554.405,-122.408],[6535.814,-129.272],[6522.229,-137.423],[6517.082,-149.578],[6523.946,-162.305],[6542.536,-166.738],[6563.271,-162.162],[6581.718,-148.148],[6611.176,-177.606],[6582.29,-197.626],[6543.394,-205.062],[6506.5,-198.055],[6481.188,-177.606],[6472.18,-145.288],[6477.328,-119.834],[6490.913,-102.96],[6509.502,-91.806],[6529.666,-83.941],[6548.256,-76.934],[6561.841,-68.068],[6566.846,-54.912],[6558.98,-40.469],[6537.102,-35.178],[6509.502,-41.327],[6487.91,-58.63],[6458.738,-29.458],[6491.199,-4.862],[6534.242,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6710.418,0],[6710.418,-201.916],[6665.23,-201.916],[6665.23,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6805.942,0],[6867.718,-167.31],[6851.13,-167.31],[6911.476,0],[6959.238,0],[6880.016,-201.916],[6839.118,-201.916],[6759.324,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6914.908,-36.322],[6914.908,-72.93],[6805.083,-72.93],[6805.083,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.351,8.486],[-8.678,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.478,-8.58],[8.294,-4.478],[11.627,0],[8.96,5.434],[5.148,9.536],[0,12.396],[-5.246,9.438],[-9.344,5.246],[-11.824,0],[-8.866,-4.29],[-6.292,-8.388],[0,0],[14.3,6.39],[17.348,0],[13.058,-5.336],[9.912,-9.438],[5.528,-12.486],[0,-14.872],[-5.434,-12.584],[-9.536,-9.532],[-12.87,-5.434],[-14.872,0]],"o":[[15.345,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.294,4.482],[-11.632,0],[-8.964,-5.434],[-5.148,-9.532],[0,-12.584],[5.242,-9.438],[9.34,-5.242],[10.868,0],[8.866,4.29],[0,0],[-9.344,-11.056],[-14.3,-6.386],[-15.064,0],[-13.062,5.34],[-9.917,9.438],[-5.532,12.49],[0,14.684],[5.434,12.584],[9.532,9.536],[12.87,5.434],[20.02,0]],"v":[[7143.279,-9.295],[7179.314,-46.904],[7192.328,-107.822],[7192.328,-114.4],[7086.222,-114.4],[7086.222,-76.362],[7176.312,-74.932],[7146.282,-94.952],[7139.561,-64.064],[7120.398,-44.473],[7090.512,-37.752],[7059.624,-45.903],[7038.459,-68.354],[7030.738,-101.244],[7038.603,-134.277],[7060.481,-156.299],[7092.228,-164.164],[7121.829,-157.729],[7144.565,-138.71],[7175.454,-169.598],[7139.99,-195.767],[7092.514,-205.348],[7050.329,-197.34],[7015.866,-175.175],[6992.7,-142.285],[6984.406,-101.244],[6992.557,-60.346],[7015.007,-27.17],[7048.613,-4.719],[7090.226,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7289.568,0],[7289.568,-201.916],[7244.38,-201.916],[7244.38,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7389.954,0],[7389.954,-38.896],[7278.986,-38.896],[7278.986,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7379.658,-84.084],[7379.658,-122.122],[7278.986,-122.122],[7278.986,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7388.238,-163.02],[7388.238,-201.916],[7278.986,-201.916],[7278.986,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7490.626,0],[7490.626,-201.916],[7445.438,-201.916],[7445.438,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7580.144,0],[7580.144,-39.468],[7480.33,-39.468],[7480.33,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7657.364,0],[7719.14,-167.31],[7702.552,-167.31],[7762.897,0],[7810.66,0],[7731.438,-201.916],[7690.54,-201.916],[7610.746,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7766.33,-36.322],[7766.33,-72.93],[7656.505,-72.93],[7656.505,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.394,5.148],[-6.006,9.63],[0,13.156],[6.006,9.63],[10.39,5.148],[12.772,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.672,-4.384],[0,-6.292],[2.668,-4.384],[4.478,-2.19],[5.528,0],[0,0],[0,0]],"o":[[12.772,0],[10.39,-5.148],[6.006,-9.626],[0,-13.344],[-6.006,-9.626],[-10.394,-5.148],[0,0],[0,0],[0,0],[5.528,0],[4.478,2.194],[2.668,4.388],[0,6.104],[-2.672,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[7941.647,-73.502],[7976.396,-81.224],[8000.993,-103.389],[8010.001,-137.566],[8000.993,-172.029],[7976.396,-194.194],[7941.647,-201.916],[7891.598,-201.916],[7891.598,-166.738],[7935.07,-166.738],[7950.084,-163.449],[7960.81,-153.582],[7964.813,-137.566],[7960.81,-121.836],[7950.084,-111.969],[7935.07,-108.68],[7891.598,-108.68],[7891.598,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7902.18,0],[7902.18,-201.916],[7856.992,-201.916],[7856.992,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8169.589,0],[8203.338,-201.916],[8167.301,-201.916],[8134.125,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8212.489,-57.486],[8212.489,-88.946],[8052.33,-88.946],[8052.33,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8105.525,0],[8138.702,-201.916],[8102.952,-201.916],[8069.489,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8221.928,-117.26],[8221.928,-148.72],[8062.054,-148.72],[8062.054,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8346.338,0],[8346.338,-201.916],[8301.436,-201.916],[8301.436,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8343.478,-163.592],[8343.478,-201.916],[8262.539,-201.916],[8262.539,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.484,10.202],[0,13.54],[4.764,8.866],[8.294,4.862],[10.296,0],[4.764,-1.046],[5.527,-1.524],[0,0],[-4.004,0.478],[-3.624,0],[-5.626,-2.382],[-3.053,-4.384],[0,-6.48],[3.047,-4.478],[5.148,-2.476],[6.864,0],[7.052,3.244],[3.62,5.34],[0,0],[-11.632,-4.764],[-14.112,0]],"o":[[11.819,-5.814],[6.479,-10.198],[0,-12.012],[-4.769,-8.866],[-8.294,-4.862],[-4.196,0],[-4.769,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.624,0],[5.622,2.386],[3.047,4.388],[0,6.292],[-3.053,4.482],[-5.147,2.48],[-7.628,0],[-7.056,-3.24],[0,0],[8.008,9.152],[11.628,4.764],[15.823,0]],"v":[[8504.21,-5.577],[8531.666,-29.601],[8541.39,-65.208],[8534.24,-96.525],[8514.648,-117.117],[8486.764,-124.41],[8473.322,-122.837],[8457.878,-118.976],[8437.857,-93.808],[8447.868,-95.953],[8459.308,-96.668],[8479.185,-93.093],[8492.198,-82.94],[8496.773,-66.638],[8492.198,-50.479],[8479.899,-40.04],[8461.882,-36.322],[8439.859,-41.184],[8423.844,-54.054],[8394.672,-24.882],[8424.13,-4.004],[8462.74,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8486.764,-118.976],[8537.672,-176.748],[8487.05,-176.462],[8437.857,-119.262],[8437.857,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8502.208,-163.592],[8537.672,-176.748],[8537.672,-201.916],[8407.256,-201.916],[8407.256,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8664.656,0],[8664.656,-201.916],[8619.754,-201.916],[8619.754,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8661.796,-163.592],[8661.796,-201.916],[8580.857,-201.916],[8580.857,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.527,9.536],[10.296,5.148],[13.916,0],[12.298,-6.864],[8.195,-13.536],[0,0],[-6.39,4.29],[-8.009,0],[-5.055,-4.478],[0,-7.816],[1.238,-3.526],[2.954,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.815,-7.816],[4.67,-6.48],[2.003,-6.766],[0,-12.772],[-5.533,-9.532],[-10.296,-5.148],[-16.208,0],[-12.298,6.864],[0,0],[5.907,-9.724],[6.386,-4.29],[8.008,0],[5.05,4.482],[0,3.432],[-1.242,3.53],[-2.958,3.91],[0,0],[0,0]],"v":[[8771.048,-24.596],[8825.103,-78.078],[8843.835,-99.528],[8853.845,-119.405],[8856.849,-141.856],[8848.555,-175.318],[8824.816,-197.34],[8788.494,-205.062],[8745.737,-194.766],[8714.992,-164.164],[8745.309,-137.852],[8763.755,-158.873],[8785.349,-165.308],[8804.939,-158.587],[8812.519,-140.14],[8810.659,-129.701],[8804.367,-118.547],[8793.07,-105.248],[8715.564,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8861.139,0],[8861.139,-38.324],[8753.603,-38.324],[8715.564,-25.168],[8715.564,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9022.156,0],[9055.904,-201.916],[9019.868,-201.916],[8986.691,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9065.056,-57.486],[9065.056,-88.946],[8904.896,-88.946],[8904.896,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8958.092,0],[8991.268,-201.916],[8955.518,-201.916],[8922.056,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9074.494,-117.26],[9074.494,-148.72],[8914.62,-148.72],[8914.62,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[9160.58,0],[9222.355,-167.31],[9205.768,-167.31],[9266.114,0],[9313.876,0],[9234.654,-201.916],[9193.756,-201.916],[9113.962,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9269.546,-36.322],[9269.546,-72.93],[9159.722,-72.93],[9159.722,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.536,9.152],[0,0],[7.623,-3.146],[10.296,0],[7.243,2.958],[5.335,5.626],[2.859,7.722],[0,9.536],[-2.86,7.82],[-5.341,5.532],[-7.249,2.958],[-8.771,0],[-7.534,-3.24],[-5.148,-5.72],[0,0],[12.485,5.148],[16.017,0],[12.772,-5.242],[9.626,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.63,-9.532],[-12.87,-5.242],[-15.063,0]],"o":[[12.584,-5.05],[0,0],[-5.34,5.912],[-7.629,3.146],[-8.771,0],[-7.249,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.152],[2.859,-7.816],[5.335,-5.528],[7.243,-2.954],[9.912,0],[7.53,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.256,0],[-12.775,5.246],[-9.63,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.626,9.536],[12.87,5.242],[16.588,0]],"v":[[9488.908,-4.433],[9522.084,-25.74],[9491.481,-56.342],[9472.034,-42.757],[9445.149,-38.038],[9421.126,-42.471],[9402.25,-55.341],[9389.952,-75.361],[9385.662,-101.244],[9389.952,-126.698],[9402.25,-146.718],[9421.126,-159.445],[9445.149,-163.878],[9471.318,-159.016],[9490.338,-145.574],[9520.653,-176.176],[9487.907,-197.34],[9445.149,-205.062],[9403.107,-197.197],[9369.503,-175.318],[9347.052,-142.285],[9339.044,-101.244],[9347.052,-60.203],[9369.503,-26.884],[9403.251,-4.719],[9445.149,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[9598.16,0],[9659.936,-167.31],[9643.348,-167.31],[9703.694,0],[9751.456,0],[9672.234,-201.916],[9631.336,-201.916],[9551.542,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9707.126,-36.322],[9707.126,-72.93],[9597.302,-72.93],[9597.302,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.202,5.246],[-5.435,8.772],[0,11.06],[9.151,9.916],[17.159,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.151,4.768],[12.964,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.243,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.288,-4.004],[0,-4.956],[4.956,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.3,0],[10.197,-5.242],[5.434,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.632,-3.24],[8.008,-8.482],[0,-9.532],[-4.674,-8.008],[-9.152,-4.764],[0,0],[0,0],[0,0],[7.243,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.72,0],[4.099,2.288],[2.288,4.004],[0,7.628],[-4.96,5.054],[0,0],[0,0],[0,0]],"v":[[9884.16,0],[9920.911,-7.865],[9944.363,-28.886],[9952.514,-58.63],[9938.786,-95.238],[9899.318,-114.972],[9898.174,-99.814],[9933.638,-117.403],[9945.65,-149.292],[9938.643,-175.604],[9917.908,-194.766],[9884.732,-201.916],[9832.394,-201.916],[9832.394,-166.738],[9876.152,-166.738],[9893.884,-161.161],[9900.748,-144.716],[9893.884,-127.842],[9876.152,-122.408],[9832.394,-122.408],[9832.394,-88.088],[9879.87,-88.088],[9894.599,-84.656],[9904.18,-75.218],[9907.612,-61.776],[9900.176,-42.757],[9879.87,-35.178],[9832.394,-35.178],[9832.394,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9842.404,0],[9842.404,-201.916],[9797.788,-201.916],[9797.788,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10113.818,0],[10147.566,-201.916],[10111.53,-201.916],[10078.354,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10156.718,-57.486],[10156.718,-88.946],[9996.558,-88.946],[9996.558,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10049.754,0],[10082.93,-201.916],[10047.18,-201.916],[10013.718,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10166.156,-117.26],[10166.156,-148.72],[10006.282,-148.72],[10006.282,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.296,4.96],[-5.721,8.866],[0,12.204],[5.622,8.964],[10.104,5.054],[13.535,0],[0,0],[0,0],[0,0],[-4.862,-4.764],[0,-7.244],[4.956,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.916,0],[10.296,-4.956],[5.72,-8.866],[0,-11.44],[-5.626,-8.96],[-10.108,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.862,4.768],[0,7.628],[-4.96,4.482],[0,0],[0,0],[0,0]],"v":[[10301.72,-82.94],[10338.042,-90.376],[10362.066,-111.111],[10370.646,-142.714],[10362.209,-173.316],[10338.614,-194.337],[10303.15,-201.916],[10255.102,-201.916],[10255.102,-166.738],[10298.002,-166.738],[10318.451,-159.588],[10325.744,-141.57],[10318.308,-123.409],[10297.716,-116.688],[10255.102,-116.688],[10255.102,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10265.684,0],[10265.684,-201.916],[10220.496,-201.916],[10220.496,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10383.802,0],[10308.87,-98.384],[10267.4,-86.944],[10330.32,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10473.033,0],[10473.033,-201.916],[10427.846,-201.916],[10427.846,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10573.42,0],[10573.42,-38.896],[10462.451,-38.896],[10462.451,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10563.124,-84.084],[10563.124,-122.122],[10462.451,-122.122],[10462.451,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10571.703,-163.02],[10571.703,-201.916],[10462.451,-201.916],[10462.451,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[10741.874,-13.299],[10762.466,-58.63],[10757.175,-85.228],[10743.59,-102.96],[10725.143,-114.543],[10704.837,-122.408],[10686.247,-129.272],[10672.662,-137.423],[10667.514,-149.578],[10674.378,-162.305],[10692.968,-166.738],[10713.703,-162.162],[10732.149,-148.148],[10761.607,-177.606],[10732.722,-197.626],[10693.826,-205.062],[10656.932,-198.055],[10631.621,-177.606],[10622.611,-145.288],[10627.76,-119.834],[10641.345,-102.96],[10659.935,-91.806],[10680.098,-83.941],[10698.688,-76.934],[10712.272,-68.068],[10717.277,-54.912],[10709.413,-40.469],[10687.534,-35.178],[10659.935,-41.327],[10638.342,-58.63],[10609.17,-29.458],[10641.631,-4.862],[10684.674,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10860.85,0],[10860.85,-201.916],[10815.662,-201.916],[10815.662,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10961.236,0],[10961.236,-38.896],[10850.268,-38.896],[10850.268,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10950.94,-84.084],[10950.94,-122.122],[10850.268,-122.122],[10850.268,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10959.52,-163.02],[10959.52,-201.916],[10850.268,-201.916],[10850.268,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11105.666,0],[11105.666,-199.342],[11060.191,-199.342],[11060.191,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11168.586,-162.448],[11168.586,-201.916],[10996.985,-201.916],[10996.985,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11263.823,0],[11263.823,-201.916],[11218.636,-201.916],[11218.636,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11372.789,0],[11372.789,-161.59],[11359.348,-201.916],[11327.602,-201.916],[11327.602,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11478.323,-49.478],[11359.348,-201.916],[11348.193,-152.438],[11466.884,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11500.346,0],[11500.346,-201.916],[11454.871,-201.916],[11454.871,-40.326],[11466.884,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.055,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.06,0],[12.869,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.631,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[11645.634,0],[11687.533,-7.436],[11721.138,-28.457],[11743.445,-60.489],[11751.454,-100.958],[11743.445,-141.856],[11720.995,-173.745],[11687.247,-194.623],[11645.062,-201.916],[11593.296,-201.916],[11593.296,-162.448],[11644.49,-162.448],[11676.093,-155.155],[11697.257,-133.991],[11704.836,-101.244],[11697.399,-68.211],[11676.379,-46.904],[11644.49,-39.468],[11594.726,-39.468],[11594.726,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11609.025,0],[11609.025,-201.916],[11563.838,-201.916],[11563.838,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.341,12.682],[0,14.684],[5.242,12.682],[9.725,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.969,-5.336],[-15.257,0]],"o":[[12.771,-5.336],[9.532,-9.438],[5.335,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.725,9.536],[12.964,5.336],[15.06,0]],"v":[[11943.073,-4.576],[11976.535,-26.741],[11998.844,-59.917],[12006.852,-100.958],[11998.986,-142.285],[11976.535,-175.461],[11942.645,-197.483],[11900.745,-205.348],[11858.417,-197.483],[11824.669,-175.461],[11802.361,-142.428],[11794.354,-101.244],[11802.361,-60.203],[11824.955,-26.884],[11858.989,-4.576],[11901.317,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.96,9.438],[-9.059,5.246],[-12.012,0],[-7.437,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.335,5.626],[2.859,7.722],[0,12.584],[-5.055,9.536],[-8.964,5.34],[-8.964,0]],"v":[[11876.292,-42.185],[11857.273,-55.055],[11844.976,-75.218],[11840.686,-101.244],[11848.121,-134.277],[11869.143,-156.299],[11900.745,-164.164],[11925.056,-159.731],[11944.218,-146.861],[11956.516,-126.841],[11960.806,-101.244],[11953.227,-68.068],[11932.205,-45.76],[11900.745,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12105.808,0],[12105.808,-161.59],[12092.366,-201.916],[12060.62,-201.916],[12060.62,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12211.342,-49.478],[12092.366,-201.916],[12081.212,-152.438],[12199.902,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12233.364,0],[12233.364,-201.916],[12187.89,-201.916],[12187.89,-40.326],[12199.902,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12342.043,0],[12342.043,-201.916],[12296.855,-201.916],[12296.855,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12442.43,0],[12442.43,-38.896],[12331.461,-38.896],[12331.461,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12432.134,-84.084],[12432.134,-122.122],[12331.461,-122.122],[12331.461,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12440.713,-163.02],[12440.713,-201.916],[12331.461,-201.916],[12331.461,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[12610.884,-13.299],[12631.476,-58.63],[12626.185,-85.228],[12612.6,-102.96],[12594.152,-114.543],[12573.847,-122.408],[12555.257,-129.272],[12541.672,-137.423],[12536.523,-149.578],[12543.388,-162.305],[12561.978,-166.738],[12582.713,-162.162],[12601.159,-148.148],[12630.617,-177.606],[12601.731,-197.626],[12562.836,-205.062],[12525.941,-198.055],[12500.631,-177.606],[12491.621,-145.288],[12496.77,-119.834],[12510.354,-102.96],[12528.944,-91.806],[12549.107,-83.941],[12567.697,-76.934],[12581.282,-68.068],[12586.287,-54.912],[12578.423,-40.469],[12556.544,-35.178],[12528.944,-41.327],[12507.352,-58.63],[12478.18,-29.458],[12510.641,-4.862],[12553.684,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12729.859,0],[12729.859,-201.916],[12684.672,-201.916],[12684.672,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12825.384,0],[12887.159,-167.31],[12870.571,-167.31],[12930.918,0],[12978.68,0],[12899.458,-201.916],[12858.56,-201.916],[12778.766,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12934.35,-36.322],[12934.35,-72.93],[12824.525,-72.93],[12824.525,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13135.122,0],[13168.87,-201.916],[13132.834,-201.916],[13099.657,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13178.021,-57.486],[13178.021,-88.946],[13017.861,-88.946],[13017.861,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13071.058,0],[13104.233,-201.916],[13068.483,-201.916],[13035.021,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13187.46,-117.26],[13187.46,-148.72],[13027.586,-148.72],[13027.586,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13286.987,0],[13286.987,-201.916],[13241.8,-201.916],[13241.8,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13395.953,0],[13395.953,-161.59],[13382.512,-201.916],[13350.766,-201.916],[13350.766,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13501.487,-49.478],[13382.512,-201.916],[13371.357,-152.438],[13490.048,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13523.51,0],[13523.51,-201.916],[13478.035,-201.916],[13478.035,-40.326],[13490.048,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.055,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.06,0],[12.869,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.631,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[13668.798,0],[13710.697,-7.436],[13744.302,-28.457],[13766.609,-60.489],[13774.618,-100.958],[13766.609,-141.856],[13744.159,-173.745],[13710.411,-194.623],[13668.226,-201.916],[13616.46,-201.916],[13616.46,-162.448],[13667.654,-162.448],[13699.257,-155.155],[13720.421,-133.991],[13728,-101.244],[13720.563,-68.211],[13699.543,-46.904],[13667.654,-39.468],[13617.89,-39.468],[13617.89,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13632.189,0],[13632.189,-201.916],[13587.002,-201.916],[13587.002,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.341,12.682],[0,14.684],[5.242,12.682],[9.725,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.969,-5.336],[-15.257,0]],"o":[[12.771,-5.336],[9.532,-9.438],[5.335,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.725,9.536],[12.964,5.336],[15.06,0]],"v":[[13966.237,-4.576],[13999.699,-26.741],[14022.008,-59.917],[14030.016,-100.958],[14022.15,-142.285],[13999.699,-175.461],[13965.809,-197.483],[13923.909,-205.348],[13881.581,-197.483],[13847.833,-175.461],[13825.525,-142.428],[13817.518,-101.244],[13825.525,-60.203],[13848.119,-26.884],[13882.153,-4.576],[13924.481,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.96,9.438],[-9.059,5.246],[-12.012,0],[-7.437,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.335,5.626],[2.859,7.722],[0,12.584],[-5.055,9.536],[-8.964,5.34],[-8.964,0]],"v":[[13899.456,-42.185],[13880.438,-55.055],[13868.14,-75.218],[13863.85,-101.244],[13871.285,-134.277],[13892.307,-156.299],[13923.909,-164.164],[13948.22,-159.731],[13967.382,-146.861],[13979.68,-126.841],[13983.97,-101.244],[13976.391,-68.068],[13955.369,-45.76],[13923.909,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14128.971,0],[14128.971,-161.59],[14115.529,-201.916],[14083.783,-201.916],[14083.783,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14234.505,-49.478],[14115.529,-201.916],[14104.375,-152.438],[14223.065,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14256.527,0],[14256.527,-201.916],[14211.053,-201.916],[14211.053,-40.326],[14223.065,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14365.207,0],[14365.207,-201.916],[14320.02,-201.916],[14320.02,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14465.594,0],[14465.594,-38.896],[14354.625,-38.896],[14354.625,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14455.298,-84.084],[14455.298,-122.122],[14354.625,-122.122],[14354.625,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14463.877,-163.02],[14463.877,-201.916],[14354.625,-201.916],[14354.625,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[14634.048,-13.299],[14654.64,-58.63],[14649.349,-85.228],[14635.764,-102.96],[14617.316,-114.543],[14597.011,-122.408],[14578.421,-129.272],[14564.836,-137.423],[14559.688,-149.578],[14566.552,-162.305],[14585.142,-166.738],[14605.877,-162.162],[14624.323,-148.148],[14653.781,-177.606],[14624.896,-197.626],[14586,-205.062],[14549.105,-198.055],[14523.795,-177.606],[14514.785,-145.288],[14519.934,-119.834],[14533.519,-102.96],[14552.108,-91.806],[14572.271,-83.941],[14590.861,-76.934],[14604.446,-68.068],[14609.451,-54.912],[14601.587,-40.469],[14579.708,-35.178],[14552.108,-41.327],[14530.516,-58.63],[14501.344,-29.458],[14533.805,-4.862],[14576.848,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14753.022,0],[14753.022,-201.916],[14707.835,-201.916],[14707.835,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14848.548,0],[14910.323,-167.31],[14893.735,-167.31],[14954.082,0],[15001.844,0],[14922.622,-201.916],[14881.724,-201.916],[14801.93,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14957.514,-36.322],[14957.514,-72.93],[14847.689,-72.93],[14847.689,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.351,8.486],[-8.679,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.478,-8.58],[8.294,-4.478],[11.628,0],[8.96,5.434],[5.148,9.536],[0,12.396],[-5.247,9.438],[-9.345,5.246],[-11.825,0],[-8.866,-4.29],[-6.292,-8.388],[0,0],[14.3,6.39],[17.348,0],[13.058,-5.336],[9.911,-9.438],[5.527,-12.486],[0,-14.872],[-5.434,-12.584],[-9.536,-9.532],[-12.87,-5.434],[-14.871,0]],"o":[[15.346,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.294,4.482],[-11.632,0],[-8.964,-5.434],[-5.147,-9.532],[0,-12.584],[5.241,-9.438],[9.339,-5.242],[10.867,0],[8.866,4.29],[0,0],[-9.344,-11.056],[-14.3,-6.386],[-15.063,0],[-13.062,5.34],[-9.916,9.438],[-5.532,12.49],[0,14.684],[5.435,12.584],[9.532,9.536],[12.87,5.434],[20.021,0]],"v":[[15185.885,-9.295],[15221.921,-46.904],[15234.934,-107.822],[15234.934,-114.4],[15128.827,-114.4],[15128.827,-76.362],[15218.918,-74.932],[15188.888,-94.952],[15182.167,-64.064],[15163.005,-44.473],[15133.117,-37.752],[15102.229,-45.903],[15081.065,-68.354],[15073.344,-101.244],[15081.209,-134.277],[15103.088,-156.299],[15134.834,-164.164],[15164.435,-157.729],[15187.172,-138.71],[15218.06,-169.598],[15182.596,-195.767],[15135.119,-205.348],[15092.935,-197.34],[15058.472,-175.175],[15035.306,-142.285],[15027.012,-101.244],[15035.162,-60.346],[15057.613,-27.17],[15091.219,-4.719],[15132.831,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15332.173,0],[15332.173,-201.916],[15286.985,-201.916],[15286.985,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15432.56,0],[15432.56,-38.896],[15321.591,-38.896],[15321.591,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15422.264,-84.084],[15422.264,-122.122],[15321.591,-122.122],[15321.591,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15430.843,-163.02],[15430.843,-201.916],[15321.591,-201.916],[15321.591,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15533.23,0],[15533.23,-201.916],[15488.043,-201.916],[15488.043,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15622.749,0],[15622.749,-39.468],[15522.935,-39.468],[15522.935,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15699.97,0],[15761.745,-167.31],[15745.157,-167.31],[15805.504,0],[15853.266,0],[15774.044,-201.916],[15733.146,-201.916],[15653.352,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15808.936,-36.322],[15808.936,-72.93],[15699.111,-72.93],[15699.111,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.395,5.148],[-6.006,9.63],[0,13.156],[6.006,9.63],[10.39,5.148],[12.771,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.673,-4.384],[0,-6.292],[2.667,-4.384],[4.478,-2.19],[5.527,0],[0,0],[0,0]],"o":[[12.771,0],[10.39,-5.148],[6.006,-9.626],[0,-13.344],[-6.006,-9.626],[-10.395,-5.148],[0,0],[0,0],[0,0],[5.527,0],[4.478,2.194],[2.667,4.388],[0,6.104],[-2.673,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[15984.254,-73.502],[16019.003,-81.224],[16043.599,-103.389],[16052.607,-137.566],[16043.599,-172.029],[16019.003,-194.194],[15984.254,-201.916],[15934.203,-201.916],[15934.203,-166.738],[15977.676,-166.738],[15992.69,-163.449],[16003.416,-153.582],[16007.42,-137.566],[16003.416,-121.836],[15992.69,-111.969],[15977.676,-108.68],[15934.203,-108.68],[15934.203,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15944.785,0],[15944.785,-201.916],[15899.598,-201.916],[15899.598,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16212.195,0],[16245.943,-201.916],[16209.907,-201.916],[16176.73,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16255.095,-57.486],[16255.095,-88.946],[16094.935,-88.946],[16094.935,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16148.131,0],[16181.307,-201.916],[16145.557,-201.916],[16112.095,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16264.533,-117.26],[16264.533,-148.72],[16104.659,-148.72],[16104.659,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16388.943,0],[16388.943,-201.916],[16344.041,-201.916],[16344.041,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16386.082,-163.592],[16386.082,-201.916],[16305.145,-201.916],[16305.145,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.482,10.202],[0,13.54],[4.764,8.866],[8.293,4.862],[10.295,0],[4.764,-1.046],[5.527,-1.524],[0,0],[-4.004,0.478],[-3.623,0],[-5.625,-2.382],[-3.053,-4.384],[0,-6.48],[3.047,-4.478],[5.148,-2.476],[6.863,0],[7.051,3.244],[3.619,5.34],[0,0],[-11.633,-4.764],[-14.111,0]],"o":[[11.82,-5.814],[6.48,-10.198],[0,-12.012],[-4.768,-8.866],[-8.295,-4.862],[-4.197,0],[-4.768,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.623,0],[5.621,2.386],[3.047,4.388],[0,6.292],[-3.053,4.482],[-5.148,2.48],[-7.629,0],[-7.057,-3.24],[0,0],[8.01,9.152],[11.627,4.764],[15.824,0]],"v":[[16546.814,-5.577],[16574.27,-29.601],[16583.994,-65.208],[16576.844,-96.525],[16557.254,-117.117],[16529.369,-124.41],[16515.926,-122.837],[16500.482,-118.976],[16480.463,-93.808],[16490.473,-95.953],[16501.912,-96.668],[16521.789,-93.093],[16534.803,-82.94],[16539.379,-66.638],[16534.803,-50.479],[16522.504,-40.04],[16504.486,-36.322],[16482.465,-41.184],[16466.449,-54.054],[16437.275,-24.882],[16466.734,-4.004],[16505.344,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16529.369,-118.976],[16580.275,-176.748],[16529.654,-176.462],[16480.463,-119.262],[16480.463,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16544.812,-163.592],[16580.275,-176.748],[16580.275,-201.916],[16449.859,-201.916],[16449.859,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16707.262,0],[16707.262,-201.916],[16662.359,-201.916],[16662.359,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16704.4,-163.592],[16704.4,-201.916],[16623.463,-201.916],[16623.463,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.529,9.536],[10.297,5.148],[13.914,0],[12.299,-6.864],[8.195,-13.536],[0,0],[-6.391,4.29],[-8.008,0],[-5.053,-4.478],[0,-7.816],[1.238,-3.526],[2.953,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.816,-7.816],[4.67,-6.48],[2.002,-6.766],[0,-12.772],[-5.531,-9.532],[-10.295,-5.148],[-16.209,0],[-12.299,6.864],[0,0],[5.908,-9.724],[6.387,-4.29],[8.008,0],[5.051,4.482],[0,3.432],[-1.242,3.53],[-2.959,3.91],[0,0],[0,0]],"v":[[16813.652,-24.596],[16867.707,-78.078],[16886.439,-99.528],[16896.449,-119.405],[16899.453,-141.856],[16891.158,-175.318],[16867.42,-197.34],[16831.1,-205.062],[16788.342,-194.766],[16757.598,-164.164],[16787.912,-137.852],[16806.359,-158.873],[16827.953,-165.308],[16847.543,-158.587],[16855.123,-140.14],[16853.264,-129.701],[16846.973,-118.547],[16835.674,-105.248],[16758.168,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16903.742,0],[16903.742,-38.324],[16796.207,-38.324],[16758.168,-25.168],[16758.168,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17064.762,0],[17098.51,-201.916],[17062.473,-201.916],[17029.297,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17107.662,-57.486],[17107.662,-88.946],[16947.502,-88.946],[16947.502,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17000.697,0],[17033.873,-201.916],[16998.123,-201.916],[16964.662,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17117.1,-117.26],[17117.1,-148.72],[16957.225,-148.72],[16957.225,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[17203.186,0],[17264.961,-167.31],[17248.373,-167.31],[17308.719,0],[17356.48,0],[17277.26,-201.916],[17236.361,-201.916],[17156.566,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17312.15,-36.322],[17312.15,-72.93],[17202.328,-72.93],[17202.328,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.537,9.152],[0,0],[7.625,-3.146],[10.295,0],[7.244,2.958],[5.336,5.626],[2.861,7.722],[0,9.536],[-2.859,7.82],[-5.34,5.532],[-7.248,2.958],[-8.773,0],[-7.533,-3.24],[-5.148,-5.72],[0,0],[12.486,5.148],[16.016,0],[12.771,-5.242],[9.627,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.629,-9.532],[-12.869,-5.242],[-15.064,0]],"o":[[12.584,-5.05],[0,0],[-5.342,5.912],[-7.627,3.146],[-8.773,0],[-7.248,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.152],[2.861,-7.816],[5.336,-5.528],[7.244,-2.954],[9.91,0],[7.529,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.258,0],[-12.775,5.246],[-9.629,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.627,9.536],[12.871,5.242],[16.588,0]],"v":[[17531.514,-4.433],[17564.689,-25.74],[17534.088,-56.342],[17514.639,-42.757],[17487.756,-38.038],[17463.73,-42.471],[17444.855,-55.341],[17432.557,-75.361],[17428.268,-101.244],[17432.557,-126.698],[17444.855,-146.718],[17463.73,-159.445],[17487.756,-163.878],[17513.924,-159.016],[17532.943,-145.574],[17563.26,-176.176],[17530.512,-197.34],[17487.756,-205.062],[17445.713,-197.197],[17412.107,-175.318],[17389.656,-142.285],[17381.648,-101.244],[17389.656,-60.203],[17412.107,-26.884],[17445.855,-4.719],[17487.756,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[17640.766,0],[17702.541,-167.31],[17685.953,-167.31],[17746.299,0],[17794.061,0],[17714.84,-201.916],[17673.941,-201.916],[17594.146,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17749.73,-36.322],[17749.73,-72.93],[17639.908,-72.93],[17639.908,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.203,5.246],[-5.434,8.772],[0,11.06],[9.152,9.916],[17.16,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.152,4.768],[12.965,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.244,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.289,-4.004],[0,-4.956],[4.955,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.301,0],[10.197,-5.242],[5.436,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.631,-3.24],[8.008,-8.482],[0,-9.532],[-4.676,-8.008],[-9.15,-4.764],[0,0],[0,0],[0,0],[7.244,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.721,0],[4.098,2.288],[2.287,4.004],[0,7.628],[-4.961,5.054],[0,0],[0,0],[0,0]],"v":[[17926.764,0],[17963.516,-7.865],[17986.967,-28.886],[17995.119,-58.63],[17981.391,-95.238],[17941.922,-114.972],[17940.779,-99.814],[17976.242,-117.403],[17988.254,-149.292],[17981.248,-175.604],[17960.512,-194.766],[17927.336,-201.916],[17874.998,-201.916],[17874.998,-166.738],[17918.756,-166.738],[17936.488,-161.161],[17943.352,-144.716],[17936.488,-127.842],[17918.756,-122.408],[17874.998,-122.408],[17874.998,-88.088],[17922.475,-88.088],[17937.203,-84.656],[17946.785,-75.218],[17950.217,-61.776],[17942.781,-42.757],[17922.475,-35.178],[17874.998,-35.178],[17874.998,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17885.008,0],[17885.008,-201.916],[17840.393,-201.916],[17840.393,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18156.422,0],[18190.17,-201.916],[18154.133,-201.916],[18120.957,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18199.322,-57.486],[18199.322,-88.946],[18039.162,-88.946],[18039.162,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18092.357,0],[18125.533,-201.916],[18089.783,-201.916],[18056.322,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18208.76,-117.26],[18208.76,-148.72],[18048.885,-148.72],[18048.885,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":91,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.295,4.96],[-5.721,8.866],[0,12.204],[5.621,8.964],[10.105,5.054],[13.535,0],[0,0],[0,0],[0,0],[-4.861,-4.764],[0,-7.244],[4.955,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.914,0],[10.297,-4.956],[5.719,-8.866],[0,-11.44],[-5.627,-8.96],[-10.107,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.861,4.768],[0,7.628],[-4.961,4.482],[0,0],[0,0],[0,0]],"v":[[18344.324,-82.94],[18380.645,-90.376],[18404.67,-111.111],[18413.25,-142.714],[18404.812,-173.316],[18381.217,-194.337],[18345.754,-201.916],[18297.705,-201.916],[18297.705,-166.738],[18340.605,-166.738],[18361.055,-159.588],[18368.348,-141.57],[18360.912,-123.409],[18340.32,-116.688],[18297.705,-116.688],[18297.705,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18308.287,0],[18308.287,-201.916],[18263.1,-201.916],[18263.1,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18426.406,0],[18351.473,-98.384],[18310.004,-86.944],[18372.924,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":92,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18515.639,0],[18515.639,-201.916],[18470.451,-201.916],[18470.451,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18616.025,0],[18616.025,-38.896],[18505.057,-38.896],[18505.057,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18605.729,-84.084],[18605.729,-122.122],[18505.057,-122.122],[18505.057,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18614.309,-163.02],[18614.309,-201.916],[18505.057,-201.916],[18505.057,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":93,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[18784.479,-13.299],[18805.07,-58.63],[18799.779,-85.228],[18786.195,-102.96],[18767.748,-114.543],[18747.441,-122.408],[18728.852,-129.272],[18715.268,-137.423],[18710.119,-149.578],[18716.982,-162.305],[18735.572,-166.738],[18756.309,-162.162],[18774.756,-148.148],[18804.213,-177.606],[18775.328,-197.626],[18736.432,-205.062],[18699.537,-198.055],[18674.227,-177.606],[18665.217,-145.288],[18670.365,-119.834],[18683.951,-102.96],[18702.541,-91.806],[18722.703,-83.941],[18741.293,-76.934],[18754.879,-68.068],[18759.883,-54.912],[18752.018,-40.469],[18730.139,-35.178],[18702.541,-41.327],[18680.947,-58.63],[18651.775,-29.458],[18684.236,-4.862],[18727.279,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":94,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18903.453,0],[18903.453,-201.916],[18858.266,-201.916],[18858.266,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19003.84,0],[19003.84,-38.896],[18892.871,-38.896],[18892.871,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18993.543,-84.084],[18993.543,-122.122],[18892.871,-122.122],[18892.871,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19002.123,-163.02],[19002.123,-201.916],[18892.871,-201.916],[18892.871,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":95,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19148.27,0],[19148.27,-199.342],[19102.797,-199.342],[19102.797,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19211.189,-162.448],[19211.189,-201.916],[19039.59,-201.916],[19039.59,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":96,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19306.428,0],[19306.428,-201.916],[19261.24,-201.916],[19261.24,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":97,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19415.393,0],[19415.393,-161.59],[19401.951,-201.916],[19370.205,-201.916],[19370.205,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19520.928,-49.478],[19401.951,-201.916],[19390.797,-152.438],[19509.486,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19542.949,0],[19542.949,-201.916],[19497.475,-201.916],[19497.475,-40.326],[19509.486,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":98,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.871,4.96],[-9.537,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.627,9.058],[12.871,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.053,-9.246],[0,-12.584],[4.955,-9.246],[9.053,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.061,0],[12.869,-4.956],[9.531,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.629,-9.054],[-12.869,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.053,4.862],[5.051,9.25],[0,12.776],[-4.961,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[19688.236,0],[19730.137,-7.436],[19763.742,-28.457],[19786.049,-60.489],[19794.057,-100.958],[19786.049,-141.856],[19763.598,-173.745],[19729.85,-194.623],[19687.666,-201.916],[19635.898,-201.916],[19635.898,-162.448],[19687.094,-162.448],[19718.697,-155.155],[19739.859,-133.991],[19747.439,-101.244],[19740.004,-68.211],[19718.982,-46.904],[19687.094,-39.468],[19637.33,-39.468],[19637.33,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19651.629,0],[19651.629,-201.916],[19606.441,-201.916],[19606.441,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":99,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.775,5.336],[-9.537,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.723,9.438],[12.871,5.246],[15.061,0],[12.965,-5.242],[9.531,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.725,-9.532],[-12.969,-5.336],[-15.256,0]],"o":[[12.771,-5.336],[9.531,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.725,-9.438],[-12.869,-5.242],[-15.256,0],[-12.969,5.246],[-9.535,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.723,9.536],[12.965,5.336],[15.061,0]],"v":[[19985.678,-4.576],[20019.141,-26.741],[20041.447,-59.917],[20049.455,-100.958],[20041.59,-142.285],[20019.141,-175.461],[19985.248,-197.483],[19943.35,-205.348],[19901.021,-197.483],[19867.273,-175.461],[19844.965,-142.428],[19836.957,-101.244],[19844.965,-60.203],[19867.561,-26.884],[19901.594,-4.576],[19943.922,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.961,9.438],[-9.057,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.34],[5.051,-9.532],[8.959,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.859,-7.816],[0,-12.584],[4.955,-9.438],[9.055,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.861,7.722],[0,12.584],[-5.053,9.536],[-8.965,5.34],[-8.965,0]],"v":[[19918.896,-42.185],[19899.877,-55.055],[19887.58,-75.218],[19883.289,-101.244],[19890.727,-134.277],[19911.746,-156.299],[19943.35,-164.164],[19967.66,-159.731],[19986.822,-146.861],[19999.119,-126.841],[20003.41,-101.244],[19995.83,-68.068],[19974.811,-45.76],[19943.35,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":100,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20148.412,0],[20148.412,-161.59],[20134.971,-201.916],[20103.225,-201.916],[20103.225,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20253.947,-49.478],[20134.971,-201.916],[20123.816,-152.438],[20242.506,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20275.969,0],[20275.969,-201.916],[20230.494,-201.916],[20230.494,-40.326],[20242.506,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":101,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20384.646,0],[20384.646,-201.916],[20339.459,-201.916],[20339.459,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20485.033,0],[20485.033,-38.896],[20374.064,-38.896],[20374.064,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20474.736,-84.084],[20474.736,-122.122],[20374.064,-122.122],[20374.064,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20483.316,-163.02],[20483.316,-201.916],[20374.064,-201.916],[20374.064,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":102,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[20653.486,-13.299],[20674.078,-58.63],[20668.787,-85.228],[20655.203,-102.96],[20636.756,-114.543],[20616.449,-122.408],[20597.859,-129.272],[20584.275,-137.423],[20579.127,-149.578],[20585.99,-162.305],[20604.58,-166.738],[20625.316,-162.162],[20643.764,-148.148],[20673.221,-177.606],[20644.336,-197.626],[20605.439,-205.062],[20568.545,-198.055],[20543.234,-177.606],[20534.225,-145.288],[20539.373,-119.834],[20552.959,-102.96],[20571.549,-91.806],[20591.711,-83.941],[20610.301,-76.934],[20623.887,-68.068],[20628.891,-54.912],[20621.025,-40.469],[20599.146,-35.178],[20571.549,-41.327],[20549.955,-58.63],[20520.783,-29.458],[20553.244,-4.862],[20596.287,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":103,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20772.463,0],[20772.463,-201.916],[20727.275,-201.916],[20727.275,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":104,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20867.988,0],[20929.764,-167.31],[20913.176,-167.31],[20973.521,0],[21021.283,0],[20942.062,-201.916],[20901.164,-201.916],[20821.369,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20976.953,-36.322],[20976.953,-72.93],[20867.131,-72.93],[20867.131,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":105,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21177.727,0],[21211.475,-201.916],[21175.438,-201.916],[21142.262,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21220.627,-57.486],[21220.627,-88.946],[21060.467,-88.946],[21060.467,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21113.662,0],[21146.838,-201.916],[21111.088,-201.916],[21077.627,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21230.064,-117.26],[21230.064,-148.72],[21070.189,-148.72],[21070.189,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":106,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21329.592,0],[21329.592,-201.916],[21284.404,-201.916],[21284.404,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":107,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21438.557,0],[21438.557,-161.59],[21425.115,-201.916],[21393.369,-201.916],[21393.369,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21544.092,-49.478],[21425.115,-201.916],[21413.961,-152.438],[21532.65,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21566.113,0],[21566.113,-201.916],[21520.639,-201.916],[21520.639,-40.326],[21532.65,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":108,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.871,4.96],[-9.537,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.627,9.058],[12.871,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.053,-9.246],[0,-12.584],[4.955,-9.246],[9.053,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.061,0],[12.869,-4.956],[9.531,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.629,-9.054],[-12.869,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.053,4.862],[5.051,9.25],[0,12.776],[-4.961,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[21711.4,0],[21753.301,-7.436],[21786.906,-28.457],[21809.213,-60.489],[21817.221,-100.958],[21809.213,-141.856],[21786.762,-173.745],[21753.014,-194.623],[21710.83,-201.916],[21659.062,-201.916],[21659.062,-162.448],[21710.258,-162.448],[21741.861,-155.155],[21763.023,-133.991],[21770.604,-101.244],[21763.168,-68.211],[21742.146,-46.904],[21710.258,-39.468],[21660.494,-39.468],[21660.494,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21674.793,0],[21674.793,-201.916],[21629.605,-201.916],[21629.605,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":109,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.775,5.336],[-9.537,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.723,9.438],[12.871,5.246],[15.061,0],[12.965,-5.242],[9.531,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.725,-9.532],[-12.969,-5.336],[-15.256,0]],"o":[[12.771,-5.336],[9.531,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.725,-9.438],[-12.869,-5.242],[-15.256,0],[-12.969,5.246],[-9.535,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.723,9.536],[12.965,5.336],[15.061,0]],"v":[[22008.842,-4.576],[22042.305,-26.741],[22064.611,-59.917],[22072.619,-100.958],[22064.754,-142.285],[22042.305,-175.461],[22008.412,-197.483],[21966.514,-205.348],[21924.186,-197.483],[21890.438,-175.461],[21868.129,-142.428],[21860.121,-101.244],[21868.129,-60.203],[21890.725,-26.884],[21924.758,-4.576],[21967.086,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.961,9.438],[-9.057,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.34],[5.051,-9.532],[8.959,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.859,-7.816],[0,-12.584],[4.955,-9.438],[9.055,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.861,7.722],[0,12.584],[-5.053,9.536],[-8.965,5.34],[-8.965,0]],"v":[[21942.061,-42.185],[21923.041,-55.055],[21910.744,-75.218],[21906.453,-101.244],[21913.891,-134.277],[21934.91,-156.299],[21966.514,-164.164],[21990.824,-159.731],[22009.986,-146.861],[22022.283,-126.841],[22026.574,-101.244],[22018.994,-68.068],[21997.975,-45.76],[21966.514,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":110,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22171.574,0],[22171.574,-161.59],[22158.133,-201.916],[22126.387,-201.916],[22126.387,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22277.109,-49.478],[22158.133,-201.916],[22146.979,-152.438],[22265.668,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22299.131,0],[22299.131,-201.916],[22253.656,-201.916],[22253.656,-40.326],[22265.668,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":111,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22407.811,0],[22407.811,-201.916],[22362.623,-201.916],[22362.623,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22508.197,0],[22508.197,-38.896],[22397.229,-38.896],[22397.229,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22497.9,-84.084],[22497.9,-122.122],[22397.229,-122.122],[22397.229,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22506.48,-163.02],[22506.48,-201.916],[22397.229,-201.916],[22397.229,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":112,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[22676.65,-13.299],[22697.242,-58.63],[22691.951,-85.228],[22678.367,-102.96],[22659.92,-114.543],[22639.613,-122.408],[22621.023,-129.272],[22607.439,-137.423],[22602.291,-149.578],[22609.154,-162.305],[22627.744,-166.738],[22648.48,-162.162],[22666.928,-148.148],[22696.385,-177.606],[22667.5,-197.626],[22628.604,-205.062],[22591.709,-198.055],[22566.398,-177.606],[22557.389,-145.288],[22562.537,-119.834],[22576.123,-102.96],[22594.713,-91.806],[22614.875,-83.941],[22633.465,-76.934],[22647.051,-68.068],[22652.055,-54.912],[22644.189,-40.469],[22622.311,-35.178],[22594.713,-41.327],[22573.119,-58.63],[22543.947,-29.458],[22576.408,-4.862],[22619.451,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":113,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22795.627,0],[22795.627,-201.916],[22750.439,-201.916],[22750.439,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":114,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22891.152,0],[22952.928,-167.31],[22936.34,-167.31],[22996.686,0],[23044.447,0],[22965.227,-201.916],[22924.328,-201.916],[22844.533,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23000.117,-36.322],[23000.117,-72.93],[22890.295,-72.93],[22890.295,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":115,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.35,8.486],[-8.678,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.477,-8.58],[8.293,-4.478],[11.627,0],[8.959,5.434],[5.148,9.536],[0,12.396],[-5.246,9.438],[-9.344,5.246],[-11.824,0],[-8.865,-4.29],[-6.291,-8.388],[0,0],[14.301,6.39],[17.348,0],[13.059,-5.336],[9.912,-9.438],[5.527,-12.486],[0,-14.872],[-5.436,-12.584],[-9.537,-9.532],[-12.869,-5.434],[-14.871,0]],"o":[[15.346,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.295,4.482],[-11.633,0],[-8.965,-5.434],[-5.148,-9.532],[0,-12.584],[5.242,-9.438],[9.34,-5.242],[10.869,0],[8.865,4.29],[0,0],[-9.344,-11.056],[-14.299,-6.386],[-15.064,0],[-13.062,5.34],[-9.916,9.438],[-5.533,12.49],[0,14.684],[5.434,12.584],[9.531,9.536],[12.871,5.434],[20.02,0]],"v":[[23228.488,-9.295],[23264.525,-46.904],[23277.537,-107.822],[23277.537,-114.4],[23171.432,-114.4],[23171.432,-76.362],[23261.521,-74.932],[23231.492,-94.952],[23224.771,-64.064],[23205.609,-44.473],[23175.723,-37.752],[23144.834,-45.903],[23123.67,-68.354],[23115.947,-101.244],[23123.812,-134.277],[23145.691,-156.299],[23177.438,-164.164],[23207.039,-157.729],[23229.775,-138.71],[23260.664,-169.598],[23225.199,-195.767],[23177.725,-205.348],[23135.539,-197.34],[23101.076,-175.175],[23077.91,-142.285],[23069.615,-101.244],[23077.768,-60.346],[23100.219,-27.17],[23133.822,-4.719],[23175.436,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":116,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23374.777,0],[23374.777,-201.916],[23329.59,-201.916],[23329.59,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23475.164,0],[23475.164,-38.896],[23364.195,-38.896],[23364.195,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23464.867,-84.084],[23464.867,-122.122],[23364.195,-122.122],[23364.195,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23473.447,-163.02],[23473.447,-201.916],[23364.195,-201.916],[23364.195,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":117,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23575.834,0],[23575.834,-201.916],[23530.646,-201.916],[23530.646,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23665.352,0],[23665.352,-39.468],[23565.539,-39.468],[23565.539,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":118,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[23742.574,0],[23804.35,-167.31],[23787.762,-167.31],[23848.107,0],[23895.869,0],[23816.648,-201.916],[23775.75,-201.916],[23695.955,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23851.539,-36.322],[23851.539,-72.93],[23741.717,-72.93],[23741.717,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":119,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.395,5.148],[-6.006,9.63],[0,13.156],[6.008,9.63],[10.391,5.148],[12.771,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.672,-4.384],[0,-6.292],[2.668,-4.384],[4.477,-2.19],[5.527,0],[0,0],[0,0]],"o":[[12.771,0],[10.391,-5.148],[6.008,-9.626],[0,-13.344],[-6.006,-9.626],[-10.395,-5.148],[0,0],[0,0],[0,0],[5.527,0],[4.477,2.194],[2.668,4.388],[0,6.104],[-2.672,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[24026.857,-73.502],[24061.605,-81.224],[24086.201,-103.389],[24095.211,-137.566],[24086.201,-172.029],[24061.605,-194.194],[24026.857,-201.916],[23976.807,-201.916],[23976.807,-166.738],[24020.279,-166.738],[24035.295,-163.449],[24046.02,-153.582],[24050.023,-137.566],[24046.02,-121.836],[24035.295,-111.969],[24020.279,-108.68],[23976.807,-108.68],[23976.807,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23987.389,0],[23987.389,-201.916],[23942.201,-201.916],[23942.201,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":120,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":450,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP 3 Outlines","ln":"INDONESIAGELAP","sr":1,"ks":{"o":{"k":[{"s":[5],"t":0,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}},{"s":[5],"t":449,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}}]},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[-1227.789,705.658,0],"to":[0,0,0],"ti":[0,0,0]},{"t":449,"s":[-922.789,705.658,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[126.984,0],[160.732,-201.916],[124.696,-201.916],[91.52,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[169.884,-57.486],[169.884,-88.946],[9.724,-88.946],[9.724,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[62.92,0],[96.096,-201.916],[60.346,-201.916],[26.884,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[179.322,-117.26],[179.322,-148.72],[19.448,-148.72],[19.448,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[303.732,0],[303.732,-201.916],[258.83,-201.916],[258.83,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[300.872,-163.592],[300.872,-201.916],[219.934,-201.916],[219.934,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.484,10.202],[0,13.54],[4.764,8.866],[8.294,4.862],[10.296,0],[4.764,-1.046],[5.528,-1.524],[0,0],[-4.004,0.478],[-3.624,0],[-5.626,-2.382],[-3.052,-4.384],[0,-6.48],[3.048,-4.478],[5.148,-2.476],[6.864,0],[7.052,3.244],[3.62,5.34],[0,0],[-11.632,-4.764],[-14.112,0]],"o":[[11.82,-5.814],[6.48,-10.198],[0,-12.012],[-4.768,-8.866],[-8.294,-4.862],[-4.196,0],[-4.768,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.624,0],[5.622,2.386],[3.048,4.388],[0,6.292],[-3.052,4.482],[-5.148,2.48],[-7.628,0],[-7.056,-3.24],[0,0],[8.008,9.152],[11.628,4.764],[15.824,0]],"v":[[461.604,-5.577],[489.06,-29.601],[498.784,-65.208],[491.634,-96.525],[472.043,-117.117],[444.158,-124.41],[430.716,-122.837],[415.272,-118.976],[395.252,-93.808],[405.262,-95.953],[416.702,-96.668],[436.579,-93.093],[449.592,-82.94],[454.168,-66.638],[449.592,-50.479],[437.294,-40.04],[419.276,-36.322],[397.254,-41.184],[381.238,-54.054],[352.066,-24.882],[381.524,-4.004],[420.134,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[444.158,-118.976],[495.066,-176.748],[444.444,-176.462],[395.252,-119.262],[395.252,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[459.602,-163.592],[495.066,-176.748],[495.066,-201.916],[364.65,-201.916],[364.65,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[622.05,0],[622.05,-201.916],[577.148,-201.916],[577.148,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[619.19,-163.592],[619.19,-201.916],[538.252,-201.916],[538.252,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.528,9.536],[10.296,5.148],[13.916,0],[12.298,-6.864],[8.196,-13.536],[0,0],[-6.39,4.29],[-8.008,0],[-5.054,-4.478],[0,-7.816],[1.238,-3.526],[2.954,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.816,-7.816],[4.67,-6.48],[2.002,-6.766],[0,-12.772],[-5.532,-9.532],[-10.296,-5.148],[-16.208,0],[-12.298,6.864],[0,0],[5.908,-9.724],[6.386,-4.29],[8.008,0],[5.05,4.482],[0,3.432],[-1.242,3.53],[-2.958,3.91],[0,0],[0,0]],"v":[[728.442,-24.596],[782.496,-78.078],[801.229,-99.528],[811.239,-119.405],[814.242,-141.856],[805.948,-175.318],[782.21,-197.34],[745.888,-205.062],[703.131,-194.766],[672.386,-164.164],[702.702,-137.852],[721.149,-158.873],[742.742,-165.308],[762.333,-158.587],[769.912,-140.14],[768.053,-129.701],[761.761,-118.547],[750.464,-105.248],[672.958,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[818.532,0],[818.532,-38.324],[710.996,-38.324],[672.958,-25.168],[672.958,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[979.55,0],[1013.298,-201.916],[977.262,-201.916],[944.086,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1022.45,-57.486],[1022.45,-88.946],[862.29,-88.946],[862.29,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[915.486,0],[948.662,-201.916],[912.912,-201.916],[879.45,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1031.888,-117.26],[1031.888,-148.72],[872.014,-148.72],[872.014,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1117.974,0],[1179.75,-167.31],[1163.162,-167.31],[1223.508,0],[1271.27,0],[1192.048,-201.916],[1151.15,-201.916],[1071.356,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1226.94,-36.322],[1226.94,-72.93],[1117.116,-72.93],[1117.116,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.536,9.152],[0,0],[7.624,-3.146],[10.296,0],[7.244,2.958],[5.336,5.626],[2.86,7.722],[0,9.536],[-2.86,7.82],[-5.34,5.532],[-7.248,2.958],[-8.772,0],[-7.534,-3.24],[-5.148,-5.72],[0,0],[12.486,5.148],[16.016,0],[12.772,-5.242],[9.626,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.63,-9.532],[-12.87,-5.242],[-15.064,0]],"o":[[12.584,-5.05],[0,0],[-5.34,5.912],[-7.628,3.146],[-8.772,0],[-7.248,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.152],[2.86,-7.816],[5.336,-5.528],[7.244,-2.954],[9.912,0],[7.53,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.256,0],[-12.776,5.246],[-9.63,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.626,9.536],[12.87,5.242],[16.588,0]],"v":[[1446.302,-4.433],[1479.478,-25.74],[1448.876,-56.342],[1429.428,-42.757],[1402.544,-38.038],[1378.52,-42.471],[1359.644,-55.341],[1347.346,-75.361],[1343.056,-101.244],[1347.346,-126.698],[1359.644,-146.718],[1378.52,-159.445],[1402.544,-163.878],[1428.713,-159.016],[1447.732,-145.574],[1478.048,-176.176],[1445.301,-197.34],[1402.544,-205.062],[1360.502,-197.197],[1326.897,-175.318],[1304.446,-142.285],[1296.438,-101.244],[1304.446,-60.203],[1326.897,-26.884],[1360.645,-4.719],[1402.544,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1555.554,0],[1617.33,-167.31],[1600.742,-167.31],[1661.088,0],[1708.85,0],[1629.628,-201.916],[1588.73,-201.916],[1508.936,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1664.52,-36.322],[1664.52,-72.93],[1554.696,-72.93],[1554.696,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.202,5.246],[-5.434,8.772],[0,11.06],[9.152,9.916],[17.16,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.152,4.768],[12.964,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.244,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.288,-4.004],[0,-4.956],[4.956,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.3,0],[10.198,-5.242],[5.434,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.632,-3.24],[8.008,-8.482],[0,-9.532],[-4.674,-8.008],[-9.152,-4.764],[0,0],[0,0],[0,0],[7.244,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.72,0],[4.098,2.288],[2.288,4.004],[0,7.628],[-4.96,5.054],[0,0],[0,0],[0,0]],"v":[[1841.554,0],[1878.305,-7.865],[1901.757,-28.886],[1909.908,-58.63],[1896.18,-95.238],[1856.712,-114.972],[1855.568,-99.814],[1891.032,-117.403],[1903.044,-149.292],[1896.037,-175.604],[1875.302,-194.766],[1842.126,-201.916],[1789.788,-201.916],[1789.788,-166.738],[1833.546,-166.738],[1851.278,-161.161],[1858.142,-144.716],[1851.278,-127.842],[1833.546,-122.408],[1789.788,-122.408],[1789.788,-88.088],[1837.264,-88.088],[1851.993,-84.656],[1861.574,-75.218],[1865.006,-61.776],[1857.57,-42.757],[1837.264,-35.178],[1789.788,-35.178],[1789.788,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1799.798,0],[1799.798,-201.916],[1755.182,-201.916],[1755.182,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2071.212,0],[2104.96,-201.916],[2068.924,-201.916],[2035.748,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2114.112,-57.486],[2114.112,-88.946],[1953.952,-88.946],[1953.952,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2007.148,0],[2040.324,-201.916],[2004.574,-201.916],[1971.112,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2123.55,-117.26],[2123.55,-148.72],[1963.676,-148.72],[1963.676,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.296,4.96],[-5.72,8.866],[0,12.204],[5.622,8.964],[10.104,5.054],[13.536,0],[0,0],[0,0],[0,0],[-4.862,-4.764],[0,-7.244],[4.956,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.916,0],[10.296,-4.956],[5.72,-8.866],[0,-11.44],[-5.626,-8.96],[-10.108,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.862,4.768],[0,7.628],[-4.96,4.482],[0,0],[0,0],[0,0]],"v":[[2259.114,-82.94],[2295.436,-90.376],[2319.46,-111.111],[2328.04,-142.714],[2319.603,-173.316],[2296.008,-194.337],[2260.544,-201.916],[2212.496,-201.916],[2212.496,-166.738],[2255.396,-166.738],[2275.845,-159.588],[2283.138,-141.57],[2275.702,-123.409],[2255.11,-116.688],[2212.496,-116.688],[2212.496,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2223.078,0],[2223.078,-201.916],[2177.89,-201.916],[2177.89,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2341.196,0],[2266.264,-98.384],[2224.794,-86.944],[2287.714,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2430.428,0],[2430.428,-201.916],[2385.24,-201.916],[2385.24,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2530.814,0],[2530.814,-38.896],[2419.846,-38.896],[2419.846,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2520.518,-84.084],[2520.518,-122.122],[2419.846,-122.122],[2419.846,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2529.098,-163.02],[2529.098,-201.916],[2419.846,-201.916],[2419.846,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.334,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[2699.268,-13.299],[2719.86,-58.63],[2714.569,-85.228],[2700.984,-102.96],[2682.537,-114.543],[2662.231,-122.408],[2643.641,-129.272],[2630.056,-137.423],[2624.908,-149.578],[2631.772,-162.305],[2650.362,-166.738],[2671.097,-162.162],[2689.544,-148.148],[2719.002,-177.606],[2690.116,-197.626],[2651.22,-205.062],[2614.326,-198.055],[2589.015,-177.606],[2580.006,-145.288],[2585.154,-119.834],[2598.739,-102.96],[2617.329,-91.806],[2637.492,-83.941],[2656.082,-76.934],[2669.667,-68.068],[2674.672,-54.912],[2666.807,-40.469],[2644.928,-35.178],[2617.329,-41.327],[2595.736,-58.63],[2566.564,-29.458],[2599.025,-4.862],[2642.068,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2818.244,0],[2818.244,-201.916],[2773.056,-201.916],[2773.056,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2918.63,0],[2918.63,-38.896],[2807.662,-38.896],[2807.662,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2908.334,-84.084],[2908.334,-122.122],[2807.662,-122.122],[2807.662,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2916.914,-163.02],[2916.914,-201.916],[2807.662,-201.916],[2807.662,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3063.06,0],[3063.06,-199.342],[3017.586,-199.342],[3017.586,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3125.98,-162.448],[3125.98,-201.916],[2954.38,-201.916],[2954.38,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3221.218,0],[3221.218,-201.916],[3176.03,-201.916],[3176.03,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3330.184,0],[3330.184,-161.59],[3316.742,-201.916],[3284.996,-201.916],[3284.996,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3435.718,-49.478],[3316.742,-201.916],[3305.588,-152.438],[3424.278,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3457.74,0],[3457.74,-201.916],[3412.266,-201.916],[3412.266,-40.326],[3424.278,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.058,-4.862],[-5.054,-9.246],[0,-12.584],[4.956,-9.246],[9.053,-4.956],[12.2,0],[0,0],[0,0]],"o":[[15.06,0],[12.87,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.63,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.058,4.96],[0,0],[0,0],[0,0]],"v":[[3603.028,0],[3644.927,-7.436],[3678.532,-28.457],[3700.84,-60.489],[3708.848,-100.958],[3700.84,-141.856],[3678.389,-173.745],[3644.641,-194.623],[3602.456,-201.916],[3550.69,-201.916],[3550.69,-162.448],[3601.884,-162.448],[3633.487,-155.155],[3654.651,-133.991],[3662.23,-101.244],[3654.794,-68.211],[3633.773,-46.904],[3601.884,-39.468],[3552.12,-39.468],[3552.12,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3566.42,0],[3566.42,-201.916],[3521.232,-201.916],[3521.232,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.724,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.968,-5.336],[-15.256,0]],"o":[[12.772,-5.336],[9.532,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.724,9.536],[12.964,5.336],[15.06,0]],"v":[[3900.468,-4.576],[3933.93,-26.741],[3956.238,-59.917],[3964.246,-100.958],[3956.381,-142.285],[3933.93,-175.461],[3900.039,-197.483],[3858.14,-205.348],[3815.812,-197.483],[3782.064,-175.461],[3759.756,-142.428],[3751.748,-101.244],[3759.756,-60.203],[3782.35,-26.884],[3816.384,-4.576],[3858.712,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.86,7.82],[0,9.536],[-4.96,9.438],[-9.058,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.86,7.722],[0,12.584],[-5.054,9.536],[-8.964,5.34],[-8.964,0]],"v":[[3833.687,-42.185],[3814.668,-55.055],[3802.37,-75.218],[3798.08,-101.244],[3805.516,-134.277],[3826.537,-156.299],[3858.14,-164.164],[3882.45,-159.731],[3901.612,-146.861],[3913.91,-126.841],[3918.2,-101.244],[3910.621,-68.068],[3889.6,-45.76],[3858.14,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4063.202,0],[4063.202,-161.59],[4049.76,-201.916],[4018.014,-201.916],[4018.014,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4168.736,-49.478],[4049.76,-201.916],[4038.606,-152.438],[4157.296,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4190.758,0],[4190.758,-201.916],[4145.284,-201.916],[4145.284,-40.326],[4157.296,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4299.438,0],[4299.438,-201.916],[4254.25,-201.916],[4254.25,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4399.824,0],[4399.824,-38.896],[4288.856,-38.896],[4288.856,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4389.528,-84.084],[4389.528,-122.122],[4288.856,-122.122],[4288.856,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4398.108,-163.02],[4398.108,-201.916],[4288.856,-201.916],[4288.856,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.333,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[4568.278,-13.299],[4588.87,-58.63],[4583.579,-85.228],[4569.994,-102.96],[4551.547,-114.543],[4531.241,-122.408],[4512.651,-129.272],[4499.066,-137.423],[4493.918,-149.578],[4500.782,-162.305],[4519.372,-166.738],[4540.107,-162.162],[4558.554,-148.148],[4588.012,-177.606],[4559.126,-197.626],[4520.23,-205.062],[4483.336,-198.055],[4458.025,-177.606],[4449.016,-145.288],[4454.164,-119.834],[4467.749,-102.96],[4486.339,-91.806],[4506.502,-83.941],[4525.092,-76.934],[4538.677,-68.068],[4543.682,-54.912],[4535.817,-40.469],[4513.938,-35.178],[4486.339,-41.327],[4464.746,-58.63],[4435.574,-29.458],[4468.035,-4.862],[4511.078,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4687.254,0],[4687.254,-201.916],[4642.066,-201.916],[4642.066,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4782.778,0],[4844.554,-167.31],[4827.966,-167.31],[4888.312,0],[4936.074,0],[4856.852,-201.916],[4815.954,-201.916],[4736.16,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4891.744,-36.322],[4891.744,-72.93],[4781.92,-72.93],[4781.92,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5092.516,0],[5126.264,-201.916],[5090.228,-201.916],[5057.052,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5135.416,-57.486],[5135.416,-88.946],[4975.256,-88.946],[4975.256,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5028.452,0],[5061.628,-201.916],[5025.878,-201.916],[4992.416,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5144.854,-117.26],[5144.854,-148.72],[4984.98,-148.72],[4984.98,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5244.382,0],[5244.382,-201.916],[5199.194,-201.916],[5199.194,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5353.348,0],[5353.348,-161.59],[5339.906,-201.916],[5308.16,-201.916],[5308.16,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5458.882,-49.478],[5339.906,-201.916],[5328.752,-152.438],[5447.442,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5480.904,0],[5480.904,-201.916],[5435.43,-201.916],[5435.43,-40.326],[5447.442,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.335,12.204],[9.626,9.058],[12.87,4.862],[15.251,0],[0,0],[0,0],[0,0],[-9.058,-4.862],[-5.054,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.2,0],[0,0],[0,0]],"o":[[15.06,0],[12.87,-4.956],[9.532,-9.054],[5.335,-12.298],[0,-15.06],[-5.34,-12.2],[-9.63,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.058,4.96],[0,0],[0,0],[0,0]],"v":[[5626.192,0],[5668.091,-7.436],[5701.696,-28.457],[5724.004,-60.489],[5732.012,-100.958],[5724.004,-141.856],[5701.553,-173.745],[5667.805,-194.623],[5625.62,-201.916],[5573.854,-201.916],[5573.854,-162.448],[5625.048,-162.448],[5656.651,-155.155],[5677.815,-133.991],[5685.394,-101.244],[5677.958,-68.211],[5656.937,-46.904],[5625.048,-39.468],[5575.284,-39.468],[5575.284,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5589.584,0],[5589.584,-201.916],[5544.396,-201.916],[5544.396,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.724,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.335,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.968,-5.336],[-15.256,0]],"o":[[12.772,-5.336],[9.532,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.537,9.438],[-5.34,12.584],[0,14.684],[5.335,12.682],[9.724,9.536],[12.964,5.336],[15.06,0]],"v":[[5923.632,-4.576],[5957.094,-26.741],[5979.402,-59.917],[5987.41,-100.958],[5979.545,-142.285],[5957.094,-175.461],[5923.203,-197.483],[5881.304,-205.348],[5838.976,-197.483],[5805.228,-175.461],[5782.92,-142.428],[5774.912,-101.244],[5782.92,-60.203],[5805.514,-26.884],[5839.548,-4.576],[5881.876,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.337,2.958],[5.335,5.626],[2.86,7.82],[0,9.536],[-4.96,9.438],[-9.058,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.34],[5.049,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.86,7.722],[0,12.584],[-5.054,9.536],[-8.964,5.34],[-8.964,0]],"v":[[5856.851,-42.185],[5837.832,-55.055],[5825.534,-75.218],[5821.244,-101.244],[5828.68,-134.277],[5849.701,-156.299],[5881.304,-164.164],[5905.614,-159.731],[5924.776,-146.861],[5937.074,-126.841],[5941.364,-101.244],[5933.785,-68.068],[5912.764,-45.76],[5881.304,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6086.366,0],[6086.366,-161.59],[6072.924,-201.916],[6041.178,-201.916],[6041.178,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6191.899,-49.478],[6072.924,-201.916],[6061.77,-152.438],[6180.459,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6213.921,0],[6213.921,-201.916],[6168.448,-201.916],[6168.448,-40.326],[6180.459,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6322.602,0],[6322.602,-201.916],[6277.414,-201.916],[6277.414,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6422.988,0],[6422.988,-38.896],[6312.02,-38.896],[6312.02,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6412.692,-84.084],[6412.692,-122.122],[6312.02,-122.122],[6312.02,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6421.272,-163.02],[6421.272,-201.916],[6312.02,-201.916],[6312.02,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.333,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[6591.441,-13.299],[6612.034,-58.63],[6606.743,-85.228],[6593.158,-102.96],[6574.71,-114.543],[6554.405,-122.408],[6535.814,-129.272],[6522.229,-137.423],[6517.082,-149.578],[6523.946,-162.305],[6542.536,-166.738],[6563.271,-162.162],[6581.718,-148.148],[6611.176,-177.606],[6582.29,-197.626],[6543.394,-205.062],[6506.5,-198.055],[6481.188,-177.606],[6472.18,-145.288],[6477.328,-119.834],[6490.913,-102.96],[6509.502,-91.806],[6529.666,-83.941],[6548.256,-76.934],[6561.841,-68.068],[6566.846,-54.912],[6558.98,-40.469],[6537.102,-35.178],[6509.502,-41.327],[6487.91,-58.63],[6458.738,-29.458],[6491.199,-4.862],[6534.242,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6710.418,0],[6710.418,-201.916],[6665.23,-201.916],[6665.23,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6805.942,0],[6867.718,-167.31],[6851.13,-167.31],[6911.476,0],[6959.238,0],[6880.016,-201.916],[6839.118,-201.916],[6759.324,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6914.908,-36.322],[6914.908,-72.93],[6805.083,-72.93],[6805.083,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.351,8.486],[-8.678,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.478,-8.58],[8.294,-4.478],[11.627,0],[8.96,5.434],[5.148,9.536],[0,12.396],[-5.246,9.438],[-9.344,5.246],[-11.824,0],[-8.866,-4.29],[-6.292,-8.388],[0,0],[14.3,6.39],[17.348,0],[13.058,-5.336],[9.912,-9.438],[5.528,-12.486],[0,-14.872],[-5.434,-12.584],[-9.536,-9.532],[-12.87,-5.434],[-14.872,0]],"o":[[15.345,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.294,4.482],[-11.632,0],[-8.964,-5.434],[-5.148,-9.532],[0,-12.584],[5.242,-9.438],[9.34,-5.242],[10.868,0],[8.866,4.29],[0,0],[-9.344,-11.056],[-14.3,-6.386],[-15.064,0],[-13.062,5.34],[-9.917,9.438],[-5.532,12.49],[0,14.684],[5.434,12.584],[9.532,9.536],[12.87,5.434],[20.02,0]],"v":[[7143.279,-9.295],[7179.314,-46.904],[7192.328,-107.822],[7192.328,-114.4],[7086.222,-114.4],[7086.222,-76.362],[7176.312,-74.932],[7146.282,-94.952],[7139.561,-64.064],[7120.398,-44.473],[7090.512,-37.752],[7059.624,-45.903],[7038.459,-68.354],[7030.738,-101.244],[7038.603,-134.277],[7060.481,-156.299],[7092.228,-164.164],[7121.829,-157.729],[7144.565,-138.71],[7175.454,-169.598],[7139.99,-195.767],[7092.514,-205.348],[7050.329,-197.34],[7015.866,-175.175],[6992.7,-142.285],[6984.406,-101.244],[6992.557,-60.346],[7015.007,-27.17],[7048.613,-4.719],[7090.226,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7289.568,0],[7289.568,-201.916],[7244.38,-201.916],[7244.38,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7389.954,0],[7389.954,-38.896],[7278.986,-38.896],[7278.986,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7379.658,-84.084],[7379.658,-122.122],[7278.986,-122.122],[7278.986,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7388.238,-163.02],[7388.238,-201.916],[7278.986,-201.916],[7278.986,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7490.626,0],[7490.626,-201.916],[7445.438,-201.916],[7445.438,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7580.144,0],[7580.144,-39.468],[7480.33,-39.468],[7480.33,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7657.364,0],[7719.14,-167.31],[7702.552,-167.31],[7762.897,0],[7810.66,0],[7731.438,-201.916],[7690.54,-201.916],[7610.746,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7766.33,-36.322],[7766.33,-72.93],[7656.505,-72.93],[7656.505,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.394,5.148],[-6.006,9.63],[0,13.156],[6.006,9.63],[10.39,5.148],[12.772,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.672,-4.384],[0,-6.292],[2.668,-4.384],[4.478,-2.19],[5.528,0],[0,0],[0,0]],"o":[[12.772,0],[10.39,-5.148],[6.006,-9.626],[0,-13.344],[-6.006,-9.626],[-10.394,-5.148],[0,0],[0,0],[0,0],[5.528,0],[4.478,2.194],[2.668,4.388],[0,6.104],[-2.672,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[7941.647,-73.502],[7976.396,-81.224],[8000.993,-103.389],[8010.001,-137.566],[8000.993,-172.029],[7976.396,-194.194],[7941.647,-201.916],[7891.598,-201.916],[7891.598,-166.738],[7935.07,-166.738],[7950.084,-163.449],[7960.81,-153.582],[7964.813,-137.566],[7960.81,-121.836],[7950.084,-111.969],[7935.07,-108.68],[7891.598,-108.68],[7891.598,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7902.18,0],[7902.18,-201.916],[7856.992,-201.916],[7856.992,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8169.589,0],[8203.338,-201.916],[8167.301,-201.916],[8134.125,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8212.489,-57.486],[8212.489,-88.946],[8052.33,-88.946],[8052.33,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8105.525,0],[8138.702,-201.916],[8102.952,-201.916],[8069.489,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8221.928,-117.26],[8221.928,-148.72],[8062.054,-148.72],[8062.054,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8346.338,0],[8346.338,-201.916],[8301.436,-201.916],[8301.436,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8343.478,-163.592],[8343.478,-201.916],[8262.539,-201.916],[8262.539,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.484,10.202],[0,13.54],[4.764,8.866],[8.294,4.862],[10.296,0],[4.764,-1.046],[5.527,-1.524],[0,0],[-4.004,0.478],[-3.624,0],[-5.626,-2.382],[-3.053,-4.384],[0,-6.48],[3.047,-4.478],[5.148,-2.476],[6.864,0],[7.052,3.244],[3.62,5.34],[0,0],[-11.632,-4.764],[-14.112,0]],"o":[[11.819,-5.814],[6.479,-10.198],[0,-12.012],[-4.769,-8.866],[-8.294,-4.862],[-4.196,0],[-4.769,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.624,0],[5.622,2.386],[3.047,4.388],[0,6.292],[-3.053,4.482],[-5.147,2.48],[-7.628,0],[-7.056,-3.24],[0,0],[8.008,9.152],[11.628,4.764],[15.823,0]],"v":[[8504.21,-5.577],[8531.666,-29.601],[8541.39,-65.208],[8534.24,-96.525],[8514.648,-117.117],[8486.764,-124.41],[8473.322,-122.837],[8457.878,-118.976],[8437.857,-93.808],[8447.868,-95.953],[8459.308,-96.668],[8479.185,-93.093],[8492.198,-82.94],[8496.773,-66.638],[8492.198,-50.479],[8479.899,-40.04],[8461.882,-36.322],[8439.859,-41.184],[8423.844,-54.054],[8394.672,-24.882],[8424.13,-4.004],[8462.74,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8486.764,-118.976],[8537.672,-176.748],[8487.05,-176.462],[8437.857,-119.262],[8437.857,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8502.208,-163.592],[8537.672,-176.748],[8537.672,-201.916],[8407.256,-201.916],[8407.256,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8664.656,0],[8664.656,-201.916],[8619.754,-201.916],[8619.754,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8661.796,-163.592],[8661.796,-201.916],[8580.857,-201.916],[8580.857,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.527,9.536],[10.296,5.148],[13.916,0],[12.298,-6.864],[8.195,-13.536],[0,0],[-6.39,4.29],[-8.009,0],[-5.055,-4.478],[0,-7.816],[1.238,-3.526],[2.954,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.815,-7.816],[4.67,-6.48],[2.003,-6.766],[0,-12.772],[-5.533,-9.532],[-10.296,-5.148],[-16.208,0],[-12.298,6.864],[0,0],[5.907,-9.724],[6.386,-4.29],[8.008,0],[5.05,4.482],[0,3.432],[-1.242,3.53],[-2.958,3.91],[0,0],[0,0]],"v":[[8771.048,-24.596],[8825.103,-78.078],[8843.835,-99.528],[8853.845,-119.405],[8856.849,-141.856],[8848.555,-175.318],[8824.816,-197.34],[8788.494,-205.062],[8745.737,-194.766],[8714.992,-164.164],[8745.309,-137.852],[8763.755,-158.873],[8785.349,-165.308],[8804.939,-158.587],[8812.519,-140.14],[8810.659,-129.701],[8804.367,-118.547],[8793.07,-105.248],[8715.564,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8861.139,0],[8861.139,-38.324],[8753.603,-38.324],[8715.564,-25.168],[8715.564,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9022.156,0],[9055.904,-201.916],[9019.868,-201.916],[8986.691,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9065.056,-57.486],[9065.056,-88.946],[8904.896,-88.946],[8904.896,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8958.092,0],[8991.268,-201.916],[8955.518,-201.916],[8922.056,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9074.494,-117.26],[9074.494,-148.72],[8914.62,-148.72],[8914.62,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[9160.58,0],[9222.355,-167.31],[9205.768,-167.31],[9266.114,0],[9313.876,0],[9234.654,-201.916],[9193.756,-201.916],[9113.962,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9269.546,-36.322],[9269.546,-72.93],[9159.722,-72.93],[9159.722,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.536,9.152],[0,0],[7.623,-3.146],[10.296,0],[7.243,2.958],[5.335,5.626],[2.859,7.722],[0,9.536],[-2.86,7.82],[-5.341,5.532],[-7.249,2.958],[-8.771,0],[-7.534,-3.24],[-5.148,-5.72],[0,0],[12.485,5.148],[16.017,0],[12.772,-5.242],[9.626,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.63,-9.532],[-12.87,-5.242],[-15.063,0]],"o":[[12.584,-5.05],[0,0],[-5.34,5.912],[-7.629,3.146],[-8.771,0],[-7.249,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.152],[2.859,-7.816],[5.335,-5.528],[7.243,-2.954],[9.912,0],[7.53,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.256,0],[-12.775,5.246],[-9.63,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.626,9.536],[12.87,5.242],[16.588,0]],"v":[[9488.908,-4.433],[9522.084,-25.74],[9491.481,-56.342],[9472.034,-42.757],[9445.149,-38.038],[9421.126,-42.471],[9402.25,-55.341],[9389.952,-75.361],[9385.662,-101.244],[9389.952,-126.698],[9402.25,-146.718],[9421.126,-159.445],[9445.149,-163.878],[9471.318,-159.016],[9490.338,-145.574],[9520.653,-176.176],[9487.907,-197.34],[9445.149,-205.062],[9403.107,-197.197],[9369.503,-175.318],[9347.052,-142.285],[9339.044,-101.244],[9347.052,-60.203],[9369.503,-26.884],[9403.251,-4.719],[9445.149,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[9598.16,0],[9659.936,-167.31],[9643.348,-167.31],[9703.694,0],[9751.456,0],[9672.234,-201.916],[9631.336,-201.916],[9551.542,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9707.126,-36.322],[9707.126,-72.93],[9597.302,-72.93],[9597.302,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.202,5.246],[-5.435,8.772],[0,11.06],[9.151,9.916],[17.159,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.151,4.768],[12.964,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.243,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.288,-4.004],[0,-4.956],[4.956,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.3,0],[10.197,-5.242],[5.434,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.632,-3.24],[8.008,-8.482],[0,-9.532],[-4.674,-8.008],[-9.152,-4.764],[0,0],[0,0],[0,0],[7.243,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.72,0],[4.099,2.288],[2.288,4.004],[0,7.628],[-4.96,5.054],[0,0],[0,0],[0,0]],"v":[[9884.16,0],[9920.911,-7.865],[9944.363,-28.886],[9952.514,-58.63],[9938.786,-95.238],[9899.318,-114.972],[9898.174,-99.814],[9933.638,-117.403],[9945.65,-149.292],[9938.643,-175.604],[9917.908,-194.766],[9884.732,-201.916],[9832.394,-201.916],[9832.394,-166.738],[9876.152,-166.738],[9893.884,-161.161],[9900.748,-144.716],[9893.884,-127.842],[9876.152,-122.408],[9832.394,-122.408],[9832.394,-88.088],[9879.87,-88.088],[9894.599,-84.656],[9904.18,-75.218],[9907.612,-61.776],[9900.176,-42.757],[9879.87,-35.178],[9832.394,-35.178],[9832.394,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9842.404,0],[9842.404,-201.916],[9797.788,-201.916],[9797.788,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10113.818,0],[10147.566,-201.916],[10111.53,-201.916],[10078.354,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10156.718,-57.486],[10156.718,-88.946],[9996.558,-88.946],[9996.558,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10049.754,0],[10082.93,-201.916],[10047.18,-201.916],[10013.718,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10166.156,-117.26],[10166.156,-148.72],[10006.282,-148.72],[10006.282,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.296,4.96],[-5.721,8.866],[0,12.204],[5.622,8.964],[10.104,5.054],[13.535,0],[0,0],[0,0],[0,0],[-4.862,-4.764],[0,-7.244],[4.956,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.916,0],[10.296,-4.956],[5.72,-8.866],[0,-11.44],[-5.626,-8.96],[-10.108,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.862,4.768],[0,7.628],[-4.96,4.482],[0,0],[0,0],[0,0]],"v":[[10301.72,-82.94],[10338.042,-90.376],[10362.066,-111.111],[10370.646,-142.714],[10362.209,-173.316],[10338.614,-194.337],[10303.15,-201.916],[10255.102,-201.916],[10255.102,-166.738],[10298.002,-166.738],[10318.451,-159.588],[10325.744,-141.57],[10318.308,-123.409],[10297.716,-116.688],[10255.102,-116.688],[10255.102,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10265.684,0],[10265.684,-201.916],[10220.496,-201.916],[10220.496,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10383.802,0],[10308.87,-98.384],[10267.4,-86.944],[10330.32,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10473.033,0],[10473.033,-201.916],[10427.846,-201.916],[10427.846,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10573.42,0],[10573.42,-38.896],[10462.451,-38.896],[10462.451,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10563.124,-84.084],[10563.124,-122.122],[10462.451,-122.122],[10462.451,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10571.703,-163.02],[10571.703,-201.916],[10462.451,-201.916],[10462.451,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[10741.874,-13.299],[10762.466,-58.63],[10757.175,-85.228],[10743.59,-102.96],[10725.143,-114.543],[10704.837,-122.408],[10686.247,-129.272],[10672.662,-137.423],[10667.514,-149.578],[10674.378,-162.305],[10692.968,-166.738],[10713.703,-162.162],[10732.149,-148.148],[10761.607,-177.606],[10732.722,-197.626],[10693.826,-205.062],[10656.932,-198.055],[10631.621,-177.606],[10622.611,-145.288],[10627.76,-119.834],[10641.345,-102.96],[10659.935,-91.806],[10680.098,-83.941],[10698.688,-76.934],[10712.272,-68.068],[10717.277,-54.912],[10709.413,-40.469],[10687.534,-35.178],[10659.935,-41.327],[10638.342,-58.63],[10609.17,-29.458],[10641.631,-4.862],[10684.674,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10860.85,0],[10860.85,-201.916],[10815.662,-201.916],[10815.662,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10961.236,0],[10961.236,-38.896],[10850.268,-38.896],[10850.268,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10950.94,-84.084],[10950.94,-122.122],[10850.268,-122.122],[10850.268,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10959.52,-163.02],[10959.52,-201.916],[10850.268,-201.916],[10850.268,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11105.666,0],[11105.666,-199.342],[11060.191,-199.342],[11060.191,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11168.586,-162.448],[11168.586,-201.916],[10996.985,-201.916],[10996.985,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11263.823,0],[11263.823,-201.916],[11218.636,-201.916],[11218.636,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11372.789,0],[11372.789,-161.59],[11359.348,-201.916],[11327.602,-201.916],[11327.602,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11478.323,-49.478],[11359.348,-201.916],[11348.193,-152.438],[11466.884,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11500.346,0],[11500.346,-201.916],[11454.871,-201.916],[11454.871,-40.326],[11466.884,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.055,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.06,0],[12.869,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.631,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[11645.634,0],[11687.533,-7.436],[11721.138,-28.457],[11743.445,-60.489],[11751.454,-100.958],[11743.445,-141.856],[11720.995,-173.745],[11687.247,-194.623],[11645.062,-201.916],[11593.296,-201.916],[11593.296,-162.448],[11644.49,-162.448],[11676.093,-155.155],[11697.257,-133.991],[11704.836,-101.244],[11697.399,-68.211],[11676.379,-46.904],[11644.49,-39.468],[11594.726,-39.468],[11594.726,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11609.025,0],[11609.025,-201.916],[11563.838,-201.916],[11563.838,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.341,12.682],[0,14.684],[5.242,12.682],[9.725,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.969,-5.336],[-15.257,0]],"o":[[12.771,-5.336],[9.532,-9.438],[5.335,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.725,9.536],[12.964,5.336],[15.06,0]],"v":[[11943.073,-4.576],[11976.535,-26.741],[11998.844,-59.917],[12006.852,-100.958],[11998.986,-142.285],[11976.535,-175.461],[11942.645,-197.483],[11900.745,-205.348],[11858.417,-197.483],[11824.669,-175.461],[11802.361,-142.428],[11794.354,-101.244],[11802.361,-60.203],[11824.955,-26.884],[11858.989,-4.576],[11901.317,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.96,9.438],[-9.059,5.246],[-12.012,0],[-7.437,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.335,5.626],[2.859,7.722],[0,12.584],[-5.055,9.536],[-8.964,5.34],[-8.964,0]],"v":[[11876.292,-42.185],[11857.273,-55.055],[11844.976,-75.218],[11840.686,-101.244],[11848.121,-134.277],[11869.143,-156.299],[11900.745,-164.164],[11925.056,-159.731],[11944.218,-146.861],[11956.516,-126.841],[11960.806,-101.244],[11953.227,-68.068],[11932.205,-45.76],[11900.745,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12105.808,0],[12105.808,-161.59],[12092.366,-201.916],[12060.62,-201.916],[12060.62,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12211.342,-49.478],[12092.366,-201.916],[12081.212,-152.438],[12199.902,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12233.364,0],[12233.364,-201.916],[12187.89,-201.916],[12187.89,-40.326],[12199.902,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12342.043,0],[12342.043,-201.916],[12296.855,-201.916],[12296.855,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12442.43,0],[12442.43,-38.896],[12331.461,-38.896],[12331.461,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12432.134,-84.084],[12432.134,-122.122],[12331.461,-122.122],[12331.461,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12440.713,-163.02],[12440.713,-201.916],[12331.461,-201.916],[12331.461,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[12610.884,-13.299],[12631.476,-58.63],[12626.185,-85.228],[12612.6,-102.96],[12594.152,-114.543],[12573.847,-122.408],[12555.257,-129.272],[12541.672,-137.423],[12536.523,-149.578],[12543.388,-162.305],[12561.978,-166.738],[12582.713,-162.162],[12601.159,-148.148],[12630.617,-177.606],[12601.731,-197.626],[12562.836,-205.062],[12525.941,-198.055],[12500.631,-177.606],[12491.621,-145.288],[12496.77,-119.834],[12510.354,-102.96],[12528.944,-91.806],[12549.107,-83.941],[12567.697,-76.934],[12581.282,-68.068],[12586.287,-54.912],[12578.423,-40.469],[12556.544,-35.178],[12528.944,-41.327],[12507.352,-58.63],[12478.18,-29.458],[12510.641,-4.862],[12553.684,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12729.859,0],[12729.859,-201.916],[12684.672,-201.916],[12684.672,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12825.384,0],[12887.159,-167.31],[12870.571,-167.31],[12930.918,0],[12978.68,0],[12899.458,-201.916],[12858.56,-201.916],[12778.766,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12934.35,-36.322],[12934.35,-72.93],[12824.525,-72.93],[12824.525,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13135.122,0],[13168.87,-201.916],[13132.834,-201.916],[13099.657,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13178.021,-57.486],[13178.021,-88.946],[13017.861,-88.946],[13017.861,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13071.058,0],[13104.233,-201.916],[13068.483,-201.916],[13035.021,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13187.46,-117.26],[13187.46,-148.72],[13027.586,-148.72],[13027.586,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13286.987,0],[13286.987,-201.916],[13241.8,-201.916],[13241.8,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13395.953,0],[13395.953,-161.59],[13382.512,-201.916],[13350.766,-201.916],[13350.766,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13501.487,-49.478],[13382.512,-201.916],[13371.357,-152.438],[13490.048,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13523.51,0],[13523.51,-201.916],[13478.035,-201.916],[13478.035,-40.326],[13490.048,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.055,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.06,0],[12.869,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.631,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[13668.798,0],[13710.697,-7.436],[13744.302,-28.457],[13766.609,-60.489],[13774.618,-100.958],[13766.609,-141.856],[13744.159,-173.745],[13710.411,-194.623],[13668.226,-201.916],[13616.46,-201.916],[13616.46,-162.448],[13667.654,-162.448],[13699.257,-155.155],[13720.421,-133.991],[13728,-101.244],[13720.563,-68.211],[13699.543,-46.904],[13667.654,-39.468],[13617.89,-39.468],[13617.89,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13632.189,0],[13632.189,-201.916],[13587.002,-201.916],[13587.002,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.341,12.682],[0,14.684],[5.242,12.682],[9.725,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.969,-5.336],[-15.257,0]],"o":[[12.771,-5.336],[9.532,-9.438],[5.335,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.725,9.536],[12.964,5.336],[15.06,0]],"v":[[13966.237,-4.576],[13999.699,-26.741],[14022.008,-59.917],[14030.016,-100.958],[14022.15,-142.285],[13999.699,-175.461],[13965.809,-197.483],[13923.909,-205.348],[13881.581,-197.483],[13847.833,-175.461],[13825.525,-142.428],[13817.518,-101.244],[13825.525,-60.203],[13848.119,-26.884],[13882.153,-4.576],[13924.481,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.96,9.438],[-9.059,5.246],[-12.012,0],[-7.437,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.335,5.626],[2.859,7.722],[0,12.584],[-5.055,9.536],[-8.964,5.34],[-8.964,0]],"v":[[13899.456,-42.185],[13880.438,-55.055],[13868.14,-75.218],[13863.85,-101.244],[13871.285,-134.277],[13892.307,-156.299],[13923.909,-164.164],[13948.22,-159.731],[13967.382,-146.861],[13979.68,-126.841],[13983.97,-101.244],[13976.391,-68.068],[13955.369,-45.76],[13923.909,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14128.971,0],[14128.971,-161.59],[14115.529,-201.916],[14083.783,-201.916],[14083.783,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14234.505,-49.478],[14115.529,-201.916],[14104.375,-152.438],[14223.065,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14256.527,0],[14256.527,-201.916],[14211.053,-201.916],[14211.053,-40.326],[14223.065,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14365.207,0],[14365.207,-201.916],[14320.02,-201.916],[14320.02,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14465.594,0],[14465.594,-38.896],[14354.625,-38.896],[14354.625,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14455.298,-84.084],[14455.298,-122.122],[14354.625,-122.122],[14354.625,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14463.877,-163.02],[14463.877,-201.916],[14354.625,-201.916],[14354.625,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[14634.048,-13.299],[14654.64,-58.63],[14649.349,-85.228],[14635.764,-102.96],[14617.316,-114.543],[14597.011,-122.408],[14578.421,-129.272],[14564.836,-137.423],[14559.688,-149.578],[14566.552,-162.305],[14585.142,-166.738],[14605.877,-162.162],[14624.323,-148.148],[14653.781,-177.606],[14624.896,-197.626],[14586,-205.062],[14549.105,-198.055],[14523.795,-177.606],[14514.785,-145.288],[14519.934,-119.834],[14533.519,-102.96],[14552.108,-91.806],[14572.271,-83.941],[14590.861,-76.934],[14604.446,-68.068],[14609.451,-54.912],[14601.587,-40.469],[14579.708,-35.178],[14552.108,-41.327],[14530.516,-58.63],[14501.344,-29.458],[14533.805,-4.862],[14576.848,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14753.022,0],[14753.022,-201.916],[14707.835,-201.916],[14707.835,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14848.548,0],[14910.323,-167.31],[14893.735,-167.31],[14954.082,0],[15001.844,0],[14922.622,-201.916],[14881.724,-201.916],[14801.93,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14957.514,-36.322],[14957.514,-72.93],[14847.689,-72.93],[14847.689,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.351,8.486],[-8.679,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.478,-8.58],[8.294,-4.478],[11.628,0],[8.96,5.434],[5.148,9.536],[0,12.396],[-5.247,9.438],[-9.345,5.246],[-11.825,0],[-8.866,-4.29],[-6.292,-8.388],[0,0],[14.3,6.39],[17.348,0],[13.058,-5.336],[9.911,-9.438],[5.527,-12.486],[0,-14.872],[-5.434,-12.584],[-9.536,-9.532],[-12.87,-5.434],[-14.871,0]],"o":[[15.346,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.294,4.482],[-11.632,0],[-8.964,-5.434],[-5.147,-9.532],[0,-12.584],[5.241,-9.438],[9.339,-5.242],[10.867,0],[8.866,4.29],[0,0],[-9.344,-11.056],[-14.3,-6.386],[-15.063,0],[-13.062,5.34],[-9.916,9.438],[-5.532,12.49],[0,14.684],[5.435,12.584],[9.532,9.536],[12.87,5.434],[20.021,0]],"v":[[15185.885,-9.295],[15221.921,-46.904],[15234.934,-107.822],[15234.934,-114.4],[15128.827,-114.4],[15128.827,-76.362],[15218.918,-74.932],[15188.888,-94.952],[15182.167,-64.064],[15163.005,-44.473],[15133.117,-37.752],[15102.229,-45.903],[15081.065,-68.354],[15073.344,-101.244],[15081.209,-134.277],[15103.088,-156.299],[15134.834,-164.164],[15164.435,-157.729],[15187.172,-138.71],[15218.06,-169.598],[15182.596,-195.767],[15135.119,-205.348],[15092.935,-197.34],[15058.472,-175.175],[15035.306,-142.285],[15027.012,-101.244],[15035.162,-60.346],[15057.613,-27.17],[15091.219,-4.719],[15132.831,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15332.173,0],[15332.173,-201.916],[15286.985,-201.916],[15286.985,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15432.56,0],[15432.56,-38.896],[15321.591,-38.896],[15321.591,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15422.264,-84.084],[15422.264,-122.122],[15321.591,-122.122],[15321.591,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15430.843,-163.02],[15430.843,-201.916],[15321.591,-201.916],[15321.591,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15533.23,0],[15533.23,-201.916],[15488.043,-201.916],[15488.043,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15622.749,0],[15622.749,-39.468],[15522.935,-39.468],[15522.935,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15699.97,0],[15761.745,-167.31],[15745.157,-167.31],[15805.504,0],[15853.266,0],[15774.044,-201.916],[15733.146,-201.916],[15653.352,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15808.936,-36.322],[15808.936,-72.93],[15699.111,-72.93],[15699.111,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.395,5.148],[-6.006,9.63],[0,13.156],[6.006,9.63],[10.39,5.148],[12.771,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.673,-4.384],[0,-6.292],[2.667,-4.384],[4.478,-2.19],[5.527,0],[0,0],[0,0]],"o":[[12.771,0],[10.39,-5.148],[6.006,-9.626],[0,-13.344],[-6.006,-9.626],[-10.395,-5.148],[0,0],[0,0],[0,0],[5.527,0],[4.478,2.194],[2.667,4.388],[0,6.104],[-2.673,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[15984.254,-73.502],[16019.003,-81.224],[16043.599,-103.389],[16052.607,-137.566],[16043.599,-172.029],[16019.003,-194.194],[15984.254,-201.916],[15934.203,-201.916],[15934.203,-166.738],[15977.676,-166.738],[15992.69,-163.449],[16003.416,-153.582],[16007.42,-137.566],[16003.416,-121.836],[15992.69,-111.969],[15977.676,-108.68],[15934.203,-108.68],[15934.203,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15944.785,0],[15944.785,-201.916],[15899.598,-201.916],[15899.598,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16212.195,0],[16245.943,-201.916],[16209.907,-201.916],[16176.73,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16255.095,-57.486],[16255.095,-88.946],[16094.935,-88.946],[16094.935,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16148.131,0],[16181.307,-201.916],[16145.557,-201.916],[16112.095,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16264.533,-117.26],[16264.533,-148.72],[16104.659,-148.72],[16104.659,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16388.943,0],[16388.943,-201.916],[16344.041,-201.916],[16344.041,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16386.082,-163.592],[16386.082,-201.916],[16305.145,-201.916],[16305.145,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.482,10.202],[0,13.54],[4.764,8.866],[8.293,4.862],[10.295,0],[4.764,-1.046],[5.527,-1.524],[0,0],[-4.004,0.478],[-3.623,0],[-5.625,-2.382],[-3.053,-4.384],[0,-6.48],[3.047,-4.478],[5.148,-2.476],[6.863,0],[7.051,3.244],[3.619,5.34],[0,0],[-11.633,-4.764],[-14.111,0]],"o":[[11.82,-5.814],[6.48,-10.198],[0,-12.012],[-4.768,-8.866],[-8.295,-4.862],[-4.197,0],[-4.768,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.623,0],[5.621,2.386],[3.047,4.388],[0,6.292],[-3.053,4.482],[-5.148,2.48],[-7.629,0],[-7.057,-3.24],[0,0],[8.01,9.152],[11.627,4.764],[15.824,0]],"v":[[16546.814,-5.577],[16574.27,-29.601],[16583.994,-65.208],[16576.844,-96.525],[16557.254,-117.117],[16529.369,-124.41],[16515.926,-122.837],[16500.482,-118.976],[16480.463,-93.808],[16490.473,-95.953],[16501.912,-96.668],[16521.789,-93.093],[16534.803,-82.94],[16539.379,-66.638],[16534.803,-50.479],[16522.504,-40.04],[16504.486,-36.322],[16482.465,-41.184],[16466.449,-54.054],[16437.275,-24.882],[16466.734,-4.004],[16505.344,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16529.369,-118.976],[16580.275,-176.748],[16529.654,-176.462],[16480.463,-119.262],[16480.463,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16544.812,-163.592],[16580.275,-176.748],[16580.275,-201.916],[16449.859,-201.916],[16449.859,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16707.262,0],[16707.262,-201.916],[16662.359,-201.916],[16662.359,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16704.4,-163.592],[16704.4,-201.916],[16623.463,-201.916],[16623.463,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.529,9.536],[10.297,5.148],[13.914,0],[12.299,-6.864],[8.195,-13.536],[0,0],[-6.391,4.29],[-8.008,0],[-5.053,-4.478],[0,-7.816],[1.238,-3.526],[2.953,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.816,-7.816],[4.67,-6.48],[2.002,-6.766],[0,-12.772],[-5.531,-9.532],[-10.295,-5.148],[-16.209,0],[-12.299,6.864],[0,0],[5.908,-9.724],[6.387,-4.29],[8.008,0],[5.051,4.482],[0,3.432],[-1.242,3.53],[-2.959,3.91],[0,0],[0,0]],"v":[[16813.652,-24.596],[16867.707,-78.078],[16886.439,-99.528],[16896.449,-119.405],[16899.453,-141.856],[16891.158,-175.318],[16867.42,-197.34],[16831.1,-205.062],[16788.342,-194.766],[16757.598,-164.164],[16787.912,-137.852],[16806.359,-158.873],[16827.953,-165.308],[16847.543,-158.587],[16855.123,-140.14],[16853.264,-129.701],[16846.973,-118.547],[16835.674,-105.248],[16758.168,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16903.742,0],[16903.742,-38.324],[16796.207,-38.324],[16758.168,-25.168],[16758.168,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17064.762,0],[17098.51,-201.916],[17062.473,-201.916],[17029.297,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17107.662,-57.486],[17107.662,-88.946],[16947.502,-88.946],[16947.502,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17000.697,0],[17033.873,-201.916],[16998.123,-201.916],[16964.662,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17117.1,-117.26],[17117.1,-148.72],[16957.225,-148.72],[16957.225,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[17203.186,0],[17264.961,-167.31],[17248.373,-167.31],[17308.719,0],[17356.48,0],[17277.26,-201.916],[17236.361,-201.916],[17156.566,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17312.15,-36.322],[17312.15,-72.93],[17202.328,-72.93],[17202.328,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.537,9.152],[0,0],[7.625,-3.146],[10.295,0],[7.244,2.958],[5.336,5.626],[2.861,7.722],[0,9.536],[-2.859,7.82],[-5.34,5.532],[-7.248,2.958],[-8.773,0],[-7.533,-3.24],[-5.148,-5.72],[0,0],[12.486,5.148],[16.016,0],[12.771,-5.242],[9.627,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.629,-9.532],[-12.869,-5.242],[-15.064,0]],"o":[[12.584,-5.05],[0,0],[-5.342,5.912],[-7.627,3.146],[-8.773,0],[-7.248,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.152],[2.861,-7.816],[5.336,-5.528],[7.244,-2.954],[9.91,0],[7.529,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.258,0],[-12.775,5.246],[-9.629,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.627,9.536],[12.871,5.242],[16.588,0]],"v":[[17531.514,-4.433],[17564.689,-25.74],[17534.088,-56.342],[17514.639,-42.757],[17487.756,-38.038],[17463.73,-42.471],[17444.855,-55.341],[17432.557,-75.361],[17428.268,-101.244],[17432.557,-126.698],[17444.855,-146.718],[17463.73,-159.445],[17487.756,-163.878],[17513.924,-159.016],[17532.943,-145.574],[17563.26,-176.176],[17530.512,-197.34],[17487.756,-205.062],[17445.713,-197.197],[17412.107,-175.318],[17389.656,-142.285],[17381.648,-101.244],[17389.656,-60.203],[17412.107,-26.884],[17445.855,-4.719],[17487.756,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[17640.766,0],[17702.541,-167.31],[17685.953,-167.31],[17746.299,0],[17794.061,0],[17714.84,-201.916],[17673.941,-201.916],[17594.146,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17749.73,-36.322],[17749.73,-72.93],[17639.908,-72.93],[17639.908,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.203,5.246],[-5.434,8.772],[0,11.06],[9.152,9.916],[17.16,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.152,4.768],[12.965,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.244,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.289,-4.004],[0,-4.956],[4.955,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.301,0],[10.197,-5.242],[5.436,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.631,-3.24],[8.008,-8.482],[0,-9.532],[-4.676,-8.008],[-9.15,-4.764],[0,0],[0,0],[0,0],[7.244,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.721,0],[4.098,2.288],[2.287,4.004],[0,7.628],[-4.961,5.054],[0,0],[0,0],[0,0]],"v":[[17926.764,0],[17963.516,-7.865],[17986.967,-28.886],[17995.119,-58.63],[17981.391,-95.238],[17941.922,-114.972],[17940.779,-99.814],[17976.242,-117.403],[17988.254,-149.292],[17981.248,-175.604],[17960.512,-194.766],[17927.336,-201.916],[17874.998,-201.916],[17874.998,-166.738],[17918.756,-166.738],[17936.488,-161.161],[17943.352,-144.716],[17936.488,-127.842],[17918.756,-122.408],[17874.998,-122.408],[17874.998,-88.088],[17922.475,-88.088],[17937.203,-84.656],[17946.785,-75.218],[17950.217,-61.776],[17942.781,-42.757],[17922.475,-35.178],[17874.998,-35.178],[17874.998,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17885.008,0],[17885.008,-201.916],[17840.393,-201.916],[17840.393,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18156.422,0],[18190.17,-201.916],[18154.133,-201.916],[18120.957,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18199.322,-57.486],[18199.322,-88.946],[18039.162,-88.946],[18039.162,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18092.357,0],[18125.533,-201.916],[18089.783,-201.916],[18056.322,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18208.76,-117.26],[18208.76,-148.72],[18048.885,-148.72],[18048.885,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":91,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.295,4.96],[-5.721,8.866],[0,12.204],[5.621,8.964],[10.105,5.054],[13.535,0],[0,0],[0,0],[0,0],[-4.861,-4.764],[0,-7.244],[4.955,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.914,0],[10.297,-4.956],[5.719,-8.866],[0,-11.44],[-5.627,-8.96],[-10.107,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.861,4.768],[0,7.628],[-4.961,4.482],[0,0],[0,0],[0,0]],"v":[[18344.324,-82.94],[18380.645,-90.376],[18404.67,-111.111],[18413.25,-142.714],[18404.812,-173.316],[18381.217,-194.337],[18345.754,-201.916],[18297.705,-201.916],[18297.705,-166.738],[18340.605,-166.738],[18361.055,-159.588],[18368.348,-141.57],[18360.912,-123.409],[18340.32,-116.688],[18297.705,-116.688],[18297.705,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18308.287,0],[18308.287,-201.916],[18263.1,-201.916],[18263.1,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18426.406,0],[18351.473,-98.384],[18310.004,-86.944],[18372.924,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":92,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18515.639,0],[18515.639,-201.916],[18470.451,-201.916],[18470.451,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18616.025,0],[18616.025,-38.896],[18505.057,-38.896],[18505.057,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18605.729,-84.084],[18605.729,-122.122],[18505.057,-122.122],[18505.057,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18614.309,-163.02],[18614.309,-201.916],[18505.057,-201.916],[18505.057,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":93,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[18784.479,-13.299],[18805.07,-58.63],[18799.779,-85.228],[18786.195,-102.96],[18767.748,-114.543],[18747.441,-122.408],[18728.852,-129.272],[18715.268,-137.423],[18710.119,-149.578],[18716.982,-162.305],[18735.572,-166.738],[18756.309,-162.162],[18774.756,-148.148],[18804.213,-177.606],[18775.328,-197.626],[18736.432,-205.062],[18699.537,-198.055],[18674.227,-177.606],[18665.217,-145.288],[18670.365,-119.834],[18683.951,-102.96],[18702.541,-91.806],[18722.703,-83.941],[18741.293,-76.934],[18754.879,-68.068],[18759.883,-54.912],[18752.018,-40.469],[18730.139,-35.178],[18702.541,-41.327],[18680.947,-58.63],[18651.775,-29.458],[18684.236,-4.862],[18727.279,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":94,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18903.453,0],[18903.453,-201.916],[18858.266,-201.916],[18858.266,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19003.84,0],[19003.84,-38.896],[18892.871,-38.896],[18892.871,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18993.543,-84.084],[18993.543,-122.122],[18892.871,-122.122],[18892.871,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19002.123,-163.02],[19002.123,-201.916],[18892.871,-201.916],[18892.871,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":95,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19148.27,0],[19148.27,-199.342],[19102.797,-199.342],[19102.797,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19211.189,-162.448],[19211.189,-201.916],[19039.59,-201.916],[19039.59,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":96,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19306.428,0],[19306.428,-201.916],[19261.24,-201.916],[19261.24,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":97,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19415.393,0],[19415.393,-161.59],[19401.951,-201.916],[19370.205,-201.916],[19370.205,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19520.928,-49.478],[19401.951,-201.916],[19390.797,-152.438],[19509.486,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19542.949,0],[19542.949,-201.916],[19497.475,-201.916],[19497.475,-40.326],[19509.486,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":98,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.871,4.96],[-9.537,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.627,9.058],[12.871,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.053,-9.246],[0,-12.584],[4.955,-9.246],[9.053,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.061,0],[12.869,-4.956],[9.531,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.629,-9.054],[-12.869,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.053,4.862],[5.051,9.25],[0,12.776],[-4.961,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[19688.236,0],[19730.137,-7.436],[19763.742,-28.457],[19786.049,-60.489],[19794.057,-100.958],[19786.049,-141.856],[19763.598,-173.745],[19729.85,-194.623],[19687.666,-201.916],[19635.898,-201.916],[19635.898,-162.448],[19687.094,-162.448],[19718.697,-155.155],[19739.859,-133.991],[19747.439,-101.244],[19740.004,-68.211],[19718.982,-46.904],[19687.094,-39.468],[19637.33,-39.468],[19637.33,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19651.629,0],[19651.629,-201.916],[19606.441,-201.916],[19606.441,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":99,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.775,5.336],[-9.537,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.723,9.438],[12.871,5.246],[15.061,0],[12.965,-5.242],[9.531,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.725,-9.532],[-12.969,-5.336],[-15.256,0]],"o":[[12.771,-5.336],[9.531,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.725,-9.438],[-12.869,-5.242],[-15.256,0],[-12.969,5.246],[-9.535,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.723,9.536],[12.965,5.336],[15.061,0]],"v":[[19985.678,-4.576],[20019.141,-26.741],[20041.447,-59.917],[20049.455,-100.958],[20041.59,-142.285],[20019.141,-175.461],[19985.248,-197.483],[19943.35,-205.348],[19901.021,-197.483],[19867.273,-175.461],[19844.965,-142.428],[19836.957,-101.244],[19844.965,-60.203],[19867.561,-26.884],[19901.594,-4.576],[19943.922,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.961,9.438],[-9.057,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.34],[5.051,-9.532],[8.959,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.859,-7.816],[0,-12.584],[4.955,-9.438],[9.055,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.861,7.722],[0,12.584],[-5.053,9.536],[-8.965,5.34],[-8.965,0]],"v":[[19918.896,-42.185],[19899.877,-55.055],[19887.58,-75.218],[19883.289,-101.244],[19890.727,-134.277],[19911.746,-156.299],[19943.35,-164.164],[19967.66,-159.731],[19986.822,-146.861],[19999.119,-126.841],[20003.41,-101.244],[19995.83,-68.068],[19974.811,-45.76],[19943.35,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":100,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20148.412,0],[20148.412,-161.59],[20134.971,-201.916],[20103.225,-201.916],[20103.225,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20253.947,-49.478],[20134.971,-201.916],[20123.816,-152.438],[20242.506,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20275.969,0],[20275.969,-201.916],[20230.494,-201.916],[20230.494,-40.326],[20242.506,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":101,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20384.646,0],[20384.646,-201.916],[20339.459,-201.916],[20339.459,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20485.033,0],[20485.033,-38.896],[20374.064,-38.896],[20374.064,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20474.736,-84.084],[20474.736,-122.122],[20374.064,-122.122],[20374.064,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20483.316,-163.02],[20483.316,-201.916],[20374.064,-201.916],[20374.064,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":102,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[20653.486,-13.299],[20674.078,-58.63],[20668.787,-85.228],[20655.203,-102.96],[20636.756,-114.543],[20616.449,-122.408],[20597.859,-129.272],[20584.275,-137.423],[20579.127,-149.578],[20585.99,-162.305],[20604.58,-166.738],[20625.316,-162.162],[20643.764,-148.148],[20673.221,-177.606],[20644.336,-197.626],[20605.439,-205.062],[20568.545,-198.055],[20543.234,-177.606],[20534.225,-145.288],[20539.373,-119.834],[20552.959,-102.96],[20571.549,-91.806],[20591.711,-83.941],[20610.301,-76.934],[20623.887,-68.068],[20628.891,-54.912],[20621.025,-40.469],[20599.146,-35.178],[20571.549,-41.327],[20549.955,-58.63],[20520.783,-29.458],[20553.244,-4.862],[20596.287,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":103,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20772.463,0],[20772.463,-201.916],[20727.275,-201.916],[20727.275,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":104,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20867.988,0],[20929.764,-167.31],[20913.176,-167.31],[20973.521,0],[21021.283,0],[20942.062,-201.916],[20901.164,-201.916],[20821.369,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20976.953,-36.322],[20976.953,-72.93],[20867.131,-72.93],[20867.131,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":105,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21177.727,0],[21211.475,-201.916],[21175.438,-201.916],[21142.262,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21220.627,-57.486],[21220.627,-88.946],[21060.467,-88.946],[21060.467,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21113.662,0],[21146.838,-201.916],[21111.088,-201.916],[21077.627,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21230.064,-117.26],[21230.064,-148.72],[21070.189,-148.72],[21070.189,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":106,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21329.592,0],[21329.592,-201.916],[21284.404,-201.916],[21284.404,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":107,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21438.557,0],[21438.557,-161.59],[21425.115,-201.916],[21393.369,-201.916],[21393.369,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21544.092,-49.478],[21425.115,-201.916],[21413.961,-152.438],[21532.65,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21566.113,0],[21566.113,-201.916],[21520.639,-201.916],[21520.639,-40.326],[21532.65,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":108,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.871,4.96],[-9.537,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.627,9.058],[12.871,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.053,-9.246],[0,-12.584],[4.955,-9.246],[9.053,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.061,0],[12.869,-4.956],[9.531,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.629,-9.054],[-12.869,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.053,4.862],[5.051,9.25],[0,12.776],[-4.961,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[21711.4,0],[21753.301,-7.436],[21786.906,-28.457],[21809.213,-60.489],[21817.221,-100.958],[21809.213,-141.856],[21786.762,-173.745],[21753.014,-194.623],[21710.83,-201.916],[21659.062,-201.916],[21659.062,-162.448],[21710.258,-162.448],[21741.861,-155.155],[21763.023,-133.991],[21770.604,-101.244],[21763.168,-68.211],[21742.146,-46.904],[21710.258,-39.468],[21660.494,-39.468],[21660.494,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21674.793,0],[21674.793,-201.916],[21629.605,-201.916],[21629.605,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":109,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.775,5.336],[-9.537,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.723,9.438],[12.871,5.246],[15.061,0],[12.965,-5.242],[9.531,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.725,-9.532],[-12.969,-5.336],[-15.256,0]],"o":[[12.771,-5.336],[9.531,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.725,-9.438],[-12.869,-5.242],[-15.256,0],[-12.969,5.246],[-9.535,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.723,9.536],[12.965,5.336],[15.061,0]],"v":[[22008.842,-4.576],[22042.305,-26.741],[22064.611,-59.917],[22072.619,-100.958],[22064.754,-142.285],[22042.305,-175.461],[22008.412,-197.483],[21966.514,-205.348],[21924.186,-197.483],[21890.438,-175.461],[21868.129,-142.428],[21860.121,-101.244],[21868.129,-60.203],[21890.725,-26.884],[21924.758,-4.576],[21967.086,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.961,9.438],[-9.057,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.34],[5.051,-9.532],[8.959,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.859,-7.816],[0,-12.584],[4.955,-9.438],[9.055,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.861,7.722],[0,12.584],[-5.053,9.536],[-8.965,5.34],[-8.965,0]],"v":[[21942.061,-42.185],[21923.041,-55.055],[21910.744,-75.218],[21906.453,-101.244],[21913.891,-134.277],[21934.91,-156.299],[21966.514,-164.164],[21990.824,-159.731],[22009.986,-146.861],[22022.283,-126.841],[22026.574,-101.244],[22018.994,-68.068],[21997.975,-45.76],[21966.514,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":110,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22171.574,0],[22171.574,-161.59],[22158.133,-201.916],[22126.387,-201.916],[22126.387,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22277.109,-49.478],[22158.133,-201.916],[22146.979,-152.438],[22265.668,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22299.131,0],[22299.131,-201.916],[22253.656,-201.916],[22253.656,-40.326],[22265.668,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":111,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22407.811,0],[22407.811,-201.916],[22362.623,-201.916],[22362.623,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22508.197,0],[22508.197,-38.896],[22397.229,-38.896],[22397.229,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22497.9,-84.084],[22497.9,-122.122],[22397.229,-122.122],[22397.229,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22506.48,-163.02],[22506.48,-201.916],[22397.229,-201.916],[22397.229,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":112,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[22676.65,-13.299],[22697.242,-58.63],[22691.951,-85.228],[22678.367,-102.96],[22659.92,-114.543],[22639.613,-122.408],[22621.023,-129.272],[22607.439,-137.423],[22602.291,-149.578],[22609.154,-162.305],[22627.744,-166.738],[22648.48,-162.162],[22666.928,-148.148],[22696.385,-177.606],[22667.5,-197.626],[22628.604,-205.062],[22591.709,-198.055],[22566.398,-177.606],[22557.389,-145.288],[22562.537,-119.834],[22576.123,-102.96],[22594.713,-91.806],[22614.875,-83.941],[22633.465,-76.934],[22647.051,-68.068],[22652.055,-54.912],[22644.189,-40.469],[22622.311,-35.178],[22594.713,-41.327],[22573.119,-58.63],[22543.947,-29.458],[22576.408,-4.862],[22619.451,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":113,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22795.627,0],[22795.627,-201.916],[22750.439,-201.916],[22750.439,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":114,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22891.152,0],[22952.928,-167.31],[22936.34,-167.31],[22996.686,0],[23044.447,0],[22965.227,-201.916],[22924.328,-201.916],[22844.533,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23000.117,-36.322],[23000.117,-72.93],[22890.295,-72.93],[22890.295,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":115,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.35,8.486],[-8.678,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.477,-8.58],[8.293,-4.478],[11.627,0],[8.959,5.434],[5.148,9.536],[0,12.396],[-5.246,9.438],[-9.344,5.246],[-11.824,0],[-8.865,-4.29],[-6.291,-8.388],[0,0],[14.301,6.39],[17.348,0],[13.059,-5.336],[9.912,-9.438],[5.527,-12.486],[0,-14.872],[-5.436,-12.584],[-9.537,-9.532],[-12.869,-5.434],[-14.871,0]],"o":[[15.346,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.295,4.482],[-11.633,0],[-8.965,-5.434],[-5.148,-9.532],[0,-12.584],[5.242,-9.438],[9.34,-5.242],[10.869,0],[8.865,4.29],[0,0],[-9.344,-11.056],[-14.299,-6.386],[-15.064,0],[-13.062,5.34],[-9.916,9.438],[-5.533,12.49],[0,14.684],[5.434,12.584],[9.531,9.536],[12.871,5.434],[20.02,0]],"v":[[23228.488,-9.295],[23264.525,-46.904],[23277.537,-107.822],[23277.537,-114.4],[23171.432,-114.4],[23171.432,-76.362],[23261.521,-74.932],[23231.492,-94.952],[23224.771,-64.064],[23205.609,-44.473],[23175.723,-37.752],[23144.834,-45.903],[23123.67,-68.354],[23115.947,-101.244],[23123.812,-134.277],[23145.691,-156.299],[23177.438,-164.164],[23207.039,-157.729],[23229.775,-138.71],[23260.664,-169.598],[23225.199,-195.767],[23177.725,-205.348],[23135.539,-197.34],[23101.076,-175.175],[23077.91,-142.285],[23069.615,-101.244],[23077.768,-60.346],[23100.219,-27.17],[23133.822,-4.719],[23175.436,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":116,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23374.777,0],[23374.777,-201.916],[23329.59,-201.916],[23329.59,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23475.164,0],[23475.164,-38.896],[23364.195,-38.896],[23364.195,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23464.867,-84.084],[23464.867,-122.122],[23364.195,-122.122],[23364.195,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23473.447,-163.02],[23473.447,-201.916],[23364.195,-201.916],[23364.195,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":117,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23575.834,0],[23575.834,-201.916],[23530.646,-201.916],[23530.646,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23665.352,0],[23665.352,-39.468],[23565.539,-39.468],[23565.539,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":118,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[23742.574,0],[23804.35,-167.31],[23787.762,-167.31],[23848.107,0],[23895.869,0],[23816.648,-201.916],[23775.75,-201.916],[23695.955,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23851.539,-36.322],[23851.539,-72.93],[23741.717,-72.93],[23741.717,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":119,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.395,5.148],[-6.006,9.63],[0,13.156],[6.008,9.63],[10.391,5.148],[12.771,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.672,-4.384],[0,-6.292],[2.668,-4.384],[4.477,-2.19],[5.527,0],[0,0],[0,0]],"o":[[12.771,0],[10.391,-5.148],[6.008,-9.626],[0,-13.344],[-6.006,-9.626],[-10.395,-5.148],[0,0],[0,0],[0,0],[5.527,0],[4.477,2.194],[2.668,4.388],[0,6.104],[-2.672,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[24026.857,-73.502],[24061.605,-81.224],[24086.201,-103.389],[24095.211,-137.566],[24086.201,-172.029],[24061.605,-194.194],[24026.857,-201.916],[23976.807,-201.916],[23976.807,-166.738],[24020.279,-166.738],[24035.295,-163.449],[24046.02,-153.582],[24050.023,-137.566],[24046.02,-121.836],[24035.295,-111.969],[24020.279,-108.68],[23976.807,-108.68],[23976.807,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23987.389,0],[23987.389,-201.916],[23942.201,-201.916],[23942.201,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":120,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":450,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP 2 Outlines","ln":"INDONESIAGELAP","sr":1,"ks":{"o":{"k":[{"s":[5],"t":0,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}},{"s":[5],"t":449,"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]}}]},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[-4849.737,462.658,0],"to":[0,0,0],"ti":[0,0,0]},{"t":449,"s":[-6163.737,462.658,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[126.984,0],[160.732,-201.916],[124.696,-201.916],[91.52,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[169.884,-57.486],[169.884,-88.946],[9.724,-88.946],[9.724,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[62.92,0],[96.096,-201.916],[60.346,-201.916],[26.884,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[179.322,-117.26],[179.322,-148.72],[19.448,-148.72],[19.448,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[303.732,0],[303.732,-201.916],[258.83,-201.916],[258.83,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[300.872,-163.592],[300.872,-201.916],[219.934,-201.916],[219.934,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.484,10.202],[0,13.54],[4.764,8.866],[8.294,4.862],[10.296,0],[4.764,-1.046],[5.528,-1.524],[0,0],[-4.004,0.478],[-3.624,0],[-5.626,-2.382],[-3.052,-4.384],[0,-6.48],[3.048,-4.478],[5.148,-2.476],[6.864,0],[7.052,3.244],[3.62,5.34],[0,0],[-11.632,-4.764],[-14.112,0]],"o":[[11.82,-5.814],[6.48,-10.198],[0,-12.012],[-4.768,-8.866],[-8.294,-4.862],[-4.196,0],[-4.768,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.624,0],[5.622,2.386],[3.048,4.388],[0,6.292],[-3.052,4.482],[-5.148,2.48],[-7.628,0],[-7.056,-3.24],[0,0],[8.008,9.152],[11.628,4.764],[15.824,0]],"v":[[461.604,-5.577],[489.06,-29.601],[498.784,-65.208],[491.634,-96.525],[472.043,-117.117],[444.158,-124.41],[430.716,-122.837],[415.272,-118.976],[395.252,-93.808],[405.262,-95.953],[416.702,-96.668],[436.579,-93.093],[449.592,-82.94],[454.168,-66.638],[449.592,-50.479],[437.294,-40.04],[419.276,-36.322],[397.254,-41.184],[381.238,-54.054],[352.066,-24.882],[381.524,-4.004],[420.134,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[444.158,-118.976],[495.066,-176.748],[444.444,-176.462],[395.252,-119.262],[395.252,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[459.602,-163.592],[495.066,-176.748],[495.066,-201.916],[364.65,-201.916],[364.65,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[622.05,0],[622.05,-201.916],[577.148,-201.916],[577.148,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[619.19,-163.592],[619.19,-201.916],[538.252,-201.916],[538.252,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.528,9.536],[10.296,5.148],[13.916,0],[12.298,-6.864],[8.196,-13.536],[0,0],[-6.39,4.29],[-8.008,0],[-5.054,-4.478],[0,-7.816],[1.238,-3.526],[2.954,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.816,-7.816],[4.67,-6.48],[2.002,-6.766],[0,-12.772],[-5.532,-9.532],[-10.296,-5.148],[-16.208,0],[-12.298,6.864],[0,0],[5.908,-9.724],[6.386,-4.29],[8.008,0],[5.05,4.482],[0,3.432],[-1.242,3.53],[-2.958,3.91],[0,0],[0,0]],"v":[[728.442,-24.596],[782.496,-78.078],[801.229,-99.528],[811.239,-119.405],[814.242,-141.856],[805.948,-175.318],[782.21,-197.34],[745.888,-205.062],[703.131,-194.766],[672.386,-164.164],[702.702,-137.852],[721.149,-158.873],[742.742,-165.308],[762.333,-158.587],[769.912,-140.14],[768.053,-129.701],[761.761,-118.547],[750.464,-105.248],[672.958,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[818.532,0],[818.532,-38.324],[710.996,-38.324],[672.958,-25.168],[672.958,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[979.55,0],[1013.298,-201.916],[977.262,-201.916],[944.086,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1022.45,-57.486],[1022.45,-88.946],[862.29,-88.946],[862.29,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[915.486,0],[948.662,-201.916],[912.912,-201.916],[879.45,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1031.888,-117.26],[1031.888,-148.72],[872.014,-148.72],[872.014,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1117.974,0],[1179.75,-167.31],[1163.162,-167.31],[1223.508,0],[1271.27,0],[1192.048,-201.916],[1151.15,-201.916],[1071.356,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1226.94,-36.322],[1226.94,-72.93],[1117.116,-72.93],[1117.116,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.536,9.152],[0,0],[7.624,-3.146],[10.296,0],[7.244,2.958],[5.336,5.626],[2.86,7.722],[0,9.536],[-2.86,7.82],[-5.34,5.532],[-7.248,2.958],[-8.772,0],[-7.534,-3.24],[-5.148,-5.72],[0,0],[12.486,5.148],[16.016,0],[12.772,-5.242],[9.626,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.63,-9.532],[-12.87,-5.242],[-15.064,0]],"o":[[12.584,-5.05],[0,0],[-5.34,5.912],[-7.628,3.146],[-8.772,0],[-7.248,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.152],[2.86,-7.816],[5.336,-5.528],[7.244,-2.954],[9.912,0],[7.53,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.256,0],[-12.776,5.246],[-9.63,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.626,9.536],[12.87,5.242],[16.588,0]],"v":[[1446.302,-4.433],[1479.478,-25.74],[1448.876,-56.342],[1429.428,-42.757],[1402.544,-38.038],[1378.52,-42.471],[1359.644,-55.341],[1347.346,-75.361],[1343.056,-101.244],[1347.346,-126.698],[1359.644,-146.718],[1378.52,-159.445],[1402.544,-163.878],[1428.713,-159.016],[1447.732,-145.574],[1478.048,-176.176],[1445.301,-197.34],[1402.544,-205.062],[1360.502,-197.197],[1326.897,-175.318],[1304.446,-142.285],[1296.438,-101.244],[1304.446,-60.203],[1326.897,-26.884],[1360.645,-4.719],[1402.544,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1555.554,0],[1617.33,-167.31],[1600.742,-167.31],[1661.088,0],[1708.85,0],[1629.628,-201.916],[1588.73,-201.916],[1508.936,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1664.52,-36.322],[1664.52,-72.93],[1554.696,-72.93],[1554.696,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.202,5.246],[-5.434,8.772],[0,11.06],[9.152,9.916],[17.16,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.152,4.768],[12.964,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.244,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.288,-4.004],[0,-4.956],[4.956,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.3,0],[10.198,-5.242],[5.434,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.632,-3.24],[8.008,-8.482],[0,-9.532],[-4.674,-8.008],[-9.152,-4.764],[0,0],[0,0],[0,0],[7.244,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.72,0],[4.098,2.288],[2.288,4.004],[0,7.628],[-4.96,5.054],[0,0],[0,0],[0,0]],"v":[[1841.554,0],[1878.305,-7.865],[1901.757,-28.886],[1909.908,-58.63],[1896.18,-95.238],[1856.712,-114.972],[1855.568,-99.814],[1891.032,-117.403],[1903.044,-149.292],[1896.037,-175.604],[1875.302,-194.766],[1842.126,-201.916],[1789.788,-201.916],[1789.788,-166.738],[1833.546,-166.738],[1851.278,-161.161],[1858.142,-144.716],[1851.278,-127.842],[1833.546,-122.408],[1789.788,-122.408],[1789.788,-88.088],[1837.264,-88.088],[1851.993,-84.656],[1861.574,-75.218],[1865.006,-61.776],[1857.57,-42.757],[1837.264,-35.178],[1789.788,-35.178],[1789.788,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1799.798,0],[1799.798,-201.916],[1755.182,-201.916],[1755.182,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2071.212,0],[2104.96,-201.916],[2068.924,-201.916],[2035.748,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2114.112,-57.486],[2114.112,-88.946],[1953.952,-88.946],[1953.952,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2007.148,0],[2040.324,-201.916],[2004.574,-201.916],[1971.112,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2123.55,-117.26],[2123.55,-148.72],[1963.676,-148.72],[1963.676,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.296,4.96],[-5.72,8.866],[0,12.204],[5.622,8.964],[10.104,5.054],[13.536,0],[0,0],[0,0],[0,0],[-4.862,-4.764],[0,-7.244],[4.956,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.916,0],[10.296,-4.956],[5.72,-8.866],[0,-11.44],[-5.626,-8.96],[-10.108,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.862,4.768],[0,7.628],[-4.96,4.482],[0,0],[0,0],[0,0]],"v":[[2259.114,-82.94],[2295.436,-90.376],[2319.46,-111.111],[2328.04,-142.714],[2319.603,-173.316],[2296.008,-194.337],[2260.544,-201.916],[2212.496,-201.916],[2212.496,-166.738],[2255.396,-166.738],[2275.845,-159.588],[2283.138,-141.57],[2275.702,-123.409],[2255.11,-116.688],[2212.496,-116.688],[2212.496,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2223.078,0],[2223.078,-201.916],[2177.89,-201.916],[2177.89,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2341.196,0],[2266.264,-98.384],[2224.794,-86.944],[2287.714,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2430.428,0],[2430.428,-201.916],[2385.24,-201.916],[2385.24,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2530.814,0],[2530.814,-38.896],[2419.846,-38.896],[2419.846,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2520.518,-84.084],[2520.518,-122.122],[2419.846,-122.122],[2419.846,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2529.098,-163.02],[2529.098,-201.916],[2419.846,-201.916],[2419.846,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.334,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[2699.268,-13.299],[2719.86,-58.63],[2714.569,-85.228],[2700.984,-102.96],[2682.537,-114.543],[2662.231,-122.408],[2643.641,-129.272],[2630.056,-137.423],[2624.908,-149.578],[2631.772,-162.305],[2650.362,-166.738],[2671.097,-162.162],[2689.544,-148.148],[2719.002,-177.606],[2690.116,-197.626],[2651.22,-205.062],[2614.326,-198.055],[2589.015,-177.606],[2580.006,-145.288],[2585.154,-119.834],[2598.739,-102.96],[2617.329,-91.806],[2637.492,-83.941],[2656.082,-76.934],[2669.667,-68.068],[2674.672,-54.912],[2666.807,-40.469],[2644.928,-35.178],[2617.329,-41.327],[2595.736,-58.63],[2566.564,-29.458],[2599.025,-4.862],[2642.068,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2818.244,0],[2818.244,-201.916],[2773.056,-201.916],[2773.056,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2918.63,0],[2918.63,-38.896],[2807.662,-38.896],[2807.662,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2908.334,-84.084],[2908.334,-122.122],[2807.662,-122.122],[2807.662,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2916.914,-163.02],[2916.914,-201.916],[2807.662,-201.916],[2807.662,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3063.06,0],[3063.06,-199.342],[3017.586,-199.342],[3017.586,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3125.98,-162.448],[3125.98,-201.916],[2954.38,-201.916],[2954.38,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3221.218,0],[3221.218,-201.916],[3176.03,-201.916],[3176.03,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3330.184,0],[3330.184,-161.59],[3316.742,-201.916],[3284.996,-201.916],[3284.996,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3435.718,-49.478],[3316.742,-201.916],[3305.588,-152.438],[3424.278,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3457.74,0],[3457.74,-201.916],[3412.266,-201.916],[3412.266,-40.326],[3424.278,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.058,-4.862],[-5.054,-9.246],[0,-12.584],[4.956,-9.246],[9.053,-4.956],[12.2,0],[0,0],[0,0]],"o":[[15.06,0],[12.87,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.63,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.058,4.96],[0,0],[0,0],[0,0]],"v":[[3603.028,0],[3644.927,-7.436],[3678.532,-28.457],[3700.84,-60.489],[3708.848,-100.958],[3700.84,-141.856],[3678.389,-173.745],[3644.641,-194.623],[3602.456,-201.916],[3550.69,-201.916],[3550.69,-162.448],[3601.884,-162.448],[3633.487,-155.155],[3654.651,-133.991],[3662.23,-101.244],[3654.794,-68.211],[3633.773,-46.904],[3601.884,-39.468],[3552.12,-39.468],[3552.12,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[3566.42,0],[3566.42,-201.916],[3521.232,-201.916],[3521.232,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.724,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.968,-5.336],[-15.256,0]],"o":[[12.772,-5.336],[9.532,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.724,9.536],[12.964,5.336],[15.06,0]],"v":[[3900.468,-4.576],[3933.93,-26.741],[3956.238,-59.917],[3964.246,-100.958],[3956.381,-142.285],[3933.93,-175.461],[3900.039,-197.483],[3858.14,-205.348],[3815.812,-197.483],[3782.064,-175.461],[3759.756,-142.428],[3751.748,-101.244],[3759.756,-60.203],[3782.35,-26.884],[3816.384,-4.576],[3858.712,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.86,7.82],[0,9.536],[-4.96,9.438],[-9.058,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.86,7.722],[0,12.584],[-5.054,9.536],[-8.964,5.34],[-8.964,0]],"v":[[3833.687,-42.185],[3814.668,-55.055],[3802.37,-75.218],[3798.08,-101.244],[3805.516,-134.277],[3826.537,-156.299],[3858.14,-164.164],[3882.45,-159.731],[3901.612,-146.861],[3913.91,-126.841],[3918.2,-101.244],[3910.621,-68.068],[3889.6,-45.76],[3858.14,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4063.202,0],[4063.202,-161.59],[4049.76,-201.916],[4018.014,-201.916],[4018.014,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4168.736,-49.478],[4049.76,-201.916],[4038.606,-152.438],[4157.296,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4190.758,0],[4190.758,-201.916],[4145.284,-201.916],[4145.284,-40.326],[4157.296,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4299.438,0],[4299.438,-201.916],[4254.25,-201.916],[4254.25,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4399.824,0],[4399.824,-38.896],[4288.856,-38.896],[4288.856,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4389.528,-84.084],[4389.528,-122.122],[4288.856,-122.122],[4288.856,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4398.108,-163.02],[4398.108,-201.916],[4288.856,-201.916],[4288.856,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.333,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[4568.278,-13.299],[4588.87,-58.63],[4583.579,-85.228],[4569.994,-102.96],[4551.547,-114.543],[4531.241,-122.408],[4512.651,-129.272],[4499.066,-137.423],[4493.918,-149.578],[4500.782,-162.305],[4519.372,-166.738],[4540.107,-162.162],[4558.554,-148.148],[4588.012,-177.606],[4559.126,-197.626],[4520.23,-205.062],[4483.336,-198.055],[4458.025,-177.606],[4449.016,-145.288],[4454.164,-119.834],[4467.749,-102.96],[4486.339,-91.806],[4506.502,-83.941],[4525.092,-76.934],[4538.677,-68.068],[4543.682,-54.912],[4535.817,-40.469],[4513.938,-35.178],[4486.339,-41.327],[4464.746,-58.63],[4435.574,-29.458],[4468.035,-4.862],[4511.078,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4687.254,0],[4687.254,-201.916],[4642.066,-201.916],[4642.066,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4782.778,0],[4844.554,-167.31],[4827.966,-167.31],[4888.312,0],[4936.074,0],[4856.852,-201.916],[4815.954,-201.916],[4736.16,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4891.744,-36.322],[4891.744,-72.93],[4781.92,-72.93],[4781.92,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5092.516,0],[5126.264,-201.916],[5090.228,-201.916],[5057.052,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5135.416,-57.486],[5135.416,-88.946],[4975.256,-88.946],[4975.256,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5028.452,0],[5061.628,-201.916],[5025.878,-201.916],[4992.416,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5144.854,-117.26],[5144.854,-148.72],[4984.98,-148.72],[4984.98,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5244.382,0],[5244.382,-201.916],[5199.194,-201.916],[5199.194,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5353.348,0],[5353.348,-161.59],[5339.906,-201.916],[5308.16,-201.916],[5308.16,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5458.882,-49.478],[5339.906,-201.916],[5328.752,-152.438],[5447.442,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5480.904,0],[5480.904,-201.916],[5435.43,-201.916],[5435.43,-40.326],[5447.442,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.335,12.204],[9.626,9.058],[12.87,4.862],[15.251,0],[0,0],[0,0],[0,0],[-9.058,-4.862],[-5.054,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.2,0],[0,0],[0,0]],"o":[[15.06,0],[12.87,-4.956],[9.532,-9.054],[5.335,-12.298],[0,-15.06],[-5.34,-12.2],[-9.63,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.058,4.96],[0,0],[0,0],[0,0]],"v":[[5626.192,0],[5668.091,-7.436],[5701.696,-28.457],[5724.004,-60.489],[5732.012,-100.958],[5724.004,-141.856],[5701.553,-173.745],[5667.805,-194.623],[5625.62,-201.916],[5573.854,-201.916],[5573.854,-162.448],[5625.048,-162.448],[5656.651,-155.155],[5677.815,-133.991],[5685.394,-101.244],[5677.958,-68.211],[5656.937,-46.904],[5625.048,-39.468],[5575.284,-39.468],[5575.284,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5589.584,0],[5589.584,-201.916],[5544.396,-201.916],[5544.396,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.724,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.335,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.968,-5.336],[-15.256,0]],"o":[[12.772,-5.336],[9.532,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.537,9.438],[-5.34,12.584],[0,14.684],[5.335,12.682],[9.724,9.536],[12.964,5.336],[15.06,0]],"v":[[5923.632,-4.576],[5957.094,-26.741],[5979.402,-59.917],[5987.41,-100.958],[5979.545,-142.285],[5957.094,-175.461],[5923.203,-197.483],[5881.304,-205.348],[5838.976,-197.483],[5805.228,-175.461],[5782.92,-142.428],[5774.912,-101.244],[5782.92,-60.203],[5805.514,-26.884],[5839.548,-4.576],[5881.876,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.337,2.958],[5.335,5.626],[2.86,7.82],[0,9.536],[-4.96,9.438],[-9.058,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.86,-7.722],[0,-9.34],[5.049,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.86,7.722],[0,12.584],[-5.054,9.536],[-8.964,5.34],[-8.964,0]],"v":[[5856.851,-42.185],[5837.832,-55.055],[5825.534,-75.218],[5821.244,-101.244],[5828.68,-134.277],[5849.701,-156.299],[5881.304,-164.164],[5905.614,-159.731],[5924.776,-146.861],[5937.074,-126.841],[5941.364,-101.244],[5933.785,-68.068],[5912.764,-45.76],[5881.304,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6086.366,0],[6086.366,-161.59],[6072.924,-201.916],[6041.178,-201.916],[6041.178,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6191.899,-49.478],[6072.924,-201.916],[6061.77,-152.438],[6180.459,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6213.921,0],[6213.921,-201.916],[6168.448,-201.916],[6168.448,-40.326],[6180.459,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6322.602,0],[6322.602,-201.916],[6277.414,-201.916],[6277.414,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6422.988,0],[6422.988,-38.896],[6312.02,-38.896],[6312.02,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6412.692,-84.084],[6412.692,-122.122],[6312.02,-122.122],[6312.02,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6421.272,-163.02],[6421.272,-201.916],[6312.02,-201.916],[6312.02,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.728,10.966],[0,19.26],[3.526,7.056],[5.528,4.768],[6.766,2.958],[6.766,2.288],[5.622,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.626,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.194,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.728,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.72,2.48],[3.333,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.404,0]],"v":[[6591.441,-13.299],[6612.034,-58.63],[6606.743,-85.228],[6593.158,-102.96],[6574.71,-114.543],[6554.405,-122.408],[6535.814,-129.272],[6522.229,-137.423],[6517.082,-149.578],[6523.946,-162.305],[6542.536,-166.738],[6563.271,-162.162],[6581.718,-148.148],[6611.176,-177.606],[6582.29,-197.626],[6543.394,-205.062],[6506.5,-198.055],[6481.188,-177.606],[6472.18,-145.288],[6477.328,-119.834],[6490.913,-102.96],[6509.502,-91.806],[6529.666,-83.941],[6548.256,-76.934],[6561.841,-68.068],[6566.846,-54.912],[6558.98,-40.469],[6537.102,-35.178],[6509.502,-41.327],[6487.91,-58.63],[6458.738,-29.458],[6491.199,-4.862],[6534.242,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6710.418,0],[6710.418,-201.916],[6665.23,-201.916],[6665.23,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6805.942,0],[6867.718,-167.31],[6851.13,-167.31],[6911.476,0],[6959.238,0],[6880.016,-201.916],[6839.118,-201.916],[6759.324,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[6914.908,-36.322],[6914.908,-72.93],[6805.083,-72.93],[6805.083,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.351,8.486],[-8.678,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.478,-8.58],[8.294,-4.478],[11.627,0],[8.96,5.434],[5.148,9.536],[0,12.396],[-5.246,9.438],[-9.344,5.246],[-11.824,0],[-8.866,-4.29],[-6.292,-8.388],[0,0],[14.3,6.39],[17.348,0],[13.058,-5.336],[9.912,-9.438],[5.528,-12.486],[0,-14.872],[-5.434,-12.584],[-9.536,-9.532],[-12.87,-5.434],[-14.872,0]],"o":[[15.345,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.294,4.482],[-11.632,0],[-8.964,-5.434],[-5.148,-9.532],[0,-12.584],[5.242,-9.438],[9.34,-5.242],[10.868,0],[8.866,4.29],[0,0],[-9.344,-11.056],[-14.3,-6.386],[-15.064,0],[-13.062,5.34],[-9.917,9.438],[-5.532,12.49],[0,14.684],[5.434,12.584],[9.532,9.536],[12.87,5.434],[20.02,0]],"v":[[7143.279,-9.295],[7179.314,-46.904],[7192.328,-107.822],[7192.328,-114.4],[7086.222,-114.4],[7086.222,-76.362],[7176.312,-74.932],[7146.282,-94.952],[7139.561,-64.064],[7120.398,-44.473],[7090.512,-37.752],[7059.624,-45.903],[7038.459,-68.354],[7030.738,-101.244],[7038.603,-134.277],[7060.481,-156.299],[7092.228,-164.164],[7121.829,-157.729],[7144.565,-138.71],[7175.454,-169.598],[7139.99,-195.767],[7092.514,-205.348],[7050.329,-197.34],[7015.866,-175.175],[6992.7,-142.285],[6984.406,-101.244],[6992.557,-60.346],[7015.007,-27.17],[7048.613,-4.719],[7090.226,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7289.568,0],[7289.568,-201.916],[7244.38,-201.916],[7244.38,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7389.954,0],[7389.954,-38.896],[7278.986,-38.896],[7278.986,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7379.658,-84.084],[7379.658,-122.122],[7278.986,-122.122],[7278.986,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7388.238,-163.02],[7388.238,-201.916],[7278.986,-201.916],[7278.986,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7490.626,0],[7490.626,-201.916],[7445.438,-201.916],[7445.438,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7580.144,0],[7580.144,-39.468],[7480.33,-39.468],[7480.33,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7657.364,0],[7719.14,-167.31],[7702.552,-167.31],[7762.897,0],[7810.66,0],[7731.438,-201.916],[7690.54,-201.916],[7610.746,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7766.33,-36.322],[7766.33,-72.93],[7656.505,-72.93],[7656.505,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.394,5.148],[-6.006,9.63],[0,13.156],[6.006,9.63],[10.39,5.148],[12.772,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.672,-4.384],[0,-6.292],[2.668,-4.384],[4.478,-2.19],[5.528,0],[0,0],[0,0]],"o":[[12.772,0],[10.39,-5.148],[6.006,-9.626],[0,-13.344],[-6.006,-9.626],[-10.394,-5.148],[0,0],[0,0],[0,0],[5.528,0],[4.478,2.194],[2.668,4.388],[0,6.104],[-2.672,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[7941.647,-73.502],[7976.396,-81.224],[8000.993,-103.389],[8010.001,-137.566],[8000.993,-172.029],[7976.396,-194.194],[7941.647,-201.916],[7891.598,-201.916],[7891.598,-166.738],[7935.07,-166.738],[7950.084,-163.449],[7960.81,-153.582],[7964.813,-137.566],[7960.81,-121.836],[7950.084,-111.969],[7935.07,-108.68],[7891.598,-108.68],[7891.598,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7902.18,0],[7902.18,-201.916],[7856.992,-201.916],[7856.992,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8169.589,0],[8203.338,-201.916],[8167.301,-201.916],[8134.125,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8212.489,-57.486],[8212.489,-88.946],[8052.33,-88.946],[8052.33,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8105.525,0],[8138.702,-201.916],[8102.952,-201.916],[8069.489,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8221.928,-117.26],[8221.928,-148.72],[8062.054,-148.72],[8062.054,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8346.338,0],[8346.338,-201.916],[8301.436,-201.916],[8301.436,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8343.478,-163.592],[8343.478,-201.916],[8262.539,-201.916],[8262.539,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.484,10.202],[0,13.54],[4.764,8.866],[8.294,4.862],[10.296,0],[4.764,-1.046],[5.527,-1.524],[0,0],[-4.004,0.478],[-3.624,0],[-5.626,-2.382],[-3.053,-4.384],[0,-6.48],[3.047,-4.478],[5.148,-2.476],[6.864,0],[7.052,3.244],[3.62,5.34],[0,0],[-11.632,-4.764],[-14.112,0]],"o":[[11.819,-5.814],[6.479,-10.198],[0,-12.012],[-4.769,-8.866],[-8.294,-4.862],[-4.196,0],[-4.769,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.624,0],[5.622,2.386],[3.047,4.388],[0,6.292],[-3.053,4.482],[-5.147,2.48],[-7.628,0],[-7.056,-3.24],[0,0],[8.008,9.152],[11.628,4.764],[15.823,0]],"v":[[8504.21,-5.577],[8531.666,-29.601],[8541.39,-65.208],[8534.24,-96.525],[8514.648,-117.117],[8486.764,-124.41],[8473.322,-122.837],[8457.878,-118.976],[8437.857,-93.808],[8447.868,-95.953],[8459.308,-96.668],[8479.185,-93.093],[8492.198,-82.94],[8496.773,-66.638],[8492.198,-50.479],[8479.899,-40.04],[8461.882,-36.322],[8439.859,-41.184],[8423.844,-54.054],[8394.672,-24.882],[8424.13,-4.004],[8462.74,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8486.764,-118.976],[8537.672,-176.748],[8487.05,-176.462],[8437.857,-119.262],[8437.857,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8502.208,-163.592],[8537.672,-176.748],[8537.672,-201.916],[8407.256,-201.916],[8407.256,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8664.656,0],[8664.656,-201.916],[8619.754,-201.916],[8619.754,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8661.796,-163.592],[8661.796,-201.916],[8580.857,-201.916],[8580.857,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.527,9.536],[10.296,5.148],[13.916,0],[12.298,-6.864],[8.195,-13.536],[0,0],[-6.39,4.29],[-8.009,0],[-5.055,-4.478],[0,-7.816],[1.238,-3.526],[2.954,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.815,-7.816],[4.67,-6.48],[2.003,-6.766],[0,-12.772],[-5.533,-9.532],[-10.296,-5.148],[-16.208,0],[-12.298,6.864],[0,0],[5.907,-9.724],[6.386,-4.29],[8.008,0],[5.05,4.482],[0,3.432],[-1.242,3.53],[-2.958,3.91],[0,0],[0,0]],"v":[[8771.048,-24.596],[8825.103,-78.078],[8843.835,-99.528],[8853.845,-119.405],[8856.849,-141.856],[8848.555,-175.318],[8824.816,-197.34],[8788.494,-205.062],[8745.737,-194.766],[8714.992,-164.164],[8745.309,-137.852],[8763.755,-158.873],[8785.349,-165.308],[8804.939,-158.587],[8812.519,-140.14],[8810.659,-129.701],[8804.367,-118.547],[8793.07,-105.248],[8715.564,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[8861.139,0],[8861.139,-38.324],[8753.603,-38.324],[8715.564,-25.168],[8715.564,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9022.156,0],[9055.904,-201.916],[9019.868,-201.916],[8986.691,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9065.056,-57.486],[9065.056,-88.946],[8904.896,-88.946],[8904.896,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8958.092,0],[8991.268,-201.916],[8955.518,-201.916],[8922.056,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9074.494,-117.26],[9074.494,-148.72],[8914.62,-148.72],[8914.62,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[9160.58,0],[9222.355,-167.31],[9205.768,-167.31],[9266.114,0],[9313.876,0],[9234.654,-201.916],[9193.756,-201.916],[9113.962,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9269.546,-36.322],[9269.546,-72.93],[9159.722,-72.93],[9159.722,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.536,9.152],[0,0],[7.623,-3.146],[10.296,0],[7.243,2.958],[5.335,5.626],[2.859,7.722],[0,9.536],[-2.86,7.82],[-5.341,5.532],[-7.249,2.958],[-8.771,0],[-7.534,-3.24],[-5.148,-5.72],[0,0],[12.485,5.148],[16.017,0],[12.772,-5.242],[9.626,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.63,-9.532],[-12.87,-5.242],[-15.063,0]],"o":[[12.584,-5.05],[0,0],[-5.34,5.912],[-7.629,3.146],[-8.771,0],[-7.249,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.152],[2.859,-7.816],[5.335,-5.528],[7.243,-2.954],[9.912,0],[7.53,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.256,0],[-12.775,5.246],[-9.63,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.626,9.536],[12.87,5.242],[16.588,0]],"v":[[9488.908,-4.433],[9522.084,-25.74],[9491.481,-56.342],[9472.034,-42.757],[9445.149,-38.038],[9421.126,-42.471],[9402.25,-55.341],[9389.952,-75.361],[9385.662,-101.244],[9389.952,-126.698],[9402.25,-146.718],[9421.126,-159.445],[9445.149,-163.878],[9471.318,-159.016],[9490.338,-145.574],[9520.653,-176.176],[9487.907,-197.34],[9445.149,-205.062],[9403.107,-197.197],[9369.503,-175.318],[9347.052,-142.285],[9339.044,-101.244],[9347.052,-60.203],[9369.503,-26.884],[9403.251,-4.719],[9445.149,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[9598.16,0],[9659.936,-167.31],[9643.348,-167.31],[9703.694,0],[9751.456,0],[9672.234,-201.916],[9631.336,-201.916],[9551.542,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9707.126,-36.322],[9707.126,-72.93],[9597.302,-72.93],[9597.302,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.202,5.246],[-5.435,8.772],[0,11.06],[9.151,9.916],[17.159,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.151,4.768],[12.964,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.243,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.288,-4.004],[0,-4.956],[4.956,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.3,0],[10.197,-5.242],[5.434,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.632,-3.24],[8.008,-8.482],[0,-9.532],[-4.674,-8.008],[-9.152,-4.764],[0,0],[0,0],[0,0],[7.243,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.72,0],[4.099,2.288],[2.288,4.004],[0,7.628],[-4.96,5.054],[0,0],[0,0],[0,0]],"v":[[9884.16,0],[9920.911,-7.865],[9944.363,-28.886],[9952.514,-58.63],[9938.786,-95.238],[9899.318,-114.972],[9898.174,-99.814],[9933.638,-117.403],[9945.65,-149.292],[9938.643,-175.604],[9917.908,-194.766],[9884.732,-201.916],[9832.394,-201.916],[9832.394,-166.738],[9876.152,-166.738],[9893.884,-161.161],[9900.748,-144.716],[9893.884,-127.842],[9876.152,-122.408],[9832.394,-122.408],[9832.394,-88.088],[9879.87,-88.088],[9894.599,-84.656],[9904.18,-75.218],[9907.612,-61.776],[9900.176,-42.757],[9879.87,-35.178],[9832.394,-35.178],[9832.394,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9842.404,0],[9842.404,-201.916],[9797.788,-201.916],[9797.788,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10113.818,0],[10147.566,-201.916],[10111.53,-201.916],[10078.354,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10156.718,-57.486],[10156.718,-88.946],[9996.558,-88.946],[9996.558,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10049.754,0],[10082.93,-201.916],[10047.18,-201.916],[10013.718,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10166.156,-117.26],[10166.156,-148.72],[10006.282,-148.72],[10006.282,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.296,4.96],[-5.721,8.866],[0,12.204],[5.622,8.964],[10.104,5.054],[13.535,0],[0,0],[0,0],[0,0],[-4.862,-4.764],[0,-7.244],[4.956,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.916,0],[10.296,-4.956],[5.72,-8.866],[0,-11.44],[-5.626,-8.96],[-10.108,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.862,4.768],[0,7.628],[-4.96,4.482],[0,0],[0,0],[0,0]],"v":[[10301.72,-82.94],[10338.042,-90.376],[10362.066,-111.111],[10370.646,-142.714],[10362.209,-173.316],[10338.614,-194.337],[10303.15,-201.916],[10255.102,-201.916],[10255.102,-166.738],[10298.002,-166.738],[10318.451,-159.588],[10325.744,-141.57],[10318.308,-123.409],[10297.716,-116.688],[10255.102,-116.688],[10255.102,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10265.684,0],[10265.684,-201.916],[10220.496,-201.916],[10220.496,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10383.802,0],[10308.87,-98.384],[10267.4,-86.944],[10330.32,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10473.033,0],[10473.033,-201.916],[10427.846,-201.916],[10427.846,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10573.42,0],[10573.42,-38.896],[10462.451,-38.896],[10462.451,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10563.124,-84.084],[10563.124,-122.122],[10462.451,-122.122],[10462.451,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10571.703,-163.02],[10571.703,-201.916],[10462.451,-201.916],[10462.451,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[10741.874,-13.299],[10762.466,-58.63],[10757.175,-85.228],[10743.59,-102.96],[10725.143,-114.543],[10704.837,-122.408],[10686.247,-129.272],[10672.662,-137.423],[10667.514,-149.578],[10674.378,-162.305],[10692.968,-166.738],[10713.703,-162.162],[10732.149,-148.148],[10761.607,-177.606],[10732.722,-197.626],[10693.826,-205.062],[10656.932,-198.055],[10631.621,-177.606],[10622.611,-145.288],[10627.76,-119.834],[10641.345,-102.96],[10659.935,-91.806],[10680.098,-83.941],[10698.688,-76.934],[10712.272,-68.068],[10717.277,-54.912],[10709.413,-40.469],[10687.534,-35.178],[10659.935,-41.327],[10638.342,-58.63],[10609.17,-29.458],[10641.631,-4.862],[10684.674,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10860.85,0],[10860.85,-201.916],[10815.662,-201.916],[10815.662,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10961.236,0],[10961.236,-38.896],[10850.268,-38.896],[10850.268,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10950.94,-84.084],[10950.94,-122.122],[10850.268,-122.122],[10850.268,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10959.52,-163.02],[10959.52,-201.916],[10850.268,-201.916],[10850.268,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11105.666,0],[11105.666,-199.342],[11060.191,-199.342],[11060.191,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11168.586,-162.448],[11168.586,-201.916],[10996.985,-201.916],[10996.985,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11263.823,0],[11263.823,-201.916],[11218.636,-201.916],[11218.636,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11372.789,0],[11372.789,-161.59],[11359.348,-201.916],[11327.602,-201.916],[11327.602,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11478.323,-49.478],[11359.348,-201.916],[11348.193,-152.438],[11466.884,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11500.346,0],[11500.346,-201.916],[11454.871,-201.916],[11454.871,-40.326],[11466.884,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.055,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.06,0],[12.869,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.631,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[11645.634,0],[11687.533,-7.436],[11721.138,-28.457],[11743.445,-60.489],[11751.454,-100.958],[11743.445,-141.856],[11720.995,-173.745],[11687.247,-194.623],[11645.062,-201.916],[11593.296,-201.916],[11593.296,-162.448],[11644.49,-162.448],[11676.093,-155.155],[11697.257,-133.991],[11704.836,-101.244],[11697.399,-68.211],[11676.379,-46.904],[11644.49,-39.468],[11594.726,-39.468],[11594.726,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[11609.025,0],[11609.025,-201.916],[11563.838,-201.916],[11563.838,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.341,12.682],[0,14.684],[5.242,12.682],[9.725,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.969,-5.336],[-15.257,0]],"o":[[12.771,-5.336],[9.532,-9.438],[5.335,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.725,9.536],[12.964,5.336],[15.06,0]],"v":[[11943.073,-4.576],[11976.535,-26.741],[11998.844,-59.917],[12006.852,-100.958],[11998.986,-142.285],[11976.535,-175.461],[11942.645,-197.483],[11900.745,-205.348],[11858.417,-197.483],[11824.669,-175.461],[11802.361,-142.428],[11794.354,-101.244],[11802.361,-60.203],[11824.955,-26.884],[11858.989,-4.576],[11901.317,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.96,9.438],[-9.059,5.246],[-12.012,0],[-7.437,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.335,5.626],[2.859,7.722],[0,12.584],[-5.055,9.536],[-8.964,5.34],[-8.964,0]],"v":[[11876.292,-42.185],[11857.273,-55.055],[11844.976,-75.218],[11840.686,-101.244],[11848.121,-134.277],[11869.143,-156.299],[11900.745,-164.164],[11925.056,-159.731],[11944.218,-146.861],[11956.516,-126.841],[11960.806,-101.244],[11953.227,-68.068],[11932.205,-45.76],[11900.745,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12105.808,0],[12105.808,-161.59],[12092.366,-201.916],[12060.62,-201.916],[12060.62,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12211.342,-49.478],[12092.366,-201.916],[12081.212,-152.438],[12199.902,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12233.364,0],[12233.364,-201.916],[12187.89,-201.916],[12187.89,-40.326],[12199.902,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12342.043,0],[12342.043,-201.916],[12296.855,-201.916],[12296.855,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12442.43,0],[12442.43,-38.896],[12331.461,-38.896],[12331.461,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12432.134,-84.084],[12432.134,-122.122],[12331.461,-122.122],[12331.461,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12440.713,-163.02],[12440.713,-201.916],[12331.461,-201.916],[12331.461,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[12610.884,-13.299],[12631.476,-58.63],[12626.185,-85.228],[12612.6,-102.96],[12594.152,-114.543],[12573.847,-122.408],[12555.257,-129.272],[12541.672,-137.423],[12536.523,-149.578],[12543.388,-162.305],[12561.978,-166.738],[12582.713,-162.162],[12601.159,-148.148],[12630.617,-177.606],[12601.731,-197.626],[12562.836,-205.062],[12525.941,-198.055],[12500.631,-177.606],[12491.621,-145.288],[12496.77,-119.834],[12510.354,-102.96],[12528.944,-91.806],[12549.107,-83.941],[12567.697,-76.934],[12581.282,-68.068],[12586.287,-54.912],[12578.423,-40.469],[12556.544,-35.178],[12528.944,-41.327],[12507.352,-58.63],[12478.18,-29.458],[12510.641,-4.862],[12553.684,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12729.859,0],[12729.859,-201.916],[12684.672,-201.916],[12684.672,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12825.384,0],[12887.159,-167.31],[12870.571,-167.31],[12930.918,0],[12978.68,0],[12899.458,-201.916],[12858.56,-201.916],[12778.766,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[12934.35,-36.322],[12934.35,-72.93],[12824.525,-72.93],[12824.525,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13135.122,0],[13168.87,-201.916],[13132.834,-201.916],[13099.657,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13178.021,-57.486],[13178.021,-88.946],[13017.861,-88.946],[13017.861,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13071.058,0],[13104.233,-201.916],[13068.483,-201.916],[13035.021,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13187.46,-117.26],[13187.46,-148.72],[13027.586,-148.72],[13027.586,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13286.987,0],[13286.987,-201.916],[13241.8,-201.916],[13241.8,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13395.953,0],[13395.953,-161.59],[13382.512,-201.916],[13350.766,-201.916],[13350.766,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13501.487,-49.478],[13382.512,-201.916],[13371.357,-152.438],[13490.048,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13523.51,0],[13523.51,-201.916],[13478.035,-201.916],[13478.035,-40.326],[13490.048,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.87,4.96],[-9.536,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.625,9.058],[12.87,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.055,-9.246],[0,-12.584],[4.956,-9.246],[9.054,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.06,0],[12.869,-4.956],[9.532,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.631,-9.054],[-12.87,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.054,4.862],[5.05,9.25],[0,12.776],[-4.96,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[13668.798,0],[13710.697,-7.436],[13744.302,-28.457],[13766.609,-60.489],[13774.618,-100.958],[13766.609,-141.856],[13744.159,-173.745],[13710.411,-194.623],[13668.226,-201.916],[13616.46,-201.916],[13616.46,-162.448],[13667.654,-162.448],[13699.257,-155.155],[13720.421,-133.991],[13728,-101.244],[13720.563,-68.211],[13699.543,-46.904],[13667.654,-39.468],[13617.89,-39.468],[13617.89,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13632.189,0],[13632.189,-201.916],[13587.002,-201.916],[13587.002,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.776,5.336],[-9.536,9.438],[-5.341,12.682],[0,14.684],[5.242,12.682],[9.725,9.438],[12.87,5.246],[15.06,0],[12.964,-5.242],[9.532,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.724,-9.532],[-12.969,-5.336],[-15.257,0]],"o":[[12.771,-5.336],[9.532,-9.438],[5.335,-12.678],[0,-14.872],[-5.246,-12.678],[-9.724,-9.438],[-12.87,-5.242],[-15.256,0],[-12.968,5.246],[-9.536,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.725,9.536],[12.964,5.336],[15.06,0]],"v":[[13966.237,-4.576],[13999.699,-26.741],[14022.008,-59.917],[14030.016,-100.958],[14022.15,-142.285],[13999.699,-175.461],[13965.809,-197.483],[13923.909,-205.348],[13881.581,-197.483],[13847.833,-175.461],[13825.525,-142.428],[13817.518,-101.244],[13825.525,-60.203],[13848.119,-26.884],[13882.153,-4.576],[13924.481,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.96,9.438],[-9.059,5.246],[-12.012,0],[-7.437,-2.954],[-5.341,-5.622],[-2.86,-7.722],[0,-9.34],[5.05,-9.532],[8.96,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.86,-7.816],[0,-12.584],[4.956,-9.438],[9.054,-5.242],[8.768,0],[7.436,2.958],[5.335,5.626],[2.859,7.722],[0,12.584],[-5.055,9.536],[-8.964,5.34],[-8.964,0]],"v":[[13899.456,-42.185],[13880.438,-55.055],[13868.14,-75.218],[13863.85,-101.244],[13871.285,-134.277],[13892.307,-156.299],[13923.909,-164.164],[13948.22,-159.731],[13967.382,-146.861],[13979.68,-126.841],[13983.97,-101.244],[13976.391,-68.068],[13955.369,-45.76],[13923.909,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14128.971,0],[14128.971,-161.59],[14115.529,-201.916],[14083.783,-201.916],[14083.783,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14234.505,-49.478],[14115.529,-201.916],[14104.375,-152.438],[14223.065,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14256.527,0],[14256.527,-201.916],[14211.053,-201.916],[14211.053,-40.326],[14223.065,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14365.207,0],[14365.207,-201.916],[14320.02,-201.916],[14320.02,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14465.594,0],[14465.594,-38.896],[14354.625,-38.896],[14354.625,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14455.298,-84.084],[14455.298,-122.122],[14354.625,-122.122],[14354.625,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14463.877,-163.02],[14463.877,-201.916],[14354.625,-201.916],[14354.625,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.729,10.966],[0,19.26],[3.525,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.621,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.198,-3.048],[-6.104,-6.292],[0,0],[11.628,4.96],[14.3,0],[10.868,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.626,-4.384],[-6.77,-3.048],[-6.676,-2.19],[-5.72,-2.476],[-3.338,-3.432],[0,-5.336],[5.241,-3.526],[9.339,0],[7.91,4.102],[6.479,7.436],[0,0],[-11.918,-5.336],[-16.78,0]],"o":[[13.728,-10.962],[0,-10.676],[-3.53,-7.052],[-5.532,-4.764],[-6.77,-2.954],[-6.771,-2.288],[-5.627,-2.288],[-3.433,-3.146],[0,-5.528],[4.576,-2.954],[7.624,0],[6.193,3.052],[0,0],[-7.628,-8.388],[-11.632,-4.956],[-13.729,0],[-10.868,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.622,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.334,3.432],[0,6.104],[-5.247,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.724,11.06],[11.914,5.336],[24.403,0]],"v":[[14634.048,-13.299],[14654.64,-58.63],[14649.349,-85.228],[14635.764,-102.96],[14617.316,-114.543],[14597.011,-122.408],[14578.421,-129.272],[14564.836,-137.423],[14559.688,-149.578],[14566.552,-162.305],[14585.142,-166.738],[14605.877,-162.162],[14624.323,-148.148],[14653.781,-177.606],[14624.896,-197.626],[14586,-205.062],[14549.105,-198.055],[14523.795,-177.606],[14514.785,-145.288],[14519.934,-119.834],[14533.519,-102.96],[14552.108,-91.806],[14572.271,-83.941],[14590.861,-76.934],[14604.446,-68.068],[14609.451,-54.912],[14601.587,-40.469],[14579.708,-35.178],[14552.108,-41.327],[14530.516,-58.63],[14501.344,-29.458],[14533.805,-4.862],[14576.848,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14753.022,0],[14753.022,-201.916],[14707.835,-201.916],[14707.835,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14848.548,0],[14910.323,-167.31],[14893.735,-167.31],[14954.082,0],[15001.844,0],[14922.622,-201.916],[14881.724,-201.916],[14801.93,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14957.514,-36.322],[14957.514,-72.93],[14847.689,-72.93],[14847.689,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.351,8.486],[-8.679,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.478,-8.58],[8.294,-4.478],[11.628,0],[8.96,5.434],[5.148,9.536],[0,12.396],[-5.247,9.438],[-9.345,5.246],[-11.825,0],[-8.866,-4.29],[-6.292,-8.388],[0,0],[14.3,6.39],[17.348,0],[13.058,-5.336],[9.911,-9.438],[5.527,-12.486],[0,-14.872],[-5.434,-12.584],[-9.536,-9.532],[-12.87,-5.434],[-14.871,0]],"o":[[15.346,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.294,4.482],[-11.632,0],[-8.964,-5.434],[-5.147,-9.532],[0,-12.584],[5.241,-9.438],[9.339,-5.242],[10.867,0],[8.866,4.29],[0,0],[-9.344,-11.056],[-14.3,-6.386],[-15.063,0],[-13.062,5.34],[-9.916,9.438],[-5.532,12.49],[0,14.684],[5.435,12.584],[9.532,9.536],[12.87,5.434],[20.021,0]],"v":[[15185.885,-9.295],[15221.921,-46.904],[15234.934,-107.822],[15234.934,-114.4],[15128.827,-114.4],[15128.827,-76.362],[15218.918,-74.932],[15188.888,-94.952],[15182.167,-64.064],[15163.005,-44.473],[15133.117,-37.752],[15102.229,-45.903],[15081.065,-68.354],[15073.344,-101.244],[15081.209,-134.277],[15103.088,-156.299],[15134.834,-164.164],[15164.435,-157.729],[15187.172,-138.71],[15218.06,-169.598],[15182.596,-195.767],[15135.119,-205.348],[15092.935,-197.34],[15058.472,-175.175],[15035.306,-142.285],[15027.012,-101.244],[15035.162,-60.346],[15057.613,-27.17],[15091.219,-4.719],[15132.831,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15332.173,0],[15332.173,-201.916],[15286.985,-201.916],[15286.985,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15432.56,0],[15432.56,-38.896],[15321.591,-38.896],[15321.591,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15422.264,-84.084],[15422.264,-122.122],[15321.591,-122.122],[15321.591,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15430.843,-163.02],[15430.843,-201.916],[15321.591,-201.916],[15321.591,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15533.23,0],[15533.23,-201.916],[15488.043,-201.916],[15488.043,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15622.749,0],[15622.749,-39.468],[15522.935,-39.468],[15522.935,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15699.97,0],[15761.745,-167.31],[15745.157,-167.31],[15805.504,0],[15853.266,0],[15774.044,-201.916],[15733.146,-201.916],[15653.352,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15808.936,-36.322],[15808.936,-72.93],[15699.111,-72.93],[15699.111,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.395,5.148],[-6.006,9.63],[0,13.156],[6.006,9.63],[10.39,5.148],[12.771,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.673,-4.384],[0,-6.292],[2.667,-4.384],[4.478,-2.19],[5.527,0],[0,0],[0,0]],"o":[[12.771,0],[10.39,-5.148],[6.006,-9.626],[0,-13.344],[-6.006,-9.626],[-10.395,-5.148],[0,0],[0,0],[0,0],[5.527,0],[4.478,2.194],[2.667,4.388],[0,6.104],[-2.673,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[15984.254,-73.502],[16019.003,-81.224],[16043.599,-103.389],[16052.607,-137.566],[16043.599,-172.029],[16019.003,-194.194],[15984.254,-201.916],[15934.203,-201.916],[15934.203,-166.738],[15977.676,-166.738],[15992.69,-163.449],[16003.416,-153.582],[16007.42,-137.566],[16003.416,-121.836],[15992.69,-111.969],[15977.676,-108.68],[15934.203,-108.68],[15934.203,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15944.785,0],[15944.785,-201.916],[15899.598,-201.916],[15899.598,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16212.195,0],[16245.943,-201.916],[16209.907,-201.916],[16176.73,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16255.095,-57.486],[16255.095,-88.946],[16094.935,-88.946],[16094.935,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16148.131,0],[16181.307,-201.916],[16145.557,-201.916],[16112.095,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16264.533,-117.26],[16264.533,-148.72],[16104.659,-148.72],[16104.659,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16388.943,0],[16388.943,-201.916],[16344.041,-201.916],[16344.041,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16386.082,-163.592],[16386.082,-201.916],[16305.145,-201.916],[16305.145,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.824,5.814],[-6.482,10.202],[0,13.54],[4.764,8.866],[8.293,4.862],[10.295,0],[4.764,-1.046],[5.527,-1.524],[0,0],[-4.004,0.478],[-3.623,0],[-5.625,-2.382],[-3.053,-4.384],[0,-6.48],[3.047,-4.478],[5.148,-2.476],[6.863,0],[7.051,3.244],[3.619,5.34],[0,0],[-11.633,-4.764],[-14.111,0]],"o":[[11.82,-5.814],[6.48,-10.198],[0,-12.012],[-4.768,-8.866],[-8.295,-4.862],[-4.197,0],[-4.768,1.05],[0,0],[2.668,-0.952],[4.004,-0.474],[7.623,0],[5.621,2.386],[3.047,4.388],[0,6.292],[-3.053,4.482],[-5.148,2.48],[-7.629,0],[-7.057,-3.24],[0,0],[8.01,9.152],[11.627,4.764],[15.824,0]],"v":[[16546.814,-5.577],[16574.27,-29.601],[16583.994,-65.208],[16576.844,-96.525],[16557.254,-117.117],[16529.369,-124.41],[16515.926,-122.837],[16500.482,-118.976],[16480.463,-93.808],[16490.473,-95.953],[16501.912,-96.668],[16521.789,-93.093],[16534.803,-82.94],[16539.379,-66.638],[16534.803,-50.479],[16522.504,-40.04],[16504.486,-36.322],[16482.465,-41.184],[16466.449,-54.054],[16437.275,-24.882],[16466.734,-4.004],[16505.344,3.146]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16529.369,-118.976],[16580.275,-176.748],[16529.654,-176.462],[16480.463,-119.262],[16480.463,-93.808]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16544.812,-163.592],[16580.275,-176.748],[16580.275,-201.916],[16449.859,-201.916],[16449.859,-163.592]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16707.262,0],[16707.262,-201.916],[16662.359,-201.916],[16662.359,0]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16704.4,-163.592],[16704.4,-201.916],[16623.463,-201.916],[16623.463,-163.592]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-4.674,6.484],[-2.002,6.77],[0,8.2],[5.529,9.536],[10.297,5.148],[13.914,0],[12.299,-6.864],[8.195,-13.536],[0,0],[-6.391,4.29],[-8.008,0],[-5.053,-4.478],[0,-7.816],[1.238,-3.526],[2.953,-3.906],[4.576,-4.956],[0,0]],"o":[[0,0],[7.816,-7.816],[4.67,-6.48],[2.002,-6.766],[0,-12.772],[-5.531,-9.532],[-10.295,-5.148],[-16.209,0],[-12.299,6.864],[0,0],[5.908,-9.724],[6.387,-4.29],[8.008,0],[5.051,4.482],[0,3.432],[-1.242,3.53],[-2.959,3.91],[0,0],[0,0]],"v":[[16813.652,-24.596],[16867.707,-78.078],[16886.439,-99.528],[16896.449,-119.405],[16899.453,-141.856],[16891.158,-175.318],[16867.42,-197.34],[16831.1,-205.062],[16788.342,-194.766],[16757.598,-164.164],[16787.912,-137.852],[16806.359,-158.873],[16827.953,-165.308],[16847.543,-158.587],[16855.123,-140.14],[16853.264,-129.701],[16846.973,-118.547],[16835.674,-105.248],[16758.168,-25.168]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[16903.742,0],[16903.742,-38.324],[16796.207,-38.324],[16758.168,-25.168],[16758.168,0]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17064.762,0],[17098.51,-201.916],[17062.473,-201.916],[17029.297,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17107.662,-57.486],[17107.662,-88.946],[16947.502,-88.946],[16947.502,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17000.697,0],[17033.873,-201.916],[16998.123,-201.916],[16964.662,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17117.1,-117.26],[17117.1,-148.72],[16957.225,-148.72],[16957.225,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[17203.186,0],[17264.961,-167.31],[17248.373,-167.31],[17308.719,0],[17356.48,0],[17277.26,-201.916],[17236.361,-201.916],[17156.566,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17312.15,-36.322],[17312.15,-72.93],[17202.328,-72.93],[17202.328,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.584,5.05],[-9.537,9.152],[0,0],[7.625,-3.146],[10.295,0],[7.244,2.958],[5.336,5.626],[2.861,7.722],[0,9.536],[-2.859,7.82],[-5.34,5.532],[-7.248,2.958],[-8.773,0],[-7.533,-3.24],[-5.148,-5.72],[0,0],[12.486,5.148],[16.016,0],[12.771,-5.242],[9.627,-9.34],[5.336,-12.678],[0,-14.68],[-5.34,-12.678],[-9.629,-9.532],[-12.869,-5.242],[-15.064,0]],"o":[[12.584,-5.05],[0,0],[-5.342,5.912],[-7.627,3.146],[-8.773,0],[-7.248,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.152],[2.861,-7.816],[5.336,-5.528],[7.244,-2.954],[9.91,0],[7.529,3.244],[0,0],[-9.344,-8.96],[-12.49,-5.148],[-15.258,0],[-12.775,5.246],[-9.629,9.344],[-5.34,12.682],[0,14.684],[5.336,12.682],[9.627,9.536],[12.871,5.242],[16.588,0]],"v":[[17531.514,-4.433],[17564.689,-25.74],[17534.088,-56.342],[17514.639,-42.757],[17487.756,-38.038],[17463.73,-42.471],[17444.855,-55.341],[17432.557,-75.361],[17428.268,-101.244],[17432.557,-126.698],[17444.855,-146.718],[17463.73,-159.445],[17487.756,-163.878],[17513.924,-159.016],[17532.943,-145.574],[17563.26,-176.176],[17530.512,-197.34],[17487.756,-205.062],[17445.713,-197.197],[17412.107,-175.318],[17389.656,-142.285],[17381.648,-101.244],[17389.656,-60.203],[17412.107,-26.884],[17445.855,-4.719],[17487.756,3.146]],"c":true},"ix":2},"nm":"C","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"C","np":3,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[17640.766,0],[17702.541,-167.31],[17685.953,-167.31],[17746.299,0],[17794.061,0],[17714.84,-201.916],[17673.941,-201.916],[17594.146,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17749.73,-36.322],[17749.73,-72.93],[17639.908,-72.93],[17639.908,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.203,5.246],[-5.434,8.772],[0,11.06],[9.152,9.916],[17.16,3.244],[0,0],[-8.008,8.486],[0,12.776],[4.67,8.008],[9.152,4.768],[12.965,0],[0,0],[0,0],[0,0],[-4.576,-3.718],[0,-7.244],[4.576,-3.62],[7.244,0],[0,0],[0,0],[0,0],[-4.102,-2.288],[-2.289,-4.004],[0,-4.956],[4.955,-5.05],[8.58,0],[0,0],[0,0]],"o":[[14.301,0],[10.197,-5.242],[5.436,-8.768],[0,-14.488],[-9.152,-9.912],[0,0],[15.631,-3.24],[8.008,-8.482],[0,-9.532],[-4.676,-8.008],[-9.15,-4.764],[0,0],[0,0],[0,0],[7.244,0],[4.576,3.718],[0,7.628],[-4.576,3.624],[0,0],[0,0],[0,0],[5.721,0],[4.098,2.288],[2.287,4.004],[0,7.628],[-4.961,5.054],[0,0],[0,0],[0,0]],"v":[[17926.764,0],[17963.516,-7.865],[17986.967,-28.886],[17995.119,-58.63],[17981.391,-95.238],[17941.922,-114.972],[17940.779,-99.814],[17976.242,-117.403],[17988.254,-149.292],[17981.248,-175.604],[17960.512,-194.766],[17927.336,-201.916],[17874.998,-201.916],[17874.998,-166.738],[17918.756,-166.738],[17936.488,-161.161],[17943.352,-144.716],[17936.488,-127.842],[17918.756,-122.408],[17874.998,-122.408],[17874.998,-88.088],[17922.475,-88.088],[17937.203,-84.656],[17946.785,-75.218],[17950.217,-61.776],[17942.781,-42.757],[17922.475,-35.178],[17874.998,-35.178],[17874.998,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17885.008,0],[17885.008,-201.916],[17840.393,-201.916],[17840.393,0]],"c":true},"ix":2},"nm":"B","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"B","np":5,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18156.422,0],[18190.17,-201.916],[18154.133,-201.916],[18120.957,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18199.322,-57.486],[18199.322,-88.946],[18039.162,-88.946],[18039.162,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18092.357,0],[18125.533,-201.916],[18089.783,-201.916],[18056.322,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18208.76,-117.26],[18208.76,-148.72],[18048.885,-148.72],[18048.885,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":91,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.295,4.96],[-5.721,8.866],[0,12.204],[5.621,8.964],[10.105,5.054],[13.535,0],[0,0],[0,0],[0,0],[-4.861,-4.764],[0,-7.244],[4.955,-4.478],[8.768,0],[0,0],[0,0]],"o":[[13.914,0],[10.297,-4.956],[5.719,-8.866],[0,-11.44],[-5.627,-8.96],[-10.107,-5.05],[0,0],[0,0],[0,0],[8.768,0],[4.861,4.768],[0,7.628],[-4.961,4.482],[0,0],[0,0],[0,0]],"v":[[18344.324,-82.94],[18380.645,-90.376],[18404.67,-111.111],[18413.25,-142.714],[18404.812,-173.316],[18381.217,-194.337],[18345.754,-201.916],[18297.705,-201.916],[18297.705,-166.738],[18340.605,-166.738],[18361.055,-159.588],[18368.348,-141.57],[18360.912,-123.409],[18340.32,-116.688],[18297.705,-116.688],[18297.705,-82.94]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18308.287,0],[18308.287,-201.916],[18263.1,-201.916],[18263.1,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18426.406,0],[18351.473,-98.384],[18310.004,-86.944],[18372.924,0]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":92,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18515.639,0],[18515.639,-201.916],[18470.451,-201.916],[18470.451,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18616.025,0],[18616.025,-38.896],[18505.057,-38.896],[18505.057,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18605.729,-84.084],[18605.729,-122.122],[18505.057,-122.122],[18505.057,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18614.309,-163.02],[18614.309,-201.916],[18505.057,-201.916],[18505.057,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":93,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[18784.479,-13.299],[18805.07,-58.63],[18799.779,-85.228],[18786.195,-102.96],[18767.748,-114.543],[18747.441,-122.408],[18728.852,-129.272],[18715.268,-137.423],[18710.119,-149.578],[18716.982,-162.305],[18735.572,-166.738],[18756.309,-162.162],[18774.756,-148.148],[18804.213,-177.606],[18775.328,-197.626],[18736.432,-205.062],[18699.537,-198.055],[18674.227,-177.606],[18665.217,-145.288],[18670.365,-119.834],[18683.951,-102.96],[18702.541,-91.806],[18722.703,-83.941],[18741.293,-76.934],[18754.879,-68.068],[18759.883,-54.912],[18752.018,-40.469],[18730.139,-35.178],[18702.541,-41.327],[18680.947,-58.63],[18651.775,-29.458],[18684.236,-4.862],[18727.279,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":94,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18903.453,0],[18903.453,-201.916],[18858.266,-201.916],[18858.266,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19003.84,0],[19003.84,-38.896],[18892.871,-38.896],[18892.871,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[18993.543,-84.084],[18993.543,-122.122],[18892.871,-122.122],[18892.871,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19002.123,-163.02],[19002.123,-201.916],[18892.871,-201.916],[18892.871,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":95,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19148.27,0],[19148.27,-199.342],[19102.797,-199.342],[19102.797,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19211.189,-162.448],[19211.189,-201.916],[19039.59,-201.916],[19039.59,-162.448]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":96,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19306.428,0],[19306.428,-201.916],[19261.24,-201.916],[19261.24,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":97,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19415.393,0],[19415.393,-161.59],[19401.951,-201.916],[19370.205,-201.916],[19370.205,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19520.928,-49.478],[19401.951,-201.916],[19390.797,-152.438],[19509.486,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[19542.949,0],[19542.949,-201.916],[19497.475,-201.916],[19497.475,-40.326],[19509.486,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":98,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.871,4.96],[-9.537,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.627,9.058],[12.871,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.053,-9.246],[0,-12.584],[4.955,-9.246],[9.053,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.061,0],[12.869,-4.956],[9.531,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.629,-9.054],[-12.869,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.053,4.862],[5.051,9.25],[0,12.776],[-4.961,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[19688.236,0],[19730.137,-7.436],[19763.742,-28.457],[19786.049,-60.489],[19794.057,-100.958],[19786.049,-141.856],[19763.598,-173.745],[19729.85,-194.623],[19687.666,-201.916],[19635.898,-201.916],[19635.898,-162.448],[19687.094,-162.448],[19718.697,-155.155],[19739.859,-133.991],[19747.439,-101.244],[19740.004,-68.211],[19718.982,-46.904],[19687.094,-39.468],[19637.33,-39.468],[19637.33,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19651.629,0],[19651.629,-201.916],[19606.441,-201.916],[19606.441,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":99,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.775,5.336],[-9.537,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.723,9.438],[12.871,5.246],[15.061,0],[12.965,-5.242],[9.531,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.725,-9.532],[-12.969,-5.336],[-15.256,0]],"o":[[12.771,-5.336],[9.531,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.725,-9.438],[-12.869,-5.242],[-15.256,0],[-12.969,5.246],[-9.535,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.723,9.536],[12.965,5.336],[15.061,0]],"v":[[19985.678,-4.576],[20019.141,-26.741],[20041.447,-59.917],[20049.455,-100.958],[20041.59,-142.285],[20019.141,-175.461],[19985.248,-197.483],[19943.35,-205.348],[19901.021,-197.483],[19867.273,-175.461],[19844.965,-142.428],[19836.957,-101.244],[19844.965,-60.203],[19867.561,-26.884],[19901.594,-4.576],[19943.922,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.961,9.438],[-9.057,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.34],[5.051,-9.532],[8.959,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.859,-7.816],[0,-12.584],[4.955,-9.438],[9.055,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.861,7.722],[0,12.584],[-5.053,9.536],[-8.965,5.34],[-8.965,0]],"v":[[19918.896,-42.185],[19899.877,-55.055],[19887.58,-75.218],[19883.289,-101.244],[19890.727,-134.277],[19911.746,-156.299],[19943.35,-164.164],[19967.66,-159.731],[19986.822,-146.861],[19999.119,-126.841],[20003.41,-101.244],[19995.83,-68.068],[19974.811,-45.76],[19943.35,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":100,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20148.412,0],[20148.412,-161.59],[20134.971,-201.916],[20103.225,-201.916],[20103.225,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20253.947,-49.478],[20134.971,-201.916],[20123.816,-152.438],[20242.506,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20275.969,0],[20275.969,-201.916],[20230.494,-201.916],[20230.494,-40.326],[20242.506,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":101,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20384.646,0],[20384.646,-201.916],[20339.459,-201.916],[20339.459,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20485.033,0],[20485.033,-38.896],[20374.064,-38.896],[20374.064,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20474.736,-84.084],[20474.736,-122.122],[20374.064,-122.122],[20374.064,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20483.316,-163.02],[20483.316,-201.916],[20374.064,-201.916],[20374.064,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":102,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[20653.486,-13.299],[20674.078,-58.63],[20668.787,-85.228],[20655.203,-102.96],[20636.756,-114.543],[20616.449,-122.408],[20597.859,-129.272],[20584.275,-137.423],[20579.127,-149.578],[20585.99,-162.305],[20604.58,-166.738],[20625.316,-162.162],[20643.764,-148.148],[20673.221,-177.606],[20644.336,-197.626],[20605.439,-205.062],[20568.545,-198.055],[20543.234,-177.606],[20534.225,-145.288],[20539.373,-119.834],[20552.959,-102.96],[20571.549,-91.806],[20591.711,-83.941],[20610.301,-76.934],[20623.887,-68.068],[20628.891,-54.912],[20621.025,-40.469],[20599.146,-35.178],[20571.549,-41.327],[20549.955,-58.63],[20520.783,-29.458],[20553.244,-4.862],[20596.287,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":103,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20772.463,0],[20772.463,-201.916],[20727.275,-201.916],[20727.275,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":104,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20867.988,0],[20929.764,-167.31],[20913.176,-167.31],[20973.521,0],[21021.283,0],[20942.062,-201.916],[20901.164,-201.916],[20821.369,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20976.953,-36.322],[20976.953,-72.93],[20867.131,-72.93],[20867.131,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":105,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21177.727,0],[21211.475,-201.916],[21175.438,-201.916],[21142.262,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21220.627,-57.486],[21220.627,-88.946],[21060.467,-88.946],[21060.467,-57.486]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21113.662,0],[21146.838,-201.916],[21111.088,-201.916],[21077.627,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21230.064,-117.26],[21230.064,-148.72],[21070.189,-148.72],[21070.189,-117.26]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":106,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21329.592,0],[21329.592,-201.916],[21284.404,-201.916],[21284.404,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":107,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21438.557,0],[21438.557,-161.59],[21425.115,-201.916],[21393.369,-201.916],[21393.369,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21544.092,-49.478],[21425.115,-201.916],[21413.961,-152.438],[21532.65,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21566.113,0],[21566.113,-201.916],[21520.639,-201.916],[21520.639,-40.326],[21532.65,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":108,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.871,4.96],[-9.537,9.058],[-5.34,12.298],[0,14.684],[5.336,12.204],[9.627,9.058],[12.871,4.862],[15.252,0],[0,0],[0,0],[0,0],[-9.059,-4.862],[-5.053,-9.246],[0,-12.584],[4.955,-9.246],[9.053,-4.956],[12.199,0],[0,0],[0,0]],"o":[[15.061,0],[12.869,-4.956],[9.531,-9.054],[5.336,-12.298],[0,-15.06],[-5.34,-12.2],[-9.629,-9.054],[-12.869,-4.862],[0,0],[0,0],[0,0],[12.012,0],[9.053,4.862],[5.051,9.25],[0,12.776],[-4.961,9.25],[-9.059,4.96],[0,0],[0,0],[0,0]],"v":[[21711.4,0],[21753.301,-7.436],[21786.906,-28.457],[21809.213,-60.489],[21817.221,-100.958],[21809.213,-141.856],[21786.762,-173.745],[21753.014,-194.623],[21710.83,-201.916],[21659.062,-201.916],[21659.062,-162.448],[21710.258,-162.448],[21741.861,-155.155],[21763.023,-133.991],[21770.604,-101.244],[21763.168,-68.211],[21742.146,-46.904],[21710.258,-39.468],[21660.494,-39.468],[21660.494,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21674.793,0],[21674.793,-201.916],[21629.605,-201.916],[21629.605,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"D","np":5,"cix":2,"bm":0,"ix":109,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-12.775,5.336],[-9.537,9.438],[-5.34,12.682],[0,14.684],[5.242,12.682],[9.723,9.438],[12.871,5.246],[15.061,0],[12.965,-5.242],[9.531,-9.438],[5.336,-12.584],[0,-14.872],[-5.34,-12.678],[-9.725,-9.532],[-12.969,-5.336],[-15.256,0]],"o":[[12.771,-5.336],[9.531,-9.438],[5.336,-12.678],[0,-14.872],[-5.246,-12.678],[-9.725,-9.438],[-12.869,-5.242],[-15.256,0],[-12.969,5.246],[-9.535,9.438],[-5.34,12.584],[0,14.684],[5.336,12.682],[9.723,9.536],[12.965,5.336],[15.061,0]],"v":[[22008.842,-4.576],[22042.305,-26.741],[22064.611,-59.917],[22072.619,-100.958],[22064.754,-142.285],[22042.305,-175.461],[22008.412,-197.483],[21966.514,-205.348],[21924.186,-197.483],[21890.438,-175.461],[21868.129,-142.428],[21860.121,-101.244],[21868.129,-60.203],[21890.725,-26.884],[21924.758,-4.576],[21967.086,3.432]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[7.338,2.958],[5.336,5.626],[2.859,7.82],[0,9.536],[-4.961,9.438],[-9.057,5.246],[-12.012,0],[-7.436,-2.954],[-5.34,-5.622],[-2.859,-7.722],[0,-9.34],[5.051,-9.532],[8.959,-5.336],[12.012,0]],"o":[[-7.342,-2.954],[-5.34,-5.622],[-2.859,-7.816],[0,-12.584],[4.955,-9.438],[9.055,-5.242],[8.768,0],[7.436,2.958],[5.336,5.626],[2.861,7.722],[0,12.584],[-5.053,9.536],[-8.965,5.34],[-8.965,0]],"v":[[21942.061,-42.185],[21923.041,-55.055],[21910.744,-75.218],[21906.453,-101.244],[21913.891,-134.277],[21934.91,-156.299],[21966.514,-164.164],[21990.824,-159.731],[22009.986,-146.861],[22022.283,-126.841],[22026.574,-101.244],[22018.994,-68.068],[21997.975,-45.76],[21966.514,-37.752]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"O","np":5,"cix":2,"bm":0,"ix":110,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22171.574,0],[22171.574,-161.59],[22158.133,-201.916],[22126.387,-201.916],[22126.387,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22277.109,-49.478],[22158.133,-201.916],[22146.979,-152.438],[22265.668,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22299.131,0],[22299.131,-201.916],[22253.656,-201.916],[22253.656,-40.326],[22265.668,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"N","np":6,"cix":2,"bm":0,"ix":111,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22407.811,0],[22407.811,-201.916],[22362.623,-201.916],[22362.623,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22508.197,0],[22508.197,-38.896],[22397.229,-38.896],[22397.229,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22497.9,-84.084],[22497.9,-122.122],[22397.229,-122.122],[22397.229,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22506.48,-163.02],[22506.48,-201.916],[22397.229,-201.916],[22397.229,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":112,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.727,10.966],[0,19.26],[3.527,7.056],[5.527,4.768],[6.766,2.958],[6.766,2.288],[5.623,2.288],[3.432,3.146],[0,4.96],[-4.576,2.958],[-7.82,0],[-6.199,-3.048],[-6.105,-6.292],[0,0],[11.627,4.96],[14.299,0],[10.867,-4.67],[6.006,-8.96],[0,-12.584],[-3.432,-6.864],[-5.627,-4.384],[-6.771,-3.048],[-6.676,-2.19],[-5.721,-2.476],[-3.338,-3.432],[0,-5.336],[5.242,-3.526],[9.34,0],[7.908,4.102],[6.48,7.436],[0,0],[-11.918,-5.336],[-16.779,0]],"o":[[13.729,-10.962],[0,-10.676],[-3.529,-7.052],[-5.533,-4.764],[-6.77,-2.954],[-6.77,-2.288],[-5.625,-2.288],[-3.432,-3.146],[0,-5.528],[4.576,-2.954],[7.625,0],[6.193,3.052],[0,0],[-7.627,-8.388],[-11.633,-4.956],[-13.729,0],[-10.867,4.674],[-6.006,8.964],[0,10.108],[3.432,6.864],[5.621,4.388],[6.766,3.052],[6.672,2.194],[5.721,2.48],[3.332,3.432],[0,6.104],[-5.246,3.53],[-10.488,0],[-7.914,-4.098],[0,0],[9.725,11.06],[11.914,5.336],[24.404,0]],"v":[[22676.65,-13.299],[22697.242,-58.63],[22691.951,-85.228],[22678.367,-102.96],[22659.92,-114.543],[22639.613,-122.408],[22621.023,-129.272],[22607.439,-137.423],[22602.291,-149.578],[22609.154,-162.305],[22627.744,-166.738],[22648.48,-162.162],[22666.928,-148.148],[22696.385,-177.606],[22667.5,-197.626],[22628.604,-205.062],[22591.709,-198.055],[22566.398,-177.606],[22557.389,-145.288],[22562.537,-119.834],[22576.123,-102.96],[22594.713,-91.806],[22614.875,-83.941],[22633.465,-76.934],[22647.051,-68.068],[22652.055,-54.912],[22644.189,-40.469],[22622.311,-35.178],[22594.713,-41.327],[22573.119,-58.63],[22543.947,-29.458],[22576.408,-4.862],[22619.451,3.146]],"c":true},"ix":2},"nm":"S","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"S","np":3,"cix":2,"bm":0,"ix":113,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[22795.627,0],[22795.627,-201.916],[22750.439,-201.916],[22750.439,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":114,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[22891.152,0],[22952.928,-167.31],[22936.34,-167.31],[22996.686,0],[23044.447,0],[22965.227,-201.916],[22924.328,-201.916],[22844.533,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23000.117,-36.322],[23000.117,-72.93],[22890.295,-72.93],[22890.295,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":115,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.35,8.486],[-8.678,16.588],[0,24.024],[0,0],[0,0],[0,0],[0,0],[0,0],[4.477,-8.58],[8.293,-4.478],[11.627,0],[8.959,5.434],[5.148,9.536],[0,12.396],[-5.246,9.438],[-9.344,5.246],[-11.824,0],[-8.865,-4.29],[-6.291,-8.388],[0,0],[14.301,6.39],[17.348,0],[13.059,-5.336],[9.912,-9.438],[5.527,-12.486],[0,-14.872],[-5.436,-12.584],[-9.537,-9.532],[-12.869,-5.434],[-14.871,0]],"o":[[15.346,-8.482],[8.674,-16.588],[0,0],[0,0],[0,0],[0,0],[0,0],[0,12.012],[-4.482,8.58],[-8.295,4.482],[-11.633,0],[-8.965,-5.434],[-5.148,-9.532],[0,-12.584],[5.242,-9.438],[9.34,-5.242],[10.869,0],[8.865,4.29],[0,0],[-9.344,-11.056],[-14.299,-6.386],[-15.064,0],[-13.062,5.34],[-9.916,9.438],[-5.533,12.49],[0,14.684],[5.434,12.584],[9.531,9.536],[12.871,5.434],[20.02,0]],"v":[[23228.488,-9.295],[23264.525,-46.904],[23277.537,-107.822],[23277.537,-114.4],[23171.432,-114.4],[23171.432,-76.362],[23261.521,-74.932],[23231.492,-94.952],[23224.771,-64.064],[23205.609,-44.473],[23175.723,-37.752],[23144.834,-45.903],[23123.67,-68.354],[23115.947,-101.244],[23123.812,-134.277],[23145.691,-156.299],[23177.438,-164.164],[23207.039,-157.729],[23229.775,-138.71],[23260.664,-169.598],[23225.199,-195.767],[23177.725,-205.348],[23135.539,-197.34],[23101.076,-175.175],[23077.91,-142.285],[23069.615,-101.244],[23077.768,-60.346],[23100.219,-27.17],[23133.822,-4.719],[23175.436,3.432]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"G","np":3,"cix":2,"bm":0,"ix":116,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23374.777,0],[23374.777,-201.916],[23329.59,-201.916],[23329.59,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23475.164,0],[23475.164,-38.896],[23364.195,-38.896],[23364.195,0]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23464.867,-84.084],[23464.867,-122.122],[23364.195,-122.122],[23364.195,-84.084]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23473.447,-163.02],[23473.447,-201.916],[23364.195,-201.916],[23364.195,-163.02]],"c":true},"ix":2},"nm":"E","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"E","np":7,"cix":2,"bm":0,"ix":117,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23575.834,0],[23575.834,-201.916],[23530.646,-201.916],[23530.646,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23665.352,0],[23665.352,-39.468],[23565.539,-39.468],[23565.539,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":118,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[23742.574,0],[23804.35,-167.31],[23787.762,-167.31],[23848.107,0],[23895.869,0],[23816.648,-201.916],[23775.75,-201.916],[23695.955,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23851.539,-36.322],[23851.539,-72.93],[23741.717,-72.93],[23741.717,-36.322]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":119,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.395,5.148],[-6.006,9.63],[0,13.156],[6.008,9.63],[10.391,5.148],[12.771,0],[0,0],[0,0],[0,0],[-4.482,-2.19],[-2.672,-4.384],[0,-6.292],[2.668,-4.384],[4.477,-2.19],[5.527,0],[0,0],[0,0]],"o":[[12.771,0],[10.391,-5.148],[6.008,-9.626],[0,-13.344],[-6.006,-9.626],[-10.395,-5.148],[0,0],[0,0],[0,0],[5.527,0],[4.477,2.194],[2.668,4.388],[0,6.104],[-2.672,4.388],[-4.482,2.194],[0,0],[0,0],[0,0]],"v":[[24026.857,-73.502],[24061.605,-81.224],[24086.201,-103.389],[24095.211,-137.566],[24086.201,-172.029],[24061.605,-194.194],[24026.857,-201.916],[23976.807,-201.916],[23976.807,-166.738],[24020.279,-166.738],[24035.295,-163.449],[24046.02,-153.582],[24050.023,-137.566],[24046.02,-121.836],[24035.295,-111.969],[24020.279,-108.68],[23976.807,-108.68],[23976.807,-73.502]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23987.389,0],[23987.389,-201.916],[23942.201,-201.916],[23942.201,0]],"c":true},"ix":2},"nm":"P","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"P","np":5,"cix":2,"bm":0,"ix":120,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":450,"st":0,"ct":1,"bm":0}]},{"id":"comp_2","nm":"Pre-comp 1","fr":60,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"first Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[170.526]},{"t":30,"s":[170.526]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[232.632]},{"t":30,"s":[113.632]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[50.307,0],[63.345,-85.362],[53.874,-85.362],[40.836,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[68.88,-26.322],[68.88,-35.301],[5.904,-35.301],[5.904,-26.322]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[23.985,0],[37.023,-85.362],[27.552,-85.362],[14.514,0]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[72.693,-51.783],[72.693,-60.762],[9.594,-60.762],[9.594,-51.783]],"c":true},"ix":2},"nm":"#","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"#","np":7,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[97.908,0],[97.908,-58.425],[86.838,-58.425],[86.838,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-2.625,2.625],[-4.101,0],[-1.476,-0.573],[-1.23,-1.311],[0,0],[2.377,1.026],[2.952,0],[3.444,-4.428],[0,-7.461],[0,0]],"o":[[2.623,-2.623],[1.968,0],[1.476,0.575],[0,0],[-2.051,-2.377],[-2.379,-1.024],[-6.479,0],[-3.444,4.428],[0,0],[0,-5.412]],"v":[[101.844,-45.264],[111.93,-49.2],[117.096,-48.339],[121.155,-45.51],[128.412,-53.013],[121.77,-58.118],[113.775,-59.655],[98.892,-53.013],[93.726,-35.178],[97.908,-33.21]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.019,1.722],[-2.871,3.281],[0,0],[2.746,-1.147],[3.279,0],[3.033,1.682],[1.639,3.075],[0,4.101],[-1.559,2.952],[-2.871,1.641],[-3.773,0],[-2.543,-1.516],[-1.395,-2.746],[0,-3.936],[0,0],[0,0],[0,0],[0,0],[-0.083,0.944],[0,0.821],[2.337,4.347],[4.182,2.46],[5.329,0],[4.551,-2.664],[2.664,-4.591],[0,-5.739],[-2.706,-4.591],[-4.634,-2.664],[-5.904,0]],"o":[[4.017,-1.722],[0,0],[-1.968,2.297],[-2.748,1.149],[-3.936,0],[-3.035,-1.68],[-1.641,-3.075],[0,-4.017],[1.557,-2.952],[2.869,-1.639],[3.607,0],[2.541,1.518],[1.393,2.748],[0,0],[0,0],[0,0],[0,0],[0.246,-1.147],[0.081,-0.942],[0,-5.575],[-2.337,-4.345],[-4.182,-2.46],[-5.658,0],[-4.551,2.666],[-2.666,4.593],[0,5.823],[2.706,4.593],[4.632,2.666],[4.591,0]],"v":[[174.291,-1.353],[184.623,-8.856],[177.489,-16.113],[170.417,-10.947],[161.376,-9.225],[150.921,-11.747],[143.91,-18.881],[141.45,-29.643],[143.787,-40.098],[150.429,-46.986],[160.392,-49.446],[169.617,-47.171],[175.521,-40.775],[177.612,-30.75],[181.671,-34.317],[138.252,-34.317],[138.252,-25.092],[187.575,-25.092],[188.067,-28.229],[188.19,-30.873],[184.684,-45.756],[174.906,-55.965],[160.638,-59.655],[145.324,-55.658],[134.501,-44.772],[130.503,-29.274],[134.562,-13.653],[145.57,-2.768],[161.376,1.23]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.896,3.198],[0,5.495],[1.516,2.214],[2.377,1.313],[2.623,0.78],[2.418,0.738],[1.476,1.067],[0,1.968],[-1.682,1.149],[-3.198,0],[-2.379,-1.147],[-1.722,-2.131],[0,0],[3.567,1.599],[4.591,0],[3.115,-1.393],[1.68,-2.583],[0,-3.525],[-1.518,-2.172],[-2.379,-1.23],[-2.666,-0.738],[-2.379,-0.778],[-1.518,-1.188],[0,-2.131],[1.885,-1.188],[3.444,0],[2.787,1.272],[2.131,2.625],[0,0],[-2.42,-1.599],[-2.952,-0.861],[-3.281,0]],"o":[[3.894,-3.198],[0,-3.607],[-1.518,-2.214],[-2.379,-1.311],[-2.625,-0.778],[-2.42,-0.738],[-1.476,-1.065],[0,-1.885],[1.68,-1.147],[3.033,0],[2.377,1.149],[0,0],[-2.297,-3.198],[-3.567,-1.599],[-4.347,0],[-3.117,1.395],[-1.682,2.583],[0,3.527],[1.516,2.174],[2.377,1.23],[2.664,0.738],[2.377,0.78],[1.516,1.19],[0,2.133],[-1.887,1.19],[-3.444,0],[-2.789,-1.27],[0,0],[1.803,2.214],[2.418,1.599],[2.952,0.861],[6.559,0]],"v":[[234.5,-3.567],[240.342,-16.605],[238.067,-25.338],[232.224,-30.627],[224.721,-33.764],[217.157,-36.039],[211.314,-38.745],[209.1,-43.296],[211.622,-47.847],[218.94,-49.569],[227.058,-47.847],[233.208,-42.927],[240.342,-50.061],[231.548,-57.257],[219.309,-59.655],[208.116,-57.564],[200.921,-51.599],[198.399,-42.435],[200.675,-33.887],[206.517,-28.782],[214.082,-25.83],[221.646,-23.555],[227.489,-20.603],[229.764,-15.621],[226.935,-10.639],[218.94,-8.856],[209.592,-10.762],[202.212,-16.605],[195.078,-9.471],[201.413,-3.751],[209.469,-0.061],[218.817,1.23]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.019,1.722],[-2.871,3.281],[0,0],[2.746,-1.147],[3.279,0],[3.033,1.682],[1.639,3.075],[0,4.101],[-1.559,2.952],[-2.871,1.641],[-3.773,0],[-2.543,-1.516],[-1.395,-2.746],[0,-3.936],[0,0],[0,0],[0,0],[0,0],[-0.083,0.944],[0,0.821],[2.337,4.347],[4.182,2.46],[5.329,0],[4.551,-2.664],[2.664,-4.591],[0,-5.739],[-2.706,-4.591],[-4.634,-2.664],[-5.904,0]],"o":[[4.017,-1.722],[0,0],[-1.968,2.297],[-2.748,1.149],[-3.936,0],[-3.035,-1.68],[-1.641,-3.075],[0,-4.017],[1.557,-2.952],[2.869,-1.639],[3.607,0],[2.541,1.518],[1.393,2.748],[0,0],[0,0],[0,0],[0,0],[0.246,-1.147],[0.081,-0.942],[0,-5.575],[-2.337,-4.345],[-4.182,-2.46],[-5.658,0],[-4.551,2.666],[-2.666,4.593],[0,5.823],[2.706,4.593],[4.632,2.666],[4.591,0]],"v":[[292.74,-1.353],[303.072,-8.856],[295.938,-16.113],[288.866,-10.947],[279.825,-9.225],[269.37,-11.747],[262.359,-18.881],[259.899,-29.643],[262.236,-40.098],[268.878,-46.986],[278.841,-49.446],[288.066,-47.171],[293.97,-40.775],[296.061,-30.75],[300.12,-34.317],[256.701,-34.317],[256.701,-25.092],[306.024,-25.092],[306.516,-28.229],[306.639,-30.873],[303.134,-45.756],[293.355,-55.965],[279.087,-59.655],[263.773,-55.658],[252.95,-44.772],[248.952,-29.274],[253.011,-13.653],[264.02,-2.768],[279.825,1.23]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[337.02,0],[337.02,-82.902],[325.95,-82.902],[325.95,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[351.411,-48.339],[351.411,-58.425],[311.559,-58.425],[311.559,-48.339]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1800,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"second Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[525.789]},{"t":30,"s":[525.789]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[232.421]},{"i":{"x":[0.561],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[113.421]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":195,"s":[113.421]},{"t":225,"s":[-10.579]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[28.167,0],[28.167,-82.902],[17.097,-82.902],[17.097,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[42.558,-48.339],[42.558,-58.425],[2.706,-58.425],[2.706,-48.339]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.968,3.527],[3.402,1.968],[4.428,0],[3.525,-2.008],[1.968,-3.444],[0,-4.428],[0,0],[-1.313,2.297],[-2.297,1.313],[-2.952,0],[-2.748,-2.869],[0,-4.428],[0,0]],"o":[[0,0],[0,-4.591],[-1.968,-3.525],[-3.404,-1.968],[-4.428,0],[-3.527,2.01],[-1.968,3.444],[0,0],[0,-2.952],[1.311,-2.295],[2.295,-1.311],[4.428,0],[2.746,2.871],[0,0],[0,0]],"v":[[105.78,0],[105.78,-36.285],[102.828,-48.462],[94.772,-56.703],[83.025,-59.655],[71.094,-56.642],[62.853,-48.462],[59.901,-36.654],[64.452,-34.071],[66.42,-41.943],[71.832,-47.355],[79.704,-49.323],[90.467,-45.018],[94.587,-34.071],[94.587,0]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[64.452,0],[64.452,-87.822],[53.382,-87.822],[53.382,0]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.019,1.722],[-2.871,3.281],[0,0],[2.746,-1.147],[3.279,0],[3.033,1.682],[1.639,3.075],[0,4.101],[-1.559,2.952],[-2.871,1.641],[-3.773,0],[-2.543,-1.516],[-1.395,-2.746],[0,-3.936],[0,0],[0,0],[0,0],[0,0],[-0.083,0.944],[0,0.821],[2.337,4.347],[4.182,2.46],[5.329,0],[4.551,-2.664],[2.664,-4.591],[0,-5.739],[-2.706,-4.591],[-4.634,-2.664],[-5.904,0]],"o":[[4.017,-1.722],[0,0],[-1.968,2.297],[-2.748,1.149],[-3.936,0],[-3.035,-1.68],[-1.641,-3.075],[0,-4.017],[1.557,-2.952],[2.869,-1.639],[3.607,0],[2.541,1.518],[1.393,2.748],[0,0],[0,0],[0,0],[0,0],[0.246,-1.147],[0.081,-0.942],[0,-5.575],[-2.337,-4.345],[-4.182,-2.46],[-5.658,0],[-4.551,2.666],[-2.666,4.593],[0,5.823],[2.706,4.593],[4.632,2.666],[4.591,0]],"v":[[160.761,-1.353],[171.093,-8.856],[163.959,-16.113],[156.887,-10.947],[147.846,-9.225],[137.391,-11.747],[130.38,-18.881],[127.92,-29.643],[130.257,-40.098],[136.899,-46.986],[146.862,-49.446],[156.087,-47.171],[161.991,-40.775],[164.082,-30.75],[168.141,-34.317],[124.722,-34.317],[124.722,-25.092],[174.045,-25.092],[174.537,-28.229],[174.66,-30.873],[171.154,-45.756],[161.376,-55.965],[147.108,-59.655],[131.794,-55.658],[120.971,-44.772],[116.973,-29.274],[121.032,-13.653],[132.04,-2.768],[147.846,1.23]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1800,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"text-ministers 8 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":525.526,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":195,"s":[232.421]},{"t":226,"s":[113.421]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19.311,0],[19.311,-58.425],[8.118,-58.425],[8.118,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.313,1.353],[0,2.051],[1.311,1.353],[2.049,0],[1.311,-1.353],[0,-1.968],[-1.313,-1.353],[-2.051,0]],"o":[[1.311,-1.353],[0,-1.968],[-1.313,-1.353],[-2.051,0],[-1.313,1.353],[0,2.051],[1.311,1.353],[2.049,0]],"v":[[18.819,-72.14],[20.787,-77.244],[18.819,-82.226],[13.776,-84.255],[8.733,-82.226],[6.765,-77.244],[8.733,-72.14],[13.776,-70.11]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.901960784314,0.233448656868,0.233448656868,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.968,3.567],[3.402,2.214],[4.428,0],[3.525,-2.008],[1.968,-3.444],[0,-4.428],[0,0],[-1.313,2.297],[-2.297,1.313],[-2.952,0],[-2.748,-2.869],[0,-4.428],[0,0]],"o":[[0,0],[0,-4.017],[-1.968,-3.567],[-3.404,-2.214],[-4.428,0],[-3.527,2.01],[-1.968,3.444],[0,0],[0,-2.952],[1.311,-2.295],[2.295,-1.311],[4.428,0],[2.746,2.871],[0,0],[0,0]],"v":[[88.068,0],[88.068,-36.285],[85.116,-47.663],[77.06,-56.334],[65.313,-59.655],[53.382,-56.642],[45.141,-48.462],[42.189,-36.654],[46.74,-34.071],[48.708,-41.943],[54.12,-47.355],[61.992,-49.323],[72.755,-45.018],[76.875,-34.071],[76.875,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[46.74,0],[46.74,-58.425],[35.67,-58.425],[35.67,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.901960784314,0.233448656868,0.233448656868,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.527,1.845],[-2.133,3.281],[-0.246,4.182],[0,0],[2.172,3.24],[3.525,1.845],[4.428,0],[4.263,-2.706],[2.5,-4.591],[0,-5.739],[-2.502,-4.591],[-4.265,-2.664],[-5.331,0]],"o":[[3.525,-1.845],[2.131,-3.279],[0,0],[-0.246,-4.263],[-2.174,-3.238],[-3.527,-1.845],[-5.331,0],[-4.265,2.706],[-2.502,4.593],[0,5.741],[2.5,4.593],[4.263,2.666],[4.509,0]],"v":[[139.728,-1.538],[148.215,-9.225],[151.782,-20.418],[151.782,-38.007],[148.154,-49.262],[139.605,-56.888],[127.674,-59.655],[113.283,-55.596],[103.135,-44.649],[99.384,-29.151],[103.135,-13.653],[113.283,-2.768],[127.674,1.23]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[2.829,1.682],[1.599,3.035],[0,3.936],[-1.599,2.994],[-2.789,1.682],[-3.69,0],[-2.789,-1.722],[-1.559,-2.992],[0,-3.936],[1.557,-2.992],[2.787,-1.722],[3.69,0]],"o":[[-2.829,-1.68],[-1.599,-3.033],[0,-3.936],[1.599,-2.992],[2.787,-1.68],[3.69,0],[2.787,1.722],[1.557,2.994],[0,3.855],[-1.559,2.994],[-2.789,1.722],[-3.609,0]],"v":[[119.864,-11.747],[113.222,-18.819],[110.823,-29.274],[113.222,-39.668],[119.802,-46.679],[129.519,-49.2],[139.236,-46.617],[145.755,-39.545],[148.092,-29.151],[145.755,-18.881],[139.236,-11.808],[129.519,-9.225]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[158.547,-87.822],[147.354,-87.822],[147.354,-44.157],[149.445,-30.012],[147.354,-15.744],[147.354,0],[158.547,0]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.901960784314,0.233448656868,0.233448656868,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.92,2.789],[-2.871,4.716],[0,5.987],[2.869,4.716],[4.96,2.706],[6.15,0],[4.92,-2.746],[2.829,-4.674],[0,-5.821],[-2.871,-4.755],[-4.92,-2.787],[-6.233,0]],"o":[[4.92,-2.787],[2.869,-4.714],[0,-5.821],[-2.871,-4.714],[-4.962,-2.706],[-6.315,0],[-4.92,2.748],[-2.829,4.674],[0,5.904],[2.869,4.757],[4.92,2.789],[6.231,0]],"v":[[218.694,-2.829],[230.379,-14.083],[234.684,-30.135],[230.379,-45.941],[218.632,-57.072],[201.966,-61.131],[185.115,-57.01],[173.491,-45.879],[169.248,-30.135],[173.553,-14.145],[185.238,-2.829],[201.966,1.353]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[2.049,1.149],[1.147,2.174],[0,2.789],[-1.149,2.133],[-2.051,1.19],[-2.625,0],[-2.01,-1.188],[-1.149,-2.091],[0,-2.706],[1.107,-2.172],[2.049,-1.147],[2.623,0]],"o":[[-2.051,-1.147],[-1.149,-2.172],[0,-2.623],[1.147,-2.131],[2.049,-1.188],[2.623,0],[2.008,1.19],[1.147,2.091],[0,2.789],[-1.107,2.174],[-2.051,1.149],[-2.625,0]],"v":[[194.955,-17.589],[190.158,-22.57],[188.436,-30.012],[190.158,-37.146],[194.955,-42.128],[201.966,-43.911],[208.915,-42.128],[213.651,-37.208],[215.373,-30.012],[213.712,-22.57],[208.977,-17.589],[201.966,-15.867]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.901960784314,0.233448656868,0.233448656868,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.968,3.486],[3.444,2.051],[4.345,0],[3.648,-1.926],[2.091,-3.525],[0,-4.674],[0,0],[-0.903,1.559],[-1.559,0.861],[-1.968,0],[-1.968,-1.926],[0,-3.033],[0,0]],"o":[[0,0],[0,-4.099],[-1.968,-3.484],[-3.444,-2.049],[-4.593,0],[-3.65,1.928],[-2.091,3.527],[0,0],[0,-2.049],[0.901,-1.557],[1.557,-0.861],[2.952,0],[1.968,1.928],[0,0],[0,0]],"v":[[302.457,0],[302.457,-38.253],[299.505,-49.631],[291.387,-57.933],[279.702,-61.008],[267.341,-58.118],[258.73,-49.938],[255.594,-37.638],[262.851,-34.071],[264.204,-39.483],[267.894,-43.112],[273.183,-44.403],[280.563,-41.512],[283.515,-34.071],[283.515,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[262.851,0],[262.851,-59.778],[243.909,-59.778],[243.909,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.901960784314,0.233448656868,0.233448656868,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.182,1.68],[-2.952,3.527],[0,0],[2.377,-1.024],[2.869,0],[2.337,1.353],[1.27,2.543],[0,3.444],[-1.19,2.46],[-2.174,1.395],[-2.952,0],[-1.928,-1.23],[-0.984,-2.254],[-0.083,-3.361],[0,0],[0,0],[0,0],[0,0],[-0.123,1.19],[0,1.149],[2.623,4.511],[4.509,2.543],[5.985,0],[4.837,-2.706],[2.787,-4.714],[0,-5.904],[-2.871,-4.755],[-5.003,-2.664],[-6.479,0]],"o":[[4.182,-1.68],[0,0],[-1.805,2.051],[-2.379,1.026],[-3.198,0],[-2.337,-1.353],[-1.272,-2.541],[0,-3.444],[1.188,-2.46],[2.172,-1.393],[2.706,0],[1.926,1.23],[0.984,2.256],[0,0],[0,0],[0,0],[0,0],[0.409,-1.476],[0.123,-1.188],[0,-5.821],[-2.625,-4.509],[-4.511,-2.541],[-6.069,0],[-4.839,2.706],[-2.789,4.716],[0,6.069],[2.869,4.757],[5.001,2.664],[5.083,0]],"v":[[357.684,-1.169],[368.385,-8.979],[357.93,-19.311],[351.657,-14.699],[343.785,-13.161],[335.483,-15.191],[330.07,-21.033],[328.164,-30.012],[329.948,-38.868],[334.991,-44.649],[342.678,-46.74],[349.628,-44.895],[353.994,-39.668],[355.593,-31.242],[363.711,-36.777],[320.415,-36.531],[320.415,-23.493],[371.829,-23.739],[372.629,-27.736],[372.813,-31.242],[368.877,-46.74],[358.176,-57.318],[342.432,-61.131],[326.073,-57.072],[314.634,-45.941],[310.452,-30.012],[314.757,-13.776],[326.565,-2.645],[343.785,1.353]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.901960784314,0.233448656868,0.233448656868,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.896,3.198],[0,5.495],[1.516,2.214],[2.377,1.313],[2.623,0.78],[2.418,0.738],[1.476,1.067],[0,1.968],[-1.682,1.149],[-3.198,0],[-2.379,-1.147],[-1.722,-2.131],[0,0],[3.567,1.599],[4.591,0],[3.115,-1.393],[1.68,-2.583],[0,-3.525],[-1.518,-2.172],[-2.379,-1.23],[-2.666,-0.738],[-2.379,-0.778],[-1.518,-1.188],[0,-2.131],[1.885,-1.188],[3.444,0],[2.787,1.272],[2.131,2.625],[0,0],[-2.42,-1.599],[-2.952,-0.861],[-3.281,0]],"o":[[3.894,-3.198],[0,-3.607],[-1.518,-2.214],[-2.379,-1.311],[-2.625,-0.778],[-2.42,-0.738],[-1.476,-1.065],[0,-1.885],[1.68,-1.147],[3.033,0],[2.377,1.149],[0,0],[-2.297,-3.198],[-3.567,-1.599],[-4.347,0],[-3.117,1.395],[-1.682,2.583],[0,3.527],[1.516,2.174],[2.377,1.23],[2.664,0.738],[2.377,0.78],[1.516,1.19],[0,2.133],[-1.887,1.19],[-3.444,0],[-2.789,-1.27],[0,0],[1.803,2.214],[2.418,1.599],[2.952,0.861],[6.559,0]],"v":[[417.523,-3.567],[423.366,-16.605],[421.09,-25.338],[415.248,-30.627],[407.745,-33.764],[400.18,-36.039],[394.338,-38.745],[392.124,-43.296],[394.646,-47.847],[401.964,-49.569],[410.082,-47.847],[416.232,-42.927],[423.366,-50.061],[414.572,-57.257],[402.333,-59.655],[391.14,-57.564],[383.944,-51.599],[381.423,-42.435],[383.698,-33.887],[389.541,-28.782],[397.105,-25.83],[404.67,-23.555],[410.512,-20.603],[412.788,-15.621],[409.959,-10.639],[401.964,-8.856],[392.616,-10.762],[385.236,-16.605],[378.102,-9.471],[384.436,-3.751],[392.493,-0.061],[401.841,1.23]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.901960784314,0.233448656868,0.233448656868,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[446.982,0],[446.982,-58.425],[435.789,-58.425],[435.789,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.313,1.353],[0,2.051],[1.311,1.353],[2.049,0],[1.311,-1.353],[0,-1.968],[-1.313,-1.353],[-2.051,0]],"o":[[1.311,-1.353],[0,-1.968],[-1.313,-1.353],[-2.051,0],[-1.313,1.353],[0,2.051],[1.311,1.353],[2.049,0]],"v":[[446.49,-72.14],[448.458,-77.244],[446.49,-82.226],[441.447,-84.255],[436.404,-82.226],[434.436,-77.244],[436.404,-72.14],[441.447,-70.11]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.901960784314,0.233448656868,0.233448656868,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.527,1.845],[-2.091,3.281],[-0.246,4.182],[0,0],[2.131,3.24],[3.484,1.845],[4.428,0],[4.305,-2.706],[2.5,-4.591],[0,-5.739],[-2.502,-4.591],[-4.305,-2.664],[-5.412,0]],"o":[[3.525,-1.845],[2.091,-3.279],[0,0],[-0.246,-4.263],[-2.133,-3.238],[-3.486,-1.845],[-5.412,0],[-4.305,2.706],[-2.502,4.593],[0,5.741],[2.5,4.593],[4.305,2.666],[4.428,0]],"v":[[500.118,-1.538],[508.543,-9.225],[512.049,-20.418],[512.049,-38.007],[508.482,-49.262],[500.056,-56.888],[488.187,-59.655],[473.611,-55.596],[463.402,-44.649],[459.651,-29.151],[463.402,-13.653],[473.611,-2.768],[488.187,1.23]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[2.869,1.722],[1.599,2.994],[0,3.936],[-1.599,2.994],[-2.829,1.722],[-3.69,0],[-2.748,-1.68],[-1.559,-3.033],[0,-3.936],[3.361,-3.73],[5.493,0]],"o":[[-2.871,-1.722],[-1.599,-2.992],[0,-3.853],[1.599,-2.992],[2.829,-1.722],[3.69,0],[2.746,1.682],[1.557,3.035],[0,5.823],[-3.363,3.732],[-3.69,0]],"v":[[480.192,-11.808],[473.488,-18.881],[471.09,-29.274],[473.488,-39.545],[480.13,-46.617],[489.909,-49.2],[499.564,-46.679],[506.022,-39.606],[508.359,-29.151],[503.316,-14.822],[490.032,-9.225]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[518.814,0],[518.814,-58.425],[507.621,-58.425],[507.621,-44.157],[509.712,-30.012],[507.621,-15.744],[507.621,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.901960784314,0.233448656868,0.233448656868,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false}],"ip":175,"op":1975,"st":175,"ct":1,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"text-ministers 7 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":710.526,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":146,"s":[232.421]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":161,"s":[113.421]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":195,"s":[113.421]},{"t":224,"s":[-31.579]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.363,1.68],[-2.133,2.829],[-0.329,3.527],[0,0],[2.131,2.748],[3.361,1.518],[4.017,0],[4.428,-2.706],[2.46,-4.674],[0,-5.985],[-2.46,-4.674],[-4.388,-2.706],[-5.741,0]],"o":[[3.361,-1.68],[2.131,-2.829],[0,0],[-0.329,-3.607],[-2.133,-2.746],[-3.363,-1.516],[-5.658,0],[-4.428,2.706],[-2.46,4.674],[0,5.987],[2.46,4.674],[4.386,2.706],[4.017,0]],"v":[[43.173,-1.292],[51.414,-8.057],[55.104,-17.589],[55.104,-42.804],[51.414,-52.337],[43.173,-58.732],[32.103,-61.008],[16.974,-56.949],[6.642,-45.879],[2.952,-29.889],[6.642,-13.899],[16.913,-2.829],[32.103,1.23]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[2.049,1.19],[1.107,2.133],[0,2.706],[-1.19,2.091],[-1.968,1.23],[-2.625,0],[-1.968,-1.188],[-1.107,-2.091],[0,-2.706],[1.107,-2.131],[1.968,-1.188],[2.706,0]],"o":[[-2.051,-1.188],[-1.107,-2.131],[0,-2.706],[1.188,-2.091],[1.968,-1.23],[2.623,0],[1.968,1.19],[1.107,2.091],[0,2.789],[-1.107,2.133],[-1.968,1.19],[-2.543,0]],"v":[[28.536,-17.65],[23.801,-22.632],[22.14,-29.889],[23.924,-37.085],[28.659,-42.066],[35.547,-43.911],[42.435,-42.128],[47.048,-37.208],[48.708,-30.012],[47.048,-22.632],[42.435,-17.65],[35.424,-15.867]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[66.543,-89.298],[47.601,-89.298],[47.601,-45.141],[50.799,-30.75],[47.97,-16.113],[47.97,0],[66.543,0]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.182,1.68],[-2.952,3.527],[0,0],[2.377,-1.024],[2.869,0],[2.337,1.353],[1.27,2.543],[0,3.444],[-1.19,2.46],[-2.174,1.395],[-2.952,0],[-1.928,-1.23],[-0.984,-2.254],[-0.083,-3.361],[0,0],[0,0],[0,0],[0,0],[-0.123,1.19],[0,1.149],[2.623,4.511],[4.509,2.543],[5.985,0],[4.837,-2.706],[2.787,-4.714],[0,-5.904],[-2.871,-4.755],[-5.003,-2.664],[-6.479,0]],"o":[[4.182,-1.68],[0,0],[-1.805,2.051],[-2.379,1.026],[-3.198,0],[-2.337,-1.353],[-1.272,-2.541],[0,-3.444],[1.188,-2.46],[2.172,-1.393],[2.706,0],[1.926,1.23],[0.984,2.256],[0,0],[0,0],[0,0],[0,0],[0.409,-1.476],[0.123,-1.188],[0,-5.821],[-2.625,-4.509],[-4.511,-2.541],[-6.069,0],[-4.839,2.706],[-2.789,4.716],[0,6.069],[2.869,4.757],[5.001,2.664],[5.083,0]],"v":[[123.123,-1.169],[133.824,-8.979],[123.369,-19.311],[117.096,-14.699],[109.224,-13.161],[100.922,-15.191],[95.51,-21.033],[93.603,-30.012],[95.387,-38.868],[100.43,-44.649],[108.117,-46.74],[115.067,-44.895],[119.433,-39.668],[121.032,-31.242],[129.15,-36.777],[85.854,-36.531],[85.854,-23.493],[137.268,-23.739],[138.068,-27.736],[138.252,-31.242],[134.316,-46.74],[123.615,-57.318],[107.871,-61.131],[91.512,-57.072],[80.073,-45.941],[75.891,-30.012],[80.196,-13.776],[92.004,-2.645],[109.224,1.353]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[166.05,0],[166.05,-59.778],[147.108,-59.778],[147.108,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.008,3.363],[3.321,1.887],[4.099,0],[3.484,-1.845],[2.091,-3.402],[0,-4.674],[0,0],[-0.861,1.395],[-1.476,0.78],[-1.887,0],[-1.845,-1.68],[0,-2.952],[0,0]],"o":[[0,0],[0,-4.674],[-2.01,-3.361],[-3.321,-1.885],[-4.511,0],[-3.486,1.845],[-2.091,3.404],[0,0],[0,-1.968],[0.861,-1.393],[1.476,-0.778],[2.706,0],[1.845,1.682],[0,0],[0,0]],"v":[[204.426,0],[204.426,-38.253],[201.413,-50.307],[193.418,-58.179],[182.286,-61.008],[170.294,-58.241],[161.93,-50.368],[158.793,-38.253],[166.05,-34.932],[167.342,-39.975],[170.847,-43.234],[175.89,-44.403],[182.717,-41.882],[185.484,-34.932],[185.484,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.049,3.527],[3.607,1.928],[4.509,0],[3.771,-1.968],[2.214,-3.69],[0.246,-5.083],[0,0],[-0.821,1.395],[-1.518,0.78],[-1.805,0],[-1.845,-1.68],[0,-2.952],[0,0]],"o":[[0,0],[0,-5.001],[-2.051,-3.525],[-3.609,-1.926],[-4.674,0],[-3.773,1.968],[-2.214,3.69],[0,0],[0,-1.968],[0.819,-1.393],[1.516,-0.778],[2.623,0],[1.845,1.682],[0,0],[0,0]],"v":[[242.556,0],[242.556,-37.146],[239.481,-49.938],[230.994,-58.118],[218.817,-61.008],[206.148,-58.056],[197.169,-49.569],[193.479,-36.408],[204.426,-34.932],[205.656,-39.975],[209.161,-43.234],[214.143,-44.403],[220.847,-41.882],[223.614,-34.932],[223.614,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.92,2.789],[-2.871,4.716],[0,5.987],[2.869,4.716],[4.96,2.706],[6.15,0],[4.92,-2.746],[2.829,-4.674],[0,-5.821],[-2.871,-4.755],[-4.92,-2.787],[-6.233,0]],"o":[[4.92,-2.787],[2.869,-4.714],[0,-5.821],[-2.871,-4.714],[-4.962,-2.706],[-6.315,0],[-4.92,2.748],[-2.829,4.674],[0,5.904],[2.869,4.757],[4.92,2.789],[6.231,0]],"v":[[300.12,-2.829],[311.805,-14.083],[316.11,-30.135],[311.805,-45.941],[300.059,-57.072],[283.392,-61.131],[266.541,-57.01],[254.918,-45.879],[250.674,-30.135],[254.979,-14.145],[266.664,-2.829],[283.392,1.353]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[2.049,1.149],[1.147,2.174],[0,2.789],[-1.149,2.133],[-2.051,1.19],[-2.625,0],[-2.01,-1.188],[-1.149,-2.091],[0,-2.706],[1.107,-2.172],[2.049,-1.147],[2.623,0]],"o":[[-2.051,-1.147],[-1.149,-2.172],[0,-2.623],[1.147,-2.131],[2.049,-1.188],[2.623,0],[2.008,1.19],[1.147,2.091],[0,2.789],[-1.107,2.174],[-2.051,1.149],[-2.625,0]],"v":[[276.381,-17.589],[271.584,-22.57],[269.862,-30.012],[271.584,-37.146],[276.381,-42.128],[283.392,-43.911],[290.342,-42.128],[295.077,-37.208],[296.799,-30.012],[295.139,-22.57],[290.403,-17.589],[283.392,-15.867]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.896,1.68],[-3.198,3.281],[0,0],[1.926,-0.819],[2.46,0],[2.131,1.19],[1.188,2.133],[0,2.789],[-1.19,2.091],[-2.091,1.19],[-2.625,0],[-1.845,-0.738],[-1.395,-1.557],[0,0],[3.894,1.599],[4.755,0],[5.001,-2.706],[2.869,-4.714],[0,-5.985],[-2.829,-4.755],[-5.003,-2.706],[-6.233,0]],"o":[[3.894,-1.68],[0,0],[-1.395,1.559],[-1.928,0.821],[-2.543,0],[-2.133,-1.188],[-1.19,-2.131],[0,-2.706],[1.188,-2.091],[2.091,-1.188],[2.377,0],[1.845,0.738],[0,0],[-3.035,-3.115],[-3.896,-1.599],[-6.233,0],[-5.003,2.706],[-2.871,4.716],[0,5.904],[2.829,4.757],[5.001,2.706],[4.92,0]],"v":[[367.586,-1.169],[378.225,-8.61],[366.048,-20.664],[361.066,-17.097],[354.486,-15.867],[347.475,-17.65],[342.493,-22.632],[340.71,-30.012],[342.493,-37.208],[347.414,-42.128],[354.486,-43.911],[360.821,-42.804],[365.679,-39.36],[377.856,-51.66],[367.463,-58.732],[354.486,-61.131],[337.635,-57.072],[325.827,-45.941],[321.522,-29.889],[325.766,-13.899],[337.512,-2.706],[354.363,1.353]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[405.285,0],[405.285,-59.778],[386.343,-59.778],[386.343,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.845,1.928],[-3.198,0],[-1.23,-0.492],[-0.738,-0.819],[0,0],[2.172,0.861],[2.869,0],[3.73,-3.853],[1.557,-7.051],[0,0]],"o":[[1.845,-1.926],[1.557,0],[1.23,0.492],[0,0],[-1.641,-1.722],[-2.174,-0.861],[-6.479,0],[-3.732,3.855],[0,0],[0,-3.853]],"v":[[408.053,-41.39],[415.617,-44.28],[419.799,-43.542],[422.751,-41.574],[433.944,-55.842],[428.225,-59.717],[420.66,-61.008],[405.346,-55.227],[397.413,-38.868],[405.285,-32.718]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.24,1.557],[-2.01,2.748],[-0.246,3.527],[0,0],[2.049,2.748],[3.238,1.559],[4.017,0],[4.305,-2.664],[2.5,-4.714],[0,-5.985],[-2.502,-4.632],[-4.347,-2.746],[-5.412,0]],"o":[[3.238,-1.557],[2.008,-2.746],[0,0],[-0.246,-3.525],[-2.051,-2.746],[-3.24,-1.557],[-5.495,0],[-4.305,2.666],[-2.502,4.716],[0,5.987],[2.5,4.634],[4.345,2.748],[4.099,0]],"v":[[473.12,-1.107],[480.992,-7.564],[484.374,-16.974],[484.374,-42.804],[480.93,-52.214],[472.997,-58.671],[462.111,-61.008],[447.413,-57.01],[437.204,-45.941],[433.452,-29.889],[437.204,-13.96],[447.474,-2.891],[462.111,1.23]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[2.008,1.19],[1.188,2.133],[0,2.706],[-1.19,2.133],[-2.01,1.19],[-2.543,0],[-2.051,-1.188],[-1.067,-2.091],[0,-2.706],[2.418,-2.623],[4.017,0]],"o":[[-2.01,-1.188],[-1.19,-2.131],[0,-2.706],[1.188,-2.131],[2.008,-1.188],[2.623,0],[2.049,1.19],[1.065,2.091],[0,4.182],[-2.42,2.625],[-2.543,0]],"v":[[459.221,-17.65],[454.424,-22.632],[452.64,-29.889],[454.424,-37.146],[459.221,-42.128],[466.047,-43.911],[473.058,-42.128],[477.732,-37.208],[479.331,-30.012],[475.703,-19.803],[466.047,-15.867]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[497.166,0],[497.166,-59.778],[478.593,-59.778],[478.593,-45.141],[481.422,-30.75],[478.593,-16.113],[478.593,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.896,1.68],[-3.198,3.281],[0,0],[1.926,-0.819],[2.46,0],[2.131,1.19],[1.188,2.133],[0,2.789],[-1.19,2.091],[-2.091,1.19],[-2.625,0],[-1.845,-0.738],[-1.395,-1.557],[0,0],[3.894,1.599],[4.755,0],[5.001,-2.706],[2.869,-4.714],[0,-5.985],[-2.829,-4.755],[-5.003,-2.706],[-6.233,0]],"o":[[3.894,-1.68],[0,0],[-1.395,1.559],[-1.928,0.821],[-2.543,0],[-2.133,-1.188],[-1.19,-2.131],[0,-2.706],[1.188,-2.091],[2.091,-1.188],[2.377,0],[1.845,0.738],[0,0],[-3.035,-3.115],[-3.896,-1.599],[-6.233,0],[-5.003,2.706],[-2.871,4.716],[0,5.904],[2.829,4.757],[5.001,2.706],[4.92,0]],"v":[[552.578,-1.169],[563.217,-8.61],[551.04,-20.664],[546.059,-17.097],[539.478,-15.867],[532.467,-17.65],[527.486,-22.632],[525.702,-30.012],[527.486,-37.208],[532.406,-42.128],[539.478,-43.911],[545.812,-42.804],[550.671,-39.36],[562.848,-51.66],[552.455,-58.732],[539.478,-61.131],[522.627,-57.072],[510.819,-45.941],[506.514,-29.889],[510.758,-13.899],[522.504,-2.706],[539.355,1.353]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[604.422,0.369],[630.006,-59.778],[609.588,-59.778],[593.721,-12.177],[601.224,-12.177],[585.603,-59.778],[565.185,-59.778],[589.785,0.369]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[593.844,25.215],[604.422,0.369],[592.368,-13.653],[574.41,25.215]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false}],"ip":146,"op":1946,"st":146,"ct":1,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"text-ministers 6 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":130,"s":[710.526]},{"t":146,"s":[710.526]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":130,"s":[232.421]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":146,"s":[113.421]},{"t":161,"s":[-31.579]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.388,3.486],[0,5.823],[1.393,2.337],[2.214,1.436],[2.46,0.78],[2.172,0.575],[1.434,0.738],[0,1.23],[-1.067,0.657],[-2.133,0],[-2.337,-0.942],[-1.887,-2.214],[0,0],[4.345,1.764],[5.001,0],[3.607,-1.639],[1.968,-2.829],[0,-3.853],[-1.395,-2.295],[-2.214,-1.311],[-2.46,-0.778],[-2.256,-0.615],[-1.395,-0.696],[0,-1.476],[1.188,-0.655],[2.049,0],[2.664,1.19],[2.049,2.133],[0,0],[-2.871,-1.68],[-3.444,-0.942],[-3.527,0]],"o":[[4.386,-3.484],[0,-3.771],[-1.395,-2.337],[-2.214,-1.434],[-2.46,-0.778],[-2.174,-0.573],[-1.436,-0.738],[0,-1.065],[1.065,-0.655],[2.214,0],[2.337,0.944],[0,0],[-2.625,-3.444],[-4.347,-1.762],[-5.003,0],[-3.609,1.641],[-1.968,2.829],[0,3.69],[1.393,2.297],[2.214,1.313],[2.46,0.78],[2.254,0.615],[1.393,0.698],[0,1.23],[-1.19,0.657],[-3.281,0],[-2.666,-1.188],[0,0],[2.131,2.214],[2.869,1.682],[3.444,0.942],[7.461,0]],"v":[[46.187,-3.628],[52.767,-17.589],[50.676,-26.753],[45.264,-32.411],[38.253,-35.732],[31.303,-37.761],[25.892,-39.729],[23.739,-42.681],[25.338,-45.264],[30.135,-46.248],[36.962,-44.834],[43.296,-40.098],[53.997,-51.045],[43.542,-58.855],[29.52,-61.5],[16.605,-59.04],[8.241,-52.337],[5.289,-42.312],[7.38,-33.333],[12.792,-27.921],[19.803,-24.785],[26.876,-22.693],[32.349,-20.725],[34.44,-17.466],[32.657,-14.637],[27.798,-13.653],[18.881,-15.437],[11.808,-20.418],[0.984,-9.594],[8.487,-3.751],[17.958,0.184],[28.413,1.599]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[95.94,0.369],[121.524,-59.778],[101.106,-59.778],[85.239,-12.177],[92.742,-12.177],[77.121,-59.778],[56.703,-59.778],[81.303,0.369]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[85.362,25.215],[95.94,0.369],[83.886,-13.653],[65.928,25.215]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.388,3.486],[0,5.823],[1.393,2.337],[2.214,1.436],[2.46,0.78],[2.172,0.575],[1.434,0.738],[0,1.23],[-1.067,0.657],[-2.133,0],[-2.337,-0.942],[-1.887,-2.214],[0,0],[4.345,1.764],[5.001,0],[3.607,-1.639],[1.968,-2.829],[0,-3.853],[-1.395,-2.295],[-2.214,-1.311],[-2.46,-0.778],[-2.256,-0.615],[-1.395,-0.696],[0,-1.476],[1.188,-0.655],[2.049,0],[2.664,1.19],[2.049,2.133],[0,0],[-2.871,-1.68],[-3.444,-0.942],[-3.527,0]],"o":[[4.386,-3.484],[0,-3.771],[-1.395,-2.337],[-2.214,-1.434],[-2.46,-0.778],[-2.174,-0.573],[-1.436,-0.738],[0,-1.065],[1.065,-0.655],[2.214,0],[2.337,0.944],[0,0],[-2.625,-3.444],[-4.347,-1.762],[-5.003,0],[-3.609,1.641],[-1.968,2.829],[0,3.69],[1.393,2.297],[2.214,1.313],[2.46,0.78],[2.254,0.615],[1.393,0.698],[0,1.23],[-1.19,0.657],[-3.281,0],[-2.666,-1.188],[0,0],[2.131,2.214],[2.869,1.682],[3.444,0.942],[7.461,0]],"v":[[165.989,-3.628],[172.569,-17.589],[170.478,-26.753],[165.066,-32.411],[158.055,-35.732],[151.105,-37.761],[145.693,-39.729],[143.541,-42.681],[145.14,-45.264],[149.937,-46.248],[156.764,-44.834],[163.098,-40.098],[173.799,-51.045],[163.344,-58.855],[149.322,-61.5],[136.407,-59.04],[128.043,-52.337],[125.091,-42.312],[127.182,-33.333],[132.594,-27.921],[139.605,-24.785],[146.678,-22.693],[152.151,-20.725],[154.242,-17.466],[152.458,-14.637],[147.6,-13.653],[138.682,-15.437],[131.61,-20.418],[120.786,-9.594],[128.289,-3.751],[137.76,0.184],[148.215,1.599]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[210.084,0],[210.084,-84.501],[191.142,-84.501],[191.142,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[223.614,-43.665],[223.614,-59.778],[177.735,-59.778],[177.735,-43.665]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.182,1.68],[-2.952,3.527],[0,0],[2.377,-1.024],[2.869,0],[2.337,1.353],[1.27,2.543],[0,3.444],[-1.19,2.46],[-2.174,1.395],[-2.952,0],[-1.928,-1.23],[-0.984,-2.254],[-0.083,-3.361],[0,0],[0,0],[0,0],[0,0],[-0.123,1.19],[0,1.149],[2.623,4.511],[4.509,2.543],[5.985,0],[4.837,-2.706],[2.787,-4.714],[0,-5.904],[-2.871,-4.755],[-5.003,-2.664],[-6.479,0]],"o":[[4.182,-1.68],[0,0],[-1.805,2.051],[-2.379,1.026],[-3.198,0],[-2.337,-1.353],[-1.272,-2.541],[0,-3.444],[1.188,-2.46],[2.172,-1.393],[2.706,0],[1.926,1.23],[0.984,2.256],[0,0],[0,0],[0,0],[0,0],[0.409,-1.476],[0.123,-1.188],[0,-5.821],[-2.625,-4.509],[-4.511,-2.541],[-6.069,0],[-4.839,2.706],[-2.789,4.716],[0,6.069],[2.869,4.757],[5.001,2.664],[5.083,0]],"v":[[273.921,-1.169],[284.622,-8.979],[274.167,-19.311],[267.894,-14.699],[260.022,-13.161],[251.719,-15.191],[246.307,-21.033],[244.401,-30.012],[246.185,-38.868],[251.228,-44.649],[258.915,-46.74],[265.865,-44.895],[270.231,-39.668],[271.83,-31.242],[279.948,-36.777],[236.652,-36.531],[236.652,-23.493],[288.066,-23.739],[288.866,-27.736],[289.05,-31.242],[285.114,-46.74],[274.413,-57.318],[258.669,-61.131],[242.31,-57.072],[230.871,-45.941],[226.689,-30.012],[230.994,-13.776],[242.802,-2.645],[260.022,1.353]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[316.848,0],[316.848,-59.778],[297.906,-59.778],[297.906,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.008,3.363],[3.321,1.887],[4.099,0],[3.484,-1.845],[2.091,-3.402],[0,-4.674],[0,0],[-0.861,1.395],[-1.476,0.78],[-1.887,0],[-1.845,-1.68],[0,-2.952],[0,0]],"o":[[0,0],[0,-4.674],[-2.01,-3.361],[-3.321,-1.885],[-4.511,0],[-3.486,1.845],[-2.091,3.404],[0,0],[0,-1.968],[0.861,-1.393],[1.476,-0.778],[2.706,0],[1.845,1.682],[0,0],[0,0]],"v":[[355.224,0],[355.224,-38.253],[352.211,-50.307],[344.216,-58.179],[333.084,-61.008],[321.092,-58.241],[312.728,-50.368],[309.591,-38.253],[316.848,-34.932],[318.14,-39.975],[321.645,-43.234],[326.688,-44.403],[333.515,-41.882],[336.282,-34.932],[336.282,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.049,3.527],[3.607,1.928],[4.509,0],[3.771,-1.968],[2.214,-3.69],[0.246,-5.083],[0,0],[-0.821,1.395],[-1.518,0.78],[-1.805,0],[-1.845,-1.68],[0,-2.952],[0,0]],"o":[[0,0],[0,-5.001],[-2.051,-3.525],[-3.609,-1.926],[-4.674,0],[-3.773,1.968],[-2.214,3.69],[0,0],[0,-1.968],[0.819,-1.393],[1.516,-0.778],[2.623,0],[1.845,1.682],[0,0],[0,0]],"v":[[393.354,0],[393.354,-37.146],[390.279,-49.938],[381.792,-58.118],[369.615,-61.008],[356.946,-58.056],[347.967,-49.569],[344.277,-36.408],[355.224,-34.932],[356.454,-39.975],[359.96,-43.234],[364.941,-44.403],[371.645,-41.882],[374.412,-34.932],[374.412,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false}],"ip":130,"op":1930,"st":130,"ct":1,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"text-ministers 5 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":110,"s":[710.526]},{"t":130,"s":[710.526]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[232.421]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":130,"s":[113.421]},{"t":146,"s":[-34.579]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.428,2.748],[-2.502,4.634],[0,5.987],[2.541,4.674],[4.386,2.706],[5.575,0],[3.361,-1.639],[2.131,-2.829],[0.327,-3.607],[0,0],[-2.091,-2.746],[-3.363,-1.557],[-4.101,0]],"o":[[4.428,-2.746],[2.5,-4.632],[0,-5.985],[-2.543,-4.674],[-4.388,-2.706],[-4.019,0],[-3.363,1.641],[-2.133,2.829],[0,0],[0.327,3.527],[2.091,2.748],[3.361,1.557],[5.575,0]],"v":[[56.211,-2.891],[66.605,-13.96],[70.356,-29.889],[66.543,-45.879],[56.15,-56.949],[41.205,-61.008],[30.135,-58.548],[21.894,-51.844],[18.204,-42.189],[18.204,-16.974],[21.833,-7.564],[30.012,-1.107],[41.205,1.23]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[25.215,25.215],[25.215,-15.375],[22.386,-29.889],[25.461,-44.526],[25.461,-59.778],[6.519,-59.778],[6.519,25.215]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[2.008,1.19],[1.147,2.133],[0,2.706],[-1.149,2.133],[-2.01,1.19],[-2.625,0],[-1.968,-1.188],[-1.19,-2.131],[0,-2.706],[1.188,-2.131],[2.008,-1.188],[2.623,0]],"o":[[-2.01,-1.188],[-1.149,-2.131],[0,-2.706],[1.147,-2.131],[2.008,-1.188],[2.623,0],[1.968,1.19],[1.188,2.133],[0,2.706],[-1.19,2.133],[-2.01,1.19],[-2.543,0]],"v":[[30.812,-17.65],[26.076,-22.632],[24.354,-29.889],[26.076,-37.146],[30.812,-42.128],[37.761,-43.911],[44.649,-42.128],[49.385,-37.146],[51.168,-29.889],[49.385,-22.632],[44.588,-17.65],[37.638,-15.867]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[98.646,0],[98.646,-59.778],[79.704,-59.778],[79.704,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.845,1.928],[-3.198,0],[-1.23,-0.492],[-0.738,-0.819],[0,0],[2.172,0.861],[2.869,0],[3.73,-3.853],[1.557,-7.051],[0,0]],"o":[[1.845,-1.926],[1.557,0],[1.23,0.492],[0,0],[-1.641,-1.722],[-2.174,-0.861],[-6.479,0],[-3.732,3.855],[0,0],[0,-3.853]],"v":[[101.414,-41.39],[108.978,-44.28],[113.16,-43.542],[116.112,-41.574],[127.305,-55.842],[121.586,-59.717],[114.021,-61.008],[98.708,-55.227],[90.774,-38.868],[98.646,-32.718]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.182,1.68],[-2.952,3.527],[0,0],[2.377,-1.024],[2.869,0],[2.337,1.353],[1.27,2.543],[0,3.444],[-1.19,2.46],[-2.174,1.395],[-2.952,0],[-1.928,-1.23],[-0.984,-2.254],[-0.083,-3.361],[0,0],[0,0],[0,0],[0,0],[-0.123,1.19],[0,1.149],[2.623,4.511],[4.509,2.543],[5.985,0],[4.837,-2.706],[2.787,-4.714],[0,-5.904],[-2.871,-4.755],[-5.003,-2.664],[-6.479,0]],"o":[[4.182,-1.68],[0,0],[-1.805,2.051],[-2.379,1.026],[-3.198,0],[-2.337,-1.353],[-1.272,-2.541],[0,-3.444],[1.188,-2.46],[2.172,-1.393],[2.706,0],[1.926,1.23],[0.984,2.256],[0,0],[0,0],[0,0],[0,0],[0.409,-1.476],[0.123,-1.188],[0,-5.821],[-2.625,-4.509],[-4.511,-2.541],[-6.069,0],[-4.839,2.706],[-2.789,4.716],[0,6.069],[2.869,4.757],[5.001,2.664],[5.083,0]],"v":[[173.922,-1.169],[184.623,-8.979],[174.168,-19.311],[167.895,-14.699],[160.023,-13.161],[151.721,-15.191],[146.309,-21.033],[144.402,-30.012],[146.186,-38.868],[151.229,-44.649],[158.916,-46.74],[165.866,-44.895],[170.232,-39.668],[171.831,-31.242],[179.949,-36.777],[136.653,-36.531],[136.653,-23.493],[188.067,-23.739],[188.867,-27.736],[189.051,-31.242],[185.115,-46.74],[174.414,-57.318],[158.67,-61.131],[142.311,-57.072],[130.872,-45.941],[126.69,-30.012],[130.995,-13.776],[142.803,-2.645],[160.023,1.353]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.388,3.486],[0,5.823],[1.393,2.337],[2.214,1.436],[2.46,0.78],[2.172,0.575],[1.434,0.738],[0,1.23],[-1.067,0.657],[-2.133,0],[-2.337,-0.942],[-1.887,-2.214],[0,0],[4.345,1.764],[5.001,0],[3.607,-1.639],[1.968,-2.829],[0,-3.853],[-1.395,-2.295],[-2.214,-1.311],[-2.46,-0.778],[-2.256,-0.615],[-1.395,-0.696],[0,-1.476],[1.188,-0.655],[2.049,0],[2.664,1.19],[2.049,2.133],[0,0],[-2.871,-1.68],[-3.444,-0.942],[-3.527,0]],"o":[[4.386,-3.484],[0,-3.771],[-1.395,-2.337],[-2.214,-1.434],[-2.46,-0.778],[-2.174,-0.573],[-1.436,-0.738],[0,-1.065],[1.065,-0.655],[2.214,0],[2.337,0.944],[0,0],[-2.625,-3.444],[-4.347,-1.762],[-5.003,0],[-3.609,1.641],[-1.968,2.829],[0,3.69],[1.393,2.297],[2.214,1.313],[2.46,0.78],[2.254,0.615],[1.393,0.698],[0,1.23],[-1.19,0.657],[-3.281,0],[-2.666,-1.188],[0,0],[2.131,2.214],[2.869,1.682],[3.444,0.942],[7.461,0]],"v":[[237.575,-3.628],[244.155,-17.589],[242.064,-26.753],[236.652,-32.411],[229.641,-35.732],[222.691,-37.761],[217.279,-39.729],[215.127,-42.681],[216.726,-45.264],[221.523,-46.248],[228.35,-44.834],[234.684,-40.098],[245.385,-51.045],[234.93,-58.855],[220.908,-61.5],[207.993,-59.04],[199.629,-52.337],[196.677,-42.312],[198.768,-33.333],[204.18,-27.921],[211.191,-24.785],[218.264,-22.693],[223.737,-20.725],[225.828,-17.466],[224.044,-14.637],[219.186,-13.653],[210.268,-15.437],[203.196,-20.418],[192.372,-9.594],[199.875,-3.751],[209.346,0.184],[219.801,1.599]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[273.306,0],[273.306,-59.778],[254.364,-59.778],[254.364,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.845,2.051],[0,2.871],[1.845,1.968],[3.033,0],[1.968,-1.968],[0,-2.952],[-1.968,-2.049],[-2.871,0]],"o":[[1.845,-2.049],[0,-2.952],[-1.845,-1.968],[-2.871,0],[-1.968,1.968],[0,2.871],[1.968,2.051],[3.033,0]],"v":[[271.154,-70.971],[273.921,-78.351],[271.154,-85.731],[263.835,-88.683],[256.578,-85.731],[253.626,-78.351],[256.578,-70.971],[263.835,-67.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.363,1.68],[-2.133,2.829],[-0.329,3.527],[0,0],[2.131,2.748],[3.361,1.518],[4.017,0],[4.428,-2.706],[2.46,-4.674],[0,-5.985],[-2.46,-4.674],[-4.388,-2.706],[-5.741,0]],"o":[[3.361,-1.68],[2.131,-2.829],[0,0],[-0.329,-3.607],[-2.133,-2.746],[-3.363,-1.516],[-5.658,0],[-4.428,2.706],[-2.46,4.674],[0,5.987],[2.46,4.674],[4.386,2.706],[4.017,0]],"v":[[322.998,-1.292],[331.239,-8.057],[334.929,-17.589],[334.929,-42.804],[331.239,-52.337],[322.998,-58.732],[311.928,-61.008],[296.799,-56.949],[286.467,-45.879],[282.777,-29.889],[286.467,-13.899],[296.738,-2.829],[311.928,1.23]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[2.049,1.19],[1.107,2.133],[0,2.706],[-1.19,2.091],[-1.968,1.23],[-2.625,0],[-1.968,-1.188],[-1.107,-2.091],[0,-2.706],[1.107,-2.131],[1.968,-1.188],[2.706,0]],"o":[[-2.051,-1.188],[-1.107,-2.131],[0,-2.706],[1.188,-2.091],[1.968,-1.23],[2.623,0],[1.968,1.19],[1.107,2.091],[0,2.789],[-1.107,2.133],[-1.968,1.19],[-2.543,0]],"v":[[308.361,-17.65],[303.626,-22.632],[301.965,-29.889],[303.749,-37.085],[308.484,-42.066],[315.372,-43.911],[322.26,-42.128],[326.873,-37.208],[328.533,-30.012],[326.873,-22.632],[322.26,-17.65],[315.249,-15.867]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[346.368,-89.298],[327.426,-89.298],[327.426,-45.141],[330.624,-30.75],[327.795,-16.113],[327.795,0],[346.368,0]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.182,1.68],[-2.952,3.527],[0,0],[2.377,-1.024],[2.869,0],[2.337,1.353],[1.27,2.543],[0,3.444],[-1.19,2.46],[-2.174,1.395],[-2.952,0],[-1.928,-1.23],[-0.984,-2.254],[-0.083,-3.361],[0,0],[0,0],[0,0],[0,0],[-0.123,1.19],[0,1.149],[2.623,4.511],[4.509,2.543],[5.985,0],[4.837,-2.706],[2.787,-4.714],[0,-5.904],[-2.871,-4.755],[-5.003,-2.664],[-6.479,0]],"o":[[4.182,-1.68],[0,0],[-1.805,2.051],[-2.379,1.026],[-3.198,0],[-2.337,-1.353],[-1.272,-2.541],[0,-3.444],[1.188,-2.46],[2.172,-1.393],[2.706,0],[1.926,1.23],[0.984,2.256],[0,0],[0,0],[0,0],[0,0],[0.409,-1.476],[0.123,-1.188],[0,-5.821],[-2.625,-4.509],[-4.511,-2.541],[-6.069,0],[-4.839,2.706],[-2.789,4.716],[0,6.069],[2.869,4.757],[5.001,2.664],[5.083,0]],"v":[[402.948,-1.169],[413.649,-8.979],[403.194,-19.311],[396.921,-14.699],[389.049,-13.161],[380.747,-15.191],[375.335,-21.033],[373.428,-30.012],[375.212,-38.868],[380.255,-44.649],[387.942,-46.74],[394.892,-44.895],[399.258,-39.668],[400.857,-31.242],[408.975,-36.777],[365.679,-36.531],[365.679,-23.493],[417.093,-23.739],[417.893,-27.736],[418.077,-31.242],[414.141,-46.74],[403.44,-57.318],[387.696,-61.131],[371.337,-57.072],[359.898,-45.941],[355.716,-30.012],[360.021,-13.776],[371.829,-2.645],[389.049,1.353]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.968,3.486],[3.444,2.051],[4.345,0],[3.648,-1.926],[2.091,-3.525],[0,-4.674],[0,0],[-0.903,1.559],[-1.559,0.861],[-1.968,0],[-1.968,-1.926],[0,-3.033],[0,0]],"o":[[0,0],[0,-4.099],[-1.968,-3.484],[-3.444,-2.049],[-4.593,0],[-3.65,1.928],[-2.091,3.527],[0,0],[0,-2.049],[0.901,-1.557],[1.557,-0.861],[2.952,0],[1.968,1.928],[0,0],[0,0]],"v":[[485.481,0],[485.481,-38.253],[482.529,-49.631],[474.411,-57.933],[462.726,-61.008],[450.365,-58.118],[441.755,-49.938],[438.618,-37.638],[445.875,-34.071],[447.228,-39.483],[450.918,-43.112],[456.207,-44.403],[463.587,-41.512],[466.539,-34.071],[466.539,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[445.875,0],[445.875,-59.778],[426.933,-59.778],[426.933,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.896,1.68],[-3.198,3.281],[0,0],[1.926,-0.819],[2.46,0],[2.131,1.19],[1.188,2.133],[0,2.789],[-1.19,2.091],[-2.091,1.19],[-2.625,0],[-1.845,-0.738],[-1.395,-1.557],[0,0],[3.894,1.599],[4.755,0],[5.001,-2.706],[2.869,-4.714],[0,-5.985],[-2.829,-4.755],[-5.003,-2.706],[-6.233,0]],"o":[[3.894,-1.68],[0,0],[-1.395,1.559],[-1.928,0.821],[-2.543,0],[-2.133,-1.188],[-1.19,-2.131],[0,-2.706],[1.188,-2.091],[2.091,-1.188],[2.377,0],[1.845,0.738],[0,0],[-3.035,-3.115],[-3.896,-1.599],[-6.233,0],[-5.003,2.706],[-2.871,4.716],[0,5.904],[2.829,4.757],[5.001,2.706],[4.92,0]],"v":[[539.54,-1.169],[550.179,-8.61],[538.002,-20.664],[533.021,-17.097],[526.44,-15.867],[519.429,-17.65],[514.448,-22.632],[512.664,-30.012],[514.448,-37.208],[519.367,-42.128],[526.44,-43.911],[532.775,-42.804],[537.633,-39.36],[549.81,-51.66],[539.417,-58.732],[526.44,-61.131],[509.589,-57.072],[497.781,-45.941],[493.476,-29.889],[497.72,-13.899],[509.466,-2.706],[526.317,1.353]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[591.384,0.369],[616.968,-59.778],[596.55,-59.778],[580.683,-12.177],[588.186,-12.177],[572.565,-59.778],[552.147,-59.778],[576.747,0.369]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[580.806,25.215],[591.384,0.369],[579.33,-13.653],[561.372,25.215]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false}],"ip":110,"op":1910,"st":110,"ct":1,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"text-ministers 4 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":85,"s":[710.526]},{"t":110,"s":[710.526]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":85,"s":[232.421]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[113.421]},{"t":130,"s":[-36.579]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.567,1.968],[-2.051,3.567],[0,4.837],[0,0],[0,0],[0,0],[1.107,-1.067],[1.803,0],[0.984,0.45],[0.903,1.065],[0,0],[-3.033,-1.436],[-4.345,0]],"o":[[3.567,-1.968],[2.049,-3.567],[0,0],[0,0],[0,0],[0,2.214],[-1.107,1.065],[-1.23,0],[-0.984,-0.452],[0,0],[2.379,2.623],[3.035,1.434],[4.591,0]],"v":[[15.437,23.862],[23.862,15.56],[26.937,2.952],[26.937,-59.778],[7.995,-59.778],[7.995,3.321],[6.335,8.241],[1.968,9.84],[-1.353,9.163],[-4.182,6.888],[-15.99,18.573],[-7.872,24.661],[3.198,26.814]],"c":true},"ix":2},"nm":"j","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.845,2.051],[0,2.871],[1.845,1.968],[3.033,0],[1.968,-1.968],[0,-2.952],[-1.968,-2.049],[-2.871,0]],"o":[[1.845,-2.049],[0,-2.952],[-1.845,-1.968],[-2.871,0],[-1.968,1.968],[0,2.871],[1.968,2.051],[3.033,0]],"v":[[25.031,-70.971],[27.798,-78.351],[25.031,-85.731],[17.712,-88.683],[10.455,-85.731],[7.503,-78.351],[10.455,-70.971],[17.712,-67.896]],"c":true},"ix":2},"nm":"j","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"j","np":5,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.182,2.254],[-2.337,3.978],[0,5.249],[0,0],[0,0],[0,0],[1.599,-1.803],[2.787,0],[1.393,0.821],[0.738,1.518],[0,2.051],[0,0],[0,0],[0,0],[-2.379,-3.976],[-4.305,-2.295],[-5.412,0]],"o":[[4.182,-2.254],[2.337,-3.976],[0,0],[0,0],[0,0],[0,3.117],[-1.599,1.805],[-1.887,0],[-1.395,-0.819],[-0.738,-1.516],[0,0],[0,0],[0,0],[0,5.166],[2.377,3.978],[4.305,2.295],[5.575,0]],"v":[[81.426,-2.029],[91.205,-11.378],[94.71,-25.215],[94.71,-59.778],[75.768,-59.778],[75.768,-25.461],[73.37,-18.081],[66.789,-15.375],[61.869,-16.605],[58.671,-20.111],[57.564,-25.461],[57.564,-59.778],[38.622,-59.778],[38.622,-25.215],[42.189,-11.501],[52.214,-2.091],[66.789,1.353]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.388,3.486],[0,5.823],[1.393,2.337],[2.214,1.436],[2.46,0.78],[2.172,0.575],[1.434,0.738],[0,1.23],[-1.067,0.657],[-2.133,0],[-2.337,-0.942],[-1.887,-2.214],[0,0],[4.345,1.764],[5.001,0],[3.607,-1.639],[1.968,-2.829],[0,-3.853],[-1.395,-2.295],[-2.214,-1.311],[-2.46,-0.778],[-2.256,-0.615],[-1.395,-0.696],[0,-1.476],[1.188,-0.655],[2.049,0],[2.664,1.19],[2.049,2.133],[0,0],[-2.871,-1.68],[-3.444,-0.942],[-3.527,0]],"o":[[4.386,-3.484],[0,-3.771],[-1.395,-2.337],[-2.214,-1.434],[-2.46,-0.778],[-2.174,-0.573],[-1.436,-0.738],[0,-1.065],[1.065,-0.655],[2.214,0],[2.337,0.944],[0,0],[-2.625,-3.444],[-4.347,-1.762],[-5.003,0],[-3.609,1.641],[-1.968,2.829],[0,3.69],[1.393,2.297],[2.214,1.313],[2.46,0.78],[2.254,0.615],[1.393,0.698],[0,1.23],[-1.19,0.657],[-3.281,0],[-2.666,-1.188],[0,0],[2.131,2.214],[2.869,1.682],[3.444,0.942],[7.461,0]],"v":[[146.186,-3.628],[152.766,-17.589],[150.675,-26.753],[145.263,-32.411],[138.252,-35.732],[131.303,-37.761],[125.891,-39.729],[123.738,-42.681],[125.337,-45.264],[130.134,-46.248],[136.96,-44.834],[143.295,-40.098],[153.996,-51.045],[143.541,-58.855],[129.519,-61.5],[116.604,-59.04],[108.24,-52.337],[105.288,-42.312],[107.379,-33.333],[112.791,-27.921],[119.802,-24.785],[126.875,-22.693],[132.348,-20.725],[134.439,-17.466],[132.656,-14.637],[127.797,-13.653],[118.88,-15.437],[111.807,-20.418],[100.983,-9.594],[108.486,-3.751],[117.957,0.184],[128.412,1.599]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[190.281,0],[190.281,-84.501],[171.339,-84.501],[171.339,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[203.811,-43.665],[203.811,-59.778],[157.932,-59.778],[157.932,-43.665]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[230.994,0],[230.994,-59.778],[212.052,-59.778],[212.052,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.845,2.051],[0,2.871],[1.845,1.968],[3.033,0],[1.968,-1.968],[0,-2.952],[-1.968,-2.049],[-2.871,0]],"o":[[1.845,-2.049],[0,-2.952],[-1.845,-1.968],[-2.871,0],[-1.968,1.968],[0,2.871],[1.968,2.051],[3.033,0]],"v":[[228.842,-70.971],[231.609,-78.351],[228.842,-85.731],[221.523,-88.683],[214.266,-85.731],[211.314,-78.351],[214.266,-70.971],[221.523,-67.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.896,1.68],[-3.198,3.281],[0,0],[1.926,-0.819],[2.46,0],[2.131,1.19],[1.188,2.133],[0,2.789],[-1.19,2.091],[-2.091,1.19],[-2.625,0],[-1.845,-0.738],[-1.395,-1.557],[0,0],[3.894,1.599],[4.755,0],[5.001,-2.706],[2.869,-4.714],[0,-5.985],[-2.829,-4.755],[-5.003,-2.706],[-6.233,0]],"o":[[3.894,-1.68],[0,0],[-1.395,1.559],[-1.928,0.821],[-2.543,0],[-2.133,-1.188],[-1.19,-2.131],[0,-2.706],[1.188,-2.091],[2.091,-1.188],[2.377,0],[1.845,0.738],[0,0],[-3.035,-3.115],[-3.896,-1.599],[-6.233,0],[-5.003,2.706],[-2.871,4.716],[0,5.904],[2.829,4.757],[5.001,2.706],[4.92,0]],"v":[[286.283,-1.169],[296.922,-8.61],[284.745,-20.664],[279.763,-17.097],[273.183,-15.867],[266.172,-17.65],[261.19,-22.632],[259.407,-30.012],[261.19,-37.208],[266.111,-42.128],[273.183,-43.911],[279.518,-42.804],[284.376,-39.36],[296.553,-51.66],[286.16,-58.732],[273.183,-61.131],[256.332,-57.072],[244.524,-45.941],[240.219,-29.889],[244.462,-13.899],[256.209,-2.706],[273.06,1.353]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.182,1.68],[-2.952,3.527],[0,0],[2.377,-1.024],[2.869,0],[2.337,1.353],[1.27,2.543],[0,3.444],[-1.19,2.46],[-2.174,1.395],[-2.952,0],[-1.928,-1.23],[-0.984,-2.254],[-0.083,-3.361],[0,0],[0,0],[0,0],[0,0],[-0.123,1.19],[0,1.149],[2.623,4.511],[4.509,2.543],[5.985,0],[4.837,-2.706],[2.787,-4.714],[0,-5.904],[-2.871,-4.755],[-5.003,-2.664],[-6.479,0]],"o":[[4.182,-1.68],[0,0],[-1.805,2.051],[-2.379,1.026],[-3.198,0],[-2.337,-1.353],[-1.272,-2.541],[0,-3.444],[1.188,-2.46],[2.172,-1.393],[2.706,0],[1.926,1.23],[0.984,2.256],[0,0],[0,0],[0,0],[0,0],[0.409,-1.476],[0.123,-1.188],[0,-5.821],[-2.625,-4.509],[-4.511,-2.541],[-6.069,0],[-4.839,2.706],[-2.789,4.716],[0,6.069],[2.869,4.757],[5.001,2.664],[5.083,0]],"v":[[346.983,-1.169],[357.684,-8.979],[347.229,-19.311],[340.956,-14.699],[333.084,-13.161],[324.782,-15.191],[319.37,-21.033],[317.463,-30.012],[319.247,-38.868],[324.29,-44.649],[331.977,-46.74],[338.927,-44.895],[343.293,-39.668],[344.892,-31.242],[353.01,-36.777],[309.714,-36.531],[309.714,-23.493],[361.128,-23.739],[361.928,-27.736],[362.112,-31.242],[358.176,-46.74],[347.475,-57.318],[331.731,-61.131],[315.372,-57.072],[303.933,-45.941],[299.751,-30.012],[304.056,-13.776],[315.864,-2.645],[333.084,1.353]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false}],"ip":85,"op":1885,"st":85,"ct":1,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"text-ministers 3 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[710.526]},{"t":85,"s":[710.526]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":60,"s":[207.421]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":85,"s":[88.421]},{"t":110,"s":[-36.579]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.428,2.748],[-2.502,4.634],[0,5.987],[2.541,4.674],[4.386,2.706],[5.575,0],[3.361,-1.639],[2.131,-2.829],[0.327,-3.607],[0,0],[-2.091,-2.746],[-3.363,-1.557],[-4.101,0]],"o":[[4.428,-2.746],[2.5,-4.632],[0,-5.985],[-2.543,-4.674],[-4.388,-2.706],[-4.019,0],[-3.363,1.641],[-2.133,2.829],[0,0],[0.327,3.527],[2.091,2.748],[3.361,1.557],[5.575,0]],"v":[[56.211,-2.891],[66.605,-13.96],[70.356,-29.889],[66.543,-45.879],[56.15,-56.949],[41.205,-61.008],[30.135,-58.548],[21.894,-51.844],[18.204,-42.189],[18.204,-16.974],[21.833,-7.564],[30.012,-1.107],[41.205,1.23]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[25.215,25.215],[25.215,-15.375],[22.386,-29.889],[25.461,-44.526],[25.461,-59.778],[6.519,-59.778],[6.519,25.215]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[2.008,1.19],[1.147,2.133],[0,2.706],[-1.149,2.133],[-2.01,1.19],[-2.625,0],[-1.968,-1.188],[-1.19,-2.131],[0,-2.706],[1.188,-2.131],[2.008,-1.188],[2.623,0]],"o":[[-2.01,-1.188],[-1.149,-2.131],[0,-2.706],[1.147,-2.131],[2.008,-1.188],[2.623,0],[1.968,1.19],[1.188,2.133],[0,2.706],[-1.19,2.133],[-2.01,1.19],[-2.543,0]],"v":[[30.812,-17.65],[26.076,-22.632],[24.354,-29.889],[26.076,-37.146],[30.812,-42.128],[37.761,-43.911],[44.649,-42.128],[49.385,-37.146],[51.168,-29.889],[49.385,-22.632],[44.588,-17.65],[37.638,-15.867]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.24,1.557],[-2.01,2.748],[-0.246,3.527],[0,0],[2.049,2.748],[3.238,1.559],[4.017,0],[4.305,-2.664],[2.5,-4.714],[0,-5.985],[-2.502,-4.632],[-4.347,-2.746],[-5.412,0]],"o":[[3.238,-1.557],[2.008,-2.746],[0,0],[-0.246,-3.525],[-2.051,-2.746],[-3.24,-1.557],[-5.495,0],[-4.305,2.666],[-2.502,4.716],[0,5.987],[2.5,4.634],[4.345,2.748],[4.099,0]],"v":[[115.682,-1.107],[123.554,-7.564],[126.936,-16.974],[126.936,-42.804],[123.492,-52.214],[115.559,-58.671],[104.673,-61.008],[89.975,-57.01],[79.766,-45.941],[76.014,-29.889],[79.766,-13.96],[90.036,-2.891],[104.673,1.23]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[2.008,1.19],[1.188,2.133],[0,2.706],[-1.19,2.133],[-2.01,1.19],[-2.543,0],[-2.051,-1.188],[-1.067,-2.091],[0,-2.706],[2.418,-2.623],[4.017,0]],"o":[[-2.01,-1.188],[-1.19,-2.131],[0,-2.706],[1.188,-2.131],[2.008,-1.188],[2.623,0],[2.049,1.19],[1.065,2.091],[0,4.182],[-2.42,2.625],[-2.543,0]],"v":[[101.783,-17.65],[96.986,-22.632],[95.202,-29.889],[96.986,-37.146],[101.783,-42.128],[108.609,-43.911],[115.62,-42.128],[120.294,-37.208],[121.893,-30.012],[118.265,-19.803],[108.609,-15.867]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[139.728,0],[139.728,-59.778],[121.155,-59.778],[121.155,-45.141],[123.984,-30.75],[121.155,-16.113],[121.155,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[171.831,0],[171.831,-59.778],[152.889,-59.778],[152.889,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.845,1.928],[-3.198,0],[-1.23,-0.492],[-0.738,-0.819],[0,0],[2.172,0.861],[2.869,0],[3.73,-3.853],[1.557,-7.051],[0,0]],"o":[[1.845,-1.926],[1.557,0],[1.23,0.492],[0,0],[-1.641,-1.722],[-2.174,-0.861],[-6.479,0],[-3.732,3.855],[0,0],[0,-3.853]],"v":[[174.599,-41.39],[182.163,-44.28],[186.345,-43.542],[189.297,-41.574],[200.49,-55.842],[194.771,-59.717],[187.206,-61.008],[171.893,-55.227],[163.959,-38.868],[171.831,-32.718]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[224.229,0],[224.229,-89.298],[205.287,-89.298],[205.287,0]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[256.578,0],[256.578,-59.778],[237.636,-59.778],[237.636,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.845,2.051],[0,2.871],[1.845,1.968],[3.033,0],[1.968,-1.968],[0,-2.952],[-1.968,-2.049],[-2.871,0]],"o":[[1.845,-2.049],[0,-2.952],[-1.845,-1.968],[-2.871,0],[-1.968,1.968],[0,2.871],[1.968,2.051],[3.033,0]],"v":[[254.426,-70.971],[257.193,-78.351],[254.426,-85.731],[247.107,-88.683],[239.85,-85.731],[236.898,-78.351],[239.85,-70.971],[247.107,-67.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.24,1.557],[-2.01,2.748],[-0.246,3.527],[0,0],[2.049,2.748],[3.238,1.559],[4.017,0],[4.305,-2.664],[2.5,-4.714],[0,-5.985],[-2.502,-4.632],[-4.347,-2.746],[-5.412,0]],"o":[[3.238,-1.557],[2.008,-2.746],[0,0],[-0.246,-3.525],[-2.051,-2.746],[-3.24,-1.557],[-5.495,0],[-4.305,2.666],[-2.502,4.716],[0,5.987],[2.5,4.634],[4.345,2.748],[4.099,0]],"v":[[305.594,-1.107],[313.466,-7.564],[316.848,-16.974],[316.848,-42.804],[313.404,-52.214],[305.471,-58.671],[294.585,-61.008],[279.887,-57.01],[269.678,-45.941],[265.926,-29.889],[269.678,-13.96],[279.948,-2.891],[294.585,1.23]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[2.008,1.19],[1.188,2.133],[0,2.706],[-1.19,2.133],[-2.01,1.19],[-2.543,0],[-2.051,-1.188],[-1.067,-2.091],[0,-2.706],[2.418,-2.623],[4.017,0]],"o":[[-2.01,-1.188],[-1.19,-2.131],[0,-2.706],[1.188,-2.131],[2.008,-1.188],[2.623,0],[2.049,1.19],[1.065,2.091],[0,4.182],[-2.42,2.625],[-2.543,0]],"v":[[291.695,-17.65],[286.898,-22.632],[285.114,-29.889],[286.898,-37.146],[291.695,-42.128],[298.521,-43.911],[305.532,-42.128],[310.206,-37.208],[311.805,-30.012],[308.177,-19.803],[298.521,-15.867]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[329.64,0],[329.64,-59.778],[311.067,-59.778],[311.067,-45.141],[313.896,-30.75],[311.067,-16.113],[311.067,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[361.743,0],[361.743,-59.778],[342.801,-59.778],[342.801,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.008,3.363],[3.321,1.887],[4.099,0],[3.484,-1.845],[2.091,-3.402],[0,-4.674],[0,0],[-0.861,1.395],[-1.476,0.78],[-1.887,0],[-1.845,-1.68],[0,-2.952],[0,0]],"o":[[0,0],[0,-4.674],[-2.01,-3.361],[-3.321,-1.885],[-4.511,0],[-3.486,1.845],[-2.091,3.404],[0,0],[0,-1.968],[0.861,-1.393],[1.476,-0.778],[2.706,0],[1.845,1.682],[0,0],[0,0]],"v":[[400.119,0],[400.119,-38.253],[397.105,-50.307],[389.111,-58.179],[377.979,-61.008],[365.987,-58.241],[357.623,-50.368],[354.486,-38.253],[361.743,-34.932],[363.035,-39.975],[366.54,-43.234],[371.583,-44.403],[378.41,-41.882],[381.177,-34.932],[381.177,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.049,3.527],[3.607,1.928],[4.509,0],[3.771,-1.968],[2.214,-3.69],[0.246,-5.083],[0,0],[-0.821,1.395],[-1.518,0.78],[-1.805,0],[-1.845,-1.68],[0,-2.952],[0,0]],"o":[[0,0],[0,-5.001],[-2.051,-3.525],[-3.609,-1.926],[-4.674,0],[-3.773,1.968],[-2.214,3.69],[0,0],[0,-1.968],[0.819,-1.393],[1.516,-0.778],[2.623,0],[1.845,1.682],[0,0],[0,0]],"v":[[438.249,0],[438.249,-37.146],[435.174,-49.938],[426.687,-58.118],[414.51,-61.008],[401.841,-58.056],[392.862,-49.569],[389.172,-36.408],[400.119,-34.932],[401.349,-39.975],[404.855,-43.234],[409.836,-44.403],[416.54,-41.882],[419.307,-34.932],[419.307,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.182,1.68],[-2.952,3.527],[0,0],[2.377,-1.024],[2.869,0],[2.337,1.353],[1.27,2.543],[0,3.444],[-1.19,2.46],[-2.174,1.395],[-2.952,0],[-1.928,-1.23],[-0.984,-2.254],[-0.083,-3.361],[0,0],[0,0],[0,0],[0,0],[-0.123,1.19],[0,1.149],[2.623,4.511],[4.509,2.543],[5.985,0],[4.837,-2.706],[2.787,-4.714],[0,-5.904],[-2.871,-4.755],[-5.003,-2.664],[-6.479,0]],"o":[[4.182,-1.68],[0,0],[-1.805,2.051],[-2.379,1.026],[-3.198,0],[-2.337,-1.353],[-1.272,-2.541],[0,-3.444],[1.188,-2.46],[2.172,-1.393],[2.706,0],[1.926,1.23],[0.984,2.256],[0,0],[0,0],[0,0],[0,0],[0.409,-1.476],[0.123,-1.188],[0,-5.821],[-2.625,-4.509],[-4.511,-2.541],[-6.069,0],[-4.839,2.706],[-2.789,4.716],[0,6.069],[2.869,4.757],[5.001,2.664],[5.083,0]],"v":[[493.599,-1.169],[504.3,-8.979],[493.845,-19.311],[487.572,-14.699],[479.7,-13.161],[471.398,-15.191],[465.986,-21.033],[464.079,-30.012],[465.863,-38.868],[470.906,-44.649],[478.593,-46.74],[485.543,-44.895],[489.909,-39.668],[491.508,-31.242],[499.626,-36.777],[456.33,-36.531],[456.33,-23.493],[507.744,-23.739],[508.544,-27.736],[508.728,-31.242],[504.792,-46.74],[494.091,-57.318],[478.347,-61.131],[461.988,-57.072],[450.549,-45.941],[446.367,-30.012],[450.672,-13.776],[462.48,-2.645],[479.7,1.353]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.968,3.486],[3.444,2.051],[4.345,0],[3.648,-1.926],[2.091,-3.525],[0,-4.674],[0,0],[-0.903,1.559],[-1.559,0.861],[-1.968,0],[-1.968,-1.926],[0,-3.033],[0,0]],"o":[[0,0],[0,-4.099],[-1.968,-3.484],[-3.444,-2.049],[-4.593,0],[-3.65,1.928],[-2.091,3.527],[0,0],[0,-2.049],[0.901,-1.557],[1.557,-0.861],[2.952,0],[1.968,1.928],[0,0],[0,0]],"v":[[576.132,0],[576.132,-38.253],[573.18,-49.631],[565.062,-57.933],[553.377,-61.008],[541.016,-58.118],[532.406,-49.938],[529.269,-37.638],[536.526,-34.071],[537.879,-39.483],[541.569,-43.112],[546.858,-44.403],[554.238,-41.512],[557.19,-34.071],[557.19,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[536.526,0],[536.526,-59.778],[517.584,-59.778],[517.584,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[614.631,0],[614.631,-84.501],[595.689,-84.501],[595.689,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[628.161,-43.665],[628.161,-59.778],[582.282,-59.778],[582.282,-43.665]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false}],"ip":60,"op":1860,"st":60,"ct":1,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"text-ministers 2 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[710.526]},{"t":60,"s":[710.526]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":30,"s":[232.421]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":60,"s":[113.421]},{"t":90,"s":[-29.579]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.428,2.748],[-2.502,4.634],[0,5.987],[2.541,4.674],[4.386,2.706],[5.575,0],[3.361,-1.639],[2.131,-2.829],[0.327,-3.607],[0,0],[-2.091,-2.746],[-3.363,-1.557],[-4.101,0]],"o":[[4.428,-2.746],[2.5,-4.632],[0,-5.985],[-2.543,-4.674],[-4.388,-2.706],[-4.019,0],[-3.363,1.641],[-2.133,2.829],[0,0],[0.327,3.527],[2.091,2.748],[3.361,1.557],[5.575,0]],"v":[[56.211,-2.891],[66.605,-13.96],[70.356,-29.889],[66.543,-45.879],[56.15,-56.949],[41.205,-61.008],[30.135,-58.548],[21.894,-51.844],[18.204,-42.189],[18.204,-16.974],[21.833,-7.564],[30.012,-1.107],[41.205,1.23]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[25.215,25.215],[25.215,-15.375],[22.386,-29.889],[25.461,-44.526],[25.461,-59.778],[6.519,-59.778],[6.519,25.215]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[2.008,1.19],[1.147,2.133],[0,2.706],[-1.149,2.133],[-2.01,1.19],[-2.625,0],[-1.968,-1.188],[-1.19,-2.131],[0,-2.706],[1.188,-2.131],[2.008,-1.188],[2.623,0]],"o":[[-2.01,-1.188],[-1.149,-2.131],[0,-2.706],[1.147,-2.131],[2.008,-1.188],[2.623,0],[1.968,1.19],[1.188,2.133],[0,2.706],[-1.19,2.133],[-2.01,1.19],[-2.543,0]],"v":[[30.812,-17.65],[26.076,-22.632],[24.354,-29.889],[26.076,-37.146],[30.812,-42.128],[37.761,-43.911],[44.649,-42.128],[49.385,-37.146],[51.168,-29.889],[49.385,-22.632],[44.588,-17.65],[37.638,-15.867]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.92,2.789],[-2.871,4.716],[0,5.987],[2.869,4.716],[4.96,2.706],[6.15,0],[4.92,-2.746],[2.829,-4.674],[0,-5.821],[-2.871,-4.755],[-4.92,-2.787],[-6.233,0]],"o":[[4.92,-2.787],[2.869,-4.714],[0,-5.821],[-2.871,-4.714],[-4.962,-2.706],[-6.315,0],[-4.92,2.748],[-2.829,4.674],[0,5.904],[2.869,4.757],[4.92,2.789],[6.231,0]],"v":[[125.337,-2.829],[137.022,-14.083],[141.327,-30.135],[137.022,-45.941],[125.276,-57.072],[108.609,-61.131],[91.758,-57.01],[80.135,-45.879],[75.891,-30.135],[80.196,-14.145],[91.881,-2.829],[108.609,1.353]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[2.049,1.149],[1.147,2.174],[0,2.789],[-1.149,2.133],[-2.051,1.19],[-2.625,0],[-2.01,-1.188],[-1.149,-2.091],[0,-2.706],[1.107,-2.172],[2.049,-1.147],[2.623,0]],"o":[[-2.051,-1.147],[-1.149,-2.172],[0,-2.623],[1.147,-2.131],[2.049,-1.188],[2.623,0],[2.008,1.19],[1.147,2.091],[0,2.789],[-1.107,2.174],[-2.051,1.149],[-2.625,0]],"v":[[101.598,-17.589],[96.801,-22.57],[95.079,-30.012],[96.801,-37.146],[101.598,-42.128],[108.609,-43.911],[115.559,-42.128],[120.294,-37.208],[122.016,-30.012],[120.356,-22.57],[115.62,-17.589],[108.609,-15.867]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[169.494,0],[169.494,-89.298],[150.552,-89.298],[150.552,0]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[201.843,0],[201.843,-59.778],[182.901,-59.778],[182.901,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.845,2.051],[0,2.871],[1.845,1.968],[3.033,0],[1.968,-1.968],[0,-2.952],[-1.968,-2.049],[-2.871,0]],"o":[[1.845,-2.049],[0,-2.952],[-1.845,-1.968],[-2.871,0],[-1.968,1.968],[0,2.871],[1.968,2.051],[3.033,0]],"v":[[199.691,-70.971],[202.458,-78.351],[199.691,-85.731],[192.372,-88.683],[185.115,-85.731],[182.163,-78.351],[185.115,-70.971],[192.372,-67.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.896,1.68],[-3.198,3.281],[0,0],[1.926,-0.819],[2.46,0],[2.131,1.19],[1.188,2.133],[0,2.789],[-1.19,2.091],[-2.091,1.19],[-2.625,0],[-1.845,-0.738],[-1.395,-1.557],[0,0],[3.894,1.599],[4.755,0],[5.001,-2.706],[2.869,-4.714],[0,-5.985],[-2.829,-4.755],[-5.003,-2.706],[-6.233,0]],"o":[[3.894,-1.68],[0,0],[-1.395,1.559],[-1.928,0.821],[-2.543,0],[-2.133,-1.188],[-1.19,-2.131],[0,-2.706],[1.188,-2.091],[2.091,-1.188],[2.377,0],[1.845,0.738],[0,0],[-3.035,-3.115],[-3.896,-1.599],[-6.233,0],[-5.003,2.706],[-2.871,4.716],[0,5.904],[2.829,4.757],[5.001,2.706],[4.92,0]],"v":[[257.132,-1.169],[267.771,-8.61],[255.594,-20.664],[250.613,-17.097],[244.032,-15.867],[237.021,-17.65],[232.04,-22.632],[230.256,-30.012],[232.04,-37.208],[236.96,-42.128],[244.032,-43.911],[250.367,-42.804],[255.225,-39.36],[267.402,-51.66],[257.009,-58.732],[244.032,-61.131],[227.181,-57.072],[215.373,-45.941],[211.068,-29.889],[215.311,-13.899],[227.058,-2.706],[243.909,1.353]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.182,1.68],[-2.952,3.527],[0,0],[2.377,-1.024],[2.869,0],[2.337,1.353],[1.27,2.543],[0,3.444],[-1.19,2.46],[-2.174,1.395],[-2.952,0],[-1.928,-1.23],[-0.984,-2.254],[-0.083,-3.361],[0,0],[0,0],[0,0],[0,0],[-0.123,1.19],[0,1.149],[2.623,4.511],[4.509,2.543],[5.985,0],[4.837,-2.706],[2.787,-4.714],[0,-5.904],[-2.871,-4.755],[-5.003,-2.664],[-6.479,0]],"o":[[4.182,-1.68],[0,0],[-1.805,2.051],[-2.379,1.026],[-3.198,0],[-2.337,-1.353],[-1.272,-2.541],[0,-3.444],[1.188,-2.46],[2.172,-1.393],[2.706,0],[1.926,1.23],[0.984,2.256],[0,0],[0,0],[0,0],[0,0],[0.409,-1.476],[0.123,-1.188],[0,-5.821],[-2.625,-4.509],[-4.511,-2.541],[-6.069,0],[-4.839,2.706],[-2.789,4.716],[0,6.069],[2.869,4.757],[5.001,2.664],[5.083,0]],"v":[[317.832,-1.169],[328.533,-8.979],[318.078,-19.311],[311.805,-14.699],[303.933,-13.161],[295.631,-15.191],[290.219,-21.033],[288.312,-30.012],[290.096,-38.868],[295.139,-44.649],[302.826,-46.74],[309.776,-44.895],[314.142,-39.668],[315.741,-31.242],[323.859,-36.777],[280.563,-36.531],[280.563,-23.493],[331.977,-23.739],[332.777,-27.736],[332.961,-31.242],[329.025,-46.74],[318.324,-57.318],[302.58,-61.131],[286.221,-57.072],[274.782,-45.941],[270.6,-30.012],[274.905,-13.776],[286.713,-2.645],[303.933,1.353]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false}],"ip":30,"op":1830,"st":30,"ct":1,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"text-ministers Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[710.526]},{"t":30,"s":[710.526]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[232.421]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[113.421]},{"t":60,"s":[-11.579]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[25.461,0],[25.461,-59.778],[6.519,-59.778],[6.519,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.008,3.363],[3.321,1.887],[4.099,0],[3.484,-1.845],[2.091,-3.402],[0,-4.674],[0,0],[-0.861,1.395],[-1.476,0.78],[-1.887,0],[-1.845,-1.68],[0,-2.952],[0,0]],"o":[[0,0],[0,-4.674],[-2.01,-3.361],[-3.321,-1.885],[-4.511,0],[-3.486,1.845],[-2.091,3.404],[0,0],[0,-1.968],[0.861,-1.393],[1.476,-0.778],[2.706,0],[1.845,1.682],[0,0],[0,0]],"v":[[63.837,0],[63.837,-38.253],[60.824,-50.307],[52.829,-58.179],[41.697,-61.008],[29.704,-58.241],[21.34,-50.368],[18.204,-38.253],[25.461,-34.932],[26.753,-39.975],[30.258,-43.234],[35.301,-44.403],[42.128,-41.882],[44.895,-34.932],[44.895,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.049,3.527],[3.607,1.928],[4.509,0],[3.771,-1.968],[2.214,-3.69],[0.246,-5.083],[0,0],[-0.821,1.395],[-1.518,0.78],[-1.805,0],[-1.845,-1.68],[0,-2.952],[0,0]],"o":[[0,0],[0,-5.001],[-2.051,-3.525],[-3.609,-1.926],[-4.674,0],[-3.773,1.968],[-2.214,3.69],[0,0],[0,-1.968],[0.819,-1.393],[1.516,-0.778],[2.623,0],[1.845,1.682],[0,0],[0,0]],"v":[[101.967,0],[101.967,-37.146],[98.892,-49.938],[90.405,-58.118],[78.228,-61.008],[65.559,-58.056],[56.58,-49.569],[52.89,-36.408],[63.837,-34.932],[65.067,-39.975],[68.573,-43.234],[73.554,-44.403],[80.258,-41.882],[83.025,-34.932],[83.025,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[132.963,0],[132.963,-59.778],[114.021,-59.778],[114.021,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.845,2.051],[0,2.871],[1.845,1.968],[3.033,0],[1.968,-1.968],[0,-2.952],[-1.968,-2.049],[-2.871,0]],"o":[[1.845,-2.049],[0,-2.952],[-1.845,-1.968],[-2.871,0],[-1.968,1.968],[0,2.871],[1.968,2.051],[3.033,0]],"v":[[130.811,-70.971],[133.578,-78.351],[130.811,-85.731],[123.492,-88.683],[116.235,-85.731],[113.283,-78.351],[116.235,-70.971],[123.492,-67.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.968,3.486],[3.444,2.051],[4.345,0],[3.648,-1.926],[2.091,-3.525],[0,-4.674],[0,0],[-0.903,1.559],[-1.559,0.861],[-1.968,0],[-1.968,-1.926],[0,-3.033],[0,0]],"o":[[0,0],[0,-4.099],[-1.968,-3.484],[-3.444,-2.049],[-4.593,0],[-3.65,1.928],[-2.091,3.527],[0,0],[0,-2.049],[0.901,-1.557],[1.557,-0.861],[2.952,0],[1.968,1.928],[0,0],[0,0]],"v":[[204.549,0],[204.549,-38.253],[201.597,-49.631],[193.479,-57.933],[181.794,-61.008],[169.433,-58.118],[160.823,-49.938],[157.686,-37.638],[164.943,-34.071],[166.296,-39.483],[169.986,-43.112],[175.275,-44.403],[182.655,-41.512],[185.607,-34.071],[185.607,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[164.943,0],[164.943,-59.778],[146.001,-59.778],[146.001,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[235.422,0],[235.422,-59.778],[216.48,-59.778],[216.48,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.845,2.051],[0,2.871],[1.845,1.968],[3.033,0],[1.968,-1.968],[0,-2.952],[-1.968,-2.049],[-2.871,0]],"o":[[1.845,-2.049],[0,-2.952],[-1.845,-1.968],[-2.871,0],[-1.968,1.968],[0,2.871],[1.968,2.051],[3.033,0]],"v":[[233.27,-70.971],[236.037,-78.351],[233.27,-85.731],[225.951,-88.683],[218.694,-85.731],[215.742,-78.351],[218.694,-70.971],[225.951,-67.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.388,3.486],[0,5.823],[1.393,2.337],[2.214,1.436],[2.46,0.78],[2.172,0.575],[1.434,0.738],[0,1.23],[-1.067,0.657],[-2.133,0],[-2.337,-0.942],[-1.887,-2.214],[0,0],[4.345,1.764],[5.001,0],[3.607,-1.639],[1.968,-2.829],[0,-3.853],[-1.395,-2.295],[-2.214,-1.311],[-2.46,-0.778],[-2.256,-0.615],[-1.395,-0.696],[0,-1.476],[1.188,-0.655],[2.049,0],[2.664,1.19],[2.049,2.133],[0,0],[-2.871,-1.68],[-3.444,-0.942],[-3.527,0]],"o":[[4.386,-3.484],[0,-3.771],[-1.395,-2.337],[-2.214,-1.434],[-2.46,-0.778],[-2.174,-0.573],[-1.436,-0.738],[0,-1.065],[1.065,-0.655],[2.214,0],[2.337,0.944],[0,0],[-2.625,-3.444],[-4.347,-1.762],[-5.003,0],[-3.609,1.641],[-1.968,2.829],[0,3.69],[1.393,2.297],[2.214,1.313],[2.46,0.78],[2.254,0.615],[1.393,0.698],[0,1.23],[-1.19,0.657],[-3.281,0],[-2.666,-1.188],[0,0],[2.131,2.214],[2.869,1.682],[3.444,0.942],[7.461,0]],"v":[[288.128,-3.628],[294.708,-17.589],[292.617,-26.753],[287.205,-32.411],[280.194,-35.732],[273.245,-37.761],[267.833,-39.729],[265.68,-42.681],[267.279,-45.264],[272.076,-46.248],[278.902,-44.834],[285.237,-40.098],[295.938,-51.045],[285.483,-58.855],[271.461,-61.5],[258.546,-59.04],[250.182,-52.337],[247.23,-42.312],[249.321,-33.333],[254.733,-27.921],[261.744,-24.785],[268.816,-22.693],[274.29,-20.725],[276.381,-17.466],[274.598,-14.637],[269.739,-13.653],[260.822,-15.437],[253.749,-20.418],[242.925,-9.594],[250.428,-3.751],[259.899,0.184],[270.354,1.599]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[332.223,0],[332.223,-84.501],[313.281,-84.501],[313.281,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[345.753,-43.665],[345.753,-59.778],[299.874,-59.778],[299.874,-43.665]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.182,1.68],[-2.952,3.527],[0,0],[2.377,-1.024],[2.869,0],[2.337,1.353],[1.27,2.543],[0,3.444],[-1.19,2.46],[-2.174,1.395],[-2.952,0],[-1.928,-1.23],[-0.984,-2.254],[-0.083,-3.361],[0,0],[0,0],[0,0],[0,0],[-0.123,1.19],[0,1.149],[2.623,4.511],[4.509,2.543],[5.985,0],[4.837,-2.706],[2.787,-4.714],[0,-5.904],[-2.871,-4.755],[-5.003,-2.664],[-6.479,0]],"o":[[4.182,-1.68],[0,0],[-1.805,2.051],[-2.379,1.026],[-3.198,0],[-2.337,-1.353],[-1.272,-2.541],[0,-3.444],[1.188,-2.46],[2.172,-1.393],[2.706,0],[1.926,1.23],[0.984,2.256],[0,0],[0,0],[0,0],[0,0],[0.409,-1.476],[0.123,-1.188],[0,-5.821],[-2.625,-4.509],[-4.511,-2.541],[-6.069,0],[-4.839,2.706],[-2.789,4.716],[0,6.069],[2.869,4.757],[5.001,2.664],[5.083,0]],"v":[[396.06,-1.169],[406.761,-8.979],[396.306,-19.311],[390.033,-14.699],[382.161,-13.161],[373.859,-15.191],[368.447,-21.033],[366.54,-30.012],[368.324,-38.868],[373.367,-44.649],[381.054,-46.74],[388.004,-44.895],[392.37,-39.668],[393.969,-31.242],[402.087,-36.777],[358.791,-36.531],[358.791,-23.493],[410.205,-23.739],[411.005,-27.736],[411.189,-31.242],[407.253,-46.74],[396.552,-57.318],[380.808,-61.131],[364.449,-57.072],[353.01,-45.941],[348.828,-30.012],[353.133,-13.776],[364.941,-2.645],[382.161,1.353]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[438.987,0],[438.987,-59.778],[420.045,-59.778],[420.045,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.845,1.928],[-3.198,0],[-1.23,-0.492],[-0.738,-0.819],[0,0],[2.172,0.861],[2.869,0],[3.73,-3.853],[1.557,-7.051],[0,0]],"o":[[1.845,-1.926],[1.557,0],[1.23,0.492],[0,0],[-1.641,-1.722],[-2.174,-0.861],[-6.479,0],[-3.732,3.855],[0,0],[0,-3.853]],"v":[[441.755,-41.39],[449.319,-44.28],[453.501,-43.542],[456.453,-41.574],[467.646,-55.842],[461.927,-59.717],[454.362,-61.008],[439.048,-55.227],[431.115,-38.868],[438.987,-32.718]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.388,3.486],[0,5.823],[1.393,2.337],[2.214,1.436],[2.46,0.78],[2.172,0.575],[1.434,0.738],[0,1.23],[-1.067,0.657],[-2.133,0],[-2.337,-0.942],[-1.887,-2.214],[0,0],[4.345,1.764],[5.001,0],[3.607,-1.639],[1.968,-2.829],[0,-3.853],[-1.395,-2.295],[-2.214,-1.311],[-2.46,-0.778],[-2.256,-0.615],[-1.395,-0.696],[0,-1.476],[1.188,-0.655],[2.049,0],[2.664,1.19],[2.049,2.133],[0,0],[-2.871,-1.68],[-3.444,-0.942],[-3.527,0]],"o":[[4.386,-3.484],[0,-3.771],[-1.395,-2.337],[-2.214,-1.434],[-2.46,-0.778],[-2.174,-0.573],[-1.436,-0.738],[0,-1.065],[1.065,-0.655],[2.214,0],[2.337,0.944],[0,0],[-2.625,-3.444],[-4.347,-1.762],[-5.003,0],[-3.609,1.641],[-1.968,2.829],[0,3.69],[1.393,2.297],[2.214,1.313],[2.46,0.78],[2.254,0.615],[1.393,0.698],[0,1.23],[-1.19,0.657],[-3.281,0],[-2.666,-1.188],[0,0],[2.131,2.214],[2.869,1.682],[3.444,0.942],[7.461,0]],"v":[[510.881,-3.628],[517.461,-17.589],[515.37,-26.753],[509.958,-32.411],[502.947,-35.732],[495.998,-37.761],[490.586,-39.729],[488.433,-42.681],[490.032,-45.264],[494.829,-46.248],[501.656,-44.834],[507.99,-40.098],[518.691,-51.045],[508.236,-58.855],[494.214,-61.5],[481.299,-59.04],[472.935,-52.337],[469.983,-42.312],[472.074,-33.333],[477.486,-27.921],[484.497,-24.785],[491.57,-22.693],[497.043,-20.725],[499.134,-17.466],[497.351,-14.637],[492.492,-13.653],[483.575,-15.437],[476.502,-20.418],[465.678,-9.594],[473.181,-3.751],[482.652,0.184],[493.107,1.599]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1800,"st":0,"ct":1,"bm":0}]},{"id":"comp_3","nm":"NewLogoDraft-1024poutline","fr":60,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[416,509,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-123.047,355.328],[167.56,401.328],[14.155,-119.635],[-44.523,-318.907],[21.56,-419],[-107.386,-393.467],[-250.383,-174.956]],"c":true},"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[46,-455]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":45,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[22.144,-36.703],[-17.444,-191.142],[-117.37,-57.753],[0,0]],"o":[[0,0],[-48.226,79.934],[18.084,198.159],[15.646,7.698],[0,0]],"v":[[14.625,-433.007],[-15.636,-374.857],[-114.246,12.499],[140.007,393.495],[167.56,401.328]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":60,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":1800,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[523.5,488.5,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":0,"k":{"i":[[-3.175,4.808],[-0.159,-2.435],[0,-9.862],[245.784,0],[0,245.784],[-227.61,19.664],[0,0],[0,-173.037],[-173.037,0],[-57.281,74.448],[-3.17,5.056]],"o":[[0.198,2.424],[0.632,9.702],[0,245.784],[-245.784,0],[0,-232.708],[5.67,-0.49],[0,0],[0,173.037],[101.196,0],[3.633,-4.721],[0,0]],"v":[[444.102,-36.227],[444.636,-28.939],[445.589,0.411],[0.557,445.442],[-444.474,0.411],[-38.254,-442.952],[-20.182,-444.304],[-135.121,-202.236],[178.19,111.075],[426.657,-11.35],[437.673,-26.345]],"c":true},"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"}],"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.175,4.808],[-0.159,-2.435],[0,-9.862],[245.784,0],[0,245.784],[-227.61,19.664],[0,0],[0,-173.037],[-173.037,0],[-57.281,74.448],[-3.17,5.056]],"o":[[0.198,2.424],[0.632,9.702],[0,245.784],[-245.784,0],[0,-232.708],[5.67,-0.49],[0,0],[0,173.037],[101.196,0],[3.633,-4.721],[0,0]],"v":[[443.602,-36.727],[444.136,-29.439],[445.089,-0.089],[0.057,444.942],[-444.974,-0.089],[-38.754,-443.452],[-20.682,-444.804],[-135.621,-202.736],[177.69,110.575],[426.157,-11.85],[437.173,-26.845]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":120,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":1800,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[701,286,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":0,"k":{"i":[[0,0],[0.432,0.557],[0,0],[0.818,0.922],[32.891,0],[0,-61.031],[-23.695,-20.268],[0,0],[-0.701,-0.59],[0.557,-0.05],[5.276,0],[0,96.268],[-96.268,0],[0,-96.268],[0.496,-5.359],[0,0]],"o":[[0,0],[-0.432,-0.557],[0,0],[-20.243,-22.804],[-61.031,0],[0,33.626],[0.373,0.318],[0,0],[0,0],[-5.156,0.459],[-96.268,0],[0,-96.268],[96.268,0],[0,5.489],[-0.047,0.508],[0,0]],"v":[[173.731,18.787],[173.415,18.154],[172.368,16.972],[169.959,14.165],[87.29,-23.009],[-23.216,87.497],[15.498,171.509],[16.622,172.457],[18.012,173.722],[16.343,173.878],[0.69,174.572],[-173.618,0.264],[0.69,-174.044],[174.998,0.264],[174.248,16.541],[174.1,18.061]],"c":true},"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"}],"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.432,0.557],[0,0],[0.818,0.922],[32.891,0],[0,-61.031],[-23.695,-20.268],[0,0],[-0.701,-0.59],[0.557,-0.05],[5.276,0],[0,96.268],[-96.268,0],[0,-96.268],[0.496,-5.359],[0,0]],"o":[[0,0],[-0.432,-0.557],[0,0],[-20.243,-22.804],[-61.031,0],[0,33.626],[0.373,0.318],[0,0],[0,0],[-5.156,0.459],[-96.268,0],[0,-96.268],[96.268,0],[0,5.489],[-0.047,0.508],[0,0]],"v":[[173.231,18.287],[172.915,17.654],[171.868,16.472],[169.459,13.665],[86.79,-23.509],[-23.716,86.997],[14.998,171.009],[16.122,171.957],[17.512,173.222],[15.843,173.378],[0.19,174.072],[-174.118,-0.236],[0.19,-174.544],[174.498,-0.236],[173.748,16.041],[173.6,17.561]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":120,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":1800,"st":0,"ct":1,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"This is a one-time announcement and will never be displayed in the next intro sequence Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4170,"s":[100]},{"t":4200,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1772,42,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-936.216,0],[-936.216,-16.728],[-940.032,-16.728],[-940.032,0]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-930.936,-13.632],[-930.936,-16.944],[-945.336,-16.944],[-945.336,-13.632]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.664],[0.688,0.376],[0.912,0],[0.688,-0.376],[0.392,-0.688],[0,-0.912],[0,0],[-0.176,0.304],[-0.304,0.168],[-0.384,0],[-0.384,-0.376],[0,-0.592],[0,0]],"o":[[0,0],[0,-0.88],[-0.384,-0.664],[-0.688,-0.376],[-0.88,0],[-0.688,0.376],[-0.392,0.688],[0,0],[0,-0.4],[0.176,-0.304],[0.304,-0.168],[0.576,0],[0.384,0.376],[0,0],[0,0]],"v":[[-917.76,0],[-917.76,-7.464],[-918.336,-9.78],[-919.944,-11.34],[-922.344,-11.904],[-924.696,-11.34],[-926.316,-9.744],[-926.904,-7.344],[-925.488,-6.648],[-925.224,-7.704],[-924.504,-8.412],[-923.472,-8.664],[-922.032,-8.1],[-921.456,-6.648],[-921.456,0]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-925.488,0],[-925.488,-17.424],[-929.184,-17.424],[-929.184,0]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-911.736,0],[-911.736,-11.664],[-915.432,-11.664],[-915.432,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.36,0.4],[0,0.56],[0.36,0.384],[0.592,0],[0.384,-0.384],[0,-0.576],[-0.384,-0.4],[-0.56,0]],"o":[[0.36,-0.4],[0,-0.576],[-0.36,-0.384],[-0.56,0],[-0.384,0.384],[0,0.56],[0.384,0.4],[0.592,0]],"v":[[-912.156,-13.848],[-911.616,-15.288],[-912.156,-16.728],[-913.584,-17.304],[-915,-16.728],[-915.576,-15.288],[-915,-13.848],[-913.584,-13.248]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.856,0.68],[0,1.136],[0.272,0.456],[0.432,0.28],[0.48,0.152],[0.424,0.112],[0.28,0.144],[0,0.24],[-0.208,0.128],[-0.416,0],[-0.456,-0.184],[-0.368,-0.432],[0,0],[0.848,0.344],[0.976,0],[0.704,-0.32],[0.384,-0.552],[0,-0.752],[-0.272,-0.448],[-0.432,-0.256],[-0.48,-0.152],[-0.44,-0.12],[-0.272,-0.136],[0,-0.288],[0.232,-0.128],[0.4,0],[0.52,0.232],[0.4,0.416],[0,0],[-0.56,-0.328],[-0.672,-0.184],[-0.688,0]],"o":[[0.856,-0.68],[0,-0.736],[-0.272,-0.456],[-0.432,-0.28],[-0.48,-0.152],[-0.424,-0.112],[-0.28,-0.144],[0,-0.208],[0.208,-0.128],[0.432,0],[0.456,0.184],[0,0],[-0.512,-0.672],[-0.848,-0.344],[-0.976,0],[-0.704,0.32],[-0.384,0.552],[0,0.72],[0.272,0.448],[0.432,0.256],[0.48,0.152],[0.44,0.12],[0.272,0.136],[0,0.24],[-0.232,0.128],[-0.64,0],[-0.52,-0.232],[0,0],[0.416,0.432],[0.56,0.328],[0.672,0.184],[1.456,0]],"v":[[-901.452,-0.708],[-900.168,-3.432],[-900.576,-5.22],[-901.632,-6.324],[-903,-6.972],[-904.356,-7.368],[-905.412,-7.752],[-905.832,-8.328],[-905.52,-8.832],[-904.584,-9.024],[-903.252,-8.748],[-902.016,-7.824],[-899.928,-9.96],[-901.968,-11.484],[-904.704,-12],[-907.224,-11.52],[-908.856,-10.212],[-909.432,-8.256],[-909.024,-6.504],[-907.968,-5.448],[-906.6,-4.836],[-905.22,-4.428],[-904.152,-4.044],[-903.744,-3.408],[-904.092,-2.856],[-905.04,-2.664],[-906.78,-3.012],[-908.16,-3.984],[-910.272,-1.872],[-908.808,-0.732],[-906.96,0.036],[-904.92,0.312]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-889.92,0],[-889.92,-11.664],[-893.616,-11.664],[-893.616,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.36,0.4],[0,0.56],[0.36,0.384],[0.592,0],[0.384,-0.384],[0,-0.576],[-0.384,-0.4],[-0.56,0]],"o":[[0.36,-0.4],[0,-0.576],[-0.36,-0.384],[-0.56,0],[-0.384,0.384],[0,0.56],[0.384,0.4],[0.592,0]],"v":[[-890.34,-13.848],[-889.8,-15.288],[-890.34,-16.728],[-891.768,-17.304],[-893.184,-16.728],[-893.76,-15.288],[-893.184,-13.848],[-891.768,-13.248]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.856,0.68],[0,1.136],[0.272,0.456],[0.432,0.28],[0.48,0.152],[0.424,0.112],[0.28,0.144],[0,0.24],[-0.208,0.128],[-0.416,0],[-0.456,-0.184],[-0.368,-0.432],[0,0],[0.848,0.344],[0.976,0],[0.704,-0.32],[0.384,-0.552],[0,-0.752],[-0.272,-0.448],[-0.432,-0.256],[-0.48,-0.152],[-0.44,-0.12],[-0.272,-0.136],[0,-0.288],[0.232,-0.128],[0.4,0],[0.52,0.232],[0.4,0.416],[0,0],[-0.56,-0.328],[-0.672,-0.184],[-0.688,0]],"o":[[0.856,-0.68],[0,-0.736],[-0.272,-0.456],[-0.432,-0.28],[-0.48,-0.152],[-0.424,-0.112],[-0.28,-0.144],[0,-0.208],[0.208,-0.128],[0.432,0],[0.456,0.184],[0,0],[-0.512,-0.672],[-0.848,-0.344],[-0.976,0],[-0.704,0.32],[-0.384,0.552],[0,0.72],[0.272,0.448],[0.432,0.256],[0.48,0.152],[0.44,0.12],[0.272,0.136],[0,0.24],[-0.232,0.128],[-0.64,0],[-0.52,-0.232],[0,0],[0.416,0.432],[0.56,0.328],[0.672,0.184],[1.456,0]],"v":[[-879.636,-0.708],[-878.352,-3.432],[-878.76,-5.22],[-879.816,-6.324],[-881.184,-6.972],[-882.54,-7.368],[-883.596,-7.752],[-884.016,-8.328],[-883.704,-8.832],[-882.768,-9.024],[-881.436,-8.748],[-880.2,-7.824],[-878.112,-9.96],[-880.152,-11.484],[-882.888,-12],[-885.408,-11.52],[-887.04,-10.212],[-887.616,-8.256],[-887.208,-6.504],[-886.152,-5.448],[-884.784,-4.836],[-883.404,-4.428],[-882.336,-4.044],[-881.928,-3.408],[-882.276,-2.856],[-883.224,-2.664],[-884.964,-3.012],[-886.344,-3.984],[-888.456,-1.872],[-886.992,-0.732],[-885.144,0.036],[-883.104,0.312]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.632,0.304],[-0.392,0.536],[-0.048,0.688],[0,0],[0.4,0.536],[0.632,0.304],[0.784,0],[0.84,-0.52],[0.488,-0.92],[0,-1.168],[-0.488,-0.904],[-0.848,-0.536],[-1.056,0]],"o":[[0.632,-0.304],[0.392,-0.536],[0,0],[-0.048,-0.688],[-0.4,-0.536],[-0.632,-0.304],[-1.072,0],[-0.84,0.52],[-0.488,0.92],[0,1.168],[0.488,0.904],[0.848,0.536],[0.8,0]],"v":[[-864.804,-0.216],[-863.268,-1.476],[-862.608,-3.312],[-862.608,-8.352],[-863.28,-10.188],[-864.828,-11.448],[-866.952,-11.904],[-869.82,-11.124],[-871.812,-8.964],[-872.544,-5.832],[-871.812,-2.724],[-869.808,-0.564],[-866.952,0.24]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.392,0.232],[0.232,0.416],[0,0.528],[-0.232,0.416],[-0.392,0.232],[-0.496,0],[-0.4,-0.232],[-0.208,-0.408],[0,-0.528],[0.472,-0.512],[0.784,0]],"o":[[-0.392,-0.232],[-0.232,-0.416],[0,-0.528],[0.232,-0.416],[0.392,-0.232],[0.512,0],[0.4,0.232],[0.208,0.408],[0,0.816],[-0.472,0.512],[-0.496,0]],"v":[[-867.516,-3.444],[-868.452,-4.416],[-868.8,-5.832],[-868.452,-7.248],[-867.516,-8.22],[-866.184,-8.568],[-864.816,-8.22],[-863.904,-7.26],[-863.592,-5.856],[-864.3,-3.864],[-866.184,-3.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-860.112,0],[-860.112,-11.664],[-863.736,-11.664],[-863.736,-8.808],[-863.184,-6],[-863.736,-3.144],[-863.736,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.96,0.544],[-0.56,0.92],[0,1.168],[0.56,0.92],[0.968,0.528],[1.2,0],[0.96,-0.536],[0.552,-0.912],[0,-1.136],[-0.56,-0.928],[-0.96,-0.544],[-1.216,0]],"o":[[0.96,-0.544],[0.56,-0.92],[0,-1.136],[-0.56,-0.92],[-0.968,-0.528],[-1.232,0],[-0.96,0.536],[-0.552,0.912],[0,1.152],[0.56,0.928],[0.96,0.544],[1.216,0]],"v":[[-844.08,-0.552],[-841.8,-2.748],[-840.96,-5.88],[-841.8,-8.964],[-844.092,-11.136],[-847.344,-11.928],[-850.632,-11.124],[-852.9,-8.952],[-853.728,-5.88],[-852.888,-2.76],[-850.608,-0.552],[-847.344,0.264]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.4,0.224],[0.224,0.424],[0,0.544],[-0.224,0.416],[-0.4,0.232],[-0.512,0],[-0.392,-0.232],[-0.224,-0.408],[0,-0.528],[0.216,-0.424],[0.4,-0.224],[0.512,0]],"o":[[-0.4,-0.224],[-0.224,-0.424],[0,-0.512],[0.224,-0.416],[0.4,-0.232],[0.512,0],[0.392,0.232],[0.224,0.408],[0,0.544],[-0.216,0.424],[-0.4,0.224],[-0.512,0]],"v":[[-848.712,-3.432],[-849.648,-4.404],[-849.984,-5.856],[-849.648,-7.248],[-848.712,-8.22],[-847.344,-8.568],[-845.988,-8.22],[-845.064,-7.26],[-844.728,-5.856],[-845.052,-4.404],[-845.976,-3.432],[-847.344,-3.096]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.68],[0.672,0.4],[0.848,0],[0.712,-0.376],[0.408,-0.688],[0,-0.912],[0,0],[-0.176,0.304],[-0.304,0.168],[-0.384,0],[-0.384,-0.376],[0,-0.592],[0,0]],"o":[[0,0],[0,-0.8],[-0.384,-0.68],[-0.672,-0.4],[-0.896,0],[-0.712,0.376],[-0.408,0.688],[0,0],[0,-0.4],[0.176,-0.304],[0.304,-0.168],[0.576,0],[0.384,0.376],[0,0],[0,0]],"v":[[-827.736,0],[-827.736,-7.464],[-828.312,-9.684],[-829.896,-11.304],[-832.176,-11.904],[-834.588,-11.34],[-836.268,-9.744],[-836.88,-7.344],[-835.464,-6.648],[-835.2,-7.704],[-834.48,-8.412],[-833.448,-8.664],[-832.008,-8.1],[-831.432,-6.648],[-831.432,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-835.464,0],[-835.464,-11.664],[-839.16,-11.664],[-839.16,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.328],[-0.576,0.688],[0,0],[0.464,-0.2],[0.56,0],[0.456,0.264],[0.248,0.496],[0,0.672],[-0.232,0.48],[-0.424,0.272],[-0.576,0],[-0.376,-0.24],[-0.192,-0.44],[-0.016,-0.656],[0,0],[0,0],[0,0],[0,0],[-0.024,0.232],[0,0.224],[0.512,0.88],[0.88,0.496],[1.168,0],[0.944,-0.528],[0.544,-0.92],[0,-1.152],[-0.56,-0.928],[-0.976,-0.52],[-1.264,0]],"o":[[0.816,-0.328],[0,0],[-0.352,0.4],[-0.464,0.2],[-0.624,0],[-0.456,-0.264],[-0.248,-0.496],[0,-0.672],[0.232,-0.48],[0.424,-0.272],[0.528,0],[0.376,0.24],[0.192,0.44],[0,0],[0,0],[0,0],[0,0],[0.08,-0.288],[0.024,-0.232],[0,-1.136],[-0.512,-0.88],[-0.88,-0.496],[-1.184,0],[-0.944,0.528],[-0.544,0.92],[0,1.184],[0.56,0.928],[0.976,0.52],[0.992,0]],"v":[[-816.96,-0.228],[-814.872,-1.752],[-816.912,-3.768],[-818.136,-2.868],[-819.672,-2.568],[-821.292,-2.964],[-822.348,-4.104],[-822.72,-5.856],[-822.372,-7.584],[-821.388,-8.712],[-819.888,-9.12],[-818.532,-8.76],[-817.68,-7.74],[-817.368,-6.096],[-815.784,-7.176],[-824.232,-7.128],[-824.232,-4.584],[-814.2,-4.632],[-814.044,-5.412],[-814.008,-6.096],[-814.776,-9.12],[-816.864,-11.184],[-819.936,-11.928],[-823.128,-11.136],[-825.36,-8.964],[-826.176,-5.856],[-825.336,-2.688],[-823.032,-0.516],[-819.672,0.264]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-803.232,-4.512],[-803.232,-7.728],[-811.776,-7.728],[-811.776,-4.512]],"c":true},"ix":2},"nm":"-","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"-","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-795.624,0],[-795.624,-16.488],[-799.32,-16.488],[-799.32,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-792.984,-8.52],[-792.984,-11.664],[-801.936,-11.664],[-801.936,-8.52]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-787.68,0],[-787.68,-11.664],[-791.376,-11.664],[-791.376,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.36,0.4],[0,0.56],[0.36,0.384],[0.592,0],[0.384,-0.384],[0,-0.576],[-0.384,-0.4],[-0.56,0]],"o":[[0.36,-0.4],[0,-0.576],[-0.36,-0.384],[-0.56,0],[-0.384,0.384],[0,0.56],[0.384,0.4],[0.592,0]],"v":[[-788.1,-13.848],[-787.56,-15.288],[-788.1,-16.728],[-789.528,-17.304],[-790.944,-16.728],[-791.52,-15.288],[-790.944,-13.848],[-789.528,-13.248]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-781.44,0],[-781.44,-11.664],[-785.136,-11.664],[-785.136,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.392,0.656],[0.648,0.368],[0.8,0],[0.68,-0.36],[0.408,-0.664],[0,-0.912],[0,0],[-0.168,0.272],[-0.288,0.152],[-0.368,0],[-0.36,-0.328],[0,-0.576],[0,0]],"o":[[0,0],[0,-0.912],[-0.392,-0.656],[-0.648,-0.368],[-0.88,0],[-0.68,0.36],[-0.408,0.664],[0,0],[0,-0.384],[0.168,-0.272],[0.288,-0.152],[0.528,0],[0.36,0.328],[0,0],[0,0]],"v":[[-773.952,0],[-773.952,-7.464],[-774.54,-9.816],[-776.1,-11.352],[-778.272,-11.904],[-780.612,-11.364],[-782.244,-9.828],[-782.856,-7.464],[-781.44,-6.816],[-781.188,-7.8],[-780.504,-8.436],[-779.52,-8.664],[-778.188,-8.172],[-777.648,-6.816],[-777.648,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.4,0.688],[0.704,0.376],[0.88,0],[0.736,-0.384],[0.432,-0.72],[0.048,-0.992],[0,0],[-0.16,0.272],[-0.296,0.152],[-0.352,0],[-0.36,-0.328],[0,-0.576],[0,0]],"o":[[0,0],[0,-0.976],[-0.4,-0.688],[-0.704,-0.376],[-0.912,0],[-0.736,0.384],[-0.432,0.72],[0,0],[0,-0.384],[0.16,-0.272],[0.296,-0.152],[0.512,0],[0.36,0.328],[0,0],[0,0]],"v":[[-766.512,0],[-766.512,-7.248],[-767.112,-9.744],[-768.768,-11.34],[-771.144,-11.904],[-773.616,-11.328],[-775.368,-9.672],[-776.088,-7.104],[-773.952,-6.816],[-773.712,-7.8],[-773.028,-8.436],[-772.056,-8.664],[-770.748,-8.172],[-770.208,-6.816],[-770.208,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.328],[-0.576,0.688],[0,0],[0.464,-0.2],[0.56,0],[0.456,0.264],[0.248,0.496],[0,0.672],[-0.232,0.48],[-0.424,0.272],[-0.576,0],[-0.376,-0.24],[-0.192,-0.44],[-0.016,-0.656],[0,0],[0,0],[0,0],[0,0],[-0.024,0.232],[0,0.224],[0.512,0.88],[0.88,0.496],[1.168,0],[0.944,-0.528],[0.544,-0.92],[0,-1.152],[-0.56,-0.928],[-0.976,-0.52],[-1.264,0]],"o":[[0.816,-0.328],[0,0],[-0.352,0.4],[-0.464,0.2],[-0.624,0],[-0.456,-0.264],[-0.248,-0.496],[0,-0.672],[0.232,-0.48],[0.424,-0.272],[0.528,0],[0.376,0.24],[0.192,0.44],[0,0],[0,0],[0,0],[0,0],[0.08,-0.288],[0.024,-0.232],[0,-1.136],[-0.512,-0.88],[-0.88,-0.496],[-1.184,0],[-0.944,0.528],[-0.544,0.92],[0,1.184],[0.56,0.928],[0.976,0.52],[0.992,0]],"v":[[-755.712,-0.228],[-753.624,-1.752],[-755.664,-3.768],[-756.888,-2.868],[-758.424,-2.568],[-760.044,-2.964],[-761.1,-4.104],[-761.472,-5.856],[-761.124,-7.584],[-760.14,-8.712],[-758.64,-9.12],[-757.284,-8.76],[-756.432,-7.74],[-756.12,-6.096],[-754.536,-7.176],[-762.984,-7.128],[-762.984,-4.584],[-752.952,-4.632],[-752.796,-5.412],[-752.76,-6.096],[-753.528,-9.12],[-755.616,-11.184],[-758.688,-11.928],[-761.88,-11.136],[-764.112,-8.964],[-764.928,-5.856],[-764.088,-2.688],[-761.784,-0.516],[-758.424,0.264]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.632,0.304],[-0.392,0.536],[-0.048,0.688],[0,0],[0.4,0.536],[0.632,0.304],[0.784,0],[0.84,-0.52],[0.488,-0.92],[0,-1.168],[-0.488,-0.904],[-0.848,-0.536],[-1.056,0]],"o":[[0.632,-0.304],[0.392,-0.536],[0,0],[-0.048,-0.688],[-0.4,-0.536],[-0.632,-0.304],[-1.072,0],[-0.84,0.52],[-0.488,0.92],[0,1.168],[0.488,0.904],[0.848,0.536],[0.8,0]],"v":[[-739.452,-0.216],[-737.916,-1.476],[-737.256,-3.312],[-737.256,-8.352],[-737.928,-10.188],[-739.476,-11.448],[-741.6,-11.904],[-744.468,-11.124],[-746.46,-8.964],[-747.192,-5.832],[-746.46,-2.724],[-744.456,-0.564],[-741.6,0.24]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.392,0.232],[0.232,0.416],[0,0.528],[-0.232,0.416],[-0.392,0.232],[-0.496,0],[-0.4,-0.232],[-0.208,-0.408],[0,-0.528],[0.472,-0.512],[0.784,0]],"o":[[-0.392,-0.232],[-0.232,-0.416],[0,-0.528],[0.232,-0.416],[0.392,-0.232],[0.512,0],[0.4,0.232],[0.208,0.408],[0,0.816],[-0.472,0.512],[-0.496,0]],"v":[[-742.164,-3.444],[-743.1,-4.416],[-743.448,-5.832],[-743.1,-7.248],[-742.164,-8.22],[-740.832,-8.568],[-739.464,-8.22],[-738.552,-7.26],[-738.24,-5.856],[-738.948,-3.864],[-740.832,-3.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-734.76,0],[-734.76,-11.664],[-738.384,-11.664],[-738.384,-8.808],[-737.832,-6],[-738.384,-3.144],[-738.384,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.68],[0.672,0.4],[0.848,0],[0.712,-0.376],[0.408,-0.688],[0,-0.912],[0,0],[-0.176,0.304],[-0.304,0.168],[-0.384,0],[-0.384,-0.376],[0,-0.592],[0,0]],"o":[[0,0],[0,-0.8],[-0.384,-0.68],[-0.672,-0.4],[-0.896,0],[-0.712,0.376],[-0.408,0.688],[0,0],[0,-0.4],[0.176,-0.304],[0.304,-0.168],[0.576,0],[0.384,0.376],[0,0],[0,0]],"v":[[-720.768,0],[-720.768,-7.464],[-721.344,-9.684],[-722.928,-11.304],[-725.208,-11.904],[-727.62,-11.34],[-729.3,-9.744],[-729.912,-7.344],[-728.496,-6.648],[-728.232,-7.704],[-727.512,-8.412],[-726.48,-8.664],[-725.04,-8.1],[-724.464,-6.648],[-724.464,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-728.496,0],[-728.496,-11.664],[-732.192,-11.664],[-732.192,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.68],[0.672,0.4],[0.848,0],[0.712,-0.376],[0.408,-0.688],[0,-0.912],[0,0],[-0.176,0.304],[-0.304,0.168],[-0.384,0],[-0.384,-0.376],[0,-0.592],[0,0]],"o":[[0,0],[0,-0.8],[-0.384,-0.68],[-0.672,-0.4],[-0.896,0],[-0.712,0.376],[-0.408,0.688],[0,0],[0,-0.4],[0.176,-0.304],[0.304,-0.168],[0.576,0],[0.384,0.376],[0,0],[0,0]],"v":[[-707.04,0],[-707.04,-7.464],[-707.616,-9.684],[-709.2,-11.304],[-711.48,-11.904],[-713.892,-11.34],[-715.572,-9.744],[-716.184,-7.344],[-714.768,-6.648],[-714.504,-7.704],[-713.784,-8.412],[-712.752,-8.664],[-711.312,-8.1],[-710.736,-6.648],[-710.736,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-714.768,0],[-714.768,-11.664],[-718.464,-11.664],[-718.464,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.96,0.544],[-0.56,0.92],[0,1.168],[0.56,0.92],[0.968,0.528],[1.2,0],[0.96,-0.536],[0.552,-0.912],[0,-1.136],[-0.56,-0.928],[-0.96,-0.544],[-1.216,0]],"o":[[0.96,-0.544],[0.56,-0.92],[0,-1.136],[-0.56,-0.92],[-0.968,-0.528],[-1.232,0],[-0.96,0.536],[-0.552,0.912],[0,1.152],[0.56,0.928],[0.96,0.544],[1.216,0]],"v":[[-695.832,-0.552],[-693.552,-2.748],[-692.712,-5.88],[-693.552,-8.964],[-695.844,-11.136],[-699.096,-11.928],[-702.384,-11.124],[-704.652,-8.952],[-705.48,-5.88],[-704.64,-2.76],[-702.36,-0.552],[-699.096,0.264]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.4,0.224],[0.224,0.424],[0,0.544],[-0.224,0.416],[-0.4,0.232],[-0.512,0],[-0.392,-0.232],[-0.224,-0.408],[0,-0.528],[0.216,-0.424],[0.4,-0.224],[0.512,0]],"o":[[-0.4,-0.224],[-0.224,-0.424],[0,-0.512],[0.224,-0.416],[0.4,-0.232],[0.512,0],[0.392,0.232],[0.224,0.408],[0,0.544],[-0.216,0.424],[-0.4,0.224],[-0.512,0]],"v":[[-700.464,-3.432],[-701.4,-4.404],[-701.736,-5.856],[-701.4,-7.248],[-700.464,-8.22],[-699.096,-8.568],[-697.74,-8.22],[-696.816,-7.26],[-696.48,-5.856],[-696.804,-4.404],[-697.728,-3.432],[-699.096,-3.096]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.44],[-0.456,0.776],[0,1.024],[0,0],[0,0],[0,0],[0.312,-0.352],[0.544,0],[0.272,0.16],[0.144,0.296],[0,0.4],[0,0],[0,0],[0,0],[-0.464,-0.776],[-0.84,-0.448],[-1.056,0]],"o":[[0.816,-0.44],[0.456,-0.776],[0,0],[0,0],[0,0],[0,0.608],[-0.312,0.352],[-0.368,0],[-0.272,-0.16],[-0.144,-0.296],[0,0],[0,0],[0,0],[0,1.008],[0.464,0.776],[0.84,0.448],[1.088,0]],"v":[[-682.848,-0.396],[-680.94,-2.22],[-680.256,-4.92],[-680.256,-11.664],[-683.952,-11.664],[-683.952,-4.968],[-684.42,-3.528],[-685.704,-3],[-686.664,-3.24],[-687.288,-3.924],[-687.504,-4.968],[-687.504,-11.664],[-691.2,-11.664],[-691.2,-4.92],[-690.504,-2.244],[-688.548,-0.408],[-685.704,0.264]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.68],[0.672,0.4],[0.848,0],[0.712,-0.376],[0.408,-0.688],[0,-0.912],[0,0],[-0.176,0.304],[-0.304,0.168],[-0.384,0],[-0.384,-0.376],[0,-0.592],[0,0]],"o":[[0,0],[0,-0.8],[-0.384,-0.68],[-0.672,-0.4],[-0.896,0],[-0.712,0.376],[-0.408,0.688],[0,0],[0,-0.4],[0.176,-0.304],[0.304,-0.168],[0.576,0],[0.384,0.376],[0,0],[0,0]],"v":[[-666.528,0],[-666.528,-7.464],[-667.104,-9.684],[-668.688,-11.304],[-670.968,-11.904],[-673.38,-11.34],[-675.06,-9.744],[-675.672,-7.344],[-674.256,-6.648],[-673.992,-7.704],[-673.272,-8.412],[-672.24,-8.664],[-670.8,-8.1],[-670.224,-6.648],[-670.224,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-674.256,0],[-674.256,-11.664],[-677.952,-11.664],[-677.952,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,0.328],[-0.624,0.64],[0,0],[0.376,-0.16],[0.48,0],[0.416,0.232],[0.232,0.416],[0,0.544],[-0.232,0.408],[-0.408,0.232],[-0.512,0],[-0.36,-0.144],[-0.272,-0.304],[0,0],[0.76,0.312],[0.928,0],[0.976,-0.528],[0.56,-0.92],[0,-1.168],[-0.552,-0.928],[-0.976,-0.528],[-1.216,0]],"o":[[0.76,-0.328],[0,0],[-0.272,0.304],[-0.376,0.16],[-0.496,0],[-0.416,-0.232],[-0.232,-0.416],[0,-0.528],[0.232,-0.408],[0.408,-0.232],[0.464,0],[0.36,0.144],[0,0],[-0.592,-0.608],[-0.76,-0.312],[-1.216,0],[-0.976,0.528],[-0.56,0.92],[0,1.152],[0.552,0.928],[0.976,0.528],[0.96,0]],"v":[[-655.98,-0.228],[-653.904,-1.68],[-656.28,-4.032],[-657.252,-3.336],[-658.536,-3.096],[-659.904,-3.444],[-660.876,-4.416],[-661.224,-5.856],[-660.876,-7.26],[-659.916,-8.22],[-658.536,-8.568],[-657.3,-8.352],[-656.352,-7.68],[-653.976,-10.08],[-656.004,-11.46],[-658.536,-11.928],[-661.824,-11.136],[-664.128,-8.964],[-664.968,-5.832],[-664.14,-2.712],[-661.848,-0.528],[-658.56,0.264]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.328],[-0.576,0.688],[0,0],[0.464,-0.2],[0.56,0],[0.456,0.264],[0.248,0.496],[0,0.672],[-0.232,0.48],[-0.424,0.272],[-0.576,0],[-0.376,-0.24],[-0.192,-0.44],[-0.016,-0.656],[0,0],[0,0],[0,0],[0,0],[-0.024,0.232],[0,0.224],[0.512,0.88],[0.88,0.496],[1.168,0],[0.944,-0.528],[0.544,-0.92],[0,-1.152],[-0.56,-0.928],[-0.976,-0.52],[-1.264,0]],"o":[[0.816,-0.328],[0,0],[-0.352,0.4],[-0.464,0.2],[-0.624,0],[-0.456,-0.264],[-0.248,-0.496],[0,-0.672],[0.232,-0.48],[0.424,-0.272],[0.528,0],[0.376,0.24],[0.192,0.44],[0,0],[0,0],[0,0],[0,0],[0.08,-0.288],[0.024,-0.232],[0,-1.136],[-0.512,-0.88],[-0.88,-0.496],[-1.184,0],[-0.944,0.528],[-0.544,0.92],[0,1.184],[0.56,0.928],[0.976,0.52],[0.992,0]],"v":[[-644.136,-0.228],[-642.048,-1.752],[-644.088,-3.768],[-645.312,-2.868],[-646.848,-2.568],[-648.468,-2.964],[-649.524,-4.104],[-649.896,-5.856],[-649.548,-7.584],[-648.564,-8.712],[-647.064,-9.12],[-645.708,-8.76],[-644.856,-7.74],[-644.544,-6.096],[-642.96,-7.176],[-651.408,-7.128],[-651.408,-4.584],[-641.376,-4.632],[-641.22,-5.412],[-641.184,-6.096],[-641.952,-9.12],[-644.04,-11.184],[-647.112,-11.928],[-650.304,-11.136],[-652.536,-8.964],[-653.352,-5.856],[-652.512,-2.688],[-650.208,-0.516],[-646.848,0.264]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-635.76,0],[-635.76,-11.664],[-639.456,-11.664],[-639.456,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.392,0.656],[0.648,0.368],[0.8,0],[0.68,-0.36],[0.408,-0.664],[0,-0.912],[0,0],[-0.168,0.272],[-0.288,0.152],[-0.368,0],[-0.36,-0.328],[0,-0.576],[0,0]],"o":[[0,0],[0,-0.912],[-0.392,-0.656],[-0.648,-0.368],[-0.88,0],[-0.68,0.36],[-0.408,0.664],[0,0],[0,-0.384],[0.168,-0.272],[0.288,-0.152],[0.528,0],[0.36,0.328],[0,0],[0,0]],"v":[[-628.272,0],[-628.272,-7.464],[-628.86,-9.816],[-630.42,-11.352],[-632.592,-11.904],[-634.932,-11.364],[-636.564,-9.828],[-637.176,-7.464],[-635.76,-6.816],[-635.508,-7.8],[-634.824,-8.436],[-633.84,-8.664],[-632.508,-8.172],[-631.968,-6.816],[-631.968,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.4,0.688],[0.704,0.376],[0.88,0],[0.736,-0.384],[0.432,-0.72],[0.048,-0.992],[0,0],[-0.16,0.272],[-0.296,0.152],[-0.352,0],[-0.36,-0.328],[0,-0.576],[0,0]],"o":[[0,0],[0,-0.976],[-0.4,-0.688],[-0.704,-0.376],[-0.912,0],[-0.736,0.384],[-0.432,0.72],[0,0],[0,-0.384],[0.16,-0.272],[0.296,-0.152],[0.512,0],[0.36,0.328],[0,0],[0,0]],"v":[[-620.832,0],[-620.832,-7.248],[-621.432,-9.744],[-623.088,-11.34],[-625.464,-11.904],[-627.936,-11.328],[-629.688,-9.672],[-630.408,-7.104],[-628.272,-6.816],[-628.032,-7.8],[-627.348,-8.436],[-626.376,-8.664],[-625.068,-8.172],[-624.528,-6.816],[-624.528,0]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.328],[-0.576,0.688],[0,0],[0.464,-0.2],[0.56,0],[0.456,0.264],[0.248,0.496],[0,0.672],[-0.232,0.48],[-0.424,0.272],[-0.576,0],[-0.376,-0.24],[-0.192,-0.44],[-0.016,-0.656],[0,0],[0,0],[0,0],[0,0],[-0.024,0.232],[0,0.224],[0.512,0.88],[0.88,0.496],[1.168,0],[0.944,-0.528],[0.544,-0.92],[0,-1.152],[-0.56,-0.928],[-0.976,-0.52],[-1.264,0]],"o":[[0.816,-0.328],[0,0],[-0.352,0.4],[-0.464,0.2],[-0.624,0],[-0.456,-0.264],[-0.248,-0.496],[0,-0.672],[0.232,-0.48],[0.424,-0.272],[0.528,0],[0.376,0.24],[0.192,0.44],[0,0],[0,0],[0,0],[0,0],[0.08,-0.288],[0.024,-0.232],[0,-1.136],[-0.512,-0.88],[-0.88,-0.496],[-1.184,0],[-0.944,0.528],[-0.544,0.92],[0,1.184],[0.56,0.928],[0.976,0.52],[0.992,0]],"v":[[-610.032,-0.228],[-607.944,-1.752],[-609.984,-3.768],[-611.208,-2.868],[-612.744,-2.568],[-614.364,-2.964],[-615.42,-4.104],[-615.792,-5.856],[-615.444,-7.584],[-614.46,-8.712],[-612.96,-9.12],[-611.604,-8.76],[-610.752,-7.74],[-610.44,-6.096],[-608.856,-7.176],[-617.304,-7.128],[-617.304,-4.584],[-607.272,-4.632],[-607.116,-5.412],[-607.08,-6.096],[-607.848,-9.12],[-609.936,-11.184],[-613.008,-11.928],[-616.2,-11.136],[-618.432,-8.964],[-619.248,-5.856],[-618.408,-2.688],[-616.104,-0.516],[-612.744,0.264]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.68],[0.672,0.4],[0.848,0],[0.712,-0.376],[0.408,-0.688],[0,-0.912],[0,0],[-0.176,0.304],[-0.304,0.168],[-0.384,0],[-0.384,-0.376],[0,-0.592],[0,0]],"o":[[0,0],[0,-0.8],[-0.384,-0.68],[-0.672,-0.4],[-0.896,0],[-0.712,0.376],[-0.408,0.688],[0,0],[0,-0.4],[0.176,-0.304],[0.304,-0.168],[0.576,0],[0.384,0.376],[0,0],[0,0]],"v":[[-593.928,0],[-593.928,-7.464],[-594.504,-9.684],[-596.088,-11.304],[-598.368,-11.904],[-600.78,-11.34],[-602.46,-9.744],[-603.072,-7.344],[-601.656,-6.648],[-601.392,-7.704],[-600.672,-8.412],[-599.64,-8.664],[-598.2,-8.1],[-597.624,-6.648],[-597.624,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-601.656,0],[-601.656,-11.664],[-605.352,-11.664],[-605.352,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-586.416,0],[-586.416,-16.488],[-590.112,-16.488],[-590.112,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-583.776,-8.52],[-583.776,-11.664],[-592.728,-11.664],[-592.728,-8.52]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.632,0.304],[-0.392,0.536],[-0.048,0.688],[0,0],[0.4,0.536],[0.632,0.304],[0.784,0],[0.84,-0.52],[0.488,-0.92],[0,-1.168],[-0.488,-0.904],[-0.848,-0.536],[-1.056,0]],"o":[[0.632,-0.304],[0.392,-0.536],[0,0],[-0.048,-0.688],[-0.4,-0.536],[-0.632,-0.304],[-1.072,0],[-0.84,0.52],[-0.488,0.92],[0,1.168],[0.488,0.904],[0.848,0.536],[0.8,0]],"v":[[-570.612,-0.216],[-569.076,-1.476],[-568.416,-3.312],[-568.416,-8.352],[-569.088,-10.188],[-570.636,-11.448],[-572.76,-11.904],[-575.628,-11.124],[-577.62,-8.964],[-578.352,-5.832],[-577.62,-2.724],[-575.616,-0.564],[-572.76,0.24]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.392,0.232],[0.232,0.416],[0,0.528],[-0.232,0.416],[-0.392,0.232],[-0.496,0],[-0.4,-0.232],[-0.208,-0.408],[0,-0.528],[0.472,-0.512],[0.784,0]],"o":[[-0.392,-0.232],[-0.232,-0.416],[0,-0.528],[0.232,-0.416],[0.392,-0.232],[0.512,0],[0.4,0.232],[0.208,0.408],[0,0.816],[-0.472,0.512],[-0.496,0]],"v":[[-573.324,-3.444],[-574.26,-4.416],[-574.608,-5.832],[-574.26,-7.248],[-573.324,-8.22],[-571.992,-8.568],[-570.624,-8.22],[-569.712,-7.26],[-569.4,-5.856],[-570.108,-3.864],[-571.992,-3.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-565.92,0],[-565.92,-11.664],[-569.544,-11.664],[-569.544,-8.808],[-568.992,-6],[-569.544,-3.144],[-569.544,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.68],[0.672,0.4],[0.848,0],[0.712,-0.376],[0.408,-0.688],[0,-0.912],[0,0],[-0.176,0.304],[-0.304,0.168],[-0.384,0],[-0.384,-0.376],[0,-0.592],[0,0]],"o":[[0,0],[0,-0.8],[-0.384,-0.68],[-0.672,-0.4],[-0.896,0],[-0.712,0.376],[-0.408,0.688],[0,0],[0,-0.4],[0.176,-0.304],[0.304,-0.168],[0.576,0],[0.384,0.376],[0,0],[0,0]],"v":[[-551.928,0],[-551.928,-7.464],[-552.504,-9.684],[-554.088,-11.304],[-556.368,-11.904],[-558.78,-11.34],[-560.46,-9.744],[-561.072,-7.344],[-559.656,-6.648],[-559.392,-7.704],[-558.672,-8.412],[-557.64,-8.664],[-556.2,-8.1],[-555.624,-6.648],[-555.624,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-559.656,0],[-559.656,-11.664],[-563.352,-11.664],[-563.352,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.656,0.328],[-0.416,0.552],[-0.064,0.688],[0,0],[0.416,0.536],[0.656,0.296],[0.784,0],[0.864,-0.528],[0.48,-0.912],[0,-1.168],[-0.48,-0.912],[-0.856,-0.528],[-1.12,0]],"o":[[0.656,-0.328],[0.416,-0.552],[0,0],[-0.064,-0.704],[-0.416,-0.536],[-0.656,-0.296],[-1.104,0],[-0.864,0.528],[-0.48,0.912],[0,1.168],[0.48,0.912],[0.856,0.528],[0.784,0]],"v":[[-542.472,-0.252],[-540.864,-1.572],[-540.144,-3.432],[-540.144,-8.352],[-540.864,-10.212],[-542.472,-11.46],[-544.632,-11.904],[-547.584,-11.112],[-549.6,-8.952],[-550.32,-5.832],[-549.6,-2.712],[-547.596,-0.552],[-544.632,0.24]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.4,0.232],[0.216,0.416],[0,0.528],[-0.232,0.408],[-0.384,0.24],[-0.512,0],[-0.384,-0.232],[-0.216,-0.408],[0,-0.528],[0.216,-0.416],[0.384,-0.232],[0.528,0]],"o":[[-0.4,-0.232],[-0.216,-0.416],[0,-0.528],[0.232,-0.408],[0.384,-0.24],[0.512,0],[0.384,0.232],[0.216,0.408],[0,0.544],[-0.216,0.416],[-0.384,0.232],[-0.496,0]],"v":[[-545.328,-3.444],[-546.252,-4.416],[-546.576,-5.832],[-546.228,-7.236],[-545.304,-8.208],[-543.96,-8.568],[-542.616,-8.22],[-541.716,-7.26],[-541.392,-5.856],[-541.716,-4.416],[-542.616,-3.444],[-543.984,-3.096]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-537.912,-17.424],[-541.608,-17.424],[-541.608,-8.808],[-540.984,-6],[-541.536,-3.144],[-541.536,0],[-537.912,0]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-524.904,0],[-522.168,-8.064],[-523.08,-8.064],[-520.392,0],[-517.368,0],[-513.312,-11.664],[-516.936,-11.664],[-519.48,-3.192],[-518.376,-3.168],[-521.136,-11.664],[-524.16,-11.664],[-526.896,-3.168],[-525.816,-3.192],[-528.336,-11.664],[-531.96,-11.664],[-527.928,0]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-508.416,0],[-508.416,-11.664],[-512.112,-11.664],[-512.112,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.36,0.4],[0,0.56],[0.36,0.384],[0.592,0],[0.384,-0.384],[0,-0.576],[-0.384,-0.4],[-0.56,0]],"o":[[0.36,-0.4],[0,-0.576],[-0.36,-0.384],[-0.56,0],[-0.384,0.384],[0,0.56],[0.384,0.4],[0.592,0]],"v":[[-508.836,-13.848],[-508.296,-15.288],[-508.836,-16.728],[-510.264,-17.304],[-511.68,-16.728],[-512.256,-15.288],[-511.68,-13.848],[-510.264,-13.248]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-502.176,0],[-502.176,-17.424],[-505.872,-17.424],[-505.872,0]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-495.888,0],[-495.888,-17.424],[-499.584,-17.424],[-499.584,0]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.68],[0.672,0.4],[0.848,0],[0.712,-0.376],[0.408,-0.688],[0,-0.912],[0,0],[-0.176,0.304],[-0.304,0.168],[-0.384,0],[-0.384,-0.376],[0,-0.592],[0,0]],"o":[[0,0],[0,-0.8],[-0.384,-0.68],[-0.672,-0.4],[-0.896,0],[-0.712,0.376],[-0.408,0.688],[0,0],[0,-0.4],[0.176,-0.304],[0.304,-0.168],[0.576,0],[0.384,0.376],[0,0],[0,0]],"v":[[-477.312,0],[-477.312,-7.464],[-477.888,-9.684],[-479.472,-11.304],[-481.752,-11.904],[-484.164,-11.34],[-485.844,-9.744],[-486.456,-7.344],[-485.04,-6.648],[-484.776,-7.704],[-484.056,-8.412],[-483.024,-8.664],[-481.584,-8.1],[-481.008,-6.648],[-481.008,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-485.04,0],[-485.04,-11.664],[-488.736,-11.664],[-488.736,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.328],[-0.576,0.688],[0,0],[0.464,-0.2],[0.56,0],[0.456,0.264],[0.248,0.496],[0,0.672],[-0.232,0.48],[-0.424,0.272],[-0.576,0],[-0.376,-0.24],[-0.192,-0.44],[-0.016,-0.656],[0,0],[0,0],[0,0],[0,0],[-0.024,0.232],[0,0.224],[0.512,0.88],[0.88,0.496],[1.168,0],[0.944,-0.528],[0.544,-0.92],[0,-1.152],[-0.56,-0.928],[-0.976,-0.52],[-1.264,0]],"o":[[0.816,-0.328],[0,0],[-0.352,0.4],[-0.464,0.2],[-0.624,0],[-0.456,-0.264],[-0.248,-0.496],[0,-0.672],[0.232,-0.48],[0.424,-0.272],[0.528,0],[0.376,0.24],[0.192,0.44],[0,0],[0,0],[0,0],[0,0],[0.08,-0.288],[0.024,-0.232],[0,-1.136],[-0.512,-0.88],[-0.88,-0.496],[-1.184,0],[-0.944,0.528],[-0.544,0.92],[0,1.184],[0.56,0.928],[0.976,0.52],[0.992,0]],"v":[[-466.536,-0.228],[-464.448,-1.752],[-466.488,-3.768],[-467.712,-2.868],[-469.248,-2.568],[-470.868,-2.964],[-471.924,-4.104],[-472.296,-5.856],[-471.948,-7.584],[-470.964,-8.712],[-469.464,-9.12],[-468.108,-8.76],[-467.256,-7.74],[-466.944,-6.096],[-465.36,-7.176],[-473.808,-7.128],[-473.808,-4.584],[-463.776,-4.632],[-463.62,-5.412],[-463.584,-6.096],[-464.352,-9.12],[-466.44,-11.184],[-469.512,-11.928],[-472.704,-11.136],[-474.936,-8.964],[-475.752,-5.856],[-474.912,-2.688],[-472.608,-0.516],[-469.248,0.264]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-455.4,0],[-450.432,-11.664],[-454.344,-11.664],[-457.728,-1.968],[-455.976,-1.968],[-459.336,-11.664],[-463.32,-11.664],[-458.376,0]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.328],[-0.576,0.688],[0,0],[0.464,-0.2],[0.56,0],[0.456,0.264],[0.248,0.496],[0,0.672],[-0.232,0.48],[-0.424,0.272],[-0.576,0],[-0.376,-0.24],[-0.192,-0.44],[-0.016,-0.656],[0,0],[0,0],[0,0],[0,0],[-0.024,0.232],[0,0.224],[0.512,0.88],[0.88,0.496],[1.168,0],[0.944,-0.528],[0.544,-0.92],[0,-1.152],[-0.56,-0.928],[-0.976,-0.52],[-1.264,0]],"o":[[0.816,-0.328],[0,0],[-0.352,0.4],[-0.464,0.2],[-0.624,0],[-0.456,-0.264],[-0.248,-0.496],[0,-0.672],[0.232,-0.48],[0.424,-0.272],[0.528,0],[0.376,0.24],[0.192,0.44],[0,0],[0,0],[0,0],[0,0],[0.08,-0.288],[0.024,-0.232],[0,-1.136],[-0.512,-0.88],[-0.88,-0.496],[-1.184,0],[-0.944,0.528],[-0.544,0.92],[0,1.184],[0.56,0.928],[0.976,0.52],[0.992,0]],"v":[[-441,-0.228],[-438.912,-1.752],[-440.952,-3.768],[-442.176,-2.868],[-443.712,-2.568],[-445.332,-2.964],[-446.388,-4.104],[-446.76,-5.856],[-446.412,-7.584],[-445.428,-8.712],[-443.928,-9.12],[-442.572,-8.76],[-441.72,-7.74],[-441.408,-6.096],[-439.824,-7.176],[-448.272,-7.128],[-448.272,-4.584],[-438.24,-4.632],[-438.084,-5.412],[-438.048,-6.096],[-438.816,-9.12],[-440.904,-11.184],[-443.976,-11.928],[-447.168,-11.136],[-449.4,-8.964],[-450.216,-5.856],[-449.376,-2.688],[-447.072,-0.516],[-443.712,0.264]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-432.624,0],[-432.624,-11.664],[-436.32,-11.664],[-436.32,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.36,0.376],[-0.624,0],[-0.24,-0.096],[-0.144,-0.16],[0,0],[0.424,0.168],[0.56,0],[0.728,-0.752],[0.304,-1.376],[0,0]],"o":[[0.36,-0.376],[0.304,0],[0.24,0.096],[0,0],[-0.32,-0.336],[-0.424,-0.168],[-1.264,0],[-0.728,0.752],[0,0],[0,-0.752]],"v":[[-432.084,-8.076],[-430.608,-8.64],[-429.792,-8.496],[-429.216,-8.112],[-427.032,-10.896],[-428.148,-11.652],[-429.624,-11.904],[-432.612,-10.776],[-434.16,-7.584],[-432.624,-6.384]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.864,0.536],[-0.488,0.904],[0,1.168],[0.496,0.912],[0.856,0.528],[1.088,0],[0.656,-0.296],[0.416,-0.536],[0.064,-0.704],[0,0],[-0.408,-0.552],[-0.656,-0.328],[-0.8,0]],"o":[[0.864,-0.536],[0.488,-0.904],[0,-1.168],[-0.496,-0.912],[-0.856,-0.528],[-0.784,0],[-0.656,0.296],[-0.416,0.536],[0,0],[0.064,0.688],[0.408,0.552],[0.656,0.328],[1.088,0]],"v":[[-411.408,-0.564],[-409.38,-2.724],[-408.648,-5.832],[-409.392,-8.952],[-411.42,-11.112],[-414.336,-11.904],[-416.496,-11.46],[-418.104,-10.212],[-418.824,-8.352],[-418.824,-3.432],[-418.116,-1.572],[-416.52,-0.252],[-414.336,0.24]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-417.456,0],[-417.456,-3.144],[-418.008,-6],[-417.408,-8.808],[-417.408,-17.424],[-421.104,-17.424],[-421.104,0]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.392,0.224],[0.224,0.424],[0,0.544],[-0.216,0.416],[-0.4,0.232],[-0.512,0],[-0.392,-0.232],[-0.232,-0.416],[0,-0.528],[0.232,-0.416],[0.392,-0.232],[0.496,0]],"o":[[-0.392,-0.224],[-0.224,-0.424],[0,-0.512],[0.216,-0.416],[0.4,-0.232],[0.496,0],[0.392,0.232],[0.232,0.416],[0,0.528],[-0.232,0.416],[-0.392,0.232],[-0.512,0]],"v":[[-416.364,-3.432],[-417.288,-4.404],[-417.624,-5.856],[-417.3,-7.248],[-416.376,-8.22],[-415.008,-8.568],[-413.676,-8.22],[-412.74,-7.248],[-412.392,-5.832],[-412.74,-4.416],[-413.676,-3.444],[-415.008,-3.096]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.328],[-0.576,0.688],[0,0],[0.464,-0.2],[0.56,0],[0.456,0.264],[0.248,0.496],[0,0.672],[-0.232,0.48],[-0.424,0.272],[-0.576,0],[-0.376,-0.24],[-0.192,-0.44],[-0.016,-0.656],[0,0],[0,0],[0,0],[0,0],[-0.024,0.232],[0,0.224],[0.512,0.88],[0.88,0.496],[1.168,0],[0.944,-0.528],[0.544,-0.92],[0,-1.152],[-0.56,-0.928],[-0.976,-0.52],[-1.264,0]],"o":[[0.816,-0.328],[0,0],[-0.352,0.4],[-0.464,0.2],[-0.624,0],[-0.456,-0.264],[-0.248,-0.496],[0,-0.672],[0.232,-0.48],[0.424,-0.272],[0.528,0],[0.376,0.24],[0.192,0.44],[0,0],[0,0],[0,0],[0,0],[0.08,-0.288],[0.024,-0.232],[0,-1.136],[-0.512,-0.88],[-0.88,-0.496],[-1.184,0],[-0.944,0.528],[-0.544,0.92],[0,1.184],[0.56,0.928],[0.976,0.52],[0.992,0]],"v":[[-398.352,-0.228],[-396.264,-1.752],[-398.304,-3.768],[-399.528,-2.868],[-401.064,-2.568],[-402.684,-2.964],[-403.74,-4.104],[-404.112,-5.856],[-403.764,-7.584],[-402.78,-8.712],[-401.28,-9.12],[-399.924,-8.76],[-399.072,-7.74],[-398.76,-6.096],[-397.176,-7.176],[-405.624,-7.128],[-405.624,-4.584],[-395.592,-4.632],[-395.436,-5.412],[-395.4,-6.096],[-396.168,-9.12],[-398.256,-11.184],[-401.328,-11.928],[-404.52,-11.136],[-406.752,-8.964],[-407.568,-5.856],[-406.728,-2.688],[-404.424,-0.516],[-401.064,0.264]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.656,0.328],[-0.416,0.552],[-0.064,0.688],[0,0],[0.416,0.536],[0.656,0.296],[0.784,0],[0.864,-0.528],[0.48,-0.912],[0,-1.168],[-0.48,-0.912],[-0.856,-0.528],[-1.12,0]],"o":[[0.656,-0.328],[0.416,-0.552],[0,0],[-0.064,-0.704],[-0.416,-0.536],[-0.656,-0.296],[-1.104,0],[-0.864,0.528],[-0.48,0.912],[0,1.168],[0.48,0.912],[0.856,0.528],[0.784,0]],"v":[[-381.96,-0.252],[-380.352,-1.572],[-379.632,-3.432],[-379.632,-8.352],[-380.352,-10.212],[-381.96,-11.46],[-384.12,-11.904],[-387.072,-11.112],[-389.088,-8.952],[-389.808,-5.832],[-389.088,-2.712],[-387.084,-0.552],[-384.12,0.24]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.4,0.232],[0.216,0.416],[0,0.528],[-0.232,0.408],[-0.384,0.24],[-0.512,0],[-0.384,-0.232],[-0.216,-0.408],[0,-0.528],[0.216,-0.416],[0.384,-0.232],[0.528,0]],"o":[[-0.4,-0.232],[-0.216,-0.416],[0,-0.528],[0.232,-0.408],[0.384,-0.24],[0.512,0],[0.384,0.232],[0.216,0.408],[0,0.544],[-0.216,0.416],[-0.384,0.232],[-0.496,0]],"v":[[-384.816,-3.444],[-385.74,-4.416],[-386.064,-5.832],[-385.716,-7.236],[-384.792,-8.208],[-383.448,-8.568],[-382.104,-8.22],[-381.204,-7.26],[-380.88,-5.856],[-381.204,-4.416],[-382.104,-3.444],[-383.472,-3.096]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-377.4,-17.424],[-381.096,-17.424],[-381.096,-8.808],[-380.472,-6],[-381.024,-3.144],[-381.024,0],[-377.4,0]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-371.112,0],[-371.112,-11.664],[-374.808,-11.664],[-374.808,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.36,0.4],[0,0.56],[0.36,0.384],[0.592,0],[0.384,-0.384],[0,-0.576],[-0.384,-0.4],[-0.56,0]],"o":[[0.36,-0.4],[0,-0.576],[-0.36,-0.384],[-0.56,0],[-0.384,0.384],[0,0.56],[0.384,0.4],[0.592,0]],"v":[[-371.532,-13.848],[-370.992,-15.288],[-371.532,-16.728],[-372.96,-17.304],[-374.376,-16.728],[-374.952,-15.288],[-374.376,-13.848],[-372.96,-13.248]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.856,0.68],[0,1.136],[0.272,0.456],[0.432,0.28],[0.48,0.152],[0.424,0.112],[0.28,0.144],[0,0.24],[-0.208,0.128],[-0.416,0],[-0.456,-0.184],[-0.368,-0.432],[0,0],[0.848,0.344],[0.976,0],[0.704,-0.32],[0.384,-0.552],[0,-0.752],[-0.272,-0.448],[-0.432,-0.256],[-0.48,-0.152],[-0.44,-0.12],[-0.272,-0.136],[0,-0.288],[0.232,-0.128],[0.4,0],[0.52,0.232],[0.4,0.416],[0,0],[-0.56,-0.328],[-0.672,-0.184],[-0.688,0]],"o":[[0.856,-0.68],[0,-0.736],[-0.272,-0.456],[-0.432,-0.28],[-0.48,-0.152],[-0.424,-0.112],[-0.28,-0.144],[0,-0.208],[0.208,-0.128],[0.432,0],[0.456,0.184],[0,0],[-0.512,-0.672],[-0.848,-0.344],[-0.976,0],[-0.704,0.32],[-0.384,0.552],[0,0.72],[0.272,0.448],[0.432,0.256],[0.48,0.152],[0.44,0.12],[0.272,0.136],[0,0.24],[-0.232,0.128],[-0.64,0],[-0.52,-0.232],[0,0],[0.416,0.432],[0.56,0.328],[0.672,0.184],[1.456,0]],"v":[[-360.828,-0.708],[-359.544,-3.432],[-359.952,-5.22],[-361.008,-6.324],[-362.376,-6.972],[-363.732,-7.368],[-364.788,-7.752],[-365.208,-8.328],[-364.896,-8.832],[-363.96,-9.024],[-362.628,-8.748],[-361.392,-7.824],[-359.304,-9.96],[-361.344,-11.484],[-364.08,-12],[-366.6,-11.52],[-368.232,-10.212],[-368.808,-8.256],[-368.4,-6.504],[-367.344,-5.448],[-365.976,-4.836],[-364.596,-4.428],[-363.528,-4.044],[-363.12,-3.408],[-363.468,-2.856],[-364.416,-2.664],[-366.156,-3.012],[-367.536,-3.984],[-369.648,-1.872],[-368.184,-0.732],[-366.336,0.036],[-364.296,0.312]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.864,0.536],[-0.488,0.904],[0,1.168],[0.496,0.912],[0.856,0.528],[1.088,0],[0.656,-0.32],[0.416,-0.552],[0.064,-0.704],[0,0],[-0.408,-0.536],[-0.656,-0.304],[-0.8,0]],"o":[[0.864,-0.536],[0.488,-0.904],[0,-1.168],[-0.496,-0.912],[-0.856,-0.528],[-0.784,0],[-0.656,0.32],[-0.416,0.552],[0,0],[0.064,0.688],[0.408,0.536],[0.656,0.304],[1.088,0]],"v":[[-347.88,-0.564],[-345.852,-2.724],[-345.12,-5.832],[-345.864,-8.952],[-347.892,-11.112],[-350.808,-11.904],[-352.968,-11.424],[-354.576,-10.116],[-355.296,-8.232],[-355.296,-3.312],[-354.588,-1.476],[-352.992,-0.216],[-350.808,0.24]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-353.928,4.92],[-353.928,-3],[-354.48,-5.832],[-353.88,-8.688],[-353.88,-11.664],[-357.576,-11.664],[-357.576,4.92]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.392,0.232],[0.224,0.416],[0,0.528],[-0.224,0.416],[-0.392,0.232],[-0.512,0],[-0.384,-0.232],[-0.232,-0.416],[0,-0.528],[0.232,-0.416],[0.392,-0.232],[0.512,0]],"o":[[-0.392,-0.232],[-0.224,-0.416],[0,-0.528],[0.224,-0.416],[0.392,-0.232],[0.512,0],[0.384,0.232],[0.232,0.416],[0,0.528],[-0.232,0.416],[-0.392,0.232],[-0.496,0]],"v":[[-352.836,-3.444],[-353.76,-4.416],[-354.096,-5.832],[-353.76,-7.248],[-352.836,-8.22],[-351.48,-8.568],[-350.136,-8.22],[-349.212,-7.248],[-348.864,-5.832],[-349.212,-4.416],[-350.148,-3.444],[-351.504,-3.096]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-339.6,0],[-339.6,-17.424],[-343.296,-17.424],[-343.296,0]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.632,0.304],[-0.392,0.536],[-0.048,0.688],[0,0],[0.4,0.536],[0.632,0.304],[0.784,0],[0.84,-0.52],[0.488,-0.92],[0,-1.168],[-0.488,-0.904],[-0.848,-0.536],[-1.056,0]],"o":[[0.632,-0.304],[0.392,-0.536],[0,0],[-0.048,-0.688],[-0.4,-0.536],[-0.632,-0.304],[-1.072,0],[-0.84,0.52],[-0.488,0.92],[0,1.168],[0.488,0.904],[0.848,0.536],[0.8,0]],"v":[[-329.988,-0.216],[-328.452,-1.476],[-327.792,-3.312],[-327.792,-8.352],[-328.464,-10.188],[-330.012,-11.448],[-332.136,-11.904],[-335.004,-11.124],[-336.996,-8.964],[-337.728,-5.832],[-336.996,-2.724],[-334.992,-0.564],[-332.136,0.24]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.392,0.232],[0.232,0.416],[0,0.528],[-0.232,0.416],[-0.392,0.232],[-0.496,0],[-0.4,-0.232],[-0.208,-0.408],[0,-0.528],[0.472,-0.512],[0.784,0]],"o":[[-0.392,-0.232],[-0.232,-0.416],[0,-0.528],[0.232,-0.416],[0.392,-0.232],[0.512,0],[0.4,0.232],[0.208,0.408],[0,0.816],[-0.472,0.512],[-0.496,0]],"v":[[-332.7,-3.444],[-333.636,-4.416],[-333.984,-5.832],[-333.636,-7.248],[-332.7,-8.22],[-331.368,-8.568],[-330,-8.22],[-329.088,-7.26],[-328.776,-5.856],[-329.484,-3.864],[-331.368,-3.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-325.296,0],[-325.296,-11.664],[-328.92,-11.664],[-328.92,-8.808],[-328.368,-6],[-328.92,-3.144],[-328.92,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-316.272,0.072],[-311.28,-11.664],[-315.264,-11.664],[-318.36,-2.376],[-316.896,-2.376],[-319.944,-11.664],[-323.928,-11.664],[-319.128,0.072]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-318.336,4.92],[-316.272,0.072],[-318.624,-2.664],[-322.128,4.92]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.328],[-0.576,0.688],[0,0],[0.464,-0.2],[0.56,0],[0.456,0.264],[0.248,0.496],[0,0.672],[-0.232,0.48],[-0.424,0.272],[-0.576,0],[-0.376,-0.24],[-0.192,-0.44],[-0.016,-0.656],[0,0],[0,0],[0,0],[0,0],[-0.024,0.232],[0,0.224],[0.512,0.88],[0.88,0.496],[1.168,0],[0.944,-0.528],[0.544,-0.92],[0,-1.152],[-0.56,-0.928],[-0.976,-0.52],[-1.264,0]],"o":[[0.816,-0.328],[0,0],[-0.352,0.4],[-0.464,0.2],[-0.624,0],[-0.456,-0.264],[-0.248,-0.496],[0,-0.672],[0.232,-0.48],[0.424,-0.272],[0.528,0],[0.376,0.24],[0.192,0.44],[0,0],[0,0],[0,0],[0,0],[0.08,-0.288],[0.024,-0.232],[0,-1.136],[-0.512,-0.88],[-0.88,-0.496],[-1.184,0],[-0.944,0.528],[-0.544,0.92],[0,1.184],[0.56,0.928],[0.976,0.52],[0.992,0]],"v":[[-301.872,-0.228],[-299.784,-1.752],[-301.824,-3.768],[-303.048,-2.868],[-304.584,-2.568],[-306.204,-2.964],[-307.26,-4.104],[-307.632,-5.856],[-307.284,-7.584],[-306.3,-8.712],[-304.8,-9.12],[-303.444,-8.76],[-302.592,-7.74],[-302.28,-6.096],[-300.696,-7.176],[-309.144,-7.128],[-309.144,-4.584],[-299.112,-4.632],[-298.956,-5.412],[-298.92,-6.096],[-299.688,-9.12],[-301.776,-11.184],[-304.848,-11.928],[-308.04,-11.136],[-310.272,-8.964],[-311.088,-5.856],[-310.248,-2.688],[-307.944,-0.516],[-304.584,0.264]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.656,0.328],[-0.416,0.552],[-0.064,0.688],[0,0],[0.416,0.536],[0.656,0.296],[0.784,0],[0.864,-0.528],[0.48,-0.912],[0,-1.168],[-0.48,-0.912],[-0.856,-0.528],[-1.12,0]],"o":[[0.656,-0.328],[0.416,-0.552],[0,0],[-0.064,-0.704],[-0.416,-0.536],[-0.656,-0.296],[-1.104,0],[-0.864,0.528],[-0.48,0.912],[0,1.168],[0.48,0.912],[0.856,0.528],[0.784,0]],"v":[[-290.04,-0.252],[-288.432,-1.572],[-287.712,-3.432],[-287.712,-8.352],[-288.432,-10.212],[-290.04,-11.46],[-292.2,-11.904],[-295.152,-11.112],[-297.168,-8.952],[-297.888,-5.832],[-297.168,-2.712],[-295.164,-0.552],[-292.2,0.24]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.4,0.232],[0.216,0.416],[0,0.528],[-0.232,0.408],[-0.384,0.24],[-0.512,0],[-0.384,-0.232],[-0.216,-0.408],[0,-0.528],[0.216,-0.416],[0.384,-0.232],[0.528,0]],"o":[[-0.4,-0.232],[-0.216,-0.416],[0,-0.528],[0.232,-0.408],[0.384,-0.24],[0.512,0],[0.384,0.232],[0.216,0.408],[0,0.544],[-0.216,0.416],[-0.384,0.232],[-0.496,0]],"v":[[-292.896,-3.444],[-293.82,-4.416],[-294.144,-5.832],[-293.796,-7.236],[-292.872,-8.208],[-291.528,-8.568],[-290.184,-8.22],[-289.284,-7.26],[-288.96,-5.856],[-289.284,-4.416],[-290.184,-3.444],[-291.552,-3.096]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-285.48,-17.424],[-289.176,-17.424],[-289.176,-8.808],[-288.552,-6],[-289.104,-3.144],[-289.104,0],[-285.48,0]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-274.632,0],[-274.632,-11.664],[-278.328,-11.664],[-278.328,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.36,0.4],[0,0.56],[0.36,0.384],[0.592,0],[0.384,-0.384],[0,-0.576],[-0.384,-0.4],[-0.56,0]],"o":[[0.36,-0.4],[0,-0.576],[-0.36,-0.384],[-0.56,0],[-0.384,0.384],[0,0.56],[0.384,0.4],[0.592,0]],"v":[[-275.052,-13.848],[-274.512,-15.288],[-275.052,-16.728],[-276.48,-17.304],[-277.896,-16.728],[-278.472,-15.288],[-277.896,-13.848],[-276.48,-13.248]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.68],[0.672,0.4],[0.848,0],[0.712,-0.376],[0.408,-0.688],[0,-0.912],[0,0],[-0.176,0.304],[-0.304,0.168],[-0.384,0],[-0.384,-0.376],[0,-0.592],[0,0]],"o":[[0,0],[0,-0.8],[-0.384,-0.68],[-0.672,-0.4],[-0.896,0],[-0.712,0.376],[-0.408,0.688],[0,0],[0,-0.4],[0.176,-0.304],[0.304,-0.168],[0.576,0],[0.384,0.376],[0,0],[0,0]],"v":[[-260.664,0],[-260.664,-7.464],[-261.24,-9.684],[-262.824,-11.304],[-265.104,-11.904],[-267.516,-11.34],[-269.196,-9.744],[-269.808,-7.344],[-268.392,-6.648],[-268.128,-7.704],[-267.408,-8.412],[-266.376,-8.664],[-264.936,-8.1],[-264.36,-6.648],[-264.36,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-268.392,0],[-268.392,-11.664],[-272.088,-11.664],[-272.088,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-248.448,0],[-248.448,-16.488],[-252.144,-16.488],[-252.144,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-245.808,-8.52],[-245.808,-11.664],[-254.76,-11.664],[-254.76,-8.52]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.664],[0.688,0.376],[0.912,0],[0.688,-0.376],[0.392,-0.688],[0,-0.912],[0,0],[-0.176,0.304],[-0.304,0.168],[-0.384,0],[-0.384,-0.376],[0,-0.592],[0,0]],"o":[[0,0],[0,-0.88],[-0.384,-0.664],[-0.688,-0.376],[-0.88,0],[-0.688,0.376],[-0.392,0.688],[0,0],[0,-0.4],[0.176,-0.304],[0.304,-0.168],[0.576,0],[0.384,0.376],[0,0],[0,0]],"v":[[-232.8,0],[-232.8,-7.464],[-233.376,-9.78],[-234.984,-11.34],[-237.384,-11.904],[-239.736,-11.34],[-241.356,-9.744],[-241.944,-7.344],[-240.528,-6.648],[-240.264,-7.704],[-239.544,-8.412],[-238.512,-8.664],[-237.072,-8.1],[-236.496,-6.648],[-236.496,0]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-240.528,0],[-240.528,-17.424],[-244.224,-17.424],[-244.224,0]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.328],[-0.576,0.688],[0,0],[0.464,-0.2],[0.56,0],[0.456,0.264],[0.248,0.496],[0,0.672],[-0.232,0.48],[-0.424,0.272],[-0.576,0],[-0.376,-0.24],[-0.192,-0.44],[-0.016,-0.656],[0,0],[0,0],[0,0],[0,0],[-0.024,0.232],[0,0.224],[0.512,0.88],[0.88,0.496],[1.168,0],[0.944,-0.528],[0.544,-0.92],[0,-1.152],[-0.56,-0.928],[-0.976,-0.52],[-1.264,0]],"o":[[0.816,-0.328],[0,0],[-0.352,0.4],[-0.464,0.2],[-0.624,0],[-0.456,-0.264],[-0.248,-0.496],[0,-0.672],[0.232,-0.48],[0.424,-0.272],[0.528,0],[0.376,0.24],[0.192,0.44],[0,0],[0,0],[0,0],[0,0],[0.08,-0.288],[0.024,-0.232],[0,-1.136],[-0.512,-0.88],[-0.88,-0.496],[-1.184,0],[-0.944,0.528],[-0.544,0.92],[0,1.184],[0.56,0.928],[0.976,0.52],[0.992,0]],"v":[[-222.024,-0.228],[-219.936,-1.752],[-221.976,-3.768],[-223.2,-2.868],[-224.736,-2.568],[-226.356,-2.964],[-227.412,-4.104],[-227.784,-5.856],[-227.436,-7.584],[-226.452,-8.712],[-224.952,-9.12],[-223.596,-8.76],[-222.744,-7.74],[-222.432,-6.096],[-220.848,-7.176],[-229.296,-7.128],[-229.296,-4.584],[-219.264,-4.632],[-219.108,-5.412],[-219.072,-6.096],[-219.84,-9.12],[-221.928,-11.184],[-225,-11.928],[-228.192,-11.136],[-230.424,-8.964],[-231.24,-5.856],[-230.4,-2.688],[-228.096,-0.516],[-224.736,0.264]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.68],[0.672,0.4],[0.848,0],[0.712,-0.376],[0.408,-0.688],[0,-0.912],[0,0],[-0.176,0.304],[-0.304,0.168],[-0.384,0],[-0.384,-0.376],[0,-0.592],[0,0]],"o":[[0,0],[0,-0.8],[-0.384,-0.68],[-0.672,-0.4],[-0.896,0],[-0.712,0.376],[-0.408,0.688],[0,0],[0,-0.4],[0.176,-0.304],[0.304,-0.168],[0.576,0],[0.384,0.376],[0,0],[0,0]],"v":[[-201.36,0],[-201.36,-7.464],[-201.936,-9.684],[-203.52,-11.304],[-205.8,-11.904],[-208.212,-11.34],[-209.892,-9.744],[-210.504,-7.344],[-209.088,-6.648],[-208.824,-7.704],[-208.104,-8.412],[-207.072,-8.664],[-205.632,-8.1],[-205.056,-6.648],[-205.056,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-209.088,0],[-209.088,-11.664],[-212.784,-11.664],[-212.784,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.328],[-0.576,0.688],[0,0],[0.464,-0.2],[0.56,0],[0.456,0.264],[0.248,0.496],[0,0.672],[-0.232,0.48],[-0.424,0.272],[-0.576,0],[-0.376,-0.24],[-0.192,-0.44],[-0.016,-0.656],[0,0],[0,0],[0,0],[0,0],[-0.024,0.232],[0,0.224],[0.512,0.88],[0.88,0.496],[1.168,0],[0.944,-0.528],[0.544,-0.92],[0,-1.152],[-0.56,-0.928],[-0.976,-0.52],[-1.264,0]],"o":[[0.816,-0.328],[0,0],[-0.352,0.4],[-0.464,0.2],[-0.624,0],[-0.456,-0.264],[-0.248,-0.496],[0,-0.672],[0.232,-0.48],[0.424,-0.272],[0.528,0],[0.376,0.24],[0.192,0.44],[0,0],[0,0],[0,0],[0,0],[0.08,-0.288],[0.024,-0.232],[0,-1.136],[-0.512,-0.88],[-0.88,-0.496],[-1.184,0],[-0.944,0.528],[-0.544,0.92],[0,1.184],[0.56,0.928],[0.976,0.52],[0.992,0]],"v":[[-190.584,-0.228],[-188.496,-1.752],[-190.536,-3.768],[-191.76,-2.868],[-193.296,-2.568],[-194.916,-2.964],[-195.972,-4.104],[-196.344,-5.856],[-195.996,-7.584],[-195.012,-8.712],[-193.512,-9.12],[-192.156,-8.76],[-191.304,-7.74],[-190.992,-6.096],[-189.408,-7.176],[-197.856,-7.128],[-197.856,-4.584],[-187.824,-4.632],[-187.668,-5.412],[-187.632,-6.096],[-188.4,-9.12],[-190.488,-11.184],[-193.56,-11.928],[-196.752,-11.136],[-198.984,-8.964],[-199.8,-5.856],[-198.96,-2.688],[-196.656,-0.516],[-193.296,0.264]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-174.72,0],[-179.472,-6.936],[-180.24,-7.44],[-182.856,-11.664],[-187.152,-11.664],[-182.568,-5.04],[-181.776,-4.512],[-178.992,0]],"c":true},"ix":2},"nm":"x","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-183.36,0],[-180.504,-4.416],[-182.616,-6.792],[-187.392,0]],"c":true},"ix":2},"nm":"x","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-174.936,-11.664],[-178.968,-11.664],[-181.584,-7.416],[-179.472,-5.064]],"c":true},"ix":2},"nm":"x","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"x","np":6,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-168.264,0],[-168.264,-16.488],[-171.96,-16.488],[-171.96,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-165.624,-8.52],[-165.624,-11.664],[-174.576,-11.664],[-174.576,-8.52]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-155.76,0],[-155.76,-11.664],[-159.456,-11.664],[-159.456,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.36,0.4],[0,0.56],[0.36,0.384],[0.592,0],[0.384,-0.384],[0,-0.576],[-0.384,-0.4],[-0.56,0]],"o":[[0.36,-0.4],[0,-0.576],[-0.36,-0.384],[-0.56,0],[-0.384,0.384],[0,0.56],[0.384,0.4],[0.592,0]],"v":[[-156.18,-13.848],[-155.64,-15.288],[-156.18,-16.728],[-157.608,-17.304],[-159.024,-16.728],[-159.6,-15.288],[-159.024,-13.848],[-157.608,-13.248]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.68],[0.672,0.4],[0.848,0],[0.712,-0.376],[0.408,-0.688],[0,-0.912],[0,0],[-0.176,0.304],[-0.304,0.168],[-0.384,0],[-0.384,-0.376],[0,-0.592],[0,0]],"o":[[0,0],[0,-0.8],[-0.384,-0.68],[-0.672,-0.4],[-0.896,0],[-0.712,0.376],[-0.408,0.688],[0,0],[0,-0.4],[0.176,-0.304],[0.304,-0.168],[0.576,0],[0.384,0.376],[0,0],[0,0]],"v":[[-141.792,0],[-141.792,-7.464],[-142.368,-9.684],[-143.952,-11.304],[-146.232,-11.904],[-148.644,-11.34],[-150.324,-9.744],[-150.936,-7.344],[-149.52,-6.648],[-149.256,-7.704],[-148.536,-8.412],[-147.504,-8.664],[-146.064,-8.1],[-145.488,-6.648],[-145.488,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-149.52,0],[-149.52,-11.664],[-153.216,-11.664],[-153.216,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-134.28,0],[-134.28,-16.488],[-137.976,-16.488],[-137.976,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-131.64,-8.52],[-131.64,-11.664],[-140.592,-11.664],[-140.592,-8.52]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-126.36,0],[-126.36,-11.664],[-130.056,-11.664],[-130.056,0]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.36,0.376],[-0.624,0],[-0.24,-0.096],[-0.144,-0.16],[0,0],[0.424,0.168],[0.56,0],[0.728,-0.752],[0.304,-1.376],[0,0]],"o":[[0.36,-0.376],[0.304,0],[0.24,0.096],[0,0],[-0.32,-0.336],[-0.424,-0.168],[-1.264,0],[-0.728,0.752],[0,0],[0,-0.752]],"v":[[-125.82,-8.076],[-124.344,-8.64],[-123.528,-8.496],[-122.952,-8.112],[-120.768,-10.896],[-121.884,-11.652],[-123.36,-11.904],[-126.348,-10.776],[-127.896,-7.584],[-126.36,-6.384]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.96,0.544],[-0.56,0.92],[0,1.168],[0.56,0.92],[0.968,0.528],[1.2,0],[0.96,-0.536],[0.552,-0.912],[0,-1.136],[-0.56,-0.928],[-0.96,-0.544],[-1.216,0]],"o":[[0.96,-0.544],[0.56,-0.92],[0,-1.136],[-0.56,-0.92],[-0.968,-0.528],[-1.232,0],[-0.96,0.536],[-0.552,0.912],[0,1.152],[0.56,0.928],[0.96,0.544],[1.216,0]],"v":[[-111.24,-0.552],[-108.96,-2.748],[-108.12,-5.88],[-108.96,-8.964],[-111.252,-11.136],[-114.504,-11.928],[-117.792,-11.124],[-120.06,-8.952],[-120.888,-5.88],[-120.048,-2.76],[-117.768,-0.552],[-114.504,0.264]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.4,0.224],[0.224,0.424],[0,0.544],[-0.224,0.416],[-0.4,0.232],[-0.512,0],[-0.392,-0.232],[-0.224,-0.408],[0,-0.528],[0.216,-0.424],[0.4,-0.224],[0.512,0]],"o":[[-0.4,-0.224],[-0.224,-0.424],[0,-0.512],[0.224,-0.416],[0.4,-0.232],[0.512,0],[0.392,0.232],[0.224,0.408],[0,0.544],[-0.216,0.424],[-0.4,0.224],[-0.512,0]],"v":[[-115.872,-3.432],[-116.808,-4.404],[-117.144,-5.856],[-116.808,-7.248],[-115.872,-8.22],[-114.504,-8.568],[-113.148,-8.22],[-112.224,-7.26],[-111.888,-5.856],[-112.212,-4.404],[-113.136,-3.432],[-114.504,-3.096]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.856,0.68],[0,1.136],[0.272,0.456],[0.432,0.28],[0.48,0.152],[0.424,0.112],[0.28,0.144],[0,0.24],[-0.208,0.128],[-0.416,0],[-0.456,-0.184],[-0.368,-0.432],[0,0],[0.848,0.344],[0.976,0],[0.704,-0.32],[0.384,-0.552],[0,-0.752],[-0.272,-0.448],[-0.432,-0.256],[-0.48,-0.152],[-0.44,-0.12],[-0.272,-0.136],[0,-0.288],[0.232,-0.128],[0.4,0],[0.52,0.232],[0.4,0.416],[0,0],[-0.56,-0.328],[-0.672,-0.184],[-0.688,0]],"o":[[0.856,-0.68],[0,-0.736],[-0.272,-0.456],[-0.432,-0.28],[-0.48,-0.152],[-0.424,-0.112],[-0.28,-0.144],[0,-0.208],[0.208,-0.128],[0.432,0],[0.456,0.184],[0,0],[-0.512,-0.672],[-0.848,-0.344],[-0.976,0],[-0.704,0.32],[-0.384,0.552],[0,0.72],[0.272,0.448],[0.432,0.256],[0.48,0.152],[0.44,0.12],[0.272,0.136],[0,0.24],[-0.232,0.128],[-0.64,0],[-0.52,-0.232],[0,0],[0.416,0.432],[0.56,0.328],[0.672,0.184],[1.456,0]],"v":[[-94.02,-0.708],[-92.736,-3.432],[-93.144,-5.22],[-94.2,-6.324],[-95.568,-6.972],[-96.924,-7.368],[-97.98,-7.752],[-98.4,-8.328],[-98.088,-8.832],[-97.152,-9.024],[-95.82,-8.748],[-94.584,-7.824],[-92.496,-9.96],[-94.536,-11.484],[-97.272,-12],[-99.792,-11.52],[-101.424,-10.212],[-102,-8.256],[-101.592,-6.504],[-100.536,-5.448],[-99.168,-4.836],[-97.788,-4.428],[-96.72,-4.044],[-96.312,-3.408],[-96.66,-2.856],[-97.608,-2.664],[-99.348,-3.012],[-100.728,-3.984],[-102.84,-1.872],[-101.376,-0.732],[-99.528,0.036],[-97.488,0.312]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.328],[-0.576,0.688],[0,0],[0.464,-0.2],[0.56,0],[0.456,0.264],[0.248,0.496],[0,0.672],[-0.232,0.48],[-0.424,0.272],[-0.576,0],[-0.376,-0.24],[-0.192,-0.44],[-0.016,-0.656],[0,0],[0,0],[0,0],[0,0],[-0.024,0.232],[0,0.224],[0.512,0.88],[0.88,0.496],[1.168,0],[0.944,-0.528],[0.544,-0.92],[0,-1.152],[-0.56,-0.928],[-0.976,-0.52],[-1.264,0]],"o":[[0.816,-0.328],[0,0],[-0.352,0.4],[-0.464,0.2],[-0.624,0],[-0.456,-0.264],[-0.248,-0.496],[0,-0.672],[0.232,-0.48],[0.424,-0.272],[0.528,0],[0.376,0.24],[0.192,0.44],[0,0],[0,0],[0,0],[0,0],[0.08,-0.288],[0.024,-0.232],[0,-1.136],[-0.512,-0.88],[-0.88,-0.496],[-1.184,0],[-0.944,0.528],[-0.544,0.92],[0,1.184],[0.56,0.928],[0.976,0.52],[0.992,0]],"v":[[-82.296,-0.228],[-80.208,-1.752],[-82.248,-3.768],[-83.472,-2.868],[-85.008,-2.568],[-86.628,-2.964],[-87.684,-4.104],[-88.056,-5.856],[-87.708,-7.584],[-86.724,-8.712],[-85.224,-9.12],[-83.868,-8.76],[-83.016,-7.74],[-82.704,-6.096],[-81.12,-7.176],[-89.568,-7.128],[-89.568,-4.584],[-79.536,-4.632],[-79.38,-5.412],[-79.344,-6.096],[-80.112,-9.12],[-82.2,-11.184],[-85.272,-11.928],[-88.464,-11.136],[-90.696,-8.964],[-91.512,-5.856],[-90.672,-2.688],[-88.368,-0.516],[-85.008,0.264]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.64,0.304],[-0.392,0.536],[-0.064,0.688],[0,0],[0.392,0.536],[0.632,0.304],[0.784,0],[0.848,-0.52],[0.48,-0.92],[0,-1.168],[-0.48,-0.904],[-0.84,-0.536],[-1.088,0]],"o":[[0.64,-0.304],[0.392,-0.536],[0,0],[-0.064,-0.688],[-0.392,-0.536],[-0.632,-0.304],[-1.072,0],[-0.848,0.52],[-0.48,0.92],[0,1.168],[0.48,0.904],[0.84,0.536],[0.768,0]],"v":[[-70.608,-0.216],[-69.06,-1.476],[-68.376,-3.312],[-68.376,-8.352],[-69.06,-10.188],[-70.596,-11.448],[-72.72,-11.904],[-75.6,-11.124],[-77.592,-8.964],[-78.312,-5.832],[-77.592,-2.724],[-75.612,-0.564],[-72.72,0.24]],"c":true},"ix":2},"nm":"q","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.4,0.232],[0.216,0.416],[0,0.528],[-0.224,0.416],[-0.392,0.232],[-0.512,0],[-0.384,-0.232],[-0.224,-0.408],[0,-0.528],[0.488,-0.512],[0.768,0]],"o":[[-0.4,-0.232],[-0.216,-0.416],[0,-0.528],[0.224,-0.416],[0.392,-0.232],[0.512,0],[0.384,0.232],[0.224,0.408],[0,0.816],[-0.488,0.512],[-0.496,0]],"v":[[-73.32,-3.444],[-74.244,-4.416],[-74.568,-5.832],[-74.232,-7.248],[-73.308,-8.22],[-71.952,-8.568],[-70.608,-8.22],[-69.696,-7.26],[-69.36,-5.856],[-70.092,-3.864],[-71.976,-3.096]],"c":true},"ix":2},"nm":"q","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-65.88,4.92],[-65.88,-11.664],[-69.528,-11.664],[-69.528,-8.688],[-68.976,-5.832],[-69.528,-3],[-69.528,4.92]],"c":true},"ix":2},"nm":"q","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"q","np":6,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.44],[-0.456,0.776],[0,1.024],[0,0],[0,0],[0,0],[0.312,-0.352],[0.544,0],[0.272,0.16],[0.144,0.296],[0,0.4],[0,0],[0,0],[0,0],[-0.464,-0.776],[-0.84,-0.448],[-1.056,0]],"o":[[0.816,-0.44],[0.456,-0.776],[0,0],[0,0],[0,0],[0,0.608],[-0.312,0.352],[-0.368,0],[-0.272,-0.16],[-0.144,-0.296],[0,0],[0,0],[0,0],[0,1.008],[0.464,0.776],[0.84,0.448],[1.088,0]],"v":[[-55.272,-0.396],[-53.364,-2.22],[-52.68,-4.92],[-52.68,-11.664],[-56.376,-11.664],[-56.376,-4.968],[-56.844,-3.528],[-58.128,-3],[-59.088,-3.24],[-59.712,-3.924],[-59.928,-4.968],[-59.928,-11.664],[-63.624,-11.664],[-63.624,-4.92],[-62.928,-2.244],[-60.972,-0.408],[-58.128,0.264]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.328],[-0.576,0.688],[0,0],[0.464,-0.2],[0.56,0],[0.456,0.264],[0.248,0.496],[0,0.672],[-0.232,0.48],[-0.424,0.272],[-0.576,0],[-0.376,-0.24],[-0.192,-0.44],[-0.016,-0.656],[0,0],[0,0],[0,0],[0,0],[-0.024,0.232],[0,0.224],[0.512,0.88],[0.88,0.496],[1.168,0],[0.944,-0.528],[0.544,-0.92],[0,-1.152],[-0.56,-0.928],[-0.976,-0.52],[-1.264,0]],"o":[[0.816,-0.328],[0,0],[-0.352,0.4],[-0.464,0.2],[-0.624,0],[-0.456,-0.264],[-0.248,-0.496],[0,-0.672],[0.232,-0.48],[0.424,-0.272],[0.528,0],[0.376,0.24],[0.192,0.44],[0,0],[0,0],[0,0],[0,0],[0.08,-0.288],[0.024,-0.232],[0,-1.136],[-0.512,-0.88],[-0.88,-0.496],[-1.184,0],[-0.944,0.528],[-0.544,0.92],[0,1.184],[0.56,0.928],[0.976,0.52],[0.992,0]],"v":[[-41.904,-0.228],[-39.816,-1.752],[-41.856,-3.768],[-43.08,-2.868],[-44.616,-2.568],[-46.236,-2.964],[-47.292,-4.104],[-47.664,-5.856],[-47.316,-7.584],[-46.332,-8.712],[-44.832,-9.12],[-43.476,-8.76],[-42.624,-7.74],[-42.312,-6.096],[-40.728,-7.176],[-49.176,-7.128],[-49.176,-4.584],[-39.144,-4.632],[-38.988,-5.412],[-38.952,-6.096],[-39.72,-9.12],[-41.808,-11.184],[-44.88,-11.928],[-48.072,-11.136],[-50.304,-8.964],[-51.12,-5.856],[-50.28,-2.688],[-47.976,-0.516],[-44.616,0.264]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.384,0.68],[0.672,0.4],[0.848,0],[0.712,-0.376],[0.408,-0.688],[0,-0.912],[0,0],[-0.176,0.304],[-0.304,0.168],[-0.384,0],[-0.384,-0.376],[0,-0.592],[0,0]],"o":[[0,0],[0,-0.8],[-0.384,-0.68],[-0.672,-0.4],[-0.896,0],[-0.712,0.376],[-0.408,0.688],[0,0],[0,-0.4],[0.176,-0.304],[0.304,-0.168],[0.576,0],[0.384,0.376],[0,0],[0,0]],"v":[[-25.8,0],[-25.8,-7.464],[-26.376,-9.684],[-27.96,-11.304],[-30.24,-11.904],[-32.652,-11.34],[-34.332,-9.744],[-34.944,-7.344],[-33.528,-6.648],[-33.264,-7.704],[-32.544,-8.412],[-31.512,-8.664],[-30.072,-8.1],[-29.496,-6.648],[-29.496,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-33.528,0],[-33.528,-11.664],[-37.224,-11.664],[-37.224,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,0.328],[-0.624,0.64],[0,0],[0.376,-0.16],[0.48,0],[0.416,0.232],[0.232,0.416],[0,0.544],[-0.232,0.408],[-0.408,0.232],[-0.512,0],[-0.36,-0.144],[-0.272,-0.304],[0,0],[0.76,0.312],[0.928,0],[0.976,-0.528],[0.56,-0.92],[0,-1.168],[-0.552,-0.928],[-0.976,-0.528],[-1.216,0]],"o":[[0.76,-0.328],[0,0],[-0.272,0.304],[-0.376,0.16],[-0.496,0],[-0.416,-0.232],[-0.232,-0.416],[0,-0.528],[0.232,-0.408],[0.408,-0.232],[0.464,0],[0.36,0.144],[0,0],[-0.592,-0.608],[-0.76,-0.312],[-1.216,0],[-0.976,0.528],[-0.56,0.92],[0,1.152],[0.552,0.928],[0.976,0.528],[0.96,0]],"v":[[-15.252,-0.228],[-13.176,-1.68],[-15.552,-4.032],[-16.524,-3.336],[-17.808,-3.096],[-19.176,-3.444],[-20.148,-4.416],[-20.496,-5.856],[-20.148,-7.26],[-19.188,-8.22],[-17.808,-8.568],[-16.572,-8.352],[-15.624,-7.68],[-13.248,-10.08],[-15.276,-11.46],[-17.808,-11.928],[-21.096,-11.136],[-23.4,-8.964],[-24.24,-5.832],[-23.412,-2.712],[-21.12,-0.528],[-17.832,0.264]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.816,0.328],[-0.576,0.688],[0,0],[0.464,-0.2],[0.56,0],[0.456,0.264],[0.248,0.496],[0,0.672],[-0.232,0.48],[-0.424,0.272],[-0.576,0],[-0.376,-0.24],[-0.192,-0.44],[-0.016,-0.656],[0,0],[0,0],[0,0],[0,0],[-0.024,0.232],[0,0.224],[0.512,0.88],[0.88,0.496],[1.168,0],[0.944,-0.528],[0.544,-0.92],[0,-1.152],[-0.56,-0.928],[-0.976,-0.52],[-1.264,0]],"o":[[0.816,-0.328],[0,0],[-0.352,0.4],[-0.464,0.2],[-0.624,0],[-0.456,-0.264],[-0.248,-0.496],[0,-0.672],[0.232,-0.48],[0.424,-0.272],[0.528,0],[0.376,0.24],[0.192,0.44],[0,0],[0,0],[0,0],[0,0],[0.08,-0.288],[0.024,-0.232],[0,-1.136],[-0.512,-0.88],[-0.88,-0.496],[-1.184,0],[-0.944,0.528],[-0.544,0.92],[0,1.184],[0.56,0.928],[0.976,0.52],[0.992,0]],"v":[[-3.408,-0.228],[-1.32,-1.752],[-3.36,-3.768],[-4.584,-2.868],[-6.12,-2.568],[-7.74,-2.964],[-8.796,-4.104],[-9.168,-5.856],[-8.82,-7.584],[-7.836,-8.712],[-6.336,-9.12],[-4.98,-8.76],[-4.128,-7.74],[-3.816,-6.096],[-2.232,-7.176],[-10.68,-7.128],[-10.68,-4.584],[-0.648,-4.632],[-0.492,-5.412],[-0.456,-6.096],[-1.224,-9.12],[-3.312,-11.184],[-6.384,-11.928],[-9.576,-11.136],[-11.808,-8.964],[-12.624,-5.856],[-11.784,-2.688],[-9.48,-0.516],[-6.12,0.264]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":4865,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4320,"s":[100]},{"t":4350,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,592,0],"ix":2,"l":2},"a":{"a":0,"k":[55,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":3750,"s":[0,100,100]},{"t":4320,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":2,"s":{"a":0,"k":[1920,82],"ix":2},"p":{"a":0,"k":[960,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[0.901960784314,0.235294117647,0.235294117647,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[59,517],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":2130,"op":4924,"st":2130,"ct":1,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":3690,"s":[100]},{"t":3720,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,592,0],"ix":2,"l":2},"a":{"a":0,"k":[55,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[0,100,100]},{"t":3690,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":2,"s":{"a":0,"k":[1920,82],"ix":2},"p":{"a":0,"k":[960,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[0.901960784314,0.235294117647,0.235294117647,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[59,517],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":4864,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"I hope this message finds you and could help to bring awareness to international fellows regarding the current situation of this country. To learn more about what’s happening, click the “Learn More” button below. Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":3750,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":3780,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4320,"s":[100]},{"t":4350,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[964,825,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-823.024,-337.587],[-823.024,-372.981],[-827.818,-372.981],[-827.818,-337.587]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.462],[1.41,0.816],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.904],[-0.816,-1.461],[-1.411,-0.816],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.544,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[-783.193,-337.587],[-783.193,-352.632],[-784.417,-357.681],[-787.757,-361.098],[-792.628,-362.322],[-797.575,-361.072],[-800.992,-357.681],[-802.216,-352.785],[-800.329,-351.714],[-799.513,-354.978],[-797.269,-357.222],[-794.005,-358.038],[-789.542,-356.253],[-787.834,-351.714],[-787.834,-337.587]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-800.329,-337.587],[-800.329,-374.001],[-804.919,-374.001],[-804.919,-337.587]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,1.122],[-1.122,1.921],[0,2.38],[1.122,1.905],[1.92,1.105],[2.379,0],[1.904,-1.122],[1.122,-1.887],[0,-2.346],[-1.122,-1.92],[-1.905,-1.122],[-2.346,0]],"o":[[1.92,-1.122],[1.122,-1.92],[0,-2.346],[-1.122,-1.904],[-1.921,-1.104],[-2.346,0],[-1.905,1.122],[-1.122,1.887],[0,2.38],[1.122,1.921],[1.904,1.122],[2.379,0]],"v":[[-759.503,-338.76],[-754.939,-343.324],[-753.256,-349.776],[-754.939,-356.151],[-759.503,-360.664],[-765.955,-362.322],[-772.33,-360.639],[-776.869,-356.125],[-778.552,-349.776],[-776.869,-343.324],[-772.33,-338.76],[-765.955,-337.077]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.68,1.242],[0,1.599],[-0.68,1.224],[-1.191,0.697],[-1.497,0],[-1.173,-0.696],[-0.697,-1.224],[0,-1.563],[0.68,-1.241],[1.19,-0.714],[1.563,0]],"o":[[-1.191,-0.714],[-0.68,-1.241],[0,-1.563],[0.68,-1.224],[1.19,-0.696],[1.563,0],[1.173,0.697],[0.696,1.224],[0,1.599],[-0.681,1.242],[-1.191,0.714],[-1.497,0]],"v":[[-769.984,-342.585],[-772.789,-345.517],[-773.809,-349.776],[-772.789,-353.958],[-769.984,-356.839],[-765.955,-357.885],[-761.849,-356.839],[-759.044,-353.958],[-757.999,-349.776],[-759.019,-345.517],[-761.824,-342.585],[-765.955,-341.514]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.785,1.105],[-1.02,1.905],[0,2.38],[1.02,1.905],[1.785,1.122],[2.21,0],[1.479,-0.765],[0.9,-1.343],[0.102,-1.767],[0,0],[-0.885,-1.359],[-1.479,-0.765],[-1.836,0]],"o":[[1.785,-1.104],[1.02,-1.904],[0,-2.379],[-1.02,-1.904],[-1.785,-1.122],[-1.803,0],[-1.479,0.765],[-0.901,1.344],[0,0],[0.102,1.734],[0.884,1.36],[1.479,0.765],[2.21,0]],"v":[[-729.413,-338.734],[-725.206,-343.248],[-723.676,-349.674],[-725.206,-356.1],[-729.413,-360.639],[-735.406,-362.322],[-740.327,-361.174],[-743.897,-358.012],[-745.402,-353.346],[-745.402,-346.053],[-743.923,-341.412],[-740.378,-338.224],[-735.406,-337.077]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-743.566,-327.438],[-743.566,-343.656],[-744.433,-349.572],[-743.566,-355.437],[-743.566,-361.812],[-748.156,-361.812],[-748.156,-327.438]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[1.173,0.714],[0.629,1.242],[0,1.599],[-0.646,1.242],[-1.156,0.714],[-1.497,0],[-1.156,-0.714],[-0.663,-1.241],[0,-1.598],[0.663,-1.241],[1.155,-0.714],[1.53,0]],"o":[[-1.173,-0.714],[-0.63,-1.241],[0,-1.632],[0.646,-1.241],[1.155,-0.714],[1.53,0],[1.155,0.714],[0.663,1.242],[0,1.632],[-0.663,1.242],[-1.156,0.714],[-1.497,0]],"v":[[-740.174,-342.483],[-742.878,-345.415],[-743.821,-349.674],[-742.852,-353.983],[-740.149,-356.916],[-736.171,-357.987],[-732.142,-356.916],[-729.413,-353.983],[-728.419,-349.725],[-729.413,-345.415],[-732.142,-342.483],[-736.171,-341.412]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.666,0.714],[-1.19,1.36],[0,0],[1.139,-0.476],[1.359,0],[1.258,0.697],[0.68,1.275],[0,1.701],[-0.646,1.224],[-1.191,0.681],[-1.564,0],[-1.054,-0.629],[-0.578,-1.139],[0,-1.632],[0,0],[0,0],[0,0],[0,0],[-0.034,0.391],[0,0.34],[0.969,1.803],[1.734,1.02],[2.21,0],[1.887,-1.104],[1.104,-1.904],[0,-2.379],[-1.122,-1.904],[-1.921,-1.104],[-2.448,0]],"o":[[1.665,-0.714],[0,0],[-0.816,0.952],[-1.14,0.477],[-1.632,0],[-1.258,-0.696],[-0.681,-1.275],[0,-1.665],[0.645,-1.224],[1.19,-0.68],[1.496,0],[1.053,0.63],[0.578,1.14],[0,0],[0,0],[0,0],[0,0],[0.102,-0.476],[0.033,-0.39],[0,-2.312],[-0.969,-1.802],[-1.734,-1.02],[-2.346,0],[-1.887,1.105],[-1.105,1.905],[0,2.415],[1.122,1.905],[1.92,1.105],[1.904,0]],"v":[[-701.899,-338.148],[-697.615,-341.259],[-700.573,-344.268],[-703.506,-342.126],[-707.254,-341.412],[-711.589,-342.457],[-714.496,-345.415],[-715.516,-349.878],[-714.547,-354.213],[-711.793,-357.069],[-707.662,-358.089],[-703.837,-357.145],[-701.389,-354.493],[-700.522,-350.337],[-698.839,-351.816],[-716.842,-351.816],[-716.842,-347.991],[-696.391,-347.991],[-696.187,-349.291],[-696.136,-350.388],[-697.59,-356.559],[-701.644,-360.792],[-707.56,-362.322],[-713.91,-360.664],[-718.398,-356.151],[-720.055,-349.725],[-718.372,-343.248],[-713.808,-338.734],[-707.254,-337.077]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-672.268,-337.587],[-672.268,-371.961],[-676.858,-371.961],[-676.858,-337.587]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-666.301,-357.63],[-666.301,-361.812],[-682.825,-361.812],[-682.825,-357.63]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.462],[1.41,0.816],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.904],[-0.816,-1.461],[-1.411,-0.816],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.544,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[-640.087,-337.587],[-640.087,-352.632],[-641.311,-357.681],[-644.651,-361.098],[-649.522,-362.322],[-654.469,-361.072],[-657.886,-357.681],[-659.11,-352.785],[-657.223,-351.714],[-656.407,-354.978],[-654.163,-357.222],[-650.899,-358.038],[-646.437,-356.253],[-644.728,-351.714],[-644.728,-337.587]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-657.223,-337.587],[-657.223,-374.001],[-661.813,-374.001],[-661.813,-337.587]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-629.224,-337.587],[-629.224,-361.812],[-633.865,-361.812],[-633.865,-337.587]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.544,0.561],[0,0.85],[0.544,0.561],[0.849,0],[0.544,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0]],"o":[[0.544,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0],[-0.544,0.561],[0,0.85],[0.544,0.561],[0.849,0]],"v":[[-629.428,-367.498],[-628.612,-369.615],[-629.428,-371.68],[-631.519,-372.522],[-633.61,-371.68],[-634.426,-369.615],[-633.61,-367.498],[-631.519,-366.657]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.615,1.326],[0,2.278],[0.629,0.918],[0.986,0.544],[1.088,0.324],[1.003,0.306],[0.612,0.442],[0,0.816],[-0.697,0.477],[-1.326,0],[-0.987,-0.476],[-0.714,-0.884],[0,0],[1.479,0.663],[1.904,0],[1.292,-0.578],[0.696,-1.071],[0,-1.461],[-0.63,-0.9],[-0.987,-0.51],[-1.105,-0.306],[-0.987,-0.323],[-0.63,-0.492],[0,-0.884],[0.782,-0.492],[1.428,0],[1.155,0.528],[0.884,1.089],[0,0],[-1.003,-0.663],[-1.224,-0.357],[-1.36,0]],"o":[[1.614,-1.326],[0,-1.496],[-0.63,-0.918],[-0.987,-0.543],[-1.089,-0.323],[-1.003,-0.306],[-0.612,-0.441],[0,-0.782],[0.696,-0.476],[1.258,0],[0.986,0.477],[0,0],[-0.952,-1.326],[-1.479,-0.663],[-1.803,0],[-1.293,0.579],[-0.697,1.071],[0,1.462],[0.629,0.901],[0.986,0.51],[1.104,0.306],[0.986,0.324],[0.629,0.493],[0,0.885],[-0.783,0.493],[-1.428,0],[-1.156,-0.527],[0,0],[0.747,0.918],[1.002,0.663],[1.224,0.357],[2.72,0]],"v":[[-608.237,-339.066],[-605.815,-344.472],[-606.758,-348.093],[-609.181,-350.286],[-612.292,-351.586],[-615.429,-352.53],[-617.851,-353.652],[-618.769,-355.539],[-617.724,-357.426],[-614.689,-358.14],[-611.323,-357.426],[-608.773,-355.386],[-605.815,-358.344],[-609.461,-361.327],[-614.536,-362.322],[-619.177,-361.455],[-622.161,-358.981],[-623.206,-355.182],[-622.263,-351.637],[-619.84,-349.521],[-616.703,-348.297],[-613.567,-347.353],[-611.145,-346.129],[-610.201,-344.064],[-611.374,-341.998],[-614.689,-341.259],[-618.565,-342.049],[-621.625,-344.472],[-624.583,-341.514],[-621.956,-339.142],[-618.616,-337.612],[-614.74,-337.077]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-585.517,-337.587],[-585.517,-361.812],[-590.107,-361.812],[-590.107,-337.587]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.798,1.36],[1.377,0.748],[1.7,0],[1.394,-0.765],[0.798,-1.359],[0,-1.836],[0,0],[-0.544,0.85],[-0.885,0.477],[-1.122,0],[-1.105,-1.037],[0,-1.802],[0,0]],"o":[[0,0],[0,-1.869],[-0.799,-1.359],[-1.377,-0.747],[-1.734,0],[-1.395,0.765],[-0.799,1.36],[0,0],[0,-1.224],[0.544,-0.849],[0.884,-0.476],[1.665,0],[1.104,1.038],[0,0],[0,0]],"v":[[-569.146,-337.587],[-569.146,-353.193],[-570.345,-358.038],[-573.609,-361.2],[-578.224,-362.322],[-582.916,-361.174],[-586.206,-357.987],[-587.404,-353.193],[-585.517,-352.224],[-584.701,-355.335],[-582.559,-357.324],[-579.55,-358.038],[-575.393,-356.482],[-573.736,-352.224],[-573.736,-337.587]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.833,1.36],[1.394,0.748],[1.767,0],[1.428,-0.765],[0.9,-1.343],[0.102,-1.869],[0,0],[-0.544,0.85],[-0.901,0.477],[-1.122,0],[-1.105,-1.037],[0,-1.802],[0,0]],"o":[[0,0],[0,-1.904],[-0.834,-1.359],[-1.395,-0.747],[-1.701,0],[-1.428,0.765],[-0.901,1.344],[0,0],[0,-1.224],[0.543,-0.849],[0.901,-0.476],[1.632,0],[1.104,1.038],[0,0],[0,0]],"v":[[-552.724,-337.587],[-552.724,-353.142],[-553.974,-358.038],[-557.314,-361.2],[-562.057,-362.322],[-566.749,-361.174],[-570.242,-358.012],[-571.747,-353.193],[-569.146,-352.224],[-568.33,-355.335],[-566.163,-357.324],[-563.128,-358.038],[-559.023,-356.482],[-557.365,-352.224],[-557.365,-337.587]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.666,0.714],[-1.19,1.36],[0,0],[1.139,-0.476],[1.359,0],[1.258,0.697],[0.68,1.275],[0,1.701],[-0.646,1.224],[-1.191,0.681],[-1.564,0],[-1.054,-0.629],[-0.578,-1.139],[0,-1.632],[0,0],[0,0],[0,0],[0,0],[-0.034,0.391],[0,0.34],[0.969,1.803],[1.734,1.02],[2.21,0],[1.887,-1.104],[1.104,-1.904],[0,-2.379],[-1.122,-1.904],[-1.921,-1.104],[-2.448,0]],"o":[[1.665,-0.714],[0,0],[-0.816,0.952],[-1.14,0.477],[-1.632,0],[-1.258,-0.696],[-0.681,-1.275],[0,-1.665],[0.645,-1.224],[1.19,-0.68],[1.496,0],[1.053,0.63],[0.578,1.14],[0,0],[0,0],[0,0],[0,0],[0.102,-0.476],[0.033,-0.39],[0,-2.312],[-0.969,-1.802],[-1.734,-1.02],[-2.346,0],[-1.887,1.105],[-1.105,1.905],[0,2.415],[1.122,1.905],[1.92,1.105],[1.904,0]],"v":[[-529.927,-338.148],[-525.643,-341.259],[-528.601,-344.268],[-531.534,-342.126],[-535.282,-341.412],[-539.617,-342.457],[-542.524,-345.415],[-543.544,-349.878],[-542.575,-354.213],[-539.821,-357.069],[-535.69,-358.089],[-531.865,-357.145],[-529.417,-354.493],[-528.55,-350.337],[-526.867,-351.816],[-544.87,-351.816],[-544.87,-347.991],[-524.419,-347.991],[-524.215,-349.291],[-524.164,-350.388],[-525.618,-356.559],[-529.672,-360.792],[-535.588,-362.322],[-541.938,-360.664],[-546.426,-356.151],[-548.083,-349.725],[-546.4,-343.248],[-541.836,-338.734],[-535.282,-337.077]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.615,1.326],[0,2.278],[0.629,0.918],[0.986,0.544],[1.088,0.324],[1.003,0.306],[0.612,0.442],[0,0.816],[-0.697,0.477],[-1.326,0],[-0.987,-0.476],[-0.714,-0.884],[0,0],[1.479,0.663],[1.904,0],[1.292,-0.578],[0.696,-1.071],[0,-1.461],[-0.63,-0.9],[-0.987,-0.51],[-1.105,-0.306],[-0.987,-0.323],[-0.63,-0.492],[0,-0.884],[0.782,-0.492],[1.428,0],[1.155,0.528],[0.884,1.089],[0,0],[-1.003,-0.663],[-1.224,-0.357],[-1.36,0]],"o":[[1.614,-1.326],[0,-1.496],[-0.63,-0.918],[-0.987,-0.543],[-1.089,-0.323],[-1.003,-0.306],[-0.612,-0.441],[0,-0.782],[0.696,-0.476],[1.257,0],[0.986,0.477],[0,0],[-0.952,-1.326],[-1.479,-0.663],[-1.803,0],[-1.293,0.579],[-0.697,1.071],[0,1.462],[0.629,0.901],[0.986,0.51],[1.104,0.306],[0.986,0.324],[0.629,0.493],[0,0.885],[-0.783,0.493],[-1.428,0],[-1.156,-0.527],[0,0],[0.747,0.918],[1.002,0.663],[1.224,0.357],[2.72,0]],"v":[[-504.962,-339.066],[-502.54,-344.472],[-503.483,-348.093],[-505.906,-350.286],[-509.017,-351.586],[-512.154,-352.53],[-514.576,-353.652],[-515.494,-355.539],[-514.448,-357.426],[-511.414,-358.14],[-508.048,-357.426],[-505.498,-355.386],[-502.54,-358.344],[-506.186,-361.327],[-511.261,-362.322],[-515.902,-361.455],[-518.885,-358.981],[-519.931,-355.182],[-518.987,-351.637],[-516.565,-349.521],[-513.428,-348.297],[-510.292,-347.353],[-507.869,-346.129],[-506.926,-344.064],[-508.099,-341.998],[-511.414,-341.259],[-515.29,-342.049],[-518.35,-344.472],[-521.308,-341.514],[-518.681,-339.142],[-515.341,-337.612],[-511.465,-337.077]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.615,1.326],[0,2.278],[0.629,0.918],[0.986,0.544],[1.088,0.324],[1.002,0.306],[0.612,0.442],[0,0.816],[-0.697,0.477],[-1.326,0],[-0.987,-0.476],[-0.714,-0.884],[0,0],[1.479,0.663],[1.904,0],[1.292,-0.578],[0.696,-1.071],[0,-1.461],[-0.63,-0.9],[-0.987,-0.51],[-1.105,-0.306],[-0.987,-0.323],[-0.63,-0.492],[0,-0.884],[0.782,-0.492],[1.428,0],[1.155,0.528],[0.884,1.089],[0,0],[-1.003,-0.663],[-1.224,-0.357],[-1.36,0]],"o":[[1.614,-1.326],[0,-1.496],[-0.63,-0.918],[-0.987,-0.543],[-1.089,-0.323],[-1.003,-0.306],[-0.612,-0.441],[0,-0.782],[0.696,-0.476],[1.257,0],[0.986,0.477],[0,0],[-0.952,-1.326],[-1.479,-0.663],[-1.803,0],[-1.293,0.579],[-0.697,1.071],[0,1.462],[0.629,0.901],[0.986,0.51],[1.104,0.306],[0.986,0.324],[0.629,0.493],[0,0.885],[-0.783,0.493],[-1.428,0],[-1.156,-0.527],[0,0],[0.747,0.918],[1.002,0.663],[1.224,0.357],[2.72,0]],"v":[[-483.186,-339.066],[-480.763,-344.472],[-481.707,-348.093],[-484.129,-350.286],[-487.24,-351.586],[-490.376,-352.53],[-492.799,-353.652],[-493.717,-355.539],[-492.672,-357.426],[-489.637,-358.14],[-486.271,-357.426],[-483.721,-355.386],[-480.763,-358.344],[-484.41,-361.327],[-489.484,-362.322],[-494.125,-361.455],[-497.108,-358.981],[-498.154,-355.182],[-497.211,-351.637],[-494.788,-349.521],[-491.651,-348.297],[-488.515,-347.353],[-486.092,-346.129],[-485.149,-344.064],[-486.322,-341.998],[-489.637,-341.259],[-493.513,-342.049],[-496.573,-344.472],[-499.531,-341.514],[-496.905,-339.142],[-493.564,-337.612],[-489.688,-337.077]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.462,0.765],[-0.867,1.36],[-0.102,1.734],[0,0],[0.884,1.344],[1.445,0.765],[1.836,0],[1.785,-1.122],[1.037,-1.904],[0,-2.379],[-1.038,-1.904],[-1.785,-1.104],[-2.244,0]],"o":[[1.461,-0.765],[0.867,-1.359],[0,0],[-0.102,-1.767],[-0.885,-1.343],[-1.446,-0.765],[-2.244,0],[-1.785,1.122],[-1.038,1.905],[0,2.38],[1.037,1.905],[1.785,1.105],[1.836,0]],"v":[[-460.363,-338.224],[-456.87,-341.412],[-455.416,-346.053],[-455.416,-353.346],[-456.895,-358.012],[-460.388,-361.174],[-465.31,-362.322],[-471.353,-360.639],[-475.586,-356.1],[-477.142,-349.674],[-475.586,-343.248],[-471.353,-338.734],[-465.31,-337.077]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.663,1.242],[0,1.632],[-0.663,1.242],[-1.173,0.714],[-1.53,0],[-1.14,-0.696],[-0.646,-1.257],[0,-1.632],[1.394,-1.547],[2.277,0]],"o":[[-1.191,-0.714],[-0.663,-1.241],[0,-1.598],[0.663,-1.241],[1.173,-0.714],[1.53,0],[1.139,0.697],[0.645,1.258],[0,2.415],[-1.395,1.548],[-1.53,0]],"v":[[-468.625,-342.483],[-471.405,-345.415],[-472.399,-349.725],[-471.405,-353.983],[-468.65,-356.916],[-464.596,-357.987],[-460.592,-356.941],[-457.915,-354.009],[-456.946,-349.674],[-459.037,-343.732],[-464.545,-341.412]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-452.611,-337.587],[-452.611,-361.812],[-457.252,-361.812],[-457.252,-355.896],[-456.385,-350.031],[-457.252,-344.115],[-457.252,-337.587]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,0.969],[-1.071,1.751],[0,2.312],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.461,-1.309],[2.448,0],[1.359,0.663],[0.986,1.257],[0,0],[-1.905,-0.918],[-2.517,0]],"o":[[1.92,-0.969],[1.071,-1.752],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,2.21],[-1.462,1.308],[-1.87,0],[-1.36,-0.663],[0,0],[1.19,1.665],[1.904,0.918],[2.516,0]],"v":[[-429.228,-328.381],[-424.74,-332.461],[-423.133,-338.556],[-423.133,-361.812],[-427.723,-361.812],[-427.723,-355.437],[-426.907,-350.031],[-427.723,-344.574],[-427.723,-338.556],[-429.916,-333.277],[-435.781,-331.314],[-440.626,-332.308],[-444.145,-335.19],[-447.154,-332.181],[-442.513,-328.305],[-435.883,-326.928]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.462,0.748],[-0.867,1.344],[-0.102,1.768],[0,0],[0.849,1.344],[1.479,0.748],[1.904,0],[1.767,-1.071],[1.002,-1.818],[0,-2.312],[-1.02,-1.853],[-1.752,-1.053],[-2.211,0]],"o":[[1.461,-0.747],[0.867,-1.343],[0,0],[-0.102,-1.802],[-0.85,-1.343],[-1.479,-0.747],[-2.176,0],[-1.768,1.071],[-1.003,1.819],[0,2.313],[1.02,1.854],[1.751,1.054],[1.869,0]],"v":[[-430.885,-339.117],[-427.392,-342.253],[-425.938,-346.92],[-425.938,-353.346],[-427.366,-358.063],[-430.86,-361.2],[-435.934,-362.322],[-441.85,-360.715],[-446.007,-356.38],[-447.511,-350.184],[-445.981,-343.936],[-441.825,-339.576],[-435.883,-337.995]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[1.173,0.663],[0.663,1.191],[0,1.53],[-0.663,1.173],[-1.156,0.663],[-1.53,0],[-1.14,-0.663],[-0.63,-1.173],[0,-1.563],[0.629,-1.173],[1.122,-0.645],[1.53,0]],"o":[[-1.173,-0.663],[-0.663,-1.19],[0,-1.53],[0.663,-1.173],[1.155,-0.663],[1.496,0],[1.139,0.663],[0.629,1.173],[0,1.564],[-0.63,1.173],[-1.122,0.646],[-1.497,0]],"v":[[-439.02,-343.324],[-441.774,-346.104],[-442.768,-350.184],[-441.774,-354.238],[-439.045,-356.992],[-435.016,-357.987],[-431.064,-356.992],[-428.412,-354.238],[-427.468,-350.133],[-428.412,-346.027],[-431.038,-343.299],[-435.016,-342.33]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.666,0.714],[-1.191,1.36],[0,0],[1.139,-0.476],[1.359,0],[1.257,0.697],[0.68,1.275],[0,1.701],[-0.646,1.224],[-1.191,0.681],[-1.564,0],[-1.054,-0.629],[-0.579,-1.139],[0,-1.632],[0,0],[0,0],[0,0],[0,0],[-0.034,0.391],[0,0.34],[0.969,1.803],[1.734,1.02],[2.21,0],[1.887,-1.104],[1.104,-1.904],[0,-2.379],[-1.122,-1.904],[-1.921,-1.104],[-2.448,0]],"o":[[1.665,-0.714],[0,0],[-0.816,0.952],[-1.14,0.477],[-1.632,0],[-1.258,-0.696],[-0.681,-1.275],[0,-1.665],[0.645,-1.224],[1.19,-0.68],[1.496,0],[1.053,0.63],[0.578,1.14],[0,0],[0,0],[0,0],[0,0],[0.102,-0.476],[0.033,-0.39],[0,-2.312],[-0.969,-1.802],[-1.734,-1.02],[-2.346,0],[-1.887,1.105],[-1.105,1.905],[0,2.415],[1.122,1.905],[1.92,1.105],[1.904,0]],"v":[[-399.877,-338.148],[-395.593,-341.259],[-398.551,-344.268],[-401.483,-342.126],[-405.232,-341.412],[-409.567,-342.457],[-412.474,-345.415],[-413.494,-349.878],[-412.525,-354.213],[-409.771,-357.069],[-405.64,-358.089],[-401.815,-357.145],[-399.367,-354.493],[-398.5,-350.337],[-396.817,-351.816],[-414.82,-351.816],[-414.82,-347.991],[-394.369,-347.991],[-394.165,-349.291],[-394.114,-350.388],[-395.568,-356.559],[-399.622,-360.792],[-405.538,-362.322],[-411.887,-360.664],[-416.375,-356.151],[-418.033,-349.725],[-416.35,-343.248],[-411.785,-338.734],[-405.232,-337.077]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.799,0.834],[-1.462,0],[-0.544,-0.237],[-0.442,-0.476],[0,0],[1.02,0.477],[1.394,0],[1.394,-0.782],[0.782,-1.359],[0,-1.767],[0,0]],"o":[[0,0],[0,-1.496],[0.798,-0.833],[0.782,0],[0.543,0.238],[0,0],[-0.85,-0.918],[-1.02,-0.476],[-1.836,0],[-1.395,0.783],[-0.783,1.36],[0,0],[0,0]],"v":[[-370.501,-337.587],[-370.501,-365.433],[-369.303,-368.926],[-365.911,-370.176],[-363.922,-369.819],[-362.443,-368.748],[-359.434,-371.706],[-362.239,-373.797],[-365.86,-374.511],[-370.705,-373.338],[-373.969,-370.125],[-375.142,-365.433],[-375.142,-337.587]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-362.8,-357.63],[-362.8,-361.812],[-381.058,-361.812],[-381.058,-357.63]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-353.569,-337.587],[-353.569,-361.812],[-358.21,-361.812],[-358.21,-337.587]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.544,0.561],[0,0.85],[0.543,0.561],[0.849,0],[0.543,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0]],"o":[[0.543,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0],[-0.544,0.561],[0,0.85],[0.543,0.561],[0.849,0]],"v":[[-353.773,-367.498],[-352.957,-369.615],[-353.773,-371.68],[-355.864,-372.522],[-357.955,-371.68],[-358.771,-369.615],[-357.955,-367.498],[-355.864,-366.657]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.479],[1.41,0.918],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.665],[-0.816,-1.479],[-1.411,-0.918],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.543,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[-325.06,-337.587],[-325.06,-352.632],[-326.284,-357.349],[-329.625,-360.945],[-334.495,-362.322],[-339.442,-361.072],[-342.859,-357.681],[-344.083,-352.785],[-342.196,-351.714],[-341.38,-354.978],[-339.136,-357.222],[-335.872,-358.038],[-331.41,-356.253],[-329.701,-351.714],[-329.701,-337.587]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-342.196,-337.587],[-342.196,-361.812],[-346.786,-361.812],[-346.786,-337.587]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.462,0.765],[-0.885,1.36],[-0.102,1.734],[0,0],[0.9,1.344],[1.461,0.765],[1.836,0],[1.767,-1.122],[1.037,-1.904],[0,-2.379],[-1.038,-1.904],[-1.768,-1.104],[-2.211,0]],"o":[[1.461,-0.765],[0.884,-1.359],[0,0],[-0.102,-1.767],[-0.901,-1.343],[-1.462,-0.765],[-2.211,0],[-1.768,1.122],[-1.038,1.905],[0,2.38],[1.037,1.905],[1.767,1.105],[1.869,0]],"v":[[-303.64,-338.224],[-300.121,-341.412],[-298.642,-346.053],[-298.642,-353.346],[-300.147,-358.012],[-303.691,-361.174],[-308.638,-362.322],[-314.605,-360.639],[-318.812,-356.1],[-320.368,-349.674],[-318.812,-343.248],[-314.605,-338.734],[-308.638,-337.077]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.173,0.697],[0.663,1.258],[0,1.632],[-0.663,1.242],[-1.156,0.697],[-1.53,0],[-1.156,-0.714],[-0.646,-1.241],[0,-1.632],[0.645,-1.241],[1.155,-0.714],[1.53,0]],"o":[[-1.173,-0.696],[-0.663,-1.257],[0,-1.632],[0.663,-1.241],[1.155,-0.696],[1.53,0],[1.155,0.714],[0.645,1.242],[0,1.599],[-0.646,1.242],[-1.156,0.714],[-1.497,0]],"v":[[-311.876,-342.457],[-314.631,-345.39],[-315.625,-349.725],[-314.631,-354.034],[-311.902,-356.941],[-307.873,-357.987],[-303.844,-356.916],[-301.141,-353.983],[-300.172,-349.674],[-301.141,-345.415],[-303.844,-342.483],[-307.873,-341.412]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-295.837,-374.001],[-300.478,-374.001],[-300.478,-355.896],[-299.611,-350.031],[-300.478,-344.115],[-300.478,-337.587],[-295.837,-337.587]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.615,1.326],[0,2.278],[0.629,0.918],[0.986,0.544],[1.088,0.324],[1.002,0.306],[0.612,0.442],[0,0.816],[-0.697,0.477],[-1.326,0],[-0.987,-0.476],[-0.714,-0.884],[0,0],[1.479,0.663],[1.904,0],[1.292,-0.578],[0.696,-1.071],[0,-1.461],[-0.63,-0.9],[-0.987,-0.51],[-1.105,-0.306],[-0.987,-0.323],[-0.63,-0.492],[0,-0.884],[0.782,-0.492],[1.428,0],[1.155,0.528],[0.884,1.089],[0,0],[-1.003,-0.663],[-1.224,-0.357],[-1.36,0]],"o":[[1.614,-1.326],[0,-1.496],[-0.63,-0.918],[-0.987,-0.543],[-1.089,-0.323],[-1.003,-0.306],[-0.612,-0.441],[0,-0.782],[0.696,-0.476],[1.257,0],[0.986,0.477],[0,0],[-0.952,-1.326],[-1.479,-0.663],[-1.803,0],[-1.293,0.579],[-0.697,1.071],[0,1.462],[0.629,0.901],[0.986,0.51],[1.104,0.306],[0.986,0.324],[0.629,0.493],[0,0.885],[-0.783,0.493],[-1.428,0],[-1.156,-0.527],[0,0],[0.747,0.918],[1.002,0.663],[1.224,0.357],[2.72,0]],"v":[[-274.953,-339.066],[-272.53,-344.472],[-273.474,-348.093],[-275.896,-350.286],[-279.007,-351.586],[-282.144,-352.53],[-284.566,-353.652],[-285.484,-355.539],[-284.439,-357.426],[-281.404,-358.14],[-278.038,-357.426],[-275.488,-355.386],[-272.53,-358.344],[-276.177,-361.327],[-281.251,-362.322],[-285.892,-361.455],[-288.876,-358.981],[-289.921,-355.182],[-288.978,-351.637],[-286.555,-349.521],[-283.419,-348.297],[-280.282,-347.353],[-277.86,-346.129],[-276.916,-344.064],[-278.089,-341.998],[-281.404,-341.259],[-285.28,-342.049],[-288.34,-344.472],[-291.298,-341.514],[-288.672,-339.142],[-285.331,-337.612],[-281.455,-337.077]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-246.112,-337.383],[-234.79,-361.812],[-239.89,-361.812],[-248.101,-342.687],[-246.469,-342.687],[-254.272,-361.812],[-259.372,-361.812],[-248.866,-337.383]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-250.702,-327.438],[-246.112,-337.383],[-248.713,-342.075],[-255.802,-327.438]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,1.122],[-1.122,1.921],[0,2.38],[1.122,1.905],[1.92,1.105],[2.379,0],[1.904,-1.122],[1.122,-1.887],[0,-2.346],[-1.122,-1.92],[-1.905,-1.122],[-2.346,0]],"o":[[1.92,-1.122],[1.122,-1.92],[0,-2.346],[-1.122,-1.904],[-1.921,-1.104],[-2.346,0],[-1.905,1.122],[-1.122,1.887],[0,2.38],[1.122,1.921],[1.904,1.122],[2.379,0]],"v":[[-214.466,-338.76],[-209.902,-343.324],[-208.219,-349.776],[-209.902,-356.151],[-214.466,-360.664],[-220.918,-362.322],[-227.293,-360.639],[-231.832,-356.125],[-233.515,-349.776],[-231.832,-343.324],[-227.293,-338.76],[-220.918,-337.077]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.68,1.242],[0,1.599],[-0.681,1.224],[-1.191,0.697],[-1.497,0],[-1.173,-0.696],[-0.697,-1.224],[0,-1.563],[0.68,-1.241],[1.19,-0.714],[1.563,0]],"o":[[-1.191,-0.714],[-0.681,-1.241],[0,-1.563],[0.68,-1.224],[1.19,-0.696],[1.563,0],[1.173,0.697],[0.696,1.224],[0,1.599],[-0.681,1.242],[-1.191,0.714],[-1.497,0]],"v":[[-224.947,-342.585],[-227.752,-345.517],[-228.772,-349.776],[-227.752,-353.958],[-224.947,-356.839],[-220.918,-357.885],[-216.812,-356.839],[-214.007,-353.958],[-212.962,-349.776],[-213.982,-345.517],[-216.787,-342.585],[-220.918,-341.514]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.564,0.867],[-0.885,1.599],[0,2.109],[0,0],[0,0],[0,0],[1.02,-1.139],[1.802,0],[0.884,0.51],[0.459,0.969],[0,1.326],[0,0],[0,0],[0,0],[-0.885,-1.598],[-1.581,-0.867],[-2.007,0]],"o":[[1.563,-0.867],[0.884,-1.598],[0,0],[0,0],[0,0],[0,2.007],[-1.02,1.14],[-1.191,0],[-0.885,-0.51],[-0.459,-0.969],[0,0],[0,0],[0,0],[0,2.109],[0.884,1.599],[1.581,0.867],[2.006,0]],"v":[[-187.972,-338.479],[-184.3,-342.177],[-182.974,-347.736],[-182.974,-361.812],[-187.564,-361.812],[-187.564,-347.94],[-189.094,-343.222],[-193.327,-341.514],[-196.438,-342.279],[-198.452,-344.497],[-199.141,-347.94],[-199.141,-361.812],[-203.731,-361.812],[-203.731,-347.736],[-202.405,-342.177],[-198.707,-338.479],[-193.327,-337.179]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.462,0.765],[-0.867,1.36],[-0.102,1.734],[0,0],[0.884,1.344],[1.445,0.765],[1.836,0],[1.785,-1.122],[1.037,-1.904],[0,-2.379],[-1.038,-1.904],[-1.785,-1.104],[-2.244,0]],"o":[[1.461,-0.765],[0.867,-1.359],[0,0],[-0.102,-1.767],[-0.885,-1.343],[-1.446,-0.765],[-2.244,0],[-1.785,1.122],[-1.038,1.905],[0,2.38],[1.037,1.905],[1.785,1.105],[1.836,0]],"v":[[-150.997,-338.224],[-147.503,-341.412],[-146.05,-346.053],[-146.05,-353.346],[-147.529,-358.012],[-151.022,-361.174],[-155.944,-362.322],[-161.988,-360.639],[-166.221,-356.1],[-167.776,-349.674],[-166.221,-343.248],[-161.988,-338.734],[-155.944,-337.077]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.663,1.242],[0,1.632],[-0.663,1.242],[-1.173,0.714],[-1.53,0],[-1.14,-0.696],[-0.646,-1.257],[0,-1.632],[1.394,-1.547],[2.277,0]],"o":[[-1.191,-0.714],[-0.663,-1.241],[0,-1.598],[0.663,-1.241],[1.173,-0.714],[1.53,0],[1.139,0.697],[0.645,1.258],[0,2.415],[-1.395,1.548],[-1.53,0]],"v":[[-159.259,-342.483],[-162.038,-345.415],[-163.033,-349.725],[-162.038,-353.983],[-159.285,-356.916],[-155.23,-357.987],[-151.227,-356.941],[-148.549,-354.009],[-147.58,-349.674],[-149.671,-343.732],[-155.179,-341.412]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-143.245,-337.587],[-143.245,-361.812],[-147.886,-361.812],[-147.886,-355.896],[-147.019,-350.031],[-147.886,-344.115],[-147.886,-337.587]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.479],[1.41,0.918],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.665],[-0.816,-1.479],[-1.411,-0.918],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.543,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[-114.838,-337.587],[-114.838,-352.632],[-116.062,-357.349],[-119.402,-360.945],[-124.273,-362.322],[-129.22,-361.072],[-132.637,-357.681],[-133.861,-352.785],[-131.974,-351.714],[-131.158,-354.978],[-128.914,-357.222],[-125.65,-358.038],[-121.188,-356.253],[-119.479,-351.714],[-119.479,-337.587]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-131.974,-337.587],[-131.974,-361.812],[-136.564,-361.812],[-136.564,-337.587]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.462,0.765],[-0.885,1.36],[-0.102,1.734],[0,0],[0.9,1.344],[1.461,0.765],[1.836,0],[1.767,-1.122],[1.037,-1.904],[0,-2.379],[-1.038,-1.904],[-1.768,-1.104],[-2.211,0]],"o":[[1.461,-0.765],[0.884,-1.359],[0,0],[-0.102,-1.767],[-0.901,-1.343],[-1.462,-0.765],[-2.211,0],[-1.768,1.122],[-1.038,1.905],[0,2.38],[1.037,1.905],[1.767,1.105],[1.869,0]],"v":[[-93.418,-338.224],[-89.899,-341.412],[-88.42,-346.053],[-88.42,-353.346],[-89.924,-358.012],[-93.469,-361.174],[-98.416,-362.322],[-104.383,-360.639],[-108.59,-356.1],[-110.146,-349.674],[-108.59,-343.248],[-104.383,-338.734],[-98.416,-337.077]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.173,0.697],[0.663,1.258],[0,1.632],[-0.663,1.242],[-1.156,0.697],[-1.53,0],[-1.156,-0.714],[-0.646,-1.241],[0,-1.632],[0.645,-1.241],[1.155,-0.714],[1.53,0]],"o":[[-1.173,-0.696],[-0.663,-1.257],[0,-1.632],[0.663,-1.241],[1.155,-0.696],[1.53,0],[1.155,0.714],[0.645,1.242],[0,1.599],[-0.646,1.242],[-1.156,0.714],[-1.497,0]],"v":[[-101.654,-342.457],[-104.408,-345.39],[-105.403,-349.725],[-104.408,-354.034],[-101.68,-356.941],[-97.651,-357.987],[-93.622,-356.916],[-90.919,-353.983],[-89.95,-349.674],[-90.919,-345.415],[-93.622,-342.483],[-97.651,-341.412]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-85.615,-374.001],[-90.256,-374.001],[-90.256,-355.896],[-89.389,-350.031],[-90.256,-344.115],[-90.256,-337.587],[-85.615,-337.587]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.615,0.714],[-1.122,1.293],[0,0],[1.071,-0.459],[1.292,0],[1.19,0.714],[0.68,1.224],[0,1.599],[-0.681,1.224],[-1.191,0.697],[-1.53,0],[-1.089,-0.459],[-0.748,-0.884],[0,0],[1.598,0.697],[1.869,0],[1.92,-1.104],[1.104,-1.904],[0,-2.379],[-1.105,-1.92],[-1.921,-1.122],[-2.38,0]],"o":[[1.614,-0.714],[0,0],[-0.783,0.885],[-1.071,0.459],[-1.53,0],[-1.191,-0.714],[-0.681,-1.224],[0,-1.598],[0.68,-1.224],[1.19,-0.696],[1.257,0],[1.088,0.459],[0,0],[-1.156,-1.326],[-1.599,-0.696],[-2.38,0],[-1.921,1.105],[-1.105,1.905],[0,2.346],[1.104,1.921],[1.92,1.122],[1.869,0]],"v":[[-52.083,-338.148],[-47.977,-341.157],[-50.986,-344.217],[-53.766,-342.202],[-57.31,-341.514],[-61.39,-342.585],[-64.195,-345.492],[-65.215,-349.725],[-64.195,-353.958],[-61.39,-356.839],[-57.31,-357.885],[-53.791,-357.196],[-51.037,-355.182],[-47.977,-358.242],[-52.108,-361.276],[-57.31,-362.322],[-63.762,-360.664],[-68.301,-356.151],[-69.958,-349.725],[-68.301,-343.324],[-63.762,-338.76],[-57.31,-337.077]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,1.122],[-1.122,1.921],[0,2.38],[1.122,1.905],[1.92,1.105],[2.379,0],[1.904,-1.122],[1.122,-1.887],[0,-2.346],[-1.122,-1.92],[-1.905,-1.122],[-2.346,0]],"o":[[1.92,-1.122],[1.122,-1.92],[0,-2.346],[-1.122,-1.904],[-1.921,-1.104],[-2.346,0],[-1.905,1.122],[-1.122,1.887],[0,2.38],[1.122,1.921],[1.904,1.122],[2.379,0]],"v":[[-26.43,-338.76],[-21.865,-343.324],[-20.182,-349.776],[-21.865,-356.151],[-26.43,-360.664],[-32.881,-362.322],[-39.256,-360.639],[-43.795,-356.125],[-45.478,-349.776],[-43.795,-343.324],[-39.256,-338.76],[-32.881,-337.077]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.68,1.242],[0,1.599],[-0.681,1.224],[-1.191,0.697],[-1.497,0],[-1.173,-0.696],[-0.697,-1.224],[0,-1.563],[0.68,-1.241],[1.19,-0.714],[1.563,0]],"o":[[-1.191,-0.714],[-0.681,-1.241],[0,-1.563],[0.68,-1.224],[1.19,-0.696],[1.563,0],[1.173,0.697],[0.696,1.224],[0,1.599],[-0.681,1.242],[-1.191,0.714],[-1.497,0]],"v":[[-36.91,-342.585],[-39.715,-345.517],[-40.735,-349.776],[-39.715,-353.958],[-36.91,-356.839],[-32.881,-357.885],[-28.775,-356.839],[-25.971,-353.958],[-24.925,-349.776],[-25.945,-345.517],[-28.75,-342.585],[-32.881,-341.514]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.564,0.867],[-0.885,1.599],[0,2.109],[0,0],[0,0],[0,0],[1.02,-1.139],[1.802,0],[0.884,0.51],[0.459,0.969],[0,1.326],[0,0],[0,0],[0,0],[-0.885,-1.598],[-1.581,-0.867],[-2.007,0]],"o":[[1.563,-0.867],[0.884,-1.598],[0,0],[0,0],[0,0],[0,2.007],[-1.02,1.14],[-1.191,0],[-0.885,-0.51],[-0.459,-0.969],[0,0],[0,0],[0,0],[0,2.109],[0.884,1.599],[1.581,0.867],[2.006,0]],"v":[[0.065,-338.479],[3.737,-342.177],[5.063,-347.736],[5.063,-361.812],[0.473,-361.812],[0.473,-347.94],[-1.057,-343.222],[-5.29,-341.514],[-8.401,-342.279],[-10.415,-344.497],[-11.104,-347.94],[-11.104,-361.812],[-15.694,-361.812],[-15.694,-347.736],[-14.368,-342.177],[-10.671,-338.479],[-5.29,-337.179]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[15.824,-337.587],[15.824,-374.001],[11.234,-374.001],[11.234,-337.587]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.462,0.765],[-0.885,1.36],[-0.102,1.734],[0,0],[0.9,1.344],[1.461,0.765],[1.836,0],[1.767,-1.122],[1.037,-1.904],[0,-2.379],[-1.038,-1.904],[-1.768,-1.104],[-2.211,0]],"o":[[1.461,-0.765],[0.884,-1.359],[0,0],[-0.102,-1.767],[-0.901,-1.343],[-1.462,-0.765],[-2.211,0],[-1.768,1.122],[-1.038,1.905],[0,2.38],[1.037,1.905],[1.767,1.105],[1.869,0]],"v":[[37.754,-338.224],[41.273,-341.412],[42.752,-346.053],[42.752,-353.346],[41.248,-358.012],[37.703,-361.174],[32.756,-362.322],[26.789,-360.639],[22.581,-356.1],[21.026,-349.674],[22.581,-343.248],[26.789,-338.734],[32.756,-337.077]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.173,0.697],[0.663,1.258],[0,1.632],[-0.663,1.242],[-1.156,0.697],[-1.53,0],[-1.156,-0.714],[-0.646,-1.241],[0,-1.632],[0.645,-1.241],[1.155,-0.714],[1.53,0]],"o":[[-1.173,-0.696],[-0.663,-1.257],[0,-1.632],[0.663,-1.241],[1.155,-0.696],[1.53,0],[1.155,0.714],[0.645,1.242],[0,1.599],[-0.646,1.242],[-1.156,0.714],[-1.497,0]],"v":[[29.518,-342.457],[26.764,-345.39],[25.769,-349.725],[26.764,-354.034],[29.492,-356.941],[33.521,-357.987],[37.55,-356.916],[40.253,-353.983],[41.222,-349.674],[40.253,-345.415],[37.55,-342.483],[33.521,-341.412]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[45.557,-374.001],[40.916,-374.001],[40.916,-355.896],[41.783,-350.031],[40.916,-344.115],[40.916,-337.587],[45.557,-337.587]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.462],[1.41,0.816],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.904],[-0.816,-1.461],[-1.411,-0.816],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.543,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[84.521,-337.587],[84.521,-352.632],[83.297,-357.681],[79.956,-361.098],[75.086,-362.322],[70.139,-361.072],[66.722,-357.681],[65.498,-352.785],[67.385,-351.714],[68.201,-354.978],[70.445,-357.222],[73.709,-358.038],[78.171,-356.253],[79.88,-351.714],[79.88,-337.587]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[67.385,-337.587],[67.385,-374.001],[62.795,-374.001],[62.795,-337.587]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.666,0.714],[-1.191,1.36],[0,0],[1.139,-0.476],[1.359,0],[1.257,0.697],[0.68,1.275],[0,1.701],[-0.646,1.224],[-1.191,0.681],[-1.564,0],[-1.054,-0.629],[-0.579,-1.139],[0,-1.632],[0,0],[0,0],[0,0],[0,0],[-0.034,0.391],[0,0.34],[0.969,1.803],[1.734,1.02],[2.21,0],[1.887,-1.104],[1.104,-1.904],[0,-2.379],[-1.122,-1.904],[-1.921,-1.104],[-2.448,0]],"o":[[1.665,-0.714],[0,0],[-0.816,0.952],[-1.14,0.477],[-1.632,0],[-1.258,-0.696],[-0.681,-1.275],[0,-1.665],[0.645,-1.224],[1.19,-0.68],[1.496,0],[1.053,0.63],[0.578,1.14],[0,0],[0,0],[0,0],[0,0],[0.102,-0.476],[0.033,-0.39],[0,-2.312],[-0.969,-1.802],[-1.734,-1.02],[-2.346,0],[-1.887,1.105],[-1.105,1.905],[0,2.415],[1.122,1.905],[1.92,1.105],[1.904,0]],"v":[[107.318,-338.148],[111.602,-341.259],[108.644,-344.268],[105.712,-342.126],[101.963,-341.412],[97.628,-342.457],[94.721,-345.415],[93.701,-349.878],[94.67,-354.213],[97.424,-357.069],[101.555,-358.089],[105.38,-357.145],[107.828,-354.493],[108.695,-350.337],[110.378,-351.816],[92.375,-351.816],[92.375,-347.991],[112.826,-347.991],[113.03,-349.291],[113.081,-350.388],[111.628,-356.559],[107.573,-360.792],[101.657,-362.322],[95.308,-360.664],[90.82,-356.151],[89.162,-349.725],[90.845,-343.248],[95.41,-338.734],[101.963,-337.077]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[122.669,-337.587],[122.669,-374.001],[118.079,-374.001],[118.079,-337.587]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.785,1.105],[-1.02,1.905],[0,2.38],[1.02,1.905],[1.785,1.122],[2.21,0],[1.479,-0.765],[0.9,-1.343],[0.102,-1.767],[0,0],[-0.885,-1.359],[-1.479,-0.765],[-1.836,0]],"o":[[1.785,-1.104],[1.02,-1.904],[0,-2.379],[-1.02,-1.904],[-1.785,-1.122],[-1.803,0],[-1.479,0.765],[-0.901,1.344],[0,0],[0.102,1.734],[0.884,1.36],[1.479,0.765],[2.21,0]],"v":[[148.143,-338.734],[152.351,-343.248],[153.881,-349.674],[152.351,-356.1],[148.143,-360.639],[142.151,-362.322],[137.229,-361.174],[133.659,-358.012],[132.155,-353.346],[132.155,-346.053],[133.634,-341.412],[137.178,-338.224],[142.151,-337.077]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[133.991,-327.438],[133.991,-343.656],[133.124,-349.572],[133.991,-355.437],[133.991,-361.812],[129.401,-361.812],[129.401,-327.438]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[1.173,0.714],[0.629,1.242],[0,1.599],[-0.646,1.242],[-1.156,0.714],[-1.497,0],[-1.156,-0.714],[-0.663,-1.241],[0,-1.598],[0.663,-1.241],[1.155,-0.714],[1.53,0]],"o":[[-1.173,-0.714],[-0.63,-1.241],[0,-1.632],[0.645,-1.241],[1.155,-0.714],[1.53,0],[1.155,0.714],[0.663,1.242],[0,1.632],[-0.663,1.242],[-1.156,0.714],[-1.497,0]],"v":[[137.382,-342.483],[134.679,-345.415],[133.736,-349.674],[134.705,-353.983],[137.408,-356.916],[141.386,-357.987],[145.415,-356.916],[148.143,-353.983],[149.138,-349.725],[148.143,-345.415],[145.415,-342.483],[141.386,-341.412]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[177.953,-337.587],[177.953,-371.961],[173.363,-371.961],[173.363,-337.587]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[183.92,-357.63],[183.92,-361.812],[167.396,-361.812],[167.396,-357.63]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,1.122],[-1.122,1.921],[0,2.38],[1.122,1.905],[1.92,1.105],[2.379,0],[1.904,-1.122],[1.122,-1.887],[0,-2.346],[-1.122,-1.92],[-1.905,-1.122],[-2.346,0]],"o":[[1.92,-1.122],[1.122,-1.92],[0,-2.346],[-1.122,-1.904],[-1.921,-1.104],[-2.346,0],[-1.905,1.122],[-1.122,1.887],[0,2.38],[1.122,1.921],[1.904,1.122],[2.379,0]],"v":[[205.11,-338.76],[209.675,-343.324],[211.358,-349.776],[209.675,-356.151],[205.11,-360.664],[198.659,-362.322],[192.284,-360.639],[187.745,-356.125],[186.062,-349.776],[187.745,-343.324],[192.284,-338.76],[198.659,-337.077]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.68,1.242],[0,1.599],[-0.681,1.224],[-1.191,0.697],[-1.497,0],[-1.173,-0.696],[-0.697,-1.224],[0,-1.563],[0.68,-1.241],[1.19,-0.714],[1.563,0]],"o":[[-1.191,-0.714],[-0.681,-1.241],[0,-1.563],[0.68,-1.224],[1.19,-0.696],[1.563,0],[1.173,0.697],[0.696,1.224],[0,1.599],[-0.681,1.242],[-1.191,0.714],[-1.497,0]],"v":[[194.63,-342.585],[191.825,-345.517],[190.805,-349.776],[191.825,-353.958],[194.63,-356.839],[198.659,-357.885],[202.764,-356.839],[205.569,-353.958],[206.615,-349.776],[205.595,-345.517],[202.79,-342.585],[198.659,-341.514]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.785,1.105],[-1.02,1.905],[0,2.38],[1.02,1.905],[1.785,1.122],[2.21,0],[1.479,-0.765],[0.9,-1.343],[0.102,-1.767],[0,0],[-0.885,-1.359],[-1.479,-0.765],[-1.836,0]],"o":[[1.785,-1.104],[1.02,-1.904],[0,-2.379],[-1.02,-1.904],[-1.785,-1.122],[-1.803,0],[-1.479,0.765],[-0.901,1.344],[0,0],[0.102,1.734],[0.884,1.36],[1.479,0.765],[2.21,0]],"v":[[245.757,-338.734],[249.965,-343.248],[251.495,-349.674],[249.965,-356.1],[245.757,-360.639],[239.765,-362.322],[234.843,-361.174],[231.273,-358.012],[229.769,-353.346],[229.769,-346.053],[231.248,-341.412],[234.792,-338.224],[239.765,-337.077]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[231.605,-337.587],[231.605,-344.115],[230.738,-350.031],[231.605,-355.896],[231.605,-374.001],[227.015,-374.001],[227.015,-337.587]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[1.173,0.714],[0.629,1.242],[0,1.599],[-0.646,1.242],[-1.156,0.714],[-1.497,0],[-1.156,-0.714],[-0.663,-1.241],[0,-1.598],[0.663,-1.241],[1.155,-0.714],[1.53,0]],"o":[[-1.173,-0.714],[-0.63,-1.241],[0,-1.632],[0.645,-1.241],[1.155,-0.714],[1.53,0],[1.155,0.714],[0.663,1.242],[0,1.632],[-0.663,1.242],[-1.156,0.714],[-1.497,0]],"v":[[234.996,-342.483],[232.293,-345.415],[231.35,-349.674],[232.319,-353.983],[235.022,-356.916],[239,-357.987],[243.029,-356.916],[245.757,-353.983],[246.752,-349.725],[245.757,-345.415],[243.029,-342.483],[239,-341.412]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[261.287,-337.587],[261.287,-361.812],[256.697,-361.812],[256.697,-337.587]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.089,1.089],[-1.701,0],[-0.612,-0.237],[-0.51,-0.543],[0,0],[0.986,0.426],[1.224,0],[1.428,-1.836],[0,-3.093],[0,0]],"o":[[1.088,-1.088],[0.816,0],[0.612,0.238],[0,0],[-0.85,-0.986],[-0.987,-0.425],[-2.686,0],[-1.428,1.836],[0,0],[0,-2.244]],"v":[[262.919,-356.355],[267.101,-357.987],[269.243,-357.63],[270.926,-356.457],[273.935,-359.568],[271.181,-361.684],[267.866,-362.322],[261.695,-359.568],[259.553,-352.173],[261.287,-351.357]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[281.789,-337.587],[281.789,-361.812],[277.148,-361.812],[277.148,-337.587]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.544,0.561],[0,0.85],[0.543,0.561],[0.849,0],[0.543,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0]],"o":[[0.543,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0],[-0.544,0.561],[0,0.85],[0.543,0.561],[0.849,0]],"v":[[281.585,-367.498],[282.401,-369.615],[281.585,-371.68],[279.494,-372.522],[277.403,-371.68],[276.587,-369.615],[277.403,-367.498],[279.494,-366.657]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.479],[1.41,0.918],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.665],[-0.816,-1.479],[-1.411,-0.918],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.543,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[310.298,-337.587],[310.298,-352.632],[309.074,-357.349],[305.733,-360.945],[300.863,-362.322],[295.916,-361.072],[292.499,-357.681],[291.275,-352.785],[293.162,-351.714],[293.978,-354.978],[296.222,-357.222],[299.486,-358.038],[303.948,-356.253],[305.657,-351.714],[305.657,-337.587]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[293.162,-337.587],[293.162,-361.812],[288.572,-361.812],[288.572,-337.587]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,0.969],[-1.071,1.751],[0,2.312],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.461,-1.309],[2.448,0],[1.359,0.663],[0.986,1.257],[0,0],[-1.905,-0.918],[-2.517,0]],"o":[[1.92,-0.969],[1.071,-1.752],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,2.21],[-1.462,1.308],[-1.87,0],[-1.36,-0.663],[0,0],[1.19,1.665],[1.904,0.918],[2.516,0]],"v":[[333.222,-328.381],[337.71,-332.461],[339.317,-338.556],[339.317,-361.812],[334.727,-361.812],[334.727,-355.437],[335.543,-350.031],[334.727,-344.574],[334.727,-338.556],[332.534,-333.277],[326.669,-331.314],[321.824,-332.308],[318.305,-335.19],[315.296,-332.181],[319.937,-328.305],[326.567,-326.928]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.462,0.748],[-0.867,1.344],[-0.102,1.768],[0,0],[0.849,1.344],[1.479,0.748],[1.904,0],[1.767,-1.071],[1.002,-1.818],[0,-2.312],[-1.02,-1.853],[-1.752,-1.053],[-2.211,0]],"o":[[1.461,-0.747],[0.867,-1.343],[0,0],[-0.102,-1.802],[-0.85,-1.343],[-1.479,-0.747],[-2.176,0],[-1.768,1.071],[-1.003,1.819],[0,2.313],[1.02,1.854],[1.751,1.054],[1.869,0]],"v":[[331.565,-339.117],[335.058,-342.253],[336.512,-346.92],[336.512,-353.346],[335.084,-358.063],[331.59,-361.2],[326.516,-362.322],[320.6,-360.715],[316.443,-356.38],[314.939,-350.184],[316.469,-343.936],[320.625,-339.576],[326.567,-337.995]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[1.173,0.663],[0.663,1.191],[0,1.53],[-0.663,1.173],[-1.156,0.663],[-1.53,0],[-1.14,-0.663],[-0.63,-1.173],[0,-1.563],[0.629,-1.173],[1.122,-0.645],[1.53,0]],"o":[[-1.173,-0.663],[-0.663,-1.19],[0,-1.53],[0.663,-1.173],[1.155,-0.663],[1.496,0],[1.139,0.663],[0.629,1.173],[0,1.564],[-0.63,1.173],[-1.122,0.646],[-1.497,0]],"v":[[323.43,-343.324],[320.676,-346.104],[319.682,-350.184],[320.676,-354.238],[323.405,-356.992],[327.434,-357.987],[331.386,-356.992],[334.038,-354.238],[334.982,-350.133],[334.038,-346.027],[331.412,-343.299],[327.434,-342.33]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.462,0.765],[-0.867,1.36],[-0.102,1.734],[0,0],[0.884,1.344],[1.445,0.765],[1.836,0],[1.785,-1.122],[1.037,-1.904],[0,-2.379],[-1.038,-1.904],[-1.785,-1.104],[-2.244,0]],"o":[[1.461,-0.765],[0.867,-1.359],[0,0],[-0.102,-1.767],[-0.885,-1.343],[-1.446,-0.765],[-2.244,0],[-1.785,1.122],[-1.038,1.905],[0,2.38],[1.037,1.905],[1.785,1.105],[1.836,0]],"v":[[371.804,-338.224],[375.297,-341.412],[376.751,-346.053],[376.751,-353.346],[375.272,-358.012],[371.778,-361.174],[366.857,-362.322],[360.813,-360.639],[356.58,-356.1],[355.025,-349.674],[356.58,-343.248],[360.813,-338.734],[366.857,-337.077]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.663,1.242],[0,1.632],[-0.663,1.242],[-1.173,0.714],[-1.53,0],[-1.14,-0.696],[-0.646,-1.257],[0,-1.632],[1.394,-1.547],[2.277,0]],"o":[[-1.191,-0.714],[-0.663,-1.241],[0,-1.598],[0.663,-1.241],[1.173,-0.714],[1.53,0],[1.139,0.697],[0.645,1.258],[0,2.415],[-1.395,1.548],[-1.53,0]],"v":[[363.542,-342.483],[360.762,-345.415],[359.768,-349.725],[360.762,-353.983],[363.516,-356.916],[367.571,-357.987],[371.574,-356.941],[374.252,-354.009],[375.221,-349.674],[373.13,-343.732],[367.622,-341.412]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[379.556,-337.587],[379.556,-361.812],[374.915,-361.812],[374.915,-355.896],[375.782,-350.031],[374.915,-344.115],[374.915,-337.587]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[395.723,-337.587],[402.761,-355.845],[401.078,-355.845],[408.065,-337.587],[410.768,-337.587],[420.305,-361.812],[415.511,-361.812],[408.575,-342.942],[410.105,-342.942],[403.22,-361.812],[400.568,-361.812],[393.683,-342.942],[395.213,-342.942],[388.277,-361.812],[383.483,-361.812],[393.02,-337.587]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.462,0.765],[-0.867,1.36],[-0.102,1.734],[0,0],[0.884,1.344],[1.445,0.765],[1.836,0],[1.785,-1.122],[1.037,-1.904],[0,-2.379],[-1.038,-1.904],[-1.785,-1.104],[-2.244,0]],"o":[[1.461,-0.765],[0.867,-1.359],[0,0],[-0.102,-1.767],[-0.885,-1.343],[-1.446,-0.765],[-2.244,0],[-1.785,1.122],[-1.038,1.905],[0,2.38],[1.037,1.905],[1.785,1.105],[1.836,0]],"v":[[438.92,-338.224],[442.413,-341.412],[443.867,-346.053],[443.867,-353.346],[442.388,-358.012],[438.894,-361.174],[433.973,-362.322],[427.929,-360.639],[423.696,-356.1],[422.141,-349.674],[423.696,-343.248],[427.929,-338.734],[433.973,-337.077]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.663,1.242],[0,1.632],[-0.663,1.242],[-1.173,0.714],[-1.53,0],[-1.14,-0.696],[-0.646,-1.257],[0,-1.632],[1.394,-1.547],[2.277,0]],"o":[[-1.191,-0.714],[-0.663,-1.241],[0,-1.598],[0.663,-1.241],[1.173,-0.714],[1.53,0],[1.139,0.697],[0.645,1.258],[0,2.415],[-1.395,1.548],[-1.53,0]],"v":[[430.658,-342.483],[427.878,-345.415],[426.884,-349.725],[427.878,-353.983],[430.632,-356.916],[434.687,-357.987],[438.69,-356.941],[441.368,-354.009],[442.337,-349.674],[440.246,-343.732],[434.738,-341.412]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[446.672,-337.587],[446.672,-361.812],[442.031,-361.812],[442.031,-355.896],[442.898,-350.031],[442.031,-344.115],[442.031,-337.587]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[457.943,-337.587],[457.943,-361.812],[453.353,-361.812],[453.353,-337.587]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.089,1.089],[-1.701,0],[-0.612,-0.237],[-0.51,-0.543],[0,0],[0.986,0.426],[1.224,0],[1.428,-1.836],[0,-3.093],[0,0]],"o":[[1.088,-1.088],[0.816,0],[0.612,0.238],[0,0],[-0.85,-0.986],[-0.987,-0.425],[-2.686,0],[-1.428,1.836],[0,0],[0,-2.244]],"v":[[459.575,-356.355],[463.757,-357.987],[465.899,-357.63],[467.582,-356.457],[470.591,-359.568],[467.837,-361.684],[464.522,-362.322],[458.351,-359.568],[456.209,-352.173],[457.943,-351.357]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.666,0.714],[-1.191,1.36],[0,0],[1.139,-0.476],[1.359,0],[1.257,0.697],[0.68,1.275],[0,1.701],[-0.646,1.224],[-1.191,0.681],[-1.564,0],[-1.054,-0.629],[-0.579,-1.139],[0,-1.632],[0,0],[0,0],[0,0],[0,0],[-0.034,0.391],[0,0.34],[0.969,1.803],[1.734,1.02],[2.21,0],[1.887,-1.104],[1.104,-1.904],[0,-2.379],[-1.122,-1.904],[-1.921,-1.104],[-2.448,0]],"o":[[1.665,-0.714],[0,0],[-0.816,0.952],[-1.14,0.477],[-1.632,0],[-1.258,-0.696],[-0.681,-1.275],[0,-1.665],[0.645,-1.224],[1.19,-0.68],[1.496,0],[1.053,0.63],[0.578,1.14],[0,0],[0,0],[0,0],[0,0],[0.102,-0.476],[0.033,-0.39],[0,-2.312],[-0.969,-1.802],[-1.734,-1.02],[-2.346,0],[-1.887,1.105],[-1.105,1.905],[0,2.415],[1.122,1.905],[1.92,1.105],[1.904,0]],"v":[[489.614,-338.148],[493.898,-341.259],[490.94,-344.268],[488.007,-342.126],[484.259,-341.412],[479.924,-342.457],[477.017,-345.415],[475.997,-349.878],[476.966,-354.213],[479.72,-357.069],[483.851,-358.089],[487.676,-357.145],[490.124,-354.493],[490.991,-350.337],[492.674,-351.816],[474.671,-351.816],[474.671,-347.991],[495.122,-347.991],[495.326,-349.291],[495.377,-350.388],[493.923,-356.559],[489.869,-360.792],[483.953,-362.322],[477.603,-360.664],[473.115,-356.151],[471.458,-349.725],[473.141,-343.248],[477.705,-338.734],[484.259,-337.077]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.479],[1.41,0.918],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.665],[-0.816,-1.479],[-1.411,-0.918],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.543,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[522.101,-337.587],[522.101,-352.632],[520.877,-357.349],[517.537,-360.945],[512.666,-362.322],[507.719,-361.072],[504.302,-357.681],[503.078,-352.785],[504.965,-351.714],[505.781,-354.978],[508.025,-357.222],[511.289,-358.038],[515.752,-356.253],[517.46,-351.714],[517.46,-337.587]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[504.965,-337.587],[504.965,-361.812],[500.375,-361.812],[500.375,-337.587]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.666,0.714],[-1.19,1.36],[0,0],[1.139,-0.476],[1.359,0],[1.258,0.697],[0.68,1.275],[0,1.701],[-0.646,1.224],[-1.191,0.681],[-1.564,0],[-1.054,-0.629],[-0.578,-1.139],[0,-1.632],[0,0],[0,0],[0,0],[0,0],[-0.034,0.391],[0,0.34],[0.969,1.803],[1.734,1.02],[2.21,0],[1.887,-1.104],[1.104,-1.904],[0,-2.379],[-1.122,-1.904],[-1.921,-1.104],[-2.448,0]],"o":[[1.665,-0.714],[0,0],[-0.816,0.952],[-1.14,0.477],[-1.632,0],[-1.258,-0.696],[-0.681,-1.275],[0,-1.665],[0.645,-1.224],[1.19,-0.68],[1.496,0],[1.053,0.63],[0.578,1.14],[0,0],[0,0],[0,0],[0,0],[0.102,-0.476],[0.033,-0.39],[0,-2.312],[-0.969,-1.802],[-1.734,-1.02],[-2.346,0],[-1.887,1.105],[-1.105,1.905],[0,2.415],[1.122,1.905],[1.92,1.105],[1.904,0]],"v":[[544.898,-338.148],[549.182,-341.259],[546.224,-344.268],[543.292,-342.126],[539.543,-341.412],[535.208,-342.457],[532.301,-345.415],[531.281,-349.878],[532.25,-354.213],[535.004,-357.069],[539.135,-358.089],[542.96,-357.145],[545.408,-354.493],[546.275,-350.337],[547.958,-351.816],[529.955,-351.816],[529.955,-347.991],[550.406,-347.991],[550.61,-349.291],[550.661,-350.388],[549.208,-356.559],[545.153,-360.792],[539.237,-362.322],[532.888,-360.664],[528.4,-356.151],[526.742,-349.725],[528.425,-343.248],[532.99,-338.734],[539.543,-337.077]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.615,1.326],[0,2.278],[0.629,0.918],[0.986,0.544],[1.088,0.324],[1.003,0.306],[0.612,0.442],[0,0.816],[-0.697,0.477],[-1.326,0],[-0.987,-0.476],[-0.714,-0.884],[0,0],[1.479,0.663],[1.904,0],[1.292,-0.578],[0.696,-1.071],[0,-1.461],[-0.63,-0.9],[-0.987,-0.51],[-1.105,-0.306],[-0.987,-0.323],[-0.63,-0.492],[0,-0.884],[0.782,-0.492],[1.428,0],[1.155,0.528],[0.884,1.089],[0,0],[-1.003,-0.663],[-1.224,-0.357],[-1.36,0]],"o":[[1.614,-1.326],[0,-1.496],[-0.63,-0.918],[-0.987,-0.543],[-1.089,-0.323],[-1.003,-0.306],[-0.612,-0.441],[0,-0.782],[0.696,-0.476],[1.258,0],[0.986,0.477],[0,0],[-0.952,-1.326],[-1.479,-0.663],[-1.803,0],[-1.293,0.579],[-0.697,1.071],[0,1.462],[0.629,0.901],[0.986,0.51],[1.104,0.306],[0.986,0.324],[0.629,0.493],[0,0.885],[-0.783,0.493],[-1.428,0],[-1.156,-0.527],[0,0],[0.747,0.918],[1.002,0.663],[1.224,0.357],[2.72,0]],"v":[[569.862,-339.066],[572.285,-344.472],[571.341,-348.093],[568.919,-350.286],[565.808,-351.586],[562.671,-352.53],[560.249,-353.652],[559.331,-355.539],[560.376,-357.426],[563.411,-358.14],[566.777,-357.426],[569.327,-355.386],[572.285,-358.344],[568.638,-361.327],[563.564,-362.322],[558.923,-361.455],[555.939,-358.981],[554.894,-355.182],[555.837,-351.637],[558.26,-349.521],[561.396,-348.297],[564.533,-347.353],[566.955,-346.129],[567.899,-344.064],[566.726,-341.998],[563.411,-341.259],[559.535,-342.049],[556.475,-344.472],[553.517,-341.514],[556.143,-339.142],[559.484,-337.612],[563.36,-337.077]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.615,1.326],[0,2.278],[0.629,0.918],[0.986,0.544],[1.088,0.324],[1.003,0.306],[0.612,0.442],[0,0.816],[-0.697,0.477],[-1.326,0],[-0.987,-0.476],[-0.714,-0.884],[0,0],[1.479,0.663],[1.904,0],[1.292,-0.578],[0.696,-1.071],[0,-1.461],[-0.63,-0.9],[-0.987,-0.51],[-1.105,-0.306],[-0.987,-0.323],[-0.63,-0.492],[0,-0.884],[0.782,-0.492],[1.428,0],[1.155,0.528],[0.884,1.089],[0,0],[-1.003,-0.663],[-1.224,-0.357],[-1.36,0]],"o":[[1.614,-1.326],[0,-1.496],[-0.63,-0.918],[-0.987,-0.543],[-1.089,-0.323],[-1.003,-0.306],[-0.612,-0.441],[0,-0.782],[0.696,-0.476],[1.258,0],[0.986,0.477],[0,0],[-0.952,-1.326],[-1.479,-0.663],[-1.803,0],[-1.293,0.579],[-0.697,1.071],[0,1.462],[0.629,0.901],[0.986,0.51],[1.104,0.306],[0.986,0.324],[0.629,0.493],[0,0.885],[-0.783,0.493],[-1.428,0],[-1.156,-0.527],[0,0],[0.747,0.918],[1.002,0.663],[1.224,0.357],[2.72,0]],"v":[[591.639,-339.066],[594.062,-344.472],[593.118,-348.093],[590.696,-350.286],[587.585,-351.586],[584.448,-352.53],[582.026,-353.652],[581.108,-355.539],[582.153,-357.426],[585.188,-358.14],[588.554,-357.426],[591.104,-355.386],[594.062,-358.344],[590.415,-361.327],[585.341,-362.322],[580.7,-361.455],[577.716,-358.981],[576.671,-355.182],[577.614,-351.637],[580.037,-349.521],[583.173,-348.297],[586.31,-347.353],[588.732,-346.129],[589.676,-344.064],[588.503,-341.998],[585.188,-341.259],[581.312,-342.049],[578.252,-344.472],[575.294,-341.514],[577.92,-339.142],[581.261,-337.612],[585.137,-337.077]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[618.083,-337.587],[618.083,-371.961],[613.493,-371.961],[613.493,-337.587]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[624.05,-357.63],[624.05,-361.812],[607.526,-361.812],[607.526,-357.63]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,1.122],[-1.122,1.921],[0,2.38],[1.122,1.905],[1.92,1.105],[2.379,0],[1.904,-1.122],[1.122,-1.887],[0,-2.346],[-1.122,-1.92],[-1.905,-1.122],[-2.346,0]],"o":[[1.92,-1.122],[1.122,-1.92],[0,-2.346],[-1.122,-1.904],[-1.921,-1.104],[-2.346,0],[-1.905,1.122],[-1.122,1.887],[0,2.38],[1.122,1.921],[1.904,1.122],[2.379,0]],"v":[[645.24,-338.76],[649.805,-343.324],[651.488,-349.776],[649.805,-356.151],[645.24,-360.664],[638.789,-362.322],[632.414,-360.639],[627.875,-356.125],[626.192,-349.776],[627.875,-343.324],[632.414,-338.76],[638.789,-337.077]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.68,1.242],[0,1.599],[-0.68,1.224],[-1.191,0.697],[-1.497,0],[-1.173,-0.696],[-0.697,-1.224],[0,-1.563],[0.68,-1.241],[1.19,-0.714],[1.563,0]],"o":[[-1.191,-0.714],[-0.68,-1.241],[0,-1.563],[0.68,-1.224],[1.19,-0.696],[1.563,0],[1.173,0.697],[0.696,1.224],[0,1.599],[-0.681,1.242],[-1.191,0.714],[-1.497,0]],"v":[[634.76,-342.585],[631.955,-345.517],[630.935,-349.776],[631.955,-353.958],[634.76,-356.839],[638.789,-357.885],[642.894,-356.839],[645.699,-353.958],[646.745,-349.776],[645.725,-345.517],[642.92,-342.585],[638.789,-341.514]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-823.993,-276.387],[-823.993,-300.612],[-828.634,-300.612],[-828.634,-276.387]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.544,0.561],[0,0.85],[0.544,0.561],[0.849,0],[0.544,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0]],"o":[[0.544,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0],[-0.544,0.561],[0,0.85],[0.544,0.561],[0.849,0]],"v":[[-824.197,-306.298],[-823.381,-308.415],[-824.197,-310.48],[-826.288,-311.322],[-828.379,-310.48],[-829.195,-308.415],[-828.379,-306.298],[-826.288,-305.457]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.479],[1.41,0.918],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.665],[-0.816,-1.479],[-1.411,-0.918],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.544,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[-795.484,-276.387],[-795.484,-291.432],[-796.708,-296.149],[-800.048,-299.745],[-804.919,-301.122],[-809.866,-299.872],[-813.283,-296.481],[-814.507,-291.585],[-812.62,-290.514],[-811.804,-293.778],[-809.56,-296.022],[-806.296,-296.838],[-801.833,-295.053],[-800.125,-290.514],[-800.125,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-812.62,-276.387],[-812.62,-300.612],[-817.21,-300.612],[-817.21,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-781.255,-276.387],[-781.255,-310.761],[-785.845,-310.761],[-785.845,-276.387]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-775.288,-296.43],[-775.288,-300.612],[-791.812,-300.612],[-791.812,-296.43]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.666,0.714],[-1.19,1.36],[0,0],[1.139,-0.476],[1.359,0],[1.258,0.697],[0.68,1.275],[0,1.701],[-0.646,1.224],[-1.191,0.681],[-1.564,0],[-1.054,-0.629],[-0.578,-1.139],[0,-1.632],[0,0],[0,0],[0,0],[0,0],[-0.034,0.391],[0,0.34],[0.969,1.803],[1.734,1.02],[2.21,0],[1.887,-1.104],[1.104,-1.904],[0,-2.379],[-1.122,-1.904],[-1.921,-1.104],[-2.448,0]],"o":[[1.665,-0.714],[0,0],[-0.816,0.952],[-1.14,0.477],[-1.632,0],[-1.258,-0.696],[-0.681,-1.275],[0,-1.665],[0.645,-1.224],[1.19,-0.68],[1.496,0],[1.053,0.63],[0.578,1.14],[0,0],[0,0],[0,0],[0,0],[0.102,-0.476],[0.033,-0.39],[0,-2.312],[-0.969,-1.802],[-1.734,-1.02],[-2.346,0],[-1.887,1.105],[-1.105,1.905],[0,2.415],[1.122,1.905],[1.92,1.105],[1.904,0]],"v":[[-754.99,-276.948],[-750.706,-280.059],[-753.664,-283.068],[-756.597,-280.926],[-760.345,-280.212],[-764.68,-281.257],[-767.587,-284.215],[-768.607,-288.678],[-767.638,-293.013],[-764.884,-295.869],[-760.753,-296.889],[-756.928,-295.945],[-754.48,-293.293],[-753.613,-289.137],[-751.93,-290.616],[-769.933,-290.616],[-769.933,-286.791],[-749.482,-286.791],[-749.278,-288.091],[-749.227,-289.188],[-750.681,-295.359],[-754.735,-299.592],[-760.651,-301.122],[-767.001,-299.464],[-771.489,-294.951],[-773.146,-288.525],[-771.463,-282.048],[-766.899,-277.534],[-760.345,-275.877]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-739.639,-276.387],[-739.639,-300.612],[-744.229,-300.612],[-744.229,-276.387]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.089,1.089],[-1.701,0],[-0.612,-0.237],[-0.51,-0.543],[0,0],[0.986,0.426],[1.224,0],[1.428,-1.836],[0,-3.093],[0,0]],"o":[[1.088,-1.088],[0.816,0],[0.612,0.238],[0,0],[-0.85,-0.986],[-0.987,-0.425],[-2.686,0],[-1.428,1.836],[0,0],[0,-2.244]],"v":[[-738.007,-295.155],[-733.825,-296.787],[-731.683,-296.43],[-730,-295.257],[-726.991,-298.368],[-729.745,-300.484],[-733.06,-301.122],[-739.231,-298.368],[-741.373,-290.973],[-739.639,-290.157]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.479],[1.41,0.918],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.665],[-0.816,-1.479],[-1.411,-0.918],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.544,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[-701.95,-276.387],[-701.95,-291.432],[-703.174,-296.149],[-706.514,-299.745],[-711.385,-301.122],[-716.332,-299.872],[-719.749,-296.481],[-720.973,-291.585],[-719.086,-290.514],[-718.27,-293.778],[-716.026,-296.022],[-712.762,-296.838],[-708.299,-295.053],[-706.591,-290.514],[-706.591,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-719.086,-276.387],[-719.086,-300.612],[-723.676,-300.612],[-723.676,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.462,0.765],[-0.867,1.36],[-0.102,1.734],[0,0],[0.884,1.344],[1.445,0.765],[1.836,0],[1.785,-1.122],[1.037,-1.904],[0,-2.379],[-1.038,-1.904],[-1.785,-1.104],[-2.244,0]],"o":[[1.461,-0.765],[0.867,-1.359],[0,0],[-0.102,-1.767],[-0.885,-1.343],[-1.445,-0.765],[-2.244,0],[-1.785,1.122],[-1.038,1.905],[0,2.38],[1.037,1.905],[1.785,1.105],[1.836,0]],"v":[[-680.479,-277.024],[-676.985,-280.212],[-675.532,-284.853],[-675.532,-292.146],[-677.011,-296.812],[-680.505,-299.974],[-685.426,-301.122],[-691.469,-299.439],[-695.703,-294.9],[-697.258,-288.474],[-695.703,-282.048],[-691.469,-277.534],[-685.426,-275.877]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.663,1.242],[0,1.632],[-0.663,1.242],[-1.173,0.714],[-1.53,0],[-1.14,-0.696],[-0.646,-1.257],[0,-1.632],[1.394,-1.547],[2.277,0]],"o":[[-1.191,-0.714],[-0.663,-1.241],[0,-1.598],[0.663,-1.241],[1.173,-0.714],[1.53,0],[1.139,0.697],[0.646,1.258],[0,2.415],[-1.395,1.548],[-1.53,0]],"v":[[-688.741,-281.283],[-691.521,-284.215],[-692.515,-288.525],[-691.521,-292.783],[-688.766,-295.716],[-684.712,-296.787],[-680.708,-295.741],[-678.031,-292.809],[-677.062,-288.474],[-679.153,-282.532],[-684.661,-280.212]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-672.727,-276.387],[-672.727,-300.612],[-677.368,-300.612],[-677.368,-294.696],[-676.501,-288.831],[-677.368,-282.915],[-677.368,-276.387]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-657.835,-276.387],[-657.835,-310.761],[-662.425,-310.761],[-662.425,-276.387]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-651.868,-296.43],[-651.868,-300.612],[-668.392,-300.612],[-668.392,-296.43]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-642.739,-276.387],[-642.739,-300.612],[-647.38,-300.612],[-647.38,-276.387]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.544,0.561],[0,0.85],[0.544,0.561],[0.849,0],[0.544,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0]],"o":[[0.544,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0],[-0.544,0.561],[0,0.85],[0.544,0.561],[0.849,0]],"v":[[-642.943,-306.298],[-642.127,-308.415],[-642.943,-310.48],[-645.034,-311.322],[-647.125,-310.48],[-647.941,-308.415],[-647.125,-306.298],[-645.034,-305.457]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,1.122],[-1.122,1.921],[0,2.38],[1.122,1.905],[1.92,1.105],[2.379,0],[1.904,-1.122],[1.122,-1.887],[0,-2.346],[-1.122,-1.92],[-1.905,-1.122],[-2.346,0]],"o":[[1.92,-1.122],[1.122,-1.92],[0,-2.346],[-1.122,-1.904],[-1.921,-1.104],[-2.346,0],[-1.905,1.122],[-1.122,1.887],[0,2.38],[1.122,1.921],[1.904,1.122],[2.379,0]],"v":[[-618.489,-277.56],[-613.924,-282.124],[-612.241,-288.576],[-613.924,-294.951],[-618.489,-299.464],[-624.94,-301.122],[-631.315,-299.439],[-635.854,-294.925],[-637.537,-288.576],[-635.854,-282.124],[-631.315,-277.56],[-624.94,-275.877]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.68,1.242],[0,1.599],[-0.68,1.224],[-1.191,0.697],[-1.497,0],[-1.173,-0.696],[-0.697,-1.224],[0,-1.563],[0.68,-1.241],[1.19,-0.714],[1.563,0]],"o":[[-1.191,-0.714],[-0.68,-1.241],[0,-1.563],[0.68,-1.224],[1.19,-0.696],[1.563,0],[1.173,0.697],[0.696,1.224],[0,1.599],[-0.681,1.242],[-1.191,0.714],[-1.497,0]],"v":[[-628.969,-281.385],[-631.774,-284.317],[-632.794,-288.576],[-631.774,-292.758],[-628.969,-295.639],[-624.94,-296.685],[-620.835,-295.639],[-618.03,-292.758],[-616.984,-288.576],[-618.004,-284.317],[-620.809,-281.385],[-624.94,-280.314]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.479],[1.41,0.918],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.665],[-0.816,-1.479],[-1.411,-0.918],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.544,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[-585.415,-276.387],[-585.415,-291.432],[-586.639,-296.149],[-589.979,-299.745],[-594.85,-301.122],[-599.797,-299.872],[-603.214,-296.481],[-604.438,-291.585],[-602.551,-290.514],[-601.735,-293.778],[-599.491,-296.022],[-596.227,-296.838],[-591.765,-295.053],[-590.056,-290.514],[-590.056,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-602.551,-276.387],[-602.551,-300.612],[-607.141,-300.612],[-607.141,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.462,0.765],[-0.867,1.36],[-0.102,1.734],[0,0],[0.884,1.344],[1.445,0.765],[1.836,0],[1.785,-1.122],[1.037,-1.904],[0,-2.379],[-1.038,-1.904],[-1.785,-1.104],[-2.244,0]],"o":[[1.461,-0.765],[0.867,-1.359],[0,0],[-0.102,-1.767],[-0.885,-1.343],[-1.445,-0.765],[-2.244,0],[-1.785,1.122],[-1.038,1.905],[0,2.38],[1.037,1.905],[1.785,1.105],[1.836,0]],"v":[[-563.944,-277.024],[-560.451,-280.212],[-558.997,-284.853],[-558.997,-292.146],[-560.476,-296.812],[-563.97,-299.974],[-568.891,-301.122],[-574.935,-299.439],[-579.168,-294.9],[-580.723,-288.474],[-579.168,-282.048],[-574.935,-277.534],[-568.891,-275.877]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.663,1.242],[0,1.632],[-0.663,1.242],[-1.173,0.714],[-1.53,0],[-1.14,-0.696],[-0.646,-1.257],[0,-1.632],[1.394,-1.547],[2.277,0]],"o":[[-1.191,-0.714],[-0.663,-1.241],[0,-1.598],[0.663,-1.241],[1.173,-0.714],[1.53,0],[1.139,0.697],[0.646,1.258],[0,2.415],[-1.395,1.548],[-1.53,0]],"v":[[-572.206,-281.283],[-574.986,-284.215],[-575.98,-288.525],[-574.986,-292.783],[-572.232,-295.716],[-568.177,-296.787],[-564.174,-295.741],[-561.496,-292.809],[-560.527,-288.474],[-562.618,-282.532],[-568.126,-280.212]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-556.192,-276.387],[-556.192,-300.612],[-560.833,-300.612],[-560.833,-294.696],[-559.966,-288.831],[-560.833,-282.915],[-560.833,-276.387]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-544.921,-276.387],[-544.921,-312.801],[-549.511,-312.801],[-549.511,-276.387]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.799,0.834],[-1.462,0],[-0.544,-0.237],[-0.442,-0.476],[0,0],[1.02,0.477],[1.394,0],[1.394,-0.782],[0.782,-1.359],[0,-1.767],[0,0]],"o":[[0,0],[0,-1.496],[0.798,-0.833],[0.782,0],[0.543,0.238],[0,0],[-0.85,-0.918],[-1.02,-0.476],[-1.836,0],[-1.395,0.783],[-0.783,1.36],[0,0],[0,0]],"v":[[-519.574,-276.387],[-519.574,-304.233],[-518.376,-307.726],[-514.984,-308.976],[-512.995,-308.619],[-511.516,-307.548],[-508.507,-310.506],[-511.312,-312.597],[-514.933,-313.311],[-519.778,-312.138],[-523.042,-308.925],[-524.215,-304.233],[-524.215,-276.387]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-511.873,-296.43],[-511.873,-300.612],[-530.131,-300.612],[-530.131,-296.43]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.666,0.714],[-1.191,1.36],[0,0],[1.139,-0.476],[1.359,0],[1.257,0.697],[0.68,1.275],[0,1.701],[-0.646,1.224],[-1.191,0.681],[-1.564,0],[-1.054,-0.629],[-0.579,-1.139],[0,-1.632],[0,0],[0,0],[0,0],[0,0],[-0.034,0.391],[0,0.34],[0.969,1.803],[1.734,1.02],[2.21,0],[1.887,-1.104],[1.104,-1.904],[0,-2.379],[-1.122,-1.904],[-1.921,-1.104],[-2.448,0]],"o":[[1.665,-0.714],[0,0],[-0.816,0.952],[-1.14,0.477],[-1.632,0],[-1.258,-0.696],[-0.681,-1.275],[0,-1.665],[0.645,-1.224],[1.19,-0.68],[1.496,0],[1.053,0.63],[0.578,1.14],[0,0],[0,0],[0,0],[0,0],[0.102,-0.476],[0.033,-0.39],[0,-2.312],[-0.969,-1.802],[-1.734,-1.02],[-2.346,0],[-1.887,1.105],[-1.105,1.905],[0,2.415],[1.122,1.905],[1.92,1.105],[1.904,0]],"v":[[-492.085,-276.948],[-487.801,-280.059],[-490.759,-283.068],[-493.691,-280.926],[-497.44,-280.212],[-501.775,-281.257],[-504.682,-284.215],[-505.702,-288.678],[-504.733,-293.013],[-501.979,-295.869],[-497.848,-296.889],[-494.023,-295.945],[-491.575,-293.293],[-490.708,-289.137],[-489.025,-290.616],[-507.028,-290.616],[-507.028,-286.791],[-486.577,-286.791],[-486.373,-288.091],[-486.322,-289.188],[-487.776,-295.359],[-491.83,-299.592],[-497.746,-301.122],[-504.095,-299.464],[-508.583,-294.951],[-510.241,-288.525],[-508.558,-282.048],[-503.993,-277.534],[-497.44,-275.877]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-476.734,-276.387],[-476.734,-312.801],[-481.324,-312.801],[-481.324,-276.387]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-465.412,-276.387],[-465.412,-312.801],[-470.002,-312.801],[-470.002,-276.387]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,1.122],[-1.122,1.921],[0,2.38],[1.122,1.905],[1.92,1.105],[2.379,0],[1.904,-1.122],[1.122,-1.887],[0,-2.346],[-1.122,-1.92],[-1.905,-1.122],[-2.346,0]],"o":[[1.92,-1.122],[1.122,-1.92],[0,-2.346],[-1.122,-1.904],[-1.921,-1.104],[-2.346,0],[-1.905,1.122],[-1.122,1.887],[0,2.38],[1.122,1.921],[1.904,1.122],[2.379,0]],"v":[[-441.213,-277.56],[-436.648,-282.124],[-434.965,-288.576],[-436.648,-294.951],[-441.213,-299.464],[-447.664,-301.122],[-454.039,-299.439],[-458.578,-294.925],[-460.261,-288.576],[-458.578,-282.124],[-454.039,-277.56],[-447.664,-275.877]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.68,1.242],[0,1.599],[-0.681,1.224],[-1.191,0.697],[-1.497,0],[-1.173,-0.696],[-0.697,-1.224],[0,-1.563],[0.68,-1.241],[1.19,-0.714],[1.563,0]],"o":[[-1.191,-0.714],[-0.681,-1.241],[0,-1.563],[0.68,-1.224],[1.19,-0.696],[1.563,0],[1.173,0.697],[0.696,1.224],[0,1.599],[-0.681,1.242],[-1.191,0.714],[-1.497,0]],"v":[[-451.693,-281.385],[-454.498,-284.317],[-455.518,-288.576],[-454.498,-292.758],[-451.693,-295.639],[-447.664,-296.685],[-443.559,-295.639],[-440.754,-292.758],[-439.708,-288.576],[-440.728,-284.317],[-443.533,-281.385],[-447.664,-280.314]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-420.991,-276.387],[-413.953,-294.645],[-415.636,-294.645],[-408.649,-276.387],[-405.946,-276.387],[-396.409,-300.612],[-401.203,-300.612],[-408.139,-281.742],[-406.609,-281.742],[-413.494,-300.612],[-416.146,-300.612],[-423.031,-281.742],[-421.501,-281.742],[-428.437,-300.612],[-433.231,-300.612],[-423.694,-276.387]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.615,1.326],[0,2.278],[0.629,0.918],[0.986,0.544],[1.088,0.324],[1.002,0.306],[0.612,0.442],[0,0.816],[-0.697,0.477],[-1.326,0],[-0.987,-0.476],[-0.714,-0.884],[0,0],[1.479,0.663],[1.904,0],[1.292,-0.578],[0.696,-1.071],[0,-1.461],[-0.63,-0.9],[-0.987,-0.51],[-1.105,-0.306],[-0.987,-0.323],[-0.63,-0.492],[0,-0.884],[0.782,-0.492],[1.428,0],[1.155,0.528],[0.884,1.089],[0,0],[-1.003,-0.663],[-1.224,-0.357],[-1.36,0]],"o":[[1.614,-1.326],[0,-1.496],[-0.63,-0.918],[-0.987,-0.543],[-1.089,-0.323],[-1.003,-0.306],[-0.612,-0.441],[0,-0.782],[0.696,-0.476],[1.257,0],[0.986,0.477],[0,0],[-0.952,-1.326],[-1.479,-0.663],[-1.803,0],[-1.293,0.579],[-0.697,1.071],[0,1.462],[0.629,0.901],[0.986,0.51],[1.104,0.306],[0.986,0.324],[0.629,0.493],[0,0.885],[-0.783,0.493],[-1.428,0],[-1.156,-0.527],[0,0],[0.747,0.918],[1.002,0.663],[1.224,0.357],[2.72,0]],"v":[[-378.738,-277.866],[-376.315,-283.272],[-377.259,-286.893],[-379.681,-289.086],[-382.792,-290.386],[-385.928,-291.33],[-388.351,-292.452],[-389.269,-294.339],[-388.224,-296.226],[-385.189,-296.94],[-381.823,-296.226],[-379.273,-294.186],[-376.315,-297.144],[-379.962,-300.127],[-385.036,-301.122],[-389.677,-300.255],[-392.66,-297.781],[-393.706,-293.982],[-392.763,-290.437],[-390.34,-288.321],[-387.203,-287.097],[-384.067,-286.153],[-381.645,-284.929],[-380.701,-282.864],[-381.874,-280.798],[-385.189,-280.059],[-389.065,-280.849],[-392.125,-283.272],[-395.083,-280.314],[-392.457,-277.942],[-389.116,-276.412],[-385.24,-275.877]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-356.017,-276.387],[-356.017,-300.612],[-360.607,-300.612],[-360.607,-276.387]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.089,1.089],[-1.701,0],[-0.612,-0.237],[-0.51,-0.543],[0,0],[0.986,0.426],[1.224,0],[1.428,-1.836],[0,-3.093],[0,0]],"o":[[1.088,-1.088],[0.816,0],[0.612,0.238],[0,0],[-0.85,-0.986],[-0.987,-0.425],[-2.686,0],[-1.428,1.836],[0,0],[0,-2.244]],"v":[[-354.385,-295.155],[-350.203,-296.787],[-348.061,-296.43],[-346.378,-295.257],[-343.369,-298.368],[-346.123,-300.484],[-349.438,-301.122],[-355.609,-298.368],[-357.751,-290.973],[-356.017,-290.157]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.666,0.714],[-1.191,1.36],[0,0],[1.139,-0.476],[1.359,0],[1.257,0.697],[0.68,1.275],[0,1.701],[-0.646,1.224],[-1.191,0.681],[-1.564,0],[-1.054,-0.629],[-0.579,-1.139],[0,-1.632],[0,0],[0,0],[0,0],[0,0],[-0.034,0.391],[0,0.34],[0.969,1.803],[1.734,1.02],[2.21,0],[1.887,-1.104],[1.104,-1.904],[0,-2.379],[-1.122,-1.904],[-1.921,-1.104],[-2.448,0]],"o":[[1.665,-0.714],[0,0],[-0.816,0.952],[-1.14,0.477],[-1.632,0],[-1.258,-0.696],[-0.681,-1.275],[0,-1.665],[0.645,-1.224],[1.19,-0.68],[1.496,0],[1.053,0.63],[0.578,1.14],[0,0],[0,0],[0,0],[0,0],[0.102,-0.476],[0.033,-0.39],[0,-2.312],[-0.969,-1.802],[-1.734,-1.02],[-2.346,0],[-1.887,1.105],[-1.105,1.905],[0,2.415],[1.122,1.905],[1.92,1.105],[1.904,0]],"v":[[-324.346,-276.948],[-320.062,-280.059],[-323.02,-283.068],[-325.953,-280.926],[-329.701,-280.212],[-334.036,-281.257],[-336.943,-284.215],[-337.963,-288.678],[-336.994,-293.013],[-334.24,-295.869],[-330.109,-296.889],[-326.284,-295.945],[-323.836,-293.293],[-322.969,-289.137],[-321.286,-290.616],[-339.289,-290.616],[-339.289,-286.791],[-318.838,-286.791],[-318.634,-288.091],[-318.583,-289.188],[-320.037,-295.359],[-324.091,-299.592],[-330.007,-301.122],[-336.357,-299.464],[-340.845,-294.951],[-342.502,-288.525],[-340.819,-282.048],[-336.255,-277.534],[-329.701,-275.877]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,0.969],[-1.071,1.751],[0,2.312],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.461,-1.309],[2.448,0],[1.359,0.663],[0.986,1.257],[0,0],[-1.905,-0.918],[-2.517,0]],"o":[[1.92,-0.969],[1.071,-1.752],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,2.21],[-1.462,1.308],[-1.87,0],[-1.36,-0.663],[0,0],[1.19,1.665],[1.904,0.918],[2.516,0]],"v":[[-296.882,-267.181],[-292.395,-271.261],[-290.788,-277.356],[-290.788,-300.612],[-295.378,-300.612],[-295.378,-294.237],[-294.562,-288.831],[-295.378,-283.374],[-295.378,-277.356],[-297.571,-272.077],[-303.436,-270.114],[-308.281,-271.108],[-311.8,-273.99],[-314.809,-270.981],[-310.168,-267.105],[-303.538,-265.728]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.462,0.748],[-0.867,1.344],[-0.102,1.768],[0,0],[0.849,1.344],[1.479,0.748],[1.904,0],[1.767,-1.071],[1.002,-1.818],[0,-2.312],[-1.02,-1.853],[-1.752,-1.053],[-2.211,0]],"o":[[1.461,-0.747],[0.867,-1.343],[0,0],[-0.102,-1.802],[-0.85,-1.343],[-1.479,-0.747],[-2.176,0],[-1.768,1.071],[-1.003,1.819],[0,2.313],[1.02,1.854],[1.751,1.054],[1.869,0]],"v":[[-298.54,-277.917],[-295.046,-281.053],[-293.593,-285.72],[-293.593,-292.146],[-295.021,-296.863],[-298.514,-300],[-303.589,-301.122],[-309.505,-299.515],[-313.661,-295.18],[-315.166,-288.984],[-313.636,-282.736],[-309.479,-278.376],[-303.538,-276.795]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[1.173,0.663],[0.663,1.191],[0,1.53],[-0.663,1.173],[-1.156,0.663],[-1.53,0],[-1.14,-0.663],[-0.63,-1.173],[0,-1.563],[0.629,-1.173],[1.122,-0.645],[1.53,0]],"o":[[-1.173,-0.663],[-0.663,-1.19],[0,-1.53],[0.663,-1.173],[1.155,-0.663],[1.496,0],[1.139,0.663],[0.629,1.173],[0,1.564],[-0.63,1.173],[-1.122,0.646],[-1.497,0]],"v":[[-306.674,-282.124],[-309.428,-284.904],[-310.423,-288.984],[-309.428,-293.038],[-306.7,-295.792],[-302.671,-296.787],[-298.718,-295.792],[-296.066,-293.038],[-295.123,-288.933],[-296.066,-284.827],[-298.693,-282.099],[-302.671,-281.13]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.462,0.765],[-0.867,1.36],[-0.102,1.734],[0,0],[0.884,1.344],[1.445,0.765],[1.836,0],[1.785,-1.122],[1.037,-1.904],[0,-2.379],[-1.038,-1.904],[-1.785,-1.104],[-2.244,0]],"o":[[1.461,-0.765],[0.867,-1.359],[0,0],[-0.102,-1.767],[-0.885,-1.343],[-1.446,-0.765],[-2.244,0],[-1.785,1.122],[-1.038,1.905],[0,2.38],[1.037,1.905],[1.785,1.105],[1.836,0]],"v":[[-268.858,-277.024],[-265.365,-280.212],[-263.911,-284.853],[-263.911,-292.146],[-265.39,-296.812],[-268.884,-299.974],[-273.805,-301.122],[-279.849,-299.439],[-284.082,-294.9],[-285.637,-288.474],[-284.082,-282.048],[-279.849,-277.534],[-273.805,-275.877]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.663,1.242],[0,1.632],[-0.663,1.242],[-1.173,0.714],[-1.53,0],[-1.14,-0.696],[-0.646,-1.257],[0,-1.632],[1.394,-1.547],[2.277,0]],"o":[[-1.191,-0.714],[-0.663,-1.241],[0,-1.598],[0.663,-1.241],[1.173,-0.714],[1.53,0],[1.139,0.697],[0.645,1.258],[0,2.415],[-1.395,1.548],[-1.53,0]],"v":[[-277.12,-281.283],[-279.9,-284.215],[-280.894,-288.525],[-279.9,-292.783],[-277.146,-295.716],[-273.091,-296.787],[-269.088,-295.741],[-266.41,-292.809],[-265.441,-288.474],[-267.532,-282.532],[-273.04,-280.212]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-261.106,-276.387],[-261.106,-300.612],[-265.747,-300.612],[-265.747,-294.696],[-264.88,-288.831],[-265.747,-282.915],[-265.747,-276.387]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-249.835,-276.387],[-249.835,-300.612],[-254.425,-300.612],[-254.425,-276.387]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.089,1.089],[-1.701,0],[-0.612,-0.237],[-0.51,-0.543],[0,0],[0.986,0.426],[1.224,0],[1.428,-1.836],[0,-3.093],[0,0]],"o":[[1.088,-1.088],[0.816,0],[0.612,0.238],[0,0],[-0.85,-0.986],[-0.987,-0.425],[-2.686,0],[-1.428,1.836],[0,0],[0,-2.244]],"v":[[-248.203,-295.155],[-244.021,-296.787],[-241.879,-296.43],[-240.196,-295.257],[-237.187,-298.368],[-239.941,-300.484],[-243.256,-301.122],[-249.427,-298.368],[-251.569,-290.973],[-249.835,-290.157]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.462,0.765],[-0.885,1.36],[-0.102,1.734],[0,0],[0.9,1.344],[1.461,0.765],[1.836,0],[1.767,-1.122],[1.037,-1.904],[0,-2.379],[-1.038,-1.904],[-1.768,-1.104],[-2.211,0]],"o":[[1.461,-0.765],[0.884,-1.359],[0,0],[-0.102,-1.767],[-0.901,-1.343],[-1.462,-0.765],[-2.211,0],[-1.768,1.122],[-1.038,1.905],[0,2.38],[1.037,1.905],[1.767,1.105],[1.869,0]],"v":[[-219.541,-277.024],[-216.022,-280.212],[-214.543,-284.853],[-214.543,-292.146],[-216.048,-296.812],[-219.592,-299.974],[-224.539,-301.122],[-230.506,-299.439],[-234.714,-294.9],[-236.269,-288.474],[-234.714,-282.048],[-230.506,-277.534],[-224.539,-275.877]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.173,0.697],[0.663,1.258],[0,1.632],[-0.663,1.242],[-1.156,0.697],[-1.53,0],[-1.156,-0.714],[-0.646,-1.241],[0,-1.632],[0.645,-1.241],[1.155,-0.714],[1.53,0]],"o":[[-1.173,-0.696],[-0.663,-1.257],[0,-1.632],[0.663,-1.241],[1.155,-0.696],[1.53,0],[1.155,0.714],[0.645,1.242],[0,1.599],[-0.646,1.242],[-1.156,0.714],[-1.497,0]],"v":[[-227.778,-281.257],[-230.532,-284.19],[-231.526,-288.525],[-230.532,-292.834],[-227.803,-295.741],[-223.774,-296.787],[-219.745,-295.716],[-217.042,-292.783],[-216.073,-288.474],[-217.042,-284.215],[-219.745,-281.283],[-223.774,-280.212]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-211.738,-312.801],[-216.379,-312.801],[-216.379,-294.696],[-215.512,-288.831],[-216.379,-282.915],[-216.379,-276.387],[-211.738,-276.387]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-200.416,-276.387],[-200.416,-300.612],[-205.057,-300.612],[-205.057,-276.387]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.544,0.561],[0,0.85],[0.543,0.561],[0.849,0],[0.543,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0]],"o":[[0.543,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0],[-0.544,0.561],[0,0.85],[0.543,0.561],[0.849,0]],"v":[[-200.62,-306.298],[-199.804,-308.415],[-200.62,-310.48],[-202.711,-311.322],[-204.802,-310.48],[-205.618,-308.415],[-204.802,-306.298],[-202.711,-305.457]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.479],[1.41,0.918],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.665],[-0.816,-1.479],[-1.411,-0.918],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.543,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[-171.907,-276.387],[-171.907,-291.432],[-173.131,-296.149],[-176.472,-299.745],[-181.342,-301.122],[-186.289,-299.872],[-189.706,-296.481],[-190.93,-291.585],[-189.043,-290.514],[-188.227,-293.778],[-185.983,-296.022],[-182.719,-296.838],[-178.257,-295.053],[-176.548,-290.514],[-176.548,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-189.043,-276.387],[-189.043,-300.612],[-193.633,-300.612],[-193.633,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,0.969],[-1.071,1.751],[0,2.312],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.461,-1.309],[2.448,0],[1.359,0.663],[0.986,1.257],[0,0],[-1.905,-0.918],[-2.517,0]],"o":[[1.92,-0.969],[1.071,-1.752],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,2.21],[-1.462,1.308],[-1.87,0],[-1.36,-0.663],[0,0],[1.19,1.665],[1.904,0.918],[2.516,0]],"v":[[-148.983,-267.181],[-144.495,-271.261],[-142.888,-277.356],[-142.888,-300.612],[-147.478,-300.612],[-147.478,-294.237],[-146.662,-288.831],[-147.478,-283.374],[-147.478,-277.356],[-149.671,-272.077],[-155.536,-270.114],[-160.381,-271.108],[-163.9,-273.99],[-166.909,-270.981],[-162.268,-267.105],[-155.638,-265.728]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.462,0.748],[-0.867,1.344],[-0.102,1.768],[0,0],[0.849,1.344],[1.479,0.748],[1.904,0],[1.767,-1.071],[1.002,-1.818],[0,-2.312],[-1.02,-1.853],[-1.752,-1.053],[-2.211,0]],"o":[[1.461,-0.747],[0.867,-1.343],[0,0],[-0.102,-1.802],[-0.85,-1.343],[-1.479,-0.747],[-2.176,0],[-1.768,1.071],[-1.003,1.819],[0,2.313],[1.02,1.854],[1.751,1.054],[1.869,0]],"v":[[-150.64,-277.917],[-147.147,-281.053],[-145.693,-285.72],[-145.693,-292.146],[-147.121,-296.863],[-150.615,-300],[-155.689,-301.122],[-161.605,-299.515],[-165.762,-295.18],[-167.266,-288.984],[-165.736,-282.736],[-161.58,-278.376],[-155.638,-276.795]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[1.173,0.663],[0.663,1.191],[0,1.53],[-0.663,1.173],[-1.156,0.663],[-1.53,0],[-1.14,-0.663],[-0.63,-1.173],[0,-1.563],[0.629,-1.173],[1.122,-0.645],[1.53,0]],"o":[[-1.173,-0.663],[-0.663,-1.19],[0,-1.53],[0.663,-1.173],[1.155,-0.663],[1.496,0],[1.139,0.663],[0.629,1.173],[0,1.564],[-0.63,1.173],[-1.122,0.646],[-1.497,0]],"v":[[-158.775,-282.124],[-161.529,-284.904],[-162.523,-288.984],[-161.529,-293.038],[-158.8,-295.792],[-154.771,-296.787],[-150.819,-295.792],[-148.167,-293.038],[-147.223,-288.933],[-148.167,-284.827],[-150.793,-282.099],[-154.771,-281.13]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-117.337,-276.387],[-117.337,-310.761],[-121.927,-310.761],[-121.927,-276.387]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-111.37,-296.43],[-111.37,-300.612],[-127.894,-300.612],[-127.894,-296.43]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.462],[1.41,0.816],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.904],[-0.816,-1.461],[-1.411,-0.816],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.543,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[-85.156,-276.387],[-85.156,-291.432],[-86.38,-296.481],[-89.72,-299.898],[-94.591,-301.122],[-99.538,-299.872],[-102.955,-296.481],[-104.179,-291.585],[-102.292,-290.514],[-101.476,-293.778],[-99.232,-296.022],[-95.968,-296.838],[-91.505,-295.053],[-89.797,-290.514],[-89.797,-276.387]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-102.292,-276.387],[-102.292,-312.801],[-106.882,-312.801],[-106.882,-276.387]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.666,0.714],[-1.191,1.36],[0,0],[1.139,-0.476],[1.359,0],[1.257,0.697],[0.68,1.275],[0,1.701],[-0.646,1.224],[-1.191,0.681],[-1.564,0],[-1.054,-0.629],[-0.579,-1.139],[0,-1.632],[0,0],[0,0],[0,0],[0,0],[-0.034,0.391],[0,0.34],[0.969,1.803],[1.734,1.02],[2.21,0],[1.887,-1.104],[1.104,-1.904],[0,-2.379],[-1.122,-1.904],[-1.921,-1.104],[-2.448,0]],"o":[[1.665,-0.714],[0,0],[-0.816,0.952],[-1.14,0.477],[-1.632,0],[-1.258,-0.696],[-0.681,-1.275],[0,-1.665],[0.645,-1.224],[1.19,-0.68],[1.496,0],[1.053,0.63],[0.578,1.14],[0,0],[0,0],[0,0],[0,0],[0.102,-0.476],[0.033,-0.39],[0,-2.312],[-0.969,-1.802],[-1.734,-1.02],[-2.346,0],[-1.887,1.105],[-1.105,1.905],[0,2.415],[1.122,1.905],[1.92,1.105],[1.904,0]],"v":[[-62.359,-276.948],[-58.075,-280.059],[-61.033,-283.068],[-63.965,-280.926],[-67.714,-280.212],[-72.049,-281.257],[-74.956,-284.215],[-75.976,-288.678],[-75.007,-293.013],[-72.253,-295.869],[-68.122,-296.889],[-64.297,-295.945],[-61.849,-293.293],[-60.982,-289.137],[-59.299,-290.616],[-77.302,-290.616],[-77.302,-286.791],[-56.851,-286.791],[-56.647,-288.091],[-56.596,-289.188],[-58.049,-295.359],[-62.104,-299.592],[-68.02,-301.122],[-74.369,-299.464],[-78.857,-294.951],[-80.515,-288.525],[-78.832,-282.048],[-74.267,-277.534],[-67.714,-275.877]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.615,0.714],[-1.122,1.293],[0,0],[1.071,-0.459],[1.292,0],[1.19,0.714],[0.68,1.224],[0,1.599],[-0.681,1.224],[-1.191,0.697],[-1.53,0],[-1.089,-0.459],[-0.748,-0.884],[0,0],[1.598,0.697],[1.869,0],[1.92,-1.104],[1.104,-1.904],[0,-2.379],[-1.105,-1.92],[-1.921,-1.122],[-2.38,0]],"o":[[1.614,-0.714],[0,0],[-0.783,0.885],[-1.071,0.459],[-1.53,0],[-1.191,-0.714],[-0.681,-1.224],[0,-1.598],[0.68,-1.224],[1.19,-0.696],[1.257,0],[1.088,0.459],[0,0],[-1.156,-1.326],[-1.599,-0.696],[-2.38,0],[-1.921,1.105],[-1.105,1.905],[0,2.346],[1.104,1.921],[1.92,1.122],[1.869,0]],"v":[[-24.747,-276.948],[-20.641,-279.957],[-23.65,-283.017],[-26.43,-281.002],[-29.974,-280.314],[-34.054,-281.385],[-36.859,-284.292],[-37.879,-288.525],[-36.859,-292.758],[-34.054,-295.639],[-29.974,-296.685],[-26.455,-295.996],[-23.701,-293.982],[-20.641,-297.042],[-24.772,-300.076],[-29.974,-301.122],[-36.426,-299.464],[-40.965,-294.951],[-42.622,-288.525],[-40.965,-282.124],[-36.426,-277.56],[-29.974,-275.877]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.564,0.867],[-0.885,1.599],[0,2.109],[0,0],[0,0],[0,0],[1.02,-1.139],[1.802,0],[0.884,0.51],[0.459,0.969],[0,1.326],[0,0],[0,0],[0,0],[-0.885,-1.598],[-1.581,-0.867],[-2.007,0]],"o":[[1.563,-0.867],[0.884,-1.598],[0,0],[0,0],[0,0],[0,2.007],[-1.02,1.14],[-1.191,0],[-0.885,-0.51],[-0.459,-0.969],[0,0],[0,0],[0,0],[0,2.109],[0.884,1.599],[1.581,0.867],[2.006,0]],"v":[[-0.955,-277.279],[2.717,-280.977],[4.043,-286.536],[4.043,-300.612],[-0.547,-300.612],[-0.547,-286.74],[-2.077,-282.022],[-6.31,-280.314],[-9.421,-281.079],[-11.436,-283.297],[-12.124,-286.74],[-12.124,-300.612],[-16.714,-300.612],[-16.714,-286.536],[-15.388,-280.977],[-11.691,-277.279],[-6.31,-275.979]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[14.804,-276.387],[14.804,-300.612],[10.214,-300.612],[10.214,-276.387]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.089,1.089],[-1.701,0],[-0.612,-0.237],[-0.51,-0.543],[0,0],[0.986,0.426],[1.224,0],[1.428,-1.836],[0,-3.093],[0,0]],"o":[[1.088,-1.088],[0.816,0],[0.612,0.238],[0,0],[-0.85,-0.986],[-0.987,-0.425],[-2.686,0],[-1.428,1.836],[0,0],[0,-2.244]],"v":[[16.436,-295.155],[20.618,-296.787],[22.76,-296.43],[24.443,-295.257],[27.452,-298.368],[24.698,-300.484],[21.383,-301.122],[15.212,-298.368],[13.07,-290.973],[14.804,-290.157]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[35.357,-276.387],[35.357,-300.612],[30.767,-300.612],[30.767,-276.387]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.089,1.089],[-1.701,0],[-0.612,-0.237],[-0.51,-0.543],[0,0],[0.986,0.426],[1.224,0],[1.428,-1.836],[0,-3.093],[0,0]],"o":[[1.088,-1.088],[0.816,0],[0.612,0.238],[0,0],[-0.85,-0.986],[-0.987,-0.425],[-2.686,0],[-1.428,1.836],[0,0],[0,-2.244]],"v":[[36.989,-295.155],[41.171,-296.787],[43.313,-296.43],[44.996,-295.257],[48.005,-298.368],[45.251,-300.484],[41.936,-301.122],[35.765,-298.368],[33.623,-290.973],[35.357,-290.157]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.666,0.714],[-1.191,1.36],[0,0],[1.139,-0.476],[1.359,0],[1.257,0.697],[0.68,1.275],[0,1.701],[-0.646,1.224],[-1.191,0.681],[-1.564,0],[-1.054,-0.629],[-0.579,-1.139],[0,-1.632],[0,0],[0,0],[0,0],[0,0],[-0.034,0.391],[0,0.34],[0.969,1.803],[1.734,1.02],[2.21,0],[1.887,-1.104],[1.104,-1.904],[0,-2.379],[-1.122,-1.904],[-1.921,-1.104],[-2.448,0]],"o":[[1.665,-0.714],[0,0],[-0.816,0.952],[-1.14,0.477],[-1.632,0],[-1.258,-0.696],[-0.681,-1.275],[0,-1.665],[0.645,-1.224],[1.19,-0.68],[1.496,0],[1.053,0.63],[0.578,1.14],[0,0],[0,0],[0,0],[0,0],[0.102,-0.476],[0.033,-0.39],[0,-2.312],[-0.969,-1.802],[-1.734,-1.02],[-2.346,0],[-1.887,1.105],[-1.105,1.905],[0,2.415],[1.122,1.905],[1.92,1.105],[1.904,0]],"v":[[67.028,-276.948],[71.312,-280.059],[68.354,-283.068],[65.421,-280.926],[61.673,-280.212],[57.338,-281.257],[54.431,-284.215],[53.411,-288.678],[54.38,-293.013],[57.134,-295.869],[61.265,-296.889],[65.09,-295.945],[67.538,-293.293],[68.405,-289.137],[70.088,-290.616],[52.085,-290.616],[52.085,-286.791],[72.536,-286.791],[72.74,-288.091],[72.791,-289.188],[71.337,-295.359],[67.283,-299.592],[61.367,-301.122],[55.017,-299.464],[50.529,-294.951],[48.872,-288.525],[50.555,-282.048],[55.119,-277.534],[61.673,-275.877]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":91,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.479],[1.41,0.918],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.665],[-0.816,-1.479],[-1.411,-0.918],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.543,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[99.515,-276.387],[99.515,-291.432],[98.291,-296.149],[94.95,-299.745],[90.08,-301.122],[85.133,-299.872],[81.716,-296.481],[80.492,-291.585],[82.379,-290.514],[83.195,-293.778],[85.439,-296.022],[88.703,-296.838],[93.165,-295.053],[94.874,-290.514],[94.874,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[82.379,-276.387],[82.379,-300.612],[77.789,-300.612],[77.789,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":92,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[113.744,-276.387],[113.744,-310.761],[109.154,-310.761],[109.154,-276.387]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[119.711,-296.43],[119.711,-300.612],[103.187,-300.612],[103.187,-296.43]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":93,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.615,1.326],[0,2.278],[0.629,0.918],[0.986,0.544],[1.088,0.324],[1.002,0.306],[0.612,0.442],[0,0.816],[-0.697,0.477],[-1.326,0],[-0.987,-0.476],[-0.714,-0.884],[0,0],[1.479,0.663],[1.904,0],[1.292,-0.578],[0.696,-1.071],[0,-1.461],[-0.63,-0.9],[-0.987,-0.51],[-1.105,-0.306],[-0.987,-0.323],[-0.63,-0.492],[0,-0.884],[0.782,-0.492],[1.428,0],[1.155,0.528],[0.884,1.089],[0,0],[-1.003,-0.663],[-1.224,-0.357],[-1.36,0]],"o":[[1.614,-1.326],[0,-1.496],[-0.63,-0.918],[-0.987,-0.543],[-1.089,-0.323],[-1.003,-0.306],[-0.612,-0.441],[0,-0.782],[0.696,-0.476],[1.257,0],[0.986,0.477],[0,0],[-0.952,-1.326],[-1.479,-0.663],[-1.803,0],[-1.293,0.579],[-0.697,1.071],[0,1.462],[0.629,0.901],[0.986,0.51],[1.104,0.306],[0.986,0.324],[0.629,0.493],[0,0.885],[-0.783,0.493],[-1.428,0],[-1.156,-0.527],[0,0],[0.747,0.918],[1.002,0.663],[1.224,0.357],[2.72,0]],"v":[[148.959,-277.866],[151.382,-283.272],[150.438,-286.893],[148.016,-289.086],[144.905,-290.386],[141.768,-291.33],[139.346,-292.452],[138.428,-294.339],[139.473,-296.226],[142.508,-296.94],[145.874,-296.226],[148.424,-294.186],[151.382,-297.144],[147.735,-300.127],[142.661,-301.122],[138.02,-300.255],[135.036,-297.781],[133.991,-293.982],[134.934,-290.437],[137.357,-288.321],[140.493,-287.097],[143.63,-286.153],[146.052,-284.929],[146.996,-282.864],[145.823,-280.798],[142.508,-280.059],[138.632,-280.849],[135.572,-283.272],[132.614,-280.314],[135.24,-277.942],[138.581,-276.412],[142.457,-275.877]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":94,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[161.174,-276.387],[161.174,-300.612],[156.533,-300.612],[156.533,-276.387]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.544,0.561],[0,0.85],[0.543,0.561],[0.849,0],[0.543,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0]],"o":[[0.543,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0],[-0.544,0.561],[0,0.85],[0.543,0.561],[0.849,0]],"v":[[160.97,-306.298],[161.786,-308.415],[160.97,-310.48],[158.879,-311.322],[156.788,-310.48],[155.972,-308.415],[156.788,-306.298],[158.879,-305.457]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":95,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[176.27,-276.387],[176.27,-310.761],[171.68,-310.761],[171.68,-276.387]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[182.237,-296.43],[182.237,-300.612],[165.713,-300.612],[165.713,-296.43]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":96,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.564,0.867],[-0.885,1.599],[0,2.109],[0,0],[0,0],[0,0],[1.02,-1.139],[1.802,0],[0.884,0.51],[0.459,0.969],[0,1.326],[0,0],[0,0],[0,0],[-0.885,-1.598],[-1.581,-0.867],[-2.007,0]],"o":[[1.563,-0.867],[0.884,-1.598],[0,0],[0,0],[0,0],[0,2.007],[-1.02,1.14],[-1.191,0],[-0.885,-0.51],[-0.459,-0.969],[0,0],[0,0],[0,0],[0,2.109],[0.884,1.599],[1.581,0.867],[2.006,0]],"v":[[201.872,-277.279],[205.544,-280.977],[206.87,-286.536],[206.87,-300.612],[202.28,-300.612],[202.28,-286.74],[200.75,-282.022],[196.517,-280.314],[193.406,-281.079],[191.392,-283.297],[190.703,-286.74],[190.703,-300.612],[186.113,-300.612],[186.113,-286.536],[187.439,-280.977],[191.137,-277.279],[196.517,-275.979]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":97,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.462,0.765],[-0.867,1.36],[-0.102,1.734],[0,0],[0.884,1.344],[1.445,0.765],[1.836,0],[1.785,-1.122],[1.037,-1.904],[0,-2.379],[-1.038,-1.904],[-1.785,-1.104],[-2.244,0]],"o":[[1.461,-0.765],[0.867,-1.359],[0,0],[-0.102,-1.767],[-0.885,-1.343],[-1.446,-0.765],[-2.244,0],[-1.785,1.122],[-1.038,1.905],[0,2.38],[1.037,1.905],[1.785,1.105],[1.836,0]],"v":[[228.29,-277.024],[231.783,-280.212],[233.237,-284.853],[233.237,-292.146],[231.758,-296.812],[228.264,-299.974],[223.343,-301.122],[217.299,-299.439],[213.066,-294.9],[211.511,-288.474],[213.066,-282.048],[217.299,-277.534],[223.343,-275.877]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.663,1.242],[0,1.632],[-0.663,1.242],[-1.173,0.714],[-1.53,0],[-1.14,-0.696],[-0.646,-1.257],[0,-1.632],[1.394,-1.547],[2.277,0]],"o":[[-1.191,-0.714],[-0.663,-1.241],[0,-1.598],[0.663,-1.241],[1.173,-0.714],[1.53,0],[1.139,0.697],[0.645,1.258],[0,2.415],[-1.395,1.548],[-1.53,0]],"v":[[220.028,-281.283],[217.248,-284.215],[216.254,-288.525],[217.248,-292.783],[220.002,-295.716],[224.057,-296.787],[228.06,-295.741],[230.738,-292.809],[231.707,-288.474],[229.616,-282.532],[224.108,-280.212]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[236.042,-276.387],[236.042,-300.612],[231.401,-300.612],[231.401,-294.696],[232.268,-288.831],[231.401,-282.915],[231.401,-276.387]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":98,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[250.934,-276.387],[250.934,-310.761],[246.344,-310.761],[246.344,-276.387]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[256.901,-296.43],[256.901,-300.612],[240.377,-300.612],[240.377,-296.43]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":99,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[266.03,-276.387],[266.03,-300.612],[261.389,-300.612],[261.389,-276.387]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.544,0.561],[0,0.85],[0.543,0.561],[0.849,0],[0.543,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0]],"o":[[0.543,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0],[-0.544,0.561],[0,0.85],[0.543,0.561],[0.849,0]],"v":[[265.826,-306.298],[266.642,-308.415],[265.826,-310.48],[263.735,-311.322],[261.644,-310.48],[260.828,-308.415],[261.644,-306.298],[263.735,-305.457]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":100,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,1.122],[-1.122,1.921],[0,2.38],[1.122,1.905],[1.92,1.105],[2.379,0],[1.904,-1.122],[1.122,-1.887],[0,-2.346],[-1.122,-1.92],[-1.905,-1.122],[-2.346,0]],"o":[[1.92,-1.122],[1.122,-1.92],[0,-2.346],[-1.122,-1.904],[-1.921,-1.104],[-2.346,0],[-1.905,1.122],[-1.122,1.887],[0,2.38],[1.122,1.921],[1.904,1.122],[2.379,0]],"v":[[290.281,-277.56],[294.845,-282.124],[296.528,-288.576],[294.845,-294.951],[290.281,-299.464],[283.829,-301.122],[277.454,-299.439],[272.915,-294.925],[271.232,-288.576],[272.915,-282.124],[277.454,-277.56],[283.829,-275.877]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.68,1.242],[0,1.599],[-0.681,1.224],[-1.191,0.697],[-1.497,0],[-1.173,-0.696],[-0.697,-1.224],[0,-1.563],[0.68,-1.241],[1.19,-0.714],[1.563,0]],"o":[[-1.191,-0.714],[-0.681,-1.241],[0,-1.563],[0.68,-1.224],[1.19,-0.696],[1.563,0],[1.173,0.697],[0.696,1.224],[0,1.599],[-0.681,1.242],[-1.191,0.714],[-1.497,0]],"v":[[279.8,-281.385],[276.995,-284.317],[275.975,-288.576],[276.995,-292.758],[279.8,-295.639],[283.829,-296.685],[287.935,-295.639],[290.74,-292.758],[291.785,-288.576],[290.765,-284.317],[287.96,-281.385],[283.829,-280.314]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":101,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.479],[1.41,0.918],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.665],[-0.816,-1.479],[-1.411,-0.918],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.543,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[323.354,-276.387],[323.354,-291.432],[322.13,-296.149],[318.789,-299.745],[313.919,-301.122],[308.972,-299.872],[305.555,-296.481],[304.331,-291.585],[306.218,-290.514],[307.034,-293.778],[309.278,-296.022],[312.542,-296.838],[317.004,-295.053],[318.713,-290.514],[318.713,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[306.218,-276.387],[306.218,-300.612],[301.628,-300.612],[301.628,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":102,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,1.122],[-1.122,1.921],[0,2.38],[1.122,1.905],[1.92,1.105],[2.379,0],[1.904,-1.122],[1.122,-1.887],[0,-2.346],[-1.122,-1.92],[-1.905,-1.122],[-2.346,0]],"o":[[1.92,-1.122],[1.122,-1.92],[0,-2.346],[-1.122,-1.904],[-1.921,-1.104],[-2.346,0],[-1.905,1.122],[-1.122,1.887],[0,2.38],[1.122,1.921],[1.904,1.122],[2.379,0]],"v":[[357.6,-277.56],[362.165,-282.124],[363.848,-288.576],[362.165,-294.951],[357.6,-299.464],[351.149,-301.122],[344.774,-299.439],[340.235,-294.925],[338.552,-288.576],[340.235,-282.124],[344.774,-277.56],[351.149,-275.877]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.68,1.242],[0,1.599],[-0.681,1.224],[-1.191,0.697],[-1.497,0],[-1.173,-0.696],[-0.697,-1.224],[0,-1.563],[0.68,-1.241],[1.19,-0.714],[1.563,0]],"o":[[-1.191,-0.714],[-0.681,-1.241],[0,-1.563],[0.68,-1.224],[1.19,-0.696],[1.563,0],[1.173,0.697],[0.696,1.224],[0,1.599],[-0.681,1.242],[-1.191,0.714],[-1.497,0]],"v":[[347.12,-281.385],[344.315,-284.317],[343.295,-288.576],[344.315,-292.758],[347.12,-295.639],[351.149,-296.685],[355.254,-295.639],[358.059,-292.758],[359.105,-288.576],[358.085,-284.317],[355.28,-281.385],[351.149,-280.314]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":103,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.799,0.834],[-1.462,0],[-0.544,-0.237],[-0.442,-0.476],[0,0],[1.02,0.477],[1.394,0],[1.394,-0.782],[0.782,-1.359],[0,-1.767],[0,0]],"o":[[0,0],[0,-1.496],[0.798,-0.833],[0.782,0],[0.543,0.238],[0,0],[-0.85,-0.918],[-1.02,-0.476],[-1.836,0],[-1.395,0.783],[-0.783,1.36],[0,0],[0,0]],"v":[[376.241,-276.387],[376.241,-304.233],[377.44,-307.726],[380.831,-308.976],[382.82,-308.619],[384.299,-307.548],[387.308,-310.506],[384.503,-312.597],[380.882,-313.311],[376.037,-312.138],[372.773,-308.925],[371.6,-304.233],[371.6,-276.387]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[383.942,-296.43],[383.942,-300.612],[365.684,-300.612],[365.684,-296.43]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":104,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[407.402,-276.387],[407.402,-310.761],[402.812,-310.761],[402.812,-276.387]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[413.369,-296.43],[413.369,-300.612],[396.845,-300.612],[396.845,-296.43]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":105,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.462],[1.41,0.816],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.904],[-0.816,-1.461],[-1.411,-0.816],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.543,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[439.583,-276.387],[439.583,-291.432],[438.359,-296.481],[435.018,-299.898],[430.148,-301.122],[425.201,-299.872],[421.784,-296.481],[420.56,-291.585],[422.447,-290.514],[423.263,-293.778],[425.507,-296.022],[428.771,-296.838],[433.233,-295.053],[434.942,-290.514],[434.942,-276.387]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[422.447,-276.387],[422.447,-312.801],[417.857,-312.801],[417.857,-276.387]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":106,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[450.446,-276.387],[450.446,-300.612],[445.805,-300.612],[445.805,-276.387]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.544,0.561],[0,0.85],[0.543,0.561],[0.849,0],[0.543,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0]],"o":[[0.543,-0.561],[0,-0.816],[-0.544,-0.561],[-0.85,0],[-0.544,0.561],[0,0.85],[0.543,0.561],[0.849,0]],"v":[[450.242,-306.298],[451.058,-308.415],[450.242,-310.48],[448.151,-311.322],[446.06,-310.48],[445.244,-308.415],[446.06,-306.298],[448.151,-305.457]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":107,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.615,1.326],[0,2.278],[0.629,0.918],[0.986,0.544],[1.088,0.324],[1.002,0.306],[0.612,0.442],[0,0.816],[-0.697,0.477],[-1.326,0],[-0.987,-0.476],[-0.714,-0.884],[0,0],[1.479,0.663],[1.904,0],[1.292,-0.578],[0.696,-1.071],[0,-1.461],[-0.63,-0.9],[-0.987,-0.51],[-1.105,-0.306],[-0.987,-0.323],[-0.63,-0.492],[0,-0.884],[0.782,-0.492],[1.428,0],[1.155,0.528],[0.884,1.089],[0,0],[-1.003,-0.663],[-1.224,-0.357],[-1.36,0]],"o":[[1.614,-1.326],[0,-1.496],[-0.63,-0.918],[-0.987,-0.543],[-1.089,-0.323],[-1.003,-0.306],[-0.612,-0.441],[0,-0.782],[0.696,-0.476],[1.257,0],[0.986,0.477],[0,0],[-0.952,-1.326],[-1.479,-0.663],[-1.803,0],[-1.293,0.579],[-0.697,1.071],[0,1.462],[0.629,0.901],[0.986,0.51],[1.104,0.306],[0.986,0.324],[0.629,0.493],[0,0.885],[-0.783,0.493],[-1.428,0],[-1.156,-0.527],[0,0],[0.747,0.918],[1.002,0.663],[1.224,0.357],[2.72,0]],"v":[[471.433,-277.866],[473.855,-283.272],[472.912,-286.893],[470.489,-289.086],[467.378,-290.386],[464.242,-291.33],[461.819,-292.452],[460.901,-294.339],[461.947,-296.226],[464.981,-296.94],[468.347,-296.226],[470.897,-294.186],[473.855,-297.144],[470.209,-300.127],[465.134,-301.122],[460.493,-300.255],[457.51,-297.781],[456.464,-293.982],[457.408,-290.437],[459.83,-288.321],[462.967,-287.097],[466.103,-286.153],[468.526,-284.929],[469.469,-282.864],[468.296,-280.798],[464.981,-280.059],[461.105,-280.849],[458.045,-283.272],[455.087,-280.314],[457.714,-277.942],[461.054,-276.412],[464.93,-275.877]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":108,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.615,0.714],[-1.122,1.293],[0,0],[1.071,-0.459],[1.292,0],[1.19,0.714],[0.68,1.224],[0,1.599],[-0.681,1.224],[-1.191,0.697],[-1.53,0],[-1.089,-0.459],[-0.748,-0.884],[0,0],[1.598,0.697],[1.869,0],[1.92,-1.104],[1.104,-1.904],[0,-2.379],[-1.105,-1.92],[-1.921,-1.122],[-2.38,0]],"o":[[1.614,-0.714],[0,0],[-0.783,0.885],[-1.071,0.459],[-1.53,0],[-1.191,-0.714],[-0.681,-1.224],[0,-1.598],[0.68,-1.224],[1.19,-0.696],[1.257,0],[1.088,0.459],[0,0],[-1.156,-1.326],[-1.599,-0.696],[-2.38,0],[-1.921,1.105],[-1.105,1.905],[0,2.346],[1.104,1.921],[1.92,1.122],[1.869,0]],"v":[[505.858,-276.948],[509.963,-279.957],[506.954,-283.017],[504.175,-281.002],[500.63,-280.314],[496.55,-281.385],[493.745,-284.292],[492.725,-288.525],[493.745,-292.758],[496.55,-295.639],[500.63,-296.685],[504.149,-295.996],[506.903,-293.982],[509.963,-297.042],[505.832,-300.076],[500.63,-301.122],[494.179,-299.464],[489.64,-294.951],[487.982,-288.525],[489.64,-282.124],[494.179,-277.56],[500.63,-275.877]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":109,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.921,1.122],[-1.122,1.921],[0,2.38],[1.122,1.905],[1.92,1.105],[2.379,0],[1.904,-1.122],[1.122,-1.887],[0,-2.346],[-1.122,-1.92],[-1.905,-1.122],[-2.346,0]],"o":[[1.92,-1.122],[1.122,-1.92],[0,-2.346],[-1.122,-1.904],[-1.921,-1.104],[-2.346,0],[-1.905,1.122],[-1.122,1.887],[0,2.38],[1.122,1.921],[1.904,1.122],[2.379,0]],"v":[[531.51,-277.56],[536.075,-282.124],[537.758,-288.576],[536.075,-294.951],[531.51,-299.464],[525.059,-301.122],[518.684,-299.439],[514.145,-294.925],[512.462,-288.576],[514.145,-282.124],[518.684,-277.56],[525.059,-275.877]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.19,0.714],[0.68,1.242],[0,1.599],[-0.68,1.224],[-1.191,0.697],[-1.497,0],[-1.173,-0.696],[-0.697,-1.224],[0,-1.563],[0.68,-1.241],[1.19,-0.714],[1.563,0]],"o":[[-1.191,-0.714],[-0.68,-1.241],[0,-1.563],[0.68,-1.224],[1.19,-0.696],[1.563,0],[1.173,0.697],[0.696,1.224],[0,1.599],[-0.681,1.242],[-1.191,0.714],[-1.497,0]],"v":[[521.03,-281.385],[518.225,-284.317],[517.205,-288.576],[518.225,-292.758],[521.03,-295.639],[525.059,-296.685],[529.164,-295.639],[531.969,-292.758],[533.015,-288.576],[531.995,-284.317],[529.19,-281.385],[525.059,-280.314]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":110,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.564,0.867],[-0.885,1.599],[0,2.109],[0,0],[0,0],[0,0],[1.02,-1.139],[1.802,0],[0.884,0.51],[0.459,0.969],[0,1.326],[0,0],[0,0],[0,0],[-0.885,-1.598],[-1.581,-0.867],[-2.007,0]],"o":[[1.563,-0.867],[0.884,-1.598],[0,0],[0,0],[0,0],[0,2.007],[-1.02,1.14],[-1.191,0],[-0.885,-0.51],[-0.459,-0.969],[0,0],[0,0],[0,0],[0,2.109],[0.884,1.599],[1.581,0.867],[2.006,0]],"v":[[558.005,-277.279],[561.677,-280.977],[563.003,-286.536],[563.003,-300.612],[558.413,-300.612],[558.413,-286.74],[556.883,-282.022],[552.65,-280.314],[549.539,-281.079],[547.524,-283.297],[546.836,-286.74],[546.836,-300.612],[542.246,-300.612],[542.246,-286.536],[543.572,-280.977],[547.269,-277.279],[552.65,-275.979]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":111,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.816,1.479],[1.41,0.918],[1.836,0],[1.461,-0.833],[0.816,-1.428],[0,-1.836],[0,0],[-0.544,0.952],[-0.952,0.544],[-1.224,0],[-1.14,-1.19],[0,-1.836],[0,0]],"o":[[0,0],[0,-1.665],[-0.816,-1.479],[-1.411,-0.918],[-1.836,0],[-1.462,0.834],[-0.816,1.428],[0,0],[0,-1.224],[0.544,-0.951],[0.951,-0.543],[1.836,0],[1.139,1.191],[0,0],[0,0]],"v":[[590.9,-276.387],[590.9,-291.432],[589.676,-296.149],[586.336,-299.745],[581.465,-301.122],[576.518,-299.872],[573.101,-296.481],[571.877,-291.585],[573.764,-290.514],[574.58,-293.778],[576.824,-296.022],[580.088,-296.838],[584.55,-295.053],[586.259,-290.514],[586.259,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[573.764,-276.387],[573.764,-300.612],[569.174,-300.612],[569.174,-276.387]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":112,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[605.129,-276.387],[605.129,-310.761],[600.539,-310.761],[600.539,-276.387]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[611.096,-296.43],[611.096,-300.612],[594.572,-300.612],[594.572,-296.43]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":113,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[620.174,-276.387],[620.174,-300.612],[615.584,-300.612],[615.584,-276.387]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.089,1.089],[-1.701,0],[-0.612,-0.237],[-0.51,-0.543],[0,0],[0.986,0.426],[1.224,0],[1.428,-1.836],[0,-3.093],[0,0]],"o":[[1.088,-1.088],[0.816,0],[0.612,0.238],[0,0],[-0.85,-0.986],[-0.987,-0.425],[-2.686,0],[-1.428,1.836],[0,0],[0,-2.244]],"v":[[621.806,-295.155],[625.988,-296.787],[628.13,-296.43],[629.813,-295.257],[632.822,-298.368],[630.068,-300.484],[626.753,-301.122],[620.582,-298.368],[618.44,-290.973],[620.174,-290.157]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":114,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[646.337,-276.183],[657.659,-300.612],[652.559,-300.612],[644.348,-281.487],[645.98,-281.487],[638.177,-300.612],[633.077,-300.612],[643.583,-276.183]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[641.747,-266.238],[646.337,-276.183],[643.736,-280.875],[636.647,-266.238]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":115,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.63,0.663],[0,0.918],[0.629,0.63],[0.951,0],[0.612,-0.629],[0,-0.951],[-0.612,-0.663],[-0.987,0]],"o":[[0.629,-0.663],[0,-0.951],[-0.63,-0.629],[-0.987,0],[-0.612,0.63],[0,0.918],[0.612,0.663],[0.951,0]],"v":[[664.773,-276.871],[665.717,-279.243],[664.773,-281.614],[662.402,-282.558],[660.005,-281.614],[659.087,-279.243],[660.005,-276.871],[662.402,-275.877]],"c":true},"ix":2},"nm":".","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":".","np":3,"cix":2,"bm":0,"ix":116,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-817.6,-167.187],[-817.6,-194.147],[-821.4,-194.147],[-821.4,-167.187]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-808.2,-191.507],[-808.2,-194.947],[-830.8,-194.947],[-830.8,-191.507]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":117,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.507,0.88],[-0.88,1.507],[0,1.867],[0.88,1.494],[1.506,0.867],[1.866,0],[1.493,-0.88],[0.88,-1.48],[0,-1.84],[-0.88,-1.506],[-1.494,-0.88],[-1.84,0]],"o":[[1.506,-0.88],[0.88,-1.506],[0,-1.84],[-0.88,-1.493],[-1.507,-0.866],[-1.84,0],[-1.494,0.88],[-0.88,1.48],[0,1.867],[0.88,1.507],[1.493,0.88],[1.866,0]],"v":[[-795.9,-168.107],[-792.32,-171.687],[-791,-176.747],[-792.32,-181.747],[-795.9,-185.287],[-800.96,-186.587],[-805.96,-185.267],[-809.52,-181.727],[-810.84,-176.747],[-809.52,-171.687],[-805.96,-168.107],[-800.96,-166.787]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.933,0.56],[0.533,0.974],[0,1.254],[-0.534,0.96],[-0.934,0.547],[-1.174,0],[-0.92,-0.546],[-0.547,-0.96],[0,-1.226],[0.533,-0.973],[0.933,-0.56],[1.226,0]],"o":[[-0.934,-0.56],[-0.534,-0.973],[0,-1.226],[0.533,-0.96],[0.933,-0.546],[1.226,0],[0.92,0.547],[0.546,0.96],[0,1.254],[-0.534,0.974],[-0.934,0.56],[-1.174,0]],"v":[[-804.12,-171.107],[-806.32,-173.407],[-807.12,-176.747],[-806.32,-180.027],[-804.12,-182.287],[-800.96,-183.107],[-797.74,-182.287],[-795.54,-180.027],[-794.72,-176.747],[-795.52,-173.407],[-797.72,-171.107],[-800.96,-170.267]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":118,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-775.12,-167.187],[-775.12,-195.747],[-778.72,-195.747],[-778.72,-167.187]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":119,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.307,0.56],[-0.934,1.067],[0,0],[0.893,-0.373],[1.066,0],[0.986,0.547],[0.533,1],[0,1.334],[-0.507,0.96],[-0.934,0.534],[-1.227,0],[-0.827,-0.493],[-0.454,-0.893],[0,-1.28],[0,0],[0,0],[0,0],[0,0],[-0.027,0.307],[0,0.267],[0.76,1.414],[1.36,0.8],[1.733,0],[1.48,-0.866],[0.866,-1.493],[0,-1.866],[-0.88,-1.493],[-1.507,-0.866],[-1.92,0]],"o":[[1.306,-0.56],[0,0],[-0.64,0.747],[-0.894,0.374],[-1.28,0],[-0.987,-0.546],[-0.534,-1],[0,-1.306],[0.506,-0.96],[0.933,-0.533],[1.173,0],[0.826,0.494],[0.453,0.894],[0,0],[0,0],[0,0],[0,0],[0.08,-0.373],[0.026,-0.306],[0,-1.813],[-0.76,-1.413],[-1.36,-0.8],[-1.84,0],[-1.48,0.867],[-0.867,1.494],[0,1.894],[0.88,1.494],[1.506,0.867],[1.493,0]],"v":[[-756.84,-167.627],[-753.48,-170.067],[-755.8,-172.427],[-758.1,-170.747],[-761.04,-170.187],[-764.44,-171.007],[-766.72,-173.327],[-767.52,-176.827],[-766.76,-180.227],[-764.6,-182.467],[-761.36,-183.267],[-758.36,-182.527],[-756.44,-180.447],[-755.76,-177.187],[-754.44,-178.347],[-768.56,-178.347],[-768.56,-175.347],[-752.52,-175.347],[-752.36,-176.367],[-752.32,-177.227],[-753.46,-182.067],[-756.64,-185.387],[-761.28,-186.587],[-766.26,-185.287],[-769.78,-181.747],[-771.08,-176.707],[-769.76,-171.627],[-766.18,-168.087],[-761.04,-166.787]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":120,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.147,0.6],[-0.68,1.067],[-0.08,1.36],[0,0],[0.693,1.054],[1.133,0.6],[1.44,0],[1.4,-0.88],[0.813,-1.493],[0,-1.866],[-0.814,-1.493],[-1.4,-0.866],[-1.76,0]],"o":[[1.146,-0.6],[0.68,-1.066],[0,0],[-0.08,-1.386],[-0.694,-1.053],[-1.134,-0.6],[-1.76,0],[-1.4,0.88],[-0.814,1.494],[0,1.867],[0.813,1.494],[1.4,0.867],[1.44,0]],"v":[[-736.44,-167.687],[-733.7,-170.187],[-732.56,-173.827],[-732.56,-179.547],[-733.72,-183.207],[-736.46,-185.687],[-740.32,-186.587],[-745.06,-185.267],[-748.38,-181.707],[-749.6,-176.667],[-748.38,-171.627],[-745.06,-168.087],[-740.32,-166.787]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.933,0.56],[0.52,0.974],[0,1.28],[-0.52,0.974],[-0.92,0.56],[-1.2,0],[-0.894,-0.546],[-0.507,-0.986],[0,-1.28],[1.093,-1.213],[1.786,0]],"o":[[-0.934,-0.56],[-0.52,-0.973],[0,-1.253],[0.52,-0.973],[0.92,-0.56],[1.2,0],[0.893,0.547],[0.506,0.987],[0,1.894],[-1.094,1.214],[-1.2,0]],"v":[[-742.92,-171.027],[-745.1,-173.327],[-745.88,-176.707],[-745.1,-180.047],[-742.94,-182.347],[-739.76,-183.187],[-736.62,-182.367],[-734.52,-180.067],[-733.76,-176.667],[-735.4,-172.007],[-739.72,-170.187]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-730.36,-167.187],[-730.36,-186.187],[-734,-186.187],[-734,-181.547],[-733.32,-176.947],[-734,-172.307],[-734,-167.187]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":121,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-721.52,-167.187],[-721.52,-186.187],[-725.12,-186.187],[-725.12,-167.187]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.854,0.854],[-1.334,0],[-0.48,-0.186],[-0.4,-0.426],[0,0],[0.773,0.334],[0.96,0],[1.12,-1.44],[0,-2.426],[0,0]],"o":[[0.853,-0.853],[0.64,0],[0.48,0.187],[0,0],[-0.667,-0.773],[-0.774,-0.333],[-2.107,0],[-1.12,1.44],[0,0],[0,-1.76]],"v":[[-720.24,-181.907],[-716.96,-183.187],[-715.28,-182.907],[-713.96,-181.987],[-711.6,-184.427],[-713.76,-186.087],[-716.36,-186.587],[-721.2,-184.427],[-722.88,-178.627],[-721.52,-177.987]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":122,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.64,1.16],[1.106,0.72],[1.44,0],[1.146,-0.653],[0.64,-1.12],[0,-1.44],[0,0],[-0.427,0.747],[-0.747,0.427],[-0.96,0],[-0.894,-0.933],[0,-1.44],[0,0]],"o":[[0,0],[0,-1.306],[-0.64,-1.16],[-1.107,-0.72],[-1.44,0],[-1.147,0.654],[-0.64,1.12],[0,0],[0,-0.96],[0.426,-0.746],[0.746,-0.426],[1.44,0],[0.893,0.934],[0,0],[0,0]],"v":[[-691.96,-167.187],[-691.96,-178.987],[-692.92,-182.687],[-695.54,-185.507],[-699.36,-186.587],[-703.24,-185.607],[-705.92,-182.947],[-706.88,-179.107],[-705.4,-178.267],[-704.76,-180.827],[-703,-182.587],[-700.44,-183.227],[-696.94,-181.827],[-695.6,-178.267],[-695.6,-167.187]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-705.4,-167.187],[-705.4,-186.187],[-709,-186.187],[-709,-167.187]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":123,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-675.2,-167.187],[-675.2,-186.187],[-678.8,-186.187],[-678.8,-167.187]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.626,1.067],[1.08,0.587],[1.333,0],[1.093,-0.6],[0.626,-1.066],[0,-1.44],[0,0],[-0.427,0.667],[-0.694,0.374],[-0.88,0],[-0.867,-0.813],[0,-1.413],[0,0]],"o":[[0,0],[0,-1.466],[-0.627,-1.066],[-1.08,-0.586],[-1.36,0],[-1.094,0.6],[-0.627,1.067],[0,0],[0,-0.96],[0.426,-0.666],[0.693,-0.373],[1.306,0],[0.866,0.814],[0,0],[0,0]],"v":[[-662.36,-167.187],[-662.36,-179.427],[-663.3,-183.227],[-665.86,-185.707],[-669.48,-186.587],[-673.16,-185.687],[-675.74,-183.187],[-676.68,-179.427],[-675.2,-178.667],[-674.56,-181.107],[-672.88,-182.667],[-670.52,-183.227],[-667.26,-182.007],[-665.96,-178.667],[-665.96,-167.187]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.653,1.067],[1.093,0.587],[1.386,0],[1.12,-0.6],[0.706,-1.053],[0.08,-1.466],[0,0],[-0.427,0.667],[-0.707,0.374],[-0.88,0],[-0.867,-0.813],[0,-1.413],[0,0]],"o":[[0,0],[0,-1.493],[-0.654,-1.066],[-1.094,-0.586],[-1.334,0],[-1.12,0.6],[-0.707,1.054],[0,0],[0,-0.96],[0.426,-0.666],[0.706,-0.373],[1.28,0],[0.866,0.814],[0,0],[0,0]],"v":[[-649.48,-167.187],[-649.48,-179.387],[-650.46,-183.227],[-653.08,-185.707],[-656.8,-186.587],[-660.48,-185.687],[-663.22,-183.207],[-664.4,-179.427],[-662.36,-178.667],[-661.72,-181.107],[-660.02,-182.667],[-657.64,-183.227],[-654.42,-182.007],[-653.12,-178.667],[-653.12,-167.187]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":124,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.507,0.88],[-0.88,1.507],[0,1.867],[0.88,1.494],[1.506,0.867],[1.866,0],[1.493,-0.88],[0.88,-1.48],[0,-1.84],[-0.88,-1.506],[-1.494,-0.88],[-1.84,0]],"o":[[1.506,-0.88],[0.88,-1.506],[0,-1.84],[-0.88,-1.493],[-1.507,-0.866],[-1.84,0],[-1.494,0.88],[-0.88,1.48],[0,1.867],[0.88,1.507],[1.493,0.88],[1.866,0]],"v":[[-630.9,-168.107],[-627.32,-171.687],[-626,-176.747],[-627.32,-181.747],[-630.9,-185.287],[-635.96,-186.587],[-640.96,-185.267],[-644.52,-181.727],[-645.84,-176.747],[-644.52,-171.687],[-640.96,-168.107],[-635.96,-166.787]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.933,0.56],[0.533,0.974],[0,1.254],[-0.534,0.96],[-0.934,0.547],[-1.174,0],[-0.92,-0.546],[-0.547,-0.96],[0,-1.226],[0.533,-0.973],[0.933,-0.56],[1.226,0]],"o":[[-0.934,-0.56],[-0.534,-0.973],[0,-1.226],[0.533,-0.96],[0.933,-0.546],[1.226,0],[0.92,0.547],[0.546,0.96],[0,1.254],[-0.534,0.974],[-0.934,0.56],[-1.174,0]],"v":[[-639.12,-171.107],[-641.32,-173.407],[-642.12,-176.747],[-641.32,-180.027],[-639.12,-182.287],[-635.96,-183.107],[-632.74,-182.287],[-630.54,-180.027],[-629.72,-176.747],[-630.52,-173.407],[-632.72,-171.107],[-635.96,-170.267]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":125,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-618.4,-167.187],[-618.4,-186.187],[-622,-186.187],[-622,-167.187]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.854,0.854],[-1.334,0],[-0.48,-0.186],[-0.4,-0.426],[0,0],[0.773,0.334],[0.96,0],[1.12,-1.44],[0,-2.426],[0,0]],"o":[[0.853,-0.853],[0.64,0],[0.48,0.187],[0,0],[-0.667,-0.773],[-0.774,-0.333],[-2.107,0],[-1.12,1.44],[0,0],[0,-1.76]],"v":[[-617.12,-181.907],[-613.84,-183.187],[-612.16,-182.907],[-610.84,-181.987],[-608.48,-184.427],[-610.64,-186.087],[-613.24,-186.587],[-618.08,-184.427],[-619.76,-178.627],[-618.4,-177.987]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":126,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.307,0.56],[-0.934,1.067],[0,0],[0.893,-0.373],[1.066,0],[0.986,0.547],[0.533,1],[0,1.334],[-0.507,0.96],[-0.934,0.534],[-1.227,0],[-0.827,-0.493],[-0.454,-0.893],[0,-1.28],[0,0],[0,0],[0,0],[0,0],[-0.027,0.307],[0,0.267],[0.76,1.414],[1.36,0.8],[1.733,0],[1.48,-0.866],[0.866,-1.493],[0,-1.866],[-0.88,-1.493],[-1.507,-0.866],[-1.92,0]],"o":[[1.306,-0.56],[0,0],[-0.64,0.747],[-0.894,0.374],[-1.28,0],[-0.987,-0.546],[-0.534,-1],[0,-1.306],[0.506,-0.96],[0.933,-0.533],[1.173,0],[0.826,0.494],[0.453,0.894],[0,0],[0,0],[0,0],[0,0],[0.08,-0.373],[0.026,-0.306],[0,-1.813],[-0.76,-1.413],[-1.36,-0.8],[-1.84,0],[-1.48,0.867],[-0.867,1.494],[0,1.894],[0.88,1.494],[1.506,0.867],[1.493,0]],"v":[[-593.56,-167.627],[-590.2,-170.067],[-592.52,-172.427],[-594.82,-170.747],[-597.76,-170.187],[-601.16,-171.007],[-603.44,-173.327],[-604.24,-176.827],[-603.48,-180.227],[-601.32,-182.467],[-598.08,-183.267],[-595.08,-182.527],[-593.16,-180.447],[-592.48,-177.187],[-591.16,-178.347],[-605.28,-178.347],[-605.28,-175.347],[-589.24,-175.347],[-589.08,-176.367],[-589.04,-177.227],[-590.18,-182.067],[-593.36,-185.387],[-598,-186.587],[-602.98,-185.287],[-606.5,-181.747],[-607.8,-176.707],[-606.48,-171.627],[-602.9,-168.087],[-597.76,-166.787]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":127,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.147,0.6],[-0.68,1.067],[-0.08,1.36],[0,0],[0.693,1.054],[1.133,0.6],[1.44,0],[1.4,-0.88],[0.813,-1.493],[0,-1.866],[-0.814,-1.493],[-1.4,-0.866],[-1.76,0]],"o":[[1.146,-0.6],[0.68,-1.066],[0,0],[-0.08,-1.386],[-0.694,-1.053],[-1.134,-0.6],[-1.76,0],[-1.4,0.88],[-0.814,1.494],[0,1.867],[0.813,1.494],[1.4,0.867],[1.44,0]],"v":[[-564.88,-167.687],[-562.14,-170.187],[-561,-173.827],[-561,-179.547],[-562.16,-183.207],[-564.9,-185.687],[-568.76,-186.587],[-573.5,-185.267],[-576.82,-181.707],[-578.04,-176.667],[-576.82,-171.627],[-573.5,-168.087],[-568.76,-166.787]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.933,0.56],[0.52,0.974],[0,1.28],[-0.52,0.974],[-0.92,0.56],[-1.2,0],[-0.894,-0.546],[-0.507,-0.986],[0,-1.28],[1.093,-1.213],[1.786,0]],"o":[[-0.934,-0.56],[-0.52,-0.973],[0,-1.253],[0.52,-0.973],[0.92,-0.56],[1.2,0],[0.893,0.547],[0.506,0.987],[0,1.894],[-1.094,1.214],[-1.2,0]],"v":[[-571.36,-171.027],[-573.54,-173.327],[-574.32,-176.707],[-573.54,-180.047],[-571.38,-182.347],[-568.2,-183.187],[-565.06,-182.367],[-562.96,-180.067],[-562.2,-176.667],[-563.84,-172.007],[-568.16,-170.187]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-558.8,-167.187],[-558.8,-186.187],[-562.44,-186.187],[-562.44,-181.547],[-561.76,-176.947],[-562.44,-172.307],[-562.44,-167.187]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":128,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.4,0.867],[-0.8,1.494],[0,1.867],[0.8,1.494],[1.4,0.88],[1.733,0],[1.16,-0.6],[0.706,-1.053],[0.08,-1.386],[0,0],[-0.694,-1.066],[-1.16,-0.6],[-1.44,0]],"o":[[1.4,-0.866],[0.8,-1.493],[0,-1.866],[-0.8,-1.493],[-1.4,-0.88],[-1.414,0],[-1.16,0.6],[-0.707,1.054],[0,0],[0.08,1.36],[0.693,1.067],[1.16,0.6],[1.733,0]],"v":[[-538.86,-168.087],[-535.56,-171.627],[-534.36,-176.667],[-535.56,-181.707],[-538.86,-185.267],[-543.56,-186.587],[-547.42,-185.687],[-550.22,-183.207],[-551.4,-179.547],[-551.4,-173.827],[-550.24,-170.187],[-547.46,-167.687],[-543.56,-166.787]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-549.96,-167.187],[-549.96,-172.307],[-550.64,-176.947],[-549.96,-181.547],[-549.96,-195.747],[-553.56,-195.747],[-553.56,-167.187]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.92,0.56],[0.493,0.974],[0,1.254],[-0.507,0.974],[-0.907,0.56],[-1.174,0],[-0.907,-0.56],[-0.52,-0.973],[0,-1.253],[0.52,-0.973],[0.906,-0.56],[1.2,0]],"o":[[-0.92,-0.56],[-0.494,-0.973],[0,-1.28],[0.506,-0.973],[0.906,-0.56],[1.2,0],[0.906,0.56],[0.52,0.974],[0,1.28],[-0.52,0.974],[-0.907,0.56],[-1.174,0]],"v":[[-547.3,-171.027],[-549.42,-173.327],[-550.16,-176.667],[-549.4,-180.047],[-547.28,-182.347],[-544.16,-183.187],[-541,-182.347],[-538.86,-180.047],[-538.08,-176.707],[-538.86,-173.327],[-541,-171.027],[-544.16,-170.187]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":129,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.507,0.88],[-0.88,1.507],[0,1.867],[0.88,1.494],[1.506,0.867],[1.866,0],[1.493,-0.88],[0.88,-1.48],[0,-1.84],[-0.88,-1.506],[-1.494,-0.88],[-1.84,0]],"o":[[1.506,-0.88],[0.88,-1.506],[0,-1.84],[-0.88,-1.493],[-1.507,-0.866],[-1.84,0],[-1.494,0.88],[-0.88,1.48],[0,1.867],[0.88,1.507],[1.493,0.88],[1.866,0]],"v":[[-516.58,-168.107],[-513,-171.687],[-511.68,-176.747],[-513,-181.747],[-516.58,-185.287],[-521.64,-186.587],[-526.64,-185.267],[-530.2,-181.727],[-531.52,-176.747],[-530.2,-171.687],[-526.64,-168.107],[-521.64,-166.787]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.933,0.56],[0.533,0.974],[0,1.254],[-0.534,0.96],[-0.934,0.547],[-1.174,0],[-0.92,-0.546],[-0.547,-0.96],[0,-1.226],[0.533,-0.973],[0.933,-0.56],[1.226,0]],"o":[[-0.934,-0.56],[-0.534,-0.973],[0,-1.226],[0.533,-0.96],[0.933,-0.546],[1.226,0],[0.92,0.547],[0.546,0.96],[0,1.254],[-0.534,0.974],[-0.934,0.56],[-1.174,0]],"v":[[-524.8,-171.107],[-527,-173.407],[-527.8,-176.747],[-527,-180.027],[-524.8,-182.287],[-521.64,-183.107],[-518.42,-182.287],[-516.22,-180.027],[-515.4,-176.747],[-516.2,-173.407],[-518.4,-171.107],[-521.64,-170.267]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":130,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.227,0.68],[-0.694,1.254],[0,1.654],[0,0],[0,0],[0,0],[0.8,-0.893],[1.413,0],[0.693,0.4],[0.36,0.76],[0,1.04],[0,0],[0,0],[0,0],[-0.694,-1.253],[-1.24,-0.68],[-1.574,0]],"o":[[1.226,-0.68],[0.693,-1.253],[0,0],[0,0],[0,0],[0,1.574],[-0.8,0.894],[-0.934,0],[-0.694,-0.4],[-0.36,-0.76],[0,0],[0,0],[0,0],[0,1.654],[0.693,1.254],[1.24,0.68],[1.573,0]],"v":[[-495.8,-167.887],[-492.92,-170.787],[-491.88,-175.147],[-491.88,-186.187],[-495.48,-186.187],[-495.48,-175.307],[-496.68,-171.607],[-500,-170.267],[-502.44,-170.867],[-504.02,-172.607],[-504.56,-175.307],[-504.56,-186.187],[-508.16,-186.187],[-508.16,-175.147],[-507.12,-170.787],[-504.22,-167.887],[-500,-166.867]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":131,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-480.52,-167.187],[-480.52,-194.147],[-484.12,-194.147],[-484.12,-167.187]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-475.84,-182.907],[-475.84,-186.187],[-488.8,-186.187],[-488.8,-182.907]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":132,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-456.52,-167.187],[-451,-181.507],[-452.32,-181.507],[-446.84,-167.187],[-444.72,-167.187],[-437.24,-186.187],[-441,-186.187],[-446.44,-171.387],[-445.24,-171.387],[-450.64,-186.187],[-452.72,-186.187],[-458.12,-171.387],[-456.92,-171.387],[-462.36,-186.187],[-466.12,-186.187],[-458.64,-167.187]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":133,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.64,1.147],[1.106,0.64],[1.44,0],[1.146,-0.653],[0.64,-1.12],[0,-1.44],[0,0],[-0.427,0.747],[-0.747,0.427],[-0.96,0],[-0.894,-0.933],[0,-1.44],[0,0]],"o":[[0,0],[0,-1.493],[-0.64,-1.146],[-1.107,-0.64],[-1.44,0],[-1.147,0.654],[-0.64,1.12],[0,0],[0,-0.96],[0.426,-0.746],[0.746,-0.426],[1.44,0],[0.893,0.934],[0,0],[0,0]],"v":[[-417,-167.187],[-417,-178.987],[-417.96,-182.947],[-420.58,-185.627],[-424.4,-186.587],[-428.28,-185.607],[-430.96,-182.947],[-431.92,-179.107],[-430.44,-178.267],[-429.8,-180.827],[-428.04,-182.587],[-425.48,-183.227],[-421.98,-181.827],[-420.64,-178.267],[-420.64,-167.187]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-430.44,-167.187],[-430.44,-195.747],[-434.04,-195.747],[-434.04,-167.187]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":134,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.147,0.6],[-0.68,1.067],[-0.08,1.36],[0,0],[0.693,1.054],[1.133,0.6],[1.44,0],[1.4,-0.88],[0.813,-1.493],[0,-1.866],[-0.814,-1.493],[-1.4,-0.866],[-1.76,0]],"o":[[1.146,-0.6],[0.68,-1.066],[0,0],[-0.08,-1.386],[-0.694,-1.053],[-1.134,-0.6],[-1.76,0],[-1.4,0.88],[-0.814,1.494],[0,1.867],[0.813,1.494],[1.4,0.867],[1.44,0]],"v":[[-400.16,-167.687],[-397.42,-170.187],[-396.28,-173.827],[-396.28,-179.547],[-397.44,-183.207],[-400.18,-185.687],[-404.04,-186.587],[-408.78,-185.267],[-412.1,-181.707],[-413.32,-176.667],[-412.1,-171.627],[-408.78,-168.087],[-404.04,-166.787]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.933,0.56],[0.52,0.974],[0,1.28],[-0.52,0.974],[-0.92,0.56],[-1.2,0],[-0.894,-0.546],[-0.507,-0.986],[0,-1.28],[1.093,-1.213],[1.786,0]],"o":[[-0.934,-0.56],[-0.52,-0.973],[0,-1.253],[0.52,-0.973],[0.92,-0.56],[1.2,0],[0.893,0.547],[0.506,0.987],[0,1.894],[-1.094,1.214],[-1.2,0]],"v":[[-406.64,-171.027],[-408.82,-173.327],[-409.6,-176.707],[-408.82,-180.047],[-406.66,-182.347],[-403.48,-183.187],[-400.34,-182.367],[-398.24,-180.067],[-397.48,-176.667],[-399.12,-172.007],[-403.44,-170.187]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-394.08,-167.187],[-394.08,-186.187],[-397.72,-186.187],[-397.72,-181.547],[-397.04,-176.947],[-397.72,-172.307],[-397.72,-167.187]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":135,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-382.4,-167.187],[-382.4,-194.147],[-386,-194.147],[-386,-167.187]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-377.72,-182.907],[-377.72,-186.187],[-390.68,-186.187],[-390.68,-182.907]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":136,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.12,0.414],[0,0.32],[0.533,0.534],[0.693,0],[0.52,-0.533],[0,-0.746],[-0.467,-0.453],[-0.56,0],[-0.2,0.187],[-0.134,0.294],[0,0],[0,0]],"o":[[0,0],[0.346,-0.64],[0.12,-0.413],[0,-0.746],[-0.534,-0.533],[-0.747,0],[-0.52,0.534],[0,0.72],[0.466,0.454],[0.293,0],[0.2,-0.186],[0,0],[0,0],[0,0]],"v":[[-371.72,-184.987],[-369.08,-189.947],[-368.38,-191.527],[-368.2,-192.627],[-369,-194.547],[-370.84,-195.347],[-372.74,-194.547],[-373.52,-192.627],[-372.82,-190.867],[-371.28,-190.187],[-370.54,-190.467],[-370.04,-191.187],[-371.32,-190.867],[-373.8,-186.107]],"c":true},"ix":2},"nm":"’","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"’","np":3,"cix":2,"bm":0,"ix":137,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.267,1.04],[0,1.787],[0.493,0.72],[0.773,0.427],[0.853,0.254],[0.786,0.24],[0.48,0.347],[0,0.64],[-0.547,0.374],[-1.04,0],[-0.774,-0.373],[-0.56,-0.693],[0,0],[1.16,0.52],[1.493,0],[1.013,-0.453],[0.546,-0.84],[0,-1.146],[-0.494,-0.706],[-0.774,-0.4],[-0.867,-0.24],[-0.774,-0.253],[-0.494,-0.386],[0,-0.693],[0.613,-0.386],[1.12,0],[0.906,0.414],[0.693,0.854],[0,0],[-0.787,-0.52],[-0.96,-0.28],[-1.067,0]],"o":[[1.266,-1.04],[0,-1.173],[-0.494,-0.72],[-0.774,-0.426],[-0.854,-0.253],[-0.787,-0.24],[-0.48,-0.346],[0,-0.613],[0.546,-0.373],[0.986,0],[0.773,0.374],[0,0],[-0.747,-1.04],[-1.16,-0.52],[-1.414,0],[-1.014,0.454],[-0.547,0.84],[0,1.147],[0.493,0.707],[0.773,0.4],[0.866,0.24],[0.773,0.254],[0.493,0.387],[0,0.694],[-0.614,0.387],[-1.12,0],[-0.907,-0.413],[0,0],[0.586,0.72],[0.786,0.52],[0.96,0.28],[2.133,0]],"v":[[-355.22,-168.347],[-353.32,-172.587],[-354.06,-175.427],[-355.96,-177.147],[-358.4,-178.167],[-360.86,-178.907],[-362.76,-179.787],[-363.48,-181.267],[-362.66,-182.747],[-360.28,-183.307],[-357.64,-182.747],[-355.64,-181.147],[-353.32,-183.467],[-356.18,-185.807],[-360.16,-186.587],[-363.8,-185.907],[-366.14,-183.967],[-366.96,-180.987],[-366.22,-178.207],[-364.32,-176.547],[-361.86,-175.587],[-359.4,-174.847],[-357.5,-173.887],[-356.76,-172.267],[-357.68,-170.647],[-360.28,-170.067],[-363.32,-170.687],[-365.72,-172.587],[-368.04,-170.267],[-365.98,-168.407],[-363.36,-167.207],[-360.32,-166.787]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":138,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.64,1.147],[1.106,0.64],[1.44,0],[1.146,-0.653],[0.64,-1.12],[0,-1.44],[0,0],[-0.427,0.747],[-0.747,0.427],[-0.96,0],[-0.894,-0.933],[0,-1.44],[0,0]],"o":[[0,0],[0,-1.493],[-0.64,-1.146],[-1.107,-0.64],[-1.44,0],[-1.147,0.654],[-0.64,1.12],[0,0],[0,-0.96],[0.426,-0.746],[0.746,-0.426],[1.44,0],[0.893,0.934],[0,0],[0,0]],"v":[[-323.96,-167.187],[-323.96,-178.987],[-324.92,-182.947],[-327.54,-185.627],[-331.36,-186.587],[-335.24,-185.607],[-337.92,-182.947],[-338.88,-179.107],[-337.4,-178.267],[-336.76,-180.827],[-335,-182.587],[-332.44,-183.227],[-328.94,-181.827],[-327.6,-178.267],[-327.6,-167.187]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-337.4,-167.187],[-337.4,-195.747],[-341,-195.747],[-341,-167.187]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":139,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.147,0.6],[-0.68,1.067],[-0.08,1.36],[0,0],[0.693,1.054],[1.133,0.6],[1.44,0],[1.4,-0.88],[0.813,-1.493],[0,-1.866],[-0.814,-1.493],[-1.4,-0.866],[-1.76,0]],"o":[[1.146,-0.6],[0.68,-1.066],[0,0],[-0.08,-1.386],[-0.694,-1.053],[-1.134,-0.6],[-1.76,0],[-1.4,0.88],[-0.814,1.494],[0,1.867],[0.813,1.494],[1.4,0.867],[1.44,0]],"v":[[-307.12,-167.687],[-304.38,-170.187],[-303.24,-173.827],[-303.24,-179.547],[-304.4,-183.207],[-307.14,-185.687],[-311,-186.587],[-315.74,-185.267],[-319.06,-181.707],[-320.28,-176.667],[-319.06,-171.627],[-315.74,-168.087],[-311,-166.787]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.933,0.56],[0.52,0.974],[0,1.28],[-0.52,0.974],[-0.92,0.56],[-1.2,0],[-0.894,-0.546],[-0.507,-0.986],[0,-1.28],[1.093,-1.213],[1.786,0]],"o":[[-0.934,-0.56],[-0.52,-0.973],[0,-1.253],[0.52,-0.973],[0.92,-0.56],[1.2,0],[0.893,0.547],[0.506,0.987],[0,1.894],[-1.094,1.214],[-1.2,0]],"v":[[-313.6,-171.027],[-315.78,-173.327],[-316.56,-176.707],[-315.78,-180.047],[-313.62,-182.347],[-310.44,-183.187],[-307.3,-182.367],[-305.2,-180.067],[-304.44,-176.667],[-306.08,-172.007],[-310.4,-170.187]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-301.04,-167.187],[-301.04,-186.187],[-304.68,-186.187],[-304.68,-181.547],[-304,-176.947],[-304.68,-172.307],[-304.68,-167.187]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":140,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.4,0.867],[-0.8,1.494],[0,1.867],[0.8,1.494],[1.4,0.88],[1.733,0],[1.16,-0.6],[0.706,-1.053],[0.08,-1.386],[0,0],[-0.694,-1.066],[-1.16,-0.6],[-1.44,0]],"o":[[1.4,-0.866],[0.8,-1.493],[0,-1.866],[-0.8,-1.493],[-1.4,-0.88],[-1.414,0],[-1.16,0.6],[-0.707,1.054],[0,0],[0.08,1.36],[0.693,1.067],[1.16,0.6],[1.733,0]],"v":[[-281.1,-168.087],[-277.8,-171.627],[-276.6,-176.667],[-277.8,-181.707],[-281.1,-185.267],[-285.8,-186.587],[-289.66,-185.687],[-292.46,-183.207],[-293.64,-179.547],[-293.64,-173.827],[-292.48,-170.187],[-289.7,-167.687],[-285.8,-166.787]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-292.2,-159.227],[-292.2,-171.947],[-292.88,-176.587],[-292.2,-181.187],[-292.2,-186.187],[-295.8,-186.187],[-295.8,-159.227]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.92,0.56],[0.493,0.974],[0,1.254],[-0.507,0.974],[-0.907,0.56],[-1.174,0],[-0.907,-0.56],[-0.52,-0.973],[0,-1.253],[0.52,-0.973],[0.906,-0.56],[1.2,0]],"o":[[-0.92,-0.56],[-0.494,-0.973],[0,-1.28],[0.506,-0.973],[0.906,-0.56],[1.2,0],[0.906,0.56],[0.52,0.974],[0,1.28],[-0.52,0.974],[-0.907,0.56],[-1.174,0]],"v":[[-289.54,-171.027],[-291.66,-173.327],[-292.4,-176.667],[-291.64,-180.047],[-289.52,-182.347],[-286.4,-183.187],[-283.24,-182.347],[-281.1,-180.047],[-280.32,-176.707],[-281.1,-173.327],[-283.24,-171.027],[-286.4,-170.187]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":141,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.4,0.867],[-0.8,1.494],[0,1.867],[0.8,1.494],[1.4,0.88],[1.733,0],[1.16,-0.6],[0.706,-1.053],[0.08,-1.386],[0,0],[-0.694,-1.066],[-1.16,-0.6],[-1.44,0]],"o":[[1.4,-0.866],[0.8,-1.493],[0,-1.866],[-0.8,-1.493],[-1.4,-0.88],[-1.414,0],[-1.16,0.6],[-0.707,1.054],[0,0],[0.08,1.36],[0.693,1.067],[1.16,0.6],[1.733,0]],"v":[[-257.82,-168.087],[-254.52,-171.627],[-253.32,-176.667],[-254.52,-181.707],[-257.82,-185.267],[-262.52,-186.587],[-266.38,-185.687],[-269.18,-183.207],[-270.36,-179.547],[-270.36,-173.827],[-269.2,-170.187],[-266.42,-167.687],[-262.52,-166.787]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-268.92,-159.227],[-268.92,-171.947],[-269.6,-176.587],[-268.92,-181.187],[-268.92,-186.187],[-272.52,-186.187],[-272.52,-159.227]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.92,0.56],[0.493,0.974],[0,1.254],[-0.507,0.974],[-0.907,0.56],[-1.174,0],[-0.907,-0.56],[-0.52,-0.973],[0,-1.253],[0.52,-0.973],[0.906,-0.56],[1.2,0]],"o":[[-0.92,-0.56],[-0.494,-0.973],[0,-1.28],[0.506,-0.973],[0.906,-0.56],[1.2,0],[0.906,0.56],[0.52,0.974],[0,1.28],[-0.52,0.974],[-0.907,0.56],[-1.174,0]],"v":[[-266.26,-171.027],[-268.38,-173.327],[-269.12,-176.667],[-268.36,-180.047],[-266.24,-182.347],[-263.12,-183.187],[-259.96,-182.347],[-257.82,-180.047],[-257.04,-176.707],[-257.82,-173.327],[-259.96,-171.027],[-263.12,-170.187]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":142,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.307,0.56],[-0.934,1.067],[0,0],[0.893,-0.373],[1.066,0],[0.986,0.547],[0.533,1],[0,1.334],[-0.507,0.96],[-0.934,0.534],[-1.227,0],[-0.827,-0.493],[-0.454,-0.893],[0,-1.28],[0,0],[0,0],[0,0],[0,0],[-0.027,0.307],[0,0.267],[0.76,1.414],[1.36,0.8],[1.733,0],[1.48,-0.866],[0.866,-1.493],[0,-1.866],[-0.88,-1.493],[-1.507,-0.866],[-1.92,0]],"o":[[1.306,-0.56],[0,0],[-0.64,0.747],[-0.894,0.374],[-1.28,0],[-0.987,-0.546],[-0.534,-1],[0,-1.306],[0.506,-0.96],[0.933,-0.533],[1.173,0],[0.826,0.494],[0.453,0.894],[0,0],[0,0],[0,0],[0,0],[0.08,-0.373],[0.026,-0.306],[0,-1.813],[-0.76,-1.413],[-1.36,-0.8],[-1.84,0],[-1.48,0.867],[-0.867,1.494],[0,1.894],[0.88,1.494],[1.506,0.867],[1.493,0]],"v":[[-236.24,-167.627],[-232.88,-170.067],[-235.2,-172.427],[-237.5,-170.747],[-240.44,-170.187],[-243.84,-171.007],[-246.12,-173.327],[-246.92,-176.827],[-246.16,-180.227],[-244,-182.467],[-240.76,-183.267],[-237.76,-182.527],[-235.84,-180.447],[-235.16,-177.187],[-233.84,-178.347],[-247.96,-178.347],[-247.96,-175.347],[-231.92,-175.347],[-231.76,-176.367],[-231.72,-177.227],[-232.86,-182.067],[-236.04,-185.387],[-240.68,-186.587],[-245.66,-185.287],[-249.18,-181.747],[-250.48,-176.707],[-249.16,-171.627],[-245.58,-168.087],[-240.44,-166.787]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":143,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.64,1.16],[1.106,0.72],[1.44,0],[1.146,-0.653],[0.64,-1.12],[0,-1.44],[0,0],[-0.427,0.747],[-0.747,0.427],[-0.96,0],[-0.894,-0.933],[0,-1.44],[0,0]],"o":[[0,0],[0,-1.306],[-0.64,-1.16],[-1.107,-0.72],[-1.44,0],[-1.147,0.654],[-0.64,1.12],[0,0],[0,-0.96],[0.426,-0.746],[0.746,-0.426],[1.44,0],[0.893,0.934],[0,0],[0,0]],"v":[[-210.76,-167.187],[-210.76,-178.987],[-211.72,-182.687],[-214.34,-185.507],[-218.16,-186.587],[-222.04,-185.607],[-224.72,-182.947],[-225.68,-179.107],[-224.2,-178.267],[-223.56,-180.827],[-221.8,-182.587],[-219.24,-183.227],[-215.74,-181.827],[-214.4,-178.267],[-214.4,-167.187]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-224.2,-167.187],[-224.2,-186.187],[-227.8,-186.187],[-227.8,-167.187]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":144,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-202.24,-167.187],[-202.24,-186.187],[-205.88,-186.187],[-205.88,-167.187]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.427,0.44],[0,0.667],[0.426,0.44],[0.666,0],[0.426,-0.44],[0,-0.64],[-0.427,-0.44],[-0.667,0]],"o":[[0.426,-0.44],[0,-0.64],[-0.427,-0.44],[-0.667,0],[-0.427,0.44],[0,0.667],[0.426,0.44],[0.666,0]],"v":[[-202.4,-190.647],[-201.76,-192.307],[-202.4,-193.927],[-204.04,-194.587],[-205.68,-193.927],[-206.32,-192.307],[-205.68,-190.647],[-204.04,-189.987]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":145,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.64,1.16],[1.106,0.72],[1.44,0],[1.146,-0.653],[0.64,-1.12],[0,-1.44],[0,0],[-0.427,0.747],[-0.747,0.427],[-0.96,0],[-0.894,-0.933],[0,-1.44],[0,0]],"o":[[0,0],[0,-1.306],[-0.64,-1.16],[-1.107,-0.72],[-1.44,0],[-1.147,0.654],[-0.64,1.12],[0,0],[0,-0.96],[0.426,-0.746],[0.746,-0.426],[1.44,0],[0.893,0.934],[0,0],[0,0]],"v":[[-179.88,-167.187],[-179.88,-178.987],[-180.84,-182.687],[-183.46,-185.507],[-187.28,-186.587],[-191.16,-185.607],[-193.84,-182.947],[-194.8,-179.107],[-193.32,-178.267],[-192.68,-180.827],[-190.92,-182.587],[-188.36,-183.227],[-184.86,-181.827],[-183.52,-178.267],[-183.52,-167.187]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-193.32,-167.187],[-193.32,-186.187],[-196.92,-186.187],[-196.92,-167.187]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":146,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.507,0.76],[-0.84,1.373],[0,1.813],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.146,-1.027],[1.92,0],[1.066,0.52],[0.773,0.986],[0,0],[-1.494,-0.72],[-1.974,0]],"o":[[1.506,-0.76],[0.84,-1.374],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.733],[-1.147,1.026],[-1.467,0],[-1.067,-0.52],[0,0],[0.933,1.306],[1.493,0.72],[1.973,0]],"v":[[-161.9,-159.967],[-158.38,-163.167],[-157.12,-167.947],[-157.12,-186.187],[-160.72,-186.187],[-160.72,-181.187],[-160.08,-176.947],[-160.72,-172.667],[-160.72,-167.947],[-162.44,-163.807],[-167.04,-162.267],[-170.84,-163.047],[-173.6,-165.307],[-175.96,-162.947],[-172.32,-159.907],[-167.12,-158.827]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.147,0.587],[-0.68,1.054],[-0.08,1.387],[0,0],[0.666,1.054],[1.16,0.587],[1.493,0],[1.386,-0.84],[0.786,-1.426],[0,-1.813],[-0.8,-1.453],[-1.374,-0.826],[-1.734,0]],"o":[[1.146,-0.586],[0.68,-1.053],[0,0],[-0.08,-1.413],[-0.667,-1.053],[-1.16,-0.586],[-1.707,0],[-1.387,0.84],[-0.787,1.427],[0,1.814],[0.8,1.454],[1.373,0.827],[1.466,0]],"v":[[-163.2,-168.387],[-160.46,-170.847],[-159.32,-174.507],[-159.32,-179.547],[-160.44,-183.247],[-163.18,-185.707],[-167.16,-186.587],[-171.8,-185.327],[-175.06,-181.927],[-176.24,-177.067],[-175.04,-172.167],[-171.78,-168.747],[-167.12,-167.507]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.92,0.52],[0.52,0.934],[0,1.2],[-0.52,0.92],[-0.907,0.52],[-1.2,0],[-0.894,-0.52],[-0.494,-0.92],[0,-1.226],[0.493,-0.92],[0.88,-0.506],[1.2,0]],"o":[[-0.92,-0.52],[-0.52,-0.933],[0,-1.2],[0.52,-0.92],[0.906,-0.52],[1.173,0],[0.893,0.52],[0.493,0.92],[0,1.227],[-0.494,0.92],[-0.88,0.507],[-1.174,0]],"v":[[-169.58,-171.687],[-171.74,-173.867],[-172.52,-177.067],[-171.74,-180.247],[-169.6,-182.407],[-166.44,-183.187],[-163.34,-182.407],[-161.26,-180.247],[-160.52,-177.027],[-161.26,-173.807],[-163.32,-171.667],[-166.44,-170.907]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":147,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.12,0.414],[0,0.294],[0.533,0.52],[0.693,0],[0.506,-0.52],[0,-0.773],[-0.467,-0.466],[-0.56,0],[-0.214,0.186],[-0.134,0.294],[0,0],[0,0]],"o":[[0,0],[0.346,-0.666],[0.12,-0.413],[0,-0.773],[-0.534,-0.52],[-0.774,0],[-0.507,0.52],[0,0.694],[0.466,0.466],[0.266,0],[0.213,-0.186],[0,0],[0,0],[0,0]],"v":[[-149.64,-161.667],[-146.96,-166.627],[-146.26,-168.247],[-146.08,-169.307],[-146.88,-171.247],[-148.72,-172.027],[-150.64,-171.247],[-151.4,-169.307],[-150.7,-167.567],[-149.16,-166.867],[-148.44,-167.147],[-147.92,-167.867],[-149.2,-167.547],[-151.68,-162.787]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":148,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.267,0.56],[-0.88,1.014],[0,0],[0.84,-0.36],[1.013,0],[0.933,0.56],[0.533,0.96],[0,1.254],[-0.534,0.96],[-0.934,0.547],[-1.2,0],[-0.854,-0.36],[-0.587,-0.693],[0,0],[1.253,0.547],[1.466,0],[1.506,-0.866],[0.866,-1.493],[0,-1.866],[-0.867,-1.506],[-1.507,-0.88],[-1.867,0]],"o":[[1.266,-0.56],[0,0],[-0.614,0.694],[-0.84,0.36],[-1.2,0],[-0.934,-0.56],[-0.534,-0.96],[0,-1.253],[0.533,-0.96],[0.933,-0.546],[0.986,0],[0.853,0.36],[0,0],[-0.907,-1.04],[-1.254,-0.546],[-1.867,0],[-1.507,0.867],[-0.867,1.494],[0,1.84],[0.866,1.507],[1.506,0.88],[1.466,0]],"v":[[-119.82,-167.627],[-116.6,-169.987],[-118.96,-172.387],[-121.14,-170.807],[-123.92,-170.267],[-127.12,-171.107],[-129.32,-173.387],[-130.12,-176.707],[-129.32,-180.027],[-127.12,-182.287],[-123.92,-183.107],[-121.16,-182.567],[-119,-180.987],[-116.6,-183.387],[-119.84,-185.767],[-123.92,-186.587],[-128.98,-185.287],[-132.54,-181.747],[-133.84,-176.707],[-132.54,-171.687],[-128.98,-168.107],[-123.92,-166.787]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":149,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-109.44,-167.187],[-109.44,-195.747],[-113.04,-195.747],[-113.04,-167.187]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":150,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-100.52,-167.187],[-100.52,-186.187],[-104.16,-186.187],[-104.16,-167.187]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.427,0.44],[0,0.667],[0.426,0.44],[0.666,0],[0.426,-0.44],[0,-0.64],[-0.427,-0.44],[-0.667,0]],"o":[[0.426,-0.44],[0,-0.64],[-0.427,-0.44],[-0.667,0],[-0.427,0.44],[0,0.667],[0.426,0.44],[0.666,0]],"v":[[-100.68,-190.647],[-100.04,-192.307],[-100.68,-193.927],[-102.32,-194.587],[-103.96,-193.927],[-104.6,-192.307],[-103.96,-190.647],[-102.32,-189.987]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":151,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.267,0.56],[-0.88,1.014],[0,0],[0.84,-0.36],[1.013,0],[0.933,0.56],[0.533,0.96],[0,1.254],[-0.534,0.96],[-0.934,0.547],[-1.2,0],[-0.854,-0.36],[-0.587,-0.693],[0,0],[1.253,0.547],[1.466,0],[1.506,-0.866],[0.866,-1.493],[0,-1.866],[-0.867,-1.506],[-1.507,-0.88],[-1.867,0]],"o":[[1.266,-0.56],[0,0],[-0.614,0.694],[-0.84,0.36],[-1.2,0],[-0.934,-0.56],[-0.534,-0.96],[0,-1.253],[0.533,-0.96],[0.933,-0.546],[0.986,0],[0.853,0.36],[0,0],[-0.907,-1.04],[-1.254,-0.546],[-1.867,0],[-1.507,0.867],[-0.867,1.494],[0,1.84],[0.866,1.507],[1.506,0.88],[1.466,0]],"v":[[-82.42,-167.627],[-79.2,-169.987],[-81.56,-172.387],[-83.74,-170.807],[-86.52,-170.267],[-89.72,-171.107],[-91.92,-173.387],[-92.72,-176.707],[-91.92,-180.027],[-89.72,-182.287],[-86.52,-183.107],[-83.76,-182.567],[-81.6,-180.987],[-79.2,-183.387],[-82.44,-185.767],[-86.52,-186.587],[-91.58,-185.287],[-95.14,-181.747],[-96.44,-176.707],[-95.14,-171.687],[-91.58,-168.107],[-86.52,-166.787]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":152,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-58.84,-167.187],[-68.84,-178.027],[-69,-175.947],[-59.2,-186.187],[-63.6,-186.187],[-72.36,-176.907],[-63.48,-167.187]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-72.04,-167.187],[-72.04,-195.747],[-75.64,-195.747],[-75.64,-167.187]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"k","np":5,"cix":2,"bm":0,"ix":153,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-40.92,-167.187],[-40.92,-194.147],[-44.52,-194.147],[-44.52,-167.187]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-36.24,-182.907],[-36.24,-186.187],[-49.2,-186.187],[-49.2,-182.907]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":154,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.64,1.147],[1.106,0.64],[1.44,0],[1.146,-0.653],[0.64,-1.12],[0,-1.44],[0,0],[-0.427,0.747],[-0.747,0.427],[-0.96,0],[-0.894,-0.933],[0,-1.44],[0,0]],"o":[[0,0],[0,-1.493],[-0.64,-1.146],[-1.107,-0.64],[-1.44,0],[-1.147,0.654],[-0.64,1.12],[0,0],[0,-0.96],[0.426,-0.746],[0.746,-0.426],[1.44,0],[0.893,0.934],[0,0],[0,0]],"v":[[-15.68,-167.187],[-15.68,-178.987],[-16.64,-182.947],[-19.26,-185.627],[-23.08,-186.587],[-26.96,-185.607],[-29.64,-182.947],[-30.6,-179.107],[-29.12,-178.267],[-28.48,-180.827],[-26.72,-182.587],[-24.16,-183.227],[-20.66,-181.827],[-19.32,-178.267],[-19.32,-167.187]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-29.12,-167.187],[-29.12,-195.747],[-32.72,-195.747],[-32.72,-167.187]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":155,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.307,0.56],[-0.934,1.067],[0,0],[0.893,-0.373],[1.066,0],[0.986,0.547],[0.533,1],[0,1.334],[-0.507,0.96],[-0.934,0.534],[-1.227,0],[-0.827,-0.493],[-0.454,-0.893],[0,-1.28],[0,0],[0,0],[0,0],[0,0],[-0.027,0.307],[0,0.267],[0.76,1.414],[1.36,0.8],[1.733,0],[1.48,-0.866],[0.866,-1.493],[0,-1.866],[-0.88,-1.493],[-1.507,-0.866],[-1.92,0]],"o":[[1.306,-0.56],[0,0],[-0.64,0.747],[-0.894,0.374],[-1.28,0],[-0.987,-0.546],[-0.534,-1],[0,-1.306],[0.506,-0.96],[0.933,-0.533],[1.173,0],[0.826,0.494],[0.453,0.894],[0,0],[0,0],[0,0],[0,0],[0.08,-0.373],[0.026,-0.306],[0,-1.813],[-0.76,-1.413],[-1.36,-0.8],[-1.84,0],[-1.48,0.867],[-0.867,1.494],[0,1.894],[0.88,1.494],[1.506,0.867],[1.493,0]],"v":[[2.2,-167.627],[5.56,-170.067],[3.24,-172.427],[0.94,-170.747],[-2,-170.187],[-5.4,-171.007],[-7.68,-173.327],[-8.48,-176.827],[-7.72,-180.227],[-5.56,-182.467],[-2.32,-183.267],[0.68,-182.527],[2.6,-180.447],[3.28,-177.187],[4.6,-178.347],[-9.52,-178.347],[-9.52,-175.347],[6.52,-175.347],[6.68,-176.367],[6.72,-177.227],[5.58,-182.067],[2.4,-185.387],[-2.24,-186.587],[-7.22,-185.287],[-10.74,-181.747],[-12.04,-176.707],[-10.72,-171.627],[-7.14,-168.087],[-2,-166.787]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":156,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.12,-0.413],[0,-0.293],[-0.534,-0.533],[-0.72,0],[-0.52,0.534],[0,0.747],[0.466,0.454],[0.56,0],[0.2,-0.186],[0.133,-0.293],[0,0],[0,0]],"o":[[0,0],[-0.347,0.667],[-0.12,0.414],[0,0.747],[0.533,0.534],[0.72,0],[0.52,-0.533],[0,-0.72],[-0.467,-0.453],[-0.267,0],[-0.2,0.187],[0,0],[0,0],[0,0]],"v":[[21.88,-196.107],[19.2,-191.147],[18.5,-189.527],[18.32,-188.467],[19.12,-186.547],[21,-185.747],[22.86,-186.547],[23.64,-188.467],[22.94,-190.227],[21.4,-190.907],[20.7,-190.627],[20.2,-189.907],[21.44,-190.227],[23.92,-194.987]],"c":true},"ix":2},"nm":"“","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.133,-0.413],[0,-0.293],[-0.534,-0.533],[-0.72,0],[-0.52,0.534],[0,0.747],[0.466,0.454],[0.56,0],[0.2,-0.186],[0.133,-0.293],[0,0],[0,0]],"o":[[0,0],[-0.32,0.667],[-0.134,0.414],[0,0.747],[0.533,0.534],[0.72,0],[0.52,-0.533],[0,-0.72],[-0.467,-0.453],[-0.267,0],[-0.2,0.187],[0,0],[0,0],[0,0]],"v":[[29.24,-196.107],[26.56,-191.147],[25.88,-189.527],[25.68,-188.467],[26.48,-186.547],[28.36,-185.747],[30.22,-186.547],[31,-188.467],[30.3,-190.227],[28.76,-190.907],[28.06,-190.627],[27.56,-189.907],[28.8,-190.227],[31.28,-194.987]],"c":true},"ix":2},"nm":"“","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"“","np":5,"cix":2,"bm":0,"ix":157,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[42.56,-167.187],[42.56,-195.427],[36.24,-195.427],[36.24,-167.187]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[55.08,-167.187],[55.08,-172.707],[41.12,-172.707],[41.12,-167.187]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"L","np":5,"cix":2,"bm":0,"ix":158,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.36,0.546],[-0.96,1.147],[0,0],[0.773,-0.333],[0.933,0],[0.76,0.44],[0.413,0.827],[0,1.12],[-0.387,0.8],[-0.707,0.454],[-0.96,0],[-0.627,-0.4],[-0.32,-0.733],[-0.027,-1.093],[0,0],[0,0],[0,0],[0,0],[-0.04,0.387],[0,0.374],[0.853,1.467],[1.466,0.827],[1.946,0],[1.573,-0.88],[0.906,-1.533],[0,-1.92],[-0.934,-1.546],[-1.627,-0.866],[-2.107,0]],"o":[[1.36,-0.546],[0,0],[-0.587,0.667],[-0.774,0.334],[-1.04,0],[-0.76,-0.44],[-0.414,-0.826],[0,-1.12],[0.386,-0.8],[0.706,-0.453],[0.88,0],[0.626,0.4],[0.32,0.734],[0,0],[0,0],[0,0],[0,0],[0.133,-0.48],[0.04,-0.386],[0,-1.893],[-0.854,-1.466],[-1.467,-0.826],[-1.974,0],[-1.574,0.88],[-0.907,1.534],[0,1.974],[0.933,1.547],[1.626,0.866],[1.653,0]],"v":[[71.92,-167.567],[75.4,-170.107],[72,-173.467],[69.96,-171.967],[67.4,-171.467],[64.7,-172.127],[62.94,-174.027],[62.32,-176.947],[62.9,-179.827],[64.54,-181.707],[67.04,-182.387],[69.3,-181.787],[70.72,-180.087],[71.24,-177.347],[73.88,-179.147],[59.8,-179.067],[59.8,-174.827],[76.52,-174.907],[76.78,-176.207],[76.84,-177.347],[75.56,-182.387],[72.08,-185.827],[66.96,-187.067],[61.64,-185.747],[57.92,-182.127],[56.56,-176.947],[57.96,-171.667],[61.8,-168.047],[67.4,-166.747]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":159,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.054,0.506],[-0.654,0.894],[-0.08,1.147],[0,0],[0.666,0.894],[1.053,0.507],[1.306,0],[1.4,-0.866],[0.813,-1.533],[0,-1.946],[-0.814,-1.506],[-1.414,-0.893],[-1.76,0]],"o":[[1.053,-0.506],[0.653,-0.893],[0,0],[-0.08,-1.146],[-0.667,-0.893],[-1.054,-0.506],[-1.787,0],[-1.4,0.867],[-0.814,1.534],[0,1.947],[0.813,1.507],[1.413,0.894],[1.333,0]],"v":[[91.42,-167.547],[93.98,-169.647],[95.08,-172.707],[95.08,-181.107],[93.96,-184.167],[91.38,-186.267],[87.84,-187.027],[83.06,-185.727],[79.74,-182.127],[78.52,-176.907],[79.74,-171.727],[83.08,-168.127],[87.84,-166.787]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.653,0.387],[0.386,0.694],[0,0.88],[-0.387,0.694],[-0.654,0.387],[-0.827,0],[-0.667,-0.386],[-0.347,-0.68],[0,-0.88],[0.786,-0.853],[1.306,0]],"o":[[-0.654,-0.386],[-0.387,-0.693],[0,-0.88],[0.386,-0.693],[0.653,-0.386],[0.853,0],[0.666,0.387],[0.346,0.68],[0,1.36],[-0.787,0.854],[-0.827,0]],"v":[[86.9,-172.927],[85.34,-174.547],[84.76,-176.907],[85.34,-179.267],[86.9,-180.887],[89.12,-181.467],[91.4,-180.887],[92.92,-179.287],[93.44,-176.947],[92.26,-173.627],[89.12,-172.347]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[99.24,-167.187],[99.24,-186.627],[93.2,-186.627],[93.2,-181.867],[94.12,-177.187],[93.2,-172.427],[93.2,-167.187]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":160,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[109.68,-167.187],[109.68,-186.627],[103.52,-186.627],[103.52,-167.187]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.6,0.627],[-1.04,0],[-0.4,-0.16],[-0.24,-0.266],[0,0],[0.706,0.28],[0.933,0],[1.213,-1.253],[0.506,-2.293],[0,0]],"o":[[0.6,-0.626],[0.506,0],[0.4,0.16],[0,0],[-0.534,-0.56],[-0.707,-0.28],[-2.107,0],[-1.214,1.254],[0,0],[0,-1.253]],"v":[[110.58,-180.647],[113.04,-181.587],[114.4,-181.347],[115.36,-180.707],[119,-185.347],[117.14,-186.607],[114.68,-187.027],[109.7,-185.147],[107.12,-179.827],[109.68,-177.827]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":161,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.64,1.134],[1.12,0.667],[1.413,0],[1.186,-0.626],[0.68,-1.146],[0,-1.52],[0,0],[-0.294,0.507],[-0.507,0.28],[-0.64,0],[-0.64,-0.626],[0,-0.986],[0,0]],"o":[[0,0],[0,-1.333],[-0.64,-1.133],[-1.12,-0.666],[-1.494,0],[-1.187,0.627],[-0.68,1.147],[0,0],[0,-0.666],[0.293,-0.506],[0.506,-0.28],[0.96,0],[0.64,0.627],[0,0],[0,0]],"v":[[139.48,-167.187],[139.48,-179.627],[138.52,-183.327],[135.88,-186.027],[132.08,-187.027],[128.06,-186.087],[125.26,-183.427],[124.24,-179.427],[126.6,-178.267],[127.04,-180.027],[128.24,-181.207],[129.96,-181.627],[132.36,-180.687],[133.32,-178.267],[133.32,-167.187]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[126.6,-167.187],[126.6,-186.627],[120.44,-186.627],[120.44,-167.187]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":162,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[157.76,-167.187],[157.76,-184.827],[156.68,-184.507],[163.88,-173.267],[168.04,-173.267],[175.24,-184.507],[174.16,-184.827],[174.16,-167.187],[180.44,-167.187],[180.44,-195.427],[175.88,-195.427],[164.8,-178.107],[167.16,-178.107],[156.04,-195.427],[151.48,-195.427],[151.48,-167.187]],"c":true},"ix":2},"nm":"M","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"M","np":3,"cix":2,"bm":0,"ix":163,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.6,0.907],[-0.934,1.534],[0,1.947],[0.933,1.534],[1.613,0.88],[2,0],[1.6,-0.893],[0.92,-1.52],[0,-1.893],[-0.934,-1.546],[-1.6,-0.906],[-2.027,0]],"o":[[1.6,-0.906],[0.933,-1.533],[0,-1.893],[-0.934,-1.533],[-1.614,-0.88],[-2.054,0],[-1.6,0.894],[-0.92,1.52],[0,1.92],[0.933,1.547],[1.6,0.907],[2.026,0]],"v":[[200.08,-168.107],[203.88,-171.767],[205.28,-176.987],[203.88,-182.127],[200.06,-185.747],[194.64,-187.067],[189.16,-185.727],[185.38,-182.107],[184,-176.987],[185.4,-171.787],[189.2,-168.107],[194.64,-166.747]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.666,0.374],[0.373,0.707],[0,0.907],[-0.374,0.694],[-0.667,0.387],[-0.854,0],[-0.654,-0.386],[-0.374,-0.68],[0,-0.88],[0.36,-0.706],[0.666,-0.373],[0.853,0]],"o":[[-0.667,-0.373],[-0.374,-0.706],[0,-0.853],[0.373,-0.693],[0.666,-0.386],[0.853,0],[0.653,0.387],[0.373,0.68],[0,0.907],[-0.36,0.707],[-0.667,0.374],[-0.854,0]],"v":[[192.36,-172.907],[190.8,-174.527],[190.24,-176.947],[190.8,-179.267],[192.36,-180.887],[194.64,-181.467],[196.9,-180.887],[198.44,-179.287],[199,-176.947],[198.46,-174.527],[196.92,-172.907],[194.64,-172.347]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":164,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[214.44,-167.187],[214.44,-186.627],[208.28,-186.627],[208.28,-167.187]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.6,0.627],[-1.04,0],[-0.4,-0.16],[-0.24,-0.266],[0,0],[0.706,0.28],[0.933,0],[1.213,-1.253],[0.506,-2.293],[0,0]],"o":[[0.6,-0.626],[0.506,0],[0.4,0.16],[0,0],[-0.534,-0.56],[-0.707,-0.28],[-2.107,0],[-1.214,1.254],[0,0],[0,-1.253]],"v":[[215.34,-180.647],[217.8,-181.587],[219.16,-181.347],[220.12,-180.707],[223.76,-185.347],[221.9,-186.607],[219.44,-187.027],[214.46,-185.147],[211.88,-179.827],[214.44,-177.827]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":165,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.36,0.546],[-0.96,1.147],[0,0],[0.773,-0.333],[0.933,0],[0.76,0.44],[0.413,0.827],[0,1.12],[-0.387,0.8],[-0.707,0.454],[-0.96,0],[-0.627,-0.4],[-0.32,-0.733],[-0.027,-1.093],[0,0],[0,0],[0,0],[0,0],[-0.04,0.387],[0,0.374],[0.853,1.467],[1.466,0.827],[1.946,0],[1.573,-0.88],[0.906,-1.533],[0,-1.92],[-0.934,-1.546],[-1.627,-0.866],[-2.107,0]],"o":[[1.36,-0.546],[0,0],[-0.587,0.667],[-0.774,0.334],[-1.04,0],[-0.76,-0.44],[-0.414,-0.826],[0,-1.12],[0.386,-0.8],[0.706,-0.453],[0.88,0],[0.626,0.4],[0.32,0.734],[0,0],[0,0],[0,0],[0,0],[0.133,-0.48],[0.04,-0.386],[0,-1.893],[-0.854,-1.466],[-1.467,-0.826],[-1.974,0],[-1.574,0.88],[-0.907,1.534],[0,1.974],[0.933,1.547],[1.626,0.866],[1.653,0]],"v":[[238.92,-167.567],[242.4,-170.107],[239,-173.467],[236.96,-171.967],[234.4,-171.467],[231.7,-172.127],[229.94,-174.027],[229.32,-176.947],[229.9,-179.827],[231.54,-181.707],[234.04,-182.387],[236.3,-181.787],[237.72,-180.087],[238.24,-177.347],[240.88,-179.147],[226.8,-179.067],[226.8,-174.827],[243.52,-174.907],[243.78,-176.207],[243.84,-177.347],[242.56,-182.387],[239.08,-185.827],[233.96,-187.067],[228.64,-185.747],[224.92,-182.127],[223.56,-176.947],[224.96,-171.667],[228.8,-168.047],[234.4,-166.747]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":166,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.12,0.414],[0,0.32],[0.533,0.534],[0.693,0],[0.52,-0.533],[0,-0.746],[-0.467,-0.453],[-0.56,0],[-0.2,0.187],[-0.134,0.294],[0,0],[0,0]],"o":[[0,0],[0.346,-0.64],[0.12,-0.413],[0,-0.746],[-0.534,-0.533],[-0.747,0],[-0.52,0.534],[0,0.72],[0.466,0.454],[0.293,0],[0.2,-0.186],[0,0],[0,0],[0,0]],"v":[[256.36,-184.987],[259,-189.947],[259.7,-191.527],[259.88,-192.627],[259.08,-194.547],[257.24,-195.347],[255.34,-194.547],[254.56,-192.627],[255.26,-190.867],[256.8,-190.187],[257.54,-190.467],[258.04,-191.187],[256.76,-190.867],[254.28,-186.107]],"c":true},"ix":2},"nm":"”","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.12,0.414],[0,0.32],[0.533,0.534],[0.693,0],[0.52,-0.533],[0,-0.746],[-0.467,-0.453],[-0.56,0],[-0.2,0.187],[-0.134,0.294],[0,0],[0,0]],"o":[[0,0],[0.346,-0.64],[0.12,-0.413],[0,-0.746],[-0.534,-0.533],[-0.747,0],[-0.52,0.534],[0,0.72],[0.466,0.454],[0.293,0],[0.2,-0.186],[0,0],[0,0],[0,0]],"v":[[249,-184.987],[251.64,-189.947],[252.34,-191.527],[252.52,-192.627],[251.72,-194.547],[249.88,-195.347],[247.98,-194.547],[247.2,-192.627],[247.9,-190.867],[249.44,-190.187],[250.18,-190.467],[250.68,-191.187],[249.4,-190.867],[246.92,-186.107]],"c":true},"ix":2},"nm":"”","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"”","np":5,"cix":2,"bm":0,"ix":167,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.4,0.867],[-0.8,1.494],[0,1.867],[0.8,1.494],[1.4,0.88],[1.733,0],[1.16,-0.6],[0.706,-1.053],[0.08,-1.386],[0,0],[-0.694,-1.066],[-1.16,-0.6],[-1.44,0]],"o":[[1.4,-0.866],[0.8,-1.493],[0,-1.866],[-0.8,-1.493],[-1.4,-0.88],[-1.414,0],[-1.16,0.6],[-0.707,1.054],[0,0],[0.08,1.36],[0.693,1.067],[1.16,0.6],[1.733,0]],"v":[[287.54,-168.087],[290.84,-171.627],[292.04,-176.667],[290.84,-181.707],[287.54,-185.267],[282.84,-186.587],[278.98,-185.687],[276.18,-183.207],[275,-179.547],[275,-173.827],[276.16,-170.187],[278.94,-167.687],[282.84,-166.787]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[276.44,-167.187],[276.44,-172.307],[275.76,-176.947],[276.44,-181.547],[276.44,-195.747],[272.84,-195.747],[272.84,-167.187]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.92,0.56],[0.493,0.974],[0,1.254],[-0.507,0.974],[-0.907,0.56],[-1.174,0],[-0.907,-0.56],[-0.52,-0.973],[0,-1.253],[0.52,-0.973],[0.906,-0.56],[1.2,0]],"o":[[-0.92,-0.56],[-0.494,-0.973],[0,-1.28],[0.506,-0.973],[0.906,-0.56],[1.2,0],[0.906,0.56],[0.52,0.974],[0,1.28],[-0.52,0.974],[-0.907,0.56],[-1.174,0]],"v":[[279.1,-171.027],[276.98,-173.327],[276.24,-176.667],[277,-180.047],[279.12,-182.347],[282.24,-183.187],[285.4,-182.347],[287.54,-180.047],[288.32,-176.707],[287.54,-173.327],[285.4,-171.027],[282.24,-170.187]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":168,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.227,0.68],[-0.694,1.254],[0,1.654],[0,0],[0,0],[0,0],[0.8,-0.893],[1.413,0],[0.693,0.4],[0.36,0.76],[0,1.04],[0,0],[0,0],[0,0],[-0.694,-1.253],[-1.24,-0.68],[-1.574,0]],"o":[[1.226,-0.68],[0.693,-1.253],[0,0],[0,0],[0,0],[0,1.574],[-0.8,0.894],[-0.934,0],[-0.694,-0.4],[-0.36,-0.76],[0,0],[0,0],[0,0],[0,1.654],[0.693,1.254],[1.24,0.68],[1.573,0]],"v":[[308,-167.887],[310.88,-170.787],[311.92,-175.147],[311.92,-186.187],[308.32,-186.187],[308.32,-175.307],[307.12,-171.607],[303.8,-170.267],[301.36,-170.867],[299.78,-172.607],[299.24,-175.307],[299.24,-186.187],[295.64,-186.187],[295.64,-175.147],[296.68,-170.787],[299.58,-167.887],[303.8,-166.867]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":169,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[323.28,-167.187],[323.28,-194.147],[319.68,-194.147],[319.68,-167.187]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[327.96,-182.907],[327.96,-186.187],[315,-186.187],[315,-182.907]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":170,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[337.28,-167.187],[337.28,-194.147],[333.68,-194.147],[333.68,-167.187]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[341.96,-182.907],[341.96,-186.187],[329,-186.187],[329,-182.907]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":171,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.507,0.88],[-0.88,1.507],[0,1.867],[0.88,1.494],[1.506,0.867],[1.866,0],[1.493,-0.88],[0.88,-1.48],[0,-1.84],[-0.88,-1.506],[-1.494,-0.88],[-1.84,0]],"o":[[1.506,-0.88],[0.88,-1.506],[0,-1.84],[-0.88,-1.493],[-1.507,-0.866],[-1.84,0],[-1.494,0.88],[-0.88,1.48],[0,1.867],[0.88,1.507],[1.493,0.88],[1.866,0]],"v":[[358.58,-168.107],[362.16,-171.687],[363.48,-176.747],[362.16,-181.747],[358.58,-185.287],[353.52,-186.587],[348.52,-185.267],[344.96,-181.727],[343.64,-176.747],[344.96,-171.687],[348.52,-168.107],[353.52,-166.787]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.933,0.56],[0.533,0.974],[0,1.254],[-0.534,0.96],[-0.934,0.547],[-1.174,0],[-0.92,-0.546],[-0.547,-0.96],[0,-1.226],[0.533,-0.973],[0.933,-0.56],[1.226,0]],"o":[[-0.934,-0.56],[-0.534,-0.973],[0,-1.226],[0.533,-0.96],[0.933,-0.546],[1.226,0],[0.92,0.547],[0.546,0.96],[0,1.254],[-0.534,0.974],[-0.934,0.56],[-1.174,0]],"v":[[350.36,-171.107],[348.16,-173.407],[347.36,-176.747],[348.16,-180.027],[350.36,-182.287],[353.52,-183.107],[356.74,-182.287],[358.94,-180.027],[359.76,-176.747],[358.96,-173.407],[356.76,-171.107],[353.52,-170.267]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":172,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.64,1.16],[1.106,0.72],[1.44,0],[1.146,-0.653],[0.64,-1.12],[0,-1.44],[0,0],[-0.427,0.747],[-0.747,0.427],[-0.96,0],[-0.894,-0.933],[0,-1.44],[0,0]],"o":[[0,0],[0,-1.306],[-0.64,-1.16],[-1.107,-0.72],[-1.44,0],[-1.147,0.654],[-0.64,1.12],[0,0],[0,-0.96],[0.426,-0.746],[0.746,-0.426],[1.44,0],[0.893,0.934],[0,0],[0,0]],"v":[[384.52,-167.187],[384.52,-178.987],[383.56,-182.687],[380.94,-185.507],[377.12,-186.587],[373.24,-185.607],[370.56,-182.947],[369.6,-179.107],[371.08,-178.267],[371.72,-180.827],[373.48,-182.587],[376.04,-183.227],[379.54,-181.827],[380.88,-178.267],[380.88,-167.187]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[371.08,-167.187],[371.08,-186.187],[367.48,-186.187],[367.48,-167.187]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":173,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.4,0.867],[-0.8,1.494],[0,1.867],[0.8,1.494],[1.4,0.88],[1.733,0],[1.16,-0.6],[0.706,-1.053],[0.08,-1.386],[0,0],[-0.694,-1.066],[-1.16,-0.6],[-1.44,0]],"o":[[1.4,-0.866],[0.8,-1.493],[0,-1.866],[-0.8,-1.493],[-1.4,-0.88],[-1.414,0],[-1.16,0.6],[-0.707,1.054],[0,0],[0.08,1.36],[0.693,1.067],[1.16,0.6],[1.733,0]],"v":[[412.38,-168.087],[415.68,-171.627],[416.88,-176.667],[415.68,-181.707],[412.38,-185.267],[407.68,-186.587],[403.82,-185.687],[401.02,-183.207],[399.84,-179.547],[399.84,-173.827],[401,-170.187],[403.78,-167.687],[407.68,-166.787]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[401.28,-167.187],[401.28,-172.307],[400.6,-176.947],[401.28,-181.547],[401.28,-195.747],[397.68,-195.747],[397.68,-167.187]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.92,0.56],[0.493,0.974],[0,1.254],[-0.507,0.974],[-0.907,0.56],[-1.174,0],[-0.907,-0.56],[-0.52,-0.973],[0,-1.253],[0.52,-0.973],[0.906,-0.56],[1.2,0]],"o":[[-0.92,-0.56],[-0.494,-0.973],[0,-1.28],[0.506,-0.973],[0.906,-0.56],[1.2,0],[0.906,0.56],[0.52,0.974],[0,1.28],[-0.52,0.974],[-0.907,0.56],[-1.174,0]],"v":[[403.94,-171.027],[401.82,-173.327],[401.08,-176.667],[401.84,-180.047],[403.96,-182.347],[407.08,-183.187],[410.24,-182.347],[412.38,-180.047],[413.16,-176.707],[412.38,-173.327],[410.24,-171.027],[407.08,-170.187]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":174,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.307,0.56],[-0.934,1.067],[0,0],[0.893,-0.373],[1.066,0],[0.986,0.547],[0.533,1],[0,1.334],[-0.507,0.96],[-0.934,0.534],[-1.227,0],[-0.827,-0.493],[-0.454,-0.893],[0,-1.28],[0,0],[0,0],[0,0],[0,0],[-0.027,0.307],[0,0.267],[0.76,1.414],[1.36,0.8],[1.733,0],[1.48,-0.866],[0.866,-1.493],[0,-1.866],[-0.88,-1.493],[-1.507,-0.866],[-1.92,0]],"o":[[1.306,-0.56],[0,0],[-0.64,0.747],[-0.894,0.374],[-1.28,0],[-0.987,-0.546],[-0.534,-1],[0,-1.306],[0.506,-0.96],[0.933,-0.533],[1.173,0],[0.826,0.494],[0.453,0.894],[0,0],[0,0],[0,0],[0,0],[0.08,-0.373],[0.026,-0.306],[0,-1.813],[-0.76,-1.413],[-1.36,-0.8],[-1.84,0],[-1.48,0.867],[-0.867,1.494],[0,1.894],[0.88,1.494],[1.506,0.867],[1.493,0]],"v":[[433.96,-167.627],[437.32,-170.067],[435,-172.427],[432.7,-170.747],[429.76,-170.187],[426.36,-171.007],[424.08,-173.327],[423.28,-176.827],[424.04,-180.227],[426.2,-182.467],[429.44,-183.267],[432.44,-182.527],[434.36,-180.447],[435.04,-177.187],[436.36,-178.347],[422.24,-178.347],[422.24,-175.347],[438.28,-175.347],[438.44,-176.367],[438.48,-177.227],[437.34,-182.067],[434.16,-185.387],[429.52,-186.587],[424.54,-185.287],[421.02,-181.747],[419.72,-176.707],[421.04,-171.627],[424.62,-168.087],[429.76,-166.787]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":175,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[446,-167.187],[446,-195.747],[442.4,-195.747],[442.4,-167.187]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":176,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.507,0.88],[-0.88,1.507],[0,1.867],[0.88,1.494],[1.506,0.867],[1.866,0],[1.493,-0.88],[0.88,-1.48],[0,-1.84],[-0.88,-1.506],[-1.494,-0.88],[-1.84,0]],"o":[[1.506,-0.88],[0.88,-1.506],[0,-1.84],[-0.88,-1.493],[-1.507,-0.866],[-1.84,0],[-1.494,0.88],[-0.88,1.48],[0,1.867],[0.88,1.507],[1.493,0.88],[1.866,0]],"v":[[464.98,-168.107],[468.56,-171.687],[469.88,-176.747],[468.56,-181.747],[464.98,-185.287],[459.92,-186.587],[454.92,-185.267],[451.36,-181.727],[450.04,-176.747],[451.36,-171.687],[454.92,-168.107],[459.92,-166.787]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.933,0.56],[0.533,0.974],[0,1.254],[-0.534,0.96],[-0.934,0.547],[-1.174,0],[-0.92,-0.546],[-0.547,-0.96],[0,-1.226],[0.533,-0.973],[0.933,-0.56],[1.226,0]],"o":[[-0.934,-0.56],[-0.534,-0.973],[0,-1.226],[0.533,-0.96],[0.933,-0.546],[1.226,0],[0.92,0.547],[0.546,0.96],[0,1.254],[-0.534,0.974],[-0.934,0.56],[-1.174,0]],"v":[[456.76,-171.107],[454.56,-173.407],[453.76,-176.747],[454.56,-180.027],[456.76,-182.287],[459.92,-183.107],[463.14,-182.287],[465.34,-180.027],[466.16,-176.747],[465.36,-173.407],[463.16,-171.107],[459.92,-170.267]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":177,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[480.84,-167.187],[486.36,-181.507],[485.04,-181.507],[490.52,-167.187],[492.64,-167.187],[500.12,-186.187],[496.36,-186.187],[490.92,-171.387],[492.12,-171.387],[486.72,-186.187],[484.64,-186.187],[479.24,-171.387],[480.44,-171.387],[475,-186.187],[471.24,-186.187],[478.72,-167.187]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":178,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.494,0.52],[0,0.72],[0.493,0.494],[0.746,0],[0.48,-0.493],[0,-0.746],[-0.48,-0.52],[-0.774,0]],"o":[[0.493,-0.52],[0,-0.746],[-0.494,-0.493],[-0.774,0],[-0.48,0.494],[0,0.72],[0.48,0.52],[0.746,0]],"v":[[507.02,-167.567],[507.76,-169.427],[507.02,-171.287],[505.16,-172.027],[503.28,-171.287],[502.56,-169.427],[503.28,-167.567],[505.16,-166.787]],"c":true},"ix":2},"nm":".","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":".","np":3,"cix":2,"bm":0,"ix":179,"mn":"ADBE Vector Group","hd":false}],"ip":1560,"op":4839,"st":1560,"ct":1,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Meanwhile, the government and the police started to oppress the protesters with violence and began to open fire to the protesters without any reason. They began to force censorship across social media platform, starting from TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It reportedly that some military forces have been deployed in case of a next wave of demonstration and might potentialy lead the country under its martial law by making fabricated scenarios and slanders to divide the nation, which will cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our government tries to gain control over their own people. How shameless) Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":900,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":930,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":3690,"s":[100]},{"t":3720,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[964,1018,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-825.664,-348.296],[-825.664,-367.34],[-826.42,-367.124],[-818.104,-353.408],[-815.692,-353.408],[-807.376,-367.124],[-808.132,-367.34],[-808.132,-348.296],[-804.748,-348.296],[-804.748,-373.28],[-807.124,-373.28],[-817.708,-355.892],[-816.088,-355.892],[-826.672,-373.28],[-829.048,-373.28],[-829.048,-348.296]],"c":true},"ix":2},"nm":"M","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"M","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-787.72,-348.692],[-784.696,-350.888],[-786.784,-353.012],[-788.854,-351.5],[-791.5,-350.996],[-794.56,-351.734],[-796.612,-353.822],[-797.332,-356.972],[-796.648,-360.032],[-794.704,-362.048],[-791.788,-362.768],[-789.088,-362.102],[-787.36,-360.23],[-786.748,-357.296],[-785.56,-358.34],[-798.268,-358.34],[-798.268,-355.64],[-783.832,-355.64],[-783.688,-356.558],[-783.652,-357.332],[-784.678,-361.688],[-787.54,-364.676],[-791.716,-365.756],[-796.198,-364.586],[-799.366,-361.4],[-800.536,-356.864],[-799.348,-352.292],[-796.126,-349.106],[-791.5,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-769.36,-348.746],[-766.894,-350.996],[-765.868,-354.272],[-765.868,-359.42],[-766.912,-362.714],[-769.378,-364.946],[-772.852,-365.756],[-777.118,-364.568],[-780.106,-361.364],[-781.204,-356.828],[-780.106,-352.292],[-777.118,-349.106],[-772.852,-347.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-775.192,-351.752],[-777.154,-353.822],[-777.856,-356.864],[-777.154,-359.87],[-775.21,-361.94],[-772.348,-362.696],[-769.522,-361.958],[-767.632,-359.888],[-766.948,-356.828],[-768.424,-352.634],[-772.312,-350.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-763.888,-348.296],[-763.888,-365.396],[-767.164,-365.396],[-767.164,-361.22],[-766.552,-357.08],[-767.164,-352.904],[-767.164,-348.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-743.836,-348.296],[-743.836,-358.916],[-744.7,-362.246],[-747.058,-364.784],[-750.496,-365.756],[-753.988,-364.874],[-756.4,-362.48],[-757.264,-359.024],[-755.932,-358.268],[-755.356,-360.572],[-753.772,-362.156],[-751.468,-362.732],[-748.318,-361.472],[-747.112,-358.268],[-747.112,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-755.932,-348.296],[-755.932,-365.396],[-759.172,-365.396],[-759.172,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-732.676,-348.296],[-727.708,-361.184],[-728.896,-361.184],[-723.964,-348.296],[-722.056,-348.296],[-715.324,-365.396],[-718.708,-365.396],[-723.604,-352.076],[-722.524,-352.076],[-727.384,-365.396],[-729.256,-365.396],[-734.116,-352.076],[-733.036,-352.076],[-737.932,-365.396],[-741.316,-365.396],[-734.584,-348.296]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-697.108,-348.296],[-697.108,-358.916],[-697.972,-362.48],[-700.33,-364.892],[-703.768,-365.756],[-707.26,-364.874],[-709.672,-362.48],[-710.536,-359.024],[-709.204,-358.268],[-708.628,-360.572],[-707.044,-362.156],[-704.74,-362.732],[-701.59,-361.472],[-700.384,-358.268],[-700.384,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-709.204,-348.296],[-709.204,-374],[-712.444,-374],[-712.444,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-689.44,-348.296],[-689.44,-365.396],[-692.716,-365.396],[-692.716,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-689.584,-369.41],[-689.008,-370.904],[-689.584,-372.362],[-691.06,-372.956],[-692.536,-372.362],[-693.112,-370.904],[-692.536,-369.41],[-691.06,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-681.412,-348.296],[-681.412,-374],[-684.652,-374],[-684.652,-348.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-664.96,-348.692],[-661.936,-350.888],[-664.024,-353.012],[-666.094,-351.5],[-668.74,-350.996],[-671.8,-351.734],[-673.852,-353.822],[-674.572,-356.972],[-673.888,-360.032],[-671.944,-362.048],[-669.028,-362.768],[-666.328,-362.102],[-664.6,-360.23],[-663.988,-357.296],[-662.8,-358.34],[-675.508,-358.34],[-675.508,-355.64],[-661.072,-355.64],[-660.928,-356.558],[-660.892,-357.332],[-661.918,-361.688],[-664.78,-364.676],[-668.956,-365.756],[-673.438,-364.586],[-676.606,-361.4],[-677.776,-356.864],[-676.588,-352.292],[-673.366,-349.106],[-668.74,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.264],[0.48,0.468],[0.624,0],[0.456,-0.468],[0,-0.696],[-0.42,-0.42],[-0.504,0],[-0.192,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.6],[0.108,-0.372],[0,-0.696],[-0.48,-0.468],[-0.696,0],[-0.456,0.468],[0,0.624],[0.42,0.42],[0.24,0],[0.192,-0.168],[0,0],[0,0],[0,0]],"v":[[-655.348,-343.328],[-652.936,-347.792],[-652.306,-349.25],[-652.144,-350.204],[-652.864,-351.95],[-654.52,-352.652],[-656.248,-351.95],[-656.932,-350.204],[-656.302,-348.638],[-654.916,-348.008],[-654.268,-348.26],[-653.8,-348.908],[-654.952,-348.62],[-657.184,-344.336]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-634.144,-348.296],[-634.144,-372.56],[-637.384,-372.56],[-637.384,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-629.932,-362.444],[-629.932,-365.396],[-641.596,-365.396],[-641.596,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-611.428,-348.296],[-611.428,-358.916],[-612.292,-362.48],[-614.65,-364.892],[-618.088,-365.756],[-621.58,-364.874],[-623.992,-362.48],[-624.856,-359.024],[-623.524,-358.268],[-622.948,-360.572],[-621.364,-362.156],[-619.06,-362.732],[-615.91,-361.472],[-614.704,-358.268],[-614.704,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-623.524,-348.296],[-623.524,-374],[-626.764,-374],[-626.764,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-595.336,-348.692],[-592.312,-350.888],[-594.4,-353.012],[-596.47,-351.5],[-599.116,-350.996],[-602.176,-351.734],[-604.228,-353.822],[-604.948,-356.972],[-604.264,-360.032],[-602.32,-362.048],[-599.404,-362.768],[-596.704,-362.102],[-594.976,-360.23],[-594.364,-357.296],[-593.176,-358.34],[-605.884,-358.34],[-605.884,-355.64],[-591.448,-355.64],[-591.304,-356.558],[-591.268,-357.332],[-592.294,-361.688],[-595.156,-364.676],[-599.332,-365.756],[-603.814,-364.586],[-606.982,-361.4],[-608.152,-356.864],[-606.964,-352.292],[-603.742,-349.106],[-599.116,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-568.498,-341.798],[-565.33,-344.678],[-564.196,-348.98],[-564.196,-365.396],[-567.436,-365.396],[-567.436,-360.896],[-566.86,-357.08],[-567.436,-353.228],[-567.436,-348.98],[-568.984,-345.254],[-573.124,-343.868],[-576.544,-344.57],[-579.028,-346.604],[-581.152,-344.48],[-577.876,-341.744],[-573.196,-340.772]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-569.668,-349.376],[-567.202,-351.59],[-566.176,-354.884],[-566.176,-359.42],[-567.184,-362.75],[-569.65,-364.964],[-573.232,-365.756],[-577.408,-364.622],[-580.342,-361.562],[-581.404,-357.188],[-580.324,-352.778],[-577.39,-349.7],[-573.196,-348.584]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-575.41,-352.346],[-577.354,-354.308],[-578.056,-357.188],[-577.354,-360.05],[-575.428,-361.994],[-572.584,-362.696],[-569.794,-361.994],[-567.922,-360.05],[-567.256,-357.152],[-567.922,-354.254],[-569.776,-352.328],[-572.584,-351.644]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-547.15,-349.124],[-543.928,-352.346],[-542.74,-356.9],[-543.928,-361.4],[-547.15,-364.586],[-551.704,-365.756],[-556.204,-364.568],[-559.408,-361.382],[-560.596,-356.9],[-559.408,-352.346],[-556.204,-349.124],[-551.704,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-554.548,-351.824],[-556.528,-353.894],[-557.248,-356.9],[-556.528,-359.852],[-554.548,-361.886],[-551.704,-362.624],[-548.806,-361.886],[-546.826,-359.852],[-546.088,-356.9],[-546.808,-353.894],[-548.788,-351.824],[-551.704,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-532.012,-348.296],[-524.164,-365.396],[-527.62,-365.396],[-533.956,-350.96],[-531.868,-350.96],[-538.168,-365.396],[-541.768,-365.396],[-533.92,-348.296]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-510.34,-348.692],[-507.316,-350.888],[-509.404,-353.012],[-511.474,-351.5],[-514.12,-350.996],[-517.18,-351.734],[-519.232,-353.822],[-519.952,-356.972],[-519.268,-360.032],[-517.324,-362.048],[-514.408,-362.768],[-511.708,-362.102],[-509.98,-360.23],[-509.368,-357.296],[-508.18,-358.34],[-520.888,-358.34],[-520.888,-355.64],[-506.452,-355.64],[-506.308,-356.558],[-506.272,-357.332],[-507.298,-361.688],[-510.16,-364.676],[-514.336,-365.756],[-518.818,-364.586],[-521.986,-361.4],[-523.156,-356.864],[-521.968,-352.292],[-518.746,-349.106],[-514.12,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-499.504,-348.296],[-499.504,-365.396],[-502.744,-365.396],[-502.744,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-498.352,-361.544],[-495.4,-362.696],[-493.888,-362.444],[-492.7,-361.616],[-490.576,-363.812],[-492.52,-365.306],[-494.86,-365.756],[-499.216,-363.812],[-500.728,-358.592],[-499.504,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-472.9,-348.296],[-472.9,-358.916],[-473.764,-362.246],[-476.122,-364.784],[-479.56,-365.756],[-483.052,-364.874],[-485.464,-362.48],[-486.328,-359.024],[-484.996,-358.268],[-484.42,-360.572],[-482.836,-362.156],[-480.532,-362.732],[-477.382,-361.472],[-476.176,-358.268],[-476.176,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-484.996,-348.296],[-484.996,-365.396],[-488.236,-365.396],[-488.236,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-465.268,-348.296],[-465.268,-365.396],[-468.508,-365.396],[-468.508,-348.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-453.712,-348.296],[-453.712,-359.312],[-454.558,-362.732],[-456.862,-364.964],[-460.12,-365.756],[-463.432,-364.946],[-465.754,-362.696],[-466.6,-359.312],[-465.268,-358.628],[-464.692,-360.824],[-463.18,-362.228],[-461.056,-362.732],[-458.122,-361.634],[-456.952,-358.628],[-456.952,-348.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-442.12,-348.296],[-442.12,-359.276],[-443.002,-362.732],[-445.36,-364.964],[-448.708,-365.756],[-452.02,-364.946],[-454.486,-362.714],[-455.548,-359.312],[-453.712,-358.628],[-453.136,-360.824],[-451.606,-362.228],[-449.464,-362.732],[-446.566,-361.634],[-445.396,-358.628],[-445.396,-348.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-426.028,-348.692],[-423.004,-350.888],[-425.092,-353.012],[-427.162,-351.5],[-429.808,-350.996],[-432.868,-351.734],[-434.92,-353.822],[-435.64,-356.972],[-434.956,-360.032],[-433.012,-362.048],[-430.096,-362.768],[-427.396,-362.102],[-425.668,-360.23],[-425.056,-357.296],[-423.868,-358.34],[-436.576,-358.34],[-436.576,-355.64],[-422.14,-355.64],[-421.996,-356.558],[-421.96,-357.332],[-422.986,-361.688],[-425.848,-364.676],[-430.024,-365.756],[-434.506,-364.586],[-437.674,-361.4],[-438.844,-356.864],[-437.656,-352.292],[-434.434,-349.106],[-429.808,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-403.096,-348.296],[-403.096,-358.916],[-403.96,-362.246],[-406.318,-364.784],[-409.756,-365.756],[-413.248,-364.874],[-415.66,-362.48],[-416.524,-359.024],[-415.192,-358.268],[-414.616,-360.572],[-413.032,-362.156],[-410.728,-362.732],[-407.578,-361.472],[-406.372,-358.268],[-406.372,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-415.192,-348.296],[-415.192,-365.396],[-418.432,-365.396],[-418.432,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-393.052,-348.296],[-393.052,-372.56],[-396.292,-372.56],[-396.292,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-388.84,-362.444],[-388.84,-365.396],[-400.504,-365.396],[-400.504,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-367.456,-348.746],[-364.99,-350.996],[-363.964,-354.272],[-363.964,-359.42],[-365.008,-362.714],[-367.474,-364.946],[-370.948,-365.756],[-375.214,-364.568],[-378.202,-361.364],[-379.3,-356.828],[-378.202,-352.292],[-375.214,-349.106],[-370.948,-347.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-373.288,-351.752],[-375.25,-353.822],[-375.952,-356.864],[-375.25,-359.87],[-373.306,-361.94],[-370.444,-362.696],[-367.618,-361.958],[-365.728,-359.888],[-365.044,-356.828],[-366.52,-352.634],[-370.408,-350.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-361.984,-348.296],[-361.984,-365.396],[-365.26,-365.396],[-365.26,-361.22],[-364.648,-357.08],[-365.26,-352.904],[-365.26,-348.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-341.932,-348.296],[-341.932,-358.916],[-342.796,-362.246],[-345.154,-364.784],[-348.592,-365.756],[-352.084,-364.874],[-354.496,-362.48],[-355.36,-359.024],[-354.028,-358.268],[-353.452,-360.572],[-351.868,-362.156],[-349.564,-362.732],[-346.414,-361.472],[-345.208,-358.268],[-345.208,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-354.028,-348.296],[-354.028,-365.396],[-357.268,-365.396],[-357.268,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-326.812,-348.746],[-324.328,-350.996],[-323.284,-354.272],[-323.284,-359.42],[-324.346,-362.714],[-326.848,-364.946],[-330.34,-365.756],[-334.552,-364.568],[-337.522,-361.364],[-338.62,-356.828],[-337.522,-352.292],[-334.552,-349.106],[-330.34,-347.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-332.626,-351.734],[-334.57,-353.804],[-335.272,-356.864],[-334.57,-359.906],[-332.644,-361.958],[-329.8,-362.696],[-326.956,-361.94],[-325.048,-359.87],[-324.364,-356.828],[-325.048,-353.822],[-326.956,-351.752],[-329.8,-350.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-321.304,-374],[-324.58,-374],[-324.58,-361.22],[-323.968,-357.08],[-324.58,-352.904],[-324.58,-348.296],[-321.304,-348.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-303.268,-348.296],[-303.268,-372.56],[-306.508,-372.56],[-306.508,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-299.056,-362.444],[-299.056,-365.396],[-310.72,-365.396],[-310.72,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-280.552,-348.296],[-280.552,-358.916],[-281.416,-362.48],[-283.774,-364.892],[-287.212,-365.756],[-290.704,-364.874],[-293.116,-362.48],[-293.98,-359.024],[-292.648,-358.268],[-292.072,-360.572],[-290.488,-362.156],[-288.184,-362.732],[-285.034,-361.472],[-283.828,-358.268],[-283.828,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-292.648,-348.296],[-292.648,-374],[-295.888,-374],[-295.888,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-264.46,-348.692],[-261.436,-350.888],[-263.524,-353.012],[-265.594,-351.5],[-268.24,-350.996],[-271.3,-351.734],[-273.352,-353.822],[-274.072,-356.972],[-273.388,-360.032],[-271.444,-362.048],[-268.528,-362.768],[-265.828,-362.102],[-264.1,-360.23],[-263.488,-357.296],[-262.3,-358.34],[-275.008,-358.34],[-275.008,-355.64],[-260.572,-355.64],[-260.428,-356.558],[-260.392,-357.332],[-261.418,-361.688],[-264.28,-364.676],[-268.456,-365.756],[-272.938,-364.586],[-276.106,-361.4],[-277.276,-356.864],[-276.088,-352.292],[-272.866,-349.106],[-268.24,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-236.182,-349.106],[-233.212,-352.292],[-232.132,-356.828],[-233.212,-361.364],[-236.182,-364.568],[-240.412,-365.756],[-243.886,-364.946],[-246.406,-362.714],[-247.468,-359.42],[-247.468,-354.272],[-246.424,-350.996],[-243.922,-348.746],[-240.412,-347.936]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-246.172,-341.132],[-246.172,-352.58],[-246.784,-356.756],[-246.172,-360.896],[-246.172,-365.396],[-249.412,-365.396],[-249.412,-341.132]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-243.778,-351.752],[-245.686,-353.822],[-246.352,-356.828],[-245.668,-359.87],[-243.76,-361.94],[-240.952,-362.696],[-238.108,-361.94],[-236.182,-359.87],[-235.48,-356.864],[-236.182,-353.822],[-238.108,-351.752],[-240.952,-350.996]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-216.13,-349.124],[-212.908,-352.346],[-211.72,-356.9],[-212.908,-361.4],[-216.13,-364.586],[-220.684,-365.756],[-225.184,-364.568],[-228.388,-361.382],[-229.576,-356.9],[-228.388,-352.346],[-225.184,-349.124],[-220.684,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-223.528,-351.824],[-225.508,-353.894],[-226.228,-356.9],[-225.508,-359.852],[-223.528,-361.886],[-220.684,-362.624],[-217.786,-361.886],[-215.806,-359.852],[-215.068,-356.9],[-215.788,-353.894],[-217.768,-351.824],[-220.684,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-204.88,-348.296],[-204.88,-374],[-208.12,-374],[-208.12,-348.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-196.852,-348.296],[-196.852,-365.396],[-200.128,-365.396],[-200.128,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-196.996,-369.41],[-196.42,-370.904],[-196.996,-372.362],[-198.472,-372.956],[-199.948,-372.362],[-200.524,-370.904],[-199.948,-369.41],[-198.472,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-180.562,-348.692],[-177.664,-350.816],[-179.788,-352.976],[-181.75,-351.554],[-184.252,-351.068],[-187.132,-351.824],[-189.112,-353.876],[-189.832,-356.864],[-189.112,-359.852],[-187.132,-361.886],[-184.252,-362.624],[-181.768,-362.138],[-179.824,-360.716],[-177.664,-362.876],[-180.58,-365.018],[-184.252,-365.756],[-188.806,-364.586],[-192.01,-361.4],[-193.18,-356.864],[-192.01,-352.346],[-188.806,-349.124],[-184.252,-347.936]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-163.084,-348.692],[-160.06,-350.888],[-162.148,-353.012],[-164.218,-351.5],[-166.864,-350.996],[-169.924,-351.734],[-171.976,-353.822],[-172.696,-356.972],[-172.012,-360.032],[-170.068,-362.048],[-167.152,-362.768],[-164.452,-362.102],[-162.724,-360.23],[-162.112,-357.296],[-160.924,-358.34],[-173.632,-358.34],[-173.632,-355.64],[-159.196,-355.64],[-159.052,-356.558],[-159.016,-357.332],[-160.042,-361.688],[-162.904,-364.676],[-167.08,-365.756],[-171.562,-364.586],[-174.73,-361.4],[-175.9,-356.864],[-174.712,-352.292],[-171.49,-349.106],[-166.864,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-138.01,-349.34],[-136.3,-353.156],[-136.966,-355.712],[-138.676,-357.26],[-140.872,-358.178],[-143.086,-358.844],[-144.796,-359.636],[-145.444,-360.968],[-144.706,-362.3],[-142.564,-362.804],[-140.188,-362.3],[-138.388,-360.86],[-136.3,-362.948],[-138.874,-365.054],[-142.456,-365.756],[-145.732,-365.144],[-147.838,-363.398],[-148.576,-360.716],[-147.91,-358.214],[-146.2,-356.72],[-143.986,-355.856],[-141.772,-355.19],[-140.062,-354.326],[-139.396,-352.868],[-140.224,-351.41],[-142.564,-350.888],[-145.3,-351.446],[-147.46,-353.156],[-149.548,-351.068],[-147.694,-349.394],[-145.336,-348.314],[-142.6,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-126.796,-348.296],[-126.796,-372.56],[-130.036,-372.56],[-130.036,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-122.584,-362.444],[-122.584,-365.396],[-134.248,-365.396],[-134.248,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-109.192,-348.746],[-106.726,-350.996],[-105.7,-354.272],[-105.7,-359.42],[-106.744,-362.714],[-109.21,-364.946],[-112.684,-365.756],[-116.95,-364.568],[-119.938,-361.364],[-121.036,-356.828],[-119.938,-352.292],[-116.95,-349.106],[-112.684,-347.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-115.024,-351.752],[-116.986,-353.822],[-117.688,-356.864],[-116.986,-359.87],[-115.042,-361.94],[-112.18,-362.696],[-109.354,-361.958],[-107.464,-359.888],[-106.78,-356.828],[-108.256,-352.634],[-112.144,-350.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-103.72,-348.296],[-103.72,-365.396],[-106.996,-365.396],[-106.996,-361.22],[-106.384,-357.08],[-106.996,-352.904],[-106.996,-348.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-95.764,-348.296],[-95.764,-365.396],[-99.004,-365.396],[-99.004,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-94.612,-361.544],[-91.66,-362.696],[-90.148,-362.444],[-88.96,-361.616],[-86.836,-363.812],[-88.78,-365.306],[-91.12,-365.756],[-95.476,-363.812],[-96.988,-358.592],[-95.764,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-78.736,-348.296],[-78.736,-372.56],[-81.976,-372.56],[-81.976,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-74.524,-362.444],[-74.524,-365.396],[-86.188,-365.396],[-86.188,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-60.196,-348.692],[-57.172,-350.888],[-59.26,-353.012],[-61.33,-351.5],[-63.976,-350.996],[-67.036,-351.734],[-69.088,-353.822],[-69.808,-356.972],[-69.124,-360.032],[-67.18,-362.048],[-64.264,-362.768],[-61.564,-362.102],[-59.836,-360.23],[-59.224,-357.296],[-58.036,-358.34],[-70.744,-358.34],[-70.744,-355.64],[-56.308,-355.64],[-56.164,-356.558],[-56.128,-357.332],[-57.154,-361.688],[-60.016,-364.676],[-64.192,-365.756],[-68.674,-364.586],[-71.842,-361.4],[-73.012,-356.864],[-71.824,-352.292],[-68.602,-349.106],[-63.976,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-41.872,-348.746],[-39.388,-350.996],[-38.344,-354.272],[-38.344,-359.42],[-39.406,-362.714],[-41.908,-364.946],[-45.4,-365.756],[-49.612,-364.568],[-52.582,-361.364],[-53.68,-356.828],[-52.582,-352.292],[-49.612,-349.106],[-45.4,-347.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-47.686,-351.734],[-49.63,-353.804],[-50.332,-356.864],[-49.63,-359.906],[-47.704,-361.958],[-44.86,-362.696],[-42.016,-361.94],[-40.108,-359.87],[-39.424,-356.828],[-40.108,-353.822],[-42.016,-351.752],[-44.86,-350.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-36.364,-374],[-39.64,-374],[-39.64,-361.22],[-39.028,-357.08],[-39.64,-352.904],[-39.64,-348.296],[-36.364,-348.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-18.328,-348.296],[-18.328,-372.56],[-21.568,-372.56],[-21.568,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-14.116,-362.444],[-14.116,-365.396],[-25.78,-365.396],[-25.78,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[0.842,-349.124],[4.064,-352.346],[5.252,-356.9],[4.064,-361.4],[0.842,-364.586],[-3.712,-365.756],[-8.212,-364.568],[-11.416,-361.382],[-12.604,-356.9],[-11.416,-352.346],[-8.212,-349.124],[-3.712,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-6.556,-351.824],[-8.536,-353.894],[-9.256,-356.9],[-8.536,-359.852],[-6.556,-361.886],[-3.712,-362.624],[-0.814,-361.886],[1.166,-359.852],[1.904,-356.9],[1.184,-353.894],[-0.796,-351.824],[-3.712,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[28.634,-349.124],[31.856,-352.346],[33.044,-356.9],[31.856,-361.4],[28.634,-364.586],[24.08,-365.756],[19.58,-364.568],[16.376,-361.382],[15.188,-356.9],[16.376,-352.346],[19.58,-349.124],[24.08,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[21.236,-351.824],[19.256,-353.894],[18.536,-356.9],[19.256,-359.852],[21.236,-361.886],[24.08,-362.624],[26.978,-361.886],[28.958,-359.852],[29.696,-356.9],[28.976,-353.894],[26.996,-351.824],[24.08,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[49.874,-349.106],[52.844,-352.292],[53.924,-356.828],[52.844,-361.364],[49.874,-364.568],[45.644,-365.756],[42.17,-364.946],[39.65,-362.714],[38.588,-359.42],[38.588,-354.272],[39.632,-350.996],[42.134,-348.746],[45.644,-347.936]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[39.884,-341.132],[39.884,-352.58],[39.272,-356.756],[39.884,-360.896],[39.884,-365.396],[36.644,-365.396],[36.644,-341.132]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[42.278,-351.752],[40.37,-353.822],[39.704,-356.828],[40.388,-359.87],[42.296,-361.94],[45.104,-362.696],[47.948,-361.94],[49.874,-359.87],[50.576,-356.864],[49.874,-353.822],[47.948,-351.752],[45.104,-350.996]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[70.826,-349.106],[73.796,-352.292],[74.876,-356.828],[73.796,-361.364],[70.826,-364.568],[66.596,-365.756],[63.122,-364.946],[60.602,-362.714],[59.54,-359.42],[59.54,-354.272],[60.584,-350.996],[63.086,-348.746],[66.596,-347.936]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[60.836,-341.132],[60.836,-352.58],[60.224,-356.756],[60.836,-360.896],[60.836,-365.396],[57.596,-365.396],[57.596,-341.132]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[63.23,-351.752],[61.322,-353.822],[60.656,-356.828],[61.34,-359.87],[63.248,-361.94],[66.056,-362.696],[68.9,-361.94],[70.826,-359.87],[71.528,-356.864],[70.826,-353.822],[68.9,-351.752],[66.056,-350.996]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[81.788,-348.296],[81.788,-365.396],[78.548,-365.396],[78.548,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[82.94,-361.544],[85.892,-362.696],[87.404,-362.444],[88.592,-361.616],[90.716,-363.812],[88.772,-365.306],[86.432,-365.756],[82.076,-363.812],[80.564,-358.592],[81.788,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[104.144,-348.692],[107.168,-350.888],[105.08,-353.012],[103.01,-351.5],[100.364,-350.996],[97.304,-351.734],[95.252,-353.822],[94.532,-356.972],[95.216,-360.032],[97.16,-362.048],[100.076,-362.768],[102.776,-362.102],[104.504,-360.23],[105.116,-357.296],[106.304,-358.34],[93.596,-358.34],[93.596,-355.64],[108.032,-355.64],[108.176,-356.558],[108.212,-357.332],[107.186,-361.688],[104.324,-364.676],[100.148,-365.756],[95.666,-364.586],[92.498,-361.4],[91.328,-356.864],[92.516,-352.292],[95.738,-349.106],[100.364,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[121.766,-349.34],[123.476,-353.156],[122.81,-355.712],[121.1,-357.26],[118.904,-358.178],[116.69,-358.844],[114.98,-359.636],[114.332,-360.968],[115.07,-362.3],[117.212,-362.804],[119.588,-362.3],[121.388,-360.86],[123.476,-362.948],[120.902,-365.054],[117.32,-365.756],[114.044,-365.144],[111.938,-363.398],[111.2,-360.716],[111.866,-358.214],[113.576,-356.72],[115.79,-355.856],[118.004,-355.19],[119.714,-354.326],[120.38,-352.868],[119.552,-351.41],[117.212,-350.888],[114.476,-351.446],[112.316,-353.156],[110.228,-351.068],[112.082,-349.394],[114.44,-348.314],[117.176,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[137.138,-349.34],[138.848,-353.156],[138.182,-355.712],[136.472,-357.26],[134.276,-358.178],[132.062,-358.844],[130.352,-359.636],[129.704,-360.968],[130.442,-362.3],[132.584,-362.804],[134.96,-362.3],[136.76,-360.86],[138.848,-362.948],[136.274,-365.054],[132.692,-365.756],[129.416,-365.144],[127.31,-363.398],[126.572,-360.716],[127.238,-358.214],[128.948,-356.72],[131.162,-355.856],[133.376,-355.19],[135.086,-354.326],[135.752,-352.868],[134.924,-351.41],[132.584,-350.888],[129.848,-351.446],[127.688,-353.156],[125.6,-351.068],[127.454,-349.394],[129.812,-348.314],[132.548,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[155.804,-348.296],[155.804,-372.56],[152.564,-372.56],[152.564,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[160.016,-362.444],[160.016,-365.396],[148.352,-365.396],[148.352,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[178.52,-348.296],[178.52,-358.916],[177.656,-362.48],[175.298,-364.892],[171.86,-365.756],[168.368,-364.874],[165.956,-362.48],[165.092,-359.024],[166.424,-358.268],[167,-360.572],[168.584,-362.156],[170.888,-362.732],[174.038,-361.472],[175.244,-358.268],[175.244,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[166.424,-348.296],[166.424,-374],[163.184,-374],[163.184,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[194.612,-348.692],[197.636,-350.888],[195.548,-353.012],[193.478,-351.5],[190.832,-350.996],[187.772,-351.734],[185.72,-353.822],[185,-356.972],[185.684,-360.032],[187.628,-362.048],[190.544,-362.768],[193.244,-362.102],[194.972,-360.23],[195.584,-357.296],[196.772,-358.34],[184.064,-358.34],[184.064,-355.64],[198.5,-355.64],[198.644,-356.558],[198.68,-357.332],[197.654,-361.688],[194.792,-364.676],[190.616,-365.756],[186.134,-364.586],[182.966,-361.4],[181.796,-356.864],[182.984,-352.292],[186.206,-349.106],[190.832,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[222.89,-349.106],[225.86,-352.292],[226.94,-356.828],[225.86,-361.364],[222.89,-364.568],[218.66,-365.756],[215.186,-364.946],[212.666,-362.714],[211.604,-359.42],[211.604,-354.272],[212.648,-350.996],[215.15,-348.746],[218.66,-347.936]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[212.9,-341.132],[212.9,-352.58],[212.288,-356.756],[212.9,-360.896],[212.9,-365.396],[209.66,-365.396],[209.66,-341.132]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[215.294,-351.752],[213.386,-353.822],[212.72,-356.828],[213.404,-359.87],[215.312,-361.94],[218.12,-362.696],[220.964,-361.94],[222.89,-359.87],[223.592,-356.864],[222.89,-353.822],[220.964,-351.752],[218.12,-350.996]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[233.852,-348.296],[233.852,-365.396],[230.612,-365.396],[230.612,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[235.004,-361.544],[237.956,-362.696],[239.468,-362.444],[240.656,-361.616],[242.78,-363.812],[240.836,-365.306],[238.496,-365.756],[234.14,-363.812],[232.628,-358.592],[233.852,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[256.838,-349.124],[260.06,-352.346],[261.248,-356.9],[260.06,-361.4],[256.838,-364.586],[252.284,-365.756],[247.784,-364.568],[244.58,-361.382],[243.392,-356.9],[244.58,-352.346],[247.784,-349.124],[252.284,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[249.44,-351.824],[247.46,-353.894],[246.74,-356.9],[247.46,-359.852],[249.44,-361.886],[252.284,-362.624],[255.182,-361.886],[257.162,-359.852],[257.9,-356.9],[257.18,-353.894],[255.2,-351.824],[252.284,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[270.176,-348.296],[270.176,-372.56],[266.936,-372.56],[266.936,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[274.388,-362.444],[274.388,-365.396],[262.724,-365.396],[262.724,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[288.716,-348.692],[291.74,-350.888],[289.652,-353.012],[287.582,-351.5],[284.936,-350.996],[281.876,-351.734],[279.824,-353.822],[279.104,-356.972],[279.788,-360.032],[281.732,-362.048],[284.648,-362.768],[287.348,-362.102],[289.076,-360.23],[289.688,-357.296],[290.876,-358.34],[278.168,-358.34],[278.168,-355.64],[292.604,-355.64],[292.748,-356.558],[292.784,-357.332],[291.758,-361.688],[288.896,-364.676],[284.72,-365.756],[280.238,-364.586],[277.07,-361.4],[275.9,-356.864],[277.088,-352.292],[280.31,-349.106],[284.936,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[306.338,-349.34],[308.048,-353.156],[307.382,-355.712],[305.672,-357.26],[303.476,-358.178],[301.262,-358.844],[299.552,-359.636],[298.904,-360.968],[299.642,-362.3],[301.784,-362.804],[304.16,-362.3],[305.96,-360.86],[308.048,-362.948],[305.474,-365.054],[301.892,-365.756],[298.616,-365.144],[296.51,-363.398],[295.772,-360.716],[296.438,-358.214],[298.148,-356.72],[300.362,-355.856],[302.576,-355.19],[304.286,-354.326],[304.952,-352.868],[304.124,-351.41],[301.784,-350.888],[299.048,-351.446],[296.888,-353.156],[294.8,-351.068],[296.654,-349.394],[299.012,-348.314],[301.748,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[317.552,-348.296],[317.552,-372.56],[314.312,-372.56],[314.312,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[321.764,-362.444],[321.764,-365.396],[310.1,-365.396],[310.1,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[336.092,-348.692],[339.116,-350.888],[337.028,-353.012],[334.958,-351.5],[332.312,-350.996],[329.252,-351.734],[327.2,-353.822],[326.48,-356.972],[327.164,-360.032],[329.108,-362.048],[332.024,-362.768],[334.724,-362.102],[336.452,-360.23],[337.064,-357.296],[338.252,-358.34],[325.544,-358.34],[325.544,-355.64],[339.98,-355.64],[340.124,-356.558],[340.16,-357.332],[339.134,-361.688],[336.272,-364.676],[332.096,-365.756],[327.614,-364.586],[324.446,-361.4],[323.276,-356.864],[324.464,-352.292],[327.686,-349.106],[332.312,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[346.928,-348.296],[346.928,-365.396],[343.688,-365.396],[343.688,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[348.08,-361.544],[351.032,-362.696],[352.544,-362.444],[353.732,-361.616],[355.856,-363.812],[353.912,-365.306],[351.572,-365.756],[347.216,-363.812],[345.704,-358.592],[346.928,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[367.79,-349.34],[369.5,-353.156],[368.834,-355.712],[367.124,-357.26],[364.928,-358.178],[362.714,-358.844],[361.004,-359.636],[360.356,-360.968],[361.094,-362.3],[363.236,-362.804],[365.612,-362.3],[367.412,-360.86],[369.5,-362.948],[366.926,-365.054],[363.344,-365.756],[360.068,-365.144],[357.962,-363.398],[357.224,-360.716],[357.89,-358.214],[359.6,-356.72],[361.814,-355.856],[364.028,-355.19],[365.738,-354.326],[366.404,-352.868],[365.576,-351.41],[363.236,-350.888],[360.5,-351.446],[358.34,-353.156],[356.252,-351.068],[358.106,-349.394],[360.464,-348.314],[363.2,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[387.356,-348.296],[392.324,-361.184],[391.136,-361.184],[396.068,-348.296],[397.976,-348.296],[404.708,-365.396],[401.324,-365.396],[396.428,-352.076],[397.508,-352.076],[392.648,-365.396],[390.776,-365.396],[385.916,-352.076],[386.996,-352.076],[382.1,-365.396],[378.716,-365.396],[385.448,-348.296]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[410.576,-348.296],[410.576,-365.396],[407.3,-365.396],[407.3,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[410.432,-369.41],[411.008,-370.904],[410.432,-372.362],[408.956,-372.956],[407.48,-372.362],[406.904,-370.904],[407.48,-369.41],[408.956,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[421.232,-348.296],[421.232,-372.56],[417.992,-372.56],[417.992,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[425.444,-362.444],[425.444,-365.396],[413.78,-365.396],[413.78,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[443.948,-348.296],[443.948,-358.916],[443.084,-362.48],[440.726,-364.892],[437.288,-365.756],[433.796,-364.874],[431.384,-362.48],[430.52,-359.024],[431.852,-358.268],[432.428,-360.572],[434.012,-362.156],[436.316,-362.732],[439.466,-361.472],[440.672,-358.268],[440.672,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[431.852,-348.296],[431.852,-374],[428.612,-374],[428.612,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[463.568,-348.296],[471.416,-365.396],[467.96,-365.396],[461.624,-350.96],[463.712,-350.96],[457.412,-365.396],[453.812,-365.396],[461.66,-348.296]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[477.464,-348.296],[477.464,-365.396],[474.188,-365.396],[474.188,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[477.32,-369.41],[477.896,-370.904],[477.32,-372.362],[475.844,-372.956],[474.368,-372.362],[473.792,-370.904],[474.368,-369.41],[475.844,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[494.582,-349.124],[497.804,-352.346],[498.992,-356.9],[497.804,-361.4],[494.582,-364.586],[490.028,-365.756],[485.528,-364.568],[482.324,-361.382],[481.136,-356.9],[482.324,-352.346],[485.528,-349.124],[490.028,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[487.184,-351.824],[485.204,-353.894],[484.484,-356.9],[485.204,-359.852],[487.184,-361.886],[490.028,-362.624],[492.926,-361.886],[494.906,-359.852],[495.644,-356.9],[494.924,-353.894],[492.944,-351.824],[490.028,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[505.832,-348.296],[505.832,-374],[502.592,-374],[502.592,-348.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[522.284,-348.692],[525.308,-350.888],[523.22,-353.012],[521.15,-351.5],[518.504,-350.996],[515.444,-351.734],[513.392,-353.822],[512.672,-356.972],[513.356,-360.032],[515.3,-362.048],[518.216,-362.768],[520.916,-362.102],[522.644,-360.23],[523.256,-357.296],[524.444,-358.34],[511.736,-358.34],[511.736,-355.64],[526.172,-355.64],[526.316,-356.558],[526.352,-357.332],[525.326,-361.688],[522.464,-364.676],[518.288,-365.756],[513.806,-364.586],[510.638,-361.4],[509.468,-356.864],[510.656,-352.292],[513.878,-349.106],[518.504,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[545.216,-348.296],[545.216,-358.916],[544.352,-362.246],[541.994,-364.784],[538.556,-365.756],[535.064,-364.874],[532.652,-362.48],[531.788,-359.024],[533.12,-358.268],[533.696,-360.572],[535.28,-362.156],[537.584,-362.732],[540.734,-361.472],[541.94,-358.268],[541.94,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[533.12,-348.296],[533.12,-365.396],[529.88,-365.396],[529.88,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[561.11,-348.692],[564.008,-350.816],[561.884,-352.976],[559.922,-351.554],[557.42,-351.068],[554.54,-351.824],[552.56,-353.876],[551.84,-356.864],[552.56,-359.852],[554.54,-361.886],[557.42,-362.624],[559.904,-362.138],[561.848,-360.716],[564.008,-362.876],[561.092,-365.018],[557.42,-365.756],[552.866,-364.586],[549.662,-361.4],[548.492,-356.864],[549.662,-352.346],[552.866,-349.124],[557.42,-347.936]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[578.588,-348.692],[581.612,-350.888],[579.524,-353.012],[577.454,-351.5],[574.808,-350.996],[571.748,-351.734],[569.696,-353.822],[568.976,-356.972],[569.66,-360.032],[571.604,-362.048],[574.52,-362.768],[577.22,-362.102],[578.948,-360.23],[579.56,-357.296],[580.748,-358.34],[568.04,-358.34],[568.04,-355.64],[582.476,-355.64],[582.62,-356.558],[582.656,-357.332],[581.63,-361.688],[578.768,-364.676],[574.592,-365.756],[570.11,-364.586],[566.942,-361.4],[565.772,-356.864],[566.96,-352.292],[570.182,-349.106],[574.808,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[604.4,-348.746],[606.866,-350.996],[607.892,-354.272],[607.892,-359.42],[606.848,-362.714],[604.382,-364.946],[600.908,-365.756],[596.642,-364.568],[593.654,-361.364],[592.556,-356.828],[593.654,-352.292],[596.642,-349.106],[600.908,-347.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[598.568,-351.752],[596.606,-353.822],[595.904,-356.864],[596.606,-359.87],[598.55,-361.94],[601.412,-362.696],[604.238,-361.958],[606.128,-359.888],[606.812,-356.828],[605.336,-352.634],[601.448,-350.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[609.872,-348.296],[609.872,-365.396],[606.596,-365.396],[606.596,-361.22],[607.208,-357.08],[606.596,-352.904],[606.596,-348.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[629.924,-348.296],[629.924,-358.916],[629.06,-362.246],[626.702,-364.784],[623.264,-365.756],[619.772,-364.874],[617.36,-362.48],[616.496,-359.024],[617.828,-358.268],[618.404,-360.572],[619.988,-362.156],[622.292,-362.732],[625.442,-361.472],[626.648,-358.268],[626.648,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[617.828,-348.296],[617.828,-365.396],[614.588,-365.396],[614.588,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[645.044,-348.746],[647.528,-350.996],[648.572,-354.272],[648.572,-359.42],[647.51,-362.714],[645.008,-364.946],[641.516,-365.756],[637.304,-364.568],[634.334,-361.364],[633.236,-356.828],[634.334,-352.292],[637.304,-349.106],[641.516,-347.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[639.23,-351.734],[637.286,-353.804],[636.584,-356.864],[637.286,-359.906],[639.212,-361.958],[642.056,-362.696],[644.9,-361.94],[646.808,-359.87],[647.492,-356.828],[646.808,-353.822],[644.9,-351.752],[642.056,-350.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[650.552,-374],[647.276,-374],[647.276,-361.22],[647.888,-357.08],[647.276,-352.904],[647.276,-348.296],[650.552,-348.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[675.95,-349.106],[678.92,-352.292],[680,-356.828],[678.92,-361.364],[675.95,-364.568],[671.72,-365.756],[668.246,-364.946],[665.726,-362.714],[664.664,-359.42],[664.664,-354.272],[665.708,-350.996],[668.21,-348.746],[671.72,-347.936]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[665.96,-348.296],[665.96,-352.904],[665.348,-357.08],[665.96,-361.22],[665.96,-374],[662.72,-374],[662.72,-348.296]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[668.354,-351.752],[666.446,-353.822],[665.78,-356.828],[666.464,-359.87],[668.372,-361.94],[671.18,-362.696],[674.024,-361.94],[675.95,-359.87],[676.652,-356.864],[675.95,-353.822],[674.024,-351.752],[671.18,-350.996]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[695.372,-348.692],[698.396,-350.888],[696.308,-353.012],[694.238,-351.5],[691.592,-350.996],[688.532,-351.734],[686.48,-353.822],[685.76,-356.972],[686.444,-360.032],[688.388,-362.048],[691.304,-362.768],[694.004,-362.102],[695.732,-360.23],[696.344,-357.296],[697.532,-358.34],[684.824,-358.34],[684.824,-355.64],[699.26,-355.64],[699.404,-356.558],[699.44,-357.332],[698.414,-361.688],[695.552,-364.676],[691.376,-365.756],[686.894,-364.586],[683.726,-361.4],[682.556,-356.864],[683.744,-352.292],[686.966,-349.106],[691.592,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[714.758,-341.798],[717.926,-344.678],[719.06,-348.98],[719.06,-365.396],[715.82,-365.396],[715.82,-360.896],[716.396,-357.08],[715.82,-353.228],[715.82,-348.98],[714.272,-345.254],[710.132,-343.868],[706.712,-344.57],[704.228,-346.604],[702.104,-344.48],[705.38,-341.744],[710.06,-340.772]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[713.588,-349.376],[716.054,-351.59],[717.08,-354.884],[717.08,-359.42],[716.072,-362.75],[713.606,-364.964],[710.024,-365.756],[705.848,-364.622],[702.914,-361.562],[701.852,-357.188],[702.932,-352.778],[705.866,-349.7],[710.06,-348.584]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[707.846,-352.346],[705.902,-354.308],[705.2,-357.188],[705.902,-360.05],[707.828,-361.994],[710.672,-362.696],[713.462,-361.994],[715.334,-360.05],[716,-357.152],[715.334,-354.254],[713.48,-352.328],[710.672,-351.644]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[734.54,-348.746],[737.006,-350.996],[738.032,-354.272],[738.032,-359.42],[736.988,-362.714],[734.522,-364.946],[731.048,-365.756],[726.782,-364.568],[723.794,-361.364],[722.696,-356.828],[723.794,-352.292],[726.782,-349.106],[731.048,-347.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[728.708,-351.752],[726.746,-353.822],[726.044,-356.864],[726.746,-359.87],[728.69,-361.94],[731.552,-362.696],[734.378,-361.958],[736.268,-359.888],[736.952,-356.828],[735.476,-352.634],[731.588,-350.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[740.012,-348.296],[740.012,-365.396],[736.736,-365.396],[736.736,-361.22],[737.348,-357.08],[736.736,-352.904],[736.736,-348.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[760.064,-348.296],[760.064,-358.916],[759.2,-362.246],[756.842,-364.784],[753.404,-365.756],[749.912,-364.874],[747.5,-362.48],[746.636,-359.024],[747.968,-358.268],[748.544,-360.572],[750.128,-362.156],[752.432,-362.732],[755.582,-361.472],[756.788,-358.268],[756.788,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[747.968,-348.296],[747.968,-365.396],[744.728,-365.396],[744.728,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[777.776,-348.296],[777.776,-372.56],[774.536,-372.56],[774.536,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[781.988,-362.444],[781.988,-365.396],[770.324,-365.396],[770.324,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[796.946,-349.124],[800.168,-352.346],[801.356,-356.9],[800.168,-361.4],[796.946,-364.586],[792.392,-365.756],[787.892,-364.568],[784.688,-361.382],[783.5,-356.9],[784.688,-352.346],[787.892,-349.124],[792.392,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[789.548,-351.824],[787.568,-353.894],[786.848,-356.9],[787.568,-359.852],[789.548,-361.886],[792.392,-362.624],[795.29,-361.886],[797.27,-359.852],[798.008,-356.9],[797.288,-353.894],[795.308,-351.824],[792.392,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-817.294,-305.924],[-814.072,-309.146],[-812.884,-313.7],[-814.072,-318.2],[-817.294,-321.386],[-821.848,-322.556],[-826.348,-321.368],[-829.552,-318.182],[-830.74,-313.7],[-829.552,-309.146],[-826.348,-305.924],[-821.848,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-824.692,-308.624],[-826.672,-310.694],[-827.392,-313.7],[-826.672,-316.652],[-824.692,-318.686],[-821.848,-319.424],[-818.95,-318.686],[-816.97,-316.652],[-816.232,-313.7],[-816.952,-310.694],[-818.932,-308.624],[-821.848,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-796.054,-305.906],[-793.084,-309.092],[-792.004,-313.628],[-793.084,-318.164],[-796.054,-321.368],[-800.284,-322.556],[-803.758,-321.746],[-806.278,-319.514],[-807.34,-316.22],[-807.34,-311.072],[-806.296,-307.796],[-803.794,-305.546],[-800.284,-304.736]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-806.044,-297.932],[-806.044,-309.38],[-806.656,-313.556],[-806.044,-317.696],[-806.044,-322.196],[-809.284,-322.196],[-809.284,-297.932]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-803.65,-308.552],[-805.558,-310.622],[-806.224,-313.628],[-805.54,-316.67],[-803.632,-318.74],[-800.824,-319.496],[-797.98,-318.74],[-796.054,-316.67],[-795.352,-313.664],[-796.054,-310.622],[-797.98,-308.552],[-800.824,-307.796]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-776.632,-305.492],[-773.608,-307.688],[-775.696,-309.812],[-777.766,-308.3],[-780.412,-307.796],[-783.472,-308.534],[-785.524,-310.622],[-786.244,-313.772],[-785.56,-316.832],[-783.616,-318.848],[-780.7,-319.568],[-778,-318.902],[-776.272,-317.03],[-775.66,-314.096],[-774.472,-315.14],[-787.18,-315.14],[-787.18,-312.44],[-772.744,-312.44],[-772.6,-313.358],[-772.564,-314.132],[-773.59,-318.488],[-776.452,-321.476],[-780.628,-322.556],[-785.11,-321.386],[-788.278,-318.2],[-789.448,-313.664],[-788.26,-309.092],[-785.038,-305.906],[-780.412,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-753.7,-305.096],[-753.7,-315.716],[-754.564,-319.046],[-756.922,-321.584],[-760.36,-322.556],[-763.852,-321.674],[-766.264,-319.28],[-767.128,-315.824],[-765.796,-315.068],[-765.22,-317.372],[-763.636,-318.956],[-761.332,-319.532],[-758.182,-318.272],[-756.976,-315.068],[-756.976,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-765.796,-305.096],[-765.796,-322.196],[-769.036,-322.196],[-769.036,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[-736.168,-305.096],[-736.168,-324.752],[-735.322,-327.218],[-732.928,-328.1],[-731.524,-327.848],[-730.48,-327.092],[-728.356,-329.18],[-730.336,-330.656],[-732.892,-331.16],[-736.312,-330.332],[-738.616,-328.064],[-739.444,-324.752],[-739.444,-305.096]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-730.732,-319.244],[-730.732,-322.196],[-743.62,-322.196],[-743.62,-319.244]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":91,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-724.216,-305.096],[-724.216,-322.196],[-727.492,-322.196],[-727.492,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-724.36,-326.21],[-723.784,-327.704],[-724.36,-329.162],[-725.836,-329.756],[-727.312,-329.162],[-727.888,-327.704],[-727.312,-326.21],[-725.836,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":92,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-716.188,-305.096],[-716.188,-322.196],[-719.428,-322.196],[-719.428,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-715.036,-318.344],[-712.084,-319.496],[-710.572,-319.244],[-709.384,-318.416],[-707.26,-320.612],[-709.204,-322.106],[-711.544,-322.556],[-715.9,-320.612],[-717.412,-315.392],[-716.188,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":93,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-693.832,-305.492],[-690.808,-307.688],[-692.896,-309.812],[-694.966,-308.3],[-697.612,-307.796],[-700.672,-308.534],[-702.724,-310.622],[-703.444,-313.772],[-702.76,-316.832],[-700.816,-318.848],[-697.9,-319.568],[-695.2,-318.902],[-693.472,-317.03],[-692.86,-314.096],[-691.672,-315.14],[-704.38,-315.14],[-704.38,-312.44],[-689.944,-312.44],[-689.8,-313.358],[-689.764,-314.132],[-690.79,-318.488],[-693.652,-321.476],[-697.828,-322.556],[-702.31,-321.386],[-705.478,-318.2],[-706.648,-313.664],[-705.46,-309.092],[-702.238,-305.906],[-697.612,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":94,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-672.916,-305.096],[-672.916,-329.36],[-676.156,-329.36],[-676.156,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-668.704,-319.244],[-668.704,-322.196],[-680.368,-322.196],[-680.368,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":95,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-653.746,-305.924],[-650.524,-309.146],[-649.336,-313.7],[-650.524,-318.2],[-653.746,-321.386],[-658.3,-322.556],[-662.8,-321.368],[-666.004,-318.182],[-667.192,-313.7],[-666.004,-309.146],[-662.8,-305.924],[-658.3,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-661.144,-308.624],[-663.124,-310.694],[-663.844,-313.7],[-663.124,-316.652],[-661.144,-318.686],[-658.3,-319.424],[-655.402,-318.686],[-653.422,-316.652],[-652.684,-313.7],[-653.404,-310.694],[-655.384,-308.624],[-658.3,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":96,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-632.416,-305.096],[-632.416,-329.36],[-635.656,-329.36],[-635.656,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-628.204,-319.244],[-628.204,-322.196],[-639.868,-322.196],[-639.868,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":97,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-609.7,-305.096],[-609.7,-315.716],[-610.564,-319.28],[-612.922,-321.692],[-616.36,-322.556],[-619.852,-321.674],[-622.264,-319.28],[-623.128,-315.824],[-621.796,-315.068],[-621.22,-317.372],[-619.636,-318.956],[-617.332,-319.532],[-614.182,-318.272],[-612.976,-315.068],[-612.976,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-621.796,-305.096],[-621.796,-330.8],[-625.036,-330.8],[-625.036,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":98,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-593.608,-305.492],[-590.584,-307.688],[-592.672,-309.812],[-594.742,-308.3],[-597.388,-307.796],[-600.448,-308.534],[-602.5,-310.622],[-603.22,-313.772],[-602.536,-316.832],[-600.592,-318.848],[-597.676,-319.568],[-594.976,-318.902],[-593.248,-317.03],[-592.636,-314.096],[-591.448,-315.14],[-604.156,-315.14],[-604.156,-312.44],[-589.72,-312.44],[-589.576,-313.358],[-589.54,-314.132],[-590.566,-318.488],[-593.428,-321.476],[-597.604,-322.556],[-602.086,-321.386],[-605.254,-318.2],[-606.424,-313.664],[-605.236,-309.092],[-602.014,-305.906],[-597.388,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":99,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-565.33,-305.906],[-562.36,-309.092],[-561.28,-313.628],[-562.36,-318.164],[-565.33,-321.368],[-569.56,-322.556],[-573.034,-321.746],[-575.554,-319.514],[-576.616,-316.22],[-576.616,-311.072],[-575.572,-307.796],[-573.07,-305.546],[-569.56,-304.736]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-575.32,-297.932],[-575.32,-309.38],[-575.932,-313.556],[-575.32,-317.696],[-575.32,-322.196],[-578.56,-322.196],[-578.56,-297.932]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-572.926,-308.552],[-574.834,-310.622],[-575.5,-313.628],[-574.816,-316.67],[-572.908,-318.74],[-570.1,-319.496],[-567.256,-318.74],[-565.33,-316.67],[-564.628,-313.664],[-565.33,-310.622],[-567.256,-308.552],[-570.1,-307.796]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":100,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-554.368,-305.096],[-554.368,-322.196],[-557.608,-322.196],[-557.608,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-553.216,-318.344],[-550.264,-319.496],[-548.752,-319.244],[-547.564,-318.416],[-545.44,-320.612],[-547.384,-322.106],[-549.724,-322.556],[-554.08,-320.612],[-555.592,-315.392],[-554.368,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":101,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-531.382,-305.924],[-528.16,-309.146],[-526.972,-313.7],[-528.16,-318.2],[-531.382,-321.386],[-535.936,-322.556],[-540.436,-321.368],[-543.64,-318.182],[-544.828,-313.7],[-543.64,-309.146],[-540.436,-305.924],[-535.936,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-538.78,-308.624],[-540.76,-310.694],[-541.48,-313.7],[-540.76,-316.652],[-538.78,-318.686],[-535.936,-319.424],[-533.038,-318.686],[-531.058,-316.652],[-530.32,-313.7],[-531.04,-310.694],[-533.02,-308.624],[-535.936,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":102,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-518.044,-305.096],[-518.044,-329.36],[-521.284,-329.36],[-521.284,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-513.832,-319.244],[-513.832,-322.196],[-525.496,-322.196],[-525.496,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":103,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-499.504,-305.492],[-496.48,-307.688],[-498.568,-309.812],[-500.638,-308.3],[-503.284,-307.796],[-506.344,-308.534],[-508.396,-310.622],[-509.116,-313.772],[-508.432,-316.832],[-506.488,-318.848],[-503.572,-319.568],[-500.872,-318.902],[-499.144,-317.03],[-498.532,-314.096],[-497.344,-315.14],[-510.052,-315.14],[-510.052,-312.44],[-495.616,-312.44],[-495.472,-313.358],[-495.436,-314.132],[-496.462,-318.488],[-499.324,-321.476],[-503.5,-322.556],[-507.982,-321.386],[-511.15,-318.2],[-512.32,-313.664],[-511.132,-309.092],[-507.91,-305.906],[-503.284,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":104,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-481.882,-306.14],[-480.172,-309.956],[-480.838,-312.512],[-482.548,-314.06],[-484.744,-314.978],[-486.958,-315.644],[-488.668,-316.436],[-489.316,-317.768],[-488.578,-319.1],[-486.436,-319.604],[-484.06,-319.1],[-482.26,-317.66],[-480.172,-319.748],[-482.746,-321.854],[-486.328,-322.556],[-489.604,-321.944],[-491.71,-320.198],[-492.448,-317.516],[-491.782,-315.014],[-490.072,-313.52],[-487.858,-312.656],[-485.644,-311.99],[-483.934,-311.126],[-483.268,-309.668],[-484.096,-308.21],[-486.436,-307.688],[-489.172,-308.246],[-491.332,-309.956],[-493.42,-307.868],[-491.566,-306.194],[-489.208,-305.114],[-486.472,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":105,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-470.668,-305.096],[-470.668,-329.36],[-473.908,-329.36],[-473.908,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-466.456,-319.244],[-466.456,-322.196],[-478.12,-322.196],[-478.12,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":106,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-452.128,-305.492],[-449.104,-307.688],[-451.192,-309.812],[-453.262,-308.3],[-455.908,-307.796],[-458.968,-308.534],[-461.02,-310.622],[-461.74,-313.772],[-461.056,-316.832],[-459.112,-318.848],[-456.196,-319.568],[-453.496,-318.902],[-451.768,-317.03],[-451.156,-314.096],[-449.968,-315.14],[-462.676,-315.14],[-462.676,-312.44],[-448.24,-312.44],[-448.096,-313.358],[-448.06,-314.132],[-449.086,-318.488],[-451.948,-321.476],[-456.124,-322.556],[-460.606,-321.386],[-463.774,-318.2],[-464.944,-313.664],[-463.756,-309.092],[-460.534,-305.906],[-455.908,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":107,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-441.292,-305.096],[-441.292,-322.196],[-444.532,-322.196],[-444.532,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-440.14,-318.344],[-437.188,-319.496],[-435.676,-319.244],[-434.488,-318.416],[-432.364,-320.612],[-434.308,-322.106],[-436.648,-322.556],[-441.004,-320.612],[-442.516,-315.392],[-441.292,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":108,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-420.43,-306.14],[-418.72,-309.956],[-419.386,-312.512],[-421.096,-314.06],[-423.292,-314.978],[-425.506,-315.644],[-427.216,-316.436],[-427.864,-317.768],[-427.126,-319.1],[-424.984,-319.604],[-422.608,-319.1],[-420.808,-317.66],[-418.72,-319.748],[-421.294,-321.854],[-424.876,-322.556],[-428.152,-321.944],[-430.258,-320.198],[-430.996,-317.516],[-430.33,-315.014],[-428.62,-313.52],[-426.406,-312.656],[-424.192,-311.99],[-422.482,-311.126],[-421.816,-309.668],[-422.644,-308.21],[-424.984,-307.688],[-427.72,-308.246],[-429.88,-309.956],[-431.968,-307.868],[-430.114,-306.194],[-427.756,-305.114],[-425.02,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":109,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-400.864,-305.096],[-395.896,-317.984],[-397.084,-317.984],[-392.152,-305.096],[-390.244,-305.096],[-383.512,-322.196],[-386.896,-322.196],[-391.792,-308.876],[-390.712,-308.876],[-395.572,-322.196],[-397.444,-322.196],[-402.304,-308.876],[-401.224,-308.876],[-406.12,-322.196],[-409.504,-322.196],[-402.772,-305.096]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":110,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-377.644,-305.096],[-377.644,-322.196],[-380.92,-322.196],[-380.92,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-377.788,-326.21],[-377.212,-327.704],[-377.788,-329.162],[-379.264,-329.756],[-380.74,-329.162],[-381.316,-327.704],[-380.74,-326.21],[-379.264,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":111,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-366.988,-305.096],[-366.988,-329.36],[-370.228,-329.36],[-370.228,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-362.776,-319.244],[-362.776,-322.196],[-374.44,-322.196],[-374.44,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":112,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-344.272,-305.096],[-344.272,-315.716],[-345.136,-319.28],[-347.494,-321.692],[-350.932,-322.556],[-354.424,-321.674],[-356.836,-319.28],[-357.7,-315.824],[-356.368,-315.068],[-355.792,-317.372],[-354.208,-318.956],[-351.904,-319.532],[-348.754,-318.272],[-347.548,-315.068],[-347.548,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-356.368,-305.096],[-356.368,-330.8],[-359.608,-330.8],[-359.608,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":113,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-327.55,-305.924],[-324.328,-309.146],[-323.14,-313.7],[-324.328,-318.2],[-327.55,-321.386],[-332.104,-322.556],[-336.604,-321.368],[-339.808,-318.182],[-340.996,-313.7],[-339.808,-309.146],[-336.604,-305.924],[-332.104,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-334.948,-308.624],[-336.928,-310.694],[-337.648,-313.7],[-336.928,-316.652],[-334.948,-318.686],[-332.104,-319.424],[-329.206,-318.686],[-327.226,-316.652],[-326.488,-313.7],[-327.208,-310.694],[-329.188,-308.624],[-332.104,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":114,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-308.848,-305.726],[-306.256,-308.336],[-305.32,-312.26],[-305.32,-322.196],[-308.56,-322.196],[-308.56,-312.404],[-309.64,-309.074],[-312.628,-307.868],[-314.824,-308.408],[-316.246,-309.974],[-316.732,-312.404],[-316.732,-322.196],[-319.972,-322.196],[-319.972,-312.26],[-319.036,-308.336],[-316.426,-305.726],[-312.628,-304.808]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":115,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-295.096,-305.096],[-295.096,-329.36],[-298.336,-329.36],[-298.336,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-290.884,-319.244],[-290.884,-322.196],[-302.548,-322.196],[-302.548,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":116,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-269.5,-305.546],[-267.034,-307.796],[-266.008,-311.072],[-266.008,-316.22],[-267.052,-319.514],[-269.518,-321.746],[-272.992,-322.556],[-277.258,-321.368],[-280.246,-318.164],[-281.344,-313.628],[-280.246,-309.092],[-277.258,-305.906],[-272.992,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-275.332,-308.552],[-277.294,-310.622],[-277.996,-313.664],[-277.294,-316.67],[-275.35,-318.74],[-272.488,-319.496],[-269.662,-318.758],[-267.772,-316.688],[-267.088,-313.628],[-268.564,-309.434],[-272.452,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-264.028,-305.096],[-264.028,-322.196],[-267.304,-322.196],[-267.304,-318.02],[-266.692,-313.88],[-267.304,-309.704],[-267.304,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":117,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-243.976,-305.096],[-243.976,-315.716],[-244.84,-319.046],[-247.198,-321.584],[-250.636,-322.556],[-254.128,-321.674],[-256.54,-319.28],[-257.404,-315.824],[-256.072,-315.068],[-255.496,-317.372],[-253.912,-318.956],[-251.608,-319.532],[-248.458,-318.272],[-247.252,-315.068],[-247.252,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-256.072,-305.096],[-256.072,-322.196],[-259.312,-322.196],[-259.312,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":118,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-232.024,-304.952],[-224.032,-322.196],[-227.632,-322.196],[-233.428,-308.696],[-232.276,-308.696],[-237.784,-322.196],[-241.384,-322.196],[-233.968,-304.952]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-235.264,-297.932],[-232.024,-304.952],[-233.86,-308.264],[-238.864,-297.932]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":119,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-210.388,-305.096],[-210.388,-322.196],[-213.628,-322.196],[-213.628,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-209.236,-318.344],[-206.284,-319.496],[-204.772,-319.244],[-203.584,-318.416],[-201.46,-320.612],[-203.404,-322.106],[-205.744,-322.556],[-210.1,-320.612],[-211.612,-315.392],[-210.388,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":120,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-188.032,-305.492],[-185.008,-307.688],[-187.096,-309.812],[-189.166,-308.3],[-191.812,-307.796],[-194.872,-308.534],[-196.924,-310.622],[-197.644,-313.772],[-196.96,-316.832],[-195.016,-318.848],[-192.1,-319.568],[-189.4,-318.902],[-187.672,-317.03],[-187.06,-314.096],[-185.872,-315.14],[-198.58,-315.14],[-198.58,-312.44],[-184.144,-312.44],[-184,-313.358],[-183.964,-314.132],[-184.99,-318.488],[-187.852,-321.476],[-192.028,-322.556],[-196.51,-321.386],[-199.678,-318.2],[-200.848,-313.664],[-199.66,-309.092],[-196.438,-305.906],[-191.812,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":121,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-169.672,-305.546],[-167.206,-307.796],[-166.18,-311.072],[-166.18,-316.22],[-167.224,-319.514],[-169.69,-321.746],[-173.164,-322.556],[-177.43,-321.368],[-180.418,-318.164],[-181.516,-313.628],[-180.418,-309.092],[-177.43,-305.906],[-173.164,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-175.504,-308.552],[-177.466,-310.622],[-178.168,-313.664],[-177.466,-316.67],[-175.522,-318.74],[-172.66,-319.496],[-169.834,-318.758],[-167.944,-316.688],[-167.26,-313.628],[-168.736,-309.434],[-172.624,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-164.2,-305.096],[-164.2,-322.196],[-167.476,-322.196],[-167.476,-318.02],[-166.864,-313.88],[-167.476,-309.704],[-167.476,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":122,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-149.458,-306.14],[-147.748,-309.956],[-148.414,-312.512],[-150.124,-314.06],[-152.32,-314.978],[-154.534,-315.644],[-156.244,-316.436],[-156.892,-317.768],[-156.154,-319.1],[-154.012,-319.604],[-151.636,-319.1],[-149.836,-317.66],[-147.748,-319.748],[-150.322,-321.854],[-153.904,-322.556],[-157.18,-321.944],[-159.286,-320.198],[-160.024,-317.516],[-159.358,-315.014],[-157.648,-313.52],[-155.434,-312.656],[-153.22,-311.99],[-151.51,-311.126],[-150.844,-309.668],[-151.672,-308.21],[-154.012,-307.688],[-156.748,-308.246],[-158.908,-309.956],[-160.996,-307.868],[-159.142,-306.194],[-156.784,-305.114],[-154.048,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":123,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-131.782,-305.924],[-128.56,-309.146],[-127.372,-313.7],[-128.56,-318.2],[-131.782,-321.386],[-136.336,-322.556],[-140.836,-321.368],[-144.04,-318.182],[-145.228,-313.7],[-144.04,-309.146],[-140.836,-305.924],[-136.336,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-139.18,-308.624],[-141.16,-310.694],[-141.88,-313.7],[-141.16,-316.652],[-139.18,-318.686],[-136.336,-319.424],[-133.438,-318.686],[-131.458,-316.652],[-130.72,-313.7],[-131.44,-310.694],[-133.42,-308.624],[-136.336,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":124,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-108.436,-305.096],[-108.436,-315.716],[-109.3,-319.046],[-111.658,-321.584],[-115.096,-322.556],[-118.588,-321.674],[-121,-319.28],[-121.864,-315.824],[-120.532,-315.068],[-119.956,-317.372],[-118.372,-318.956],[-116.068,-319.532],[-112.918,-318.272],[-111.712,-315.068],[-111.712,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-120.532,-305.096],[-120.532,-322.196],[-123.772,-322.196],[-123.772,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":125,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.444,0.468],[0,0.648],[0.444,0.444],[0.672,0],[0.432,-0.444],[0,-0.672],[-0.432,-0.468],[-0.696,0]],"o":[[0.444,-0.468],[0,-0.672],[-0.444,-0.444],[-0.696,0],[-0.432,0.444],[0,0.648],[0.432,0.468],[0.672,0]],"v":[[-99.526,-305.438],[-98.86,-307.112],[-99.526,-308.786],[-101.2,-309.452],[-102.892,-308.786],[-103.54,-307.112],[-102.892,-305.438],[-101.2,-304.736]],"c":true},"ix":2},"nm":".","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":".","np":3,"cix":2,"bm":0,"ix":126,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-76.144,-305.096],[-76.144,-329.36],[-79.564,-329.36],[-79.564,-305.096]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-67.684,-326.984],[-67.684,-330.08],[-88.024,-330.08],[-88.024,-326.984]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":127,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-48.892,-305.096],[-48.892,-315.716],[-49.756,-319.28],[-52.114,-321.692],[-55.552,-322.556],[-59.044,-321.674],[-61.456,-319.28],[-62.32,-315.824],[-60.988,-315.068],[-60.412,-317.372],[-58.828,-318.956],[-56.524,-319.532],[-53.374,-318.272],[-52.168,-315.068],[-52.168,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-60.988,-305.096],[-60.988,-330.8],[-64.228,-330.8],[-64.228,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":128,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-32.8,-305.492],[-29.776,-307.688],[-31.864,-309.812],[-33.934,-308.3],[-36.58,-307.796],[-39.64,-308.534],[-41.692,-310.622],[-42.412,-313.772],[-41.728,-316.832],[-39.784,-318.848],[-36.868,-319.568],[-34.168,-318.902],[-32.44,-317.03],[-31.828,-314.096],[-30.64,-315.14],[-43.348,-315.14],[-43.348,-312.44],[-28.912,-312.44],[-28.768,-313.358],[-28.732,-314.132],[-29.758,-318.488],[-32.62,-321.476],[-36.796,-322.556],[-41.278,-321.386],[-44.446,-318.2],[-45.616,-313.664],[-44.428,-309.092],[-41.206,-305.906],[-36.58,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":129,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-17.932,-304.952],[-9.94,-322.196],[-13.54,-322.196],[-19.336,-308.696],[-18.184,-308.696],[-23.692,-322.196],[-27.292,-322.196],[-19.876,-304.952]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-21.172,-297.932],[-17.932,-304.952],[-19.768,-308.264],[-24.772,-297.932]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":130,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[13.694,-305.906],[16.664,-309.092],[17.744,-313.628],[16.664,-318.164],[13.694,-321.368],[9.464,-322.556],[5.99,-321.746],[3.47,-319.514],[2.408,-316.22],[2.408,-311.072],[3.452,-307.796],[5.954,-305.546],[9.464,-304.736]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[3.704,-305.096],[3.704,-309.704],[3.092,-313.88],[3.704,-318.02],[3.704,-330.8],[0.464,-330.8],[0.464,-305.096]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[6.098,-308.552],[4.19,-310.622],[3.524,-313.628],[4.208,-316.67],[6.116,-318.74],[8.924,-319.496],[11.768,-318.74],[13.694,-316.67],[14.396,-313.664],[13.694,-310.622],[11.768,-308.552],[8.924,-307.796]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":131,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[33.116,-305.492],[36.14,-307.688],[34.052,-309.812],[31.982,-308.3],[29.336,-307.796],[26.276,-308.534],[24.224,-310.622],[23.504,-313.772],[24.188,-316.832],[26.132,-318.848],[29.048,-319.568],[31.748,-318.902],[33.476,-317.03],[34.088,-314.096],[35.276,-315.14],[22.568,-315.14],[22.568,-312.44],[37.004,-312.44],[37.148,-313.358],[37.184,-314.132],[36.158,-318.488],[33.296,-321.476],[29.12,-322.556],[24.638,-321.386],[21.47,-318.2],[20.3,-313.664],[21.488,-309.092],[24.71,-305.906],[29.336,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":132,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[52.502,-298.598],[55.67,-301.478],[56.804,-305.78],[56.804,-322.196],[53.564,-322.196],[53.564,-317.696],[54.14,-313.88],[53.564,-310.028],[53.564,-305.78],[52.016,-302.054],[47.876,-300.668],[44.456,-301.37],[41.972,-303.404],[39.848,-301.28],[43.124,-298.544],[47.804,-297.572]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[51.332,-306.176],[53.798,-308.39],[54.824,-311.684],[54.824,-316.22],[53.816,-319.55],[51.35,-321.764],[47.768,-322.556],[43.592,-321.422],[40.658,-318.362],[39.596,-313.988],[40.676,-309.578],[43.61,-306.5],[47.804,-305.384]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[45.59,-309.146],[43.646,-311.108],[42.944,-313.988],[43.646,-316.85],[45.572,-318.794],[48.416,-319.496],[51.206,-318.794],[53.078,-316.85],[53.744,-313.952],[53.078,-311.054],[51.224,-309.128],[48.416,-308.444]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":133,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[72.284,-305.546],[74.75,-307.796],[75.776,-311.072],[75.776,-316.22],[74.732,-319.514],[72.266,-321.746],[68.792,-322.556],[64.526,-321.368],[61.538,-318.164],[60.44,-313.628],[61.538,-309.092],[64.526,-305.906],[68.792,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[66.452,-308.552],[64.49,-310.622],[63.788,-313.664],[64.49,-316.67],[66.434,-318.74],[69.296,-319.496],[72.122,-318.758],[74.012,-316.688],[74.696,-313.628],[73.22,-309.434],[69.332,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[77.756,-305.096],[77.756,-322.196],[74.48,-322.196],[74.48,-318.02],[75.092,-313.88],[74.48,-309.704],[74.48,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":134,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[97.808,-305.096],[97.808,-315.716],[96.944,-319.046],[94.586,-321.584],[91.148,-322.556],[87.656,-321.674],[85.244,-319.28],[84.38,-315.824],[85.712,-315.068],[86.288,-317.372],[87.872,-318.956],[90.176,-319.532],[93.326,-318.272],[94.532,-315.068],[94.532,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[85.712,-305.096],[85.712,-322.196],[82.472,-322.196],[82.472,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":135,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[115.52,-305.096],[115.52,-329.36],[112.28,-329.36],[112.28,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[119.732,-319.244],[119.732,-322.196],[108.068,-322.196],[108.068,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":136,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[134.69,-305.924],[137.912,-309.146],[139.1,-313.7],[137.912,-318.2],[134.69,-321.386],[130.136,-322.556],[125.636,-321.368],[122.432,-318.182],[121.244,-313.7],[122.432,-309.146],[125.636,-305.924],[130.136,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[127.292,-308.624],[125.312,-310.694],[124.592,-313.7],[125.312,-316.652],[127.292,-318.686],[130.136,-319.424],[133.034,-318.686],[135.014,-316.652],[135.752,-313.7],[135.032,-310.694],[133.052,-308.624],[130.136,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":137,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[155.84,-305.096],[155.84,-324.752],[156.686,-327.218],[159.08,-328.1],[160.484,-327.848],[161.528,-327.092],[163.652,-329.18],[161.672,-330.656],[159.116,-331.16],[155.696,-330.332],[153.392,-328.064],[152.564,-324.752],[152.564,-305.096]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[161.276,-319.244],[161.276,-322.196],[148.388,-322.196],[148.388,-319.244]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":138,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[175.874,-305.924],[179.096,-309.146],[180.284,-313.7],[179.096,-318.2],[175.874,-321.386],[171.32,-322.556],[166.82,-321.368],[163.616,-318.182],[162.428,-313.7],[163.616,-309.146],[166.82,-305.924],[171.32,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[168.476,-308.624],[166.496,-310.694],[165.776,-313.7],[166.496,-316.652],[168.476,-318.686],[171.32,-319.424],[174.218,-318.686],[176.198,-316.652],[176.936,-313.7],[176.216,-310.694],[174.236,-308.624],[171.32,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":139,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[187.124,-305.096],[187.124,-322.196],[183.884,-322.196],[183.884,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[188.276,-318.344],[191.228,-319.496],[192.74,-319.244],[193.928,-318.416],[196.052,-320.612],[194.108,-322.106],[191.768,-322.556],[187.412,-320.612],[185.9,-315.392],[187.124,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":140,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[209.282,-305.492],[212.18,-307.616],[210.056,-309.776],[208.094,-308.354],[205.592,-307.868],[202.712,-308.624],[200.732,-310.676],[200.012,-313.664],[200.732,-316.652],[202.712,-318.686],[205.592,-319.424],[208.076,-318.938],[210.02,-317.516],[212.18,-319.676],[209.264,-321.818],[205.592,-322.556],[201.038,-321.386],[197.834,-318.2],[196.664,-313.664],[197.834,-309.146],[201.038,-305.924],[205.592,-304.736]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":141,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[226.76,-305.492],[229.784,-307.688],[227.696,-309.812],[225.626,-308.3],[222.98,-307.796],[219.92,-308.534],[217.868,-310.622],[217.148,-313.772],[217.832,-316.832],[219.776,-318.848],[222.692,-319.568],[225.392,-318.902],[227.12,-317.03],[227.732,-314.096],[228.92,-315.14],[216.212,-315.14],[216.212,-312.44],[230.648,-312.44],[230.792,-313.358],[230.828,-314.132],[229.802,-318.488],[226.94,-321.476],[222.764,-322.556],[218.282,-321.386],[215.114,-318.2],[213.944,-313.664],[215.132,-309.092],[218.354,-305.906],[222.98,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":142,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[253.31,-305.492],[256.208,-307.616],[254.084,-309.776],[252.122,-308.354],[249.62,-307.868],[246.74,-308.624],[244.76,-310.676],[244.04,-313.664],[244.76,-316.652],[246.74,-318.686],[249.62,-319.424],[252.104,-318.938],[254.048,-317.516],[256.208,-319.676],[253.292,-321.818],[249.62,-322.556],[245.066,-321.386],[241.862,-318.2],[240.692,-313.664],[241.862,-309.146],[245.066,-305.924],[249.62,-304.736]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":143,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[270.788,-305.492],[273.812,-307.688],[271.724,-309.812],[269.654,-308.3],[267.008,-307.796],[263.948,-308.534],[261.896,-310.622],[261.176,-313.772],[261.86,-316.832],[263.804,-318.848],[266.72,-319.568],[269.42,-318.902],[271.148,-317.03],[271.76,-314.096],[272.948,-315.14],[260.24,-315.14],[260.24,-312.44],[274.676,-312.44],[274.82,-313.358],[274.856,-314.132],[273.83,-318.488],[270.968,-321.476],[266.792,-322.556],[262.31,-321.386],[259.142,-318.2],[257.972,-313.664],[259.16,-309.092],[262.382,-305.906],[267.008,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":144,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[293.72,-305.096],[293.72,-315.716],[292.856,-319.046],[290.498,-321.584],[287.06,-322.556],[283.568,-321.674],[281.156,-319.28],[280.292,-315.824],[281.624,-315.068],[282.2,-317.372],[283.784,-318.956],[286.088,-319.532],[289.238,-318.272],[290.444,-315.068],[290.444,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[281.624,-305.096],[281.624,-322.196],[278.384,-322.196],[278.384,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":145,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[308.138,-306.14],[309.848,-309.956],[309.182,-312.512],[307.472,-314.06],[305.276,-314.978],[303.062,-315.644],[301.352,-316.436],[300.704,-317.768],[301.442,-319.1],[303.584,-319.604],[305.96,-319.1],[307.76,-317.66],[309.848,-319.748],[307.274,-321.854],[303.692,-322.556],[300.416,-321.944],[298.31,-320.198],[297.572,-317.516],[298.238,-315.014],[299.948,-313.52],[302.162,-312.656],[304.376,-311.99],[306.086,-311.126],[306.752,-309.668],[305.924,-308.21],[303.584,-307.688],[300.848,-308.246],[298.688,-309.956],[296.6,-307.868],[298.454,-306.194],[300.812,-305.114],[303.548,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":146,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[325.814,-305.924],[329.036,-309.146],[330.224,-313.7],[329.036,-318.2],[325.814,-321.386],[321.26,-322.556],[316.76,-321.368],[313.556,-318.182],[312.368,-313.7],[313.556,-309.146],[316.76,-305.924],[321.26,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[318.416,-308.624],[316.436,-310.694],[315.716,-313.7],[316.436,-316.652],[318.416,-318.686],[321.26,-319.424],[324.158,-318.686],[326.138,-316.652],[326.876,-313.7],[326.156,-310.694],[324.176,-308.624],[321.26,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":147,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[337.064,-305.096],[337.064,-322.196],[333.824,-322.196],[333.824,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[338.216,-318.344],[341.168,-319.496],[342.68,-319.244],[343.868,-318.416],[345.992,-320.612],[344.048,-322.106],[341.708,-322.556],[337.352,-320.612],[335.84,-315.392],[337.064,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":148,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[357.926,-306.14],[359.636,-309.956],[358.97,-312.512],[357.26,-314.06],[355.064,-314.978],[352.85,-315.644],[351.14,-316.436],[350.492,-317.768],[351.23,-319.1],[353.372,-319.604],[355.748,-319.1],[357.548,-317.66],[359.636,-319.748],[357.062,-321.854],[353.48,-322.556],[350.204,-321.944],[348.098,-320.198],[347.36,-317.516],[348.026,-315.014],[349.736,-313.52],[351.95,-312.656],[354.164,-311.99],[355.874,-311.126],[356.54,-309.668],[355.712,-308.21],[353.372,-307.688],[350.636,-308.246],[348.476,-309.956],[346.388,-307.868],[348.242,-306.194],[350.6,-305.114],[353.336,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":149,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[378.608,-305.096],[378.608,-315.716],[377.744,-319.28],[375.386,-321.692],[371.948,-322.556],[368.456,-321.674],[366.044,-319.28],[365.18,-315.824],[366.512,-315.068],[367.088,-317.372],[368.672,-318.956],[370.976,-319.532],[374.126,-318.272],[375.332,-315.068],[375.332,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[366.512,-305.096],[366.512,-330.8],[363.272,-330.8],[363.272,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":150,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[386.276,-305.096],[386.276,-322.196],[383,-322.196],[383,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[386.132,-326.21],[386.708,-327.704],[386.132,-329.162],[384.656,-329.756],[383.18,-329.162],[382.604,-327.704],[383.18,-326.21],[384.656,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":151,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[404.294,-305.906],[407.264,-309.092],[408.344,-313.628],[407.264,-318.164],[404.294,-321.368],[400.064,-322.556],[396.59,-321.746],[394.07,-319.514],[393.008,-316.22],[393.008,-311.072],[394.052,-307.796],[396.554,-305.546],[400.064,-304.736]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[394.304,-297.932],[394.304,-309.38],[393.692,-313.556],[394.304,-317.696],[394.304,-322.196],[391.064,-322.196],[391.064,-297.932]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[396.698,-308.552],[394.79,-310.622],[394.124,-313.628],[394.808,-316.67],[396.716,-318.74],[399.524,-319.496],[402.368,-318.74],[404.294,-316.67],[404.996,-313.664],[404.294,-310.622],[402.368,-308.552],[399.524,-307.796]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":152,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[430.232,-305.546],[432.698,-307.796],[433.724,-311.072],[433.724,-316.22],[432.68,-319.514],[430.214,-321.746],[426.74,-322.556],[422.474,-321.368],[419.486,-318.164],[418.388,-313.628],[419.486,-309.092],[422.474,-305.906],[426.74,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[424.4,-308.552],[422.438,-310.622],[421.736,-313.664],[422.438,-316.67],[424.382,-318.74],[427.244,-319.496],[430.07,-318.758],[431.96,-316.688],[432.644,-313.628],[431.168,-309.434],[427.28,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[435.704,-305.096],[435.704,-322.196],[432.428,-322.196],[432.428,-318.02],[433.04,-313.88],[432.428,-309.704],[432.428,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":153,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[451.922,-305.492],[454.82,-307.616],[452.696,-309.776],[450.734,-308.354],[448.232,-307.868],[445.352,-308.624],[443.372,-310.676],[442.652,-313.664],[443.372,-316.652],[445.352,-318.686],[448.232,-319.424],[450.716,-318.938],[452.66,-317.516],[454.82,-319.676],[451.904,-321.818],[448.232,-322.556],[443.678,-321.386],[440.474,-318.2],[439.304,-313.664],[440.474,-309.146],[443.678,-305.924],[448.232,-304.736]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":154,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[461.264,-305.096],[461.264,-322.196],[458.024,-322.196],[458.024,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[462.416,-318.344],[465.368,-319.496],[466.88,-319.244],[468.068,-318.416],[470.192,-320.612],[468.248,-322.106],[465.908,-322.556],[461.552,-320.612],[460.04,-315.392],[461.264,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":155,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[484.25,-305.924],[487.472,-309.146],[488.66,-313.7],[487.472,-318.2],[484.25,-321.386],[479.696,-322.556],[475.196,-321.368],[471.992,-318.182],[470.804,-313.7],[471.992,-309.146],[475.196,-305.924],[479.696,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[476.852,-308.624],[474.872,-310.694],[474.152,-313.7],[474.872,-316.652],[476.852,-318.686],[479.696,-319.424],[482.594,-318.686],[484.574,-316.652],[485.312,-313.7],[484.592,-310.694],[482.612,-308.624],[479.696,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":156,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[502.286,-306.14],[503.996,-309.956],[503.33,-312.512],[501.62,-314.06],[499.424,-314.978],[497.21,-315.644],[495.5,-316.436],[494.852,-317.768],[495.59,-319.1],[497.732,-319.604],[500.108,-319.1],[501.908,-317.66],[503.996,-319.748],[501.422,-321.854],[497.84,-322.556],[494.564,-321.944],[492.458,-320.198],[491.72,-317.516],[492.386,-315.014],[494.096,-313.52],[496.31,-312.656],[498.524,-311.99],[500.234,-311.126],[500.9,-309.668],[500.072,-308.21],[497.732,-307.688],[494.996,-308.246],[492.836,-309.956],[490.748,-307.868],[492.602,-306.194],[494.96,-305.114],[497.696,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":157,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[517.658,-306.14],[519.368,-309.956],[518.702,-312.512],[516.992,-314.06],[514.796,-314.978],[512.582,-315.644],[510.872,-316.436],[510.224,-317.768],[510.962,-319.1],[513.104,-319.604],[515.48,-319.1],[517.28,-317.66],[519.368,-319.748],[516.794,-321.854],[513.212,-322.556],[509.936,-321.944],[507.83,-320.198],[507.092,-317.516],[507.758,-315.014],[509.468,-313.52],[511.682,-312.656],[513.896,-311.99],[515.606,-311.126],[516.272,-309.668],[515.444,-308.21],[513.104,-307.688],[510.368,-308.246],[508.208,-309.956],[506.12,-307.868],[507.974,-306.194],[510.332,-305.114],[513.068,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":158,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[540.482,-306.14],[542.192,-309.956],[541.526,-312.512],[539.816,-314.06],[537.62,-314.978],[535.406,-315.644],[533.696,-316.436],[533.048,-317.768],[533.786,-319.1],[535.928,-319.604],[538.304,-319.1],[540.104,-317.66],[542.192,-319.748],[539.618,-321.854],[536.036,-322.556],[532.76,-321.944],[530.654,-320.198],[529.916,-317.516],[530.582,-315.014],[532.292,-313.52],[534.506,-312.656],[536.72,-311.99],[538.43,-311.126],[539.096,-309.668],[538.268,-308.21],[535.928,-307.688],[533.192,-308.246],[531.032,-309.956],[528.944,-307.868],[530.798,-306.194],[533.156,-305.114],[535.892,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":159,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[558.158,-305.924],[561.38,-309.146],[562.568,-313.7],[561.38,-318.2],[558.158,-321.386],[553.604,-322.556],[549.104,-321.368],[545.9,-318.182],[544.712,-313.7],[545.9,-309.146],[549.104,-305.924],[553.604,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[550.76,-308.624],[548.78,-310.694],[548.06,-313.7],[548.78,-316.652],[550.76,-318.686],[553.604,-319.424],[556.502,-318.686],[558.482,-316.652],[559.22,-313.7],[558.5,-310.694],[556.52,-308.624],[553.604,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":160,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[577.67,-305.492],[580.568,-307.616],[578.444,-309.776],[576.482,-308.354],[573.98,-307.868],[571.1,-308.624],[569.12,-310.676],[568.4,-313.664],[569.12,-316.652],[571.1,-318.686],[573.98,-319.424],[576.464,-318.938],[578.408,-317.516],[580.568,-319.676],[577.652,-321.818],[573.98,-322.556],[569.426,-321.386],[566.222,-318.2],[565.052,-313.664],[566.222,-309.146],[569.426,-305.924],[573.98,-304.736]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":161,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[587.048,-305.096],[587.048,-322.196],[583.772,-322.196],[583.772,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[586.904,-326.21],[587.48,-327.704],[586.904,-329.162],[585.428,-329.756],[583.952,-329.162],[583.376,-327.704],[583.952,-326.21],[585.428,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":162,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[602.6,-305.546],[605.066,-307.796],[606.092,-311.072],[606.092,-316.22],[605.048,-319.514],[602.582,-321.746],[599.108,-322.556],[594.842,-321.368],[591.854,-318.164],[590.756,-313.628],[591.854,-309.092],[594.842,-305.906],[599.108,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[596.768,-308.552],[594.806,-310.622],[594.104,-313.664],[594.806,-316.67],[596.75,-318.74],[599.612,-319.496],[602.438,-318.758],[604.328,-316.688],[605.012,-313.628],[603.536,-309.434],[599.648,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[608.072,-305.096],[608.072,-322.196],[604.796,-322.196],[604.796,-318.02],[605.408,-313.88],[604.796,-309.704],[604.796,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":163,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[616.028,-305.096],[616.028,-330.8],[612.788,-330.8],[612.788,-305.096]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":164,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[631.472,-305.096],[631.472,-322.196],[628.232,-322.196],[628.232,-305.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[643.028,-305.096],[643.028,-316.112],[642.182,-319.532],[639.878,-321.764],[636.62,-322.556],[633.308,-321.746],[630.986,-319.496],[630.14,-316.112],[631.472,-315.428],[632.048,-317.624],[633.56,-319.028],[635.684,-319.532],[638.618,-318.434],[639.788,-315.428],[639.788,-305.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[654.62,-305.096],[654.62,-316.076],[653.738,-319.532],[651.38,-321.764],[648.032,-322.556],[644.72,-321.746],[642.254,-319.514],[641.192,-316.112],[643.028,-315.428],[643.604,-317.624],[645.134,-319.028],[647.276,-319.532],[650.174,-318.434],[651.344,-315.428],[651.344,-305.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":165,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[670.712,-305.492],[673.736,-307.688],[671.648,-309.812],[669.578,-308.3],[666.932,-307.796],[663.872,-308.534],[661.82,-310.622],[661.1,-313.772],[661.784,-316.832],[663.728,-318.848],[666.644,-319.568],[669.344,-318.902],[671.072,-317.03],[671.684,-314.096],[672.872,-315.14],[660.164,-315.14],[660.164,-312.44],[674.6,-312.44],[674.744,-313.358],[674.78,-314.132],[673.754,-318.488],[670.892,-321.476],[666.716,-322.556],[662.234,-321.386],[659.066,-318.2],[657.896,-313.664],[659.084,-309.092],[662.306,-305.906],[666.932,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":166,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[689.036,-305.546],[691.52,-307.796],[692.564,-311.072],[692.564,-316.22],[691.502,-319.514],[689,-321.746],[685.508,-322.556],[681.296,-321.368],[678.326,-318.164],[677.228,-313.628],[678.326,-309.092],[681.296,-305.906],[685.508,-304.736]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[683.222,-308.534],[681.278,-310.604],[680.576,-313.664],[681.278,-316.706],[683.204,-318.758],[686.048,-319.496],[688.892,-318.74],[690.8,-316.67],[691.484,-313.628],[690.8,-310.622],[688.892,-308.552],[686.048,-307.796]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[694.544,-330.8],[691.268,-330.8],[691.268,-318.02],[691.88,-313.88],[691.268,-309.704],[691.268,-305.096],[694.544,-305.096]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":167,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[702.536,-305.096],[702.536,-322.196],[699.26,-322.196],[699.26,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[702.392,-326.21],[702.968,-327.704],[702.392,-329.162],[700.916,-329.756],[699.44,-329.162],[698.864,-327.704],[699.44,-326.21],[700.916,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":168,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[718.088,-305.546],[720.554,-307.796],[721.58,-311.072],[721.58,-316.22],[720.536,-319.514],[718.07,-321.746],[714.596,-322.556],[710.33,-321.368],[707.342,-318.164],[706.244,-313.628],[707.342,-309.092],[710.33,-305.906],[714.596,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[712.256,-308.552],[710.294,-310.622],[709.592,-313.664],[710.294,-316.67],[712.238,-318.74],[715.1,-319.496],[717.926,-318.758],[719.816,-316.688],[720.5,-313.628],[719.024,-309.434],[715.136,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[723.56,-305.096],[723.56,-322.196],[720.284,-322.196],[720.284,-318.02],[720.896,-313.88],[720.284,-309.704],[720.284,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":169,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-816.394,-262.706],[-813.424,-265.892],[-812.344,-270.428],[-813.424,-274.964],[-816.394,-278.168],[-820.624,-279.356],[-824.098,-278.546],[-826.618,-276.314],[-827.68,-273.02],[-827.68,-267.872],[-826.636,-264.596],[-824.134,-262.346],[-820.624,-261.536]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-826.384,-254.732],[-826.384,-266.18],[-826.996,-270.356],[-826.384,-274.496],[-826.384,-278.996],[-829.624,-278.996],[-829.624,-254.732]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-823.99,-265.352],[-825.898,-267.422],[-826.564,-270.428],[-825.88,-273.47],[-823.972,-275.54],[-821.164,-276.296],[-818.32,-275.54],[-816.394,-273.47],[-815.692,-270.464],[-816.394,-267.422],[-818.32,-265.352],[-821.164,-264.596]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":170,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-805.432,-261.896],[-805.432,-287.6],[-808.672,-287.6],[-808.672,-261.896]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":171,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-789.916,-262.346],[-787.45,-264.596],[-786.424,-267.872],[-786.424,-273.02],[-787.468,-276.314],[-789.934,-278.546],[-793.408,-279.356],[-797.674,-278.168],[-800.662,-274.964],[-801.76,-270.428],[-800.662,-265.892],[-797.674,-262.706],[-793.408,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-795.748,-265.352],[-797.71,-267.422],[-798.412,-270.464],[-797.71,-273.47],[-795.766,-275.54],[-792.904,-276.296],[-790.078,-275.558],[-788.188,-273.488],[-787.504,-270.428],[-788.98,-266.234],[-792.868,-264.596]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-784.444,-261.896],[-784.444,-278.996],[-787.72,-278.996],[-787.72,-274.82],[-787.108,-270.68],[-787.72,-266.504],[-787.72,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":172,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-773.932,-261.896],[-773.932,-286.16],[-777.172,-286.16],[-777.172,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-769.72,-276.044],[-769.72,-278.996],[-781.384,-278.996],[-781.384,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":173,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[-761.512,-261.896],[-761.512,-281.552],[-760.666,-284.018],[-758.272,-284.9],[-756.868,-284.648],[-755.824,-283.892],[-753.7,-285.98],[-755.68,-287.456],[-758.236,-287.96],[-761.656,-287.132],[-763.96,-284.864],[-764.788,-281.552],[-764.788,-261.896]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-756.076,-276.044],[-756.076,-278.996],[-768.964,-278.996],[-768.964,-276.044]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":174,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-741.478,-262.724],[-738.256,-265.946],[-737.068,-270.5],[-738.256,-275],[-741.478,-278.186],[-746.032,-279.356],[-750.532,-278.168],[-753.736,-274.982],[-754.924,-270.5],[-753.736,-265.946],[-750.532,-262.724],[-746.032,-261.536]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-748.876,-265.424],[-750.856,-267.494],[-751.576,-270.5],[-750.856,-273.452],[-748.876,-275.486],[-746.032,-276.224],[-743.134,-275.486],[-741.154,-273.452],[-740.416,-270.5],[-741.136,-267.494],[-743.116,-265.424],[-746.032,-264.668]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":175,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-730.228,-261.896],[-730.228,-278.996],[-733.468,-278.996],[-733.468,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-729.076,-275.144],[-726.124,-276.296],[-724.612,-276.044],[-723.424,-275.216],[-721.3,-277.412],[-723.244,-278.906],[-725.584,-279.356],[-729.94,-277.412],[-731.452,-272.192],[-730.228,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":176,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-715.72,-261.896],[-715.72,-278.996],[-718.96,-278.996],[-718.96,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-704.164,-261.896],[-704.164,-272.912],[-705.01,-276.332],[-707.314,-278.564],[-710.572,-279.356],[-713.884,-278.546],[-716.206,-276.296],[-717.052,-272.912],[-715.72,-272.228],[-715.144,-274.424],[-713.632,-275.828],[-711.508,-276.332],[-708.574,-275.234],[-707.404,-272.228],[-707.404,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-692.572,-261.896],[-692.572,-272.876],[-693.454,-276.332],[-695.812,-278.564],[-699.16,-279.356],[-702.472,-278.546],[-704.938,-276.314],[-706,-272.912],[-704.164,-272.228],[-703.588,-274.424],[-702.058,-275.828],[-699.916,-276.332],[-697.018,-275.234],[-695.848,-272.228],[-695.848,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":177,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.264],[0.48,0.468],[0.624,0],[0.456,-0.468],[0,-0.696],[-0.42,-0.42],[-0.504,0],[-0.192,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.6],[0.108,-0.372],[0,-0.696],[-0.48,-0.468],[-0.696,0],[-0.456,0.468],[0,0.624],[0.42,0.42],[0.24,0],[0.192,-0.168],[0,0],[0,0],[0,0]],"v":[[-686.164,-256.928],[-683.752,-261.392],[-683.122,-262.85],[-682.96,-263.804],[-683.68,-265.55],[-685.336,-266.252],[-687.064,-265.55],[-687.748,-263.804],[-687.118,-262.238],[-685.732,-261.608],[-685.084,-261.86],[-684.616,-262.508],[-685.768,-262.22],[-688,-257.936]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":178,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-660.802,-262.94],[-659.092,-266.756],[-659.758,-269.312],[-661.468,-270.86],[-663.664,-271.778],[-665.878,-272.444],[-667.588,-273.236],[-668.236,-274.568],[-667.498,-275.9],[-665.356,-276.404],[-662.98,-275.9],[-661.18,-274.46],[-659.092,-276.548],[-661.666,-278.654],[-665.248,-279.356],[-668.524,-278.744],[-670.63,-276.998],[-671.368,-274.316],[-670.702,-271.814],[-668.992,-270.32],[-666.778,-269.456],[-664.564,-268.79],[-662.854,-267.926],[-662.188,-266.468],[-663.016,-265.01],[-665.356,-264.488],[-668.092,-265.046],[-670.252,-266.756],[-672.34,-264.668],[-670.486,-262.994],[-668.128,-261.914],[-665.392,-261.536]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":179,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-649.588,-261.896],[-649.588,-286.16],[-652.828,-286.16],[-652.828,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-645.376,-276.044],[-645.376,-278.996],[-657.04,-278.996],[-657.04,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":180,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-631.984,-262.346],[-629.518,-264.596],[-628.492,-267.872],[-628.492,-273.02],[-629.536,-276.314],[-632.002,-278.546],[-635.476,-279.356],[-639.742,-278.168],[-642.73,-274.964],[-643.828,-270.428],[-642.73,-265.892],[-639.742,-262.706],[-635.476,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-637.816,-265.352],[-639.778,-267.422],[-640.48,-270.464],[-639.778,-273.47],[-637.834,-275.54],[-634.972,-276.296],[-632.146,-275.558],[-630.256,-273.488],[-629.572,-270.428],[-631.048,-266.234],[-634.936,-264.596]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-626.512,-261.896],[-626.512,-278.996],[-629.788,-278.996],[-629.788,-274.82],[-629.176,-270.68],[-629.788,-266.504],[-629.788,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":181,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-618.556,-261.896],[-618.556,-278.996],[-621.796,-278.996],[-621.796,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-617.404,-275.144],[-614.452,-276.296],[-612.94,-276.044],[-611.752,-275.216],[-609.628,-277.412],[-611.572,-278.906],[-613.912,-279.356],[-618.268,-277.412],[-619.78,-272.192],[-618.556,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":182,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-601.528,-261.896],[-601.528,-286.16],[-604.768,-286.16],[-604.768,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-597.316,-276.044],[-597.316,-278.996],[-608.98,-278.996],[-608.98,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":183,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-590.872,-261.896],[-590.872,-278.996],[-594.148,-278.996],[-594.148,-261.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-591.016,-283.01],[-590.44,-284.504],[-591.016,-285.962],[-592.492,-286.556],[-593.968,-285.962],[-594.544,-284.504],[-593.968,-283.01],[-592.492,-282.416]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":184,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-570.748,-261.896],[-570.748,-272.516],[-571.612,-275.846],[-573.97,-278.384],[-577.408,-279.356],[-580.9,-278.474],[-583.312,-276.08],[-584.176,-272.624],[-582.844,-271.868],[-582.268,-274.172],[-580.684,-275.756],[-578.38,-276.332],[-575.23,-275.072],[-574.024,-271.868],[-574.024,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-582.844,-261.896],[-582.844,-278.996],[-586.084,-278.996],[-586.084,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":185,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-554.566,-255.398],[-551.398,-258.278],[-550.264,-262.58],[-550.264,-278.996],[-553.504,-278.996],[-553.504,-274.496],[-552.928,-270.68],[-553.504,-266.828],[-553.504,-262.58],[-555.052,-258.854],[-559.192,-257.468],[-562.612,-258.17],[-565.096,-260.204],[-567.22,-258.08],[-563.944,-255.344],[-559.264,-254.372]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-555.736,-262.976],[-553.27,-265.19],[-552.244,-268.484],[-552.244,-273.02],[-553.252,-276.35],[-555.718,-278.564],[-559.3,-279.356],[-563.476,-278.222],[-566.41,-275.162],[-567.472,-270.788],[-566.392,-266.378],[-563.458,-263.3],[-559.264,-262.184]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-561.478,-265.946],[-563.422,-267.908],[-564.124,-270.788],[-563.422,-273.65],[-561.496,-275.594],[-558.652,-276.296],[-555.862,-275.594],[-553.99,-273.65],[-553.324,-270.752],[-553.99,-267.854],[-555.844,-265.928],[-558.652,-265.244]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":186,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[-532.408,-261.896],[-532.408,-281.552],[-531.562,-284.018],[-529.168,-284.9],[-527.764,-284.648],[-526.72,-283.892],[-524.596,-285.98],[-526.576,-287.456],[-529.132,-287.96],[-532.552,-287.132],[-534.856,-284.864],[-535.684,-281.552],[-535.684,-261.896]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-526.972,-276.044],[-526.972,-278.996],[-539.86,-278.996],[-539.86,-276.044]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":187,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-521.14,-261.896],[-521.14,-278.996],[-524.38,-278.996],[-524.38,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-519.988,-275.144],[-517.036,-276.296],[-515.524,-276.044],[-514.336,-275.216],[-512.212,-277.412],[-514.156,-278.906],[-516.496,-279.356],[-520.852,-277.412],[-522.364,-272.192],[-521.14,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":188,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-498.154,-262.724],[-494.932,-265.946],[-493.744,-270.5],[-494.932,-275],[-498.154,-278.186],[-502.708,-279.356],[-507.208,-278.168],[-510.412,-274.982],[-511.6,-270.5],[-510.412,-265.946],[-507.208,-262.724],[-502.708,-261.536]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-505.552,-265.424],[-507.532,-267.494],[-508.252,-270.5],[-507.532,-273.452],[-505.552,-275.486],[-502.708,-276.224],[-499.81,-275.486],[-497.83,-273.452],[-497.092,-270.5],[-497.812,-267.494],[-499.792,-265.424],[-502.708,-264.668]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":189,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-486.904,-261.896],[-486.904,-278.996],[-490.144,-278.996],[-490.144,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-475.348,-261.896],[-475.348,-272.912],[-476.194,-276.332],[-478.498,-278.564],[-481.756,-279.356],[-485.068,-278.546],[-487.39,-276.296],[-488.236,-272.912],[-486.904,-272.228],[-486.328,-274.424],[-484.816,-275.828],[-482.692,-276.332],[-479.758,-275.234],[-478.588,-272.228],[-478.588,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-463.756,-261.896],[-463.756,-272.876],[-464.638,-276.332],[-466.996,-278.564],[-470.344,-279.356],[-473.656,-278.546],[-476.122,-276.314],[-477.184,-272.912],[-475.348,-272.228],[-474.772,-274.424],[-473.242,-275.828],[-471.1,-276.332],[-468.202,-275.234],[-467.032,-272.228],[-467.032,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":190,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-441.904,-261.896],[-441.904,-286.16],[-445.324,-286.16],[-445.324,-261.896]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-433.444,-283.784],[-433.444,-286.88],[-453.784,-286.88],[-453.784,-283.784]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":191,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-426.712,-261.896],[-426.712,-278.996],[-429.988,-278.996],[-429.988,-261.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-426.856,-283.01],[-426.28,-284.504],[-426.856,-285.962],[-428.332,-286.556],[-429.808,-285.962],[-430.384,-284.504],[-429.808,-283.01],[-428.332,-282.416]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":192,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-406.804,-261.896],[-415.804,-271.652],[-415.948,-269.78],[-407.128,-278.996],[-411.088,-278.996],[-418.972,-270.644],[-410.98,-261.896]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-418.684,-261.896],[-418.684,-287.6],[-421.924,-287.6],[-421.924,-261.896]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"k","np":5,"cix":2,"bm":0,"ix":193,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-393.412,-261.896],[-393.412,-286.16],[-396.832,-286.16],[-396.832,-261.896]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-384.952,-283.784],[-384.952,-286.88],[-405.292,-286.88],[-405.292,-283.784]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":194,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-373.882,-262.724],[-370.66,-265.946],[-369.472,-270.5],[-370.66,-275],[-373.882,-278.186],[-378.436,-279.356],[-382.936,-278.168],[-386.14,-274.982],[-387.328,-270.5],[-386.14,-265.946],[-382.936,-262.724],[-378.436,-261.536]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-381.28,-265.424],[-383.26,-267.494],[-383.98,-270.5],[-383.26,-273.452],[-381.28,-275.486],[-378.436,-276.224],[-375.538,-275.486],[-373.558,-273.452],[-372.82,-270.5],[-373.54,-267.494],[-375.52,-265.424],[-378.436,-264.668]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":195,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-350.752,-261.896],[-359.752,-271.652],[-359.896,-269.78],[-351.076,-278.996],[-355.036,-278.996],[-362.92,-270.644],[-354.928,-261.896]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-362.632,-261.896],[-362.632,-287.6],[-365.872,-287.6],[-365.872,-261.896]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"k","np":5,"cix":2,"bm":0,"ix":196,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.264],[0.48,0.468],[0.624,0],[0.456,-0.468],[0,-0.696],[-0.42,-0.42],[-0.504,0],[-0.192,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.6],[0.108,-0.372],[0,-0.696],[-0.48,-0.468],[-0.696,0],[-0.456,0.468],[0,0.624],[0.42,0.42],[0.24,0],[0.192,-0.168],[0,0],[0,0],[0,0]],"v":[[-346.504,-256.928],[-344.092,-261.392],[-343.462,-262.85],[-343.3,-263.804],[-344.02,-265.55],[-345.676,-266.252],[-347.404,-265.55],[-348.088,-263.804],[-347.458,-262.238],[-346.072,-261.608],[-345.424,-261.86],[-344.956,-262.508],[-346.108,-262.22],[-348.34,-257.936]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":197,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-327.208,-261.896],[-327.208,-286.88],[-330.592,-286.88],[-330.592,-261.896]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":198,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-306.544,-261.896],[-306.544,-272.516],[-307.408,-275.846],[-309.766,-278.384],[-313.204,-279.356],[-316.696,-278.474],[-319.108,-276.08],[-319.972,-272.624],[-318.64,-271.868],[-318.064,-274.172],[-316.48,-275.756],[-314.176,-276.332],[-311.026,-275.072],[-309.82,-271.868],[-309.82,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-318.64,-261.896],[-318.64,-278.996],[-321.88,-278.996],[-321.88,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":199,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-292.126,-262.94],[-290.416,-266.756],[-291.082,-269.312],[-292.792,-270.86],[-294.988,-271.778],[-297.202,-272.444],[-298.912,-273.236],[-299.56,-274.568],[-298.822,-275.9],[-296.68,-276.404],[-294.304,-275.9],[-292.504,-274.46],[-290.416,-276.548],[-292.99,-278.654],[-296.572,-279.356],[-299.848,-278.744],[-301.954,-276.998],[-302.692,-274.316],[-302.026,-271.814],[-300.316,-270.32],[-298.102,-269.456],[-295.888,-268.79],[-294.178,-267.926],[-293.512,-266.468],[-294.34,-265.01],[-296.68,-264.488],[-299.416,-265.046],[-301.576,-266.756],[-303.664,-264.668],[-301.81,-262.994],[-299.452,-261.914],[-296.716,-261.536]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":200,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-280.912,-261.896],[-280.912,-286.16],[-284.152,-286.16],[-284.152,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-276.7,-276.044],[-276.7,-278.996],[-288.364,-278.996],[-288.364,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":201,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-263.308,-262.346],[-260.842,-264.596],[-259.816,-267.872],[-259.816,-273.02],[-260.86,-276.314],[-263.326,-278.546],[-266.8,-279.356],[-271.066,-278.168],[-274.054,-274.964],[-275.152,-270.428],[-274.054,-265.892],[-271.066,-262.706],[-266.8,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-269.14,-265.352],[-271.102,-267.422],[-271.804,-270.464],[-271.102,-273.47],[-269.158,-275.54],[-266.296,-276.296],[-263.47,-275.558],[-261.58,-273.488],[-260.896,-270.428],[-262.372,-266.234],[-266.26,-264.596]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-257.836,-261.896],[-257.836,-278.996],[-261.112,-278.996],[-261.112,-274.82],[-260.5,-270.68],[-261.112,-266.504],[-261.112,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":202,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-241.33,-255.398],[-238.162,-258.278],[-237.028,-262.58],[-237.028,-278.996],[-240.268,-278.996],[-240.268,-274.496],[-239.692,-270.68],[-240.268,-266.828],[-240.268,-262.58],[-241.816,-258.854],[-245.956,-257.468],[-249.376,-258.17],[-251.86,-260.204],[-253.984,-258.08],[-250.708,-255.344],[-246.028,-254.372]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-242.5,-262.976],[-240.034,-265.19],[-239.008,-268.484],[-239.008,-273.02],[-240.016,-276.35],[-242.482,-278.564],[-246.064,-279.356],[-250.24,-278.222],[-253.174,-275.162],[-254.236,-270.788],[-253.156,-266.378],[-250.222,-263.3],[-246.028,-262.184]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-248.242,-265.946],[-250.186,-267.908],[-250.888,-270.788],[-250.186,-273.65],[-248.26,-275.594],[-245.416,-276.296],[-242.626,-275.594],[-240.754,-273.65],[-240.088,-270.752],[-240.754,-267.854],[-242.608,-265.928],[-245.416,-265.244]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":203,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-229.072,-261.896],[-229.072,-278.996],[-232.312,-278.996],[-232.312,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-227.92,-275.144],[-224.968,-276.296],[-223.456,-276.044],[-222.268,-275.216],[-220.144,-277.412],[-222.088,-278.906],[-224.428,-279.356],[-228.784,-277.412],[-230.296,-272.192],[-229.072,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":204,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-207.652,-262.346],[-205.186,-264.596],[-204.16,-267.872],[-204.16,-273.02],[-205.204,-276.314],[-207.67,-278.546],[-211.144,-279.356],[-215.41,-278.168],[-218.398,-274.964],[-219.496,-270.428],[-218.398,-265.892],[-215.41,-262.706],[-211.144,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-213.484,-265.352],[-215.446,-267.422],[-216.148,-270.464],[-215.446,-273.47],[-213.502,-275.54],[-210.64,-276.296],[-207.814,-275.558],[-205.924,-273.488],[-205.24,-270.428],[-206.716,-266.234],[-210.604,-264.596]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-202.18,-261.896],[-202.18,-278.996],[-205.456,-278.996],[-205.456,-274.82],[-204.844,-270.68],[-205.456,-266.504],[-205.456,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":205,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-194.224,-261.896],[-194.224,-278.996],[-197.464,-278.996],[-197.464,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-182.668,-261.896],[-182.668,-272.912],[-183.514,-276.332],[-185.818,-278.564],[-189.076,-279.356],[-192.388,-278.546],[-194.71,-276.296],[-195.556,-272.912],[-194.224,-272.228],[-193.648,-274.424],[-192.136,-275.828],[-190.012,-276.332],[-187.078,-275.234],[-185.908,-272.228],[-185.908,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-171.076,-261.896],[-171.076,-272.876],[-171.958,-276.332],[-174.316,-278.564],[-177.664,-279.356],[-180.976,-278.546],[-183.442,-276.314],[-184.504,-272.912],[-182.668,-272.228],[-182.092,-274.424],[-180.562,-275.828],[-178.42,-276.332],[-175.522,-275.234],[-174.352,-272.228],[-174.352,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":206,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-148.468,-262.346],[-146.002,-264.596],[-144.976,-267.872],[-144.976,-273.02],[-146.02,-276.314],[-148.486,-278.546],[-151.96,-279.356],[-156.226,-278.168],[-159.214,-274.964],[-160.312,-270.428],[-159.214,-265.892],[-156.226,-262.706],[-151.96,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-154.3,-265.352],[-156.262,-267.422],[-156.964,-270.464],[-156.262,-273.47],[-154.318,-275.54],[-151.456,-276.296],[-148.63,-275.558],[-146.74,-273.488],[-146.056,-270.428],[-147.532,-266.234],[-151.42,-264.596]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-142.996,-261.896],[-142.996,-278.996],[-146.272,-278.996],[-146.272,-274.82],[-145.66,-270.68],[-146.272,-266.504],[-146.272,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":207,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-122.944,-261.896],[-122.944,-272.516],[-123.808,-275.846],[-126.166,-278.384],[-129.604,-279.356],[-133.096,-278.474],[-135.508,-276.08],[-136.372,-272.624],[-135.04,-271.868],[-134.464,-274.172],[-132.88,-275.756],[-130.576,-276.332],[-127.426,-275.072],[-126.22,-271.868],[-126.22,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-135.04,-261.896],[-135.04,-278.996],[-138.28,-278.996],[-138.28,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":208,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-107.824,-262.346],[-105.34,-264.596],[-104.296,-267.872],[-104.296,-273.02],[-105.358,-276.314],[-107.86,-278.546],[-111.352,-279.356],[-115.564,-278.168],[-118.534,-274.964],[-119.632,-270.428],[-118.534,-265.892],[-115.564,-262.706],[-111.352,-261.536]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-113.638,-265.334],[-115.582,-267.404],[-116.284,-270.464],[-115.582,-273.506],[-113.656,-275.558],[-110.812,-276.296],[-107.968,-275.54],[-106.06,-273.47],[-105.376,-270.428],[-106.06,-267.422],[-107.968,-265.352],[-110.812,-264.596]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-102.316,-287.6],[-105.592,-287.6],[-105.592,-274.82],[-104.98,-270.68],[-105.592,-266.504],[-105.592,-261.896],[-102.316,-261.896]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":209,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-68.728,-261.896],[-78.592,-276.116],[-79.204,-276.116],[-86.98,-286.88],[-91.012,-286.88],[-81.148,-273.344],[-80.536,-273.344],[-72.724,-261.896]],"c":true},"ix":2},"nm":"X","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-87.628,-261.896],[-79.456,-273.164],[-81.76,-275.18],[-91.444,-261.896]],"c":true},"ix":2},"nm":"X","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-69.124,-286.88],[-72.976,-286.88],[-80.644,-275.972],[-78.376,-273.956]],"c":true},"ix":2},"nm":"X","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"X","np":6,"cix":2,"bm":0,"ix":210,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.924,2.352],[0,2.904],[-0.924,2.352],[-1.704,1.488],[0,0],[0.936,-1.62],[0.504,-1.92],[0,-2.064],[-0.504,-1.92],[-0.936,-1.62],[-1.32,-1.104]],"o":[[-1.704,-1.512],[-0.924,-2.352],[0,-2.928],[0.924,-2.352],[0,0],[-1.32,1.104],[-0.936,1.62],[-0.504,1.92],[0,2.064],[0.504,1.92],[0.936,1.62],[0,0]],"v":[[-50.368,-259.412],[-54.31,-265.208],[-55.696,-273.092],[-54.31,-281.012],[-50.368,-286.772],[-52.24,-288.464],[-55.624,-284.378],[-57.784,-279.068],[-58.54,-273.092],[-57.784,-267.116],[-55.624,-261.806],[-52.24,-257.72]],"c":true},"ix":2},"nm":"(","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"(","np":3,"cix":2,"bm":0,"ix":211,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[-41.26,-261.896],[-41.26,-281.552],[-40.414,-284.018],[-38.02,-284.9],[-36.616,-284.648],[-35.572,-283.892],[-33.448,-285.98],[-35.428,-287.456],[-37.984,-287.96],[-41.404,-287.132],[-43.708,-284.864],[-44.536,-281.552],[-44.536,-261.896]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-35.824,-276.044],[-35.824,-278.996],[-48.712,-278.996],[-48.712,-276.044]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":212,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-21.226,-262.724],[-18.004,-265.946],[-16.816,-270.5],[-18.004,-275],[-21.226,-278.186],[-25.78,-279.356],[-30.28,-278.168],[-33.484,-274.982],[-34.672,-270.5],[-33.484,-265.946],[-30.28,-262.724],[-25.78,-261.536]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-28.624,-265.424],[-30.604,-267.494],[-31.324,-270.5],[-30.604,-273.452],[-28.624,-275.486],[-25.78,-276.224],[-22.882,-275.486],[-20.902,-273.452],[-20.164,-270.5],[-20.884,-267.494],[-22.864,-265.424],[-25.78,-264.668]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":213,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-9.976,-261.896],[-9.976,-278.996],[-13.216,-278.996],[-13.216,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-8.824,-275.144],[-5.872,-276.296],[-4.36,-276.044],[-3.172,-275.216],[-1.048,-277.412],[-2.992,-278.906],[-5.332,-279.356],[-9.688,-277.412],[-11.2,-272.192],[-9.976,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":214,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.532,-261.896],[4.532,-278.996],[1.292,-278.996],[1.292,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[16.088,-261.896],[16.088,-272.912],[15.242,-276.332],[12.938,-278.564],[9.68,-279.356],[6.368,-278.546],[4.046,-276.296],[3.2,-272.912],[4.532,-272.228],[5.108,-274.424],[6.62,-275.828],[8.744,-276.332],[11.678,-275.234],[12.848,-272.228],[12.848,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[27.68,-261.896],[27.68,-272.876],[26.798,-276.332],[24.44,-278.564],[21.092,-279.356],[17.78,-278.546],[15.314,-276.314],[14.252,-272.912],[16.088,-272.228],[16.664,-274.424],[18.194,-275.828],[20.336,-276.332],[23.234,-275.234],[24.404,-272.228],[24.404,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":215,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[43.772,-262.292],[46.796,-264.488],[44.708,-266.612],[42.638,-265.1],[39.992,-264.596],[36.932,-265.334],[34.88,-267.422],[34.16,-270.572],[34.844,-273.632],[36.788,-275.648],[39.704,-276.368],[42.404,-275.702],[44.132,-273.83],[44.744,-270.896],[45.932,-271.94],[33.224,-271.94],[33.224,-269.24],[47.66,-269.24],[47.804,-270.158],[47.84,-270.932],[46.814,-275.288],[43.952,-278.276],[39.776,-279.356],[35.294,-278.186],[32.126,-275],[30.956,-270.464],[32.144,-265.892],[35.366,-262.706],[39.992,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":216,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[54.608,-261.896],[54.608,-278.996],[51.368,-278.996],[51.368,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[55.76,-275.144],[58.712,-276.296],[60.224,-276.044],[61.412,-275.216],[63.536,-277.412],[61.592,-278.906],[59.252,-279.356],[54.896,-277.412],[53.384,-272.192],[54.608,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":217,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[69.044,-261.896],[69.044,-287.6],[65.804,-287.6],[65.804,-261.896]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":218,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[81.356,-261.752],[89.348,-278.996],[85.748,-278.996],[79.952,-265.496],[81.104,-265.496],[75.596,-278.996],[71.996,-278.996],[79.412,-261.752]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[78.116,-254.732],[81.356,-261.752],[79.52,-265.064],[74.516,-254.732]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":219,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[109.76,-261.896],[109.76,-286.16],[106.34,-286.16],[106.34,-261.896]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[118.22,-283.784],[118.22,-286.88],[97.88,-286.88],[97.88,-283.784]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":220,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[124.52,-261.896],[129.488,-274.784],[128.3,-274.784],[133.232,-261.896],[135.14,-261.896],[141.872,-278.996],[138.488,-278.996],[133.592,-265.676],[134.672,-265.676],[129.812,-278.996],[127.94,-278.996],[123.08,-265.676],[124.16,-265.676],[119.264,-278.996],[115.88,-278.996],[122.612,-261.896]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":221,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[147.74,-261.896],[147.74,-278.996],[144.464,-278.996],[144.464,-261.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[147.596,-283.01],[148.172,-284.504],[147.596,-285.962],[146.12,-286.556],[144.644,-285.962],[144.068,-284.504],[144.644,-283.01],[146.12,-282.416]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":222,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[158.396,-261.896],[158.396,-286.16],[155.156,-286.16],[155.156,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[162.608,-276.044],[162.608,-278.996],[150.944,-278.996],[150.944,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":223,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[170.996,-261.896],[170.996,-286.16],[167.756,-286.16],[167.756,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[175.208,-276.044],[175.208,-278.996],[163.544,-278.996],[163.544,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":224,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[189.536,-262.292],[192.56,-264.488],[190.472,-266.612],[188.402,-265.1],[185.756,-264.596],[182.696,-265.334],[180.644,-267.422],[179.924,-270.572],[180.608,-273.632],[182.552,-275.648],[185.468,-276.368],[188.168,-275.702],[189.896,-273.83],[190.508,-270.896],[191.696,-271.94],[178.988,-271.94],[178.988,-269.24],[193.424,-269.24],[193.568,-270.158],[193.604,-270.932],[192.578,-275.288],[189.716,-278.276],[185.54,-279.356],[181.058,-278.186],[177.89,-275],[176.72,-270.464],[177.908,-265.892],[181.13,-262.706],[185.756,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":225,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[200.372,-261.896],[200.372,-278.996],[197.132,-278.996],[197.132,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[201.524,-275.144],[204.476,-276.296],[205.988,-276.044],[207.176,-275.216],[209.3,-277.412],[207.356,-278.906],[205.016,-279.356],[200.66,-277.412],[199.148,-272.192],[200.372,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":226,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.936,1.62],[-0.504,1.92],[0,2.064],[0.504,1.92],[0.936,1.62],[1.32,1.104],[0,0],[-0.912,-2.352],[0,-2.928],[0.912,-2.352],[1.728,-1.512],[0,0]],"o":[[0.936,-1.62],[0.504,-1.92],[0,-2.064],[-0.504,-1.92],[-0.936,-1.62],[0,0],[1.728,1.488],[0.912,2.352],[0,2.904],[-0.912,2.352],[0,0],[1.32,-1.104]],"v":[[216.176,-261.806],[218.336,-267.116],[219.092,-273.092],[218.336,-279.068],[216.176,-284.378],[212.792,-288.464],[210.884,-286.772],[214.844,-281.012],[216.212,-273.092],[214.844,-265.208],[210.884,-259.412],[212.792,-257.72]],"c":true},"ix":2},"nm":")","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":")","np":3,"cix":2,"bm":0,"ix":227,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[241.304,-262.346],[243.77,-264.596],[244.796,-267.872],[244.796,-273.02],[243.752,-276.314],[241.286,-278.546],[237.812,-279.356],[233.546,-278.168],[230.558,-274.964],[229.46,-270.428],[230.558,-265.892],[233.546,-262.706],[237.812,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[235.472,-265.352],[233.51,-267.422],[232.808,-270.464],[233.51,-273.47],[235.454,-275.54],[238.316,-276.296],[241.142,-275.558],[243.032,-273.488],[243.716,-270.428],[242.24,-266.234],[238.352,-264.596]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[246.776,-261.896],[246.776,-278.996],[243.5,-278.996],[243.5,-274.82],[244.112,-270.68],[243.5,-266.504],[243.5,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":228,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[266.828,-261.896],[266.828,-272.516],[265.964,-275.846],[263.606,-278.384],[260.168,-279.356],[256.676,-278.474],[254.264,-276.08],[253.4,-272.624],[254.732,-271.868],[255.308,-274.172],[256.892,-275.756],[259.196,-276.332],[262.346,-275.072],[263.552,-271.868],[263.552,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[254.732,-261.896],[254.732,-278.996],[251.492,-278.996],[251.492,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":229,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[281.948,-262.346],[284.432,-264.596],[285.476,-267.872],[285.476,-273.02],[284.414,-276.314],[281.912,-278.546],[278.42,-279.356],[274.208,-278.168],[271.238,-274.964],[270.14,-270.428],[271.238,-265.892],[274.208,-262.706],[278.42,-261.536]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[276.134,-265.334],[274.19,-267.404],[273.488,-270.464],[274.19,-273.506],[276.116,-275.558],[278.96,-276.296],[281.804,-275.54],[283.712,-273.47],[284.396,-270.428],[283.712,-267.422],[281.804,-265.352],[278.96,-264.596]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[287.456,-287.6],[284.18,-287.6],[284.18,-274.82],[284.792,-270.68],[284.18,-266.504],[284.18,-261.896],[287.456,-261.896]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":230,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[309.632,-261.896],[309.632,-286.16],[306.212,-286.16],[306.212,-261.896]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[318.092,-283.784],[318.092,-286.88],[297.752,-286.88],[297.752,-283.784]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":231,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[331.268,-261.896],[341.348,-286.88],[337.712,-286.88],[329.396,-265.748],[330.728,-265.748],[322.484,-286.88],[318.776,-286.88],[328.82,-261.896]],"c":true},"ix":2},"nm":"V","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"V","np":3,"cix":2,"bm":0,"ix":232,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[365.522,-262.706],[368.492,-265.892],[369.572,-270.428],[368.492,-274.964],[365.522,-278.168],[361.292,-279.356],[357.818,-278.546],[355.298,-276.314],[354.236,-273.02],[354.236,-267.872],[355.28,-264.596],[357.782,-262.346],[361.292,-261.536]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[355.532,-261.896],[355.532,-266.504],[354.92,-270.68],[355.532,-274.82],[355.532,-287.6],[352.292,-287.6],[352.292,-261.896]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[357.926,-265.352],[356.018,-267.422],[355.352,-270.428],[356.036,-273.47],[357.944,-275.54],[360.752,-276.296],[363.596,-275.54],[365.522,-273.47],[366.224,-270.464],[365.522,-267.422],[363.596,-265.352],[360.752,-264.596]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":233,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[376.484,-261.896],[376.484,-278.996],[373.244,-278.996],[373.244,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[377.636,-275.144],[380.588,-276.296],[382.1,-276.044],[383.288,-275.216],[385.412,-277.412],[383.468,-278.906],[381.128,-279.356],[376.772,-277.412],[375.26,-272.192],[376.484,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":234,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[399.47,-262.724],[402.692,-265.946],[403.88,-270.5],[402.692,-275],[399.47,-278.186],[394.916,-279.356],[390.416,-278.168],[387.212,-274.982],[386.024,-270.5],[387.212,-265.946],[390.416,-262.724],[394.916,-261.536]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[392.072,-265.424],[390.092,-267.494],[389.372,-270.5],[390.092,-273.452],[392.072,-275.486],[394.916,-276.224],[397.814,-275.486],[399.794,-273.452],[400.532,-270.5],[399.812,-267.494],[397.832,-265.424],[394.916,-264.668]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":235,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[418.244,-262.346],[420.71,-264.596],[421.736,-267.872],[421.736,-273.02],[420.692,-276.314],[418.226,-278.546],[414.752,-279.356],[410.486,-278.168],[407.498,-274.964],[406.4,-270.428],[407.498,-265.892],[410.486,-262.706],[414.752,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[412.412,-265.352],[410.45,-267.422],[409.748,-270.464],[410.45,-273.47],[412.394,-275.54],[415.256,-276.296],[418.082,-275.558],[419.972,-273.488],[420.656,-270.428],[419.18,-266.234],[415.292,-264.596]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[423.716,-261.896],[423.716,-278.996],[420.44,-278.996],[420.44,-274.82],[421.052,-270.68],[420.44,-266.504],[420.44,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":236,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[439.16,-262.346],[441.644,-264.596],[442.688,-267.872],[442.688,-273.02],[441.626,-276.314],[439.124,-278.546],[435.632,-279.356],[431.42,-278.168],[428.45,-274.964],[427.352,-270.428],[428.45,-265.892],[431.42,-262.706],[435.632,-261.536]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[433.346,-265.334],[431.402,-267.404],[430.7,-270.464],[431.402,-273.506],[433.328,-275.558],[436.172,-276.296],[439.016,-275.54],[440.924,-273.47],[441.608,-270.428],[440.924,-267.422],[439.016,-265.352],[436.172,-264.596]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[444.668,-287.6],[441.392,-287.6],[441.392,-274.82],[442.004,-270.68],[441.392,-266.504],[441.392,-261.896],[444.668,-261.896]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":237,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[460.886,-262.292],[463.784,-264.416],[461.66,-266.576],[459.698,-265.154],[457.196,-264.668],[454.316,-265.424],[452.336,-267.476],[451.616,-270.464],[452.336,-273.452],[454.316,-275.486],[457.196,-276.224],[459.68,-275.738],[461.624,-274.316],[463.784,-276.476],[460.868,-278.618],[457.196,-279.356],[452.642,-278.186],[449.438,-275],[448.268,-270.464],[449.438,-265.946],[452.642,-262.724],[457.196,-261.536]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":238,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[477.428,-262.346],[479.894,-264.596],[480.92,-267.872],[480.92,-273.02],[479.876,-276.314],[477.41,-278.546],[473.936,-279.356],[469.67,-278.168],[466.682,-274.964],[465.584,-270.428],[466.682,-265.892],[469.67,-262.706],[473.936,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[471.596,-265.352],[469.634,-267.422],[468.932,-270.464],[469.634,-273.47],[471.578,-275.54],[474.44,-276.296],[477.266,-275.558],[479.156,-273.488],[479.84,-270.428],[478.364,-266.234],[474.476,-264.596]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[482.9,-261.896],[482.9,-278.996],[479.624,-278.996],[479.624,-274.82],[480.236,-270.68],[479.624,-266.504],[479.624,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":239,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[497.642,-262.94],[499.352,-266.756],[498.686,-269.312],[496.976,-270.86],[494.78,-271.778],[492.566,-272.444],[490.856,-273.236],[490.208,-274.568],[490.946,-275.9],[493.088,-276.404],[495.464,-275.9],[497.264,-274.46],[499.352,-276.548],[496.778,-278.654],[493.196,-279.356],[489.92,-278.744],[487.814,-276.998],[487.076,-274.316],[487.742,-271.814],[489.452,-270.32],[491.666,-269.456],[493.88,-268.79],[495.59,-267.926],[496.256,-266.468],[495.428,-265.01],[493.088,-264.488],[490.352,-265.046],[488.192,-266.756],[486.104,-264.668],[487.958,-262.994],[490.316,-261.914],[493.052,-261.536]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":240,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[508.856,-261.896],[508.856,-286.16],[505.616,-286.16],[505.616,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[513.068,-276.044],[513.068,-278.996],[501.404,-278.996],[501.404,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":241,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[527.396,-262.292],[530.42,-264.488],[528.332,-266.612],[526.262,-265.1],[523.616,-264.596],[520.556,-265.334],[518.504,-267.422],[517.784,-270.572],[518.468,-273.632],[520.412,-275.648],[523.328,-276.368],[526.028,-275.702],[527.756,-273.83],[528.368,-270.896],[529.556,-271.94],[516.848,-271.94],[516.848,-269.24],[531.284,-269.24],[531.428,-270.158],[531.464,-270.932],[530.438,-275.288],[527.576,-278.276],[523.4,-279.356],[518.918,-278.186],[515.75,-275],[514.58,-270.464],[515.768,-265.892],[518.99,-262.706],[523.616,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":242,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[538.232,-261.896],[538.232,-278.996],[534.992,-278.996],[534.992,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[539.384,-275.144],[542.336,-276.296],[543.848,-276.044],[545.036,-275.216],[547.16,-277.412],[545.216,-278.906],[542.876,-279.356],[538.52,-277.412],[537.008,-272.192],[538.232,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":243,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[559.094,-262.94],[560.804,-266.756],[560.138,-269.312],[558.428,-270.86],[556.232,-271.778],[554.018,-272.444],[552.308,-273.236],[551.66,-274.568],[552.398,-275.9],[554.54,-276.404],[556.916,-275.9],[558.716,-274.46],[560.804,-276.548],[558.23,-278.654],[554.648,-279.356],[551.372,-278.744],[549.266,-276.998],[548.528,-274.316],[549.194,-271.814],[550.904,-270.32],[553.118,-269.456],[555.332,-268.79],[557.042,-267.926],[557.708,-266.468],[556.88,-265.01],[554.54,-264.488],[551.804,-265.046],[549.644,-266.756],[547.556,-264.668],[549.41,-262.994],[551.768,-261.914],[554.504,-261.536]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":244,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[582.656,-262.346],[585.122,-264.596],[586.148,-267.872],[586.148,-273.02],[585.104,-276.314],[582.638,-278.546],[579.164,-279.356],[574.898,-278.168],[571.91,-274.964],[570.812,-270.428],[571.91,-265.892],[574.898,-262.706],[579.164,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[576.824,-265.352],[574.862,-267.422],[574.16,-270.464],[574.862,-273.47],[576.806,-275.54],[579.668,-276.296],[582.494,-275.558],[584.384,-273.488],[585.068,-270.428],[583.592,-266.234],[579.704,-264.596]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[588.128,-261.896],[588.128,-278.996],[584.852,-278.996],[584.852,-274.82],[585.464,-270.68],[584.852,-266.504],[584.852,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":245,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[596.084,-261.896],[596.084,-278.996],[592.844,-278.996],[592.844,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[597.236,-275.144],[600.188,-276.296],[601.7,-276.044],[602.888,-275.216],[605.012,-277.412],[603.068,-278.906],[600.728,-279.356],[596.372,-277.412],[594.86,-272.192],[596.084,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":246,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[618.44,-262.292],[621.464,-264.488],[619.376,-266.612],[617.306,-265.1],[614.66,-264.596],[611.6,-265.334],[609.548,-267.422],[608.828,-270.572],[609.512,-273.632],[611.456,-275.648],[614.372,-276.368],[617.072,-275.702],[618.8,-273.83],[619.412,-270.896],[620.6,-271.94],[607.892,-271.94],[607.892,-269.24],[622.328,-269.24],[622.472,-270.158],[622.508,-270.932],[621.482,-275.288],[618.62,-278.276],[614.444,-279.356],[609.962,-278.186],[606.794,-275],[605.624,-270.464],[606.812,-265.892],[610.034,-262.706],[614.66,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":247,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[644.99,-262.292],[647.888,-264.416],[645.764,-266.576],[643.802,-265.154],[641.3,-264.668],[638.42,-265.424],[636.44,-267.476],[635.72,-270.464],[636.44,-273.452],[638.42,-275.486],[641.3,-276.224],[643.784,-275.738],[645.728,-274.316],[647.888,-276.476],[644.972,-278.618],[641.3,-279.356],[636.746,-278.186],[633.542,-275],[632.372,-270.464],[633.542,-265.946],[636.746,-262.724],[641.3,-261.536]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":248,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[663.098,-262.724],[666.32,-265.946],[667.508,-270.5],[666.32,-275],[663.098,-278.186],[658.544,-279.356],[654.044,-278.168],[650.84,-274.982],[649.652,-270.5],[650.84,-265.946],[654.044,-262.724],[658.544,-261.536]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[655.7,-265.424],[653.72,-267.494],[653,-270.5],[653.72,-273.452],[655.7,-275.486],[658.544,-276.224],[661.442,-275.486],[663.422,-273.452],[664.16,-270.5],[663.44,-267.494],[661.46,-265.424],[658.544,-264.668]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":249,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[674.348,-261.896],[674.348,-278.996],[671.108,-278.996],[671.108,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[685.904,-261.896],[685.904,-272.912],[685.058,-276.332],[682.754,-278.564],[679.496,-279.356],[676.184,-278.546],[673.862,-276.296],[673.016,-272.912],[674.348,-272.228],[674.924,-274.424],[676.436,-275.828],[678.56,-276.332],[681.494,-275.234],[682.664,-272.228],[682.664,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[697.496,-261.896],[697.496,-272.876],[696.614,-276.332],[694.256,-278.564],[690.908,-279.356],[687.596,-278.546],[685.13,-276.314],[684.068,-272.912],[685.904,-272.228],[686.48,-274.424],[688.01,-275.828],[690.152,-276.332],[693.05,-275.234],[694.22,-272.228],[694.22,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":250,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[715.118,-262.706],[718.088,-265.892],[719.168,-270.428],[718.088,-274.964],[715.118,-278.168],[710.888,-279.356],[707.414,-278.546],[704.894,-276.314],[703.832,-273.02],[703.832,-267.872],[704.876,-264.596],[707.378,-262.346],[710.888,-261.536]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[705.128,-254.732],[705.128,-266.18],[704.516,-270.356],[705.128,-274.496],[705.128,-278.996],[701.888,-278.996],[701.888,-254.732]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[707.522,-265.352],[705.614,-267.422],[704.948,-270.428],[705.632,-273.47],[707.54,-275.54],[710.348,-276.296],[713.192,-275.54],[715.118,-273.47],[715.82,-270.464],[715.118,-267.422],[713.192,-265.352],[710.348,-264.596]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":251,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[726.08,-261.896],[726.08,-287.6],[722.84,-287.6],[722.84,-261.896]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":252,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[742.532,-262.292],[745.556,-264.488],[743.468,-266.612],[741.398,-265.1],[738.752,-264.596],[735.692,-265.334],[733.64,-267.422],[732.92,-270.572],[733.604,-273.632],[735.548,-275.648],[738.464,-276.368],[741.164,-275.702],[742.892,-273.83],[743.504,-270.896],[744.692,-271.94],[731.984,-271.94],[731.984,-269.24],[746.42,-269.24],[746.564,-270.158],[746.6,-270.932],[745.574,-275.288],[742.712,-278.276],[738.536,-279.356],[734.054,-278.186],[730.886,-275],[729.716,-270.464],[730.904,-265.892],[734.126,-262.706],[738.752,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":253,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[755.492,-261.896],[755.492,-286.16],[752.252,-286.16],[752.252,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[759.704,-276.044],[759.704,-278.996],[748.04,-278.996],[748.04,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":254,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[774.032,-262.292],[777.056,-264.488],[774.968,-266.612],[772.898,-265.1],[770.252,-264.596],[767.192,-265.334],[765.14,-267.422],[764.42,-270.572],[765.104,-273.632],[767.048,-275.648],[769.964,-276.368],[772.664,-275.702],[774.392,-273.83],[775.004,-270.896],[776.192,-271.94],[763.484,-271.94],[763.484,-269.24],[777.92,-269.24],[778.064,-270.158],[778.1,-270.932],[777.074,-275.288],[774.212,-278.276],[770.036,-279.356],[765.554,-278.186],[762.386,-275],[761.216,-270.464],[762.404,-265.892],[765.626,-262.706],[770.252,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":255,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[784.868,-261.896],[784.868,-287.6],[781.628,-287.6],[781.628,-261.896]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":256,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[797.18,-261.752],[805.172,-278.996],[801.572,-278.996],[795.776,-265.496],[796.928,-265.496],[791.42,-278.996],[787.82,-278.996],[795.236,-261.752]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[793.94,-254.732],[797.18,-261.752],[795.344,-265.064],[790.34,-254.732]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":257,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-819.598,-219.74],[-817.888,-223.556],[-818.554,-226.112],[-820.264,-227.66],[-822.46,-228.578],[-824.674,-229.244],[-826.384,-230.036],[-827.032,-231.368],[-826.294,-232.7],[-824.152,-233.204],[-821.776,-232.7],[-819.976,-231.26],[-817.888,-233.348],[-820.462,-235.454],[-824.044,-236.156],[-827.32,-235.544],[-829.426,-233.798],[-830.164,-231.116],[-829.498,-228.614],[-827.788,-227.12],[-825.574,-226.256],[-823.36,-225.59],[-821.65,-224.726],[-820.984,-223.268],[-821.812,-221.81],[-824.152,-221.288],[-826.888,-221.846],[-829.048,-223.556],[-831.136,-221.468],[-829.282,-219.794],[-826.924,-218.714],[-824.188,-218.336]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":258,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-810.976,-218.696],[-810.976,-235.796],[-814.252,-235.796],[-814.252,-218.696]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-811.12,-239.81],[-810.544,-241.304],[-811.12,-242.762],[-812.596,-243.356],[-814.072,-242.762],[-814.648,-241.304],[-814.072,-239.81],[-812.596,-239.216]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":259,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-802.948,-218.696],[-802.948,-244.4],[-806.188,-244.4],[-806.188,-218.696]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":260,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-786.496,-219.092],[-783.472,-221.288],[-785.56,-223.412],[-787.63,-221.9],[-790.276,-221.396],[-793.336,-222.134],[-795.388,-224.222],[-796.108,-227.372],[-795.424,-230.432],[-793.48,-232.448],[-790.564,-233.168],[-787.864,-232.502],[-786.136,-230.63],[-785.524,-227.696],[-784.336,-228.74],[-797.044,-228.74],[-797.044,-226.04],[-782.608,-226.04],[-782.464,-226.958],[-782.428,-227.732],[-783.454,-232.088],[-786.316,-235.076],[-790.492,-236.156],[-794.974,-234.986],[-798.142,-231.8],[-799.312,-227.264],[-798.124,-222.692],[-794.902,-219.506],[-790.276,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":261,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-763.564,-218.696],[-763.564,-229.316],[-764.428,-232.646],[-766.786,-235.184],[-770.224,-236.156],[-773.716,-235.274],[-776.128,-232.88],[-776.992,-229.424],[-775.66,-228.668],[-775.084,-230.972],[-773.5,-232.556],[-771.196,-233.132],[-768.046,-231.872],[-766.84,-228.668],[-766.84,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-775.66,-218.696],[-775.66,-235.796],[-778.9,-235.796],[-778.9,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":262,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-747.67,-219.092],[-744.772,-221.216],[-746.896,-223.376],[-748.858,-221.954],[-751.36,-221.468],[-754.24,-222.224],[-756.22,-224.276],[-756.94,-227.264],[-756.22,-230.252],[-754.24,-232.286],[-751.36,-233.024],[-748.876,-232.538],[-746.932,-231.116],[-744.772,-233.276],[-747.688,-235.418],[-751.36,-236.156],[-755.914,-234.986],[-759.118,-231.8],[-760.288,-227.264],[-759.118,-222.746],[-755.914,-219.524],[-751.36,-218.336]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":263,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-730.192,-219.092],[-727.168,-221.288],[-729.256,-223.412],[-731.326,-221.9],[-733.972,-221.396],[-737.032,-222.134],[-739.084,-224.222],[-739.804,-227.372],[-739.12,-230.432],[-737.176,-232.448],[-734.26,-233.168],[-731.56,-232.502],[-729.832,-230.63],[-729.22,-227.696],[-728.032,-228.74],[-740.74,-228.74],[-740.74,-226.04],[-726.304,-226.04],[-726.16,-226.958],[-726.124,-227.732],[-727.15,-232.088],[-730.012,-235.076],[-734.188,-236.156],[-738.67,-234.986],[-741.838,-231.8],[-743.008,-227.264],[-741.82,-222.692],[-738.598,-219.506],[-733.972,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":264,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-711.868,-219.146],[-709.384,-221.396],[-708.34,-224.672],[-708.34,-229.82],[-709.402,-233.114],[-711.904,-235.346],[-715.396,-236.156],[-719.608,-234.968],[-722.578,-231.764],[-723.676,-227.228],[-722.578,-222.692],[-719.608,-219.506],[-715.396,-218.336]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-717.682,-222.134],[-719.626,-224.204],[-720.328,-227.264],[-719.626,-230.306],[-717.7,-232.358],[-714.856,-233.096],[-712.012,-232.34],[-710.104,-230.27],[-709.42,-227.228],[-710.104,-224.222],[-712.012,-222.152],[-714.856,-221.396]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-706.36,-244.4],[-709.636,-244.4],[-709.636,-231.62],[-709.024,-227.48],[-709.636,-223.304],[-709.636,-218.696],[-706.36,-218.696]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":265,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.444,0.468],[0,0.648],[0.444,0.444],[0.672,0],[0.432,-0.444],[0,-0.672],[-0.432,-0.468],[-0.696,0]],"o":[[0.444,-0.468],[0,-0.672],[-0.444,-0.444],[-0.696,0],[-0.432,0.444],[0,0.648],[0.432,0.468],[0.672,0]],"v":[[-697.126,-219.038],[-696.46,-220.712],[-697.126,-222.386],[-698.8,-223.052],[-700.492,-222.386],[-701.14,-220.712],[-700.492,-219.038],[-698.8,-218.336]],"c":true},"ix":2},"nm":".","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":".","np":3,"cix":2,"bm":0,"ix":266,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-679.792,-218.696],[-679.792,-243.68],[-683.176,-243.68],[-683.176,-218.696]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":267,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-668.596,-218.696],[-668.596,-242.96],[-671.836,-242.96],[-671.836,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-664.384,-232.844],[-664.384,-235.796],[-676.048,-235.796],[-676.048,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":268,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-650.524,-218.696],[-650.524,-235.796],[-653.764,-235.796],[-653.764,-218.696]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-649.372,-231.944],[-646.42,-233.096],[-644.908,-232.844],[-643.72,-232.016],[-641.596,-234.212],[-643.54,-235.706],[-645.88,-236.156],[-650.236,-234.212],[-651.748,-228.992],[-650.524,-228.416]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":269,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-628.168,-219.092],[-625.144,-221.288],[-627.232,-223.412],[-629.302,-221.9],[-631.948,-221.396],[-635.008,-222.134],[-637.06,-224.222],[-637.78,-227.372],[-637.096,-230.432],[-635.152,-232.448],[-632.236,-233.168],[-629.536,-232.502],[-627.808,-230.63],[-627.196,-227.696],[-626.008,-228.74],[-638.716,-228.74],[-638.716,-226.04],[-624.28,-226.04],[-624.136,-226.958],[-624.1,-227.732],[-625.126,-232.088],[-627.988,-235.076],[-632.164,-236.156],[-636.646,-234.986],[-639.814,-231.8],[-640.984,-227.264],[-639.796,-222.692],[-636.574,-219.506],[-631.948,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":270,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-607.342,-219.506],[-604.372,-222.692],[-603.292,-227.228],[-604.372,-231.764],[-607.342,-234.968],[-611.572,-236.156],[-615.046,-235.346],[-617.566,-233.114],[-618.628,-229.82],[-618.628,-224.672],[-617.584,-221.396],[-615.082,-219.146],[-611.572,-218.336]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-617.332,-211.532],[-617.332,-222.98],[-617.944,-227.156],[-617.332,-231.296],[-617.332,-235.796],[-620.572,-235.796],[-620.572,-211.532]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-614.938,-222.152],[-616.846,-224.222],[-617.512,-227.228],[-616.828,-230.27],[-614.92,-232.34],[-612.112,-233.096],[-609.268,-232.34],[-607.342,-230.27],[-606.64,-227.264],[-607.342,-224.222],[-609.268,-222.152],[-612.112,-221.396]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":271,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-587.29,-219.524],[-584.068,-222.746],[-582.88,-227.3],[-584.068,-231.8],[-587.29,-234.986],[-591.844,-236.156],[-596.344,-234.968],[-599.548,-231.782],[-600.736,-227.3],[-599.548,-222.746],[-596.344,-219.524],[-591.844,-218.336]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-594.688,-222.224],[-596.668,-224.294],[-597.388,-227.3],[-596.668,-230.252],[-594.688,-232.286],[-591.844,-233.024],[-588.946,-232.286],[-586.966,-230.252],[-586.228,-227.3],[-586.948,-224.294],[-588.928,-222.224],[-591.844,-221.468]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":272,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-576.04,-218.696],[-576.04,-235.796],[-579.28,-235.796],[-579.28,-218.696]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-574.888,-231.944],[-571.936,-233.096],[-570.424,-232.844],[-569.236,-232.016],[-567.112,-234.212],[-569.056,-235.706],[-571.396,-236.156],[-575.752,-234.212],[-577.264,-228.992],[-576.04,-228.416]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":273,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-559.012,-218.696],[-559.012,-242.96],[-562.252,-242.96],[-562.252,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-554.8,-232.844],[-554.8,-235.796],[-566.464,-235.796],[-566.464,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":274,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-540.472,-219.092],[-537.448,-221.288],[-539.536,-223.412],[-541.606,-221.9],[-544.252,-221.396],[-547.312,-222.134],[-549.364,-224.222],[-550.084,-227.372],[-549.4,-230.432],[-547.456,-232.448],[-544.54,-233.168],[-541.84,-232.502],[-540.112,-230.63],[-539.5,-227.696],[-538.312,-228.74],[-551.02,-228.74],[-551.02,-226.04],[-536.584,-226.04],[-536.44,-226.958],[-536.404,-227.732],[-537.43,-232.088],[-540.292,-235.076],[-544.468,-236.156],[-548.95,-234.986],[-552.118,-231.8],[-553.288,-227.264],[-552.1,-222.692],[-548.878,-219.506],[-544.252,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":275,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-522.148,-219.146],[-519.664,-221.396],[-518.62,-224.672],[-518.62,-229.82],[-519.682,-233.114],[-522.184,-235.346],[-525.676,-236.156],[-529.888,-234.968],[-532.858,-231.764],[-533.956,-227.228],[-532.858,-222.692],[-529.888,-219.506],[-525.676,-218.336]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-527.962,-222.134],[-529.906,-224.204],[-530.608,-227.264],[-529.906,-230.306],[-527.98,-232.358],[-525.136,-233.096],[-522.292,-232.34],[-520.384,-230.27],[-519.7,-227.228],[-520.384,-224.222],[-522.292,-222.152],[-525.136,-221.396]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-516.64,-244.4],[-519.916,-244.4],[-519.916,-231.62],[-519.304,-227.48],[-519.916,-223.304],[-519.916,-218.696],[-516.64,-218.696]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":276,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-508.684,-218.696],[-508.684,-244.4],[-511.924,-244.4],[-511.924,-218.696]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":277,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-496.372,-218.552],[-488.38,-235.796],[-491.98,-235.796],[-497.776,-222.296],[-496.624,-222.296],[-502.132,-235.796],[-505.732,-235.796],[-498.316,-218.552]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-499.612,-211.532],[-496.372,-218.552],[-498.208,-221.864],[-503.212,-211.532]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":278,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-472.108,-218.696],[-472.108,-242.96],[-475.348,-242.96],[-475.348,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-467.896,-232.844],[-467.896,-235.796],[-479.56,-235.796],[-479.56,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":279,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-449.392,-218.696],[-449.392,-229.316],[-450.256,-232.88],[-452.614,-235.292],[-456.052,-236.156],[-459.544,-235.274],[-461.956,-232.88],[-462.82,-229.424],[-461.488,-228.668],[-460.912,-230.972],[-459.328,-232.556],[-457.024,-233.132],[-453.874,-231.872],[-452.668,-228.668],[-452.668,-218.696]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-461.488,-218.696],[-461.488,-244.4],[-464.728,-244.4],[-464.728,-218.696]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":280,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-434.236,-219.146],[-431.77,-221.396],[-430.744,-224.672],[-430.744,-229.82],[-431.788,-233.114],[-434.254,-235.346],[-437.728,-236.156],[-441.994,-234.968],[-444.982,-231.764],[-446.08,-227.228],[-444.982,-222.692],[-441.994,-219.506],[-437.728,-218.336]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-440.068,-222.152],[-442.03,-224.222],[-442.732,-227.264],[-442.03,-230.27],[-440.086,-232.34],[-437.224,-233.096],[-434.398,-232.358],[-432.508,-230.288],[-431.824,-227.228],[-433.3,-223.034],[-437.188,-221.396]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-428.764,-218.696],[-428.764,-235.796],[-432.04,-235.796],[-432.04,-231.62],[-431.428,-227.48],[-432.04,-223.304],[-432.04,-218.696]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":281,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-418.252,-218.696],[-418.252,-242.96],[-421.492,-242.96],[-421.492,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-414.04,-232.844],[-414.04,-235.796],[-425.704,-235.796],[-425.704,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":282,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-393.394,-219.74],[-391.684,-223.556],[-392.35,-226.112],[-394.06,-227.66],[-396.256,-228.578],[-398.47,-229.244],[-400.18,-230.036],[-400.828,-231.368],[-400.09,-232.7],[-397.948,-233.204],[-395.572,-232.7],[-393.772,-231.26],[-391.684,-233.348],[-394.258,-235.454],[-397.84,-236.156],[-401.116,-235.544],[-403.222,-233.798],[-403.96,-231.116],[-403.294,-228.614],[-401.584,-227.12],[-399.37,-226.256],[-397.156,-225.59],[-395.446,-224.726],[-394.78,-223.268],[-395.608,-221.81],[-397.948,-221.288],[-400.684,-221.846],[-402.844,-223.556],[-404.932,-221.468],[-403.078,-219.794],[-400.72,-218.714],[-397.984,-218.336]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":283,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-375.718,-219.524],[-372.496,-222.746],[-371.308,-227.3],[-372.496,-231.8],[-375.718,-234.986],[-380.272,-236.156],[-384.772,-234.968],[-387.976,-231.782],[-389.164,-227.3],[-387.976,-222.746],[-384.772,-219.524],[-380.272,-218.336]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-383.116,-222.224],[-385.096,-224.294],[-385.816,-227.3],[-385.096,-230.252],[-383.116,-232.286],[-380.272,-233.024],[-377.374,-232.286],[-375.394,-230.252],[-374.656,-227.3],[-375.376,-224.294],[-377.356,-222.224],[-380.272,-221.468]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":284,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-364.468,-218.696],[-364.468,-235.796],[-367.708,-235.796],[-367.708,-218.696]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-352.912,-218.696],[-352.912,-229.712],[-353.758,-233.132],[-356.062,-235.364],[-359.32,-236.156],[-362.632,-235.346],[-364.954,-233.096],[-365.8,-229.712],[-364.468,-229.028],[-363.892,-231.224],[-362.38,-232.628],[-360.256,-233.132],[-357.322,-232.034],[-356.152,-229.028],[-356.152,-218.696]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-341.32,-218.696],[-341.32,-229.676],[-342.202,-233.132],[-344.56,-235.364],[-347.908,-236.156],[-351.22,-235.346],[-353.686,-233.114],[-354.748,-229.712],[-352.912,-229.028],[-352.336,-231.224],[-350.806,-232.628],[-348.664,-233.132],[-345.766,-232.034],[-344.596,-229.028],[-344.596,-218.696]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":285,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-325.228,-219.092],[-322.204,-221.288],[-324.292,-223.412],[-326.362,-221.9],[-329.008,-221.396],[-332.068,-222.134],[-334.12,-224.222],[-334.84,-227.372],[-334.156,-230.432],[-332.212,-232.448],[-329.296,-233.168],[-326.596,-232.502],[-324.868,-230.63],[-324.256,-227.696],[-323.068,-228.74],[-335.776,-228.74],[-335.776,-226.04],[-321.34,-226.04],[-321.196,-226.958],[-321.16,-227.732],[-322.186,-232.088],[-325.048,-235.076],[-329.224,-236.156],[-333.706,-234.986],[-336.874,-231.8],[-338.044,-227.264],[-336.856,-222.692],[-333.634,-219.506],[-329.008,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":286,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-306.94,-218.696],[-306.94,-235.796],[-310.18,-235.796],[-310.18,-218.696]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-295.384,-218.696],[-295.384,-229.712],[-296.23,-233.132],[-298.534,-235.364],[-301.792,-236.156],[-305.104,-235.346],[-307.426,-233.096],[-308.272,-229.712],[-306.94,-229.028],[-306.364,-231.224],[-304.852,-232.628],[-302.728,-233.132],[-299.794,-232.034],[-298.624,-229.028],[-298.624,-218.696]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-283.792,-218.696],[-283.792,-229.676],[-284.674,-233.132],[-287.032,-235.364],[-290.38,-236.156],[-293.692,-235.346],[-296.158,-233.114],[-297.22,-229.712],[-295.384,-229.028],[-294.808,-231.224],[-293.278,-232.628],[-291.136,-233.132],[-288.238,-232.034],[-287.068,-229.028],[-287.068,-218.696]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":287,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-276.124,-218.696],[-276.124,-235.796],[-279.4,-235.796],[-279.4,-218.696]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-276.268,-239.81],[-275.692,-241.304],[-276.268,-242.762],[-277.744,-243.356],[-279.22,-242.762],[-279.796,-241.304],[-279.22,-239.81],[-277.744,-239.216]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":288,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-268.096,-218.696],[-268.096,-244.4],[-271.336,-244.4],[-271.336,-218.696]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":289,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-260.068,-218.696],[-260.068,-235.796],[-263.344,-235.796],[-263.344,-218.696]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-260.212,-239.81],[-259.636,-241.304],[-260.212,-242.762],[-261.688,-243.356],[-263.164,-242.762],[-263.74,-241.304],[-263.164,-239.81],[-261.688,-239.216]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":290,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-249.412,-218.696],[-249.412,-242.96],[-252.652,-242.96],[-252.652,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-245.2,-232.844],[-245.2,-235.796],[-256.864,-235.796],[-256.864,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":291,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-231.808,-219.146],[-229.342,-221.396],[-228.316,-224.672],[-228.316,-229.82],[-229.36,-233.114],[-231.826,-235.346],[-235.3,-236.156],[-239.566,-234.968],[-242.554,-231.764],[-243.652,-227.228],[-242.554,-222.692],[-239.566,-219.506],[-235.3,-218.336]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-237.64,-222.152],[-239.602,-224.222],[-240.304,-227.264],[-239.602,-230.27],[-237.658,-232.34],[-234.796,-233.096],[-231.97,-232.358],[-230.08,-230.288],[-229.396,-227.228],[-230.872,-223.034],[-234.76,-221.396]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-226.336,-218.696],[-226.336,-235.796],[-229.612,-235.796],[-229.612,-231.62],[-229,-227.48],[-229.612,-223.304],[-229.612,-218.696]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":292,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-218.38,-218.696],[-218.38,-235.796],[-221.62,-235.796],[-221.62,-218.696]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-217.228,-231.944],[-214.276,-233.096],[-212.764,-232.844],[-211.576,-232.016],[-209.452,-234.212],[-211.396,-235.706],[-213.736,-236.156],[-218.092,-234.212],[-219.604,-228.992],[-218.38,-228.416]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":293,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-199.912,-218.552],[-191.92,-235.796],[-195.52,-235.796],[-201.316,-222.296],[-200.164,-222.296],[-205.672,-235.796],[-209.272,-235.796],[-201.856,-218.552]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-203.152,-211.532],[-199.912,-218.552],[-201.748,-221.864],[-206.752,-211.532]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":294,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[-175.828,-218.696],[-175.828,-238.352],[-174.982,-240.818],[-172.588,-241.7],[-171.184,-241.448],[-170.14,-240.692],[-168.016,-242.78],[-169.996,-244.256],[-172.552,-244.76],[-175.972,-243.932],[-178.276,-241.664],[-179.104,-238.352],[-179.104,-218.696]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-170.392,-232.844],[-170.392,-235.796],[-183.28,-235.796],[-183.28,-232.844]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":295,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-155.794,-219.524],[-152.572,-222.746],[-151.384,-227.3],[-152.572,-231.8],[-155.794,-234.986],[-160.348,-236.156],[-164.848,-234.968],[-168.052,-231.782],[-169.24,-227.3],[-168.052,-222.746],[-164.848,-219.524],[-160.348,-218.336]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-163.192,-222.224],[-165.172,-224.294],[-165.892,-227.3],[-165.172,-230.252],[-163.192,-232.286],[-160.348,-233.024],[-157.45,-232.286],[-155.47,-230.252],[-154.732,-227.3],[-155.452,-224.294],[-157.432,-222.224],[-160.348,-221.468]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":296,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-144.544,-218.696],[-144.544,-235.796],[-147.784,-235.796],[-147.784,-218.696]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-143.392,-231.944],[-140.44,-233.096],[-138.928,-232.844],[-137.74,-232.016],[-135.616,-234.212],[-137.56,-235.706],[-139.9,-236.156],[-144.256,-234.212],[-145.768,-228.992],[-144.544,-228.416]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":297,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-122.386,-219.092],[-119.488,-221.216],[-121.612,-223.376],[-123.574,-221.954],[-126.076,-221.468],[-128.956,-222.224],[-130.936,-224.276],[-131.656,-227.264],[-130.936,-230.252],[-128.956,-232.286],[-126.076,-233.024],[-123.592,-232.538],[-121.648,-231.116],[-119.488,-233.276],[-122.404,-235.418],[-126.076,-236.156],[-130.63,-234.986],[-133.834,-231.8],[-135.004,-227.264],[-133.834,-222.746],[-130.63,-219.524],[-126.076,-218.336]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":298,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-104.908,-219.092],[-101.884,-221.288],[-103.972,-223.412],[-106.042,-221.9],[-108.688,-221.396],[-111.748,-222.134],[-113.8,-224.222],[-114.52,-227.372],[-113.836,-230.432],[-111.892,-232.448],[-108.976,-233.168],[-106.276,-232.502],[-104.548,-230.63],[-103.936,-227.696],[-102.748,-228.74],[-115.456,-228.74],[-115.456,-226.04],[-101.02,-226.04],[-100.876,-226.958],[-100.84,-227.732],[-101.866,-232.088],[-104.728,-235.076],[-108.904,-236.156],[-113.386,-234.986],[-116.554,-231.8],[-117.724,-227.264],[-116.536,-222.692],[-113.314,-219.506],[-108.688,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":299,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-87.286,-219.74],[-85.576,-223.556],[-86.242,-226.112],[-87.952,-227.66],[-90.148,-228.578],[-92.362,-229.244],[-94.072,-230.036],[-94.72,-231.368],[-93.982,-232.7],[-91.84,-233.204],[-89.464,-232.7],[-87.664,-231.26],[-85.576,-233.348],[-88.15,-235.454],[-91.732,-236.156],[-95.008,-235.544],[-97.114,-233.798],[-97.852,-231.116],[-97.186,-228.614],[-95.476,-227.12],[-93.262,-226.256],[-91.048,-225.59],[-89.338,-224.726],[-88.672,-223.268],[-89.5,-221.81],[-91.84,-221.288],[-94.576,-221.846],[-96.736,-223.556],[-98.824,-221.468],[-96.97,-219.794],[-94.612,-218.714],[-91.876,-218.336]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":300,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-59.152,-218.696],[-59.152,-229.316],[-60.016,-232.88],[-62.374,-235.292],[-65.812,-236.156],[-69.304,-235.274],[-71.716,-232.88],[-72.58,-229.424],[-71.248,-228.668],[-70.672,-230.972],[-69.088,-232.556],[-66.784,-233.132],[-63.634,-231.872],[-62.428,-228.668],[-62.428,-218.696]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-71.248,-218.696],[-71.248,-244.4],[-74.488,-244.4],[-74.488,-218.696]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":301,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-43.996,-219.146],[-41.53,-221.396],[-40.504,-224.672],[-40.504,-229.82],[-41.548,-233.114],[-44.014,-235.346],[-47.488,-236.156],[-51.754,-234.968],[-54.742,-231.764],[-55.84,-227.228],[-54.742,-222.692],[-51.754,-219.506],[-47.488,-218.336]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-49.828,-222.152],[-51.79,-224.222],[-52.492,-227.264],[-51.79,-230.27],[-49.846,-232.34],[-46.984,-233.096],[-44.158,-232.358],[-42.268,-230.288],[-41.584,-227.228],[-43.06,-223.034],[-46.948,-221.396]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-38.524,-218.696],[-38.524,-235.796],[-41.8,-235.796],[-41.8,-231.62],[-41.188,-227.48],[-41.8,-223.304],[-41.8,-218.696]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":302,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-26.032,-218.696],[-18.184,-235.796],[-21.64,-235.796],[-27.976,-221.36],[-25.888,-221.36],[-32.188,-235.796],[-35.788,-235.796],[-27.94,-218.696]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":303,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-4.36,-219.092],[-1.336,-221.288],[-3.424,-223.412],[-5.494,-221.9],[-8.14,-221.396],[-11.2,-222.134],[-13.252,-224.222],[-13.972,-227.372],[-13.288,-230.432],[-11.344,-232.448],[-8.428,-233.168],[-5.728,-232.502],[-4,-230.63],[-3.388,-227.696],[-2.2,-228.74],[-14.908,-228.74],[-14.908,-226.04],[-0.472,-226.04],[-0.328,-226.958],[-0.292,-227.732],[-1.318,-232.088],[-4.18,-235.076],[-8.356,-236.156],[-12.838,-234.986],[-16.006,-231.8],[-17.176,-227.264],[-15.988,-222.692],[-12.766,-219.506],[-8.14,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":304,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[23.918,-219.506],[26.888,-222.692],[27.968,-227.228],[26.888,-231.764],[23.918,-234.968],[19.688,-236.156],[16.214,-235.346],[13.694,-233.114],[12.632,-229.82],[12.632,-224.672],[13.676,-221.396],[16.178,-219.146],[19.688,-218.336]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13.928,-218.696],[13.928,-223.304],[13.316,-227.48],[13.928,-231.62],[13.928,-244.4],[10.688,-244.4],[10.688,-218.696]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[16.322,-222.152],[14.414,-224.222],[13.748,-227.228],[14.432,-230.27],[16.34,-232.34],[19.148,-233.096],[21.992,-232.34],[23.918,-230.27],[24.62,-227.264],[23.918,-224.222],[21.992,-222.152],[19.148,-221.396]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":305,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[43.34,-219.092],[46.364,-221.288],[44.276,-223.412],[42.206,-221.9],[39.56,-221.396],[36.5,-222.134],[34.448,-224.222],[33.728,-227.372],[34.412,-230.432],[36.356,-232.448],[39.272,-233.168],[41.972,-232.502],[43.7,-230.63],[44.312,-227.696],[45.5,-228.74],[32.792,-228.74],[32.792,-226.04],[47.228,-226.04],[47.372,-226.958],[47.408,-227.732],[46.382,-232.088],[43.52,-235.076],[39.344,-236.156],[34.862,-234.986],[31.694,-231.8],[30.524,-227.264],[31.712,-222.692],[34.934,-219.506],[39.56,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":306,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[62.636,-219.092],[65.66,-221.288],[63.572,-223.412],[61.502,-221.9],[58.856,-221.396],[55.796,-222.134],[53.744,-224.222],[53.024,-227.372],[53.708,-230.432],[55.652,-232.448],[58.568,-233.168],[61.268,-232.502],[62.996,-230.63],[63.608,-227.696],[64.796,-228.74],[52.088,-228.74],[52.088,-226.04],[66.524,-226.04],[66.668,-226.958],[66.704,-227.732],[65.678,-232.088],[62.816,-235.076],[58.64,-236.156],[54.158,-234.986],[50.99,-231.8],[49.82,-227.264],[51.008,-222.692],[54.23,-219.506],[58.856,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":307,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[85.568,-218.696],[85.568,-229.316],[84.704,-232.646],[82.346,-235.184],[78.908,-236.156],[75.416,-235.274],[73.004,-232.88],[72.14,-229.424],[73.472,-228.668],[74.048,-230.972],[75.632,-232.556],[77.936,-233.132],[81.086,-231.872],[82.292,-228.668],[82.292,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[73.472,-218.696],[73.472,-235.796],[70.232,-235.796],[70.232,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":308,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[108.14,-219.146],[110.624,-221.396],[111.668,-224.672],[111.668,-229.82],[110.606,-233.114],[108.104,-235.346],[104.612,-236.156],[100.4,-234.968],[97.43,-231.764],[96.332,-227.228],[97.43,-222.692],[100.4,-219.506],[104.612,-218.336]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[102.326,-222.134],[100.382,-224.204],[99.68,-227.264],[100.382,-230.306],[102.308,-232.358],[105.152,-233.096],[107.996,-232.34],[109.904,-230.27],[110.588,-227.228],[109.904,-224.222],[107.996,-222.152],[105.152,-221.396]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[113.648,-244.4],[110.372,-244.4],[110.372,-231.62],[110.984,-227.48],[110.372,-223.304],[110.372,-218.696],[113.648,-218.696]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":309,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[130.064,-219.092],[133.088,-221.288],[131,-223.412],[128.93,-221.9],[126.284,-221.396],[123.224,-222.134],[121.172,-224.222],[120.452,-227.372],[121.136,-230.432],[123.08,-232.448],[125.996,-233.168],[128.696,-232.502],[130.424,-230.63],[131.036,-227.696],[132.224,-228.74],[119.516,-228.74],[119.516,-226.04],[133.952,-226.04],[134.096,-226.958],[134.132,-227.732],[133.106,-232.088],[130.244,-235.076],[126.068,-236.156],[121.586,-234.986],[118.418,-231.8],[117.248,-227.264],[118.436,-222.692],[121.658,-219.506],[126.284,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":310,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[150.89,-219.506],[153.86,-222.692],[154.94,-227.228],[153.86,-231.764],[150.89,-234.968],[146.66,-236.156],[143.186,-235.346],[140.666,-233.114],[139.604,-229.82],[139.604,-224.672],[140.648,-221.396],[143.15,-219.146],[146.66,-218.336]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[140.9,-211.532],[140.9,-222.98],[140.288,-227.156],[140.9,-231.296],[140.9,-235.796],[137.66,-235.796],[137.66,-211.532]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[143.294,-222.152],[141.386,-224.222],[140.72,-227.228],[141.404,-230.27],[143.312,-232.34],[146.12,-233.096],[148.964,-232.34],[150.89,-230.27],[151.592,-227.264],[150.89,-224.222],[148.964,-222.152],[146.12,-221.396]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":311,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[161.852,-218.696],[161.852,-244.4],[158.612,-244.4],[158.612,-218.696]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":312,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[178.934,-219.524],[182.156,-222.746],[183.344,-227.3],[182.156,-231.8],[178.934,-234.986],[174.38,-236.156],[169.88,-234.968],[166.676,-231.782],[165.488,-227.3],[166.676,-222.746],[169.88,-219.524],[174.38,-218.336]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[171.536,-222.224],[169.556,-224.294],[168.836,-227.3],[169.556,-230.252],[171.536,-232.286],[174.38,-233.024],[177.278,-232.286],[179.258,-230.252],[179.996,-227.3],[179.276,-224.294],[177.296,-222.224],[174.38,-221.468]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":313,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[193.856,-218.552],[201.848,-235.796],[198.248,-235.796],[192.452,-222.296],[193.604,-222.296],[188.096,-235.796],[184.496,-235.796],[191.912,-218.552]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[190.616,-211.532],[193.856,-218.552],[192.02,-221.864],[187.016,-211.532]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":314,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[215.564,-219.092],[218.588,-221.288],[216.5,-223.412],[214.43,-221.9],[211.784,-221.396],[208.724,-222.134],[206.672,-224.222],[205.952,-227.372],[206.636,-230.432],[208.58,-232.448],[211.496,-233.168],[214.196,-232.502],[215.924,-230.63],[216.536,-227.696],[217.724,-228.74],[205.016,-228.74],[205.016,-226.04],[219.452,-226.04],[219.596,-226.958],[219.632,-227.732],[218.606,-232.088],[215.744,-235.076],[211.568,-236.156],[207.086,-234.986],[203.918,-231.8],[202.748,-227.264],[203.936,-222.692],[207.158,-219.506],[211.784,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":315,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[233.888,-219.146],[236.372,-221.396],[237.416,-224.672],[237.416,-229.82],[236.354,-233.114],[233.852,-235.346],[230.36,-236.156],[226.148,-234.968],[223.178,-231.764],[222.08,-227.228],[223.178,-222.692],[226.148,-219.506],[230.36,-218.336]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[228.074,-222.134],[226.13,-224.204],[225.428,-227.264],[226.13,-230.306],[228.056,-232.358],[230.9,-233.096],[233.744,-232.34],[235.652,-230.27],[236.336,-227.228],[235.652,-224.222],[233.744,-222.152],[230.9,-221.396]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[239.396,-244.4],[236.12,-244.4],[236.12,-231.62],[236.732,-227.48],[236.12,-223.304],[236.12,-218.696],[239.396,-218.696]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":316,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[254.84,-218.696],[254.84,-235.796],[251.564,-235.796],[251.564,-218.696]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[254.696,-239.81],[255.272,-241.304],[254.696,-242.762],[253.22,-243.356],[251.744,-242.762],[251.168,-241.304],[251.744,-239.81],[253.22,-239.216]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":317,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[274.964,-218.696],[274.964,-229.316],[274.1,-232.646],[271.742,-235.184],[268.304,-236.156],[264.812,-235.274],[262.4,-232.88],[261.536,-229.424],[262.868,-228.668],[263.444,-230.972],[265.028,-232.556],[267.332,-233.132],[270.482,-231.872],[271.688,-228.668],[271.688,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[262.868,-218.696],[262.868,-235.796],[259.628,-235.796],[259.628,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":318,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[298.31,-219.092],[301.208,-221.216],[299.084,-223.376],[297.122,-221.954],[294.62,-221.468],[291.74,-222.224],[289.76,-224.276],[289.04,-227.264],[289.76,-230.252],[291.74,-232.286],[294.62,-233.024],[297.104,-232.538],[299.048,-231.116],[301.208,-233.276],[298.292,-235.418],[294.62,-236.156],[290.066,-234.986],[286.862,-231.8],[285.692,-227.264],[286.862,-222.746],[290.066,-219.524],[294.62,-218.336]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":319,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[314.852,-219.146],[317.318,-221.396],[318.344,-224.672],[318.344,-229.82],[317.3,-233.114],[314.834,-235.346],[311.36,-236.156],[307.094,-234.968],[304.106,-231.764],[303.008,-227.228],[304.106,-222.692],[307.094,-219.506],[311.36,-218.336]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[309.02,-222.152],[307.058,-224.222],[306.356,-227.264],[307.058,-230.27],[309.002,-232.34],[311.864,-233.096],[314.69,-232.358],[316.58,-230.288],[317.264,-227.228],[315.788,-223.034],[311.9,-221.396]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[320.324,-218.696],[320.324,-235.796],[317.048,-235.796],[317.048,-231.62],[317.66,-227.48],[317.048,-223.304],[317.048,-218.696]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":320,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[335.066,-219.74],[336.776,-223.556],[336.11,-226.112],[334.4,-227.66],[332.204,-228.578],[329.99,-229.244],[328.28,-230.036],[327.632,-231.368],[328.37,-232.7],[330.512,-233.204],[332.888,-232.7],[334.688,-231.26],[336.776,-233.348],[334.202,-235.454],[330.62,-236.156],[327.344,-235.544],[325.238,-233.798],[324.5,-231.116],[325.166,-228.614],[326.876,-227.12],[329.09,-226.256],[331.304,-225.59],[333.014,-224.726],[333.68,-223.268],[332.852,-221.81],[330.512,-221.288],[327.776,-221.846],[325.616,-223.556],[323.528,-221.468],[325.382,-219.794],[327.74,-218.714],[330.476,-218.336]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":321,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[352.112,-219.092],[355.136,-221.288],[353.048,-223.412],[350.978,-221.9],[348.332,-221.396],[345.272,-222.134],[343.22,-224.222],[342.5,-227.372],[343.184,-230.432],[345.128,-232.448],[348.044,-233.168],[350.744,-232.502],[352.472,-230.63],[353.084,-227.696],[354.272,-228.74],[341.564,-228.74],[341.564,-226.04],[356,-226.04],[356.144,-226.958],[356.18,-227.732],[355.154,-232.088],[352.292,-235.076],[348.116,-236.156],[343.634,-234.986],[340.466,-231.8],[339.296,-227.264],[340.484,-222.692],[343.706,-219.506],[348.332,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":322,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[379.49,-219.524],[382.712,-222.746],[383.9,-227.3],[382.712,-231.8],[379.49,-234.986],[374.936,-236.156],[370.436,-234.968],[367.232,-231.782],[366.044,-227.3],[367.232,-222.746],[370.436,-219.524],[374.936,-218.336]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[372.092,-222.224],[370.112,-224.294],[369.392,-227.3],[370.112,-230.252],[372.092,-232.286],[374.936,-233.024],[377.834,-232.286],[379.814,-230.252],[380.552,-227.3],[379.832,-224.294],[377.852,-222.224],[374.936,-221.468]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":323,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[392.648,-218.696],[392.648,-238.352],[393.494,-240.818],[395.888,-241.7],[397.292,-241.448],[398.336,-240.692],[400.46,-242.78],[398.48,-244.256],[395.924,-244.76],[392.504,-243.932],[390.2,-241.664],[389.372,-238.352],[389.372,-218.696]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[398.084,-232.844],[398.084,-235.796],[385.196,-235.796],[385.196,-232.844]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":324,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[419.54,-219.146],[422.006,-221.396],[423.032,-224.672],[423.032,-229.82],[421.988,-233.114],[419.522,-235.346],[416.048,-236.156],[411.782,-234.968],[408.794,-231.764],[407.696,-227.228],[408.794,-222.692],[411.782,-219.506],[416.048,-218.336]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[413.708,-222.152],[411.746,-224.222],[411.044,-227.264],[411.746,-230.27],[413.69,-232.34],[416.552,-233.096],[419.378,-232.358],[421.268,-230.288],[421.952,-227.228],[420.476,-223.034],[416.588,-221.396]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[425.012,-218.696],[425.012,-235.796],[421.736,-235.796],[421.736,-231.62],[422.348,-227.48],[421.736,-223.304],[421.736,-218.696]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":325,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[452.516,-218.696],[452.516,-229.316],[451.652,-232.646],[449.294,-235.184],[445.856,-236.156],[442.364,-235.274],[439.952,-232.88],[439.088,-229.424],[440.42,-228.668],[440.996,-230.972],[442.58,-232.556],[444.884,-233.132],[448.034,-231.872],[449.24,-228.668],[449.24,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[440.42,-218.696],[440.42,-235.796],[437.18,-235.796],[437.18,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":326,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[468.608,-219.092],[471.632,-221.288],[469.544,-223.412],[467.474,-221.9],[464.828,-221.396],[461.768,-222.134],[459.716,-224.222],[458.996,-227.372],[459.68,-230.432],[461.624,-232.448],[464.54,-233.168],[467.24,-232.502],[468.968,-230.63],[469.58,-227.696],[470.768,-228.74],[458.06,-228.74],[458.06,-226.04],[472.496,-226.04],[472.64,-226.958],[472.676,-227.732],[471.65,-232.088],[468.788,-235.076],[464.612,-236.156],[460.13,-234.986],[456.962,-231.8],[455.792,-227.264],[456.98,-222.692],[460.202,-219.506],[464.828,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":327,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[490.82,-218.696],[483.62,-228.632],[483.008,-229.136],[478.148,-235.796],[474.188,-235.796],[480.956,-226.724],[481.568,-226.184],[486.896,-218.696]],"c":true},"ix":2},"nm":"x","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[477.716,-218.696],[482.792,-225.824],[480.956,-228.2],[473.9,-218.696]],"c":true},"ix":2},"nm":"x","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[490.496,-235.796],[486.716,-235.796],[481.964,-229.1],[483.872,-226.796]],"c":true},"ix":2},"nm":"x","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"x","np":6,"cix":2,"bm":0,"ix":328,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[498.956,-218.696],[498.956,-242.96],[495.716,-242.96],[495.716,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[503.168,-232.844],[503.168,-235.796],[491.504,-235.796],[491.504,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":329,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[520.556,-218.696],[525.524,-231.584],[524.336,-231.584],[529.268,-218.696],[531.176,-218.696],[537.908,-235.796],[534.524,-235.796],[529.628,-222.476],[530.708,-222.476],[525.848,-235.796],[523.976,-235.796],[519.116,-222.476],[520.196,-222.476],[515.3,-235.796],[511.916,-235.796],[518.648,-218.696]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":330,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[551.048,-219.146],[553.514,-221.396],[554.54,-224.672],[554.54,-229.82],[553.496,-233.114],[551.03,-235.346],[547.556,-236.156],[543.29,-234.968],[540.302,-231.764],[539.204,-227.228],[540.302,-222.692],[543.29,-219.506],[547.556,-218.336]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[545.216,-222.152],[543.254,-224.222],[542.552,-227.264],[543.254,-230.27],[545.198,-232.34],[548.06,-233.096],[550.886,-232.358],[552.776,-230.288],[553.46,-227.228],[551.984,-223.034],[548.096,-221.396]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[556.52,-218.696],[556.52,-235.796],[553.244,-235.796],[553.244,-231.62],[553.856,-227.48],[553.244,-223.304],[553.244,-218.696]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":331,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[569.012,-218.696],[576.86,-235.796],[573.404,-235.796],[567.068,-221.36],[569.156,-221.36],[562.856,-235.796],[559.256,-235.796],[567.104,-218.696]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":332,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[590.684,-219.092],[593.708,-221.288],[591.62,-223.412],[589.55,-221.9],[586.904,-221.396],[583.844,-222.134],[581.792,-224.222],[581.072,-227.372],[581.756,-230.432],[583.7,-232.448],[586.616,-233.168],[589.316,-232.502],[591.044,-230.63],[591.656,-227.696],[592.844,-228.74],[580.136,-228.74],[580.136,-226.04],[594.572,-226.04],[594.716,-226.958],[594.752,-227.732],[593.726,-232.088],[590.864,-235.076],[586.688,-236.156],[582.206,-234.986],[579.038,-231.8],[577.868,-227.264],[579.056,-222.692],[582.278,-219.506],[586.904,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":333,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[618.062,-219.524],[621.284,-222.746],[622.472,-227.3],[621.284,-231.8],[618.062,-234.986],[613.508,-236.156],[609.008,-234.968],[605.804,-231.782],[604.616,-227.3],[605.804,-222.746],[609.008,-219.524],[613.508,-218.336]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[610.664,-222.224],[608.684,-224.294],[607.964,-227.3],[608.684,-230.252],[610.664,-232.286],[613.508,-233.024],[616.406,-232.286],[618.386,-230.252],[619.124,-227.3],[618.404,-224.294],[616.424,-222.224],[613.508,-221.468]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":334,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[631.22,-218.696],[631.22,-238.352],[632.066,-240.818],[634.46,-241.7],[635.864,-241.448],[636.908,-240.692],[639.032,-242.78],[637.052,-244.256],[634.496,-244.76],[631.076,-243.932],[628.772,-241.664],[627.944,-238.352],[627.944,-218.696]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[636.656,-232.844],[636.656,-235.796],[623.768,-235.796],[623.768,-232.844]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":335,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-818.896,-175.946],[-816.412,-178.196],[-815.368,-181.472],[-815.368,-186.62],[-816.43,-189.914],[-818.932,-192.146],[-822.424,-192.956],[-826.636,-191.768],[-829.606,-188.564],[-830.704,-184.028],[-829.606,-179.492],[-826.636,-176.306],[-822.424,-175.136]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-824.71,-178.934],[-826.654,-181.004],[-827.356,-184.064],[-826.654,-187.106],[-824.728,-189.158],[-821.884,-189.896],[-819.04,-189.14],[-817.132,-187.07],[-816.448,-184.028],[-817.132,-181.022],[-819.04,-178.952],[-821.884,-178.196]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-813.388,-201.2],[-816.664,-201.2],[-816.664,-188.42],[-816.052,-184.28],[-816.664,-180.104],[-816.664,-175.496],[-813.388,-175.496]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":336,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-796.972,-175.892],[-793.948,-178.088],[-796.036,-180.212],[-798.106,-178.7],[-800.752,-178.196],[-803.812,-178.934],[-805.864,-181.022],[-806.584,-184.172],[-805.9,-187.232],[-803.956,-189.248],[-801.04,-189.968],[-798.34,-189.302],[-796.612,-187.43],[-796,-184.496],[-794.812,-185.54],[-807.52,-185.54],[-807.52,-182.84],[-793.084,-182.84],[-792.94,-183.758],[-792.904,-184.532],[-793.93,-188.888],[-796.792,-191.876],[-800.968,-192.956],[-805.45,-191.786],[-808.618,-188.6],[-809.788,-184.064],[-808.6,-179.492],[-805.378,-176.306],[-800.752,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":337,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-786.136,-175.496],[-786.136,-192.596],[-789.376,-192.596],[-789.376,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-774.58,-175.496],[-774.58,-186.512],[-775.426,-189.932],[-777.73,-192.164],[-780.988,-192.956],[-784.3,-192.146],[-786.622,-189.896],[-787.468,-186.512],[-786.136,-185.828],[-785.56,-188.024],[-784.048,-189.428],[-781.924,-189.932],[-778.99,-188.834],[-777.82,-185.828],[-777.82,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-762.988,-175.496],[-762.988,-186.476],[-763.87,-189.932],[-766.228,-192.164],[-769.576,-192.956],[-772.888,-192.146],[-775.354,-189.914],[-776.416,-186.512],[-774.58,-185.828],[-774.004,-188.024],[-772.474,-189.428],[-770.332,-189.932],[-767.434,-188.834],[-766.264,-185.828],[-766.264,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":338,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-746.266,-176.324],[-743.044,-179.546],[-741.856,-184.1],[-743.044,-188.6],[-746.266,-191.786],[-750.82,-192.956],[-755.32,-191.768],[-758.524,-188.582],[-759.712,-184.1],[-758.524,-179.546],[-755.32,-176.324],[-750.82,-175.136]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-753.664,-179.024],[-755.644,-181.094],[-756.364,-184.1],[-755.644,-187.052],[-753.664,-189.086],[-750.82,-189.824],[-747.922,-189.086],[-745.942,-187.052],[-745.204,-184.1],[-745.924,-181.094],[-747.904,-179.024],[-750.82,-178.268]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":339,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-722.92,-175.496],[-722.92,-186.116],[-723.784,-189.446],[-726.142,-191.984],[-729.58,-192.956],[-733.072,-192.074],[-735.484,-189.68],[-736.348,-186.224],[-735.016,-185.468],[-734.44,-187.772],[-732.856,-189.356],[-730.552,-189.932],[-727.402,-188.672],[-726.196,-185.468],[-726.196,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-735.016,-175.496],[-735.016,-192.596],[-738.256,-192.596],[-738.256,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":340,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-708.502,-176.54],[-706.792,-180.356],[-707.458,-182.912],[-709.168,-184.46],[-711.364,-185.378],[-713.578,-186.044],[-715.288,-186.836],[-715.936,-188.168],[-715.198,-189.5],[-713.056,-190.004],[-710.68,-189.5],[-708.88,-188.06],[-706.792,-190.148],[-709.366,-192.254],[-712.948,-192.956],[-716.224,-192.344],[-718.33,-190.598],[-719.068,-187.916],[-718.402,-185.414],[-716.692,-183.92],[-714.478,-183.056],[-712.264,-182.39],[-710.554,-181.526],[-709.888,-180.068],[-710.716,-178.61],[-713.056,-178.088],[-715.792,-178.646],[-717.952,-180.356],[-720.04,-178.268],[-718.186,-176.594],[-715.828,-175.514],[-713.092,-175.136]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":341,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-697.288,-175.496],[-697.288,-199.76],[-700.528,-199.76],[-700.528,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-693.076,-189.644],[-693.076,-192.596],[-704.74,-192.596],[-704.74,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":342,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-686.668,-175.496],[-686.668,-192.596],[-689.908,-192.596],[-689.908,-175.496]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-685.516,-188.744],[-682.564,-189.896],[-681.052,-189.644],[-679.864,-188.816],[-677.74,-191.012],[-679.684,-192.506],[-682.024,-192.956],[-686.38,-191.012],[-687.892,-185.792],[-686.668,-185.216]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":343,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-665.248,-175.946],[-662.782,-178.196],[-661.756,-181.472],[-661.756,-186.62],[-662.8,-189.914],[-665.266,-192.146],[-668.74,-192.956],[-673.006,-191.768],[-675.994,-188.564],[-677.092,-184.028],[-675.994,-179.492],[-673.006,-176.306],[-668.74,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-671.08,-178.952],[-673.042,-181.022],[-673.744,-184.064],[-673.042,-187.07],[-671.098,-189.14],[-668.236,-189.896],[-665.41,-189.158],[-663.52,-187.088],[-662.836,-184.028],[-664.312,-179.834],[-668.2,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-659.776,-175.496],[-659.776,-192.596],[-663.052,-192.596],[-663.052,-188.42],[-662.44,-184.28],[-663.052,-180.104],[-663.052,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":344,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-649.264,-175.496],[-649.264,-199.76],[-652.504,-199.76],[-652.504,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-645.052,-189.644],[-645.052,-192.596],[-656.716,-192.596],[-656.716,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":345,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-638.608,-175.496],[-638.608,-192.596],[-641.884,-192.596],[-641.884,-175.496]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-638.752,-196.61],[-638.176,-198.104],[-638.752,-199.562],[-640.228,-200.156],[-641.704,-199.562],[-642.28,-198.104],[-641.704,-196.61],[-640.228,-196.016]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":346,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-621.49,-176.324],[-618.268,-179.546],[-617.08,-184.1],[-618.268,-188.6],[-621.49,-191.786],[-626.044,-192.956],[-630.544,-191.768],[-633.748,-188.582],[-634.936,-184.1],[-633.748,-179.546],[-630.544,-176.324],[-626.044,-175.136]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-628.888,-179.024],[-630.868,-181.094],[-631.588,-184.1],[-630.868,-187.052],[-628.888,-189.086],[-626.044,-189.824],[-623.146,-189.086],[-621.166,-187.052],[-620.428,-184.1],[-621.148,-181.094],[-623.128,-179.024],[-626.044,-178.268]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":347,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-598.144,-175.496],[-598.144,-186.116],[-599.008,-189.446],[-601.366,-191.984],[-604.804,-192.956],[-608.296,-192.074],[-610.708,-189.68],[-611.572,-186.224],[-610.24,-185.468],[-609.664,-187.772],[-608.08,-189.356],[-605.776,-189.932],[-602.626,-188.672],[-601.42,-185.468],[-601.42,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-610.24,-175.496],[-610.24,-192.596],[-613.48,-192.596],[-613.48,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":348,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-575.536,-175.946],[-573.07,-178.196],[-572.044,-181.472],[-572.044,-186.62],[-573.088,-189.914],[-575.554,-192.146],[-579.028,-192.956],[-583.294,-191.768],[-586.282,-188.564],[-587.38,-184.028],[-586.282,-179.492],[-583.294,-176.306],[-579.028,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-581.368,-178.952],[-583.33,-181.022],[-584.032,-184.064],[-583.33,-187.07],[-581.386,-189.14],[-578.524,-189.896],[-575.698,-189.158],[-573.808,-187.088],[-573.124,-184.028],[-574.6,-179.834],[-578.488,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-570.064,-175.496],[-570.064,-192.596],[-573.34,-192.596],[-573.34,-188.42],[-572.728,-184.28],[-573.34,-180.104],[-573.34,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":349,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-550.012,-175.496],[-550.012,-186.116],[-550.876,-189.446],[-553.234,-191.984],[-556.672,-192.956],[-560.164,-192.074],[-562.576,-189.68],[-563.44,-186.224],[-562.108,-185.468],[-561.532,-187.772],[-559.948,-189.356],[-557.644,-189.932],[-554.494,-188.672],[-553.288,-185.468],[-553.288,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-562.108,-175.496],[-562.108,-192.596],[-565.348,-192.596],[-565.348,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":350,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-534.892,-175.946],[-532.408,-178.196],[-531.364,-181.472],[-531.364,-186.62],[-532.426,-189.914],[-534.928,-192.146],[-538.42,-192.956],[-542.632,-191.768],[-545.602,-188.564],[-546.7,-184.028],[-545.602,-179.492],[-542.632,-176.306],[-538.42,-175.136]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-540.706,-178.934],[-542.65,-181.004],[-543.352,-184.064],[-542.65,-187.106],[-540.724,-189.158],[-537.88,-189.896],[-535.036,-189.14],[-533.128,-187.07],[-532.444,-184.028],[-533.128,-181.022],[-535.036,-178.952],[-537.88,-178.196]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-529.384,-201.2],[-532.66,-201.2],[-532.66,-188.42],[-532.048,-184.28],[-532.66,-180.104],[-532.66,-175.496],[-529.384,-175.496]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":351,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-513.976,-175.496],[-513.976,-192.596],[-517.216,-192.596],[-517.216,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-502.42,-175.496],[-502.42,-186.512],[-503.266,-189.932],[-505.57,-192.164],[-508.828,-192.956],[-512.14,-192.146],[-514.462,-189.896],[-515.308,-186.512],[-513.976,-185.828],[-513.4,-188.024],[-511.888,-189.428],[-509.764,-189.932],[-506.83,-188.834],[-505.66,-185.828],[-505.66,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-490.828,-175.496],[-490.828,-186.476],[-491.71,-189.932],[-494.068,-192.164],[-497.416,-192.956],[-500.728,-192.146],[-503.194,-189.914],[-504.256,-186.512],[-502.42,-185.828],[-501.844,-188.024],[-500.314,-189.428],[-498.172,-189.932],[-495.274,-188.834],[-494.104,-185.828],[-494.104,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":352,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-483.16,-175.496],[-483.16,-192.596],[-486.436,-192.596],[-486.436,-175.496]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-483.304,-196.61],[-482.728,-198.104],[-483.304,-199.562],[-484.78,-200.156],[-486.256,-199.562],[-486.832,-198.104],[-486.256,-196.61],[-484.78,-196.016]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":353,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-466.582,-168.998],[-463.414,-171.878],[-462.28,-176.18],[-462.28,-192.596],[-465.52,-192.596],[-465.52,-188.096],[-464.944,-184.28],[-465.52,-180.428],[-465.52,-176.18],[-467.068,-172.454],[-471.208,-171.068],[-474.628,-171.77],[-477.112,-173.804],[-479.236,-171.68],[-475.96,-168.944],[-471.28,-167.972]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-467.752,-176.576],[-465.286,-178.79],[-464.26,-182.084],[-464.26,-186.62],[-465.268,-189.95],[-467.734,-192.164],[-471.316,-192.956],[-475.492,-191.822],[-478.426,-188.762],[-479.488,-184.388],[-478.408,-179.978],[-475.474,-176.9],[-471.28,-175.784]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-473.494,-179.546],[-475.438,-181.508],[-476.14,-184.388],[-475.438,-187.25],[-473.512,-189.194],[-470.668,-189.896],[-467.878,-189.194],[-466.006,-187.25],[-465.34,-184.352],[-466.006,-181.454],[-467.86,-179.528],[-470.668,-178.844]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":354,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-442.228,-175.496],[-442.228,-186.116],[-443.092,-189.68],[-445.45,-192.092],[-448.888,-192.956],[-452.38,-192.074],[-454.792,-189.68],[-455.656,-186.224],[-454.324,-185.468],[-453.748,-187.772],[-452.164,-189.356],[-449.86,-189.932],[-446.71,-188.672],[-445.504,-185.468],[-445.504,-175.496]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-454.324,-175.496],[-454.324,-201.2],[-457.564,-201.2],[-457.564,-175.496]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":355,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-432.184,-175.496],[-432.184,-199.76],[-435.424,-199.76],[-435.424,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-427.972,-189.644],[-427.972,-192.596],[-439.636,-192.596],[-439.636,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":356,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-404.122,-176.306],[-401.152,-179.492],[-400.072,-184.028],[-401.152,-188.564],[-404.122,-191.768],[-408.352,-192.956],[-411.826,-192.146],[-414.346,-189.914],[-415.408,-186.62],[-415.408,-181.472],[-414.364,-178.196],[-411.862,-175.946],[-408.352,-175.136]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-414.112,-168.332],[-414.112,-179.78],[-414.724,-183.956],[-414.112,-188.096],[-414.112,-192.596],[-417.352,-192.596],[-417.352,-168.332]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-411.718,-178.952],[-413.626,-181.022],[-414.292,-184.028],[-413.608,-187.07],[-411.7,-189.14],[-408.892,-189.896],[-406.048,-189.14],[-404.122,-187.07],[-403.42,-184.064],[-404.122,-181.022],[-406.048,-178.952],[-408.892,-178.196]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":357,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-384.07,-176.324],[-380.848,-179.546],[-379.66,-184.1],[-380.848,-188.6],[-384.07,-191.786],[-388.624,-192.956],[-393.124,-191.768],[-396.328,-188.582],[-397.516,-184.1],[-396.328,-179.546],[-393.124,-176.324],[-388.624,-175.136]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-391.468,-179.024],[-393.448,-181.094],[-394.168,-184.1],[-393.448,-187.052],[-391.468,-189.086],[-388.624,-189.824],[-385.726,-189.086],[-383.746,-187.052],[-383.008,-184.1],[-383.728,-181.094],[-385.708,-179.024],[-388.624,-178.268]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":358,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-370.732,-175.496],[-370.732,-199.76],[-373.972,-199.76],[-373.972,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-366.52,-189.644],[-366.52,-192.596],[-378.184,-192.596],[-378.184,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":359,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-352.192,-175.892],[-349.168,-178.088],[-351.256,-180.212],[-353.326,-178.7],[-355.972,-178.196],[-359.032,-178.934],[-361.084,-181.022],[-361.804,-184.172],[-361.12,-187.232],[-359.176,-189.248],[-356.26,-189.968],[-353.56,-189.302],[-351.832,-187.43],[-351.22,-184.496],[-350.032,-185.54],[-362.74,-185.54],[-362.74,-182.84],[-348.304,-182.84],[-348.16,-183.758],[-348.124,-184.532],[-349.15,-188.888],[-352.012,-191.876],[-356.188,-192.956],[-360.67,-191.786],[-363.838,-188.6],[-365.008,-184.064],[-363.82,-179.492],[-360.598,-176.306],[-355.972,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":360,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-329.26,-175.496],[-329.26,-186.116],[-330.124,-189.446],[-332.482,-191.984],[-335.92,-192.956],[-339.412,-192.074],[-341.824,-189.68],[-342.688,-186.224],[-341.356,-185.468],[-340.78,-187.772],[-339.196,-189.356],[-336.892,-189.932],[-333.742,-188.672],[-332.536,-185.468],[-332.536,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-341.356,-175.496],[-341.356,-192.596],[-344.596,-192.596],[-344.596,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":361,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-319.216,-175.496],[-319.216,-199.76],[-322.456,-199.76],[-322.456,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-315.004,-189.644],[-315.004,-192.596],[-326.668,-192.596],[-326.668,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":362,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-308.56,-175.496],[-308.56,-192.596],[-311.836,-192.596],[-311.836,-175.496]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-308.704,-196.61],[-308.128,-198.104],[-308.704,-199.562],[-310.18,-200.156],[-311.656,-199.562],[-312.232,-198.104],[-311.656,-196.61],[-310.18,-196.016]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":363,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-293.008,-175.946],[-290.542,-178.196],[-289.516,-181.472],[-289.516,-186.62],[-290.56,-189.914],[-293.026,-192.146],[-296.5,-192.956],[-300.766,-191.768],[-303.754,-188.564],[-304.852,-184.028],[-303.754,-179.492],[-300.766,-176.306],[-296.5,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-298.84,-178.952],[-300.802,-181.022],[-301.504,-184.064],[-300.802,-187.07],[-298.858,-189.14],[-295.996,-189.896],[-293.17,-189.158],[-291.28,-187.088],[-290.596,-184.028],[-292.072,-179.834],[-295.96,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-287.536,-175.496],[-287.536,-192.596],[-290.812,-192.596],[-290.812,-188.42],[-290.2,-184.28],[-290.812,-180.104],[-290.812,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":364,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-279.58,-175.496],[-279.58,-201.2],[-282.82,-201.2],[-282.82,-175.496]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":365,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-267.268,-175.352],[-259.276,-192.596],[-262.876,-192.596],[-268.672,-179.096],[-267.52,-179.096],[-273.028,-192.596],[-276.628,-192.596],[-269.212,-175.352]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-270.508,-168.332],[-267.268,-175.352],[-269.104,-178.664],[-274.108,-168.332]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":366,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-245.632,-175.496],[-245.632,-201.2],[-248.872,-201.2],[-248.872,-175.496]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":367,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-229.18,-175.892],[-226.156,-178.088],[-228.244,-180.212],[-230.314,-178.7],[-232.96,-178.196],[-236.02,-178.934],[-238.072,-181.022],[-238.792,-184.172],[-238.108,-187.232],[-236.164,-189.248],[-233.248,-189.968],[-230.548,-189.302],[-228.82,-187.43],[-228.208,-184.496],[-227.02,-185.54],[-239.728,-185.54],[-239.728,-182.84],[-225.292,-182.84],[-225.148,-183.758],[-225.112,-184.532],[-226.138,-188.888],[-229,-191.876],[-233.176,-192.956],[-237.658,-191.786],[-240.826,-188.6],[-241.996,-184.064],[-240.808,-179.492],[-237.586,-176.306],[-232.96,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":368,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-210.82,-175.946],[-208.354,-178.196],[-207.328,-181.472],[-207.328,-186.62],[-208.372,-189.914],[-210.838,-192.146],[-214.312,-192.956],[-218.578,-191.768],[-221.566,-188.564],[-222.664,-184.028],[-221.566,-179.492],[-218.578,-176.306],[-214.312,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-216.652,-178.952],[-218.614,-181.022],[-219.316,-184.064],[-218.614,-187.07],[-216.67,-189.14],[-213.808,-189.896],[-210.982,-189.158],[-209.092,-187.088],[-208.408,-184.028],[-209.884,-179.834],[-213.772,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-205.348,-175.496],[-205.348,-192.596],[-208.624,-192.596],[-208.624,-188.42],[-208.012,-184.28],[-208.624,-180.104],[-208.624,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":369,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-189.904,-175.946],[-187.42,-178.196],[-186.376,-181.472],[-186.376,-186.62],[-187.438,-189.914],[-189.94,-192.146],[-193.432,-192.956],[-197.644,-191.768],[-200.614,-188.564],[-201.712,-184.028],[-200.614,-179.492],[-197.644,-176.306],[-193.432,-175.136]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-195.718,-178.934],[-197.662,-181.004],[-198.364,-184.064],[-197.662,-187.106],[-195.736,-189.158],[-192.892,-189.896],[-190.048,-189.14],[-188.14,-187.07],[-187.456,-184.028],[-188.14,-181.022],[-190.048,-178.952],[-192.892,-178.196]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-184.396,-201.2],[-187.672,-201.2],[-187.672,-188.42],[-187.06,-184.28],[-187.672,-180.104],[-187.672,-175.496],[-184.396,-175.496]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":370,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-166.36,-175.496],[-166.36,-199.76],[-169.6,-199.76],[-169.6,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-162.148,-189.644],[-162.148,-192.596],[-173.812,-192.596],[-173.812,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":371,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-143.644,-175.496],[-143.644,-186.116],[-144.508,-189.68],[-146.866,-192.092],[-150.304,-192.956],[-153.796,-192.074],[-156.208,-189.68],[-157.072,-186.224],[-155.74,-185.468],[-155.164,-187.772],[-153.58,-189.356],[-151.276,-189.932],[-148.126,-188.672],[-146.92,-185.468],[-146.92,-175.496]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-155.74,-175.496],[-155.74,-201.2],[-158.98,-201.2],[-158.98,-175.496]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":372,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-127.552,-175.892],[-124.528,-178.088],[-126.616,-180.212],[-128.686,-178.7],[-131.332,-178.196],[-134.392,-178.934],[-136.444,-181.022],[-137.164,-184.172],[-136.48,-187.232],[-134.536,-189.248],[-131.62,-189.968],[-128.92,-189.302],[-127.192,-187.43],[-126.58,-184.496],[-125.392,-185.54],[-138.1,-185.54],[-138.1,-182.84],[-123.664,-182.84],[-123.52,-183.758],[-123.484,-184.532],[-124.51,-188.888],[-127.372,-191.876],[-131.548,-192.956],[-136.03,-191.786],[-139.198,-188.6],[-140.368,-184.064],[-139.18,-179.492],[-135.958,-176.306],[-131.332,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":373,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-101.002,-175.892],[-98.104,-178.016],[-100.228,-180.176],[-102.19,-178.754],[-104.692,-178.268],[-107.572,-179.024],[-109.552,-181.076],[-110.272,-184.064],[-109.552,-187.052],[-107.572,-189.086],[-104.692,-189.824],[-102.208,-189.338],[-100.264,-187.916],[-98.104,-190.076],[-101.02,-192.218],[-104.692,-192.956],[-109.246,-191.786],[-112.45,-188.6],[-113.62,-184.064],[-112.45,-179.546],[-109.246,-176.324],[-104.692,-175.136]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":374,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-82.894,-176.324],[-79.672,-179.546],[-78.484,-184.1],[-79.672,-188.6],[-82.894,-191.786],[-87.448,-192.956],[-91.948,-191.768],[-95.152,-188.582],[-96.34,-184.1],[-95.152,-179.546],[-91.948,-176.324],[-87.448,-175.136]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-90.292,-179.024],[-92.272,-181.094],[-92.992,-184.1],[-92.272,-187.052],[-90.292,-189.086],[-87.448,-189.824],[-84.55,-189.086],[-82.57,-187.052],[-81.832,-184.1],[-82.552,-181.094],[-84.532,-179.024],[-87.448,-178.268]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":375,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-64.192,-176.126],[-61.6,-178.736],[-60.664,-182.66],[-60.664,-192.596],[-63.904,-192.596],[-63.904,-182.804],[-64.984,-179.474],[-67.972,-178.268],[-70.168,-178.808],[-71.59,-180.374],[-72.076,-182.804],[-72.076,-192.596],[-75.316,-192.596],[-75.316,-182.66],[-74.38,-178.736],[-71.77,-176.126],[-67.972,-175.208]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":376,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-40.972,-175.496],[-40.972,-186.116],[-41.836,-189.446],[-44.194,-191.984],[-47.632,-192.956],[-51.124,-192.074],[-53.536,-189.68],[-54.4,-186.224],[-53.068,-185.468],[-52.492,-187.772],[-50.908,-189.356],[-48.604,-189.932],[-45.454,-188.672],[-44.248,-185.468],[-44.248,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-53.068,-175.496],[-53.068,-192.596],[-56.308,-192.596],[-56.308,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":377,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-30.928,-175.496],[-30.928,-199.76],[-34.168,-199.76],[-34.168,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-26.716,-189.644],[-26.716,-192.596],[-38.38,-192.596],[-38.38,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":378,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-20.308,-175.496],[-20.308,-192.596],[-23.548,-192.596],[-23.548,-175.496]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-19.156,-188.744],[-16.204,-189.896],[-14.692,-189.644],[-13.504,-188.816],[-11.38,-191.012],[-13.324,-192.506],[-15.664,-192.956],[-20.02,-191.012],[-21.532,-185.792],[-20.308,-185.216]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":379,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-1.84,-175.352],[6.152,-192.596],[2.552,-192.596],[-3.244,-179.096],[-2.092,-179.096],[-7.6,-192.596],[-11.2,-192.596],[-3.784,-175.352]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-5.08,-168.332],[-1.84,-175.352],[-3.676,-178.664],[-8.68,-168.332]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":380,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[27.248,-176.126],[29.84,-178.736],[30.776,-182.66],[30.776,-192.596],[27.536,-192.596],[27.536,-182.804],[26.456,-179.474],[23.468,-178.268],[21.272,-178.808],[19.85,-180.374],[19.364,-182.804],[19.364,-192.596],[16.124,-192.596],[16.124,-182.66],[17.06,-178.736],[19.67,-176.126],[23.468,-175.208]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":381,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[50.468,-175.496],[50.468,-186.116],[49.604,-189.446],[47.246,-191.984],[43.808,-192.956],[40.316,-192.074],[37.904,-189.68],[37.04,-186.224],[38.372,-185.468],[38.948,-187.772],[40.532,-189.356],[42.836,-189.932],[45.986,-188.672],[47.192,-185.468],[47.192,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[38.372,-175.496],[38.372,-192.596],[35.132,-192.596],[35.132,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":382,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[65.588,-175.946],[68.072,-178.196],[69.116,-181.472],[69.116,-186.62],[68.054,-189.914],[65.552,-192.146],[62.06,-192.956],[57.848,-191.768],[54.878,-188.564],[53.78,-184.028],[54.878,-179.492],[57.848,-176.306],[62.06,-175.136]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[59.774,-178.934],[57.83,-181.004],[57.128,-184.064],[57.83,-187.106],[59.756,-189.158],[62.6,-189.896],[65.444,-189.14],[67.352,-187.07],[68.036,-184.028],[67.352,-181.022],[65.444,-178.952],[62.6,-178.196]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[71.096,-201.2],[67.82,-201.2],[67.82,-188.42],[68.432,-184.28],[67.82,-180.104],[67.82,-175.496],[71.096,-175.496]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":383,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[87.512,-175.892],[90.536,-178.088],[88.448,-180.212],[86.378,-178.7],[83.732,-178.196],[80.672,-178.934],[78.62,-181.022],[77.9,-184.172],[78.584,-187.232],[80.528,-189.248],[83.444,-189.968],[86.144,-189.302],[87.872,-187.43],[88.484,-184.496],[89.672,-185.54],[76.964,-185.54],[76.964,-182.84],[91.4,-182.84],[91.544,-183.758],[91.58,-184.532],[90.554,-188.888],[87.692,-191.876],[83.516,-192.956],[79.034,-191.786],[75.866,-188.6],[74.696,-184.064],[75.884,-179.492],[79.106,-176.306],[83.732,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":384,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[98.348,-175.496],[98.348,-192.596],[95.108,-192.596],[95.108,-175.496]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[99.5,-188.744],[102.452,-189.896],[103.964,-189.644],[105.152,-188.816],[107.276,-191.012],[105.332,-192.506],[102.992,-192.956],[98.636,-191.012],[97.124,-185.792],[98.348,-185.216]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":385,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[120.92,-175.496],[120.92,-192.596],[117.644,-192.596],[117.644,-175.496]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[120.776,-196.61],[121.352,-198.104],[120.776,-199.562],[119.3,-200.156],[117.824,-199.562],[117.248,-198.104],[117.824,-196.61],[119.3,-196.016]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":386,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[131.576,-175.496],[131.576,-199.76],[128.336,-199.76],[128.336,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[135.788,-189.644],[135.788,-192.596],[124.124,-192.596],[124.124,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":387,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[148.622,-176.54],[150.332,-180.356],[149.666,-182.912],[147.956,-184.46],[145.76,-185.378],[143.546,-186.044],[141.836,-186.836],[141.188,-188.168],[141.926,-189.5],[144.068,-190.004],[146.444,-189.5],[148.244,-188.06],[150.332,-190.148],[147.758,-192.254],[144.176,-192.956],[140.9,-192.344],[138.794,-190.598],[138.056,-187.916],[138.722,-185.414],[140.432,-183.92],[142.646,-183.056],[144.86,-182.39],[146.57,-181.526],[147.236,-180.068],[146.408,-178.61],[144.068,-178.088],[141.332,-178.646],[139.172,-180.356],[137.084,-178.268],[138.938,-176.594],[141.296,-175.514],[144.032,-175.136]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":388,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[164.66,-175.496],[164.66,-192.596],[161.42,-192.596],[161.42,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[176.216,-175.496],[176.216,-186.512],[175.37,-189.932],[173.066,-192.164],[169.808,-192.956],[166.496,-192.146],[164.174,-189.896],[163.328,-186.512],[164.66,-185.828],[165.236,-188.024],[166.748,-189.428],[168.872,-189.932],[171.806,-188.834],[172.976,-185.828],[172.976,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[187.808,-175.496],[187.808,-186.476],[186.926,-189.932],[184.568,-192.164],[181.22,-192.956],[177.908,-192.146],[175.442,-189.914],[174.38,-186.512],[176.216,-185.828],[176.792,-188.024],[178.322,-189.428],[180.464,-189.932],[183.362,-188.834],[184.532,-185.828],[184.532,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":389,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[202.964,-175.946],[205.43,-178.196],[206.456,-181.472],[206.456,-186.62],[205.412,-189.914],[202.946,-192.146],[199.472,-192.956],[195.206,-191.768],[192.218,-188.564],[191.12,-184.028],[192.218,-179.492],[195.206,-176.306],[199.472,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[197.132,-178.952],[195.17,-181.022],[194.468,-184.064],[195.17,-187.07],[197.114,-189.14],[199.976,-189.896],[202.802,-189.158],[204.692,-187.088],[205.376,-184.028],[203.9,-179.834],[200.012,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[208.436,-175.496],[208.436,-192.596],[205.16,-192.596],[205.16,-188.42],[205.772,-184.28],[205.16,-180.104],[205.16,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":390,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[216.392,-175.496],[216.392,-192.596],[213.152,-192.596],[213.152,-175.496]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[217.544,-188.744],[220.496,-189.896],[222.008,-189.644],[223.196,-188.816],[225.32,-191.012],[223.376,-192.506],[221.036,-192.956],[216.68,-191.012],[215.168,-185.792],[216.392,-185.216]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":391,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[233.42,-175.496],[233.42,-199.76],[230.18,-199.76],[230.18,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[237.632,-189.644],[237.632,-192.596],[225.968,-192.596],[225.968,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":392,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[244.076,-175.496],[244.076,-192.596],[240.8,-192.596],[240.8,-175.496]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[243.932,-196.61],[244.508,-198.104],[243.932,-199.562],[242.456,-200.156],[240.98,-199.562],[240.404,-198.104],[240.98,-196.61],[242.456,-196.016]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":393,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[259.628,-175.946],[262.094,-178.196],[263.12,-181.472],[263.12,-186.62],[262.076,-189.914],[259.61,-192.146],[256.136,-192.956],[251.87,-191.768],[248.882,-188.564],[247.784,-184.028],[248.882,-179.492],[251.87,-176.306],[256.136,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[253.796,-178.952],[251.834,-181.022],[251.132,-184.064],[251.834,-187.07],[253.778,-189.14],[256.64,-189.896],[259.466,-189.158],[261.356,-187.088],[262.04,-184.028],[260.564,-179.834],[256.676,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[265.1,-175.496],[265.1,-192.596],[261.824,-192.596],[261.824,-188.42],[262.436,-184.28],[261.824,-180.104],[261.824,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":394,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[273.056,-175.496],[273.056,-201.2],[269.816,-201.2],[269.816,-175.496]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":395,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[288.5,-175.496],[288.5,-201.2],[285.26,-201.2],[285.26,-175.496]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":396,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[304.016,-175.946],[306.482,-178.196],[307.508,-181.472],[307.508,-186.62],[306.464,-189.914],[303.998,-192.146],[300.524,-192.956],[296.258,-191.768],[293.27,-188.564],[292.172,-184.028],[293.27,-179.492],[296.258,-176.306],[300.524,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[298.184,-178.952],[296.222,-181.022],[295.52,-184.064],[296.222,-187.07],[298.166,-189.14],[301.028,-189.896],[303.854,-189.158],[305.744,-187.088],[306.428,-184.028],[304.952,-179.834],[301.064,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[309.488,-175.496],[309.488,-192.596],[306.212,-192.596],[306.212,-188.42],[306.824,-184.28],[306.212,-180.104],[306.212,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":397,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[320.9,-175.496],[325.868,-188.384],[324.68,-188.384],[329.612,-175.496],[331.52,-175.496],[338.252,-192.596],[334.868,-192.596],[329.972,-179.276],[331.052,-179.276],[326.192,-192.596],[324.32,-192.596],[319.46,-179.276],[320.54,-179.276],[315.644,-192.596],[312.26,-192.596],[318.992,-175.496]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":398,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[361.814,-176.306],[364.784,-179.492],[365.864,-184.028],[364.784,-188.564],[361.814,-191.768],[357.584,-192.956],[354.11,-192.146],[351.59,-189.914],[350.528,-186.62],[350.528,-181.472],[351.572,-178.196],[354.074,-175.946],[357.584,-175.136]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[351.824,-175.496],[351.824,-180.104],[351.212,-184.28],[351.824,-188.42],[351.824,-201.2],[348.584,-201.2],[348.584,-175.496]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[354.218,-178.952],[352.31,-181.022],[351.644,-184.028],[352.328,-187.07],[354.236,-189.14],[357.044,-189.896],[359.888,-189.14],[361.814,-187.07],[362.516,-184.064],[361.814,-181.022],[359.888,-178.952],[357.044,-178.196]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":399,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[376.448,-175.352],[384.44,-192.596],[380.84,-192.596],[375.044,-179.096],[376.196,-179.096],[370.688,-192.596],[367.088,-192.596],[374.504,-175.352]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[373.208,-168.332],[376.448,-175.352],[374.612,-178.664],[369.608,-168.332]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":400,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[398.084,-175.496],[398.084,-192.596],[394.844,-192.596],[394.844,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[409.64,-175.496],[409.64,-186.512],[408.794,-189.932],[406.49,-192.164],[403.232,-192.956],[399.92,-192.146],[397.598,-189.896],[396.752,-186.512],[398.084,-185.828],[398.66,-188.024],[400.172,-189.428],[402.296,-189.932],[405.23,-188.834],[406.4,-185.828],[406.4,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[421.232,-175.496],[421.232,-186.476],[420.35,-189.932],[417.992,-192.164],[414.644,-192.956],[411.332,-192.146],[408.866,-189.914],[407.804,-186.512],[409.64,-185.828],[410.216,-188.024],[411.746,-189.428],[413.888,-189.932],[416.786,-188.834],[417.956,-185.828],[417.956,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":401,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[436.388,-175.946],[438.854,-178.196],[439.88,-181.472],[439.88,-186.62],[438.836,-189.914],[436.37,-192.146],[432.896,-192.956],[428.63,-191.768],[425.642,-188.564],[424.544,-184.028],[425.642,-179.492],[428.63,-176.306],[432.896,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[430.556,-178.952],[428.594,-181.022],[427.892,-184.064],[428.594,-187.07],[430.538,-189.14],[433.4,-189.896],[436.226,-189.158],[438.116,-187.088],[438.8,-184.028],[437.324,-179.834],[433.436,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[441.86,-175.496],[441.86,-192.596],[438.584,-192.596],[438.584,-188.42],[439.196,-184.28],[438.584,-180.104],[438.584,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":402,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[461.696,-175.496],[452.696,-185.252],[452.552,-183.38],[461.372,-192.596],[457.412,-192.596],[449.528,-184.244],[457.52,-175.496]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[449.816,-175.496],[449.816,-201.2],[446.576,-201.2],[446.576,-175.496]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"k","np":5,"cix":2,"bm":0,"ix":403,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[467.132,-175.496],[467.132,-192.596],[463.856,-192.596],[463.856,-175.496]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[466.988,-196.61],[467.564,-198.104],[466.988,-199.562],[465.512,-200.156],[464.036,-199.562],[463.46,-198.104],[464.036,-196.61],[465.512,-196.016]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":404,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[487.256,-175.496],[487.256,-186.116],[486.392,-189.446],[484.034,-191.984],[480.596,-192.956],[477.104,-192.074],[474.692,-189.68],[473.828,-186.224],[475.16,-185.468],[475.736,-187.772],[477.32,-189.356],[479.624,-189.932],[482.774,-188.672],[483.98,-185.468],[483.98,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[475.16,-175.496],[475.16,-192.596],[471.92,-192.596],[471.92,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":405,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[503.438,-168.998],[506.606,-171.878],[507.74,-176.18],[507.74,-192.596],[504.5,-192.596],[504.5,-188.096],[505.076,-184.28],[504.5,-180.428],[504.5,-176.18],[502.952,-172.454],[498.812,-171.068],[495.392,-171.77],[492.908,-173.804],[490.784,-171.68],[494.06,-168.944],[498.74,-167.972]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[502.268,-176.576],[504.734,-178.79],[505.76,-182.084],[505.76,-186.62],[504.752,-189.95],[502.286,-192.164],[498.704,-192.956],[494.528,-191.822],[491.594,-188.762],[490.532,-184.388],[491.612,-179.978],[494.546,-176.9],[498.74,-175.784]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[496.526,-179.546],[494.582,-181.508],[493.88,-184.388],[494.582,-187.25],[496.508,-189.194],[499.352,-189.896],[502.142,-189.194],[504.014,-187.25],[504.68,-184.352],[504.014,-181.454],[502.16,-179.528],[499.352,-178.844]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":406,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[525.596,-175.496],[525.596,-195.152],[526.442,-197.618],[528.836,-198.5],[530.24,-198.248],[531.284,-197.492],[533.408,-199.58],[531.428,-201.056],[528.872,-201.56],[525.452,-200.732],[523.148,-198.464],[522.32,-195.152],[522.32,-175.496]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[531.032,-189.644],[531.032,-192.596],[518.144,-192.596],[518.144,-189.644]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":407,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[544.064,-175.946],[546.53,-178.196],[547.556,-181.472],[547.556,-186.62],[546.512,-189.914],[544.046,-192.146],[540.572,-192.956],[536.306,-191.768],[533.318,-188.564],[532.22,-184.028],[533.318,-179.492],[536.306,-176.306],[540.572,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[538.232,-178.952],[536.27,-181.022],[535.568,-184.064],[536.27,-187.07],[538.214,-189.14],[541.076,-189.896],[543.902,-189.158],[545.792,-187.088],[546.476,-184.028],[545,-179.834],[541.112,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[549.536,-175.496],[549.536,-192.596],[546.26,-192.596],[546.26,-188.42],[546.872,-184.28],[546.26,-180.104],[546.26,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":408,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[567.482,-176.306],[570.452,-179.492],[571.532,-184.028],[570.452,-188.564],[567.482,-191.768],[563.252,-192.956],[559.778,-192.146],[557.258,-189.914],[556.196,-186.62],[556.196,-181.472],[557.24,-178.196],[559.742,-175.946],[563.252,-175.136]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[557.492,-175.496],[557.492,-180.104],[556.88,-184.28],[557.492,-188.42],[557.492,-201.2],[554.252,-201.2],[554.252,-175.496]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[559.886,-178.952],[557.978,-181.022],[557.312,-184.028],[557.996,-187.07],[559.904,-189.14],[562.712,-189.896],[565.556,-189.14],[567.482,-187.07],[568.184,-184.064],[567.482,-181.022],[565.556,-178.952],[562.712,-178.196]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":409,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[578.444,-175.496],[578.444,-192.596],[575.204,-192.596],[575.204,-175.496]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[579.596,-188.744],[582.548,-189.896],[584.06,-189.644],[585.248,-188.816],[587.372,-191.012],[585.428,-192.506],[583.088,-192.956],[578.732,-191.012],[577.22,-185.792],[578.444,-185.216]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":410,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[592.916,-175.496],[592.916,-192.596],[589.64,-192.596],[589.64,-175.496]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[592.772,-196.61],[593.348,-198.104],[592.772,-199.562],[591.296,-200.156],[589.82,-199.562],[589.244,-198.104],[589.82,-196.61],[591.296,-196.016]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":411,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[609.206,-175.892],[612.104,-178.016],[609.98,-180.176],[608.018,-178.754],[605.516,-178.268],[602.636,-179.024],[600.656,-181.076],[599.936,-184.064],[600.656,-187.052],[602.636,-189.086],[605.516,-189.824],[608,-189.338],[609.944,-187.916],[612.104,-190.076],[609.188,-192.218],[605.516,-192.956],[600.962,-191.786],[597.758,-188.6],[596.588,-184.064],[597.758,-179.546],[600.962,-176.324],[605.516,-175.136]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":412,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[625.748,-175.946],[628.214,-178.196],[629.24,-181.472],[629.24,-186.62],[628.196,-189.914],[625.73,-192.146],[622.256,-192.956],[617.99,-191.768],[615.002,-188.564],[613.904,-184.028],[615.002,-179.492],[617.99,-176.306],[622.256,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[619.916,-178.952],[617.954,-181.022],[617.252,-184.064],[617.954,-187.07],[619.898,-189.14],[622.76,-189.896],[625.586,-189.158],[627.476,-187.088],[628.16,-184.028],[626.684,-179.834],[622.796,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[631.22,-175.496],[631.22,-192.596],[627.944,-192.596],[627.944,-188.42],[628.556,-184.28],[627.944,-180.104],[627.944,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":413,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[641.732,-175.496],[641.732,-199.76],[638.492,-199.76],[638.492,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[645.944,-189.644],[645.944,-192.596],[634.28,-192.596],[634.28,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":414,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[660.272,-175.892],[663.296,-178.088],[661.208,-180.212],[659.138,-178.7],[656.492,-178.196],[653.432,-178.934],[651.38,-181.022],[650.66,-184.172],[651.344,-187.232],[653.288,-189.248],[656.204,-189.968],[658.904,-189.302],[660.632,-187.43],[661.244,-184.496],[662.432,-185.54],[649.724,-185.54],[649.724,-182.84],[664.16,-182.84],[664.304,-183.758],[664.34,-184.532],[663.314,-188.888],[660.452,-191.876],[656.276,-192.956],[651.794,-191.786],[648.626,-188.6],[647.456,-184.064],[648.644,-179.492],[651.866,-176.306],[656.492,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":415,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[678.596,-175.946],[681.08,-178.196],[682.124,-181.472],[682.124,-186.62],[681.062,-189.914],[678.56,-192.146],[675.068,-192.956],[670.856,-191.768],[667.886,-188.564],[666.788,-184.028],[667.886,-179.492],[670.856,-176.306],[675.068,-175.136]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[672.782,-178.934],[670.838,-181.004],[670.136,-184.064],[670.838,-187.106],[672.764,-189.158],[675.608,-189.896],[678.452,-189.14],[680.36,-187.07],[681.044,-184.028],[680.36,-181.022],[678.452,-178.952],[675.608,-178.196]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[684.104,-201.2],[680.828,-201.2],[680.828,-188.42],[681.44,-184.28],[680.828,-180.104],[680.828,-175.496],[684.104,-175.496]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":416,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-819.598,-133.34],[-817.888,-137.156],[-818.554,-139.712],[-820.264,-141.26],[-822.46,-142.178],[-824.674,-142.844],[-826.384,-143.636],[-827.032,-144.968],[-826.294,-146.3],[-824.152,-146.804],[-821.776,-146.3],[-819.976,-144.86],[-817.888,-146.948],[-820.462,-149.054],[-824.044,-149.756],[-827.32,-149.144],[-829.426,-147.398],[-830.164,-144.716],[-829.498,-142.214],[-827.788,-140.72],[-825.574,-139.856],[-823.36,-139.19],[-821.65,-138.326],[-820.984,-136.868],[-821.812,-135.41],[-824.152,-134.888],[-826.888,-135.446],[-829.048,-137.156],[-831.136,-135.068],[-829.282,-133.394],[-826.924,-132.314],[-824.188,-131.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":417,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-802.75,-132.692],[-799.852,-134.816],[-801.976,-136.976],[-803.938,-135.554],[-806.44,-135.068],[-809.32,-135.824],[-811.3,-137.876],[-812.02,-140.864],[-811.3,-143.852],[-809.32,-145.886],[-806.44,-146.624],[-803.956,-146.138],[-802.012,-144.716],[-799.852,-146.876],[-802.768,-149.018],[-806.44,-149.756],[-810.994,-148.586],[-814.198,-145.4],[-815.368,-140.864],[-814.198,-136.346],[-810.994,-133.124],[-806.44,-131.936]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":418,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-785.272,-132.692],[-782.248,-134.888],[-784.336,-137.012],[-786.406,-135.5],[-789.052,-134.996],[-792.112,-135.734],[-794.164,-137.822],[-794.884,-140.972],[-794.2,-144.032],[-792.256,-146.048],[-789.34,-146.768],[-786.64,-146.102],[-784.912,-144.23],[-784.3,-141.296],[-783.112,-142.34],[-795.82,-142.34],[-795.82,-139.64],[-781.384,-139.64],[-781.24,-140.558],[-781.204,-141.332],[-782.23,-145.688],[-785.092,-148.676],[-789.268,-149.756],[-793.75,-148.586],[-796.918,-145.4],[-798.088,-140.864],[-796.9,-136.292],[-793.678,-133.106],[-789.052,-131.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":419,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-762.34,-132.296],[-762.34,-142.916],[-763.204,-146.246],[-765.562,-148.784],[-769,-149.756],[-772.492,-148.874],[-774.904,-146.48],[-775.768,-143.024],[-774.436,-142.268],[-773.86,-144.572],[-772.276,-146.156],[-769.972,-146.732],[-766.822,-145.472],[-765.616,-142.268],[-765.616,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-774.436,-132.296],[-774.436,-149.396],[-777.676,-149.396],[-777.676,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":420,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-747.184,-132.746],[-744.718,-134.996],[-743.692,-138.272],[-743.692,-143.42],[-744.736,-146.714],[-747.202,-148.946],[-750.676,-149.756],[-754.942,-148.568],[-757.93,-145.364],[-759.028,-140.828],[-757.93,-136.292],[-754.942,-133.106],[-750.676,-131.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-753.016,-135.752],[-754.978,-137.822],[-755.68,-140.864],[-754.978,-143.87],[-753.034,-145.94],[-750.172,-146.696],[-747.346,-145.958],[-745.456,-143.888],[-744.772,-140.828],[-746.248,-136.634],[-750.136,-134.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-741.712,-132.296],[-741.712,-149.396],[-744.988,-149.396],[-744.988,-145.22],[-744.376,-141.08],[-744.988,-136.904],[-744.988,-132.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":421,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-733.756,-132.296],[-733.756,-149.396],[-736.996,-149.396],[-736.996,-132.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-732.604,-145.544],[-729.652,-146.696],[-728.14,-146.444],[-726.952,-145.616],[-724.828,-147.812],[-726.772,-149.306],[-729.112,-149.756],[-733.468,-147.812],[-734.98,-142.592],[-733.756,-142.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":422,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-719.284,-132.296],[-719.284,-149.396],[-722.56,-149.396],[-722.56,-132.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-719.428,-153.41],[-718.852,-154.904],[-719.428,-156.362],[-720.904,-156.956],[-722.38,-156.362],[-722.956,-154.904],[-722.38,-153.41],[-720.904,-152.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":423,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-702.166,-133.124],[-698.944,-136.346],[-697.756,-140.9],[-698.944,-145.4],[-702.166,-148.586],[-706.72,-149.756],[-711.22,-148.568],[-714.424,-145.382],[-715.612,-140.9],[-714.424,-136.346],[-711.22,-133.124],[-706.72,-131.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-709.564,-135.824],[-711.544,-137.894],[-712.264,-140.9],[-711.544,-143.852],[-709.564,-145.886],[-706.72,-146.624],[-703.822,-145.886],[-701.842,-143.852],[-701.104,-140.9],[-701.824,-137.894],[-703.804,-135.824],[-706.72,-135.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":424,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-684.13,-133.34],[-682.42,-137.156],[-683.086,-139.712],[-684.796,-141.26],[-686.992,-142.178],[-689.206,-142.844],[-690.916,-143.636],[-691.564,-144.968],[-690.826,-146.3],[-688.684,-146.804],[-686.308,-146.3],[-684.508,-144.86],[-682.42,-146.948],[-684.994,-149.054],[-688.576,-149.756],[-691.852,-149.144],[-693.958,-147.398],[-694.696,-144.716],[-694.03,-142.214],[-692.32,-140.72],[-690.106,-139.856],[-687.892,-139.19],[-686.182,-138.326],[-685.516,-136.868],[-686.344,-135.41],[-688.684,-134.888],[-691.42,-135.446],[-693.58,-137.156],[-695.668,-135.068],[-693.814,-133.394],[-691.456,-132.314],[-688.72,-131.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":425,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-660.568,-132.746],[-658.102,-134.996],[-657.076,-138.272],[-657.076,-143.42],[-658.12,-146.714],[-660.586,-148.946],[-664.06,-149.756],[-668.326,-148.568],[-671.314,-145.364],[-672.412,-140.828],[-671.314,-136.292],[-668.326,-133.106],[-664.06,-131.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-666.4,-135.752],[-668.362,-137.822],[-669.064,-140.864],[-668.362,-143.87],[-666.418,-145.94],[-663.556,-146.696],[-660.73,-145.958],[-658.84,-143.888],[-658.156,-140.828],[-659.632,-136.634],[-663.52,-134.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-655.096,-132.296],[-655.096,-149.396],[-658.372,-149.396],[-658.372,-145.22],[-657.76,-141.08],[-658.372,-136.904],[-658.372,-132.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":426,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-635.044,-132.296],[-635.044,-142.916],[-635.908,-146.246],[-638.266,-148.784],[-641.704,-149.756],[-645.196,-148.874],[-647.608,-146.48],[-648.472,-143.024],[-647.14,-142.268],[-646.564,-144.572],[-644.98,-146.156],[-642.676,-146.732],[-639.526,-145.472],[-638.32,-142.268],[-638.32,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-647.14,-132.296],[-647.14,-149.396],[-650.38,-149.396],[-650.38,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":427,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-619.924,-132.746],[-617.44,-134.996],[-616.396,-138.272],[-616.396,-143.42],[-617.458,-146.714],[-619.96,-148.946],[-623.452,-149.756],[-627.664,-148.568],[-630.634,-145.364],[-631.732,-140.828],[-630.634,-136.292],[-627.664,-133.106],[-623.452,-131.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-625.738,-135.734],[-627.682,-137.804],[-628.384,-140.864],[-627.682,-143.906],[-625.756,-145.958],[-622.912,-146.696],[-620.068,-145.94],[-618.16,-143.87],[-617.476,-140.828],[-618.16,-137.822],[-620.068,-135.752],[-622.912,-134.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-614.416,-158],[-617.692,-158],[-617.692,-145.22],[-617.08,-141.08],[-617.692,-136.904],[-617.692,-132.296],[-614.416,-132.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":428,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-592.222,-133.34],[-590.512,-137.156],[-591.178,-139.712],[-592.888,-141.26],[-595.084,-142.178],[-597.298,-142.844],[-599.008,-143.636],[-599.656,-144.968],[-598.918,-146.3],[-596.776,-146.804],[-594.4,-146.3],[-592.6,-144.86],[-590.512,-146.948],[-593.086,-149.054],[-596.668,-149.756],[-599.944,-149.144],[-602.05,-147.398],[-602.788,-144.716],[-602.122,-142.214],[-600.412,-140.72],[-598.198,-139.856],[-595.984,-139.19],[-594.274,-138.326],[-593.608,-136.868],[-594.436,-135.41],[-596.776,-134.888],[-599.512,-135.446],[-601.672,-137.156],[-603.76,-135.068],[-601.906,-133.394],[-599.548,-132.314],[-596.812,-131.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":429,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-583.636,-132.296],[-583.636,-158],[-586.876,-158],[-586.876,-132.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":430,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-568.12,-132.746],[-565.654,-134.996],[-564.628,-138.272],[-564.628,-143.42],[-565.672,-146.714],[-568.138,-148.946],[-571.612,-149.756],[-575.878,-148.568],[-578.866,-145.364],[-579.964,-140.828],[-578.866,-136.292],[-575.878,-133.106],[-571.612,-131.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-573.952,-135.752],[-575.914,-137.822],[-576.616,-140.864],[-575.914,-143.87],[-573.97,-145.94],[-571.108,-146.696],[-568.282,-145.958],[-566.392,-143.888],[-565.708,-140.828],[-567.184,-136.634],[-571.072,-134.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-562.648,-132.296],[-562.648,-149.396],[-565.924,-149.396],[-565.924,-145.22],[-565.312,-141.08],[-565.924,-136.904],[-565.924,-132.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":431,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-542.596,-132.296],[-542.596,-142.916],[-543.46,-146.246],[-545.818,-148.784],[-549.256,-149.756],[-552.748,-148.874],[-555.16,-146.48],[-556.024,-143.024],[-554.692,-142.268],[-554.116,-144.572],[-552.532,-146.156],[-550.228,-146.732],[-547.078,-145.472],[-545.872,-142.268],[-545.872,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-554.692,-132.296],[-554.692,-149.396],[-557.932,-149.396],[-557.932,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":432,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-527.476,-132.746],[-524.992,-134.996],[-523.948,-138.272],[-523.948,-143.42],[-525.01,-146.714],[-527.512,-148.946],[-531.004,-149.756],[-535.216,-148.568],[-538.186,-145.364],[-539.284,-140.828],[-538.186,-136.292],[-535.216,-133.106],[-531.004,-131.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-533.29,-135.734],[-535.234,-137.804],[-535.936,-140.864],[-535.234,-143.906],[-533.308,-145.958],[-530.464,-146.696],[-527.62,-145.94],[-525.712,-143.87],[-525.028,-140.828],[-525.712,-137.822],[-527.62,-135.752],[-530.464,-134.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-521.968,-158],[-525.244,-158],[-525.244,-145.22],[-524.632,-141.08],[-525.244,-136.904],[-525.244,-132.296],[-521.968,-132.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":433,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-505.552,-132.692],[-502.528,-134.888],[-504.616,-137.012],[-506.686,-135.5],[-509.332,-134.996],[-512.392,-135.734],[-514.444,-137.822],[-515.164,-140.972],[-514.48,-144.032],[-512.536,-146.048],[-509.62,-146.768],[-506.92,-146.102],[-505.192,-144.23],[-504.58,-141.296],[-503.392,-142.34],[-516.1,-142.34],[-516.1,-139.64],[-501.664,-139.64],[-501.52,-140.558],[-501.484,-141.332],[-502.51,-145.688],[-505.372,-148.676],[-509.548,-149.756],[-514.03,-148.586],[-517.198,-145.4],[-518.368,-140.864],[-517.18,-136.292],[-513.958,-133.106],[-509.332,-131.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":434,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-494.716,-132.296],[-494.716,-149.396],[-497.956,-149.396],[-497.956,-132.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-493.564,-145.544],[-490.612,-146.696],[-489.1,-146.444],[-487.912,-145.616],[-485.788,-147.812],[-487.732,-149.306],[-490.072,-149.756],[-494.428,-147.812],[-495.94,-142.592],[-494.716,-142.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":435,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-473.854,-133.34],[-472.144,-137.156],[-472.81,-139.712],[-474.52,-141.26],[-476.716,-142.178],[-478.93,-142.844],[-480.64,-143.636],[-481.288,-144.968],[-480.55,-146.3],[-478.408,-146.804],[-476.032,-146.3],[-474.232,-144.86],[-472.144,-146.948],[-474.718,-149.054],[-478.3,-149.756],[-481.576,-149.144],[-483.682,-147.398],[-484.42,-144.716],[-483.754,-142.214],[-482.044,-140.72],[-479.83,-139.856],[-477.616,-139.19],[-475.906,-138.326],[-475.24,-136.868],[-476.068,-135.41],[-478.408,-134.888],[-481.144,-135.446],[-483.304,-137.156],[-485.392,-135.068],[-483.538,-133.394],[-481.18,-132.314],[-478.444,-131.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":436,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-455.188,-132.296],[-455.188,-156.56],[-458.428,-156.56],[-458.428,-132.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-450.976,-146.444],[-450.976,-149.396],[-462.64,-149.396],[-462.64,-146.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":437,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-436.018,-133.124],[-432.796,-136.346],[-431.608,-140.9],[-432.796,-145.4],[-436.018,-148.586],[-440.572,-149.756],[-445.072,-148.568],[-448.276,-145.382],[-449.464,-140.9],[-448.276,-136.346],[-445.072,-133.124],[-440.572,-131.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-443.416,-135.824],[-445.396,-137.894],[-446.116,-140.9],[-445.396,-143.852],[-443.416,-145.886],[-440.572,-146.624],[-437.674,-145.886],[-435.694,-143.852],[-434.956,-140.9],[-435.676,-137.894],[-437.656,-135.824],[-440.572,-135.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":438,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-409.828,-132.746],[-407.344,-134.996],[-406.3,-138.272],[-406.3,-143.42],[-407.362,-146.714],[-409.864,-148.946],[-413.356,-149.756],[-417.568,-148.568],[-420.538,-145.364],[-421.636,-140.828],[-420.538,-136.292],[-417.568,-133.106],[-413.356,-131.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-415.642,-135.734],[-417.586,-137.804],[-418.288,-140.864],[-417.586,-143.906],[-415.66,-145.958],[-412.816,-146.696],[-409.972,-145.94],[-408.064,-143.87],[-407.38,-140.828],[-408.064,-137.822],[-409.972,-135.752],[-412.816,-134.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-404.32,-158],[-407.596,-158],[-407.596,-145.22],[-406.984,-141.08],[-407.596,-136.904],[-407.596,-132.296],[-404.32,-132.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":439,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-396.328,-132.296],[-396.328,-149.396],[-399.604,-149.396],[-399.604,-132.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-396.472,-153.41],[-395.896,-154.904],[-396.472,-156.362],[-397.948,-156.956],[-399.424,-156.362],[-400,-154.904],[-399.424,-153.41],[-397.948,-152.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":440,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-383.764,-132.296],[-375.916,-149.396],[-379.372,-149.396],[-385.708,-134.96],[-383.62,-134.96],[-389.92,-149.396],[-393.52,-149.396],[-385.672,-132.296]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":441,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-369.868,-132.296],[-369.868,-149.396],[-373.144,-149.396],[-373.144,-132.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-370.012,-153.41],[-369.436,-154.904],[-370.012,-156.362],[-371.488,-156.956],[-372.964,-156.362],[-373.54,-154.904],[-372.964,-153.41],[-371.488,-152.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":442,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-354.352,-132.746],[-351.868,-134.996],[-350.824,-138.272],[-350.824,-143.42],[-351.886,-146.714],[-354.388,-148.946],[-357.88,-149.756],[-362.092,-148.568],[-365.062,-145.364],[-366.16,-140.828],[-365.062,-136.292],[-362.092,-133.106],[-357.88,-131.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-360.166,-135.734],[-362.11,-137.804],[-362.812,-140.864],[-362.11,-143.906],[-360.184,-145.958],[-357.34,-146.696],[-354.496,-145.94],[-352.588,-143.87],[-351.904,-140.828],[-352.588,-137.822],[-354.496,-135.752],[-357.34,-134.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-348.844,-158],[-352.12,-158],[-352.12,-145.22],[-351.508,-141.08],[-352.12,-136.904],[-352.12,-132.296],[-348.844,-132.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":443,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-332.428,-132.692],[-329.404,-134.888],[-331.492,-137.012],[-333.562,-135.5],[-336.208,-134.996],[-339.268,-135.734],[-341.32,-137.822],[-342.04,-140.972],[-341.356,-144.032],[-339.412,-146.048],[-336.496,-146.768],[-333.796,-146.102],[-332.068,-144.23],[-331.456,-141.296],[-330.268,-142.34],[-342.976,-142.34],[-342.976,-139.64],[-328.54,-139.64],[-328.396,-140.558],[-328.36,-141.332],[-329.386,-145.688],[-332.248,-148.676],[-336.424,-149.756],[-340.906,-148.586],[-344.074,-145.4],[-345.244,-140.864],[-344.056,-136.292],[-340.834,-133.106],[-336.208,-131.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":444,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-311.512,-132.296],[-311.512,-156.56],[-314.752,-156.56],[-314.752,-132.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-307.3,-146.444],[-307.3,-149.396],[-318.964,-149.396],[-318.964,-146.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":445,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-288.796,-132.296],[-288.796,-142.916],[-289.66,-146.48],[-292.018,-148.892],[-295.456,-149.756],[-298.948,-148.874],[-301.36,-146.48],[-302.224,-143.024],[-300.892,-142.268],[-300.316,-144.572],[-298.732,-146.156],[-296.428,-146.732],[-293.278,-145.472],[-292.072,-142.268],[-292.072,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-300.892,-132.296],[-300.892,-158],[-304.132,-158],[-304.132,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":446,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-272.704,-132.692],[-269.68,-134.888],[-271.768,-137.012],[-273.838,-135.5],[-276.484,-134.996],[-279.544,-135.734],[-281.596,-137.822],[-282.316,-140.972],[-281.632,-144.032],[-279.688,-146.048],[-276.772,-146.768],[-274.072,-146.102],[-272.344,-144.23],[-271.732,-141.296],[-270.544,-142.34],[-283.252,-142.34],[-283.252,-139.64],[-268.816,-139.64],[-268.672,-140.558],[-268.636,-141.332],[-269.662,-145.688],[-272.524,-148.676],[-276.7,-149.756],[-281.182,-148.586],[-284.35,-145.4],[-285.52,-140.864],[-284.332,-136.292],[-281.11,-133.106],[-276.484,-131.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":447,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-242.32,-132.296],[-242.32,-142.916],[-243.184,-146.246],[-245.542,-148.784],[-248.98,-149.756],[-252.472,-148.874],[-254.884,-146.48],[-255.748,-143.024],[-254.416,-142.268],[-253.84,-144.572],[-252.256,-146.156],[-249.952,-146.732],[-246.802,-145.472],[-245.596,-142.268],[-245.596,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-254.416,-132.296],[-254.416,-149.396],[-257.656,-149.396],[-257.656,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":448,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-227.164,-132.746],[-224.698,-134.996],[-223.672,-138.272],[-223.672,-143.42],[-224.716,-146.714],[-227.182,-148.946],[-230.656,-149.756],[-234.922,-148.568],[-237.91,-145.364],[-239.008,-140.828],[-237.91,-136.292],[-234.922,-133.106],[-230.656,-131.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-232.996,-135.752],[-234.958,-137.822],[-235.66,-140.864],[-234.958,-143.87],[-233.014,-145.94],[-230.152,-146.696],[-227.326,-145.958],[-225.436,-143.888],[-224.752,-140.828],[-226.228,-136.634],[-230.116,-134.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-221.692,-132.296],[-221.692,-149.396],[-224.968,-149.396],[-224.968,-145.22],[-224.356,-141.08],[-224.968,-136.904],[-224.968,-132.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":449,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-211.18,-132.296],[-211.18,-156.56],[-214.42,-156.56],[-214.42,-132.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-206.968,-146.444],[-206.968,-149.396],[-218.632,-149.396],[-218.632,-146.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":450,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-200.524,-132.296],[-200.524,-149.396],[-203.8,-149.396],[-203.8,-132.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-200.668,-153.41],[-200.092,-154.904],[-200.668,-156.362],[-202.144,-156.956],[-203.62,-156.362],[-204.196,-154.904],[-203.62,-153.41],[-202.144,-152.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":451,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-183.406,-133.124],[-180.184,-136.346],[-178.996,-140.9],[-180.184,-145.4],[-183.406,-148.586],[-187.96,-149.756],[-192.46,-148.568],[-195.664,-145.382],[-196.852,-140.9],[-195.664,-136.346],[-192.46,-133.124],[-187.96,-131.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-190.804,-135.824],[-192.784,-137.894],[-193.504,-140.9],[-192.784,-143.852],[-190.804,-145.886],[-187.96,-146.624],[-185.062,-145.886],[-183.082,-143.852],[-182.344,-140.9],[-183.064,-137.894],[-185.044,-135.824],[-187.96,-135.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":452,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-160.06,-132.296],[-160.06,-142.916],[-160.924,-146.246],[-163.282,-148.784],[-166.72,-149.756],[-170.212,-148.874],[-172.624,-146.48],[-173.488,-143.024],[-172.156,-142.268],[-171.58,-144.572],[-169.996,-146.156],[-167.692,-146.732],[-164.542,-145.472],[-163.336,-142.268],[-163.336,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-172.156,-132.296],[-172.156,-149.396],[-175.396,-149.396],[-175.396,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":453,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.264],[0.48,0.468],[0.624,0],[0.456,-0.468],[0,-0.696],[-0.42,-0.42],[-0.504,0],[-0.192,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.6],[0.108,-0.372],[0,-0.696],[-0.48,-0.468],[-0.696,0],[-0.456,0.468],[0,0.624],[0.42,0.42],[0.24,0],[0.192,-0.168],[0,0],[0,0],[0,0]],"v":[[-153.652,-127.328],[-151.24,-131.792],[-150.61,-133.25],[-150.448,-134.204],[-151.168,-135.95],[-152.824,-136.652],[-154.552,-135.95],[-155.236,-134.204],[-154.606,-132.638],[-153.22,-132.008],[-152.572,-132.26],[-152.104,-132.908],[-153.256,-132.62],[-155.488,-128.336]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":454,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-131.548,-132.296],[-126.58,-145.184],[-127.768,-145.184],[-122.836,-132.296],[-120.928,-132.296],[-114.196,-149.396],[-117.58,-149.396],[-122.476,-136.076],[-121.396,-136.076],[-126.256,-149.396],[-128.128,-149.396],[-132.988,-136.076],[-131.908,-136.076],[-136.804,-149.396],[-140.188,-149.396],[-133.456,-132.296]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":455,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-95.98,-132.296],[-95.98,-142.916],[-96.844,-146.48],[-99.202,-148.892],[-102.64,-149.756],[-106.132,-148.874],[-108.544,-146.48],[-109.408,-143.024],[-108.076,-142.268],[-107.5,-144.572],[-105.916,-146.156],[-103.612,-146.732],[-100.462,-145.472],[-99.256,-142.268],[-99.256,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-108.076,-132.296],[-108.076,-158],[-111.316,-158],[-111.316,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":456,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-88.312,-132.296],[-88.312,-149.396],[-91.588,-149.396],[-91.588,-132.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-88.456,-153.41],[-87.88,-154.904],[-88.456,-156.362],[-89.932,-156.956],[-91.408,-156.362],[-91.984,-154.904],[-91.408,-153.41],[-89.932,-152.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":457,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-72.022,-132.692],[-69.124,-134.816],[-71.248,-136.976],[-73.21,-135.554],[-75.712,-135.068],[-78.592,-135.824],[-80.572,-137.876],[-81.292,-140.864],[-80.572,-143.852],[-78.592,-145.886],[-75.712,-146.624],[-73.228,-146.138],[-71.284,-144.716],[-69.124,-146.876],[-72.04,-149.018],[-75.712,-149.756],[-80.266,-148.586],[-83.47,-145.4],[-84.64,-140.864],[-83.47,-136.346],[-80.266,-133.124],[-75.712,-131.936]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":458,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-50.584,-132.296],[-50.584,-142.916],[-51.448,-146.48],[-53.806,-148.892],[-57.244,-149.756],[-60.736,-148.874],[-63.148,-146.48],[-64.012,-143.024],[-62.68,-142.268],[-62.104,-144.572],[-60.52,-146.156],[-58.216,-146.732],[-55.066,-145.472],[-53.86,-142.268],[-53.86,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-62.68,-132.296],[-62.68,-158],[-65.92,-158],[-65.92,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":459,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-31.972,-132.296],[-27.004,-145.184],[-28.192,-145.184],[-23.26,-132.296],[-21.352,-132.296],[-14.62,-149.396],[-18.004,-149.396],[-22.9,-136.076],[-21.82,-136.076],[-26.68,-149.396],[-28.552,-149.396],[-33.412,-136.076],[-32.332,-136.076],[-37.228,-149.396],[-40.612,-149.396],[-33.88,-132.296]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":460,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-8.752,-132.296],[-8.752,-149.396],[-12.028,-149.396],[-12.028,-132.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-8.896,-153.41],[-8.32,-154.904],[-8.896,-156.362],[-10.372,-156.956],[-11.848,-156.362],[-12.424,-154.904],[-11.848,-153.41],[-10.372,-152.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":461,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.724,-132.296],[-0.724,-158],[-3.964,-158],[-3.964,-132.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":462,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7.268,-132.296],[7.268,-158],[4.028,-158],[4.028,-132.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":463,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[30.974,-132.692],[33.872,-134.816],[31.748,-136.976],[29.786,-135.554],[27.284,-135.068],[24.404,-135.824],[22.424,-137.876],[21.704,-140.864],[22.424,-143.852],[24.404,-145.886],[27.284,-146.624],[29.768,-146.138],[31.712,-144.716],[33.872,-146.876],[30.956,-149.018],[27.284,-149.756],[22.73,-148.586],[19.526,-145.4],[18.356,-140.864],[19.526,-136.346],[22.73,-133.124],[27.284,-131.936]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":464,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[47.516,-132.746],[49.982,-134.996],[51.008,-138.272],[51.008,-143.42],[49.964,-146.714],[47.498,-148.946],[44.024,-149.756],[39.758,-148.568],[36.77,-145.364],[35.672,-140.828],[36.77,-136.292],[39.758,-133.106],[44.024,-131.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[41.684,-135.752],[39.722,-137.822],[39.02,-140.864],[39.722,-143.87],[41.666,-145.94],[44.528,-146.696],[47.354,-145.958],[49.244,-143.888],[49.928,-140.828],[48.452,-136.634],[44.564,-134.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[52.988,-132.296],[52.988,-149.396],[49.712,-149.396],[49.712,-145.22],[50.324,-141.08],[49.712,-136.904],[49.712,-132.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":465,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[68.396,-132.926],[70.988,-135.536],[71.924,-139.46],[71.924,-149.396],[68.684,-149.396],[68.684,-139.604],[67.604,-136.274],[64.616,-135.068],[62.42,-135.608],[60.998,-137.174],[60.512,-139.604],[60.512,-149.396],[57.272,-149.396],[57.272,-139.46],[58.208,-135.536],[60.818,-132.926],[64.616,-132.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":466,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[86.306,-133.34],[88.016,-137.156],[87.35,-139.712],[85.64,-141.26],[83.444,-142.178],[81.23,-142.844],[79.52,-143.636],[78.872,-144.968],[79.61,-146.3],[81.752,-146.804],[84.128,-146.3],[85.928,-144.86],[88.016,-146.948],[85.442,-149.054],[81.86,-149.756],[78.584,-149.144],[76.478,-147.398],[75.74,-144.716],[76.406,-142.214],[78.116,-140.72],[80.33,-139.856],[82.544,-139.19],[84.254,-138.326],[84.92,-136.868],[84.092,-135.41],[81.752,-134.888],[79.016,-135.446],[76.856,-137.156],[74.768,-135.068],[76.622,-133.394],[78.98,-132.314],[81.716,-131.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":467,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[103.352,-132.692],[106.376,-134.888],[104.288,-137.012],[102.218,-135.5],[99.572,-134.996],[96.512,-135.734],[94.46,-137.822],[93.74,-140.972],[94.424,-144.032],[96.368,-146.048],[99.284,-146.768],[101.984,-146.102],[103.712,-144.23],[104.324,-141.296],[105.512,-142.34],[92.804,-142.34],[92.804,-139.64],[107.24,-139.64],[107.384,-140.558],[107.42,-141.332],[106.394,-145.688],[103.532,-148.676],[99.356,-149.756],[94.874,-148.586],[91.706,-145.4],[90.536,-140.864],[91.724,-136.292],[94.946,-133.106],[99.572,-131.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":468,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[121.64,-132.296],[121.64,-149.396],[118.4,-149.396],[118.4,-132.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[133.196,-132.296],[133.196,-143.312],[132.35,-146.732],[130.046,-148.964],[126.788,-149.756],[123.476,-148.946],[121.154,-146.696],[120.308,-143.312],[121.64,-142.628],[122.216,-144.824],[123.728,-146.228],[125.852,-146.732],[128.786,-145.634],[129.956,-142.628],[129.956,-132.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[144.788,-132.296],[144.788,-143.276],[143.906,-146.732],[141.548,-148.964],[138.2,-149.756],[134.888,-148.946],[132.422,-146.714],[131.36,-143.312],[133.196,-142.628],[133.772,-144.824],[135.302,-146.228],[137.444,-146.732],[140.342,-145.634],[141.512,-142.628],[141.512,-132.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":469,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[161.51,-133.124],[164.732,-136.346],[165.92,-140.9],[164.732,-145.4],[161.51,-148.586],[156.956,-149.756],[152.456,-148.568],[149.252,-145.382],[148.064,-140.9],[149.252,-136.346],[152.456,-133.124],[156.956,-131.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[154.112,-135.824],[152.132,-137.894],[151.412,-140.9],[152.132,-143.852],[154.112,-145.886],[156.956,-146.624],[159.854,-145.886],[161.834,-143.852],[162.572,-140.9],[161.852,-137.894],[159.872,-135.824],[156.956,-135.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":470,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[172.76,-132.296],[172.76,-149.396],[169.52,-149.396],[169.52,-132.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[173.912,-145.544],[176.864,-146.696],[178.376,-146.444],[179.564,-145.616],[181.688,-147.812],[179.744,-149.306],[177.404,-149.756],[173.048,-147.812],[171.536,-142.592],[172.76,-142.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":471,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[195.116,-132.692],[198.14,-134.888],[196.052,-137.012],[193.982,-135.5],[191.336,-134.996],[188.276,-135.734],[186.224,-137.822],[185.504,-140.972],[186.188,-144.032],[188.132,-146.048],[191.048,-146.768],[193.748,-146.102],[195.476,-144.23],[196.088,-141.296],[197.276,-142.34],[184.568,-142.34],[184.568,-139.64],[199.004,-139.64],[199.148,-140.558],[199.184,-141.332],[198.158,-145.688],[195.296,-148.676],[191.12,-149.756],[186.638,-148.586],[183.47,-145.4],[182.3,-140.864],[183.488,-136.292],[186.71,-133.106],[191.336,-131.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":472,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[221.666,-132.692],[224.564,-134.816],[222.44,-136.976],[220.478,-135.554],[217.976,-135.068],[215.096,-135.824],[213.116,-137.876],[212.396,-140.864],[213.116,-143.852],[215.096,-145.886],[217.976,-146.624],[220.46,-146.138],[222.404,-144.716],[224.564,-146.876],[221.648,-149.018],[217.976,-149.756],[213.422,-148.586],[210.218,-145.4],[209.048,-140.864],[210.218,-136.346],[213.422,-133.124],[217.976,-131.936]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":473,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[243.104,-132.296],[243.104,-142.916],[242.24,-146.48],[239.882,-148.892],[236.444,-149.756],[232.952,-148.874],[230.54,-146.48],[229.676,-143.024],[231.008,-142.268],[231.584,-144.572],[233.168,-146.156],[235.472,-146.732],[238.622,-145.472],[239.828,-142.268],[239.828,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[231.008,-132.296],[231.008,-158],[227.768,-158],[227.768,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":474,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[258.26,-132.746],[260.726,-134.996],[261.752,-138.272],[261.752,-143.42],[260.708,-146.714],[258.242,-148.946],[254.768,-149.756],[250.502,-148.568],[247.514,-145.364],[246.416,-140.828],[247.514,-136.292],[250.502,-133.106],[254.768,-131.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[252.428,-135.752],[250.466,-137.822],[249.764,-140.864],[250.466,-143.87],[252.41,-145.94],[255.272,-146.696],[258.098,-145.958],[259.988,-143.888],[260.672,-140.828],[259.196,-136.634],[255.308,-134.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[263.732,-132.296],[263.732,-149.396],[260.456,-149.396],[260.456,-145.22],[261.068,-141.08],[260.456,-136.904],[260.456,-132.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":475,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[280.778,-133.124],[284,-136.346],[285.188,-140.9],[284,-145.4],[280.778,-148.586],[276.224,-149.756],[271.724,-148.568],[268.52,-145.382],[267.332,-140.9],[268.52,-136.346],[271.724,-133.124],[276.224,-131.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[273.38,-135.824],[271.4,-137.894],[270.68,-140.9],[271.4,-143.852],[273.38,-145.886],[276.224,-146.624],[279.122,-145.886],[281.102,-143.852],[281.84,-140.9],[281.12,-137.894],[279.14,-135.824],[276.224,-135.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":476,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[298.814,-133.34],[300.524,-137.156],[299.858,-139.712],[298.148,-141.26],[295.952,-142.178],[293.738,-142.844],[292.028,-143.636],[291.38,-144.968],[292.118,-146.3],[294.26,-146.804],[296.636,-146.3],[298.436,-144.86],[300.524,-146.948],[297.95,-149.054],[294.368,-149.756],[291.092,-149.144],[288.986,-147.398],[288.248,-144.716],[288.914,-142.214],[290.624,-140.72],[292.838,-139.856],[295.052,-139.19],[296.762,-138.326],[297.428,-136.868],[296.6,-135.41],[294.26,-134.888],[291.524,-135.446],[289.364,-137.156],[287.276,-135.068],[289.13,-133.394],[291.488,-132.314],[294.224,-131.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":477,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[322.376,-132.746],[324.842,-134.996],[325.868,-138.272],[325.868,-143.42],[324.824,-146.714],[322.358,-148.946],[318.884,-149.756],[314.618,-148.568],[311.63,-145.364],[310.532,-140.828],[311.63,-136.292],[314.618,-133.106],[318.884,-131.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[316.544,-135.752],[314.582,-137.822],[313.88,-140.864],[314.582,-143.87],[316.526,-145.94],[319.388,-146.696],[322.214,-145.958],[324.104,-143.888],[324.788,-140.828],[323.312,-136.634],[319.424,-134.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[327.848,-132.296],[327.848,-149.396],[324.572,-149.396],[324.572,-145.22],[325.184,-141.08],[324.572,-136.904],[324.572,-132.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":478,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[347.9,-132.296],[347.9,-142.916],[347.036,-146.246],[344.678,-148.784],[341.24,-149.756],[337.748,-148.874],[335.336,-146.48],[334.472,-143.024],[335.804,-142.268],[336.38,-144.572],[337.964,-146.156],[340.268,-146.732],[343.418,-145.472],[344.624,-142.268],[344.624,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[335.804,-132.296],[335.804,-149.396],[332.564,-149.396],[332.564,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":479,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[363.02,-132.746],[365.504,-134.996],[366.548,-138.272],[366.548,-143.42],[365.486,-146.714],[362.984,-148.946],[359.492,-149.756],[355.28,-148.568],[352.31,-145.364],[351.212,-140.828],[352.31,-136.292],[355.28,-133.106],[359.492,-131.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[357.206,-135.734],[355.262,-137.804],[354.56,-140.864],[355.262,-143.906],[357.188,-145.958],[360.032,-146.696],[362.876,-145.94],[364.784,-143.87],[365.468,-140.828],[364.784,-137.822],[362.876,-135.752],[360.032,-134.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[368.528,-158],[365.252,-158],[365.252,-145.22],[365.864,-141.08],[365.252,-136.904],[365.252,-132.296],[368.528,-132.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":480,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[392.198,-132.692],[395.096,-134.816],[392.972,-136.976],[391.01,-135.554],[388.508,-135.068],[385.628,-135.824],[383.648,-137.876],[382.928,-140.864],[383.648,-143.852],[385.628,-145.886],[388.508,-146.624],[390.992,-146.138],[392.936,-144.716],[395.096,-146.876],[392.18,-149.018],[388.508,-149.756],[383.954,-148.586],[380.75,-145.4],[379.58,-140.864],[380.75,-136.346],[383.954,-133.124],[388.508,-131.936]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":481,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[410.306,-133.124],[413.528,-136.346],[414.716,-140.9],[413.528,-145.4],[410.306,-148.586],[405.752,-149.756],[401.252,-148.568],[398.048,-145.382],[396.86,-140.9],[398.048,-136.346],[401.252,-133.124],[405.752,-131.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[402.908,-135.824],[400.928,-137.894],[400.208,-140.9],[400.928,-143.852],[402.908,-145.886],[405.752,-146.624],[408.65,-145.886],[410.63,-143.852],[411.368,-140.9],[410.648,-137.894],[408.668,-135.824],[405.752,-135.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":482,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[433.652,-132.296],[433.652,-142.916],[432.788,-146.246],[430.43,-148.784],[426.992,-149.756],[423.5,-148.874],[421.088,-146.48],[420.224,-143.024],[421.556,-142.268],[422.132,-144.572],[423.716,-146.156],[426.02,-146.732],[429.17,-145.472],[430.376,-142.268],[430.376,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[421.556,-132.296],[421.556,-149.396],[418.316,-149.396],[418.316,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":483,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[443.516,-132.296],[443.516,-151.952],[444.362,-154.418],[446.756,-155.3],[448.16,-155.048],[449.204,-154.292],[451.328,-156.38],[449.348,-157.856],[446.792,-158.36],[443.372,-157.532],[441.068,-155.264],[440.24,-151.952],[440.24,-132.296]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[448.952,-146.444],[448.952,-149.396],[436.064,-149.396],[436.064,-146.444]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":484,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[462.884,-132.926],[465.476,-135.536],[466.412,-139.46],[466.412,-149.396],[463.172,-149.396],[463.172,-139.604],[462.092,-136.274],[459.104,-135.068],[456.908,-135.608],[455.486,-137.174],[455,-139.604],[455,-149.396],[451.76,-149.396],[451.76,-139.46],[452.696,-135.536],[455.306,-132.926],[459.104,-132.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":485,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[480.794,-133.34],[482.504,-137.156],[481.838,-139.712],[480.128,-141.26],[477.932,-142.178],[475.718,-142.844],[474.008,-143.636],[473.36,-144.968],[474.098,-146.3],[476.24,-146.804],[478.616,-146.3],[480.416,-144.86],[482.504,-146.948],[479.93,-149.054],[476.348,-149.756],[473.072,-149.144],[470.966,-147.398],[470.228,-144.716],[470.894,-142.214],[472.604,-140.72],[474.818,-139.856],[477.032,-139.19],[478.742,-138.326],[479.408,-136.868],[478.58,-135.41],[476.24,-134.888],[473.504,-135.446],[471.344,-137.156],[469.256,-135.068],[471.11,-133.394],[473.468,-132.314],[476.204,-131.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":486,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[489.416,-132.296],[489.416,-149.396],[486.14,-149.396],[486.14,-132.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[489.272,-153.41],[489.848,-154.904],[489.272,-156.362],[487.796,-156.956],[486.32,-156.362],[485.744,-154.904],[486.32,-153.41],[487.796,-152.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":487,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[506.534,-133.124],[509.756,-136.346],[510.944,-140.9],[509.756,-145.4],[506.534,-148.586],[501.98,-149.756],[497.48,-148.568],[494.276,-145.382],[493.088,-140.9],[494.276,-136.346],[497.48,-133.124],[501.98,-131.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[499.136,-135.824],[497.156,-137.894],[496.436,-140.9],[497.156,-143.852],[499.136,-145.886],[501.98,-146.624],[504.878,-145.886],[506.858,-143.852],[507.596,-140.9],[506.876,-137.894],[504.896,-135.824],[501.98,-135.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":488,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[529.88,-132.296],[529.88,-142.916],[529.016,-146.246],[526.658,-148.784],[523.22,-149.756],[519.728,-148.874],[517.316,-146.48],[516.452,-143.024],[517.784,-142.268],[518.36,-144.572],[519.944,-146.156],[522.248,-146.732],[525.398,-145.472],[526.604,-142.268],[526.604,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[517.784,-132.296],[517.784,-149.396],[514.544,-149.396],[514.544,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":489,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[547.592,-132.296],[547.592,-156.56],[544.352,-156.56],[544.352,-132.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[551.804,-146.444],[551.804,-149.396],[540.14,-149.396],[540.14,-146.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":490,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[566.762,-133.124],[569.984,-136.346],[571.172,-140.9],[569.984,-145.4],[566.762,-148.586],[562.208,-149.756],[557.708,-148.568],[554.504,-145.382],[553.316,-140.9],[554.504,-136.346],[557.708,-133.124],[562.208,-131.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[559.364,-135.824],[557.384,-137.894],[556.664,-140.9],[557.384,-143.852],[559.364,-145.886],[562.208,-146.624],[565.106,-145.886],[567.086,-143.852],[567.824,-140.9],[567.104,-137.894],[565.124,-135.824],[562.208,-135.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":491,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[593.726,-132.692],[596.624,-134.816],[594.5,-136.976],[592.538,-135.554],[590.036,-135.068],[587.156,-135.824],[585.176,-137.876],[584.456,-140.864],[585.176,-143.852],[587.156,-145.886],[590.036,-146.624],[592.52,-146.138],[594.464,-144.716],[596.624,-146.876],[593.708,-149.018],[590.036,-149.756],[585.482,-148.586],[582.278,-145.4],[581.108,-140.864],[582.278,-136.346],[585.482,-133.124],[590.036,-131.936]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":492,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[603.104,-132.296],[603.104,-149.396],[599.828,-149.396],[599.828,-132.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[602.96,-153.41],[603.536,-154.904],[602.96,-156.362],[601.484,-156.956],[600.008,-156.362],[599.432,-154.904],[600.008,-153.41],[601.484,-152.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":493,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[613.76,-132.296],[613.76,-156.56],[610.52,-156.56],[610.52,-132.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[617.972,-146.444],[617.972,-149.396],[606.308,-149.396],[606.308,-146.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":494,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[624.416,-132.296],[624.416,-149.396],[621.14,-149.396],[621.14,-132.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[624.272,-153.41],[624.848,-154.904],[624.272,-156.362],[622.796,-156.956],[621.32,-156.362],[620.744,-154.904],[621.32,-153.41],[622.796,-152.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":495,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[631.652,-134.06],[641.804,-147.632],[637.988,-147.632],[627.8,-134.06]],"c":true},"ix":2},"nm":"z","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[641.588,-132.296],[641.588,-135.248],[630.716,-135.248],[627.8,-134.06],[627.8,-132.296]],"c":true},"ix":2},"nm":"z","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[638.816,-146.444],[641.804,-147.632],[641.804,-149.396],[628.448,-149.396],[628.448,-146.444]],"c":true},"ix":2},"nm":"z","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"z","np":6,"cix":2,"bm":0,"ix":496,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[656.672,-132.692],[659.696,-134.888],[657.608,-137.012],[655.538,-135.5],[652.892,-134.996],[649.832,-135.734],[647.78,-137.822],[647.06,-140.972],[647.744,-144.032],[649.688,-146.048],[652.604,-146.768],[655.304,-146.102],[657.032,-144.23],[657.644,-141.296],[658.832,-142.34],[646.124,-142.34],[646.124,-139.64],[660.56,-139.64],[660.704,-140.558],[660.74,-141.332],[659.714,-145.688],[656.852,-148.676],[652.676,-149.756],[648.194,-148.586],[645.026,-145.4],[643.856,-140.864],[645.044,-136.292],[648.266,-133.106],[652.892,-131.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":497,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[679.604,-132.296],[679.604,-142.916],[678.74,-146.246],[676.382,-148.784],[672.944,-149.756],[669.452,-148.874],[667.04,-146.48],[666.176,-143.024],[667.508,-142.268],[668.084,-144.572],[669.668,-146.156],[671.972,-146.732],[675.122,-145.472],[676.328,-142.268],[676.328,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[667.508,-132.296],[667.508,-149.396],[664.268,-149.396],[664.268,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":498,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[694.022,-133.34],[695.732,-137.156],[695.066,-139.712],[693.356,-141.26],[691.16,-142.178],[688.946,-142.844],[687.236,-143.636],[686.588,-144.968],[687.326,-146.3],[689.468,-146.804],[691.844,-146.3],[693.644,-144.86],[695.732,-146.948],[693.158,-149.054],[689.576,-149.756],[686.3,-149.144],[684.194,-147.398],[683.456,-144.716],[684.122,-142.214],[685.832,-140.72],[688.046,-139.856],[690.26,-139.19],[691.97,-138.326],[692.636,-136.868],[691.808,-135.41],[689.468,-134.888],[686.732,-135.446],[684.572,-137.156],[682.484,-135.068],[684.338,-133.394],[686.696,-132.314],[689.432,-131.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":499,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.924,2.352],[0,2.904],[-0.924,2.352],[-1.704,1.488],[0,0],[0.936,-1.62],[0.504,-1.92],[0,-2.064],[-0.504,-1.92],[-0.936,-1.62],[-1.32,-1.104]],"o":[[-1.704,-1.512],[-0.924,-2.352],[0,-2.928],[0.924,-2.352],[0,0],[-1.32,1.104],[-0.936,1.62],[-0.504,1.92],[0,2.064],[0.504,1.92],[0.936,1.62],[0,0]],"v":[[714.272,-129.812],[710.33,-135.608],[708.944,-143.492],[710.33,-151.412],[714.272,-157.172],[712.4,-158.864],[709.016,-154.778],[706.856,-149.468],[706.1,-143.492],[706.856,-137.516],[709.016,-132.206],[712.4,-128.12]],"c":true},"ix":2},"nm":"(","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"(","np":3,"cix":2,"bm":0,"ix":500,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[723.956,-132.152],[731.948,-149.396],[728.348,-149.396],[722.552,-135.896],[723.704,-135.896],[718.196,-149.396],[714.596,-149.396],[722.012,-132.152]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[720.716,-125.132],[723.956,-132.152],[722.12,-135.464],[717.116,-125.132]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":501,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[745.664,-132.692],[748.688,-134.888],[746.6,-137.012],[744.53,-135.5],[741.884,-134.996],[738.824,-135.734],[736.772,-137.822],[736.052,-140.972],[736.736,-144.032],[738.68,-146.048],[741.596,-146.768],[744.296,-146.102],[746.024,-144.23],[746.636,-141.296],[747.824,-142.34],[735.116,-142.34],[735.116,-139.64],[749.552,-139.64],[749.696,-140.558],[749.732,-141.332],[748.706,-145.688],[745.844,-148.676],[741.668,-149.756],[737.186,-148.586],[734.018,-145.4],[732.848,-140.864],[734.036,-136.292],[737.258,-133.106],[741.884,-131.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":502,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[763.286,-133.34],[764.996,-137.156],[764.33,-139.712],[762.62,-141.26],[760.424,-142.178],[758.21,-142.844],[756.5,-143.636],[755.852,-144.968],[756.59,-146.3],[758.732,-146.804],[761.108,-146.3],[762.908,-144.86],[764.996,-146.948],[762.422,-149.054],[758.84,-149.756],[755.564,-149.144],[753.458,-147.398],[752.72,-144.716],[753.386,-142.214],[755.096,-140.72],[757.31,-139.856],[759.524,-139.19],[761.234,-138.326],[761.9,-136.868],[761.072,-135.41],[758.732,-134.888],[755.996,-135.446],[753.836,-137.156],[751.748,-135.068],[753.602,-133.394],[755.96,-132.314],[758.696,-131.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":503,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.264],[0.48,0.468],[0.624,0],[0.456,-0.468],[0,-0.696],[-0.42,-0.42],[-0.504,0],[-0.192,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.6],[0.108,-0.372],[0,-0.696],[-0.48,-0.468],[-0.696,0],[-0.456,0.468],[0,0.624],[0.42,0.42],[0.24,0],[0.192,-0.168],[0,0],[0,0],[0,0]],"v":[[770.648,-127.328],[773.06,-131.792],[773.69,-133.25],[773.852,-134.204],[773.132,-135.95],[771.476,-136.652],[769.748,-135.95],[769.064,-134.204],[769.694,-132.638],[771.08,-132.008],[771.728,-132.26],[772.196,-132.908],[771.044,-132.62],[768.812,-128.336]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":504,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[789.944,-132.296],[789.944,-157.28],[786.56,-157.28],[786.56,-132.296]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":505,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.288],[0.48,0.48],[0.624,0],[0.468,-0.48],[0,-0.672],[-0.42,-0.408],[-0.504,0],[-0.18,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.576],[0.108,-0.372],[0,-0.672],[-0.48,-0.48],[-0.672,0],[-0.468,0.48],[0,0.648],[0.42,0.408],[0.264,0],[0.18,-0.168],[0,0],[0,0],[0,0]],"v":[[796.856,-148.316],[799.232,-152.78],[799.862,-154.202],[800.024,-155.192],[799.304,-156.92],[797.648,-157.64],[795.938,-156.92],[795.236,-155.192],[795.866,-153.608],[797.252,-152.996],[797.918,-153.248],[798.368,-153.896],[797.216,-153.608],[794.984,-149.324]],"c":true},"ix":2},"nm":"’","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"’","np":3,"cix":2,"bm":0,"ix":506,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[806.036,-132.296],[806.036,-149.396],[802.796,-149.396],[802.796,-132.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[817.592,-132.296],[817.592,-143.312],[816.746,-146.732],[814.442,-148.964],[811.184,-149.756],[807.872,-148.946],[805.55,-146.696],[804.704,-143.312],[806.036,-142.628],[806.612,-144.824],[808.124,-146.228],[810.248,-146.732],[813.182,-145.634],[814.352,-142.628],[814.352,-132.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[829.184,-132.296],[829.184,-143.276],[828.302,-146.732],[825.944,-148.964],[822.596,-149.756],[819.284,-148.946],[816.818,-146.714],[815.756,-143.312],[817.592,-142.628],[818.168,-144.824],[819.698,-146.228],[821.84,-146.732],[824.738,-145.634],[825.908,-142.628],[825.908,-132.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":507,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-814.288,-89.096],[-814.288,-99.716],[-815.152,-103.046],[-817.51,-105.584],[-820.948,-106.556],[-824.44,-105.674],[-826.852,-103.28],[-827.716,-99.824],[-826.384,-99.068],[-825.808,-101.372],[-824.224,-102.956],[-821.92,-103.532],[-818.77,-102.272],[-817.564,-99.068],[-817.564,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-826.384,-89.096],[-826.384,-106.196],[-829.624,-106.196],[-829.624,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":508,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-797.566,-89.924],[-794.344,-93.146],[-793.156,-97.7],[-794.344,-102.2],[-797.566,-105.386],[-802.12,-106.556],[-806.62,-105.368],[-809.824,-102.182],[-811.012,-97.7],[-809.824,-93.146],[-806.62,-89.924],[-802.12,-88.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-804.964,-92.624],[-806.944,-94.694],[-807.664,-97.7],[-806.944,-100.652],[-804.964,-102.686],[-802.12,-103.424],[-799.222,-102.686],[-797.242,-100.652],[-796.504,-97.7],[-797.224,-94.694],[-799.204,-92.624],[-802.12,-91.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":509,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-784.228,-89.096],[-784.228,-113.36],[-787.468,-113.36],[-787.468,-89.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-780.016,-103.244],[-780.016,-106.196],[-791.68,-106.196],[-791.68,-103.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":510,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-754.276,-89.096],[-763.276,-98.852],[-763.42,-96.98],[-754.6,-106.196],[-758.56,-106.196],[-766.444,-97.844],[-758.452,-89.096]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-766.156,-89.096],[-766.156,-114.8],[-769.396,-114.8],[-769.396,-89.096]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"k","np":5,"cix":2,"bm":0,"ix":511,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-748.84,-89.096],[-748.84,-106.196],[-752.116,-106.196],[-752.116,-89.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-748.984,-110.21],[-748.408,-111.704],[-748.984,-113.162],[-750.46,-113.756],[-751.936,-113.162],[-752.512,-111.704],[-751.936,-110.21],[-750.46,-109.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":512,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-733.324,-89.546],[-730.84,-91.796],[-729.796,-95.072],[-729.796,-100.22],[-730.858,-103.514],[-733.36,-105.746],[-736.852,-106.556],[-741.064,-105.368],[-744.034,-102.164],[-745.132,-97.628],[-744.034,-93.092],[-741.064,-89.906],[-736.852,-88.736]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-739.138,-92.534],[-741.082,-94.604],[-741.784,-97.664],[-741.082,-100.706],[-739.156,-102.758],[-736.312,-103.496],[-733.468,-102.74],[-731.56,-100.67],[-730.876,-97.628],[-731.56,-94.622],[-733.468,-92.552],[-736.312,-91.796]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-727.816,-114.8],[-731.092,-114.8],[-731.092,-102.02],[-730.48,-97.88],[-731.092,-93.704],[-731.092,-89.096],[-727.816,-89.096]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":513,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-712.372,-89.546],[-709.888,-91.796],[-708.844,-95.072],[-708.844,-100.22],[-709.906,-103.514],[-712.408,-105.746],[-715.9,-106.556],[-720.112,-105.368],[-723.082,-102.164],[-724.18,-97.628],[-723.082,-93.092],[-720.112,-89.906],[-715.9,-88.736]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-718.186,-92.534],[-720.13,-94.604],[-720.832,-97.664],[-720.13,-100.706],[-718.204,-102.758],[-715.36,-103.496],[-712.516,-102.74],[-710.608,-100.67],[-709.924,-97.628],[-710.608,-94.622],[-712.516,-92.552],[-715.36,-91.796]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-706.864,-114.8],[-710.14,-114.8],[-710.14,-102.02],[-709.528,-97.88],[-710.14,-93.704],[-710.14,-89.096],[-706.864,-89.096]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":514,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-698.872,-89.096],[-698.872,-106.196],[-702.148,-106.196],[-702.148,-89.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-699.016,-110.21],[-698.44,-111.704],[-699.016,-113.162],[-700.492,-113.756],[-701.968,-113.162],[-702.544,-111.704],[-701.968,-110.21],[-700.492,-109.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":515,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-678.748,-89.096],[-678.748,-99.716],[-679.612,-103.046],[-681.97,-105.584],[-685.408,-106.556],[-688.9,-105.674],[-691.312,-103.28],[-692.176,-99.824],[-690.844,-99.068],[-690.268,-101.372],[-688.684,-102.956],[-686.38,-103.532],[-683.23,-102.272],[-682.024,-99.068],[-682.024,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-690.844,-89.096],[-690.844,-106.196],[-694.084,-106.196],[-694.084,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":516,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-662.566,-82.598],[-659.398,-85.478],[-658.264,-89.78],[-658.264,-106.196],[-661.504,-106.196],[-661.504,-101.696],[-660.928,-97.88],[-661.504,-94.028],[-661.504,-89.78],[-663.052,-86.054],[-667.192,-84.668],[-670.612,-85.37],[-673.096,-87.404],[-675.22,-85.28],[-671.944,-82.544],[-667.264,-81.572]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-663.736,-90.176],[-661.27,-92.39],[-660.244,-95.684],[-660.244,-100.22],[-661.252,-103.55],[-663.718,-105.764],[-667.3,-106.556],[-671.476,-105.422],[-674.41,-102.362],[-675.472,-97.988],[-674.392,-93.578],[-671.458,-90.5],[-667.264,-89.384]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-669.478,-93.146],[-671.422,-95.108],[-672.124,-97.988],[-671.422,-100.85],[-669.496,-102.794],[-666.652,-103.496],[-663.862,-102.794],[-661.99,-100.85],[-661.324,-97.952],[-661.99,-95.054],[-663.844,-93.128],[-666.652,-92.444]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":517,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.444,0.468],[0,0.648],[0.444,0.444],[0.672,0],[0.432,-0.444],[0,-0.672],[-0.432,-0.468],[-0.696,0]],"o":[[0.444,-0.468],[0,-0.672],[-0.444,-0.444],[-0.696,0],[-0.432,0.444],[0,0.648],[0.432,0.468],[0.672,0]],"v":[[-649.03,-89.438],[-648.364,-91.112],[-649.03,-92.786],[-650.704,-93.452],[-652.396,-92.786],[-653.044,-91.112],[-652.396,-89.438],[-650.704,-88.736]],"c":true},"ix":2},"nm":".","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":".","np":3,"cix":2,"bm":0,"ix":518,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-625.648,-89.096],[-625.648,-113.36],[-629.068,-113.36],[-629.068,-89.096]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-617.188,-110.984],[-617.188,-114.08],[-637.528,-114.08],[-637.528,-110.984]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":519,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-598.396,-89.096],[-598.396,-99.716],[-599.26,-103.28],[-601.618,-105.692],[-605.056,-106.556],[-608.548,-105.674],[-610.96,-103.28],[-611.824,-99.824],[-610.492,-99.068],[-609.916,-101.372],[-608.332,-102.956],[-606.028,-103.532],[-602.878,-102.272],[-601.672,-99.068],[-601.672,-89.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-610.492,-89.096],[-610.492,-114.8],[-613.732,-114.8],[-613.732,-89.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":520,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-590.728,-89.096],[-590.728,-106.196],[-594.004,-106.196],[-594.004,-89.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-590.872,-110.21],[-590.296,-111.704],[-590.872,-113.162],[-592.348,-113.756],[-593.824,-113.162],[-594.4,-111.704],[-593.824,-110.21],[-592.348,-109.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":521,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-575.914,-90.14],[-574.204,-93.956],[-574.87,-96.512],[-576.58,-98.06],[-578.776,-98.978],[-580.99,-99.644],[-582.7,-100.436],[-583.348,-101.768],[-582.61,-103.1],[-580.468,-103.604],[-578.092,-103.1],[-576.292,-101.66],[-574.204,-103.748],[-576.778,-105.854],[-580.36,-106.556],[-583.636,-105.944],[-585.742,-104.198],[-586.48,-101.516],[-585.814,-99.014],[-584.104,-97.52],[-581.89,-96.656],[-579.676,-95.99],[-577.966,-95.126],[-577.3,-93.668],[-578.128,-92.21],[-580.468,-91.688],[-583.204,-92.246],[-585.364,-93.956],[-587.452,-91.868],[-585.598,-90.194],[-583.24,-89.114],[-580.504,-88.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":522,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-559.84,-89.096],[-559.84,-106.196],[-563.116,-106.196],[-563.116,-89.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-559.984,-110.21],[-559.408,-111.704],[-559.984,-113.162],[-561.46,-113.756],[-562.936,-113.162],[-563.512,-111.704],[-562.936,-110.21],[-561.46,-109.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":523,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-545.026,-90.14],[-543.316,-93.956],[-543.982,-96.512],[-545.692,-98.06],[-547.888,-98.978],[-550.102,-99.644],[-551.812,-100.436],[-552.46,-101.768],[-551.722,-103.1],[-549.58,-103.604],[-547.204,-103.1],[-545.404,-101.66],[-543.316,-103.748],[-545.89,-105.854],[-549.472,-106.556],[-552.748,-105.944],[-554.854,-104.198],[-555.592,-101.516],[-554.926,-99.014],[-553.216,-97.52],[-551.002,-96.656],[-548.788,-95.99],[-547.078,-95.126],[-546.412,-93.668],[-547.24,-92.21],[-549.58,-91.688],[-552.316,-92.246],[-554.476,-93.956],[-556.564,-91.868],[-554.71,-90.194],[-552.352,-89.114],[-549.616,-88.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":524,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-516.892,-89.096],[-516.892,-99.716],[-517.756,-103.28],[-520.114,-105.692],[-523.552,-106.556],[-527.044,-105.674],[-529.456,-103.28],[-530.32,-99.824],[-528.988,-99.068],[-528.412,-101.372],[-526.828,-102.956],[-524.524,-103.532],[-521.374,-102.272],[-520.168,-99.068],[-520.168,-89.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-528.988,-89.096],[-528.988,-114.8],[-532.228,-114.8],[-532.228,-89.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":525,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-500.17,-89.924],[-496.948,-93.146],[-495.76,-97.7],[-496.948,-102.2],[-500.17,-105.386],[-504.724,-106.556],[-509.224,-105.368],[-512.428,-102.182],[-513.616,-97.7],[-512.428,-93.146],[-509.224,-89.924],[-504.724,-88.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-507.568,-92.624],[-509.548,-94.694],[-510.268,-97.7],[-509.548,-100.652],[-507.568,-102.686],[-504.724,-103.424],[-501.826,-102.686],[-499.846,-100.652],[-499.108,-97.7],[-499.828,-94.694],[-501.808,-92.624],[-504.724,-91.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":526,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-485.896,-89.096],[-480.928,-101.984],[-482.116,-101.984],[-477.184,-89.096],[-475.276,-89.096],[-468.544,-106.196],[-471.928,-106.196],[-476.824,-92.876],[-475.744,-92.876],[-480.604,-106.196],[-482.476,-106.196],[-487.336,-92.876],[-486.256,-92.876],[-491.152,-106.196],[-494.536,-106.196],[-487.804,-89.096]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":527,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-445.882,-89.924],[-442.66,-93.146],[-441.472,-97.7],[-442.66,-102.2],[-445.882,-105.386],[-450.436,-106.556],[-454.936,-105.368],[-458.14,-102.182],[-459.328,-97.7],[-458.14,-93.146],[-454.936,-89.924],[-450.436,-88.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-453.28,-92.624],[-455.26,-94.694],[-455.98,-97.7],[-455.26,-100.652],[-453.28,-102.686],[-450.436,-103.424],[-447.538,-102.686],[-445.558,-100.652],[-444.82,-97.7],[-445.54,-94.694],[-447.52,-92.624],[-450.436,-91.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":528,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-427.18,-89.726],[-424.588,-92.336],[-423.652,-96.26],[-423.652,-106.196],[-426.892,-106.196],[-426.892,-96.404],[-427.972,-93.074],[-430.96,-91.868],[-433.156,-92.408],[-434.578,-93.974],[-435.064,-96.404],[-435.064,-106.196],[-438.304,-106.196],[-438.304,-96.26],[-437.368,-92.336],[-434.758,-89.726],[-430.96,-88.808]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":529,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-416.056,-89.096],[-416.056,-106.196],[-419.296,-106.196],[-419.296,-89.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-414.904,-102.344],[-411.952,-103.496],[-410.44,-103.244],[-409.252,-102.416],[-407.128,-104.612],[-409.072,-106.106],[-411.412,-106.556],[-415.768,-104.612],[-417.28,-99.392],[-416.056,-98.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":530,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-384.97,-82.598],[-381.802,-85.478],[-380.668,-89.78],[-380.668,-106.196],[-383.908,-106.196],[-383.908,-101.696],[-383.332,-97.88],[-383.908,-94.028],[-383.908,-89.78],[-385.456,-86.054],[-389.596,-84.668],[-393.016,-85.37],[-395.5,-87.404],[-397.624,-85.28],[-394.348,-82.544],[-389.668,-81.572]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-386.14,-90.176],[-383.674,-92.39],[-382.648,-95.684],[-382.648,-100.22],[-383.656,-103.55],[-386.122,-105.764],[-389.704,-106.556],[-393.88,-105.422],[-396.814,-102.362],[-397.876,-97.988],[-396.796,-93.578],[-393.862,-90.5],[-389.668,-89.384]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-391.882,-93.146],[-393.826,-95.108],[-394.528,-97.988],[-393.826,-100.85],[-391.9,-102.794],[-389.056,-103.496],[-386.266,-102.794],[-384.394,-100.85],[-383.728,-97.952],[-384.394,-95.054],[-386.248,-93.128],[-389.056,-92.444]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":531,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-363.622,-89.924],[-360.4,-93.146],[-359.212,-97.7],[-360.4,-102.2],[-363.622,-105.386],[-368.176,-106.556],[-372.676,-105.368],[-375.88,-102.182],[-377.068,-97.7],[-375.88,-93.146],[-372.676,-89.924],[-368.176,-88.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-371.02,-92.624],[-373,-94.694],[-373.72,-97.7],[-373,-100.652],[-371.02,-102.686],[-368.176,-103.424],[-365.278,-102.686],[-363.298,-100.652],[-362.56,-97.7],[-363.28,-94.694],[-365.26,-92.624],[-368.176,-91.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":532,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-348.484,-89.096],[-340.636,-106.196],[-344.092,-106.196],[-350.428,-91.76],[-348.34,-91.76],[-354.64,-106.196],[-358.24,-106.196],[-350.392,-89.096]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":533,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-326.812,-89.492],[-323.788,-91.688],[-325.876,-93.812],[-327.946,-92.3],[-330.592,-91.796],[-333.652,-92.534],[-335.704,-94.622],[-336.424,-97.772],[-335.74,-100.832],[-333.796,-102.848],[-330.88,-103.568],[-328.18,-102.902],[-326.452,-101.03],[-325.84,-98.096],[-324.652,-99.14],[-337.36,-99.14],[-337.36,-96.44],[-322.924,-96.44],[-322.78,-97.358],[-322.744,-98.132],[-323.77,-102.488],[-326.632,-105.476],[-330.808,-106.556],[-335.29,-105.386],[-338.458,-102.2],[-339.628,-97.664],[-338.44,-93.092],[-335.218,-89.906],[-330.592,-88.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":534,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-315.976,-89.096],[-315.976,-106.196],[-319.216,-106.196],[-319.216,-89.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-314.824,-102.344],[-311.872,-103.496],[-310.36,-103.244],[-309.172,-102.416],[-307.048,-104.612],[-308.992,-106.106],[-311.332,-106.556],[-315.688,-104.612],[-317.2,-99.392],[-315.976,-98.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":535,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-289.372,-89.096],[-289.372,-99.716],[-290.236,-103.046],[-292.594,-105.584],[-296.032,-106.556],[-299.524,-105.674],[-301.936,-103.28],[-302.8,-99.824],[-301.468,-99.068],[-300.892,-101.372],[-299.308,-102.956],[-297.004,-103.532],[-293.854,-102.272],[-292.648,-99.068],[-292.648,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-301.468,-89.096],[-301.468,-106.196],[-304.708,-106.196],[-304.708,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":536,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-281.74,-89.096],[-281.74,-106.196],[-284.98,-106.196],[-284.98,-89.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-270.184,-89.096],[-270.184,-100.112],[-271.03,-103.532],[-273.334,-105.764],[-276.592,-106.556],[-279.904,-105.746],[-282.226,-103.496],[-283.072,-100.112],[-281.74,-99.428],[-281.164,-101.624],[-279.652,-103.028],[-277.528,-103.532],[-274.594,-102.434],[-273.424,-99.428],[-273.424,-89.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-258.592,-89.096],[-258.592,-100.076],[-259.474,-103.532],[-261.832,-105.764],[-265.18,-106.556],[-268.492,-105.746],[-270.958,-103.514],[-272.02,-100.112],[-270.184,-99.428],[-269.608,-101.624],[-268.078,-103.028],[-265.936,-103.532],[-263.038,-102.434],[-261.868,-99.428],[-261.868,-89.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":537,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-242.5,-89.492],[-239.476,-91.688],[-241.564,-93.812],[-243.634,-92.3],[-246.28,-91.796],[-249.34,-92.534],[-251.392,-94.622],[-252.112,-97.772],[-251.428,-100.832],[-249.484,-102.848],[-246.568,-103.568],[-243.868,-102.902],[-242.14,-101.03],[-241.528,-98.096],[-240.34,-99.14],[-253.048,-99.14],[-253.048,-96.44],[-238.612,-96.44],[-238.468,-97.358],[-238.432,-98.132],[-239.458,-102.488],[-242.32,-105.476],[-246.496,-106.556],[-250.978,-105.386],[-254.146,-102.2],[-255.316,-97.664],[-254.128,-93.092],[-250.906,-89.906],[-246.28,-88.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":538,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-219.568,-89.096],[-219.568,-99.716],[-220.432,-103.046],[-222.79,-105.584],[-226.228,-106.556],[-229.72,-105.674],[-232.132,-103.28],[-232.996,-99.824],[-231.664,-99.068],[-231.088,-101.372],[-229.504,-102.956],[-227.2,-103.532],[-224.05,-102.272],[-222.844,-99.068],[-222.844,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-231.664,-89.096],[-231.664,-106.196],[-234.904,-106.196],[-234.904,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":539,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-209.524,-89.096],[-209.524,-113.36],[-212.764,-113.36],[-212.764,-89.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-205.312,-103.244],[-205.312,-106.196],[-216.976,-106.196],[-216.976,-103.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":540,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-188.824,-89.096],[-188.824,-113.36],[-192.064,-113.36],[-192.064,-89.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-184.612,-103.244],[-184.612,-106.196],[-196.276,-106.196],[-196.276,-103.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":541,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-178.204,-89.096],[-178.204,-106.196],[-181.444,-106.196],[-181.444,-89.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-177.052,-102.344],[-174.1,-103.496],[-172.588,-103.244],[-171.4,-102.416],[-169.276,-104.612],[-171.22,-106.106],[-173.56,-106.556],[-177.916,-104.612],[-179.428,-99.392],[-178.204,-98.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":542,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-163.732,-89.096],[-163.732,-106.196],[-167.008,-106.196],[-167.008,-89.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-163.876,-110.21],[-163.3,-111.704],[-163.876,-113.162],[-165.352,-113.756],[-166.828,-113.162],[-167.404,-111.704],[-166.828,-110.21],[-165.352,-109.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":543,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-147.244,-89.492],[-144.22,-91.688],[-146.308,-93.812],[-148.378,-92.3],[-151.024,-91.796],[-154.084,-92.534],[-156.136,-94.622],[-156.856,-97.772],[-156.172,-100.832],[-154.228,-102.848],[-151.312,-103.568],[-148.612,-102.902],[-146.884,-101.03],[-146.272,-98.096],[-145.084,-99.14],[-157.792,-99.14],[-157.792,-96.44],[-143.356,-96.44],[-143.212,-97.358],[-143.176,-98.132],[-144.202,-102.488],[-147.064,-105.476],[-151.24,-106.556],[-155.722,-105.386],[-158.89,-102.2],[-160.06,-97.664],[-158.872,-93.092],[-155.65,-89.906],[-151.024,-88.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":544,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-129.622,-90.14],[-127.912,-93.956],[-128.578,-96.512],[-130.288,-98.06],[-132.484,-98.978],[-134.698,-99.644],[-136.408,-100.436],[-137.056,-101.768],[-136.318,-103.1],[-134.176,-103.604],[-131.8,-103.1],[-130,-101.66],[-127.912,-103.748],[-130.486,-105.854],[-134.068,-106.556],[-137.344,-105.944],[-139.45,-104.198],[-140.188,-101.516],[-139.522,-99.014],[-137.812,-97.52],[-135.598,-96.656],[-133.384,-95.99],[-131.674,-95.126],[-131.008,-93.668],[-131.836,-92.21],[-134.176,-91.688],[-136.912,-92.246],[-139.072,-93.956],[-141.16,-91.868],[-139.306,-90.194],[-136.948,-89.114],[-134.212,-88.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":545,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-110.956,-89.096],[-110.956,-113.36],[-114.196,-113.36],[-114.196,-89.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-106.744,-103.244],[-106.744,-106.196],[-118.408,-106.196],[-118.408,-103.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":546,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-91.786,-89.924],[-88.564,-93.146],[-87.376,-97.7],[-88.564,-102.2],[-91.786,-105.386],[-96.34,-106.556],[-100.84,-105.368],[-104.044,-102.182],[-105.232,-97.7],[-104.044,-93.146],[-100.84,-89.924],[-96.34,-88.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-99.184,-92.624],[-101.164,-94.694],[-101.884,-97.7],[-101.164,-100.652],[-99.184,-102.686],[-96.34,-103.424],[-93.442,-102.686],[-91.462,-100.652],[-90.724,-97.7],[-91.444,-94.694],[-93.424,-92.624],[-96.34,-91.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":547,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-64.534,-82.598],[-61.366,-85.478],[-60.232,-89.78],[-60.232,-106.196],[-63.472,-106.196],[-63.472,-101.696],[-62.896,-97.88],[-63.472,-94.028],[-63.472,-89.78],[-65.02,-86.054],[-69.16,-84.668],[-72.58,-85.37],[-75.064,-87.404],[-77.188,-85.28],[-73.912,-82.544],[-69.232,-81.572]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-65.704,-90.176],[-63.238,-92.39],[-62.212,-95.684],[-62.212,-100.22],[-63.22,-103.55],[-65.686,-105.764],[-69.268,-106.556],[-73.444,-105.422],[-76.378,-102.362],[-77.44,-97.988],[-76.36,-93.578],[-73.426,-90.5],[-69.232,-89.384]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-71.446,-93.146],[-73.39,-95.108],[-74.092,-97.988],[-73.39,-100.85],[-71.464,-102.794],[-68.62,-103.496],[-65.83,-102.794],[-63.958,-100.85],[-63.292,-97.952],[-63.958,-95.054],[-65.812,-93.128],[-68.62,-92.444]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":548,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-44.752,-89.546],[-42.286,-91.796],[-41.26,-95.072],[-41.26,-100.22],[-42.304,-103.514],[-44.77,-105.746],[-48.244,-106.556],[-52.51,-105.368],[-55.498,-102.164],[-56.596,-97.628],[-55.498,-93.092],[-52.51,-89.906],[-48.244,-88.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-50.584,-92.552],[-52.546,-94.622],[-53.248,-97.664],[-52.546,-100.67],[-50.602,-102.74],[-47.74,-103.496],[-44.914,-102.758],[-43.024,-100.688],[-42.34,-97.628],[-43.816,-93.434],[-47.704,-91.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-39.28,-89.096],[-39.28,-106.196],[-42.556,-106.196],[-42.556,-102.02],[-41.944,-97.88],[-42.556,-93.704],[-42.556,-89.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":549,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-31.288,-89.096],[-31.288,-106.196],[-34.564,-106.196],[-34.564,-89.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-31.432,-110.21],[-30.856,-111.704],[-31.432,-113.162],[-32.908,-113.756],[-34.384,-113.162],[-34.96,-111.704],[-34.384,-110.21],[-32.908,-109.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":550,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-11.164,-89.096],[-11.164,-99.716],[-12.028,-103.046],[-14.386,-105.584],[-17.824,-106.556],[-21.316,-105.674],[-23.728,-103.28],[-24.592,-99.824],[-23.26,-99.068],[-22.684,-101.372],[-21.1,-102.956],[-18.796,-103.532],[-15.646,-102.272],[-14.44,-99.068],[-14.44,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-23.26,-89.096],[-23.26,-106.196],[-26.5,-106.196],[-26.5,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":551,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[12.182,-89.492],[15.08,-91.616],[12.956,-93.776],[10.994,-92.354],[8.492,-91.868],[5.612,-92.624],[3.632,-94.676],[2.912,-97.664],[3.632,-100.652],[5.612,-102.686],[8.492,-103.424],[10.976,-102.938],[12.92,-101.516],[15.08,-103.676],[12.164,-105.818],[8.492,-106.556],[3.938,-105.386],[0.734,-102.2],[-0.436,-97.664],[0.734,-93.146],[3.938,-89.924],[8.492,-88.736]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":552,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[30.29,-89.924],[33.512,-93.146],[34.7,-97.7],[33.512,-102.2],[30.29,-105.386],[25.736,-106.556],[21.236,-105.368],[18.032,-102.182],[16.844,-97.7],[18.032,-93.146],[21.236,-89.924],[25.736,-88.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[22.892,-92.624],[20.912,-94.694],[20.192,-97.7],[20.912,-100.652],[22.892,-102.686],[25.736,-103.424],[28.634,-102.686],[30.614,-100.652],[31.352,-97.7],[30.632,-94.694],[28.652,-92.624],[25.736,-91.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":553,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[53.636,-89.096],[53.636,-99.716],[52.772,-103.046],[50.414,-105.584],[46.976,-106.556],[43.484,-105.674],[41.072,-103.28],[40.208,-99.824],[41.54,-99.068],[42.116,-101.372],[43.7,-102.956],[46.004,-103.532],[49.154,-102.272],[50.36,-99.068],[50.36,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[41.54,-89.096],[41.54,-106.196],[38.3,-106.196],[38.3,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":554,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[63.68,-89.096],[63.68,-113.36],[60.44,-113.36],[60.44,-89.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[67.892,-103.244],[67.892,-106.196],[56.228,-106.196],[56.228,-103.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":555,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[74.3,-89.096],[74.3,-106.196],[71.06,-106.196],[71.06,-89.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[75.452,-102.344],[78.404,-103.496],[79.916,-103.244],[81.104,-102.416],[83.228,-104.612],[81.284,-106.106],[78.944,-106.556],[74.588,-104.612],[73.076,-99.392],[74.3,-98.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":556,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[97.286,-89.924],[100.508,-93.146],[101.696,-97.7],[100.508,-102.2],[97.286,-105.386],[92.732,-106.556],[88.232,-105.368],[85.028,-102.182],[83.84,-97.7],[85.028,-93.146],[88.232,-89.924],[92.732,-88.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[89.888,-92.624],[87.908,-94.694],[87.188,-97.7],[87.908,-100.652],[89.888,-102.686],[92.732,-103.424],[95.63,-102.686],[97.61,-100.652],[98.348,-97.7],[97.628,-94.694],[95.648,-92.624],[92.732,-91.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":557,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[108.536,-89.096],[108.536,-114.8],[105.296,-114.8],[105.296,-89.096]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":558,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[133.07,-89.924],[136.292,-93.146],[137.48,-97.7],[136.292,-102.2],[133.07,-105.386],[128.516,-106.556],[124.016,-105.368],[120.812,-102.182],[119.624,-97.7],[120.812,-93.146],[124.016,-89.924],[128.516,-88.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[125.672,-92.624],[123.692,-94.694],[122.972,-97.7],[123.692,-100.652],[125.672,-102.686],[128.516,-103.424],[131.414,-102.686],[133.394,-100.652],[134.132,-97.7],[133.412,-94.694],[131.432,-92.624],[128.516,-91.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":559,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[148.208,-89.096],[156.056,-106.196],[152.6,-106.196],[146.264,-91.76],[148.352,-91.76],[142.052,-106.196],[138.452,-106.196],[146.3,-89.096]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":560,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[169.88,-89.492],[172.904,-91.688],[170.816,-93.812],[168.746,-92.3],[166.1,-91.796],[163.04,-92.534],[160.988,-94.622],[160.268,-97.772],[160.952,-100.832],[162.896,-102.848],[165.812,-103.568],[168.512,-102.902],[170.24,-101.03],[170.852,-98.096],[172.04,-99.14],[159.332,-99.14],[159.332,-96.44],[173.768,-96.44],[173.912,-97.358],[173.948,-98.132],[172.922,-102.488],[170.06,-105.476],[165.884,-106.556],[161.402,-105.386],[158.234,-102.2],[157.064,-97.664],[158.252,-93.092],[161.474,-89.906],[166.1,-88.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":561,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[180.716,-89.096],[180.716,-106.196],[177.476,-106.196],[177.476,-89.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[181.868,-102.344],[184.82,-103.496],[186.332,-103.244],[187.52,-102.416],[189.644,-104.612],[187.7,-106.106],[185.36,-106.556],[181.004,-104.612],[179.492,-99.392],[180.716,-98.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":562,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[205.88,-89.096],[205.88,-113.36],[202.64,-113.36],[202.64,-89.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[210.092,-103.244],[210.092,-106.196],[198.428,-106.196],[198.428,-103.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":563,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[228.596,-89.096],[228.596,-99.716],[227.732,-103.28],[225.374,-105.692],[221.936,-106.556],[218.444,-105.674],[216.032,-103.28],[215.168,-99.824],[216.5,-99.068],[217.076,-101.372],[218.66,-102.956],[220.964,-103.532],[224.114,-102.272],[225.32,-99.068],[225.32,-89.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[216.5,-89.096],[216.5,-114.8],[213.26,-114.8],[213.26,-89.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":564,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[244.688,-89.492],[247.712,-91.688],[245.624,-93.812],[243.554,-92.3],[240.908,-91.796],[237.848,-92.534],[235.796,-94.622],[235.076,-97.772],[235.76,-100.832],[237.704,-102.848],[240.62,-103.568],[243.32,-102.902],[245.048,-101.03],[245.66,-98.096],[246.848,-99.14],[234.14,-99.14],[234.14,-96.44],[248.576,-96.44],[248.72,-97.358],[248.756,-98.132],[247.73,-102.488],[244.868,-105.476],[240.692,-106.556],[236.21,-105.386],[233.042,-102.2],[231.872,-97.664],[233.06,-93.092],[236.282,-89.906],[240.908,-88.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":565,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[255.56,-89.096],[255.56,-106.196],[252.284,-106.196],[252.284,-89.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[255.416,-110.21],[255.992,-111.704],[255.416,-113.162],[253.94,-113.756],[252.464,-113.162],[251.888,-111.704],[252.464,-110.21],[253.94,-109.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":566,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[263.588,-89.096],[263.588,-106.196],[260.348,-106.196],[260.348,-89.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[264.74,-102.344],[267.692,-103.496],[269.204,-103.244],[270.392,-102.416],[272.516,-104.612],[270.572,-106.106],[268.232,-106.556],[263.876,-104.612],[262.364,-99.392],[263.588,-98.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":567,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[295.214,-89.924],[298.436,-93.146],[299.624,-97.7],[298.436,-102.2],[295.214,-105.386],[290.66,-106.556],[286.16,-105.368],[282.956,-102.182],[281.768,-97.7],[282.956,-93.146],[286.16,-89.924],[290.66,-88.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[287.816,-92.624],[285.836,-94.694],[285.116,-97.7],[285.836,-100.652],[287.816,-102.686],[290.66,-103.424],[293.558,-102.686],[295.538,-100.652],[296.276,-97.7],[295.556,-94.694],[293.576,-92.624],[290.66,-91.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":568,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[309.488,-89.096],[314.456,-101.984],[313.268,-101.984],[318.2,-89.096],[320.108,-89.096],[326.84,-106.196],[323.456,-106.196],[318.56,-92.876],[319.64,-92.876],[314.78,-106.196],[312.908,-106.196],[308.048,-92.876],[309.128,-92.876],[304.232,-106.196],[300.848,-106.196],[307.58,-89.096]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":569,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[345.056,-89.096],[345.056,-99.716],[344.192,-103.046],[341.834,-105.584],[338.396,-106.556],[334.904,-105.674],[332.492,-103.28],[331.628,-99.824],[332.96,-99.068],[333.536,-101.372],[335.12,-102.956],[337.424,-103.532],[340.574,-102.272],[341.78,-99.068],[341.78,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[332.96,-89.096],[332.96,-106.196],[329.72,-106.196],[329.72,-89.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":570,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[370.13,-89.906],[373.1,-93.092],[374.18,-97.628],[373.1,-102.164],[370.13,-105.368],[365.9,-106.556],[362.426,-105.746],[359.906,-103.514],[358.844,-100.22],[358.844,-95.072],[359.888,-91.796],[362.39,-89.546],[365.9,-88.736]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[360.14,-81.932],[360.14,-93.38],[359.528,-97.556],[360.14,-101.696],[360.14,-106.196],[356.9,-106.196],[356.9,-81.932]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[362.534,-92.552],[360.626,-94.622],[359.96,-97.628],[360.644,-100.67],[362.552,-102.74],[365.36,-103.496],[368.204,-102.74],[370.13,-100.67],[370.832,-97.664],[370.13,-94.622],[368.204,-92.552],[365.36,-91.796]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":571,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[389.552,-89.492],[392.576,-91.688],[390.488,-93.812],[388.418,-92.3],[385.772,-91.796],[382.712,-92.534],[380.66,-94.622],[379.94,-97.772],[380.624,-100.832],[382.568,-102.848],[385.484,-103.568],[388.184,-102.902],[389.912,-101.03],[390.524,-98.096],[391.712,-99.14],[379.004,-99.14],[379.004,-96.44],[393.44,-96.44],[393.584,-97.358],[393.62,-98.132],[392.594,-102.488],[389.732,-105.476],[385.556,-106.556],[381.074,-105.386],[377.906,-102.2],[376.736,-97.664],[377.924,-93.092],[381.146,-89.906],[385.772,-88.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":572,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[409.478,-89.924],[412.7,-93.146],[413.888,-97.7],[412.7,-102.2],[409.478,-105.386],[404.924,-106.556],[400.424,-105.368],[397.22,-102.182],[396.032,-97.7],[397.22,-93.146],[400.424,-89.924],[404.924,-88.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[402.08,-92.624],[400.1,-94.694],[399.38,-97.7],[400.1,-100.652],[402.08,-102.686],[404.924,-103.424],[407.822,-102.686],[409.802,-100.652],[410.54,-97.7],[409.82,-94.694],[407.84,-92.624],[404.924,-91.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":573,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[430.718,-89.906],[433.688,-93.092],[434.768,-97.628],[433.688,-102.164],[430.718,-105.368],[426.488,-106.556],[423.014,-105.746],[420.494,-103.514],[419.432,-100.22],[419.432,-95.072],[420.476,-91.796],[422.978,-89.546],[426.488,-88.736]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[420.728,-81.932],[420.728,-93.38],[420.116,-97.556],[420.728,-101.696],[420.728,-106.196],[417.488,-106.196],[417.488,-81.932]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[423.122,-92.552],[421.214,-94.622],[420.548,-97.628],[421.232,-100.67],[423.14,-102.74],[425.948,-103.496],[428.792,-102.74],[430.718,-100.67],[431.42,-97.664],[430.718,-94.622],[428.792,-92.552],[425.948,-91.796]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":574,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[441.68,-89.096],[441.68,-114.8],[438.44,-114.8],[438.44,-89.096]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":575,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[458.132,-89.492],[461.156,-91.688],[459.068,-93.812],[456.998,-92.3],[454.352,-91.796],[451.292,-92.534],[449.24,-94.622],[448.52,-97.772],[449.204,-100.832],[451.148,-102.848],[454.064,-103.568],[456.764,-102.902],[458.492,-101.03],[459.104,-98.096],[460.292,-99.14],[447.584,-99.14],[447.584,-96.44],[462.02,-96.44],[462.164,-97.358],[462.2,-98.132],[461.174,-102.488],[458.312,-105.476],[454.136,-106.556],[449.654,-105.386],[446.486,-102.2],[445.316,-97.664],[446.504,-93.092],[449.726,-89.906],[454.352,-88.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":576,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.444,0.468],[0,0.648],[0.444,0.444],[0.672,0],[0.432,-0.444],[0,-0.672],[-0.432,-0.468],[-0.696,0]],"o":[[0.444,-0.468],[0,-0.672],[-0.444,-0.444],[-0.696,0],[-0.432,0.444],[0,0.648],[0.432,0.468],[0.672,0]],"v":[[470.246,-89.438],[470.912,-91.112],[470.246,-92.786],[468.572,-93.452],[466.88,-92.786],[466.232,-91.112],[466.88,-89.438],[468.572,-88.736]],"c":true},"ix":2},"nm":".","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":".","np":3,"cix":2,"bm":0,"ix":577,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[487.58,-89.096],[487.58,-114.08],[484.196,-114.08],[484.196,-89.096]],"c":true},"ix":2},"nm":"H","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[503.708,-89.096],[503.708,-114.08],[500.324,-114.08],[500.324,-89.096]],"c":true},"ix":2},"nm":"H","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[501.116,-100.472],[501.116,-103.568],[486.5,-103.568],[486.5,-100.472]],"c":true},"ix":2},"nm":"H","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"H","np":6,"cix":2,"bm":0,"ix":578,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[521.366,-89.924],[524.588,-93.146],[525.776,-97.7],[524.588,-102.2],[521.366,-105.386],[516.812,-106.556],[512.312,-105.368],[509.108,-102.182],[507.92,-97.7],[509.108,-93.146],[512.312,-89.924],[516.812,-88.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[513.968,-92.624],[511.988,-94.694],[511.268,-97.7],[511.988,-100.652],[513.968,-102.686],[516.812,-103.424],[519.71,-102.686],[521.69,-100.652],[522.428,-97.7],[521.708,-94.694],[519.728,-92.624],[516.812,-91.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":579,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[535.64,-89.096],[540.608,-101.984],[539.42,-101.984],[544.352,-89.096],[546.26,-89.096],[552.992,-106.196],[549.608,-106.196],[544.712,-92.876],[545.792,-92.876],[540.932,-106.196],[539.06,-106.196],[534.2,-92.876],[535.28,-92.876],[530.384,-106.196],[527,-106.196],[533.732,-89.096]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":580,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[573.35,-90.14],[575.06,-93.956],[574.394,-96.512],[572.684,-98.06],[570.488,-98.978],[568.274,-99.644],[566.564,-100.436],[565.916,-101.768],[566.654,-103.1],[568.796,-103.604],[571.172,-103.1],[572.972,-101.66],[575.06,-103.748],[572.486,-105.854],[568.904,-106.556],[565.628,-105.944],[563.522,-104.198],[562.784,-101.516],[563.45,-99.014],[565.16,-97.52],[567.374,-96.656],[569.588,-95.99],[571.298,-95.126],[571.964,-93.668],[571.136,-92.21],[568.796,-91.688],[566.06,-92.246],[563.9,-93.956],[561.812,-91.868],[563.666,-90.194],[566.024,-89.114],[568.76,-88.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":581,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[594.032,-89.096],[594.032,-99.716],[593.168,-103.28],[590.81,-105.692],[587.372,-106.556],[583.88,-105.674],[581.468,-103.28],[580.604,-99.824],[581.936,-99.068],[582.512,-101.372],[584.096,-102.956],[586.4,-103.532],[589.55,-102.272],[590.756,-99.068],[590.756,-89.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[581.936,-89.096],[581.936,-114.8],[578.696,-114.8],[578.696,-89.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":582,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[609.188,-89.546],[611.654,-91.796],[612.68,-95.072],[612.68,-100.22],[611.636,-103.514],[609.17,-105.746],[605.696,-106.556],[601.43,-105.368],[598.442,-102.164],[597.344,-97.628],[598.442,-93.092],[601.43,-89.906],[605.696,-88.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[603.356,-92.552],[601.394,-94.622],[600.692,-97.664],[601.394,-100.67],[603.338,-102.74],[606.2,-103.496],[609.026,-102.758],[610.916,-100.688],[611.6,-97.628],[610.124,-93.434],[606.236,-91.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[614.66,-89.096],[614.66,-106.196],[611.384,-106.196],[611.384,-102.02],[611.996,-97.88],[611.384,-93.704],[611.384,-89.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":583,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[622.616,-89.096],[622.616,-106.196],[619.376,-106.196],[619.376,-89.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[634.172,-89.096],[634.172,-100.112],[633.326,-103.532],[631.022,-105.764],[627.764,-106.556],[624.452,-105.746],[622.13,-103.496],[621.284,-100.112],[622.616,-99.428],[623.192,-101.624],[624.704,-103.028],[626.828,-103.532],[629.762,-102.434],[630.932,-99.428],[630.932,-89.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[645.764,-89.096],[645.764,-100.076],[644.882,-103.532],[642.524,-105.764],[639.176,-106.556],[635.864,-105.746],[633.398,-103.514],[632.336,-100.112],[634.172,-99.428],[634.748,-101.624],[636.278,-103.028],[638.42,-103.532],[641.318,-102.434],[642.488,-99.428],[642.488,-89.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":584,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[661.856,-89.492],[664.88,-91.688],[662.792,-93.812],[660.722,-92.3],[658.076,-91.796],[655.016,-92.534],[652.964,-94.622],[652.244,-97.772],[652.928,-100.832],[654.872,-102.848],[657.788,-103.568],[660.488,-102.902],[662.216,-101.03],[662.828,-98.096],[664.016,-99.14],[651.308,-99.14],[651.308,-96.44],[665.744,-96.44],[665.888,-97.358],[665.924,-98.132],[664.898,-102.488],[662.036,-105.476],[657.86,-106.556],[653.378,-105.386],[650.21,-102.2],[649.04,-97.664],[650.228,-93.092],[653.45,-89.906],[658.076,-88.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":585,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[672.692,-89.096],[672.692,-114.8],[669.452,-114.8],[669.452,-89.096]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":586,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[689.144,-89.492],[692.168,-91.688],[690.08,-93.812],[688.01,-92.3],[685.364,-91.796],[682.304,-92.534],[680.252,-94.622],[679.532,-97.772],[680.216,-100.832],[682.16,-102.848],[685.076,-103.568],[687.776,-102.902],[689.504,-101.03],[690.116,-98.096],[691.304,-99.14],[678.596,-99.14],[678.596,-96.44],[693.032,-96.44],[693.176,-97.358],[693.212,-98.132],[692.186,-102.488],[689.324,-105.476],[685.148,-106.556],[680.666,-105.386],[677.498,-102.2],[676.328,-97.664],[677.516,-93.092],[680.738,-89.906],[685.364,-88.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":587,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[706.766,-90.14],[708.476,-93.956],[707.81,-96.512],[706.1,-98.06],[703.904,-98.978],[701.69,-99.644],[699.98,-100.436],[699.332,-101.768],[700.07,-103.1],[702.212,-103.604],[704.588,-103.1],[706.388,-101.66],[708.476,-103.748],[705.902,-105.854],[702.32,-106.556],[699.044,-105.944],[696.938,-104.198],[696.2,-101.516],[696.866,-99.014],[698.576,-97.52],[700.79,-96.656],[703.004,-95.99],[704.714,-95.126],[705.38,-93.668],[704.552,-92.21],[702.212,-91.688],[699.476,-92.246],[697.316,-93.956],[695.228,-91.868],[697.082,-90.194],[699.44,-89.114],[702.176,-88.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":588,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[722.138,-90.14],[723.848,-93.956],[723.182,-96.512],[721.472,-98.06],[719.276,-98.978],[717.062,-99.644],[715.352,-100.436],[714.704,-101.768],[715.442,-103.1],[717.584,-103.604],[719.96,-103.1],[721.76,-101.66],[723.848,-103.748],[721.274,-105.854],[717.692,-106.556],[714.416,-105.944],[712.31,-104.198],[711.572,-101.516],[712.238,-99.014],[713.948,-97.52],[716.162,-96.656],[718.376,-95.99],[720.086,-95.126],[720.752,-93.668],[719.924,-92.21],[717.584,-91.688],[714.848,-92.246],[712.688,-93.956],[710.6,-91.868],[712.454,-90.194],[714.812,-89.114],[717.548,-88.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":589,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.936,1.62],[-0.504,1.92],[0,2.064],[0.504,1.92],[0.936,1.62],[1.32,1.104],[0,0],[-0.912,-2.352],[0,-2.928],[0.912,-2.352],[1.728,-1.512],[0,0]],"o":[[0.936,-1.62],[0.504,-1.92],[0,-2.064],[-0.504,-1.92],[-0.936,-1.62],[0,0],[1.728,1.488],[0.912,2.352],[0,2.904],[-0.912,2.352],[0,0],[1.32,-1.104]],"v":[[731.444,-89.006],[733.604,-94.316],[734.36,-100.292],[733.604,-106.268],[731.444,-111.578],[728.06,-115.664],[726.152,-113.972],[730.112,-108.212],[731.48,-100.292],[730.112,-92.408],[726.152,-86.612],[728.06,-84.92]],"c":true},"ix":2},"nm":")","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":")","np":3,"cix":2,"bm":0,"ix":590,"mn":"ADBE Vector Group","hd":false}],"ip":900,"op":4843,"st":900,"ct":1,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"For the last following days, Indonesia is currently under windespread unrest due to government’s unfair policies, oppression and violence by the police. This results in a widerange anger from the citizens and an absolute untrust to the government, amid the killing of a young online bike-taxi driver, Affan Kurniawan (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove by the anti-protest police forces even he was not a part of the demonstration. Reportedly as of August 31st, there are number of other victims who passed away in the hospital. Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":361,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":391,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":3690,"s":[100]},{"t":3720,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[964,726,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-825.664,-348.296],[-825.664,-373.28],[-829.048,-373.28],[-829.048,-348.296]],"c":true},"ix":2},"nm":"F","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-813.712,-359.276],[-813.712,-362.372],[-826.744,-362.372],[-826.744,-359.276]],"c":true},"ix":2},"nm":"F","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-813.1,-370.184],[-813.1,-373.28],[-826.744,-373.28],[-826.744,-370.184]],"c":true},"ix":2},"nm":"F","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"F","np":6,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-797.602,-349.124],[-794.38,-352.346],[-793.192,-356.9],[-794.38,-361.4],[-797.602,-364.586],[-802.156,-365.756],[-806.656,-364.568],[-809.86,-361.382],[-811.048,-356.9],[-809.86,-352.346],[-806.656,-349.124],[-802.156,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-805,-351.824],[-806.98,-353.894],[-807.7,-356.9],[-806.98,-359.852],[-805,-361.886],[-802.156,-362.624],[-799.258,-361.886],[-797.278,-359.852],[-796.54,-356.9],[-797.26,-353.894],[-799.24,-351.824],[-802.156,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-786.352,-348.296],[-786.352,-365.396],[-789.592,-365.396],[-789.592,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-785.2,-361.544],[-782.248,-362.696],[-780.736,-362.444],[-779.548,-361.616],[-777.424,-363.812],[-779.368,-365.306],[-781.708,-365.756],[-786.064,-363.812],[-787.576,-358.592],[-786.352,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-761.188,-348.296],[-761.188,-372.56],[-764.428,-372.56],[-764.428,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-756.976,-362.444],[-756.976,-365.396],[-768.64,-365.396],[-768.64,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-738.472,-348.296],[-738.472,-358.916],[-739.336,-362.48],[-741.694,-364.892],[-745.132,-365.756],[-748.624,-364.874],[-751.036,-362.48],[-751.9,-359.024],[-750.568,-358.268],[-749.992,-360.572],[-748.408,-362.156],[-746.104,-362.732],[-742.954,-361.472],[-741.748,-358.268],[-741.748,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-750.568,-348.296],[-750.568,-374],[-753.808,-374],[-753.808,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-722.38,-348.692],[-719.356,-350.888],[-721.444,-353.012],[-723.514,-351.5],[-726.16,-350.996],[-729.22,-351.734],[-731.272,-353.822],[-731.992,-356.972],[-731.308,-360.032],[-729.364,-362.048],[-726.448,-362.768],[-723.748,-362.102],[-722.02,-360.23],[-721.408,-357.296],[-720.22,-358.34],[-732.928,-358.34],[-732.928,-355.64],[-718.492,-355.64],[-718.348,-356.558],[-718.312,-357.332],[-719.338,-361.688],[-722.2,-364.676],[-726.376,-365.756],[-730.858,-364.586],[-734.026,-361.4],[-735.196,-356.864],[-734.008,-352.292],[-730.786,-349.106],[-726.16,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-704.092,-348.296],[-704.092,-374],[-707.332,-374],[-707.332,-348.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-688.576,-348.746],[-686.11,-350.996],[-685.084,-354.272],[-685.084,-359.42],[-686.128,-362.714],[-688.594,-364.946],[-692.068,-365.756],[-696.334,-364.568],[-699.322,-361.364],[-700.42,-356.828],[-699.322,-352.292],[-696.334,-349.106],[-692.068,-347.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-694.408,-351.752],[-696.37,-353.822],[-697.072,-356.864],[-696.37,-359.87],[-694.426,-361.94],[-691.564,-362.696],[-688.738,-361.958],[-686.848,-359.888],[-686.164,-356.828],[-687.64,-352.634],[-691.528,-350.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-683.104,-348.296],[-683.104,-365.396],[-686.38,-365.396],[-686.38,-361.22],[-685.768,-357.08],[-686.38,-352.904],[-686.38,-348.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-668.362,-349.34],[-666.652,-353.156],[-667.318,-355.712],[-669.028,-357.26],[-671.224,-358.178],[-673.438,-358.844],[-675.148,-359.636],[-675.796,-360.968],[-675.058,-362.3],[-672.916,-362.804],[-670.54,-362.3],[-668.74,-360.86],[-666.652,-362.948],[-669.226,-365.054],[-672.808,-365.756],[-676.084,-365.144],[-678.19,-363.398],[-678.928,-360.716],[-678.262,-358.214],[-676.552,-356.72],[-674.338,-355.856],[-672.124,-355.19],[-670.414,-354.326],[-669.748,-352.868],[-670.576,-351.41],[-672.916,-350.888],[-675.652,-351.446],[-677.812,-353.156],[-679.9,-351.068],[-678.046,-349.394],[-675.688,-348.314],[-672.952,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-657.148,-348.296],[-657.148,-372.56],[-660.388,-372.56],[-660.388,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-652.936,-362.444],[-652.936,-365.396],[-664.6,-365.396],[-664.6,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[-636.628,-348.296],[-636.628,-367.952],[-635.782,-370.418],[-633.388,-371.3],[-631.984,-371.048],[-630.94,-370.292],[-628.816,-372.38],[-630.796,-373.856],[-633.352,-374.36],[-636.772,-373.532],[-639.076,-371.264],[-639.904,-367.952],[-639.904,-348.296]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-631.192,-362.444],[-631.192,-365.396],[-644.08,-365.396],[-644.08,-362.444]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-616.594,-349.124],[-613.372,-352.346],[-612.184,-356.9],[-613.372,-361.4],[-616.594,-364.586],[-621.148,-365.756],[-625.648,-364.568],[-628.852,-361.382],[-630.04,-356.9],[-628.852,-352.346],[-625.648,-349.124],[-621.148,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-623.992,-351.824],[-625.972,-353.894],[-626.692,-356.9],[-625.972,-359.852],[-623.992,-361.886],[-621.148,-362.624],[-618.25,-361.886],[-616.27,-359.852],[-615.532,-356.9],[-616.252,-353.894],[-618.232,-351.824],[-621.148,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-605.344,-348.296],[-605.344,-374],[-608.584,-374],[-608.584,-348.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-597.352,-348.296],[-597.352,-374],[-600.592,-374],[-600.592,-348.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-580.27,-349.124],[-577.048,-352.346],[-575.86,-356.9],[-577.048,-361.4],[-580.27,-364.586],[-584.824,-365.756],[-589.324,-364.568],[-592.528,-361.382],[-593.716,-356.9],[-592.528,-352.346],[-589.324,-349.124],[-584.824,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-587.668,-351.824],[-589.648,-353.894],[-590.368,-356.9],[-589.648,-359.852],[-587.668,-361.886],[-584.824,-362.624],[-581.926,-361.886],[-579.946,-359.852],[-579.208,-356.9],[-579.928,-353.894],[-581.908,-351.824],[-584.824,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-565.996,-348.296],[-561.028,-361.184],[-562.216,-361.184],[-557.284,-348.296],[-555.376,-348.296],[-548.644,-365.396],[-552.028,-365.396],[-556.924,-352.076],[-555.844,-352.076],[-560.704,-365.396],[-562.576,-365.396],[-567.436,-352.076],[-566.356,-352.076],[-571.252,-365.396],[-574.636,-365.396],[-567.904,-348.296]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-542.776,-348.296],[-542.776,-365.396],[-546.052,-365.396],[-546.052,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-542.92,-369.41],[-542.344,-370.904],[-542.92,-372.362],[-544.396,-372.956],[-545.872,-372.362],[-546.448,-370.904],[-545.872,-369.41],[-544.396,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-522.652,-348.296],[-522.652,-358.916],[-523.516,-362.246],[-525.874,-364.784],[-529.312,-365.756],[-532.804,-364.874],[-535.216,-362.48],[-536.08,-359.024],[-534.748,-358.268],[-534.172,-360.572],[-532.588,-362.156],[-530.284,-362.732],[-527.134,-361.472],[-525.928,-358.268],[-525.928,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-534.748,-348.296],[-534.748,-365.396],[-537.988,-365.396],[-537.988,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-506.47,-341.798],[-503.302,-344.678],[-502.168,-348.98],[-502.168,-365.396],[-505.408,-365.396],[-505.408,-360.896],[-504.832,-357.08],[-505.408,-353.228],[-505.408,-348.98],[-506.956,-345.254],[-511.096,-343.868],[-514.516,-344.57],[-517,-346.604],[-519.124,-344.48],[-515.848,-341.744],[-511.168,-340.772]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-507.64,-349.376],[-505.174,-351.59],[-504.148,-354.884],[-504.148,-359.42],[-505.156,-362.75],[-507.622,-364.964],[-511.204,-365.756],[-515.38,-364.622],[-518.314,-361.562],[-519.376,-357.188],[-518.296,-352.778],[-515.362,-349.7],[-511.168,-348.584]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-513.382,-352.346],[-515.326,-354.308],[-516.028,-357.188],[-515.326,-360.05],[-513.4,-361.994],[-510.556,-362.696],[-507.766,-361.994],[-505.894,-360.05],[-505.228,-357.152],[-505.894,-354.254],[-507.748,-352.328],[-510.556,-351.644]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-479.272,-348.746],[-476.788,-350.996],[-475.744,-354.272],[-475.744,-359.42],[-476.806,-362.714],[-479.308,-364.946],[-482.8,-365.756],[-487.012,-364.568],[-489.982,-361.364],[-491.08,-356.828],[-489.982,-352.292],[-487.012,-349.106],[-482.8,-347.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-485.086,-351.734],[-487.03,-353.804],[-487.732,-356.864],[-487.03,-359.906],[-485.104,-361.958],[-482.26,-362.696],[-479.416,-361.94],[-477.508,-359.87],[-476.824,-356.828],[-477.508,-353.822],[-479.416,-351.752],[-482.26,-350.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-473.764,-374],[-477.04,-374],[-477.04,-361.22],[-476.428,-357.08],[-477.04,-352.904],[-477.04,-348.296],[-473.764,-348.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-458.284,-348.746],[-455.818,-350.996],[-454.792,-354.272],[-454.792,-359.42],[-455.836,-362.714],[-458.302,-364.946],[-461.776,-365.756],[-466.042,-364.568],[-469.03,-361.364],[-470.128,-356.828],[-469.03,-352.292],[-466.042,-349.106],[-461.776,-347.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-464.116,-351.752],[-466.078,-353.822],[-466.78,-356.864],[-466.078,-359.87],[-464.134,-361.94],[-461.272,-362.696],[-458.446,-361.958],[-456.556,-359.888],[-455.872,-356.828],[-457.348,-352.634],[-461.236,-350.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-452.812,-348.296],[-452.812,-365.396],[-456.088,-365.396],[-456.088,-361.22],[-455.476,-357.08],[-456.088,-352.904],[-456.088,-348.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-440.536,-348.152],[-432.544,-365.396],[-436.144,-365.396],[-441.94,-351.896],[-440.788,-351.896],[-446.296,-365.396],[-449.896,-365.396],[-442.48,-348.152]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-443.776,-341.132],[-440.536,-348.152],[-442.372,-351.464],[-447.376,-341.132]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-420.214,-349.34],[-418.504,-353.156],[-419.17,-355.712],[-420.88,-357.26],[-423.076,-358.178],[-425.29,-358.844],[-427,-359.636],[-427.648,-360.968],[-426.91,-362.3],[-424.768,-362.804],[-422.392,-362.3],[-420.592,-360.86],[-418.504,-362.948],[-421.078,-365.054],[-424.66,-365.756],[-427.936,-365.144],[-430.042,-363.398],[-430.78,-360.716],[-430.114,-358.214],[-428.404,-356.72],[-426.19,-355.856],[-423.976,-355.19],[-422.266,-354.326],[-421.6,-352.868],[-422.428,-351.41],[-424.768,-350.888],[-427.504,-351.446],[-429.664,-353.156],[-431.752,-351.068],[-429.898,-349.394],[-427.54,-348.314],[-424.804,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.264],[0.48,0.468],[0.624,0],[0.456,-0.468],[0,-0.696],[-0.42,-0.42],[-0.504,0],[-0.192,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.6],[0.108,-0.372],[0,-0.696],[-0.48,-0.468],[-0.696,0],[-0.456,0.468],[0,0.624],[0.42,0.42],[0.24,0],[0.192,-0.168],[0,0],[0,0],[0,0]],"v":[[-412.852,-343.328],[-410.44,-347.792],[-409.81,-349.25],[-409.648,-350.204],[-410.368,-351.95],[-412.024,-352.652],[-413.752,-351.95],[-414.436,-350.204],[-413.806,-348.638],[-412.42,-348.008],[-411.772,-348.26],[-411.304,-348.908],[-412.456,-348.62],[-414.688,-344.336]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-393.556,-348.296],[-393.556,-373.28],[-396.94,-373.28],[-396.94,-348.296]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-372.892,-348.296],[-372.892,-358.916],[-373.756,-362.246],[-376.114,-364.784],[-379.552,-365.756],[-383.044,-364.874],[-385.456,-362.48],[-386.32,-359.024],[-384.988,-358.268],[-384.412,-360.572],[-382.828,-362.156],[-380.524,-362.732],[-377.374,-361.472],[-376.168,-358.268],[-376.168,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-384.988,-348.296],[-384.988,-365.396],[-388.228,-365.396],[-388.228,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-357.772,-348.746],[-355.288,-350.996],[-354.244,-354.272],[-354.244,-359.42],[-355.306,-362.714],[-357.808,-364.946],[-361.3,-365.756],[-365.512,-364.568],[-368.482,-361.364],[-369.58,-356.828],[-368.482,-352.292],[-365.512,-349.106],[-361.3,-347.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-363.586,-351.734],[-365.53,-353.804],[-366.232,-356.864],[-365.53,-359.906],[-363.604,-361.958],[-360.76,-362.696],[-357.916,-361.94],[-356.008,-359.87],[-355.324,-356.828],[-356.008,-353.822],[-357.916,-351.752],[-360.76,-350.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-352.264,-374],[-355.54,-374],[-355.54,-361.22],[-354.928,-357.08],[-355.54,-352.904],[-355.54,-348.296],[-352.264,-348.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-335.218,-349.124],[-331.996,-352.346],[-330.808,-356.9],[-331.996,-361.4],[-335.218,-364.586],[-339.772,-365.756],[-344.272,-364.568],[-347.476,-361.382],[-348.664,-356.9],[-347.476,-352.346],[-344.272,-349.124],[-339.772,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-342.616,-351.824],[-344.596,-353.894],[-345.316,-356.9],[-344.596,-359.852],[-342.616,-361.886],[-339.772,-362.624],[-336.874,-361.886],[-334.894,-359.852],[-334.156,-356.9],[-334.876,-353.894],[-336.856,-351.824],[-339.772,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-311.872,-348.296],[-311.872,-358.916],[-312.736,-362.246],[-315.094,-364.784],[-318.532,-365.756],[-322.024,-364.874],[-324.436,-362.48],[-325.3,-359.024],[-323.968,-358.268],[-323.392,-360.572],[-321.808,-362.156],[-319.504,-362.732],[-316.354,-361.472],[-315.148,-358.268],[-315.148,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-323.968,-348.296],[-323.968,-365.396],[-327.208,-365.396],[-327.208,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-295.78,-348.692],[-292.756,-350.888],[-294.844,-353.012],[-296.914,-351.5],[-299.56,-350.996],[-302.62,-351.734],[-304.672,-353.822],[-305.392,-356.972],[-304.708,-360.032],[-302.764,-362.048],[-299.848,-362.768],[-297.148,-362.102],[-295.42,-360.23],[-294.808,-357.296],[-293.62,-358.34],[-306.328,-358.34],[-306.328,-355.64],[-291.892,-355.64],[-291.748,-356.558],[-291.712,-357.332],[-292.738,-361.688],[-295.6,-364.676],[-299.776,-365.756],[-304.258,-364.586],[-307.426,-361.4],[-308.596,-356.864],[-307.408,-352.292],[-304.186,-349.106],[-299.56,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-278.158,-349.34],[-276.448,-353.156],[-277.114,-355.712],[-278.824,-357.26],[-281.02,-358.178],[-283.234,-358.844],[-284.944,-359.636],[-285.592,-360.968],[-284.854,-362.3],[-282.712,-362.804],[-280.336,-362.3],[-278.536,-360.86],[-276.448,-362.948],[-279.022,-365.054],[-282.604,-365.756],[-285.88,-365.144],[-287.986,-363.398],[-288.724,-360.716],[-288.058,-358.214],[-286.348,-356.72],[-284.134,-355.856],[-281.92,-355.19],[-280.21,-354.326],[-279.544,-352.868],[-280.372,-351.41],[-282.712,-350.888],[-285.448,-351.446],[-287.608,-353.156],[-289.696,-351.068],[-287.842,-349.394],[-285.484,-348.314],[-282.748,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-269.536,-348.296],[-269.536,-365.396],[-272.812,-365.396],[-272.812,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-269.68,-369.41],[-269.104,-370.904],[-269.68,-372.362],[-271.156,-372.956],[-272.632,-372.362],[-273.208,-370.904],[-272.632,-369.41],[-271.156,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-253.984,-348.746],[-251.518,-350.996],[-250.492,-354.272],[-250.492,-359.42],[-251.536,-362.714],[-254.002,-364.946],[-257.476,-365.756],[-261.742,-364.568],[-264.73,-361.364],[-265.828,-356.828],[-264.73,-352.292],[-261.742,-349.106],[-257.476,-347.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-259.816,-351.752],[-261.778,-353.822],[-262.48,-356.864],[-261.778,-359.87],[-259.834,-361.94],[-256.972,-362.696],[-254.146,-361.958],[-252.256,-359.888],[-251.572,-356.828],[-253.048,-352.634],[-256.936,-350.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-248.512,-348.296],[-248.512,-365.396],[-251.788,-365.396],[-251.788,-361.22],[-251.176,-357.08],[-251.788,-352.904],[-251.788,-348.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-233.068,-348.296],[-233.068,-365.396],[-236.344,-365.396],[-236.344,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-233.212,-369.41],[-232.636,-370.904],[-233.212,-372.362],[-234.688,-372.956],[-236.164,-372.362],[-236.74,-370.904],[-236.164,-369.41],[-234.688,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-218.254,-349.34],[-216.544,-353.156],[-217.21,-355.712],[-218.92,-357.26],[-221.116,-358.178],[-223.33,-358.844],[-225.04,-359.636],[-225.688,-360.968],[-224.95,-362.3],[-222.808,-362.804],[-220.432,-362.3],[-218.632,-360.86],[-216.544,-362.948],[-219.118,-365.054],[-222.7,-365.756],[-225.976,-365.144],[-228.082,-363.398],[-228.82,-360.716],[-228.154,-358.214],[-226.444,-356.72],[-224.23,-355.856],[-222.016,-355.19],[-220.306,-354.326],[-219.64,-352.868],[-220.468,-351.41],[-222.808,-350.888],[-225.544,-351.446],[-227.704,-353.156],[-229.792,-351.068],[-227.938,-349.394],[-225.58,-348.314],[-222.844,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-193.954,-348.692],[-191.056,-350.816],[-193.18,-352.976],[-195.142,-351.554],[-197.644,-351.068],[-200.524,-351.824],[-202.504,-353.876],[-203.224,-356.864],[-202.504,-359.852],[-200.524,-361.886],[-197.644,-362.624],[-195.16,-362.138],[-193.216,-360.716],[-191.056,-362.876],[-193.972,-365.018],[-197.644,-365.756],[-202.198,-364.586],[-205.402,-361.4],[-206.572,-356.864],[-205.402,-352.346],[-202.198,-349.124],[-197.644,-347.936]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-177.16,-348.926],[-174.568,-351.536],[-173.632,-355.46],[-173.632,-365.396],[-176.872,-365.396],[-176.872,-355.604],[-177.952,-352.274],[-180.94,-351.068],[-183.136,-351.608],[-184.558,-353.174],[-185.044,-355.604],[-185.044,-365.396],[-188.284,-365.396],[-188.284,-355.46],[-187.348,-351.536],[-184.738,-348.926],[-180.94,-348.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-166.036,-348.296],[-166.036,-365.396],[-169.276,-365.396],[-169.276,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-164.884,-361.544],[-161.932,-362.696],[-160.42,-362.444],[-159.232,-361.616],[-157.108,-363.812],[-159.052,-365.306],[-161.392,-365.756],[-165.748,-363.812],[-167.26,-358.592],[-166.036,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-151.528,-348.296],[-151.528,-365.396],[-154.768,-365.396],[-154.768,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-150.376,-361.544],[-147.424,-362.696],[-145.912,-362.444],[-144.724,-361.616],[-142.6,-363.812],[-144.544,-365.306],[-146.884,-365.756],[-151.24,-363.812],[-152.752,-358.592],[-151.528,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-129.172,-348.692],[-126.148,-350.888],[-128.236,-353.012],[-130.306,-351.5],[-132.952,-350.996],[-136.012,-351.734],[-138.064,-353.822],[-138.784,-356.972],[-138.1,-360.032],[-136.156,-362.048],[-133.24,-362.768],[-130.54,-362.102],[-128.812,-360.23],[-128.2,-357.296],[-127.012,-358.34],[-139.72,-358.34],[-139.72,-355.64],[-125.284,-355.64],[-125.14,-356.558],[-125.104,-357.332],[-126.13,-361.688],[-128.992,-364.676],[-133.168,-365.756],[-137.65,-364.586],[-140.818,-361.4],[-141.988,-356.864],[-140.8,-352.292],[-137.578,-349.106],[-132.952,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-106.24,-348.296],[-106.24,-358.916],[-107.104,-362.246],[-109.462,-364.784],[-112.9,-365.756],[-116.392,-364.874],[-118.804,-362.48],[-119.668,-359.024],[-118.336,-358.268],[-117.76,-360.572],[-116.176,-362.156],[-113.872,-362.732],[-110.722,-361.472],[-109.516,-358.268],[-109.516,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-118.336,-348.296],[-118.336,-365.396],[-121.576,-365.396],[-121.576,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-96.196,-348.296],[-96.196,-372.56],[-99.436,-372.56],[-99.436,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-91.984,-362.444],[-91.984,-365.396],[-103.648,-365.396],[-103.648,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-85.576,-348.296],[-85.576,-374],[-88.816,-374],[-88.816,-348.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-73.264,-348.152],[-65.272,-365.396],[-68.872,-365.396],[-74.668,-351.896],[-73.516,-351.896],[-79.024,-365.396],[-82.624,-365.396],[-75.208,-348.152]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-76.504,-341.132],[-73.264,-348.152],[-75.1,-351.464],[-80.104,-341.132]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-44.176,-348.926],[-41.584,-351.536],[-40.648,-355.46],[-40.648,-365.396],[-43.888,-365.396],[-43.888,-355.604],[-44.968,-352.274],[-47.956,-351.068],[-50.152,-351.608],[-51.574,-353.174],[-52.06,-355.604],[-52.06,-365.396],[-55.3,-365.396],[-55.3,-355.46],[-54.364,-351.536],[-51.754,-348.926],[-47.956,-348.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-20.956,-348.296],[-20.956,-358.916],[-21.82,-362.246],[-24.178,-364.784],[-27.616,-365.756],[-31.108,-364.874],[-33.52,-362.48],[-34.384,-359.024],[-33.052,-358.268],[-32.476,-360.572],[-30.892,-362.156],[-28.588,-362.732],[-25.438,-361.472],[-24.232,-358.268],[-24.232,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-33.052,-348.296],[-33.052,-365.396],[-36.292,-365.396],[-36.292,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-5.836,-348.746],[-3.352,-350.996],[-2.308,-354.272],[-2.308,-359.42],[-3.37,-362.714],[-5.872,-364.946],[-9.364,-365.756],[-13.576,-364.568],[-16.546,-361.364],[-17.644,-356.828],[-16.546,-352.292],[-13.576,-349.106],[-9.364,-347.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-11.65,-351.734],[-13.594,-353.804],[-14.296,-356.864],[-13.594,-359.906],[-11.668,-361.958],[-8.824,-362.696],[-5.98,-361.94],[-4.072,-359.87],[-3.388,-356.828],[-4.072,-353.822],[-5.98,-351.752],[-8.824,-350.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-0.328,-374],[-3.604,-374],[-3.604,-361.22],[-2.992,-357.08],[-3.604,-352.904],[-3.604,-348.296],[-0.328,-348.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[16.088,-348.692],[19.112,-350.888],[17.024,-353.012],[14.954,-351.5],[12.308,-350.996],[9.248,-351.734],[7.196,-353.822],[6.476,-356.972],[7.16,-360.032],[9.104,-362.048],[12.02,-362.768],[14.72,-362.102],[16.448,-360.23],[17.06,-357.296],[18.248,-358.34],[5.54,-358.34],[5.54,-355.64],[19.976,-355.64],[20.12,-356.558],[20.156,-357.332],[19.13,-361.688],[16.268,-364.676],[12.092,-365.756],[7.61,-364.586],[4.442,-361.4],[3.272,-356.864],[4.46,-352.292],[7.682,-349.106],[12.308,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[26.924,-348.296],[26.924,-365.396],[23.684,-365.396],[23.684,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[28.076,-361.544],[31.028,-362.696],[32.54,-362.444],[33.728,-361.616],[35.852,-363.812],[33.908,-365.306],[31.568,-365.756],[27.212,-363.812],[25.7,-358.592],[26.924,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[52.988,-348.296],[57.956,-361.184],[56.768,-361.184],[61.7,-348.296],[63.608,-348.296],[70.34,-365.396],[66.956,-365.396],[62.06,-352.076],[63.14,-352.076],[58.28,-365.396],[56.408,-365.396],[51.548,-352.076],[52.628,-352.076],[47.732,-365.396],[44.348,-365.396],[51.08,-348.296]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[76.208,-348.296],[76.208,-365.396],[72.932,-365.396],[72.932,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[76.064,-369.41],[76.64,-370.904],[76.064,-372.362],[74.588,-372.956],[73.112,-372.362],[72.536,-370.904],[73.112,-369.41],[74.588,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[96.332,-348.296],[96.332,-358.916],[95.468,-362.246],[93.11,-364.784],[89.672,-365.756],[86.18,-364.874],[83.768,-362.48],[82.904,-359.024],[84.236,-358.268],[84.812,-360.572],[86.396,-362.156],[88.7,-362.732],[91.85,-361.472],[93.056,-358.268],[93.056,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[84.236,-348.296],[84.236,-365.396],[80.996,-365.396],[80.996,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[111.452,-348.746],[113.936,-350.996],[114.98,-354.272],[114.98,-359.42],[113.918,-362.714],[111.416,-364.946],[107.924,-365.756],[103.712,-364.568],[100.742,-361.364],[99.644,-356.828],[100.742,-352.292],[103.712,-349.106],[107.924,-347.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[105.638,-351.734],[103.694,-353.804],[102.992,-356.864],[103.694,-359.906],[105.62,-361.958],[108.464,-362.696],[111.308,-361.94],[113.216,-359.87],[113.9,-356.828],[113.216,-353.822],[111.308,-351.752],[108.464,-350.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[116.96,-374],[113.684,-374],[113.684,-361.22],[114.296,-357.08],[113.684,-352.904],[113.684,-348.296],[116.96,-348.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[133.376,-348.692],[136.4,-350.888],[134.312,-353.012],[132.242,-351.5],[129.596,-350.996],[126.536,-351.734],[124.484,-353.822],[123.764,-356.972],[124.448,-360.032],[126.392,-362.048],[129.308,-362.768],[132.008,-362.102],[133.736,-360.23],[134.348,-357.296],[135.536,-358.34],[122.828,-358.34],[122.828,-355.64],[137.264,-355.64],[137.408,-356.558],[137.444,-357.332],[136.418,-361.688],[133.556,-364.676],[129.38,-365.756],[124.898,-364.586],[121.73,-361.4],[120.56,-356.864],[121.748,-352.292],[124.97,-349.106],[129.596,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[150.998,-349.34],[152.708,-353.156],[152.042,-355.712],[150.332,-357.26],[148.136,-358.178],[145.922,-358.844],[144.212,-359.636],[143.564,-360.968],[144.302,-362.3],[146.444,-362.804],[148.82,-362.3],[150.62,-360.86],[152.708,-362.948],[150.134,-365.054],[146.552,-365.756],[143.276,-365.144],[141.17,-363.398],[140.432,-360.716],[141.098,-358.214],[142.808,-356.72],[145.022,-355.856],[147.236,-355.19],[148.946,-354.326],[149.612,-352.868],[148.784,-351.41],[146.444,-350.888],[143.708,-351.446],[141.548,-353.156],[139.46,-351.068],[141.314,-349.394],[143.672,-348.314],[146.408,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[169.574,-349.106],[172.544,-352.292],[173.624,-356.828],[172.544,-361.364],[169.574,-364.568],[165.344,-365.756],[161.87,-364.946],[159.35,-362.714],[158.288,-359.42],[158.288,-354.272],[159.332,-350.996],[161.834,-348.746],[165.344,-347.936]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[159.584,-341.132],[159.584,-352.58],[158.972,-356.756],[159.584,-360.896],[159.584,-365.396],[156.344,-365.396],[156.344,-341.132]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[161.978,-351.752],[160.07,-353.822],[159.404,-356.828],[160.088,-359.87],[161.996,-361.94],[164.804,-362.696],[167.648,-361.94],[169.574,-359.87],[170.276,-356.864],[169.574,-353.822],[167.648,-351.752],[164.804,-350.996]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[180.536,-348.296],[180.536,-365.396],[177.296,-365.396],[177.296,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[181.688,-361.544],[184.64,-362.696],[186.152,-362.444],[187.34,-361.616],[189.464,-363.812],[187.52,-365.306],[185.18,-365.756],[180.824,-363.812],[179.312,-358.592],[180.536,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[202.892,-348.692],[205.916,-350.888],[203.828,-353.012],[201.758,-351.5],[199.112,-350.996],[196.052,-351.734],[194,-353.822],[193.28,-356.972],[193.964,-360.032],[195.908,-362.048],[198.824,-362.768],[201.524,-362.102],[203.252,-360.23],[203.864,-357.296],[205.052,-358.34],[192.344,-358.34],[192.344,-355.64],[206.78,-355.64],[206.924,-356.558],[206.96,-357.332],[205.934,-361.688],[203.072,-364.676],[198.896,-365.756],[194.414,-364.586],[191.246,-361.4],[190.076,-356.864],[191.264,-352.292],[194.486,-349.106],[199.112,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[221.252,-348.746],[223.718,-350.996],[224.744,-354.272],[224.744,-359.42],[223.7,-362.714],[221.234,-364.946],[217.76,-365.756],[213.494,-364.568],[210.506,-361.364],[209.408,-356.828],[210.506,-352.292],[213.494,-349.106],[217.76,-347.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[215.42,-351.752],[213.458,-353.822],[212.756,-356.864],[213.458,-359.87],[215.402,-361.94],[218.264,-362.696],[221.09,-361.958],[222.98,-359.888],[223.664,-356.828],[222.188,-352.634],[218.3,-350.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[226.724,-348.296],[226.724,-365.396],[223.448,-365.396],[223.448,-361.22],[224.06,-357.08],[223.448,-352.904],[223.448,-348.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[242.168,-348.746],[244.652,-350.996],[245.696,-354.272],[245.696,-359.42],[244.634,-362.714],[242.132,-364.946],[238.64,-365.756],[234.428,-364.568],[231.458,-361.364],[230.36,-356.828],[231.458,-352.292],[234.428,-349.106],[238.64,-347.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[236.354,-351.734],[234.41,-353.804],[233.708,-356.864],[234.41,-359.906],[236.336,-361.958],[239.18,-362.696],[242.024,-361.94],[243.932,-359.87],[244.616,-356.828],[243.932,-353.822],[242.024,-351.752],[239.18,-350.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[247.676,-374],[244.4,-374],[244.4,-361.22],[245.012,-357.08],[244.4,-352.904],[244.4,-348.296],[247.676,-348.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[270.536,-348.926],[273.128,-351.536],[274.064,-355.46],[274.064,-365.396],[270.824,-365.396],[270.824,-355.604],[269.744,-352.274],[266.756,-351.068],[264.56,-351.608],[263.138,-353.174],[262.652,-355.604],[262.652,-365.396],[259.412,-365.396],[259.412,-355.46],[260.348,-351.536],[262.958,-348.926],[266.756,-348.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[293.756,-348.296],[293.756,-358.916],[292.892,-362.246],[290.534,-364.784],[287.096,-365.756],[283.604,-364.874],[281.192,-362.48],[280.328,-359.024],[281.66,-358.268],[282.236,-360.572],[283.82,-362.156],[286.124,-362.732],[289.274,-361.472],[290.48,-358.268],[290.48,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[281.66,-348.296],[281.66,-365.396],[278.42,-365.396],[278.42,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[301.388,-348.296],[301.388,-365.396],[298.148,-365.396],[298.148,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[302.54,-361.544],[305.492,-362.696],[307.004,-362.444],[308.192,-361.616],[310.316,-363.812],[308.372,-365.306],[306.032,-365.756],[301.676,-363.812],[300.164,-358.592],[301.388,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[323.744,-348.692],[326.768,-350.888],[324.68,-353.012],[322.61,-351.5],[319.964,-350.996],[316.904,-351.734],[314.852,-353.822],[314.132,-356.972],[314.816,-360.032],[316.76,-362.048],[319.676,-362.768],[322.376,-362.102],[324.104,-360.23],[324.716,-357.296],[325.904,-358.34],[313.196,-358.34],[313.196,-355.64],[327.632,-355.64],[327.776,-356.558],[327.812,-357.332],[326.786,-361.688],[323.924,-364.676],[319.748,-365.756],[315.266,-364.586],[312.098,-361.4],[310.928,-356.864],[312.116,-352.292],[315.338,-349.106],[319.964,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[341.366,-349.34],[343.076,-353.156],[342.41,-355.712],[340.7,-357.26],[338.504,-358.178],[336.29,-358.844],[334.58,-359.636],[333.932,-360.968],[334.67,-362.3],[336.812,-362.804],[339.188,-362.3],[340.988,-360.86],[343.076,-362.948],[340.502,-365.054],[336.92,-365.756],[333.644,-365.144],[331.538,-363.398],[330.8,-360.716],[331.466,-358.214],[333.176,-356.72],[335.39,-355.856],[337.604,-355.19],[339.314,-354.326],[339.98,-352.868],[339.152,-351.41],[336.812,-350.888],[334.076,-351.446],[331.916,-353.156],[329.828,-351.068],[331.682,-349.394],[334.04,-348.314],[336.776,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[352.58,-348.296],[352.58,-372.56],[349.34,-372.56],[349.34,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[356.792,-362.444],[356.792,-365.396],[345.128,-365.396],[345.128,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[378.14,-348.746],[380.624,-350.996],[381.668,-354.272],[381.668,-359.42],[380.606,-362.714],[378.104,-364.946],[374.612,-365.756],[370.4,-364.568],[367.43,-361.364],[366.332,-356.828],[367.43,-352.292],[370.4,-349.106],[374.612,-347.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[372.326,-351.734],[370.382,-353.804],[369.68,-356.864],[370.382,-359.906],[372.308,-361.958],[375.152,-362.696],[377.996,-361.94],[379.904,-359.87],[380.588,-356.828],[379.904,-353.822],[377.996,-351.752],[375.152,-350.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[383.648,-374],[380.372,-374],[380.372,-361.22],[380.984,-357.08],[380.372,-352.904],[380.372,-348.296],[383.648,-348.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[399.056,-348.926],[401.648,-351.536],[402.584,-355.46],[402.584,-365.396],[399.344,-365.396],[399.344,-355.604],[398.264,-352.274],[395.276,-351.068],[393.08,-351.608],[391.658,-353.174],[391.172,-355.604],[391.172,-365.396],[387.932,-365.396],[387.932,-355.46],[388.868,-351.536],[391.478,-348.926],[395.276,-348.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[418.64,-348.692],[421.664,-350.888],[419.576,-353.012],[417.506,-351.5],[414.86,-350.996],[411.8,-351.734],[409.748,-353.822],[409.028,-356.972],[409.712,-360.032],[411.656,-362.048],[414.572,-362.768],[417.272,-362.102],[419,-360.23],[419.612,-357.296],[420.8,-358.34],[408.092,-358.34],[408.092,-355.64],[422.528,-355.64],[422.672,-356.558],[422.708,-357.332],[421.682,-361.688],[418.82,-364.676],[414.644,-365.756],[410.162,-364.586],[406.994,-361.4],[405.824,-356.864],[407.012,-352.292],[410.234,-349.106],[414.86,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[439.556,-348.296],[439.556,-372.56],[436.316,-372.56],[436.316,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[443.768,-362.444],[443.768,-365.396],[432.104,-365.396],[432.104,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[458.726,-349.124],[461.948,-352.346],[463.136,-356.9],[461.948,-361.4],[458.726,-364.586],[454.172,-365.756],[449.672,-364.568],[446.468,-361.382],[445.28,-356.9],[446.468,-352.346],[449.672,-349.124],[454.172,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[451.328,-351.824],[449.348,-353.894],[448.628,-356.9],[449.348,-359.852],[451.328,-361.886],[454.172,-362.624],[457.07,-361.886],[459.05,-359.852],[459.788,-356.9],[459.068,-353.894],[457.088,-351.824],[454.172,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[485.978,-341.798],[489.146,-344.678],[490.28,-348.98],[490.28,-365.396],[487.04,-365.396],[487.04,-360.896],[487.616,-357.08],[487.04,-353.228],[487.04,-348.98],[485.492,-345.254],[481.352,-343.868],[477.932,-344.57],[475.448,-346.604],[473.324,-344.48],[476.6,-341.744],[481.28,-340.772]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[484.808,-349.376],[487.274,-351.59],[488.3,-354.884],[488.3,-359.42],[487.292,-362.75],[484.826,-364.964],[481.244,-365.756],[477.068,-364.622],[474.134,-361.562],[473.072,-357.188],[474.152,-352.778],[477.086,-349.7],[481.28,-348.584]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[479.066,-352.346],[477.122,-354.308],[476.42,-357.188],[477.122,-360.05],[479.048,-361.994],[481.892,-362.696],[484.682,-361.994],[486.554,-360.05],[487.22,-357.152],[486.554,-354.254],[484.7,-352.328],[481.892,-351.644]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[507.326,-349.124],[510.548,-352.346],[511.736,-356.9],[510.548,-361.4],[507.326,-364.586],[502.772,-365.756],[498.272,-364.568],[495.068,-361.382],[493.88,-356.9],[495.068,-352.346],[498.272,-349.124],[502.772,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[499.928,-351.824],[497.948,-353.894],[497.228,-356.9],[497.948,-359.852],[499.928,-361.886],[502.772,-362.624],[505.67,-361.886],[507.65,-359.852],[508.388,-356.9],[507.668,-353.894],[505.688,-351.824],[502.772,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[522.464,-348.296],[530.312,-365.396],[526.856,-365.396],[520.52,-350.96],[522.608,-350.96],[516.308,-365.396],[512.708,-365.396],[520.556,-348.296]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[544.136,-348.692],[547.16,-350.888],[545.072,-353.012],[543.002,-351.5],[540.356,-350.996],[537.296,-351.734],[535.244,-353.822],[534.524,-356.972],[535.208,-360.032],[537.152,-362.048],[540.068,-362.768],[542.768,-362.102],[544.496,-360.23],[545.108,-357.296],[546.296,-358.34],[533.588,-358.34],[533.588,-355.64],[548.024,-355.64],[548.168,-356.558],[548.204,-357.332],[547.178,-361.688],[544.316,-364.676],[540.14,-365.756],[535.658,-364.586],[532.49,-361.4],[531.32,-356.864],[532.508,-352.292],[535.73,-349.106],[540.356,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[554.972,-348.296],[554.972,-365.396],[551.732,-365.396],[551.732,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[556.124,-361.544],[559.076,-362.696],[560.588,-362.444],[561.776,-361.616],[563.9,-363.812],[561.956,-365.306],[559.616,-365.756],[555.26,-363.812],[553.748,-358.592],[554.972,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[581.576,-348.296],[581.576,-358.916],[580.712,-362.246],[578.354,-364.784],[574.916,-365.756],[571.424,-364.874],[569.012,-362.48],[568.148,-359.024],[569.48,-358.268],[570.056,-360.572],[571.64,-362.156],[573.944,-362.732],[577.094,-361.472],[578.3,-358.268],[578.3,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[569.48,-348.296],[569.48,-365.396],[566.24,-365.396],[566.24,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[589.208,-348.296],[589.208,-365.396],[585.968,-365.396],[585.968,-348.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[600.764,-348.296],[600.764,-359.312],[599.918,-362.732],[597.614,-364.964],[594.356,-365.756],[591.044,-364.946],[588.722,-362.696],[587.876,-359.312],[589.208,-358.628],[589.784,-360.824],[591.296,-362.228],[593.42,-362.732],[596.354,-361.634],[597.524,-358.628],[597.524,-348.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[612.356,-348.296],[612.356,-359.276],[611.474,-362.732],[609.116,-364.964],[605.768,-365.756],[602.456,-364.946],[599.99,-362.714],[598.928,-359.312],[600.764,-358.628],[601.34,-360.824],[602.87,-362.228],[605.012,-362.732],[607.91,-361.634],[609.08,-358.628],[609.08,-348.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[628.448,-348.692],[631.472,-350.888],[629.384,-353.012],[627.314,-351.5],[624.668,-350.996],[621.608,-351.734],[619.556,-353.822],[618.836,-356.972],[619.52,-360.032],[621.464,-362.048],[624.38,-362.768],[627.08,-362.102],[628.808,-360.23],[629.42,-357.296],[630.608,-358.34],[617.9,-358.34],[617.9,-355.64],[632.336,-355.64],[632.48,-356.558],[632.516,-357.332],[631.49,-361.688],[628.628,-364.676],[624.452,-365.756],[619.97,-364.586],[616.802,-361.4],[615.632,-356.864],[616.82,-352.292],[620.042,-349.106],[624.668,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[651.38,-348.296],[651.38,-358.916],[650.516,-362.246],[648.158,-364.784],[644.72,-365.756],[641.228,-364.874],[638.816,-362.48],[637.952,-359.024],[639.284,-358.268],[639.86,-360.572],[641.444,-362.156],[643.748,-362.732],[646.898,-361.472],[648.104,-358.268],[648.104,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[639.284,-348.296],[639.284,-365.396],[636.044,-365.396],[636.044,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[661.424,-348.296],[661.424,-372.56],[658.184,-372.56],[658.184,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[665.636,-362.444],[665.636,-365.396],[653.972,-365.396],[653.972,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.288],[0.48,0.48],[0.624,0],[0.468,-0.48],[0,-0.672],[-0.42,-0.408],[-0.504,0],[-0.18,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.576],[0.108,-0.372],[0,-0.672],[-0.48,-0.48],[-0.672,0],[-0.468,0.48],[0,0.648],[0.42,0.408],[0.264,0],[0.18,-0.168],[0,0],[0,0],[0,0]],"v":[[671.036,-364.316],[673.412,-368.78],[674.042,-370.202],[674.204,-371.192],[673.484,-372.92],[671.828,-373.64],[670.118,-372.92],[669.416,-371.192],[670.046,-369.608],[671.432,-368.996],[672.098,-369.248],[672.548,-369.896],[671.396,-369.608],[669.164,-365.324]],"c":true},"ix":2},"nm":"’","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"’","np":3,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[685.886,-349.34],[687.596,-353.156],[686.93,-355.712],[685.22,-357.26],[683.024,-358.178],[680.81,-358.844],[679.1,-359.636],[678.452,-360.968],[679.19,-362.3],[681.332,-362.804],[683.708,-362.3],[685.508,-360.86],[687.596,-362.948],[685.022,-365.054],[681.44,-365.756],[678.164,-365.144],[676.058,-363.398],[675.32,-360.716],[675.986,-358.214],[677.696,-356.72],[679.91,-355.856],[682.124,-355.19],[683.834,-354.326],[684.5,-352.868],[683.672,-351.41],[681.332,-350.888],[678.596,-351.446],[676.436,-353.156],[674.348,-351.068],[676.202,-349.394],[678.56,-348.314],[681.296,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[709.376,-348.926],[711.968,-351.536],[712.904,-355.46],[712.904,-365.396],[709.664,-365.396],[709.664,-355.604],[708.584,-352.274],[705.596,-351.068],[703.4,-351.608],[701.978,-353.174],[701.492,-355.604],[701.492,-365.396],[698.252,-365.396],[698.252,-355.46],[699.188,-351.536],[701.798,-348.926],[705.596,-348.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[732.596,-348.296],[732.596,-358.916],[731.732,-362.246],[729.374,-364.784],[725.936,-365.756],[722.444,-364.874],[720.032,-362.48],[719.168,-359.024],[720.5,-358.268],[721.076,-360.572],[722.66,-362.156],[724.964,-362.732],[728.114,-361.472],[729.32,-358.268],[729.32,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[720.5,-348.296],[720.5,-365.396],[717.26,-365.396],[717.26,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[742.46,-348.296],[742.46,-367.952],[743.306,-370.418],[745.7,-371.3],[747.104,-371.048],[748.148,-370.292],[750.272,-372.38],[748.292,-373.856],[745.736,-374.36],[742.316,-373.532],[740.012,-371.264],[739.184,-367.952],[739.184,-348.296]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[747.896,-362.444],[747.896,-365.396],[735.008,-365.396],[735.008,-362.444]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[760.928,-348.746],[763.394,-350.996],[764.42,-354.272],[764.42,-359.42],[763.376,-362.714],[760.91,-364.946],[757.436,-365.756],[753.17,-364.568],[750.182,-361.364],[749.084,-356.828],[750.182,-352.292],[753.17,-349.106],[757.436,-347.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[755.096,-351.752],[753.134,-353.822],[752.432,-356.864],[753.134,-359.87],[755.078,-361.94],[757.94,-362.696],[760.766,-361.958],[762.656,-359.888],[763.34,-356.828],[761.864,-352.634],[757.976,-350.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[766.4,-348.296],[766.4,-365.396],[763.124,-365.396],[763.124,-361.22],[763.736,-357.08],[763.124,-352.904],[763.124,-348.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[774.392,-348.296],[774.392,-365.396],[771.116,-365.396],[771.116,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[774.248,-369.41],[774.824,-370.904],[774.248,-372.362],[772.772,-372.956],[771.296,-372.362],[770.72,-370.904],[771.296,-369.41],[772.772,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[782.42,-348.296],[782.42,-365.396],[779.18,-365.396],[779.18,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[783.572,-361.544],[786.524,-362.696],[788.036,-362.444],[789.224,-361.616],[791.348,-363.812],[789.404,-365.306],[787.064,-365.756],[782.708,-363.812],[781.196,-358.592],[782.42,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-816.394,-305.906],[-813.424,-309.092],[-812.344,-313.628],[-813.424,-318.164],[-816.394,-321.368],[-820.624,-322.556],[-824.098,-321.746],[-826.618,-319.514],[-827.68,-316.22],[-827.68,-311.072],[-826.636,-307.796],[-824.134,-305.546],[-820.624,-304.736]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-826.384,-297.932],[-826.384,-309.38],[-826.996,-313.556],[-826.384,-317.696],[-826.384,-322.196],[-829.624,-322.196],[-829.624,-297.932]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-823.99,-308.552],[-825.898,-310.622],[-826.564,-313.628],[-825.88,-316.67],[-823.972,-318.74],[-821.164,-319.496],[-818.32,-318.74],[-816.394,-316.67],[-815.692,-313.664],[-816.394,-310.622],[-818.32,-308.552],[-821.164,-307.796]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-796.342,-305.924],[-793.12,-309.146],[-791.932,-313.7],[-793.12,-318.2],[-796.342,-321.386],[-800.896,-322.556],[-805.396,-321.368],[-808.6,-318.182],[-809.788,-313.7],[-808.6,-309.146],[-805.396,-305.924],[-800.896,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-803.74,-308.624],[-805.72,-310.694],[-806.44,-313.7],[-805.72,-316.652],[-803.74,-318.686],[-800.896,-319.424],[-797.998,-318.686],[-796.018,-316.652],[-795.28,-313.7],[-796,-310.694],[-797.98,-308.624],[-800.896,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":91,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-785.092,-305.096],[-785.092,-330.8],[-788.332,-330.8],[-788.332,-305.096]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":92,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-777.064,-305.096],[-777.064,-322.196],[-780.34,-322.196],[-780.34,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-777.208,-326.21],[-776.632,-327.704],[-777.208,-329.162],[-778.684,-329.756],[-780.16,-329.162],[-780.736,-327.704],[-780.16,-326.21],[-778.684,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":93,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-760.774,-305.492],[-757.876,-307.616],[-760,-309.776],[-761.962,-308.354],[-764.464,-307.868],[-767.344,-308.624],[-769.324,-310.676],[-770.044,-313.664],[-769.324,-316.652],[-767.344,-318.686],[-764.464,-319.424],[-761.98,-318.938],[-760.036,-317.516],[-757.876,-319.676],[-760.792,-321.818],[-764.464,-322.556],[-769.018,-321.386],[-772.222,-318.2],[-773.392,-313.664],[-772.222,-309.146],[-769.018,-305.924],[-764.464,-304.736]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":94,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-751.396,-305.096],[-751.396,-322.196],[-754.672,-322.196],[-754.672,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-751.54,-326.21],[-750.964,-327.704],[-751.54,-329.162],[-753.016,-329.756],[-754.492,-329.162],[-755.068,-327.704],[-754.492,-326.21],[-753.016,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":95,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-734.908,-305.492],[-731.884,-307.688],[-733.972,-309.812],[-736.042,-308.3],[-738.688,-307.796],[-741.748,-308.534],[-743.8,-310.622],[-744.52,-313.772],[-743.836,-316.832],[-741.892,-318.848],[-738.976,-319.568],[-736.276,-318.902],[-734.548,-317.03],[-733.936,-314.096],[-732.748,-315.14],[-745.456,-315.14],[-745.456,-312.44],[-731.02,-312.44],[-730.876,-313.358],[-730.84,-314.132],[-731.866,-318.488],[-734.728,-321.476],[-738.904,-322.556],[-743.386,-321.386],[-746.554,-318.2],[-747.724,-313.664],[-746.536,-309.092],[-743.314,-305.906],[-738.688,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":96,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-717.286,-306.14],[-715.576,-309.956],[-716.242,-312.512],[-717.952,-314.06],[-720.148,-314.978],[-722.362,-315.644],[-724.072,-316.436],[-724.72,-317.768],[-723.982,-319.1],[-721.84,-319.604],[-719.464,-319.1],[-717.664,-317.66],[-715.576,-319.748],[-718.15,-321.854],[-721.732,-322.556],[-725.008,-321.944],[-727.114,-320.198],[-727.852,-317.516],[-727.186,-315.014],[-725.476,-313.52],[-723.262,-312.656],[-721.048,-311.99],[-719.338,-311.126],[-718.672,-309.668],[-719.5,-308.21],[-721.84,-307.688],[-724.576,-308.246],[-726.736,-309.956],[-728.824,-307.868],[-726.97,-306.194],[-724.612,-305.114],[-721.876,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":97,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.264],[0.48,0.468],[0.624,0],[0.456,-0.468],[0,-0.696],[-0.42,-0.42],[-0.504,0],[-0.192,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.6],[0.108,-0.372],[0,-0.696],[-0.48,-0.468],[-0.696,0],[-0.456,0.468],[0,0.624],[0.42,0.42],[0.24,0],[0.192,-0.168],[0,0],[0,0],[0,0]],"v":[[-709.924,-300.128],[-707.512,-304.592],[-706.882,-306.05],[-706.72,-307.004],[-707.44,-308.75],[-709.096,-309.452],[-710.824,-308.75],[-711.508,-307.004],[-710.878,-305.438],[-709.492,-304.808],[-708.844,-305.06],[-708.376,-305.708],[-709.528,-305.42],[-711.76,-301.136]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":98,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-682.258,-305.924],[-679.036,-309.146],[-677.848,-313.7],[-679.036,-318.2],[-682.258,-321.386],[-686.812,-322.556],[-691.312,-321.368],[-694.516,-318.182],[-695.704,-313.7],[-694.516,-309.146],[-691.312,-305.924],[-686.812,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-689.656,-308.624],[-691.636,-310.694],[-692.356,-313.7],[-691.636,-316.652],[-689.656,-318.686],[-686.812,-319.424],[-683.914,-318.686],[-681.934,-316.652],[-681.196,-313.7],[-681.916,-310.694],[-683.896,-308.624],[-686.812,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":99,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-661.018,-305.906],[-658.048,-309.092],[-656.968,-313.628],[-658.048,-318.164],[-661.018,-321.368],[-665.248,-322.556],[-668.722,-321.746],[-671.242,-319.514],[-672.304,-316.22],[-672.304,-311.072],[-671.26,-307.796],[-668.758,-305.546],[-665.248,-304.736]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-671.008,-297.932],[-671.008,-309.38],[-671.62,-313.556],[-671.008,-317.696],[-671.008,-322.196],[-674.248,-322.196],[-674.248,-297.932]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-668.614,-308.552],[-670.522,-310.622],[-671.188,-313.628],[-670.504,-316.67],[-668.596,-318.74],[-665.788,-319.496],[-662.944,-318.74],[-661.018,-316.67],[-660.316,-313.664],[-661.018,-310.622],[-662.944,-308.552],[-665.788,-307.796]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":100,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-640.066,-305.906],[-637.096,-309.092],[-636.016,-313.628],[-637.096,-318.164],[-640.066,-321.368],[-644.296,-322.556],[-647.77,-321.746],[-650.29,-319.514],[-651.352,-316.22],[-651.352,-311.072],[-650.308,-307.796],[-647.806,-305.546],[-644.296,-304.736]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-650.056,-297.932],[-650.056,-309.38],[-650.668,-313.556],[-650.056,-317.696],[-650.056,-322.196],[-653.296,-322.196],[-653.296,-297.932]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-647.662,-308.552],[-649.57,-310.622],[-650.236,-313.628],[-649.552,-316.67],[-647.644,-318.74],[-644.836,-319.496],[-641.992,-318.74],[-640.066,-316.67],[-639.364,-313.664],[-640.066,-310.622],[-641.992,-308.552],[-644.836,-307.796]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":101,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-629.104,-305.096],[-629.104,-322.196],[-632.344,-322.196],[-632.344,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-627.952,-318.344],[-625,-319.496],[-623.488,-319.244],[-622.3,-318.416],[-620.176,-320.612],[-622.12,-322.106],[-624.46,-322.556],[-628.816,-320.612],[-630.328,-315.392],[-629.104,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":102,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-606.748,-305.492],[-603.724,-307.688],[-605.812,-309.812],[-607.882,-308.3],[-610.528,-307.796],[-613.588,-308.534],[-615.64,-310.622],[-616.36,-313.772],[-615.676,-316.832],[-613.732,-318.848],[-610.816,-319.568],[-608.116,-318.902],[-606.388,-317.03],[-605.776,-314.096],[-604.588,-315.14],[-617.296,-315.14],[-617.296,-312.44],[-602.86,-312.44],[-602.716,-313.358],[-602.68,-314.132],[-603.706,-318.488],[-606.568,-321.476],[-610.744,-322.556],[-615.226,-321.386],[-618.394,-318.2],[-619.564,-313.664],[-618.376,-309.092],[-615.154,-305.906],[-610.528,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":103,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-589.126,-306.14],[-587.416,-309.956],[-588.082,-312.512],[-589.792,-314.06],[-591.988,-314.978],[-594.202,-315.644],[-595.912,-316.436],[-596.56,-317.768],[-595.822,-319.1],[-593.68,-319.604],[-591.304,-319.1],[-589.504,-317.66],[-587.416,-319.748],[-589.99,-321.854],[-593.572,-322.556],[-596.848,-321.944],[-598.954,-320.198],[-599.692,-317.516],[-599.026,-315.014],[-597.316,-313.52],[-595.102,-312.656],[-592.888,-311.99],[-591.178,-311.126],[-590.512,-309.668],[-591.34,-308.21],[-593.68,-307.688],[-596.416,-308.246],[-598.576,-309.956],[-600.664,-307.868],[-598.81,-306.194],[-596.452,-305.114],[-593.716,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":104,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-573.754,-306.14],[-572.044,-309.956],[-572.71,-312.512],[-574.42,-314.06],[-576.616,-314.978],[-578.83,-315.644],[-580.54,-316.436],[-581.188,-317.768],[-580.45,-319.1],[-578.308,-319.604],[-575.932,-319.1],[-574.132,-317.66],[-572.044,-319.748],[-574.618,-321.854],[-578.2,-322.556],[-581.476,-321.944],[-583.582,-320.198],[-584.32,-317.516],[-583.654,-315.014],[-581.944,-313.52],[-579.73,-312.656],[-577.516,-311.99],[-575.806,-311.126],[-575.14,-309.668],[-575.968,-308.21],[-578.308,-307.688],[-581.044,-308.246],[-583.204,-309.956],[-585.292,-307.868],[-583.438,-306.194],[-581.08,-305.114],[-578.344,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":105,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-565.132,-305.096],[-565.132,-322.196],[-568.408,-322.196],[-568.408,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-565.276,-326.21],[-564.7,-327.704],[-565.276,-329.162],[-566.752,-329.756],[-568.228,-329.162],[-568.804,-327.704],[-568.228,-326.21],[-566.752,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":106,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-548.014,-305.924],[-544.792,-309.146],[-543.604,-313.7],[-544.792,-318.2],[-548.014,-321.386],[-552.568,-322.556],[-557.068,-321.368],[-560.272,-318.182],[-561.46,-313.7],[-560.272,-309.146],[-557.068,-305.924],[-552.568,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-555.412,-308.624],[-557.392,-310.694],[-558.112,-313.7],[-557.392,-316.652],[-555.412,-318.686],[-552.568,-319.424],[-549.67,-318.686],[-547.69,-316.652],[-546.952,-313.7],[-547.672,-310.694],[-549.652,-308.624],[-552.568,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":107,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-524.668,-305.096],[-524.668,-315.716],[-525.532,-319.046],[-527.89,-321.584],[-531.328,-322.556],[-534.82,-321.674],[-537.232,-319.28],[-538.096,-315.824],[-536.764,-315.068],[-536.188,-317.372],[-534.604,-318.956],[-532.3,-319.532],[-529.15,-318.272],[-527.944,-315.068],[-527.944,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-536.764,-305.096],[-536.764,-322.196],[-540.004,-322.196],[-540.004,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":108,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-502.06,-305.546],[-499.594,-307.796],[-498.568,-311.072],[-498.568,-316.22],[-499.612,-319.514],[-502.078,-321.746],[-505.552,-322.556],[-509.818,-321.368],[-512.806,-318.164],[-513.904,-313.628],[-512.806,-309.092],[-509.818,-305.906],[-505.552,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-507.892,-308.552],[-509.854,-310.622],[-510.556,-313.664],[-509.854,-316.67],[-507.91,-318.74],[-505.048,-319.496],[-502.222,-318.758],[-500.332,-316.688],[-499.648,-313.628],[-501.124,-309.434],[-505.012,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-496.588,-305.096],[-496.588,-322.196],[-499.864,-322.196],[-499.864,-318.02],[-499.252,-313.88],[-499.864,-309.704],[-499.864,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":109,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-476.536,-305.096],[-476.536,-315.716],[-477.4,-319.046],[-479.758,-321.584],[-483.196,-322.556],[-486.688,-321.674],[-489.1,-319.28],[-489.964,-315.824],[-488.632,-315.068],[-488.056,-317.372],[-486.472,-318.956],[-484.168,-319.532],[-481.018,-318.272],[-479.812,-315.068],[-479.812,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-488.632,-305.096],[-488.632,-322.196],[-491.872,-322.196],[-491.872,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":110,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-461.416,-305.546],[-458.932,-307.796],[-457.888,-311.072],[-457.888,-316.22],[-458.95,-319.514],[-461.452,-321.746],[-464.944,-322.556],[-469.156,-321.368],[-472.126,-318.164],[-473.224,-313.628],[-472.126,-309.092],[-469.156,-305.906],[-464.944,-304.736]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-467.23,-308.534],[-469.174,-310.604],[-469.876,-313.664],[-469.174,-316.706],[-467.248,-318.758],[-464.404,-319.496],[-461.56,-318.74],[-459.652,-316.67],[-458.968,-313.628],[-459.652,-310.622],[-461.56,-308.552],[-464.404,-307.796]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-455.908,-330.8],[-459.184,-330.8],[-459.184,-318.02],[-458.572,-313.88],[-459.184,-309.704],[-459.184,-305.096],[-455.908,-305.096]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":111,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-435.964,-305.096],[-428.116,-322.196],[-431.572,-322.196],[-437.908,-307.76],[-435.82,-307.76],[-442.12,-322.196],[-445.72,-322.196],[-437.872,-305.096]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":112,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-422.068,-305.096],[-422.068,-322.196],[-425.344,-322.196],[-425.344,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-422.212,-326.21],[-421.636,-327.704],[-422.212,-329.162],[-423.688,-329.756],[-425.164,-329.162],[-425.74,-327.704],[-425.164,-326.21],[-423.688,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":113,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-404.95,-305.924],[-401.728,-309.146],[-400.54,-313.7],[-401.728,-318.2],[-404.95,-321.386],[-409.504,-322.556],[-414.004,-321.368],[-417.208,-318.182],[-418.396,-313.7],[-417.208,-309.146],[-414.004,-305.924],[-409.504,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-412.348,-308.624],[-414.328,-310.694],[-415.048,-313.7],[-414.328,-316.652],[-412.348,-318.686],[-409.504,-319.424],[-406.606,-318.686],[-404.626,-316.652],[-403.888,-313.7],[-404.608,-310.694],[-406.588,-308.624],[-409.504,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":114,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-393.7,-305.096],[-393.7,-330.8],[-396.94,-330.8],[-396.94,-305.096]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":115,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-377.248,-305.492],[-374.224,-307.688],[-376.312,-309.812],[-378.382,-308.3],[-381.028,-307.796],[-384.088,-308.534],[-386.14,-310.622],[-386.86,-313.772],[-386.176,-316.832],[-384.232,-318.848],[-381.316,-319.568],[-378.616,-318.902],[-376.888,-317.03],[-376.276,-314.096],[-375.088,-315.14],[-387.796,-315.14],[-387.796,-312.44],[-373.36,-312.44],[-373.216,-313.358],[-373.18,-314.132],[-374.206,-318.488],[-377.068,-321.476],[-381.244,-322.556],[-385.726,-321.386],[-388.894,-318.2],[-390.064,-313.664],[-388.876,-309.092],[-385.654,-305.906],[-381.028,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":116,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-354.316,-305.096],[-354.316,-315.716],[-355.18,-319.046],[-357.538,-321.584],[-360.976,-322.556],[-364.468,-321.674],[-366.88,-319.28],[-367.744,-315.824],[-366.412,-315.068],[-365.836,-317.372],[-364.252,-318.956],[-361.948,-319.532],[-358.798,-318.272],[-357.592,-315.068],[-357.592,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-366.412,-305.096],[-366.412,-322.196],[-369.652,-322.196],[-369.652,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":117,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-338.422,-305.492],[-335.524,-307.616],[-337.648,-309.776],[-339.61,-308.354],[-342.112,-307.868],[-344.992,-308.624],[-346.972,-310.676],[-347.692,-313.664],[-346.972,-316.652],[-344.992,-318.686],[-342.112,-319.424],[-339.628,-318.938],[-337.684,-317.516],[-335.524,-319.676],[-338.44,-321.818],[-342.112,-322.556],[-346.666,-321.386],[-349.87,-318.2],[-351.04,-313.664],[-349.87,-309.146],[-346.666,-305.924],[-342.112,-304.736]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":118,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-320.944,-305.492],[-317.92,-307.688],[-320.008,-309.812],[-322.078,-308.3],[-324.724,-307.796],[-327.784,-308.534],[-329.836,-310.622],[-330.556,-313.772],[-329.872,-316.832],[-327.928,-318.848],[-325.012,-319.568],[-322.312,-318.902],[-320.584,-317.03],[-319.972,-314.096],[-318.784,-315.14],[-331.492,-315.14],[-331.492,-312.44],[-317.056,-312.44],[-316.912,-313.358],[-316.876,-314.132],[-317.902,-318.488],[-320.764,-321.476],[-324.94,-322.556],[-329.422,-321.386],[-332.59,-318.2],[-333.76,-313.664],[-332.572,-309.092],[-329.35,-305.906],[-324.724,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":119,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-292.666,-305.906],[-289.696,-309.092],[-288.616,-313.628],[-289.696,-318.164],[-292.666,-321.368],[-296.896,-322.556],[-300.37,-321.746],[-302.89,-319.514],[-303.952,-316.22],[-303.952,-311.072],[-302.908,-307.796],[-300.406,-305.546],[-296.896,-304.736]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-302.656,-305.096],[-302.656,-309.704],[-303.268,-313.88],[-302.656,-318.02],[-302.656,-330.8],[-305.896,-330.8],[-305.896,-305.096]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-300.262,-308.552],[-302.17,-310.622],[-302.836,-313.628],[-302.152,-316.67],[-300.244,-318.74],[-297.436,-319.496],[-294.592,-318.74],[-292.666,-316.67],[-291.964,-313.664],[-292.666,-310.622],[-294.592,-308.552],[-297.436,-307.796]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":120,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-278.032,-304.952],[-270.04,-322.196],[-273.64,-322.196],[-279.436,-308.696],[-278.284,-308.696],[-283.792,-322.196],[-287.392,-322.196],[-279.976,-304.952]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-281.272,-297.932],[-278.032,-304.952],[-279.868,-308.264],[-284.872,-297.932]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":121,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-253.768,-305.096],[-253.768,-329.36],[-257.008,-329.36],[-257.008,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-249.556,-319.244],[-249.556,-322.196],[-261.22,-322.196],[-261.22,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":122,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-231.052,-305.096],[-231.052,-315.716],[-231.916,-319.28],[-234.274,-321.692],[-237.712,-322.556],[-241.204,-321.674],[-243.616,-319.28],[-244.48,-315.824],[-243.148,-315.068],[-242.572,-317.372],[-240.988,-318.956],[-238.684,-319.532],[-235.534,-318.272],[-234.328,-315.068],[-234.328,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-243.148,-305.096],[-243.148,-330.8],[-246.388,-330.8],[-246.388,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":123,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-214.96,-305.492],[-211.936,-307.688],[-214.024,-309.812],[-216.094,-308.3],[-218.74,-307.796],[-221.8,-308.534],[-223.852,-310.622],[-224.572,-313.772],[-223.888,-316.832],[-221.944,-318.848],[-219.028,-319.568],[-216.328,-318.902],[-214.6,-317.03],[-213.988,-314.096],[-212.8,-315.14],[-225.508,-315.14],[-225.508,-312.44],[-211.072,-312.44],[-210.928,-313.358],[-210.892,-314.132],[-211.918,-318.488],[-214.78,-321.476],[-218.956,-322.556],[-223.438,-321.386],[-226.606,-318.2],[-227.776,-313.664],[-226.588,-309.092],[-223.366,-305.906],[-218.74,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":124,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-186.682,-305.906],[-183.712,-309.092],[-182.632,-313.628],[-183.712,-318.164],[-186.682,-321.368],[-190.912,-322.556],[-194.386,-321.746],[-196.906,-319.514],[-197.968,-316.22],[-197.968,-311.072],[-196.924,-307.796],[-194.422,-305.546],[-190.912,-304.736]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-196.672,-297.932],[-196.672,-309.38],[-197.284,-313.556],[-196.672,-317.696],[-196.672,-322.196],[-199.912,-322.196],[-199.912,-297.932]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-194.278,-308.552],[-196.186,-310.622],[-196.852,-313.628],[-196.168,-316.67],[-194.26,-318.74],[-191.452,-319.496],[-188.608,-318.74],[-186.682,-316.67],[-185.98,-313.664],[-186.682,-310.622],[-188.608,-308.552],[-191.452,-307.796]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":125,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-166.63,-305.924],[-163.408,-309.146],[-162.22,-313.7],[-163.408,-318.2],[-166.63,-321.386],[-171.184,-322.556],[-175.684,-321.368],[-178.888,-318.182],[-180.076,-313.7],[-178.888,-309.146],[-175.684,-305.924],[-171.184,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-174.028,-308.624],[-176.008,-310.694],[-176.728,-313.7],[-176.008,-316.652],[-174.028,-318.686],[-171.184,-319.424],[-168.286,-318.686],[-166.306,-316.652],[-165.568,-313.7],[-166.288,-310.694],[-168.268,-308.624],[-171.184,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":126,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-155.38,-305.096],[-155.38,-330.8],[-158.62,-330.8],[-158.62,-305.096]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":127,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-147.352,-305.096],[-147.352,-322.196],[-150.628,-322.196],[-150.628,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-147.496,-326.21],[-146.92,-327.704],[-147.496,-329.162],[-148.972,-329.756],[-150.448,-329.162],[-151.024,-327.704],[-150.448,-326.21],[-148.972,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":128,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-131.062,-305.492],[-128.164,-307.616],[-130.288,-309.776],[-132.25,-308.354],[-134.752,-307.868],[-137.632,-308.624],[-139.612,-310.676],[-140.332,-313.664],[-139.612,-316.652],[-137.632,-318.686],[-134.752,-319.424],[-132.268,-318.938],[-130.324,-317.516],[-128.164,-319.676],[-131.08,-321.818],[-134.752,-322.556],[-139.306,-321.386],[-142.51,-318.2],[-143.68,-313.664],[-142.51,-309.146],[-139.306,-305.924],[-134.752,-304.736]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":129,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-113.584,-305.492],[-110.56,-307.688],[-112.648,-309.812],[-114.718,-308.3],[-117.364,-307.796],[-120.424,-308.534],[-122.476,-310.622],[-123.196,-313.772],[-122.512,-316.832],[-120.568,-318.848],[-117.652,-319.568],[-114.952,-318.902],[-113.224,-317.03],[-112.612,-314.096],[-111.424,-315.14],[-124.132,-315.14],[-124.132,-312.44],[-109.696,-312.44],[-109.552,-313.358],[-109.516,-314.132],[-110.542,-318.488],[-113.404,-321.476],[-117.58,-322.556],[-122.062,-321.386],[-125.23,-318.2],[-126.4,-313.664],[-125.212,-309.092],[-121.99,-305.906],[-117.364,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":130,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.444,0.468],[0,0.648],[0.444,0.444],[0.672,0],[0.432,-0.444],[0,-0.672],[-0.432,-0.468],[-0.696,0]],"o":[[0.444,-0.468],[0,-0.672],[-0.444,-0.444],[-0.696,0],[-0.432,0.444],[0,0.648],[0.432,0.468],[0.672,0]],"v":[[-101.47,-305.438],[-100.804,-307.112],[-101.47,-308.786],[-103.144,-309.452],[-104.836,-308.786],[-105.484,-307.112],[-104.836,-305.438],[-103.144,-304.736]],"c":true},"ix":2},"nm":".","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":".","np":3,"cix":2,"bm":0,"ix":131,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-78.088,-305.096],[-78.088,-329.36],[-81.508,-329.36],[-81.508,-305.096]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-69.628,-326.984],[-69.628,-330.08],[-89.968,-330.08],[-89.968,-326.984]],"c":true},"ix":2},"nm":"T","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"T","np":5,"cix":2,"bm":0,"ix":132,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-50.836,-305.096],[-50.836,-315.716],[-51.7,-319.28],[-54.058,-321.692],[-57.496,-322.556],[-60.988,-321.674],[-63.4,-319.28],[-64.264,-315.824],[-62.932,-315.068],[-62.356,-317.372],[-60.772,-318.956],[-58.468,-319.532],[-55.318,-318.272],[-54.112,-315.068],[-54.112,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-62.932,-305.096],[-62.932,-330.8],[-66.172,-330.8],[-66.172,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":133,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-43.168,-305.096],[-43.168,-322.196],[-46.444,-322.196],[-46.444,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-43.312,-326.21],[-42.736,-327.704],[-43.312,-329.162],[-44.788,-329.756],[-46.264,-329.162],[-46.84,-327.704],[-46.264,-326.21],[-44.788,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":134,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-28.354,-306.14],[-26.644,-309.956],[-27.31,-312.512],[-29.02,-314.06],[-31.216,-314.978],[-33.43,-315.644],[-35.14,-316.436],[-35.788,-317.768],[-35.05,-319.1],[-32.908,-319.604],[-30.532,-319.1],[-28.732,-317.66],[-26.644,-319.748],[-29.218,-321.854],[-32.8,-322.556],[-36.076,-321.944],[-38.182,-320.198],[-38.92,-317.516],[-38.254,-315.014],[-36.544,-313.52],[-34.33,-312.656],[-32.116,-311.99],[-30.406,-311.126],[-29.74,-309.668],[-30.568,-308.21],[-32.908,-307.688],[-35.644,-308.246],[-37.804,-309.956],[-39.892,-307.868],[-38.038,-306.194],[-35.68,-305.114],[-32.944,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":135,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-12.316,-305.096],[-12.316,-322.196],[-15.556,-322.196],[-15.556,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-11.164,-318.344],[-8.212,-319.496],[-6.7,-319.244],[-5.512,-318.416],[-3.388,-320.612],[-5.332,-322.106],[-7.672,-322.556],[-12.028,-320.612],[-13.54,-315.392],[-12.316,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":136,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[10.04,-305.492],[13.064,-307.688],[10.976,-309.812],[8.906,-308.3],[6.26,-307.796],[3.2,-308.534],[1.148,-310.622],[0.428,-313.772],[1.112,-316.832],[3.056,-318.848],[5.972,-319.568],[8.672,-318.902],[10.4,-317.03],[11.012,-314.096],[12.2,-315.14],[-0.508,-315.14],[-0.508,-312.44],[13.928,-312.44],[14.072,-313.358],[14.108,-314.132],[13.082,-318.488],[10.22,-321.476],[6.044,-322.556],[1.562,-321.386],[-1.606,-318.2],[-2.776,-313.664],[-1.588,-309.092],[1.634,-305.906],[6.26,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":137,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[27.662,-306.14],[29.372,-309.956],[28.706,-312.512],[26.996,-314.06],[24.8,-314.978],[22.586,-315.644],[20.876,-316.436],[20.228,-317.768],[20.966,-319.1],[23.108,-319.604],[25.484,-319.1],[27.284,-317.66],[29.372,-319.748],[26.798,-321.854],[23.216,-322.556],[19.94,-321.944],[17.834,-320.198],[17.096,-317.516],[17.762,-315.014],[19.472,-313.52],[21.686,-312.656],[23.9,-311.99],[25.61,-311.126],[26.276,-309.668],[25.448,-308.21],[23.108,-307.688],[20.372,-308.246],[18.212,-309.956],[16.124,-307.868],[17.978,-306.194],[20.336,-305.114],[23.072,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":138,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[43.7,-305.726],[46.292,-308.336],[47.228,-312.26],[47.228,-322.196],[43.988,-322.196],[43.988,-312.404],[42.908,-309.074],[39.92,-307.868],[37.724,-308.408],[36.302,-309.974],[35.816,-312.404],[35.816,-322.196],[32.576,-322.196],[32.576,-312.26],[33.512,-308.336],[36.122,-305.726],[39.92,-304.808]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":139,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[54.824,-305.096],[54.824,-330.8],[51.584,-330.8],[51.584,-305.096]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":140,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[65.444,-305.096],[65.444,-329.36],[62.204,-329.36],[62.204,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[69.656,-319.244],[69.656,-322.196],[57.992,-322.196],[57.992,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":141,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[82.49,-306.14],[84.2,-309.956],[83.534,-312.512],[81.824,-314.06],[79.628,-314.978],[77.414,-315.644],[75.704,-316.436],[75.056,-317.768],[75.794,-319.1],[77.936,-319.604],[80.312,-319.1],[82.112,-317.66],[84.2,-319.748],[81.626,-321.854],[78.044,-322.556],[74.768,-321.944],[72.662,-320.198],[71.924,-317.516],[72.59,-315.014],[74.3,-313.52],[76.514,-312.656],[78.728,-311.99],[80.438,-311.126],[81.104,-309.668],[80.276,-308.21],[77.936,-307.688],[75.2,-308.246],[73.04,-309.956],[70.952,-307.868],[72.806,-306.194],[75.164,-305.114],[77.9,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":142,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[98.564,-305.096],[98.564,-322.196],[95.288,-322.196],[95.288,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[98.42,-326.21],[98.996,-327.704],[98.42,-329.162],[96.944,-329.756],[95.468,-329.162],[94.892,-327.704],[95.468,-326.21],[96.944,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":143,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[118.688,-305.096],[118.688,-315.716],[117.824,-319.046],[115.466,-321.584],[112.028,-322.556],[108.536,-321.674],[106.124,-319.28],[105.26,-315.824],[106.592,-315.068],[107.168,-317.372],[108.752,-318.956],[111.056,-319.532],[114.206,-318.272],[115.412,-315.068],[115.412,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[106.592,-305.096],[106.592,-322.196],[103.352,-322.196],[103.352,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":144,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[141.296,-305.546],[143.762,-307.796],[144.788,-311.072],[144.788,-316.22],[143.744,-319.514],[141.278,-321.746],[137.804,-322.556],[133.538,-321.368],[130.55,-318.164],[129.452,-313.628],[130.55,-309.092],[133.538,-305.906],[137.804,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[135.464,-308.552],[133.502,-310.622],[132.8,-313.664],[133.502,-316.67],[135.446,-318.74],[138.308,-319.496],[141.134,-318.758],[143.024,-316.688],[143.708,-313.628],[142.232,-309.434],[138.344,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[146.768,-305.096],[146.768,-322.196],[143.492,-322.196],[143.492,-318.02],[144.104,-313.88],[143.492,-309.704],[143.492,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":145,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[165.704,-305.096],[170.672,-317.984],[169.484,-317.984],[174.416,-305.096],[176.324,-305.096],[183.056,-322.196],[179.672,-322.196],[174.776,-308.876],[175.856,-308.876],[170.996,-322.196],[169.124,-322.196],[164.264,-308.876],[165.344,-308.876],[160.448,-322.196],[157.064,-322.196],[163.796,-305.096]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":146,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[188.924,-305.096],[188.924,-322.196],[185.648,-322.196],[185.648,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[188.78,-326.21],[189.356,-327.704],[188.78,-329.162],[187.304,-329.756],[185.828,-329.162],[185.252,-327.704],[185.828,-326.21],[187.304,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":147,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[204.44,-305.546],[206.924,-307.796],[207.968,-311.072],[207.968,-316.22],[206.906,-319.514],[204.404,-321.746],[200.912,-322.556],[196.7,-321.368],[193.73,-318.164],[192.632,-313.628],[193.73,-309.092],[196.7,-305.906],[200.912,-304.736]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[198.626,-308.534],[196.682,-310.604],[195.98,-313.664],[196.682,-316.706],[198.608,-318.758],[201.452,-319.496],[204.296,-318.74],[206.204,-316.67],[206.888,-313.628],[206.204,-310.622],[204.296,-308.552],[201.452,-307.796]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[209.948,-330.8],[206.672,-330.8],[206.672,-318.02],[207.284,-313.88],[206.672,-309.704],[206.672,-305.096],[209.948,-305.096]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":148,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[226.364,-305.492],[229.388,-307.688],[227.3,-309.812],[225.23,-308.3],[222.584,-307.796],[219.524,-308.534],[217.472,-310.622],[216.752,-313.772],[217.436,-316.832],[219.38,-318.848],[222.296,-319.568],[224.996,-318.902],[226.724,-317.03],[227.336,-314.096],[228.524,-315.14],[215.816,-315.14],[215.816,-312.44],[230.252,-312.44],[230.396,-313.358],[230.432,-314.132],[229.406,-318.488],[226.544,-321.476],[222.368,-322.556],[217.886,-321.386],[214.718,-318.2],[213.548,-313.664],[214.736,-309.092],[217.958,-305.906],[222.584,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":149,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[237.2,-305.096],[237.2,-322.196],[233.96,-322.196],[233.96,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[238.352,-318.344],[241.304,-319.496],[242.816,-319.244],[244.004,-318.416],[246.128,-320.612],[244.184,-322.106],[241.844,-322.556],[237.488,-320.612],[235.976,-315.392],[237.2,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":150,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[258.62,-305.546],[261.086,-307.796],[262.112,-311.072],[262.112,-316.22],[261.068,-319.514],[258.602,-321.746],[255.128,-322.556],[250.862,-321.368],[247.874,-318.164],[246.776,-313.628],[247.874,-309.092],[250.862,-305.906],[255.128,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[252.788,-308.552],[250.826,-310.622],[250.124,-313.664],[250.826,-316.67],[252.77,-318.74],[255.632,-319.496],[258.458,-318.758],[260.348,-316.688],[261.032,-313.628],[259.556,-309.434],[255.668,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[264.092,-305.096],[264.092,-322.196],[260.816,-322.196],[260.816,-318.02],[261.428,-313.88],[260.816,-309.704],[260.816,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":151,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[284.144,-305.096],[284.144,-315.716],[283.28,-319.046],[280.922,-321.584],[277.484,-322.556],[273.992,-321.674],[271.58,-319.28],[270.716,-315.824],[272.048,-315.068],[272.624,-317.372],[274.208,-318.956],[276.512,-319.532],[279.662,-318.272],[280.868,-315.068],[280.868,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[272.048,-305.096],[272.048,-322.196],[268.808,-322.196],[268.808,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":152,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[300.326,-298.598],[303.494,-301.478],[304.628,-305.78],[304.628,-322.196],[301.388,-322.196],[301.388,-317.696],[301.964,-313.88],[301.388,-310.028],[301.388,-305.78],[299.84,-302.054],[295.7,-300.668],[292.28,-301.37],[289.796,-303.404],[287.672,-301.28],[290.948,-298.544],[295.628,-297.572]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[299.156,-306.176],[301.622,-308.39],[302.648,-311.684],[302.648,-316.22],[301.64,-319.55],[299.174,-321.764],[295.592,-322.556],[291.416,-321.422],[288.482,-318.362],[287.42,-313.988],[288.5,-309.578],[291.434,-306.5],[295.628,-305.384]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[293.414,-309.146],[291.47,-311.108],[290.768,-313.988],[291.47,-316.85],[293.396,-318.794],[296.24,-319.496],[299.03,-318.794],[300.902,-316.85],[301.568,-313.952],[300.902,-311.054],[299.048,-309.128],[296.24,-308.444]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":153,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[321.044,-305.492],[324.068,-307.688],[321.98,-309.812],[319.91,-308.3],[317.264,-307.796],[314.204,-308.534],[312.152,-310.622],[311.432,-313.772],[312.116,-316.832],[314.06,-318.848],[316.976,-319.568],[319.676,-318.902],[321.404,-317.03],[322.016,-314.096],[323.204,-315.14],[310.496,-315.14],[310.496,-312.44],[324.932,-312.44],[325.076,-313.358],[325.112,-314.132],[324.086,-318.488],[321.224,-321.476],[317.048,-322.556],[312.566,-321.386],[309.398,-318.2],[308.228,-313.664],[309.416,-309.092],[312.638,-305.906],[317.264,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":154,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[346.856,-305.546],[349.322,-307.796],[350.348,-311.072],[350.348,-316.22],[349.304,-319.514],[346.838,-321.746],[343.364,-322.556],[339.098,-321.368],[336.11,-318.164],[335.012,-313.628],[336.11,-309.092],[339.098,-305.906],[343.364,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[341.024,-308.552],[339.062,-310.622],[338.36,-313.664],[339.062,-316.67],[341.006,-318.74],[343.868,-319.496],[346.694,-318.758],[348.584,-316.688],[349.268,-313.628],[347.792,-309.434],[343.904,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[352.328,-305.096],[352.328,-322.196],[349.052,-322.196],[349.052,-318.02],[349.664,-313.88],[349.052,-309.704],[349.052,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":155,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[372.38,-305.096],[372.38,-315.716],[371.516,-319.046],[369.158,-321.584],[365.72,-322.556],[362.228,-321.674],[359.816,-319.28],[358.952,-315.824],[360.284,-315.068],[360.86,-317.372],[362.444,-318.956],[364.748,-319.532],[367.898,-318.272],[369.104,-315.068],[369.104,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[360.284,-305.096],[360.284,-322.196],[357.044,-322.196],[357.044,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":156,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[388.562,-298.598],[391.73,-301.478],[392.864,-305.78],[392.864,-322.196],[389.624,-322.196],[389.624,-317.696],[390.2,-313.88],[389.624,-310.028],[389.624,-305.78],[388.076,-302.054],[383.936,-300.668],[380.516,-301.37],[378.032,-303.404],[375.908,-301.28],[379.184,-298.544],[383.864,-297.572]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[387.392,-306.176],[389.858,-308.39],[390.884,-311.684],[390.884,-316.22],[389.876,-319.55],[387.41,-321.764],[383.828,-322.556],[379.652,-321.422],[376.718,-318.362],[375.656,-313.988],[376.736,-309.578],[379.67,-306.5],[383.864,-305.384]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[381.65,-309.146],[379.706,-311.108],[379.004,-313.988],[379.706,-316.85],[381.632,-318.794],[384.476,-319.496],[387.266,-318.794],[389.138,-316.85],[389.804,-313.952],[389.138,-311.054],[387.284,-309.128],[384.476,-308.444]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":157,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[409.28,-305.492],[412.304,-307.688],[410.216,-309.812],[408.146,-308.3],[405.5,-307.796],[402.44,-308.534],[400.388,-310.622],[399.668,-313.772],[400.352,-316.832],[402.296,-318.848],[405.212,-319.568],[407.912,-318.902],[409.64,-317.03],[410.252,-314.096],[411.44,-315.14],[398.732,-315.14],[398.732,-312.44],[413.168,-312.44],[413.312,-313.358],[413.348,-314.132],[412.322,-318.488],[409.46,-321.476],[405.284,-322.556],[400.802,-321.386],[397.634,-318.2],[396.464,-313.664],[397.652,-309.092],[400.874,-305.906],[405.5,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":158,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[420.116,-305.096],[420.116,-322.196],[416.876,-322.196],[416.876,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[421.268,-318.344],[424.22,-319.496],[425.732,-319.244],[426.92,-318.416],[429.044,-320.612],[427.1,-322.106],[424.76,-322.556],[420.404,-320.612],[418.892,-315.392],[420.116,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":159,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[445.1,-305.096],[445.1,-324.752],[445.946,-327.218],[448.34,-328.1],[449.744,-327.848],[450.788,-327.092],[452.912,-329.18],[450.932,-330.656],[448.376,-331.16],[444.956,-330.332],[442.652,-328.064],[441.824,-324.752],[441.824,-305.096]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[450.536,-319.244],[450.536,-322.196],[437.648,-322.196],[437.648,-319.244]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":160,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[456.368,-305.096],[456.368,-322.196],[453.128,-322.196],[453.128,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[457.52,-318.344],[460.472,-319.496],[461.984,-319.244],[463.172,-318.416],[465.296,-320.612],[463.352,-322.106],[461.012,-322.556],[456.656,-320.612],[455.144,-315.392],[456.368,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":161,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[479.354,-305.924],[482.576,-309.146],[483.764,-313.7],[482.576,-318.2],[479.354,-321.386],[474.8,-322.556],[470.3,-321.368],[467.096,-318.182],[465.908,-313.7],[467.096,-309.146],[470.3,-305.924],[474.8,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[471.956,-308.624],[469.976,-310.694],[469.256,-313.7],[469.976,-316.652],[471.956,-318.686],[474.8,-319.424],[477.698,-318.686],[479.678,-316.652],[480.416,-313.7],[479.696,-310.694],[477.716,-308.624],[474.8,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":162,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[490.604,-305.096],[490.604,-322.196],[487.364,-322.196],[487.364,-305.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[502.16,-305.096],[502.16,-316.112],[501.314,-319.532],[499.01,-321.764],[495.752,-322.556],[492.44,-321.746],[490.118,-319.496],[489.272,-316.112],[490.604,-315.428],[491.18,-317.624],[492.692,-319.028],[494.816,-319.532],[497.75,-318.434],[498.92,-315.428],[498.92,-305.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[513.752,-305.096],[513.752,-316.076],[512.87,-319.532],[510.512,-321.764],[507.164,-322.556],[503.852,-321.746],[501.386,-319.514],[500.324,-316.112],[502.16,-315.428],[502.736,-317.624],[504.266,-319.028],[506.408,-319.532],[509.306,-318.434],[510.476,-315.428],[510.476,-305.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":163,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[531.464,-305.096],[531.464,-329.36],[528.224,-329.36],[528.224,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[535.676,-319.244],[535.676,-322.196],[524.012,-322.196],[524.012,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":164,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[554.18,-305.096],[554.18,-315.716],[553.316,-319.28],[550.958,-321.692],[547.52,-322.556],[544.028,-321.674],[541.616,-319.28],[540.752,-315.824],[542.084,-315.068],[542.66,-317.372],[544.244,-318.956],[546.548,-319.532],[549.698,-318.272],[550.904,-315.068],[550.904,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[542.084,-305.096],[542.084,-330.8],[538.844,-330.8],[538.844,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":165,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[570.272,-305.492],[573.296,-307.688],[571.208,-309.812],[569.138,-308.3],[566.492,-307.796],[563.432,-308.534],[561.38,-310.622],[560.66,-313.772],[561.344,-316.832],[563.288,-318.848],[566.204,-319.568],[568.904,-318.902],[570.632,-317.03],[571.244,-314.096],[572.432,-315.14],[559.724,-315.14],[559.724,-312.44],[574.16,-312.44],[574.304,-313.358],[574.34,-314.132],[573.314,-318.488],[570.452,-321.476],[566.276,-322.556],[561.794,-321.386],[558.626,-318.2],[557.456,-313.664],[558.644,-309.092],[561.866,-305.906],[566.492,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":166,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[596.822,-305.492],[599.72,-307.616],[597.596,-309.776],[595.634,-308.354],[593.132,-307.868],[590.252,-308.624],[588.272,-310.676],[587.552,-313.664],[588.272,-316.652],[590.252,-318.686],[593.132,-319.424],[595.616,-318.938],[597.56,-317.516],[599.72,-319.676],[596.804,-321.818],[593.132,-322.556],[588.578,-321.386],[585.374,-318.2],[584.204,-313.664],[585.374,-309.146],[588.578,-305.924],[593.132,-304.736]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":167,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[606.2,-305.096],[606.2,-322.196],[602.924,-322.196],[602.924,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[606.056,-326.21],[606.632,-327.704],[606.056,-329.162],[604.58,-329.756],[603.104,-329.162],[602.528,-327.704],[603.104,-326.21],[604.58,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":168,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[616.856,-305.096],[616.856,-329.36],[613.616,-329.36],[613.616,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[621.068,-319.244],[621.068,-322.196],[609.404,-322.196],[609.404,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":169,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[627.512,-305.096],[627.512,-322.196],[624.236,-322.196],[624.236,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[627.368,-326.21],[627.944,-327.704],[627.368,-329.162],[625.892,-329.756],[624.416,-329.162],[623.84,-327.704],[624.416,-326.21],[625.892,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":170,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[634.748,-306.86],[644.9,-320.432],[641.084,-320.432],[630.896,-306.86]],"c":true},"ix":2},"nm":"z","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[644.684,-305.096],[644.684,-308.048],[633.812,-308.048],[630.896,-306.86],[630.896,-305.096]],"c":true},"ix":2},"nm":"z","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[641.912,-319.244],[644.9,-320.432],[644.9,-322.196],[631.544,-322.196],[631.544,-319.244]],"c":true},"ix":2},"nm":"z","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"z","np":6,"cix":2,"bm":0,"ix":171,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[659.768,-305.492],[662.792,-307.688],[660.704,-309.812],[658.634,-308.3],[655.988,-307.796],[652.928,-308.534],[650.876,-310.622],[650.156,-313.772],[650.84,-316.832],[652.784,-318.848],[655.7,-319.568],[658.4,-318.902],[660.128,-317.03],[660.74,-314.096],[661.928,-315.14],[649.22,-315.14],[649.22,-312.44],[663.656,-312.44],[663.8,-313.358],[663.836,-314.132],[662.81,-318.488],[659.948,-321.476],[655.772,-322.556],[651.29,-321.386],[648.122,-318.2],[646.952,-313.664],[648.14,-309.092],[651.362,-305.906],[655.988,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":172,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[682.7,-305.096],[682.7,-315.716],[681.836,-319.046],[679.478,-321.584],[676.04,-322.556],[672.548,-321.674],[670.136,-319.28],[669.272,-315.824],[670.604,-315.068],[671.18,-317.372],[672.764,-318.956],[675.068,-319.532],[678.218,-318.272],[679.424,-315.068],[679.424,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[670.604,-305.096],[670.604,-322.196],[667.364,-322.196],[667.364,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":173,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[697.118,-306.14],[698.828,-309.956],[698.162,-312.512],[696.452,-314.06],[694.256,-314.978],[692.042,-315.644],[690.332,-316.436],[689.684,-317.768],[690.422,-319.1],[692.564,-319.604],[694.94,-319.1],[696.74,-317.66],[698.828,-319.748],[696.254,-321.854],[692.672,-322.556],[689.396,-321.944],[687.29,-320.198],[686.552,-317.516],[687.218,-315.014],[688.928,-313.52],[691.142,-312.656],[693.356,-311.99],[695.066,-311.126],[695.732,-309.668],[694.904,-308.21],[692.564,-307.688],[689.828,-308.246],[687.668,-309.956],[685.58,-307.868],[687.434,-306.194],[689.792,-305.114],[692.528,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":174,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[720.68,-305.546],[723.146,-307.796],[724.172,-311.072],[724.172,-316.22],[723.128,-319.514],[720.662,-321.746],[717.188,-322.556],[712.922,-321.368],[709.934,-318.164],[708.836,-313.628],[709.934,-309.092],[712.922,-305.906],[717.188,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[714.848,-308.552],[712.886,-310.622],[712.184,-313.664],[712.886,-316.67],[714.83,-318.74],[717.692,-319.496],[720.518,-318.758],[722.408,-316.688],[723.092,-313.628],[721.616,-309.434],[717.728,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[726.152,-305.096],[726.152,-322.196],[722.876,-322.196],[722.876,-318.02],[723.488,-313.88],[722.876,-309.704],[722.876,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":175,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[746.204,-305.096],[746.204,-315.716],[745.34,-319.046],[742.982,-321.584],[739.544,-322.556],[736.052,-321.674],[733.64,-319.28],[732.776,-315.824],[734.108,-315.068],[734.684,-317.372],[736.268,-318.956],[738.572,-319.532],[741.722,-318.272],[742.928,-315.068],[742.928,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[734.108,-305.096],[734.108,-322.196],[730.868,-322.196],[730.868,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":176,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[761.324,-305.546],[763.808,-307.796],[764.852,-311.072],[764.852,-316.22],[763.79,-319.514],[761.288,-321.746],[757.796,-322.556],[753.584,-321.368],[750.614,-318.164],[749.516,-313.628],[750.614,-309.092],[753.584,-305.906],[757.796,-304.736]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[755.51,-308.534],[753.566,-310.604],[752.864,-313.664],[753.566,-316.706],[755.492,-318.758],[758.336,-319.496],[761.18,-318.74],[763.088,-316.67],[763.772,-313.628],[763.088,-310.622],[761.18,-308.552],[758.336,-307.796]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[766.832,-330.8],[763.556,-330.8],[763.556,-318.02],[764.168,-313.88],[763.556,-309.704],[763.556,-305.096],[766.832,-305.096]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":177,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[789.764,-305.546],[792.23,-307.796],[793.256,-311.072],[793.256,-316.22],[792.212,-319.514],[789.746,-321.746],[786.272,-322.556],[782.006,-321.368],[779.018,-318.164],[777.92,-313.628],[779.018,-309.092],[782.006,-305.906],[786.272,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[783.932,-308.552],[781.97,-310.622],[781.268,-313.664],[781.97,-316.67],[783.914,-318.74],[786.776,-319.496],[789.602,-318.758],[791.492,-316.688],[792.176,-313.628],[790.7,-309.434],[786.812,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[795.236,-305.096],[795.236,-322.196],[791.96,-322.196],[791.96,-318.02],[792.572,-313.88],[791.96,-309.704],[791.96,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":178,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[815.288,-305.096],[815.288,-315.716],[814.424,-319.046],[812.066,-321.584],[808.628,-322.556],[805.136,-321.674],[802.724,-319.28],[801.86,-315.824],[803.192,-315.068],[803.768,-317.372],[805.352,-318.956],[807.656,-319.532],[810.806,-318.272],[812.012,-315.068],[812.012,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[803.192,-305.096],[803.192,-322.196],[799.952,-322.196],[799.952,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":179,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-818.86,-262.346],[-816.394,-264.596],[-815.368,-267.872],[-815.368,-273.02],[-816.412,-276.314],[-818.878,-278.546],[-822.352,-279.356],[-826.618,-278.168],[-829.606,-274.964],[-830.704,-270.428],[-829.606,-265.892],[-826.618,-262.706],[-822.352,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-824.692,-265.352],[-826.654,-267.422],[-827.356,-270.464],[-826.654,-273.47],[-824.71,-275.54],[-821.848,-276.296],[-819.022,-275.558],[-817.132,-273.488],[-816.448,-270.428],[-817.924,-266.234],[-821.812,-264.596]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-813.388,-261.896],[-813.388,-278.996],[-816.664,-278.996],[-816.664,-274.82],[-816.052,-270.68],[-816.664,-266.504],[-816.664,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":180,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-795.442,-262.706],[-792.472,-265.892],[-791.392,-270.428],[-792.472,-274.964],[-795.442,-278.168],[-799.672,-279.356],[-803.146,-278.546],[-805.666,-276.314],[-806.728,-273.02],[-806.728,-267.872],[-805.684,-264.596],[-803.182,-262.346],[-799.672,-261.536]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-805.432,-261.896],[-805.432,-266.504],[-806.044,-270.68],[-805.432,-274.82],[-805.432,-287.6],[-808.672,-287.6],[-808.672,-261.896]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-803.038,-265.352],[-804.946,-267.422],[-805.612,-270.428],[-804.928,-273.47],[-803.02,-275.54],[-800.212,-276.296],[-797.368,-275.54],[-795.442,-273.47],[-794.74,-270.464],[-795.442,-267.422],[-797.368,-265.352],[-800.212,-264.596]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":181,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-777.694,-262.94],[-775.984,-266.756],[-776.65,-269.312],[-778.36,-270.86],[-780.556,-271.778],[-782.77,-272.444],[-784.48,-273.236],[-785.128,-274.568],[-784.39,-275.9],[-782.248,-276.404],[-779.872,-275.9],[-778.072,-274.46],[-775.984,-276.548],[-778.558,-278.654],[-782.14,-279.356],[-785.416,-278.744],[-787.522,-276.998],[-788.26,-274.316],[-787.594,-271.814],[-785.884,-270.32],[-783.67,-269.456],[-781.456,-268.79],[-779.746,-267.926],[-779.08,-266.468],[-779.908,-265.01],[-782.248,-264.488],[-784.984,-265.046],[-787.144,-266.756],[-789.232,-264.668],[-787.378,-262.994],[-785.02,-261.914],[-782.284,-261.536]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":182,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-760.018,-262.724],[-756.796,-265.946],[-755.608,-270.5],[-756.796,-275],[-760.018,-278.186],[-764.572,-279.356],[-769.072,-278.168],[-772.276,-274.982],[-773.464,-270.5],[-772.276,-265.946],[-769.072,-262.724],[-764.572,-261.536]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-767.416,-265.424],[-769.396,-267.494],[-770.116,-270.5],[-769.396,-273.452],[-767.416,-275.486],[-764.572,-276.224],[-761.674,-275.486],[-759.694,-273.452],[-758.956,-270.5],[-759.676,-267.494],[-761.656,-265.424],[-764.572,-264.668]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":183,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-748.768,-261.896],[-748.768,-287.6],[-752.008,-287.6],[-752.008,-261.896]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":184,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-733.324,-262.526],[-730.732,-265.136],[-729.796,-269.06],[-729.796,-278.996],[-733.036,-278.996],[-733.036,-269.204],[-734.116,-265.874],[-737.104,-264.668],[-739.3,-265.208],[-740.722,-266.774],[-741.208,-269.204],[-741.208,-278.996],[-744.448,-278.996],[-744.448,-269.06],[-743.512,-265.136],[-740.902,-262.526],[-737.104,-261.608]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":185,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-719.572,-261.896],[-719.572,-286.16],[-722.812,-286.16],[-722.812,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-715.36,-276.044],[-715.36,-278.996],[-727.024,-278.996],[-727.024,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":186,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-701.032,-262.292],[-698.008,-264.488],[-700.096,-266.612],[-702.166,-265.1],[-704.812,-264.596],[-707.872,-265.334],[-709.924,-267.422],[-710.644,-270.572],[-709.96,-273.632],[-708.016,-275.648],[-705.1,-276.368],[-702.4,-275.702],[-700.672,-273.83],[-700.06,-270.896],[-698.872,-271.94],[-711.58,-271.94],[-711.58,-269.24],[-697.144,-269.24],[-697,-270.158],[-696.964,-270.932],[-697.99,-275.288],[-700.852,-278.276],[-705.028,-279.356],[-709.51,-278.186],[-712.678,-275],[-713.848,-270.464],[-712.66,-265.892],[-709.438,-262.706],[-704.812,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":187,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-675.292,-262.526],[-672.7,-265.136],[-671.764,-269.06],[-671.764,-278.996],[-675.004,-278.996],[-675.004,-269.204],[-676.084,-265.874],[-679.072,-264.668],[-681.268,-265.208],[-682.69,-266.774],[-683.176,-269.204],[-683.176,-278.996],[-686.416,-278.996],[-686.416,-269.06],[-685.48,-265.136],[-682.87,-262.526],[-679.072,-261.608]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":188,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-652.072,-261.896],[-652.072,-272.516],[-652.936,-275.846],[-655.294,-278.384],[-658.732,-279.356],[-662.224,-278.474],[-664.636,-276.08],[-665.5,-272.624],[-664.168,-271.868],[-663.592,-274.172],[-662.008,-275.756],[-659.704,-276.332],[-656.554,-275.072],[-655.348,-271.868],[-655.348,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-664.168,-261.896],[-664.168,-278.996],[-667.408,-278.996],[-667.408,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":189,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-642.028,-261.896],[-642.028,-286.16],[-645.268,-286.16],[-645.268,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-637.816,-276.044],[-637.816,-278.996],[-649.48,-278.996],[-649.48,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":190,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-631.408,-261.896],[-631.408,-278.996],[-634.648,-278.996],[-634.648,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-630.256,-275.144],[-627.304,-276.296],[-625.792,-276.044],[-624.604,-275.216],[-622.48,-277.412],[-624.424,-278.906],[-626.764,-279.356],[-631.12,-277.412],[-632.632,-272.192],[-631.408,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":191,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-609.52,-262.526],[-606.928,-265.136],[-605.992,-269.06],[-605.992,-278.996],[-609.232,-278.996],[-609.232,-269.204],[-610.312,-265.874],[-613.3,-264.668],[-615.496,-265.208],[-616.918,-266.774],[-617.404,-269.204],[-617.404,-278.996],[-620.644,-278.996],[-620.644,-269.06],[-619.708,-265.136],[-617.098,-262.526],[-613.3,-261.608]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":192,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-591.61,-262.94],[-589.9,-266.756],[-590.566,-269.312],[-592.276,-270.86],[-594.472,-271.778],[-596.686,-272.444],[-598.396,-273.236],[-599.044,-274.568],[-598.306,-275.9],[-596.164,-276.404],[-593.788,-275.9],[-591.988,-274.46],[-589.9,-276.548],[-592.474,-278.654],[-596.056,-279.356],[-599.332,-278.744],[-601.438,-276.998],[-602.176,-274.316],[-601.51,-271.814],[-599.8,-270.32],[-597.586,-269.456],[-595.372,-268.79],[-593.662,-267.926],[-592.996,-266.468],[-593.824,-265.01],[-596.164,-264.488],[-598.9,-265.046],[-601.06,-266.756],[-603.148,-264.668],[-601.294,-262.994],[-598.936,-261.914],[-596.2,-261.536]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":193,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-580.396,-261.896],[-580.396,-286.16],[-583.636,-286.16],[-583.636,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-576.184,-276.044],[-576.184,-278.996],[-587.848,-278.996],[-587.848,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":194,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-559.696,-261.896],[-559.696,-286.16],[-562.936,-286.16],[-562.936,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-555.484,-276.044],[-555.484,-278.996],[-567.148,-278.996],[-567.148,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":195,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-540.526,-262.724],[-537.304,-265.946],[-536.116,-270.5],[-537.304,-275],[-540.526,-278.186],[-545.08,-279.356],[-549.58,-278.168],[-552.784,-274.982],[-553.972,-270.5],[-552.784,-265.946],[-549.58,-262.724],[-545.08,-261.536]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-547.924,-265.424],[-549.904,-267.494],[-550.624,-270.5],[-549.904,-273.452],[-547.924,-275.486],[-545.08,-276.224],[-542.182,-275.486],[-540.202,-273.452],[-539.464,-270.5],[-540.184,-267.494],[-542.164,-265.424],[-545.08,-264.668]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":196,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-519.196,-261.896],[-519.196,-286.16],[-522.436,-286.16],[-522.436,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-514.984,-276.044],[-514.984,-278.996],[-526.648,-278.996],[-526.648,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":197,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-496.48,-261.896],[-496.48,-272.516],[-497.344,-276.08],[-499.702,-278.492],[-503.14,-279.356],[-506.632,-278.474],[-509.044,-276.08],[-509.908,-272.624],[-508.576,-271.868],[-508,-274.172],[-506.416,-275.756],[-504.112,-276.332],[-500.962,-275.072],[-499.756,-271.868],[-499.756,-261.896]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-508.576,-261.896],[-508.576,-287.6],[-511.816,-287.6],[-511.816,-261.896]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":198,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-480.388,-262.292],[-477.364,-264.488],[-479.452,-266.612],[-481.522,-265.1],[-484.168,-264.596],[-487.228,-265.334],[-489.28,-267.422],[-490,-270.572],[-489.316,-273.632],[-487.372,-275.648],[-484.456,-276.368],[-481.756,-275.702],[-480.028,-273.83],[-479.416,-270.896],[-478.228,-271.94],[-490.936,-271.94],[-490.936,-269.24],[-476.5,-269.24],[-476.356,-270.158],[-476.32,-270.932],[-477.346,-275.288],[-480.208,-278.276],[-484.384,-279.356],[-488.866,-278.186],[-492.034,-275],[-493.204,-270.464],[-492.016,-265.892],[-488.794,-262.706],[-484.168,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":199,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-453.55,-255.398],[-450.382,-258.278],[-449.248,-262.58],[-449.248,-278.996],[-452.488,-278.996],[-452.488,-274.496],[-451.912,-270.68],[-452.488,-266.828],[-452.488,-262.58],[-454.036,-258.854],[-458.176,-257.468],[-461.596,-258.17],[-464.08,-260.204],[-466.204,-258.08],[-462.928,-255.344],[-458.248,-254.372]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-454.72,-262.976],[-452.254,-265.19],[-451.228,-268.484],[-451.228,-273.02],[-452.236,-276.35],[-454.702,-278.564],[-458.284,-279.356],[-462.46,-278.222],[-465.394,-275.162],[-466.456,-270.788],[-465.376,-266.378],[-462.442,-263.3],[-458.248,-262.184]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-460.462,-265.946],[-462.406,-267.908],[-463.108,-270.788],[-462.406,-273.65],[-460.48,-275.594],[-457.636,-276.296],[-454.846,-275.594],[-452.974,-273.65],[-452.308,-270.752],[-452.974,-267.854],[-454.828,-265.928],[-457.636,-265.244]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":200,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-432.202,-262.724],[-428.98,-265.946],[-427.792,-270.5],[-428.98,-275],[-432.202,-278.186],[-436.756,-279.356],[-441.256,-278.168],[-444.46,-274.982],[-445.648,-270.5],[-444.46,-265.946],[-441.256,-262.724],[-436.756,-261.536]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-439.6,-265.424],[-441.58,-267.494],[-442.3,-270.5],[-441.58,-273.452],[-439.6,-275.486],[-436.756,-276.224],[-433.858,-275.486],[-431.878,-273.452],[-431.14,-270.5],[-431.86,-267.494],[-433.84,-265.424],[-436.756,-264.668]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":201,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-417.064,-261.896],[-409.216,-278.996],[-412.672,-278.996],[-419.008,-264.56],[-416.92,-264.56],[-423.22,-278.996],[-426.82,-278.996],[-418.972,-261.896]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":202,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-395.392,-262.292],[-392.368,-264.488],[-394.456,-266.612],[-396.526,-265.1],[-399.172,-264.596],[-402.232,-265.334],[-404.284,-267.422],[-405.004,-270.572],[-404.32,-273.632],[-402.376,-275.648],[-399.46,-276.368],[-396.76,-275.702],[-395.032,-273.83],[-394.42,-270.896],[-393.232,-271.94],[-405.94,-271.94],[-405.94,-269.24],[-391.504,-269.24],[-391.36,-270.158],[-391.324,-270.932],[-392.35,-275.288],[-395.212,-278.276],[-399.388,-279.356],[-403.87,-278.186],[-407.038,-275],[-408.208,-270.464],[-407.02,-265.892],[-403.798,-262.706],[-399.172,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":203,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-384.556,-261.896],[-384.556,-278.996],[-387.796,-278.996],[-387.796,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-383.404,-275.144],[-380.452,-276.296],[-378.94,-276.044],[-377.752,-275.216],[-375.628,-277.412],[-377.572,-278.906],[-379.912,-279.356],[-384.268,-277.412],[-385.78,-272.192],[-384.556,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":204,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-357.952,-261.896],[-357.952,-272.516],[-358.816,-275.846],[-361.174,-278.384],[-364.612,-279.356],[-368.104,-278.474],[-370.516,-276.08],[-371.38,-272.624],[-370.048,-271.868],[-369.472,-274.172],[-367.888,-275.756],[-365.584,-276.332],[-362.434,-275.072],[-361.228,-271.868],[-361.228,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-370.048,-261.896],[-370.048,-278.996],[-373.288,-278.996],[-373.288,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":205,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-350.32,-261.896],[-350.32,-278.996],[-353.56,-278.996],[-353.56,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-338.764,-261.896],[-338.764,-272.912],[-339.61,-276.332],[-341.914,-278.564],[-345.172,-279.356],[-348.484,-278.546],[-350.806,-276.296],[-351.652,-272.912],[-350.32,-272.228],[-349.744,-274.424],[-348.232,-275.828],[-346.108,-276.332],[-343.174,-275.234],[-342.004,-272.228],[-342.004,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-327.172,-261.896],[-327.172,-272.876],[-328.054,-276.332],[-330.412,-278.564],[-333.76,-279.356],[-337.072,-278.546],[-339.538,-276.314],[-340.6,-272.912],[-338.764,-272.228],[-338.188,-274.424],[-336.658,-275.828],[-334.516,-276.332],[-331.618,-275.234],[-330.448,-272.228],[-330.448,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":206,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-311.08,-262.292],[-308.056,-264.488],[-310.144,-266.612],[-312.214,-265.1],[-314.86,-264.596],[-317.92,-265.334],[-319.972,-267.422],[-320.692,-270.572],[-320.008,-273.632],[-318.064,-275.648],[-315.148,-276.368],[-312.448,-275.702],[-310.72,-273.83],[-310.108,-270.896],[-308.92,-271.94],[-321.628,-271.94],[-321.628,-269.24],[-307.192,-269.24],[-307.048,-270.158],[-307.012,-270.932],[-308.038,-275.288],[-310.9,-278.276],[-315.076,-279.356],[-319.558,-278.186],[-322.726,-275],[-323.896,-270.464],[-322.708,-265.892],[-319.486,-262.706],[-314.86,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":207,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-288.148,-261.896],[-288.148,-272.516],[-289.012,-275.846],[-291.37,-278.384],[-294.808,-279.356],[-298.3,-278.474],[-300.712,-276.08],[-301.576,-272.624],[-300.244,-271.868],[-299.668,-274.172],[-298.084,-275.756],[-295.78,-276.332],[-292.63,-275.072],[-291.424,-271.868],[-291.424,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-300.244,-261.896],[-300.244,-278.996],[-303.484,-278.996],[-303.484,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":208,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-278.104,-261.896],[-278.104,-286.16],[-281.344,-286.16],[-281.344,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-273.892,-276.044],[-273.892,-278.996],[-285.556,-278.996],[-285.556,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":209,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.264],[0.48,0.468],[0.624,0],[0.456,-0.468],[0,-0.696],[-0.42,-0.42],[-0.504,0],[-0.192,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.6],[0.108,-0.372],[0,-0.696],[-0.48,-0.468],[-0.696,0],[-0.456,0.468],[0,0.624],[0.42,0.42],[0.24,0],[0.192,-0.168],[0,0],[0,0],[0,0]],"v":[[-269.932,-256.928],[-267.52,-261.392],[-266.89,-262.85],[-266.728,-263.804],[-267.448,-265.55],[-269.104,-266.252],[-270.832,-265.55],[-271.516,-263.804],[-270.886,-262.238],[-269.5,-261.608],[-268.852,-261.86],[-268.384,-262.508],[-269.536,-262.22],[-271.768,-257.936]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":210,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-243.832,-262.346],[-241.366,-264.596],[-240.34,-267.872],[-240.34,-273.02],[-241.384,-276.314],[-243.85,-278.546],[-247.324,-279.356],[-251.59,-278.168],[-254.578,-274.964],[-255.676,-270.428],[-254.578,-265.892],[-251.59,-262.706],[-247.324,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-249.664,-265.352],[-251.626,-267.422],[-252.328,-270.464],[-251.626,-273.47],[-249.682,-275.54],[-246.82,-276.296],[-243.994,-275.558],[-242.104,-273.488],[-241.42,-270.428],[-242.896,-266.234],[-246.784,-264.596]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-238.36,-261.896],[-238.36,-278.996],[-241.636,-278.996],[-241.636,-274.82],[-241.024,-270.68],[-241.636,-266.504],[-241.636,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":211,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-230.404,-261.896],[-230.404,-278.996],[-233.644,-278.996],[-233.644,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-218.848,-261.896],[-218.848,-272.912],[-219.694,-276.332],[-221.998,-278.564],[-225.256,-279.356],[-228.568,-278.546],[-230.89,-276.296],[-231.736,-272.912],[-230.404,-272.228],[-229.828,-274.424],[-228.316,-275.828],[-226.192,-276.332],[-223.258,-275.234],[-222.088,-272.228],[-222.088,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-207.256,-261.896],[-207.256,-272.876],[-208.138,-276.332],[-210.496,-278.564],[-213.844,-279.356],[-217.156,-278.546],[-219.622,-276.314],[-220.684,-272.912],[-218.848,-272.228],[-218.272,-274.424],[-216.742,-275.828],[-214.6,-276.332],[-211.702,-275.234],[-210.532,-272.228],[-210.532,-261.896]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":212,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-199.588,-261.896],[-199.588,-278.996],[-202.864,-278.996],[-202.864,-261.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-199.732,-283.01],[-199.156,-284.504],[-199.732,-285.962],[-201.208,-286.556],[-202.684,-285.962],[-203.26,-284.504],[-202.684,-283.01],[-201.208,-282.416]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":213,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-184.072,-262.346],[-181.588,-264.596],[-180.544,-267.872],[-180.544,-273.02],[-181.606,-276.314],[-184.108,-278.546],[-187.6,-279.356],[-191.812,-278.168],[-194.782,-274.964],[-195.88,-270.428],[-194.782,-265.892],[-191.812,-262.706],[-187.6,-261.536]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-189.886,-265.334],[-191.83,-267.404],[-192.532,-270.464],[-191.83,-273.506],[-189.904,-275.558],[-187.06,-276.296],[-184.216,-275.54],[-182.308,-273.47],[-181.624,-270.428],[-182.308,-267.422],[-184.216,-265.352],[-187.06,-264.596]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-178.564,-287.6],[-181.84,-287.6],[-181.84,-274.82],[-181.228,-270.68],[-181.84,-266.504],[-181.84,-261.896],[-178.564,-261.896]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":214,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-160.528,-261.896],[-160.528,-286.16],[-163.768,-286.16],[-163.768,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-156.316,-276.044],[-156.316,-278.996],[-167.98,-278.996],[-167.98,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":215,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-137.812,-261.896],[-137.812,-272.516],[-138.676,-276.08],[-141.034,-278.492],[-144.472,-279.356],[-147.964,-278.474],[-150.376,-276.08],[-151.24,-272.624],[-149.908,-271.868],[-149.332,-274.172],[-147.748,-275.756],[-145.444,-276.332],[-142.294,-275.072],[-141.088,-271.868],[-141.088,-261.896]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-149.908,-261.896],[-149.908,-287.6],[-153.148,-287.6],[-153.148,-261.896]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":216,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-121.72,-262.292],[-118.696,-264.488],[-120.784,-266.612],[-122.854,-265.1],[-125.5,-264.596],[-128.56,-265.334],[-130.612,-267.422],[-131.332,-270.572],[-130.648,-273.632],[-128.704,-275.648],[-125.788,-276.368],[-123.088,-275.702],[-121.36,-273.83],[-120.748,-270.896],[-119.56,-271.94],[-132.268,-271.94],[-132.268,-269.24],[-117.832,-269.24],[-117.688,-270.158],[-117.652,-270.932],[-118.678,-275.288],[-121.54,-278.276],[-125.716,-279.356],[-130.198,-278.186],[-133.366,-275],[-134.536,-270.464],[-133.348,-265.892],[-130.126,-262.706],[-125.5,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":217,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-91.552,-261.896],[-100.552,-271.652],[-100.696,-269.78],[-91.876,-278.996],[-95.836,-278.996],[-103.72,-270.644],[-95.728,-261.896]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-103.432,-261.896],[-103.432,-287.6],[-106.672,-287.6],[-106.672,-261.896]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"k","np":5,"cix":2,"bm":0,"ix":218,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-86.116,-261.896],[-86.116,-278.996],[-89.392,-278.996],[-89.392,-261.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-86.26,-283.01],[-85.684,-284.504],[-86.26,-285.962],[-87.736,-286.556],[-89.212,-285.962],[-89.788,-284.504],[-89.212,-283.01],[-87.736,-282.416]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":219,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-78.088,-261.896],[-78.088,-287.6],[-81.328,-287.6],[-81.328,-261.896]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":220,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-70.096,-261.896],[-70.096,-287.6],[-73.336,-287.6],[-73.336,-261.896]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":221,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-62.068,-261.896],[-62.068,-278.996],[-65.344,-278.996],[-65.344,-261.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-62.212,-283.01],[-61.636,-284.504],[-62.212,-285.962],[-63.688,-286.556],[-65.164,-285.962],[-65.74,-284.504],[-65.164,-283.01],[-63.688,-282.416]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":222,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-41.944,-261.896],[-41.944,-272.516],[-42.808,-275.846],[-45.166,-278.384],[-48.604,-279.356],[-52.096,-278.474],[-54.508,-276.08],[-55.372,-272.624],[-54.04,-271.868],[-53.464,-274.172],[-51.88,-275.756],[-49.576,-276.332],[-46.426,-275.072],[-45.22,-271.868],[-45.22,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-54.04,-261.896],[-54.04,-278.996],[-57.28,-278.996],[-57.28,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":223,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-25.762,-255.398],[-22.594,-258.278],[-21.46,-262.58],[-21.46,-278.996],[-24.7,-278.996],[-24.7,-274.496],[-24.124,-270.68],[-24.7,-266.828],[-24.7,-262.58],[-26.248,-258.854],[-30.388,-257.468],[-33.808,-258.17],[-36.292,-260.204],[-38.416,-258.08],[-35.14,-255.344],[-30.46,-254.372]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-26.932,-262.976],[-24.466,-265.19],[-23.44,-268.484],[-23.44,-273.02],[-24.448,-276.35],[-26.914,-278.564],[-30.496,-279.356],[-34.672,-278.222],[-37.606,-275.162],[-38.668,-270.788],[-37.588,-266.378],[-34.654,-263.3],[-30.46,-262.184]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-32.674,-265.946],[-34.618,-267.908],[-35.32,-270.788],[-34.618,-273.65],[-32.692,-275.594],[-29.848,-276.296],[-27.058,-275.594],[-25.186,-273.65],[-24.52,-270.752],[-25.186,-267.854],[-27.04,-265.928],[-29.848,-265.244]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":224,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[3.038,-262.724],[6.26,-265.946],[7.448,-270.5],[6.26,-275],[3.038,-278.186],[-1.516,-279.356],[-6.016,-278.168],[-9.22,-274.982],[-10.408,-270.5],[-9.22,-265.946],[-6.016,-262.724],[-1.516,-261.536]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-4.36,-265.424],[-6.34,-267.494],[-7.06,-270.5],[-6.34,-273.452],[-4.36,-275.486],[-1.516,-276.224],[1.382,-275.486],[3.362,-273.452],[4.1,-270.5],[3.38,-267.494],[1.4,-265.424],[-1.516,-264.668]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":225,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[16.196,-261.896],[16.196,-281.552],[17.042,-284.018],[19.436,-284.9],[20.84,-284.648],[21.884,-283.892],[24.008,-285.98],[22.028,-287.456],[19.472,-287.96],[16.052,-287.132],[13.748,-284.864],[12.92,-281.552],[12.92,-261.896]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21.632,-276.044],[21.632,-278.996],[8.744,-278.996],[8.744,-276.044]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":226,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[43.088,-262.346],[45.554,-264.596],[46.58,-267.872],[46.58,-273.02],[45.536,-276.314],[43.07,-278.546],[39.596,-279.356],[35.33,-278.168],[32.342,-274.964],[31.244,-270.428],[32.342,-265.892],[35.33,-262.706],[39.596,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[37.256,-265.352],[35.294,-267.422],[34.592,-270.464],[35.294,-273.47],[37.238,-275.54],[40.1,-276.296],[42.926,-275.558],[44.816,-273.488],[45.5,-270.428],[44.024,-266.234],[40.136,-264.596]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[48.56,-261.896],[48.56,-278.996],[45.284,-278.996],[45.284,-274.82],[45.896,-270.68],[45.284,-266.504],[45.284,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":227,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[68.288,-261.752],[76.28,-278.996],[72.68,-278.996],[66.884,-265.496],[68.036,-265.496],[62.528,-278.996],[58.928,-278.996],[66.344,-261.752]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[65.048,-254.732],[68.288,-261.752],[66.452,-265.064],[61.448,-254.732]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":228,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[90.626,-262.724],[93.848,-265.946],[95.036,-270.5],[93.848,-275],[90.626,-278.186],[86.072,-279.356],[81.572,-278.168],[78.368,-274.982],[77.18,-270.5],[78.368,-265.946],[81.572,-262.724],[86.072,-261.536]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[83.228,-265.424],[81.248,-267.494],[80.528,-270.5],[81.248,-273.452],[83.228,-275.486],[86.072,-276.224],[88.97,-275.486],[90.95,-273.452],[91.688,-270.5],[90.968,-267.494],[88.988,-265.424],[86.072,-264.668]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":229,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[109.328,-262.526],[111.92,-265.136],[112.856,-269.06],[112.856,-278.996],[109.616,-278.996],[109.616,-269.204],[108.536,-265.874],[105.548,-264.668],[103.352,-265.208],[101.93,-266.774],[101.444,-269.204],[101.444,-278.996],[98.204,-278.996],[98.204,-269.06],[99.14,-265.136],[101.75,-262.526],[105.548,-261.608]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":230,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[132.548,-261.896],[132.548,-272.516],[131.684,-275.846],[129.326,-278.384],[125.888,-279.356],[122.396,-278.474],[119.984,-276.08],[119.12,-272.624],[120.452,-271.868],[121.028,-274.172],[122.612,-275.756],[124.916,-276.332],[128.066,-275.072],[129.272,-271.868],[129.272,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[120.452,-261.896],[120.452,-278.996],[117.212,-278.996],[117.212,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":231,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[148.73,-255.398],[151.898,-258.278],[153.032,-262.58],[153.032,-278.996],[149.792,-278.996],[149.792,-274.496],[150.368,-270.68],[149.792,-266.828],[149.792,-262.58],[148.244,-258.854],[144.104,-257.468],[140.684,-258.17],[138.2,-260.204],[136.076,-258.08],[139.352,-255.344],[144.032,-254.372]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[147.56,-262.976],[150.026,-265.19],[151.052,-268.484],[151.052,-273.02],[150.044,-276.35],[147.578,-278.564],[143.996,-279.356],[139.82,-278.222],[136.886,-275.162],[135.824,-270.788],[136.904,-266.378],[139.838,-263.3],[144.032,-262.184]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[141.818,-265.946],[139.874,-267.908],[139.172,-270.788],[139.874,-273.65],[141.8,-275.594],[144.644,-276.296],[147.434,-275.594],[149.306,-273.65],[149.972,-270.752],[149.306,-267.854],[147.452,-265.928],[144.644,-265.244]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":232,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[177.53,-262.724],[180.752,-265.946],[181.94,-270.5],[180.752,-275],[177.53,-278.186],[172.976,-279.356],[168.476,-278.168],[165.272,-274.982],[164.084,-270.5],[165.272,-265.946],[168.476,-262.724],[172.976,-261.536]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[170.132,-265.424],[168.152,-267.494],[167.432,-270.5],[168.152,-273.452],[170.132,-275.486],[172.976,-276.224],[175.874,-275.486],[177.854,-273.452],[178.592,-270.5],[177.872,-267.494],[175.892,-265.424],[172.976,-264.668]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":233,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[200.876,-261.896],[200.876,-272.516],[200.012,-275.846],[197.654,-278.384],[194.216,-279.356],[190.724,-278.474],[188.312,-276.08],[187.448,-272.624],[188.78,-271.868],[189.356,-274.172],[190.94,-275.756],[193.244,-276.332],[196.394,-275.072],[197.6,-271.868],[197.6,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[188.78,-261.896],[188.78,-278.996],[185.54,-278.996],[185.54,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":234,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[208.508,-261.896],[208.508,-287.6],[205.268,-287.6],[205.268,-261.896]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":235,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[216.536,-261.896],[216.536,-278.996],[213.26,-278.996],[213.26,-261.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[216.392,-283.01],[216.968,-284.504],[216.392,-285.962],[214.916,-286.556],[213.44,-285.962],[212.864,-284.504],[213.44,-283.01],[214.916,-282.416]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":236,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[236.66,-261.896],[236.66,-272.516],[235.796,-275.846],[233.438,-278.384],[230,-279.356],[226.508,-278.474],[224.096,-276.08],[223.232,-272.624],[224.564,-271.868],[225.14,-274.172],[226.724,-275.756],[229.028,-276.332],[232.178,-275.072],[233.384,-271.868],[233.384,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[224.564,-261.896],[224.564,-278.996],[221.324,-278.996],[221.324,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":237,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[252.752,-262.292],[255.776,-264.488],[253.688,-266.612],[251.618,-265.1],[248.972,-264.596],[245.912,-265.334],[243.86,-267.422],[243.14,-270.572],[243.824,-273.632],[245.768,-275.648],[248.684,-276.368],[251.384,-275.702],[253.112,-273.83],[253.724,-270.896],[254.912,-271.94],[242.204,-271.94],[242.204,-269.24],[256.64,-269.24],[256.784,-270.158],[256.82,-270.932],[255.794,-275.288],[252.932,-278.276],[248.756,-279.356],[244.274,-278.186],[241.106,-275],[239.936,-270.464],[241.124,-265.892],[244.346,-262.706],[248.972,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":238,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[281.03,-262.706],[284,-265.892],[285.08,-270.428],[284,-274.964],[281.03,-278.168],[276.8,-279.356],[273.326,-278.546],[270.806,-276.314],[269.744,-273.02],[269.744,-267.872],[270.788,-264.596],[273.29,-262.346],[276.8,-261.536]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[271.04,-261.896],[271.04,-266.504],[270.428,-270.68],[271.04,-274.82],[271.04,-287.6],[267.8,-287.6],[267.8,-261.896]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[273.434,-265.352],[271.526,-267.422],[270.86,-270.428],[271.544,-273.47],[273.452,-275.54],[276.26,-276.296],[279.104,-275.54],[281.03,-273.47],[281.732,-270.464],[281.03,-267.422],[279.104,-265.352],[276.26,-264.596]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":239,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[292.028,-261.896],[292.028,-278.996],[288.752,-278.996],[288.752,-261.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[291.884,-283.01],[292.46,-284.504],[291.884,-285.962],[290.408,-286.556],[288.932,-285.962],[288.356,-284.504],[288.932,-283.01],[290.408,-282.416]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":240,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[311.936,-261.896],[302.936,-271.652],[302.792,-269.78],[311.612,-278.996],[307.652,-278.996],[299.768,-270.644],[307.76,-261.896]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[300.056,-261.896],[300.056,-287.6],[296.816,-287.6],[296.816,-261.896]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"k","np":5,"cix":2,"bm":0,"ix":241,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[325.472,-262.292],[328.496,-264.488],[326.408,-266.612],[324.338,-265.1],[321.692,-264.596],[318.632,-265.334],[316.58,-267.422],[315.86,-270.572],[316.544,-273.632],[318.488,-275.648],[321.404,-276.368],[324.104,-275.702],[325.832,-273.83],[326.444,-270.896],[327.632,-271.94],[314.924,-271.94],[314.924,-269.24],[329.36,-269.24],[329.504,-270.158],[329.54,-270.932],[328.514,-275.288],[325.652,-278.276],[321.476,-279.356],[316.994,-278.186],[313.826,-275],[312.656,-270.464],[313.844,-265.892],[317.066,-262.706],[321.692,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":242,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[345.488,-269.492],[345.488,-272.588],[333.644,-272.588],[333.644,-269.492]],"c":true},"ix":2},"nm":"-","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"-","np":3,"cix":2,"bm":0,"ix":243,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[355.424,-261.896],[355.424,-286.16],[352.184,-286.16],[352.184,-261.896]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[359.636,-276.044],[359.636,-278.996],[347.972,-278.996],[347.972,-276.044]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":244,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[373.028,-262.346],[375.494,-264.596],[376.52,-267.872],[376.52,-273.02],[375.476,-276.314],[373.01,-278.546],[369.536,-279.356],[365.27,-278.168],[362.282,-274.964],[361.184,-270.428],[362.282,-265.892],[365.27,-262.706],[369.536,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[367.196,-265.352],[365.234,-267.422],[364.532,-270.464],[365.234,-273.47],[367.178,-275.54],[370.04,-276.296],[372.866,-275.558],[374.756,-273.488],[375.44,-270.428],[373.964,-266.234],[370.076,-264.596]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[378.5,-261.896],[378.5,-278.996],[375.224,-278.996],[375.224,-274.82],[375.836,-270.68],[375.224,-266.504],[375.224,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":245,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[398.372,-261.896],[391.172,-271.832],[390.56,-272.336],[385.7,-278.996],[381.74,-278.996],[388.508,-269.924],[389.12,-269.384],[394.448,-261.896]],"c":true},"ix":2},"nm":"x","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[385.268,-261.896],[390.344,-269.024],[388.508,-271.4],[381.452,-261.896]],"c":true},"ix":2},"nm":"x","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[398.048,-278.996],[394.268,-278.996],[389.516,-272.3],[391.424,-269.996]],"c":true},"ix":2},"nm":"x","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"x","np":6,"cix":2,"bm":0,"ix":246,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[404.636,-261.896],[404.636,-278.996],[401.36,-278.996],[401.36,-261.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[404.492,-283.01],[405.068,-284.504],[404.492,-285.962],[403.016,-286.556],[401.54,-285.962],[400.964,-284.504],[401.54,-283.01],[403.016,-282.416]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":247,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[427.604,-262.346],[430.088,-264.596],[431.132,-267.872],[431.132,-273.02],[430.07,-276.314],[427.568,-278.546],[424.076,-279.356],[419.864,-278.168],[416.894,-274.964],[415.796,-270.428],[416.894,-265.892],[419.864,-262.706],[424.076,-261.536]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[421.79,-265.334],[419.846,-267.404],[419.144,-270.464],[419.846,-273.506],[421.772,-275.558],[424.616,-276.296],[427.46,-275.54],[429.368,-273.47],[430.052,-270.428],[429.368,-267.422],[427.46,-265.352],[424.616,-264.596]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[433.112,-287.6],[429.836,-287.6],[429.836,-274.82],[430.448,-270.68],[429.836,-266.504],[429.836,-261.896],[433.112,-261.896]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":248,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[441.068,-261.896],[441.068,-278.996],[437.828,-278.996],[437.828,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[442.22,-275.144],[445.172,-276.296],[446.684,-276.044],[447.872,-275.216],[449.996,-277.412],[448.052,-278.906],[445.712,-279.356],[441.356,-277.412],[439.844,-272.192],[441.068,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":249,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[455.54,-261.896],[455.54,-278.996],[452.264,-278.996],[452.264,-261.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[455.396,-283.01],[455.972,-284.504],[455.396,-285.962],[453.92,-286.556],[452.444,-285.962],[451.868,-284.504],[452.444,-283.01],[453.92,-282.416]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":250,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[468.104,-261.896],[475.952,-278.996],[472.496,-278.996],[466.16,-264.56],[468.248,-264.56],[461.948,-278.996],[458.348,-278.996],[466.196,-261.896]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":251,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[489.776,-262.292],[492.8,-264.488],[490.712,-266.612],[488.642,-265.1],[485.996,-264.596],[482.936,-265.334],[480.884,-267.422],[480.164,-270.572],[480.848,-273.632],[482.792,-275.648],[485.708,-276.368],[488.408,-275.702],[490.136,-273.83],[490.748,-270.896],[491.936,-271.94],[479.228,-271.94],[479.228,-269.24],[493.664,-269.24],[493.808,-270.158],[493.844,-270.932],[492.818,-275.288],[489.956,-278.276],[485.78,-279.356],[481.298,-278.186],[478.13,-275],[476.96,-270.464],[478.148,-265.892],[481.37,-262.706],[485.996,-261.536]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":252,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[500.612,-261.896],[500.612,-278.996],[497.372,-278.996],[497.372,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[501.764,-275.144],[504.716,-276.296],[506.228,-276.044],[507.416,-275.216],[509.54,-277.412],[507.596,-278.906],[505.256,-279.356],[500.9,-277.412],[499.388,-272.192],[500.612,-271.616]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":253,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.264],[0.48,0.468],[0.624,0],[0.456,-0.468],[0,-0.696],[-0.42,-0.42],[-0.504,0],[-0.192,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.6],[0.108,-0.372],[0,-0.696],[-0.48,-0.468],[-0.696,0],[-0.456,0.468],[0,0.624],[0.42,0.42],[0.24,0],[0.192,-0.168],[0,0],[0,0],[0,0]],"v":[[511.7,-256.928],[514.112,-261.392],[514.742,-262.85],[514.904,-263.804],[514.184,-265.55],[512.528,-266.252],[510.8,-265.55],[510.116,-263.804],[510.746,-262.238],[512.132,-261.608],[512.78,-261.86],[513.248,-262.508],[512.096,-262.22],[509.864,-257.936]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":254,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[532.22,-261.896],[539.564,-283.676],[536.972,-283.676],[544.136,-261.896],[551.624,-261.896],[541.976,-287.528],[534.632,-287.528],[524.876,-261.896]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[545.54,-266.216],[545.54,-271.832],[531.212,-271.832],[531.212,-266.216]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":255,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.336,0.336],[-0.552,0],[-0.264,-0.084],[-0.168,-0.192],[0,0],[1.044,0.432],[1.344,0],[1.272,-0.756],[0.672,-1.26],[0,-1.536],[0,0]],"o":[[0,0],[0,-0.552],[0.336,-0.336],[0.288,0],[0.264,0.084],[0,0],[-0.696,-0.72],[-1.044,-0.432],[-1.8,0],[-1.272,0.756],[-0.672,1.26],[0,0],[0,0]],"v":[[561.452,-261.896],[561.452,-280.652],[561.956,-281.984],[563.288,-282.488],[564.116,-282.362],[564.764,-281.948],[569.12,-286.304],[566.51,-288.032],[562.928,-288.68],[558.32,-287.546],[555.404,-284.522],[554.396,-280.328],[554.396,-261.896]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[566.312,-273.848],[566.312,-279.608],[550.796,-279.608],[550.796,-273.848]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":256,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.336,0.336],[-0.552,0],[-0.264,-0.084],[-0.168,-0.192],[0,0],[1.044,0.432],[1.344,0],[1.272,-0.756],[0.672,-1.26],[0,-1.536],[0,0]],"o":[[0,0],[0,-0.552],[0.336,-0.336],[0.288,0],[0.264,0.084],[0,0],[-0.696,-0.72],[-1.044,-0.432],[-1.8,0],[-1.272,0.756],[-0.672,1.26],[0,0],[0,0]],"v":[[577.292,-261.896],[577.292,-280.652],[577.796,-281.984],[579.128,-282.488],[579.956,-282.362],[580.604,-281.948],[584.96,-286.304],[582.35,-288.032],[578.768,-288.68],[574.16,-287.546],[571.244,-284.522],[570.236,-280.328],[570.236,-261.896]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[582.152,-273.848],[582.152,-279.608],[566.636,-279.608],[566.636,-273.848]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":257,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.876,0.348],[-0.588,0.624],[-0.168,0.816],[0,0],[0.588,0.624],[0.876,0.348],[1.032,0],[1.272,-0.78],[0.72,-1.392],[0,-1.8],[-0.72,-1.38],[-1.272,-0.792],[-1.656,0]],"o":[[0.876,-0.348],[0.588,-0.624],[0,0],[-0.168,-0.816],[-0.588,-0.624],[-0.876,-0.348],[-1.656,0],[-1.272,0.78],[-0.72,1.392],[0,1.8],[0.72,1.38],[1.272,0.792],[1.032,0]],"v":[[594.59,-262.058],[596.786,-263.516],[597.92,-265.676],[597.92,-275.828],[596.786,-277.988],[594.59,-279.446],[591.728,-279.968],[587.336,-278.798],[584.348,-275.54],[583.268,-270.752],[584.348,-265.982],[587.336,-262.724],[591.728,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.456,0.264],[0.252,0.456],[0,0.576],[-0.264,0.456],[-0.444,0.264],[-0.576,0],[-0.444,-0.264],[-0.24,-0.444],[0,-0.6],[0.54,-0.564],[0.888,0]],"o":[[-0.456,-0.264],[-0.252,-0.456],[0,-0.576],[0.264,-0.456],[0.444,-0.264],[0.576,0],[0.444,0.264],[0.24,0.444],[0,0.888],[-0.54,0.564],[-0.552,0]],"v":[[591.8,-268.124],[590.738,-269.204],[590.36,-270.752],[590.756,-272.3],[591.818,-273.38],[593.348,-273.776],[594.878,-273.38],[595.904,-272.318],[596.264,-270.752],[595.454,-268.574],[593.312,-267.728]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[602.924,-261.896],[602.924,-279.608],[596.048,-279.608],[596.048,-275.252],[597.02,-270.968],[596.048,-266.648],[596.048,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":258,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,0.972],[0.996,0.564],[1.272,0],[1.116,-0.552],[0.636,-1.032],[0,-1.44],[0,0],[-0.18,0.324],[-0.324,0.168],[-0.408,0],[-0.396,-0.372],[0,-0.696],[0,0]],"o":[[0,0],[0,-1.272],[-0.576,-0.972],[-0.996,-0.564],[-1.416,0],[-1.116,0.552],[-0.636,1.032],[0,0],[0,-0.456],[0.18,-0.324],[0.324,-0.168],[0.6,0],[0.396,0.372],[0,0],[0,0]],"v":[[624.632,-261.896],[624.632,-273.452],[623.768,-276.818],[621.41,-279.122],[618.008,-279.968],[614.21,-279.14],[611.582,-276.764],[610.628,-273.056],[613.364,-271.832],[613.634,-273.002],[614.39,-273.74],[615.488,-273.992],[616.982,-273.434],[617.576,-271.832],[617.576,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[613.364,-261.896],[613.364,-279.608],[606.308,-279.608],[606.308,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":259,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[658.76,-261.896],[648.5,-276.512],[648.5,-274.208],[658.364,-287.528],[649.688,-287.528],[641.156,-275.252],[650.12,-261.896]],"c":true},"ix":2},"nm":"K","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[641.768,-261.896],[641.768,-287.528],[634.568,-287.528],[634.568,-261.896]],"c":true},"ix":2},"nm":"K","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"K","np":5,"cix":2,"bm":0,"ix":260,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.332,0.672],[-0.756,1.188],[0,1.56],[0,0],[0,0],[0,0],[0.348,-0.348],[0.504,0],[0.276,0.156],[0.156,0.288],[0,0.36],[0,0],[0,0],[0,0],[-0.768,-1.2],[-1.332,-0.672],[-1.728,0]],"o":[[1.332,-0.672],[0.756,-1.188],[0,0],[0,0],[0,0],[0,0.552],[-0.348,0.348],[-0.36,0],[-0.276,-0.156],[-0.156,-0.288],[0,0],[0,0],[0,0],[0,1.536],[0.768,1.2],[1.332,0.672],[1.728,0]],"v":[[671.954,-262.472],[675.086,-265.262],[676.22,-269.384],[676.22,-279.608],[669.164,-279.608],[669.164,-269.312],[668.642,-267.962],[667.364,-267.44],[666.41,-267.674],[665.762,-268.34],[665.528,-269.312],[665.528,-279.608],[658.472,-279.608],[658.472,-269.384],[659.624,-265.28],[662.774,-262.472],[667.364,-261.464]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":261,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[686.192,-261.896],[686.192,-279.608],[679.136,-279.608],[679.136,-261.896]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.36,0.42],[-0.72,0],[-0.324,-0.132],[-0.168,-0.192],[0,0],[0.588,0.192],[0.816,0],[1.212,-0.9],[0.912,-1.92],[0,0]],"o":[[0.36,-0.42],[0.432,0],[0.324,0.132],[0,0],[-0.36,-0.36],[-0.588,-0.192],[-1.824,0],[-1.212,0.9],[0,0],[0,-0.792]],"v":[[686.732,-273.29],[688.352,-273.92],[689.486,-273.722],[690.224,-273.236],[694.184,-278.852],[692.762,-279.68],[690.656,-279.968],[686.102,-278.618],[682.916,-274.388],[686.192,-271.472]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":262,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,0.972],[0.996,0.564],[1.272,0],[1.116,-0.552],[0.636,-1.032],[0,-1.44],[0,0],[-0.18,0.324],[-0.324,0.168],[-0.408,0],[-0.396,-0.372],[0,-0.696],[0,0]],"o":[[0,0],[0,-1.272],[-0.576,-0.972],[-0.996,-0.564],[-1.416,0],[-1.116,0.552],[-0.636,1.032],[0,0],[0,-0.456],[0.18,-0.324],[0.324,-0.168],[0.6,0],[0.396,0.372],[0,0],[0,0]],"v":[[713.228,-261.896],[713.228,-273.452],[712.364,-276.818],[710.006,-279.122],[706.604,-279.968],[702.806,-279.14],[700.178,-276.764],[699.224,-273.056],[701.96,-271.832],[702.23,-273.002],[702.986,-273.74],[704.084,-273.992],[705.578,-273.434],[706.172,-271.832],[706.172,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[701.96,-261.896],[701.96,-279.608],[694.904,-279.608],[694.904,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":263,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[723.272,-261.896],[723.272,-279.608],[716.216,-279.608],[716.216,-261.896]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.672,0.708],[0,1.032],[0.672,0.708],[1.056,0],[0.684,-0.708],[0,-1.032],[-0.684,-0.708],[-1.032,0]],"o":[[0.672,-0.708],[0,-1.032],[-0.672,-0.708],[-1.032,0],[-0.684,0.708],[0,1.032],[0.684,0.708],[1.056,0]],"v":[[722.336,-282.326],[723.344,-284.936],[722.336,-287.546],[719.744,-288.608],[717.17,-287.546],[716.144,-284.936],[717.17,-282.326],[719.744,-281.264]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":264,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.876,0.348],[-0.588,0.624],[-0.168,0.816],[0,0],[0.588,0.624],[0.876,0.348],[1.032,0],[1.272,-0.78],[0.72,-1.392],[0,-1.8],[-0.72,-1.38],[-1.272,-0.792],[-1.656,0]],"o":[[0.876,-0.348],[0.588,-0.624],[0,0],[-0.168,-0.816],[-0.588,-0.624],[-0.876,-0.348],[-1.656,0],[-1.272,0.78],[-0.72,1.392],[0,1.8],[0.72,1.38],[1.272,0.792],[1.032,0]],"v":[[736.862,-262.058],[739.058,-263.516],[740.192,-265.676],[740.192,-275.828],[739.058,-277.988],[736.862,-279.446],[734,-279.968],[729.608,-278.798],[726.62,-275.54],[725.54,-270.752],[726.62,-265.982],[729.608,-262.724],[734,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.456,0.264],[0.252,0.456],[0,0.576],[-0.264,0.456],[-0.444,0.264],[-0.576,0],[-0.444,-0.264],[-0.24,-0.444],[0,-0.6],[0.54,-0.564],[0.888,0]],"o":[[-0.456,-0.264],[-0.252,-0.456],[0,-0.576],[0.264,-0.456],[0.444,-0.264],[0.576,0],[0.444,0.264],[0.24,0.444],[0,0.888],[-0.54,0.564],[-0.552,0]],"v":[[734.072,-268.124],[733.01,-269.204],[732.632,-270.752],[733.028,-272.3],[734.09,-273.38],[735.62,-273.776],[737.15,-273.38],[738.176,-272.318],[738.536,-270.752],[737.726,-268.574],[735.584,-267.728]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[745.196,-261.896],[745.196,-279.608],[738.32,-279.608],[738.32,-275.252],[739.292,-270.968],[738.32,-266.648],[738.32,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":265,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[758.732,-261.896],[762.296,-274.136],[760.856,-274.136],[764.312,-261.896],[771.044,-261.896],[776.192,-279.608],[769.496,-279.608],[766.58,-266.72],[768.596,-266.684],[764.852,-279.608],[758.192,-279.608],[754.484,-266.684],[756.464,-266.72],[753.62,-279.608],[746.924,-279.608],[752.072,-261.896]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":266,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.876,0.348],[-0.588,0.624],[-0.168,0.816],[0,0],[0.588,0.624],[0.876,0.348],[1.032,0],[1.272,-0.78],[0.72,-1.392],[0,-1.8],[-0.72,-1.38],[-1.272,-0.792],[-1.656,0]],"o":[[0.876,-0.348],[0.588,-0.624],[0,0],[-0.168,-0.816],[-0.588,-0.624],[-0.876,-0.348],[-1.656,0],[-1.272,0.78],[-0.72,1.392],[0,1.8],[0.72,1.38],[1.272,0.792],[1.032,0]],"v":[[787.874,-262.058],[790.07,-263.516],[791.204,-265.676],[791.204,-275.828],[790.07,-277.988],[787.874,-279.446],[785.012,-279.968],[780.62,-278.798],[777.632,-275.54],[776.552,-270.752],[777.632,-265.982],[780.62,-262.724],[785.012,-261.536]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.456,0.264],[0.252,0.456],[0,0.576],[-0.264,0.456],[-0.444,0.264],[-0.576,0],[-0.444,-0.264],[-0.24,-0.444],[0,-0.6],[0.54,-0.564],[0.888,0]],"o":[[-0.456,-0.264],[-0.252,-0.456],[0,-0.576],[0.264,-0.456],[0.444,-0.264],[0.576,0],[0.444,0.264],[0.24,0.444],[0,0.888],[-0.54,0.564],[-0.552,0]],"v":[[785.084,-268.124],[784.022,-269.204],[783.644,-270.752],[784.04,-272.3],[785.102,-273.38],[786.632,-273.776],[788.162,-273.38],[789.188,-272.318],[789.548,-270.752],[788.738,-268.574],[786.596,-267.728]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[796.208,-261.896],[796.208,-279.608],[789.332,-279.608],[789.332,-275.252],[790.304,-270.968],[789.332,-266.648],[789.332,-261.896]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":267,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,0.972],[0.996,0.564],[1.272,0],[1.116,-0.552],[0.636,-1.032],[0,-1.44],[0,0],[-0.18,0.324],[-0.324,0.168],[-0.408,0],[-0.396,-0.372],[0,-0.696],[0,0]],"o":[[0,0],[0,-1.272],[-0.576,-0.972],[-0.996,-0.564],[-1.416,0],[-1.116,0.552],[-0.636,1.032],[0,0],[0,-0.456],[0.18,-0.324],[0.324,-0.168],[0.6,0],[0.396,0.372],[0,0],[0,0]],"v":[[817.916,-261.896],[817.916,-273.452],[817.052,-276.818],[814.694,-279.122],[811.292,-279.968],[807.494,-279.14],[804.866,-276.764],[803.912,-273.056],[806.648,-271.832],[806.918,-273.002],[807.674,-273.74],[808.772,-273.992],[810.266,-273.434],[810.86,-271.832],[810.86,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[806.648,-261.896],[806.648,-279.608],[799.592,-279.608],[799.592,-261.896]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":268,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.924,2.352],[0,2.904],[-0.924,2.352],[-1.704,1.488],[0,0],[0.936,-1.62],[0.504,-1.92],[0,-2.064],[-0.504,-1.92],[-0.936,-1.62],[-1.32,-1.104]],"o":[[-1.704,-1.512],[-0.924,-2.352],[0,-2.928],[0.924,-2.352],[0,0],[-1.32,1.104],[-0.936,1.62],[-0.504,1.92],[0,2.064],[0.504,1.92],[0.936,1.62],[0,0]],"v":[[-822.172,-216.212],[-826.114,-222.008],[-827.5,-229.892],[-826.114,-237.812],[-822.172,-243.572],[-824.044,-245.264],[-827.428,-241.178],[-829.588,-235.868],[-830.344,-229.892],[-829.588,-223.916],[-827.428,-218.606],[-824.044,-214.52]],"c":true},"ix":2},"nm":"(","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"(","np":3,"cix":2,"bm":0,"ix":269,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.636,0.852],[-0.252,0.816],[0,1.032],[0.624,1.08],[1.14,0.6],[1.536,0],[1.392,-0.828],[0.96,-1.632],[0,0],[-0.96,0.612],[-1.272,0],[-0.804,-0.72],[0,-1.272],[0.216,-0.6],[0.54,-0.708],[0.912,-0.96],[0,0]],"o":[[0,0],[1.128,-1.176],[0.636,-0.852],[0.252,-0.816],[0,-1.44],[-0.624,-1.08],[-1.14,-0.6],[-1.848,0],[-1.392,0.828],[0,0],[0.744,-1.272],[0.96,-0.612],[1.296,0],[0.804,0.72],[0,0.648],[-0.216,0.6],[-0.54,0.708],[0,0],[0,0]],"v":[[-815.548,-220.856],[-808.096,-228.524],[-805.45,-231.566],[-804.118,-234.068],[-803.74,-236.84],[-804.676,-240.62],[-807.322,-243.14],[-811.336,-244.04],[-816.196,-242.798],[-819.724,-239.108],[-817.348,-237.128],[-814.792,-239.954],[-811.444,-240.872],[-808.294,-239.792],[-807.088,-236.804],[-807.412,-234.932],[-808.546,-232.97],[-810.724,-230.468],[-819.94,-220.748]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-803.164,-218.696],[-803.164,-221.72],[-817.06,-221.72],[-819.94,-220.748],[-819.94,-218.696]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":270,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-792.076,-218.696],[-792.076,-243.68],[-795.424,-243.68],[-795.424,-218.696]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-792.436,-240.656],[-792.436,-243.68],[-800.536,-243.68],[-800.536,-240.656]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":271,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-771.772,-218.552],[-763.78,-235.796],[-767.38,-235.796],[-773.176,-222.296],[-772.024,-222.296],[-777.532,-235.796],[-781.132,-235.796],[-773.716,-218.552]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-775.012,-211.532],[-771.772,-218.552],[-773.608,-221.864],[-778.612,-211.532]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":272,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-749.434,-219.524],[-746.212,-222.746],[-745.024,-227.3],[-746.212,-231.8],[-749.434,-234.986],[-753.988,-236.156],[-758.488,-234.968],[-761.692,-231.782],[-762.88,-227.3],[-761.692,-222.746],[-758.488,-219.524],[-753.988,-218.336]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-756.832,-222.224],[-758.812,-224.294],[-759.532,-227.3],[-758.812,-230.252],[-756.832,-232.286],[-753.988,-233.024],[-751.09,-232.286],[-749.11,-230.252],[-748.372,-227.3],[-749.092,-224.294],[-751.072,-222.224],[-753.988,-221.468]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":273,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.936,1.62],[-0.504,1.92],[0,2.064],[0.504,1.92],[0.936,1.62],[1.32,1.104],[0,0],[-0.912,-2.352],[0,-2.928],[0.912,-2.352],[1.728,-1.512],[0,0]],"o":[[0.936,-1.62],[0.504,-1.92],[0,-2.064],[-0.504,-1.92],[-0.936,-1.62],[0,0],[1.728,1.488],[0.912,2.352],[0,2.904],[-0.912,2.352],[0,0],[1.32,-1.104]],"v":[[-737.464,-218.606],[-735.304,-223.916],[-734.548,-229.892],[-735.304,-235.868],[-737.464,-241.178],[-740.848,-245.264],[-742.756,-243.572],[-738.796,-237.812],[-737.428,-229.892],[-738.796,-222.008],[-742.756,-216.212],[-740.848,-214.52]],"c":true},"ix":2},"nm":")","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":")","np":3,"cix":2,"bm":0,"ix":274,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-710.77,-219.524],[-707.548,-222.746],[-706.36,-227.3],[-707.548,-231.8],[-710.77,-234.986],[-715.324,-236.156],[-719.824,-234.968],[-723.028,-231.782],[-724.216,-227.3],[-723.028,-222.746],[-719.824,-219.524],[-715.324,-218.336]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-718.168,-222.224],[-720.148,-224.294],[-720.868,-227.3],[-720.148,-230.252],[-718.168,-232.286],[-715.324,-233.024],[-712.426,-232.286],[-710.446,-230.252],[-709.708,-227.3],[-710.428,-224.294],[-712.408,-222.224],[-715.324,-221.468]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":275,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-687.424,-218.696],[-687.424,-229.316],[-688.288,-232.646],[-690.646,-235.184],[-694.084,-236.156],[-697.576,-235.274],[-699.988,-232.88],[-700.852,-229.424],[-699.52,-228.668],[-698.944,-230.972],[-697.36,-232.556],[-695.056,-233.132],[-691.906,-231.872],[-690.7,-228.668],[-690.7,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-699.52,-218.696],[-699.52,-235.796],[-702.76,-235.796],[-702.76,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":276,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-674.248,-218.696],[-665.788,-239.828],[-667.084,-239.828],[-658.66,-218.696],[-654.988,-218.696],[-665.176,-243.68],[-667.624,-243.68],[-677.884,-218.696]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-659.848,-224.348],[-659.848,-227.3],[-672.988,-227.3],[-672.988,-224.348]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":277,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-641.488,-219.326],[-638.896,-221.936],[-637.96,-225.86],[-637.96,-235.796],[-641.2,-235.796],[-641.2,-226.004],[-642.28,-222.674],[-645.268,-221.468],[-647.464,-222.008],[-648.886,-223.574],[-649.372,-226.004],[-649.372,-235.796],[-652.612,-235.796],[-652.612,-225.86],[-651.676,-221.936],[-649.066,-219.326],[-645.268,-218.408]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":278,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-621.814,-212.198],[-618.646,-215.078],[-617.512,-219.38],[-617.512,-235.796],[-620.752,-235.796],[-620.752,-231.296],[-620.176,-227.48],[-620.752,-223.628],[-620.752,-219.38],[-622.3,-215.654],[-626.44,-214.268],[-629.86,-214.97],[-632.344,-217.004],[-634.468,-214.88],[-631.192,-212.144],[-626.512,-211.172]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-622.984,-219.776],[-620.518,-221.99],[-619.492,-225.284],[-619.492,-229.82],[-620.5,-233.15],[-622.966,-235.364],[-626.548,-236.156],[-630.724,-235.022],[-633.658,-231.962],[-634.72,-227.588],[-633.64,-223.178],[-630.706,-220.1],[-626.512,-218.984]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-628.726,-222.746],[-630.67,-224.708],[-631.372,-227.588],[-630.67,-230.45],[-628.744,-232.394],[-625.9,-233.096],[-623.11,-232.394],[-621.238,-230.45],[-620.572,-227.552],[-621.238,-224.654],[-623.092,-222.728],[-625.9,-222.044]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":279,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-602.104,-219.326],[-599.512,-221.936],[-598.576,-225.86],[-598.576,-235.796],[-601.816,-235.796],[-601.816,-226.004],[-602.896,-222.674],[-605.884,-221.468],[-608.08,-222.008],[-609.502,-223.574],[-609.988,-226.004],[-609.988,-235.796],[-613.228,-235.796],[-613.228,-225.86],[-612.292,-221.936],[-609.682,-219.326],[-605.884,-218.408]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":280,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-584.194,-219.74],[-582.484,-223.556],[-583.15,-226.112],[-584.86,-227.66],[-587.056,-228.578],[-589.27,-229.244],[-590.98,-230.036],[-591.628,-231.368],[-590.89,-232.7],[-588.748,-233.204],[-586.372,-232.7],[-584.572,-231.26],[-582.484,-233.348],[-585.058,-235.454],[-588.64,-236.156],[-591.916,-235.544],[-594.022,-233.798],[-594.76,-231.116],[-594.094,-228.614],[-592.384,-227.12],[-590.17,-226.256],[-587.956,-225.59],[-586.246,-224.726],[-585.58,-223.268],[-586.408,-221.81],[-588.748,-221.288],[-591.484,-221.846],[-593.644,-223.556],[-595.732,-221.468],[-593.878,-219.794],[-591.52,-218.714],[-588.784,-218.336]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":281,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-572.98,-218.696],[-572.98,-242.96],[-576.22,-242.96],[-576.22,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-568.768,-232.844],[-568.768,-235.796],[-580.432,-235.796],[-580.432,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":282,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.636,0.852],[-0.252,0.816],[0,1.032],[0.624,1.08],[1.14,0.6],[1.536,0],[1.392,-0.828],[0.96,-1.632],[0,0],[-0.96,0.612],[-1.272,0],[-0.804,-0.72],[0,-1.272],[0.216,-0.6],[0.54,-0.708],[0.912,-0.96],[0,0]],"o":[[0,0],[1.128,-1.176],[0.636,-0.852],[0.252,-0.816],[0,-1.44],[-0.624,-1.08],[-1.14,-0.6],[-1.848,0],[-1.392,0.828],[0,0],[0.744,-1.272],[0.96,-0.612],[1.296,0],[0.804,0.72],[0,0.648],[-0.216,0.6],[-0.54,0.708],[0,0],[0,0]],"v":[[-554.944,-220.856],[-547.492,-228.524],[-544.846,-231.566],[-543.514,-234.068],[-543.136,-236.84],[-544.072,-240.62],[-546.718,-243.14],[-550.732,-244.04],[-555.592,-242.798],[-559.12,-239.108],[-556.744,-237.128],[-554.188,-239.954],[-550.84,-240.872],[-547.69,-239.792],[-546.484,-236.804],[-546.808,-234.932],[-547.942,-232.97],[-550.12,-230.468],[-559.336,-220.748]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-542.56,-218.696],[-542.56,-221.72],[-556.456,-221.72],[-559.336,-220.748],[-559.336,-218.696]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":283,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-533.38,-218.696],[-524.236,-241.592],[-527.584,-241.664],[-536.944,-218.696]],"c":true},"ix":2},"nm":"7","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-525.712,-240.656],[-524.236,-241.592],[-524.236,-243.68],[-540.868,-243.68],[-540.868,-240.656]],"c":true},"ix":2},"nm":"7","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"7","np":5,"cix":2,"bm":0,"ix":284,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-514.84,-218.696],[-514.84,-242.96],[-518.08,-242.96],[-518.08,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-510.628,-232.844],[-510.628,-235.796],[-522.292,-235.796],[-522.292,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":285,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-492.124,-218.696],[-492.124,-229.316],[-492.988,-232.88],[-495.346,-235.292],[-498.784,-236.156],[-502.276,-235.274],[-504.688,-232.88],[-505.552,-229.424],[-504.22,-228.668],[-503.644,-230.972],[-502.06,-232.556],[-499.756,-233.132],[-496.606,-231.872],[-495.4,-228.668],[-495.4,-218.696]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-504.22,-218.696],[-504.22,-244.4],[-507.46,-244.4],[-507.46,-218.696]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":286,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.636,0.852],[-0.252,0.816],[0,1.032],[0.624,1.08],[1.14,0.6],[1.536,0],[1.392,-0.828],[0.96,-1.632],[0,0],[-0.96,0.612],[-1.272,0],[-0.804,-0.72],[0,-1.272],[0.216,-0.6],[0.54,-0.708],[0.912,-0.96],[0,0]],"o":[[0,0],[1.128,-1.176],[0.636,-0.852],[0.252,-0.816],[0,-1.44],[-0.624,-1.08],[-1.14,-0.6],[-1.848,0],[-1.392,0.828],[0,0],[0.744,-1.272],[0.96,-0.612],[1.296,0],[0.804,0.72],[0,0.648],[-0.216,0.6],[-0.54,0.708],[0,0],[0,0]],"v":[[-477.076,-220.856],[-469.624,-228.524],[-466.978,-231.566],[-465.646,-234.068],[-465.268,-236.84],[-466.204,-240.62],[-468.85,-243.14],[-472.864,-244.04],[-477.724,-242.798],[-481.252,-239.108],[-478.876,-237.128],[-476.32,-239.954],[-472.972,-240.872],[-469.822,-239.792],[-468.616,-236.804],[-468.94,-234.932],[-470.074,-232.97],[-472.252,-230.468],[-481.468,-220.748]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-464.692,-218.696],[-464.692,-221.72],[-478.588,-221.72],[-481.468,-220.748],[-481.468,-218.696]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":287,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.524,1.044],[-0.9,1.932],[0,2.616],[0.9,1.92],[1.536,1.044],[1.896,0],[1.536,-1.044],[0.9,-1.92],[0,-2.616],[-0.912,-1.932],[-1.548,-1.056],[-1.872,0]],"o":[[1.524,-1.044],[0.9,-1.932],[0,-2.64],[-0.9,-1.92],[-1.536,-1.044],[-1.848,0],[-1.536,1.044],[-0.9,1.92],[0,2.616],[0.912,1.932],[1.548,1.056],[1.848,0]],"v":[[-446.242,-219.902],[-442.606,-224.366],[-441.256,-231.188],[-442.606,-238.028],[-446.26,-242.474],[-451.408,-244.04],[-456.484,-242.474],[-460.138,-238.028],[-461.488,-231.224],[-460.12,-224.402],[-456.43,-219.92],[-451.3,-218.336]],"c":true},"ix":2},"nm":"0","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[1.008,0.732],[0.564,1.44],[0,2.112],[-0.564,1.428],[-1.008,0.72],[-1.296,0],[-1.008,-0.72],[-0.576,-1.44],[0,-2.088],[0.576,-1.44],[0.996,-0.732],[1.32,0]],"o":[[-1.008,-0.732],[-0.564,-1.44],[0,-2.112],[0.564,-1.428],[1.008,-0.72],[1.32,0],[1.008,0.72],[0.576,1.44],[0,2.112],[-0.576,1.44],[-0.996,0.732],[-1.32,0]],"v":[[-454.864,-222.638],[-457.222,-225.896],[-458.068,-231.224],[-457.222,-236.534],[-454.864,-239.756],[-451.408,-240.836],[-447.916,-239.756],[-445.54,-236.516],[-444.676,-231.224],[-445.54,-225.896],[-447.898,-222.638],[-451.372,-221.54]],"c":true},"ix":2},"nm":"0","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"0","np":5,"cix":2,"bm":0,"ix":288,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.636,0.852],[-0.252,0.816],[0,1.032],[0.624,1.08],[1.14,0.6],[1.536,0],[1.392,-0.828],[0.96,-1.632],[0,0],[-0.96,0.612],[-1.272,0],[-0.804,-0.72],[0,-1.272],[0.216,-0.6],[0.54,-0.708],[0.912,-0.96],[0,0]],"o":[[0,0],[1.128,-1.176],[0.636,-0.852],[0.252,-0.816],[0,-1.44],[-0.624,-1.08],[-1.14,-0.6],[-1.848,0],[-1.392,0.828],[0,0],[0.744,-1.272],[0.96,-0.612],[1.296,0],[0.804,0.72],[0,0.648],[-0.216,0.6],[-0.54,0.708],[0,0],[0,0]],"v":[[-434.056,-220.856],[-426.604,-228.524],[-423.958,-231.566],[-422.626,-234.068],[-422.248,-236.84],[-423.184,-240.62],[-425.83,-243.14],[-429.844,-244.04],[-434.704,-242.798],[-438.232,-239.108],[-435.856,-237.128],[-433.3,-239.954],[-429.952,-240.872],[-426.802,-239.792],[-425.596,-236.804],[-425.92,-234.932],[-427.054,-232.97],[-429.232,-230.468],[-438.448,-220.748]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-421.672,-218.696],[-421.672,-221.72],[-435.568,-221.72],[-438.448,-220.748],[-438.448,-218.696]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"2","np":5,"cix":2,"bm":0,"ix":289,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.368,0.708],[-0.78,1.248],[0,1.584],[0.636,1.224],[1.2,0.72],[1.728,0],[0.672,-0.168],[0.528,-0.312],[0.408,-0.504],[0,0],[-0.804,0.24],[-0.984,0],[-0.804,-0.396],[-0.468,-0.768],[0,-1.104],[0.48,-0.78],[0.852,-0.432],[1.128,0],[0.972,0.492],[0.552,0.84],[0,0],[-1.332,-0.612],[-1.68,0]],"o":[[1.368,-0.708],[0.78,-1.248],[0,-1.512],[-0.636,-1.224],[-1.2,-0.72],[-0.888,0],[-0.672,0.168],[-0.528,0.312],[0,0],[0.72,-0.576],[0.804,-0.24],[0.96,0],[0.804,0.396],[0.468,0.768],[0,1.08],[-0.48,0.78],[-0.852,0.432],[-1.2,0],[-0.972,-0.492],[0,0],[0.912,1.176],[1.332,0.612],[1.776,0]],"v":[[-406.552,-219.398],[-403.33,-222.332],[-402.16,-226.58],[-403.114,-230.684],[-405.868,-233.6],[-410.26,-234.68],[-412.6,-234.428],[-414.4,-233.708],[-415.804,-232.484],[-415.84,-230.324],[-413.554,-231.548],[-410.872,-231.908],[-408.226,-231.314],[-406.318,-229.568],[-405.616,-226.76],[-406.336,-223.97],[-408.334,-222.152],[-411.304,-221.504],[-414.562,-222.242],[-416.848,-224.24],[-419.152,-221.936],[-415.786,-219.254],[-411.268,-218.336]],"c":true},"ix":2},"nm":"5","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-414.724,-231.836],[-413.464,-243.68],[-416.56,-243.68],[-417.676,-232.16],[-415.84,-230.324]],"c":true},"ix":2},"nm":"5","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-403.42,-240.656],[-403.42,-243.68],[-416.56,-243.68],[-415.876,-240.656]],"c":true},"ix":2},"nm":"5","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"5","np":6,"cix":2,"bm":0,"ix":290,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-377.626,-219.506],[-374.656,-222.692],[-373.576,-227.228],[-374.656,-231.764],[-377.626,-234.968],[-381.856,-236.156],[-385.33,-235.346],[-387.85,-233.114],[-388.912,-229.82],[-388.912,-224.672],[-387.868,-221.396],[-385.366,-219.146],[-381.856,-218.336]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-387.616,-218.696],[-387.616,-223.304],[-388.228,-227.48],[-387.616,-231.62],[-387.616,-244.4],[-390.856,-244.4],[-390.856,-218.696]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-385.222,-222.152],[-387.13,-224.222],[-387.796,-227.228],[-387.112,-230.27],[-385.204,-232.34],[-382.396,-233.096],[-379.552,-232.34],[-377.626,-230.27],[-376.924,-227.264],[-377.626,-224.222],[-379.552,-222.152],[-382.396,-221.396]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":291,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-362.992,-218.552],[-355,-235.796],[-358.6,-235.796],[-364.396,-222.296],[-363.244,-222.296],[-368.752,-235.796],[-372.352,-235.796],[-364.936,-218.552]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-366.232,-211.532],[-362.992,-218.552],[-364.828,-221.864],[-369.832,-211.532]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":292,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-338.728,-218.696],[-338.728,-242.96],[-341.968,-242.96],[-341.968,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-334.516,-232.844],[-334.516,-235.796],[-346.18,-235.796],[-346.18,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":293,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-316.012,-218.696],[-316.012,-229.316],[-316.876,-232.88],[-319.234,-235.292],[-322.672,-236.156],[-326.164,-235.274],[-328.576,-232.88],[-329.44,-229.424],[-328.108,-228.668],[-327.532,-230.972],[-325.948,-232.556],[-323.644,-233.132],[-320.494,-231.872],[-319.288,-228.668],[-319.288,-218.696]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-328.108,-218.696],[-328.108,-244.4],[-331.348,-244.4],[-331.348,-218.696]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":294,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-299.92,-219.092],[-296.896,-221.288],[-298.984,-223.412],[-301.054,-221.9],[-303.7,-221.396],[-306.76,-222.134],[-308.812,-224.222],[-309.532,-227.372],[-308.848,-230.432],[-306.904,-232.448],[-303.988,-233.168],[-301.288,-232.502],[-299.56,-230.63],[-298.948,-227.696],[-297.76,-228.74],[-310.468,-228.74],[-310.468,-226.04],[-296.032,-226.04],[-295.888,-226.958],[-295.852,-227.732],[-296.878,-232.088],[-299.74,-235.076],[-303.916,-236.156],[-308.398,-234.986],[-311.566,-231.8],[-312.736,-227.264],[-311.548,-222.692],[-308.326,-219.506],[-303.7,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":295,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-274.108,-219.146],[-271.642,-221.396],[-270.616,-224.672],[-270.616,-229.82],[-271.66,-233.114],[-274.126,-235.346],[-277.6,-236.156],[-281.866,-234.968],[-284.854,-231.764],[-285.952,-227.228],[-284.854,-222.692],[-281.866,-219.506],[-277.6,-218.336]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-279.94,-222.152],[-281.902,-224.222],[-282.604,-227.264],[-281.902,-230.27],[-279.958,-232.34],[-277.096,-233.096],[-274.27,-232.358],[-272.38,-230.288],[-271.696,-227.228],[-273.172,-223.034],[-277.06,-221.396]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-268.636,-218.696],[-268.636,-235.796],[-271.912,-235.796],[-271.912,-231.62],[-271.3,-227.48],[-271.912,-223.304],[-271.912,-218.696]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":296,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-248.584,-218.696],[-248.584,-229.316],[-249.448,-232.646],[-251.806,-235.184],[-255.244,-236.156],[-258.736,-235.274],[-261.148,-232.88],[-262.012,-229.424],[-260.68,-228.668],[-260.104,-230.972],[-258.52,-232.556],[-256.216,-233.132],[-253.066,-231.872],[-251.86,-228.668],[-251.86,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-260.68,-218.696],[-260.68,-235.796],[-263.92,-235.796],[-263.92,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":297,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-238.54,-218.696],[-238.54,-242.96],[-241.78,-242.96],[-241.78,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-234.328,-232.844],[-234.328,-235.796],[-245.992,-235.796],[-245.992,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":298,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-227.884,-218.696],[-227.884,-235.796],[-231.16,-235.796],[-231.16,-218.696]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-228.028,-239.81],[-227.452,-241.304],[-228.028,-242.762],[-229.504,-243.356],[-230.98,-242.762],[-231.556,-241.304],[-230.98,-239.81],[-229.504,-239.216]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":299,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-211.252,-226.292],[-211.252,-229.388],[-223.096,-229.388],[-223.096,-226.292]],"c":true},"ix":2},"nm":"-","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"-","np":3,"cix":2,"bm":0,"ix":300,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-193.27,-219.506],[-190.3,-222.692],[-189.22,-227.228],[-190.3,-231.764],[-193.27,-234.968],[-197.5,-236.156],[-200.974,-235.346],[-203.494,-233.114],[-204.556,-229.82],[-204.556,-224.672],[-203.512,-221.396],[-201.01,-219.146],[-197.5,-218.336]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-203.26,-211.532],[-203.26,-222.98],[-203.872,-227.156],[-203.26,-231.296],[-203.26,-235.796],[-206.5,-235.796],[-206.5,-211.532]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-200.866,-222.152],[-202.774,-224.222],[-203.44,-227.228],[-202.756,-230.27],[-200.848,-232.34],[-198.04,-233.096],[-195.196,-232.34],[-193.27,-230.27],[-192.568,-227.264],[-193.27,-224.222],[-195.196,-222.152],[-198.04,-221.396]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":301,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-182.308,-218.696],[-182.308,-235.796],[-185.548,-235.796],[-185.548,-218.696]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-181.156,-231.944],[-178.204,-233.096],[-176.692,-232.844],[-175.504,-232.016],[-173.38,-234.212],[-175.324,-235.706],[-177.664,-236.156],[-182.02,-234.212],[-183.532,-228.992],[-182.308,-228.416]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":302,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-159.322,-219.524],[-156.1,-222.746],[-154.912,-227.3],[-156.1,-231.8],[-159.322,-234.986],[-163.876,-236.156],[-168.376,-234.968],[-171.58,-231.782],[-172.768,-227.3],[-171.58,-222.746],[-168.376,-219.524],[-163.876,-218.336]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-166.72,-222.224],[-168.7,-224.294],[-169.42,-227.3],[-168.7,-230.252],[-166.72,-232.286],[-163.876,-233.024],[-160.978,-232.286],[-158.998,-230.252],[-158.26,-227.3],[-158.98,-224.294],[-160.96,-222.224],[-163.876,-221.468]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":303,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-145.984,-218.696],[-145.984,-242.96],[-149.224,-242.96],[-149.224,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-141.772,-232.844],[-141.772,-235.796],[-153.436,-235.796],[-153.436,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":304,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-127.444,-219.092],[-124.42,-221.288],[-126.508,-223.412],[-128.578,-221.9],[-131.224,-221.396],[-134.284,-222.134],[-136.336,-224.222],[-137.056,-227.372],[-136.372,-230.432],[-134.428,-232.448],[-131.512,-233.168],[-128.812,-232.502],[-127.084,-230.63],[-126.472,-227.696],[-125.284,-228.74],[-137.992,-228.74],[-137.992,-226.04],[-123.556,-226.04],[-123.412,-226.958],[-123.376,-227.732],[-124.402,-232.088],[-127.264,-235.076],[-131.44,-236.156],[-135.922,-234.986],[-139.09,-231.8],[-140.26,-227.264],[-139.072,-222.692],[-135.85,-219.506],[-131.224,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":305,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-109.822,-219.74],[-108.112,-223.556],[-108.778,-226.112],[-110.488,-227.66],[-112.684,-228.578],[-114.898,-229.244],[-116.608,-230.036],[-117.256,-231.368],[-116.518,-232.7],[-114.376,-233.204],[-112,-232.7],[-110.2,-231.26],[-108.112,-233.348],[-110.686,-235.454],[-114.268,-236.156],[-117.544,-235.544],[-119.65,-233.798],[-120.388,-231.116],[-119.722,-228.614],[-118.012,-227.12],[-115.798,-226.256],[-113.584,-225.59],[-111.874,-224.726],[-111.208,-223.268],[-112.036,-221.81],[-114.376,-221.288],[-117.112,-221.846],[-119.272,-223.556],[-121.36,-221.468],[-119.506,-219.794],[-117.148,-218.714],[-114.412,-218.336]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":306,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-98.608,-218.696],[-98.608,-242.96],[-101.848,-242.96],[-101.848,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-94.396,-232.844],[-94.396,-235.796],[-106.06,-235.796],[-106.06,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":307,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-70.546,-219.506],[-67.576,-222.692],[-66.496,-227.228],[-67.576,-231.764],[-70.546,-234.968],[-74.776,-236.156],[-78.25,-235.346],[-80.77,-233.114],[-81.832,-229.82],[-81.832,-224.672],[-80.788,-221.396],[-78.286,-219.146],[-74.776,-218.336]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-80.536,-218.696],[-80.536,-223.304],[-81.148,-227.48],[-80.536,-231.62],[-80.536,-244.4],[-83.776,-244.4],[-83.776,-218.696]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-78.142,-222.152],[-80.05,-224.222],[-80.716,-227.228],[-80.032,-230.27],[-78.124,-232.34],[-75.316,-233.096],[-72.472,-232.34],[-70.546,-230.27],[-69.844,-227.264],[-70.546,-224.222],[-72.472,-222.152],[-75.316,-221.396]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":308,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-52.06,-219.146],[-49.594,-221.396],[-48.568,-224.672],[-48.568,-229.82],[-49.612,-233.114],[-52.078,-235.346],[-55.552,-236.156],[-59.818,-234.968],[-62.806,-231.764],[-63.904,-227.228],[-62.806,-222.692],[-59.818,-219.506],[-55.552,-218.336]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-57.892,-222.152],[-59.854,-224.222],[-60.556,-227.264],[-59.854,-230.27],[-57.91,-232.34],[-55.048,-233.096],[-52.222,-232.358],[-50.332,-230.288],[-49.648,-227.228],[-51.124,-223.034],[-55.012,-221.396]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-46.588,-218.696],[-46.588,-235.796],[-49.864,-235.796],[-49.864,-231.62],[-49.252,-227.48],[-49.864,-223.304],[-49.864,-218.696]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":309,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-38.632,-218.696],[-38.632,-235.796],[-41.872,-235.796],[-41.872,-218.696]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-37.48,-231.944],[-34.528,-233.096],[-33.016,-232.844],[-31.828,-232.016],[-29.704,-234.212],[-31.648,-235.706],[-33.988,-236.156],[-38.344,-234.212],[-39.856,-228.992],[-38.632,-228.416]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":310,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-24.124,-218.696],[-24.124,-235.796],[-27.364,-235.796],[-27.364,-218.696]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-22.972,-231.944],[-20.02,-233.096],[-18.508,-232.844],[-17.32,-232.016],[-15.196,-234.212],[-17.14,-235.706],[-19.48,-236.156],[-23.836,-234.212],[-25.348,-228.992],[-24.124,-228.416]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":311,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-9.652,-218.696],[-9.652,-235.796],[-12.928,-235.796],[-12.928,-218.696]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-9.796,-239.81],[-9.22,-241.304],[-9.796,-242.762],[-11.272,-243.356],[-12.748,-242.762],[-13.324,-241.304],[-12.748,-239.81],[-11.272,-239.216]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":312,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[6.638,-219.092],[9.536,-221.216],[7.412,-223.376],[5.45,-221.954],[2.948,-221.468],[0.068,-222.224],[-1.912,-224.276],[-2.632,-227.264],[-1.912,-230.252],[0.068,-232.286],[2.948,-233.024],[5.432,-232.538],[7.376,-231.116],[9.536,-233.276],[6.62,-235.418],[2.948,-236.156],[-1.606,-234.986],[-4.81,-231.8],[-5.98,-227.264],[-4.81,-222.746],[-1.606,-219.524],[2.948,-218.336]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":313,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[23.18,-219.146],[25.646,-221.396],[26.672,-224.672],[26.672,-229.82],[25.628,-233.114],[23.162,-235.346],[19.688,-236.156],[15.422,-234.968],[12.434,-231.764],[11.336,-227.228],[12.434,-222.692],[15.422,-219.506],[19.688,-218.336]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[17.348,-222.152],[15.386,-224.222],[14.684,-227.264],[15.386,-230.27],[17.33,-232.34],[20.192,-233.096],[23.018,-232.358],[24.908,-230.288],[25.592,-227.228],[24.116,-223.034],[20.228,-221.396]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[28.652,-218.696],[28.652,-235.796],[25.376,-235.796],[25.376,-231.62],[25.988,-227.48],[25.376,-223.304],[25.376,-218.696]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":314,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[44.096,-219.146],[46.58,-221.396],[47.624,-224.672],[47.624,-229.82],[46.562,-233.114],[44.06,-235.346],[40.568,-236.156],[36.356,-234.968],[33.386,-231.764],[32.288,-227.228],[33.386,-222.692],[36.356,-219.506],[40.568,-218.336]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[38.282,-222.134],[36.338,-224.204],[35.636,-227.264],[36.338,-230.306],[38.264,-232.358],[41.108,-233.096],[43.952,-232.34],[45.86,-230.27],[46.544,-227.228],[45.86,-224.222],[43.952,-222.152],[41.108,-221.396]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[49.604,-244.4],[46.328,-244.4],[46.328,-231.62],[46.94,-227.48],[46.328,-223.304],[46.328,-218.696],[49.604,-218.696]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":315,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[66.02,-219.092],[69.044,-221.288],[66.956,-223.412],[64.886,-221.9],[62.24,-221.396],[59.18,-222.134],[57.128,-224.222],[56.408,-227.372],[57.092,-230.432],[59.036,-232.448],[61.952,-233.168],[64.652,-232.502],[66.38,-230.63],[66.992,-227.696],[68.18,-228.74],[55.472,-228.74],[55.472,-226.04],[69.908,-226.04],[70.052,-226.958],[70.088,-227.732],[69.062,-232.088],[66.2,-235.076],[62.024,-236.156],[57.542,-234.986],[54.374,-231.8],[53.204,-227.264],[54.392,-222.692],[57.614,-219.506],[62.24,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":316,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[88.844,-218.696],[96.692,-235.796],[93.236,-235.796],[86.9,-221.36],[88.988,-221.36],[82.688,-235.796],[79.088,-235.796],[86.936,-218.696]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":317,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[110.516,-219.092],[113.54,-221.288],[111.452,-223.412],[109.382,-221.9],[106.736,-221.396],[103.676,-222.134],[101.624,-224.222],[100.904,-227.372],[101.588,-230.432],[103.532,-232.448],[106.448,-233.168],[109.148,-232.502],[110.876,-230.63],[111.488,-227.696],[112.676,-228.74],[99.968,-228.74],[99.968,-226.04],[114.404,-226.04],[114.548,-226.958],[114.584,-227.732],[113.558,-232.088],[110.696,-235.076],[106.52,-236.156],[102.038,-234.986],[98.87,-231.8],[97.7,-227.264],[98.888,-222.692],[102.11,-219.506],[106.736,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":318,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[133.448,-218.696],[133.448,-229.316],[132.584,-232.88],[130.226,-235.292],[126.788,-236.156],[123.296,-235.274],[120.884,-232.88],[120.02,-229.424],[121.352,-228.668],[121.928,-230.972],[123.512,-232.556],[125.816,-233.132],[128.966,-231.872],[130.172,-228.668],[130.172,-218.696]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[121.352,-218.696],[121.352,-244.4],[118.112,-244.4],[118.112,-218.696]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":319,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[141.116,-218.696],[141.116,-235.796],[137.84,-235.796],[137.84,-218.696]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[140.972,-239.81],[141.548,-241.304],[140.972,-242.762],[139.496,-243.356],[138.02,-242.762],[137.444,-241.304],[138.02,-239.81],[139.496,-239.216]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":320,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[157.406,-219.092],[160.304,-221.216],[158.18,-223.376],[156.218,-221.954],[153.716,-221.468],[150.836,-222.224],[148.856,-224.276],[148.136,-227.264],[148.856,-230.252],[150.836,-232.286],[153.716,-233.024],[156.2,-232.538],[158.144,-231.116],[160.304,-233.276],[157.388,-235.418],[153.716,-236.156],[149.162,-234.986],[145.958,-231.8],[144.788,-227.264],[145.958,-222.746],[149.162,-219.524],[153.716,-218.336]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":321,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[166.748,-218.696],[166.748,-244.4],[163.508,-244.4],[163.508,-218.696]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":322,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[183.2,-219.092],[186.224,-221.288],[184.136,-223.412],[182.066,-221.9],[179.42,-221.396],[176.36,-222.134],[174.308,-224.222],[173.588,-227.372],[174.272,-230.432],[176.216,-232.448],[179.132,-233.168],[181.832,-232.502],[183.56,-230.63],[184.172,-227.696],[185.36,-228.74],[172.652,-228.74],[172.652,-226.04],[187.088,-226.04],[187.232,-226.958],[187.268,-227.732],[186.242,-232.088],[183.38,-235.076],[179.204,-236.156],[174.722,-234.986],[171.554,-231.8],[170.384,-227.264],[171.572,-222.692],[174.794,-219.506],[179.42,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":323,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[201.488,-218.696],[201.488,-235.796],[198.248,-235.796],[198.248,-218.696]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[202.64,-231.944],[205.592,-233.096],[207.104,-232.844],[208.292,-232.016],[210.416,-234.212],[208.472,-235.706],[206.132,-236.156],[201.776,-234.212],[200.264,-228.992],[201.488,-228.416]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":324,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[222.908,-219.146],[225.374,-221.396],[226.4,-224.672],[226.4,-229.82],[225.356,-233.114],[222.89,-235.346],[219.416,-236.156],[215.15,-234.968],[212.162,-231.764],[211.064,-227.228],[212.162,-222.692],[215.15,-219.506],[219.416,-218.336]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[217.076,-222.152],[215.114,-224.222],[214.412,-227.264],[215.114,-230.27],[217.058,-232.34],[219.92,-233.096],[222.746,-232.358],[224.636,-230.288],[225.32,-227.228],[223.844,-223.034],[219.956,-221.396]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[228.38,-218.696],[228.38,-235.796],[225.104,-235.796],[225.104,-231.62],[225.716,-227.48],[225.104,-223.304],[225.104,-218.696]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":325,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[248.432,-218.696],[248.432,-229.316],[247.568,-232.646],[245.21,-235.184],[241.772,-236.156],[238.28,-235.274],[235.868,-232.88],[235.004,-229.424],[236.336,-228.668],[236.912,-230.972],[238.496,-232.556],[240.8,-233.132],[243.95,-231.872],[245.156,-228.668],[245.156,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[236.336,-218.696],[236.336,-235.796],[233.096,-235.796],[233.096,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":326,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[264.668,-226.292],[264.668,-229.388],[252.824,-229.388],[252.824,-226.292]],"c":true},"ix":2},"nm":"-","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"-","np":3,"cix":2,"bm":0,"ix":327,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[282.326,-219.524],[285.548,-222.746],[286.736,-227.3],[285.548,-231.8],[282.326,-234.986],[277.772,-236.156],[273.272,-234.968],[270.068,-231.782],[268.88,-227.3],[270.068,-222.746],[273.272,-219.524],[277.772,-218.336]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[274.928,-222.224],[272.948,-224.294],[272.228,-227.3],[272.948,-230.252],[274.928,-232.286],[277.772,-233.024],[280.67,-232.286],[282.65,-230.252],[283.388,-227.3],[282.668,-224.294],[280.688,-222.224],[277.772,-221.468]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":328,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[297.464,-218.696],[305.312,-235.796],[301.856,-235.796],[295.52,-221.36],[297.608,-221.36],[291.308,-235.796],[287.708,-235.796],[295.556,-218.696]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":329,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[319.136,-219.092],[322.16,-221.288],[320.072,-223.412],[318.002,-221.9],[315.356,-221.396],[312.296,-222.134],[310.244,-224.222],[309.524,-227.372],[310.208,-230.432],[312.152,-232.448],[315.068,-233.168],[317.768,-232.502],[319.496,-230.63],[320.108,-227.696],[321.296,-228.74],[308.588,-228.74],[308.588,-226.04],[323.024,-226.04],[323.168,-226.958],[323.204,-227.732],[322.178,-232.088],[319.316,-235.076],[315.14,-236.156],[310.658,-234.986],[307.49,-231.8],[306.32,-227.264],[307.508,-222.692],[310.73,-219.506],[315.356,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":330,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[329.972,-218.696],[329.972,-235.796],[326.732,-235.796],[326.732,-218.696]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[331.124,-231.944],[334.076,-233.096],[335.588,-232.844],[336.776,-232.016],[338.9,-234.212],[336.956,-235.706],[334.616,-236.156],[330.26,-234.212],[328.748,-228.992],[329.972,-228.416]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":331,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.264],[0.48,0.468],[0.624,0],[0.456,-0.468],[0,-0.696],[-0.42,-0.42],[-0.504,0],[-0.192,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.6],[0.108,-0.372],[0,-0.696],[-0.48,-0.468],[-0.696,0],[-0.456,0.468],[0,0.624],[0.42,0.42],[0.24,0],[0.192,-0.168],[0,0],[0,0],[0,0]],"v":[[341.06,-213.728],[343.472,-218.192],[344.102,-219.65],[344.264,-220.604],[343.544,-222.35],[341.888,-223.052],[340.16,-222.35],[339.476,-220.604],[340.106,-219.038],[341.492,-218.408],[342.14,-218.66],[342.608,-219.308],[341.456,-219.02],[339.224,-214.736]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":332,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[367.124,-219.146],[369.608,-221.396],[370.652,-224.672],[370.652,-229.82],[369.59,-233.114],[367.088,-235.346],[363.596,-236.156],[359.384,-234.968],[356.414,-231.764],[355.316,-227.228],[356.414,-222.692],[359.384,-219.506],[363.596,-218.336]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[361.31,-222.134],[359.366,-224.204],[358.664,-227.264],[359.366,-230.306],[361.292,-232.358],[364.136,-233.096],[366.98,-232.34],[368.888,-230.27],[369.572,-227.228],[368.888,-224.222],[366.98,-222.152],[364.136,-221.396]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[372.632,-244.4],[369.356,-244.4],[369.356,-231.62],[369.968,-227.48],[369.356,-223.304],[369.356,-218.696],[372.632,-218.696]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":333,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[380.588,-218.696],[380.588,-235.796],[377.348,-235.796],[377.348,-218.696]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[381.74,-231.944],[384.692,-233.096],[386.204,-232.844],[387.392,-232.016],[389.516,-234.212],[387.572,-235.706],[385.232,-236.156],[380.876,-234.212],[379.364,-228.992],[380.588,-228.416]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":334,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[403.574,-219.524],[406.796,-222.746],[407.984,-227.3],[406.796,-231.8],[403.574,-234.986],[399.02,-236.156],[394.52,-234.968],[391.316,-231.782],[390.128,-227.3],[391.316,-222.746],[394.52,-219.524],[399.02,-218.336]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[396.176,-222.224],[394.196,-224.294],[393.476,-227.3],[394.196,-230.252],[396.176,-232.286],[399.02,-233.024],[401.918,-232.286],[403.898,-230.252],[404.636,-227.3],[403.916,-224.294],[401.936,-222.224],[399.02,-221.468]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":335,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[418.712,-218.696],[426.56,-235.796],[423.104,-235.796],[416.768,-221.36],[418.856,-221.36],[412.556,-235.796],[408.956,-235.796],[416.804,-218.696]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":336,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[440.384,-219.092],[443.408,-221.288],[441.32,-223.412],[439.25,-221.9],[436.604,-221.396],[433.544,-222.134],[431.492,-224.222],[430.772,-227.372],[431.456,-230.432],[433.4,-232.448],[436.316,-233.168],[439.016,-232.502],[440.744,-230.63],[441.356,-227.696],[442.544,-228.74],[429.836,-228.74],[429.836,-226.04],[444.272,-226.04],[444.416,-226.958],[444.452,-227.732],[443.426,-232.088],[440.564,-235.076],[436.388,-236.156],[431.906,-234.986],[428.738,-231.8],[427.568,-227.264],[428.756,-222.692],[431.978,-219.506],[436.604,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":337,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[468.662,-219.506],[471.632,-222.692],[472.712,-227.228],[471.632,-231.764],[468.662,-234.968],[464.432,-236.156],[460.958,-235.346],[458.438,-233.114],[457.376,-229.82],[457.376,-224.672],[458.42,-221.396],[460.922,-219.146],[464.432,-218.336]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[458.672,-218.696],[458.672,-223.304],[458.06,-227.48],[458.672,-231.62],[458.672,-244.4],[455.432,-244.4],[455.432,-218.696]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[461.066,-222.152],[459.158,-224.222],[458.492,-227.228],[459.176,-230.27],[461.084,-232.34],[463.892,-233.096],[466.736,-232.34],[468.662,-230.27],[469.364,-227.264],[468.662,-224.222],[466.736,-222.152],[463.892,-221.396]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":338,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[483.296,-218.552],[491.288,-235.796],[487.688,-235.796],[481.892,-222.296],[483.044,-222.296],[477.536,-235.796],[473.936,-235.796],[481.352,-218.552]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[480.056,-211.532],[483.296,-218.552],[481.46,-221.864],[476.456,-211.532]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":339,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[507.56,-218.696],[507.56,-242.96],[504.32,-242.96],[504.32,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[511.772,-232.844],[511.772,-235.796],[500.108,-235.796],[500.108,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":340,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[530.276,-218.696],[530.276,-229.316],[529.412,-232.88],[527.054,-235.292],[523.616,-236.156],[520.124,-235.274],[517.712,-232.88],[516.848,-229.424],[518.18,-228.668],[518.756,-230.972],[520.34,-232.556],[522.644,-233.132],[525.794,-231.872],[527,-228.668],[527,-218.696]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[518.18,-218.696],[518.18,-244.4],[514.94,-244.4],[514.94,-218.696]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":341,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[546.368,-219.092],[549.392,-221.288],[547.304,-223.412],[545.234,-221.9],[542.588,-221.396],[539.528,-222.134],[537.476,-224.222],[536.756,-227.372],[537.44,-230.432],[539.384,-232.448],[542.3,-233.168],[545,-232.502],[546.728,-230.63],[547.34,-227.696],[548.528,-228.74],[535.82,-228.74],[535.82,-226.04],[550.256,-226.04],[550.4,-226.958],[550.436,-227.732],[549.41,-232.088],[546.548,-235.076],[542.372,-236.156],[537.89,-234.986],[534.722,-231.8],[533.552,-227.264],[534.74,-222.692],[537.962,-219.506],[542.588,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":342,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[572.18,-219.146],[574.646,-221.396],[575.672,-224.672],[575.672,-229.82],[574.628,-233.114],[572.162,-235.346],[568.688,-236.156],[564.422,-234.968],[561.434,-231.764],[560.336,-227.228],[561.434,-222.692],[564.422,-219.506],[568.688,-218.336]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[566.348,-222.152],[564.386,-224.222],[563.684,-227.264],[564.386,-230.27],[566.33,-232.34],[569.192,-233.096],[572.018,-232.358],[573.908,-230.288],[574.592,-227.228],[573.116,-223.034],[569.228,-221.396]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[577.652,-218.696],[577.652,-235.796],[574.376,-235.796],[574.376,-231.62],[574.988,-227.48],[574.376,-223.304],[574.376,-218.696]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":343,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[597.704,-218.696],[597.704,-229.316],[596.84,-232.646],[594.482,-235.184],[591.044,-236.156],[587.552,-235.274],[585.14,-232.88],[584.276,-229.424],[585.608,-228.668],[586.184,-230.972],[587.768,-232.556],[590.072,-233.132],[593.222,-231.872],[594.428,-228.668],[594.428,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[585.608,-218.696],[585.608,-235.796],[582.368,-235.796],[582.368,-218.696]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":344,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[607.748,-218.696],[607.748,-242.96],[604.508,-242.96],[604.508,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[611.96,-232.844],[611.96,-235.796],[600.296,-235.796],[600.296,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":345,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[618.404,-218.696],[618.404,-235.796],[615.128,-235.796],[615.128,-218.696]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[618.26,-239.81],[618.836,-241.304],[618.26,-242.762],[616.784,-243.356],[615.308,-242.762],[614.732,-241.304],[615.308,-239.81],[616.784,-239.216]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":346,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[635.036,-226.292],[635.036,-229.388],[623.192,-229.388],[623.192,-226.292]],"c":true},"ix":2},"nm":"-","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"-","np":3,"cix":2,"bm":0,"ix":347,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[653.018,-219.506],[655.988,-222.692],[657.068,-227.228],[655.988,-231.764],[653.018,-234.968],[648.788,-236.156],[645.314,-235.346],[642.794,-233.114],[641.732,-229.82],[641.732,-224.672],[642.776,-221.396],[645.278,-219.146],[648.788,-218.336]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[643.028,-211.532],[643.028,-222.98],[642.416,-227.156],[643.028,-231.296],[643.028,-235.796],[639.788,-235.796],[639.788,-211.532]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[645.422,-222.152],[643.514,-224.222],[642.848,-227.228],[643.532,-230.27],[645.44,-232.34],[648.248,-233.096],[651.092,-232.34],[653.018,-230.27],[653.72,-227.264],[653.018,-224.222],[651.092,-222.152],[648.248,-221.396]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":348,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[663.98,-218.696],[663.98,-235.796],[660.74,-235.796],[660.74,-218.696]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[665.132,-231.944],[668.084,-233.096],[669.596,-232.844],[670.784,-232.016],[672.908,-234.212],[670.964,-235.706],[668.624,-236.156],[664.268,-234.212],[662.756,-228.992],[663.98,-228.416]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":349,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[686.966,-219.524],[690.188,-222.746],[691.376,-227.3],[690.188,-231.8],[686.966,-234.986],[682.412,-236.156],[677.912,-234.968],[674.708,-231.782],[673.52,-227.3],[674.708,-222.746],[677.912,-219.524],[682.412,-218.336]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[679.568,-222.224],[677.588,-224.294],[676.868,-227.3],[677.588,-230.252],[679.568,-232.286],[682.412,-233.024],[685.31,-232.286],[687.29,-230.252],[688.028,-227.3],[687.308,-224.294],[685.328,-222.224],[682.412,-221.468]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":350,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[700.304,-218.696],[700.304,-242.96],[697.064,-242.96],[697.064,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[704.516,-232.844],[704.516,-235.796],[692.852,-235.796],[692.852,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":351,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[718.844,-219.092],[721.868,-221.288],[719.78,-223.412],[717.71,-221.9],[715.064,-221.396],[712.004,-222.134],[709.952,-224.222],[709.232,-227.372],[709.916,-230.432],[711.86,-232.448],[714.776,-233.168],[717.476,-232.502],[719.204,-230.63],[719.816,-227.696],[721.004,-228.74],[708.296,-228.74],[708.296,-226.04],[722.732,-226.04],[722.876,-226.958],[722.912,-227.732],[721.886,-232.088],[719.024,-235.076],[714.848,-236.156],[710.366,-234.986],[707.198,-231.8],[706.028,-227.264],[707.216,-222.692],[710.438,-219.506],[715.064,-218.336]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":352,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[736.466,-219.74],[738.176,-223.556],[737.51,-226.112],[735.8,-227.66],[733.604,-228.578],[731.39,-229.244],[729.68,-230.036],[729.032,-231.368],[729.77,-232.7],[731.912,-233.204],[734.288,-232.7],[736.088,-231.26],[738.176,-233.348],[735.602,-235.454],[732.02,-236.156],[728.744,-235.544],[726.638,-233.798],[725.9,-231.116],[726.566,-228.614],[728.276,-227.12],[730.49,-226.256],[732.704,-225.59],[734.414,-224.726],[735.08,-223.268],[734.252,-221.81],[731.912,-221.288],[729.176,-221.846],[727.016,-223.556],[724.928,-221.468],[726.782,-219.794],[729.14,-218.714],[731.876,-218.336]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":353,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[747.68,-218.696],[747.68,-242.96],[744.44,-242.96],[744.44,-218.696]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[751.892,-232.844],[751.892,-235.796],[740.228,-235.796],[740.228,-232.844]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":354,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-816.394,-176.306],[-813.424,-179.492],[-812.344,-184.028],[-813.424,-188.564],[-816.394,-191.768],[-820.624,-192.956],[-824.098,-192.146],[-826.618,-189.914],[-827.68,-186.62],[-827.68,-181.472],[-826.636,-178.196],[-824.134,-175.946],[-820.624,-175.136]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-826.384,-168.332],[-826.384,-179.78],[-826.996,-183.956],[-826.384,-188.096],[-826.384,-192.596],[-829.624,-192.596],[-829.624,-168.332]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-823.99,-178.952],[-825.898,-181.022],[-826.564,-184.028],[-825.88,-187.07],[-823.972,-189.14],[-821.164,-189.896],[-818.32,-189.14],[-816.394,-187.07],[-815.692,-184.064],[-816.394,-181.022],[-818.32,-178.952],[-821.164,-178.196]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":355,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-796.342,-176.324],[-793.12,-179.546],[-791.932,-184.1],[-793.12,-188.6],[-796.342,-191.786],[-800.896,-192.956],[-805.396,-191.768],[-808.6,-188.582],[-809.788,-184.1],[-808.6,-179.546],[-805.396,-176.324],[-800.896,-175.136]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-803.74,-179.024],[-805.72,-181.094],[-806.44,-184.1],[-805.72,-187.052],[-803.74,-189.086],[-800.896,-189.824],[-797.998,-189.086],[-796.018,-187.052],[-795.28,-184.1],[-796,-181.094],[-797.98,-179.024],[-800.896,-178.268]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":356,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-785.092,-175.496],[-785.092,-201.2],[-788.332,-201.2],[-788.332,-175.496]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":357,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-777.064,-175.496],[-777.064,-192.596],[-780.34,-192.596],[-780.34,-175.496]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-777.208,-196.61],[-776.632,-198.104],[-777.208,-199.562],[-778.684,-200.156],[-780.16,-199.562],[-780.736,-198.104],[-780.16,-196.61],[-778.684,-196.016]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":358,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-760.774,-175.892],[-757.876,-178.016],[-760,-180.176],[-761.962,-178.754],[-764.464,-178.268],[-767.344,-179.024],[-769.324,-181.076],[-770.044,-184.064],[-769.324,-187.052],[-767.344,-189.086],[-764.464,-189.824],[-761.98,-189.338],[-760.036,-187.916],[-757.876,-190.076],[-760.792,-192.218],[-764.464,-192.956],[-769.018,-191.786],[-772.222,-188.6],[-773.392,-184.064],[-772.222,-179.546],[-769.018,-176.324],[-764.464,-175.136]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":359,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-743.296,-175.892],[-740.272,-178.088],[-742.36,-180.212],[-744.43,-178.7],[-747.076,-178.196],[-750.136,-178.934],[-752.188,-181.022],[-752.908,-184.172],[-752.224,-187.232],[-750.28,-189.248],[-747.364,-189.968],[-744.664,-189.302],[-742.936,-187.43],[-742.324,-184.496],[-741.136,-185.54],[-753.844,-185.54],[-753.844,-182.84],[-739.408,-182.84],[-739.264,-183.758],[-739.228,-184.532],[-740.254,-188.888],[-743.116,-191.876],[-747.292,-192.956],[-751.774,-191.786],[-754.942,-188.6],[-756.112,-184.064],[-754.924,-179.492],[-751.702,-176.306],[-747.076,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":360,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[-722.56,-175.496],[-722.56,-195.152],[-721.714,-197.618],[-719.32,-198.5],[-717.916,-198.248],[-716.872,-197.492],[-714.748,-199.58],[-716.728,-201.056],[-719.284,-201.56],[-722.704,-200.732],[-725.008,-198.464],[-725.836,-195.152],[-725.836,-175.496]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-717.124,-189.644],[-717.124,-192.596],[-730.012,-192.596],[-730.012,-189.644]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":361,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-702.526,-176.324],[-699.304,-179.546],[-698.116,-184.1],[-699.304,-188.6],[-702.526,-191.786],[-707.08,-192.956],[-711.58,-191.768],[-714.784,-188.582],[-715.972,-184.1],[-714.784,-179.546],[-711.58,-176.324],[-707.08,-175.136]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-709.924,-179.024],[-711.904,-181.094],[-712.624,-184.1],[-711.904,-187.052],[-709.924,-189.086],[-707.08,-189.824],[-704.182,-189.086],[-702.202,-187.052],[-701.464,-184.1],[-702.184,-181.094],[-704.164,-179.024],[-707.08,-178.268]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":362,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-691.276,-175.496],[-691.276,-192.596],[-694.516,-192.596],[-694.516,-175.496]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-690.124,-188.744],[-687.172,-189.896],[-685.66,-189.644],[-684.472,-188.816],[-682.348,-191.012],[-684.292,-192.506],[-686.632,-192.956],[-690.988,-191.012],[-692.5,-185.792],[-691.276,-185.216]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":363,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-669.118,-175.892],[-666.22,-178.016],[-668.344,-180.176],[-670.306,-178.754],[-672.808,-178.268],[-675.688,-179.024],[-677.668,-181.076],[-678.388,-184.064],[-677.668,-187.052],[-675.688,-189.086],[-672.808,-189.824],[-670.324,-189.338],[-668.38,-187.916],[-666.22,-190.076],[-669.136,-192.218],[-672.808,-192.956],[-677.362,-191.786],[-680.566,-188.6],[-681.736,-184.064],[-680.566,-179.546],[-677.362,-176.324],[-672.808,-175.136]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":364,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-651.64,-175.892],[-648.616,-178.088],[-650.704,-180.212],[-652.774,-178.7],[-655.42,-178.196],[-658.48,-178.934],[-660.532,-181.022],[-661.252,-184.172],[-660.568,-187.232],[-658.624,-189.248],[-655.708,-189.968],[-653.008,-189.302],[-651.28,-187.43],[-650.668,-184.496],[-649.48,-185.54],[-662.188,-185.54],[-662.188,-182.84],[-647.752,-182.84],[-647.608,-183.758],[-647.572,-184.532],[-648.598,-188.888],[-651.46,-191.876],[-655.636,-192.956],[-660.118,-191.786],[-663.286,-188.6],[-664.456,-184.064],[-663.268,-179.492],[-660.046,-176.306],[-655.42,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":365,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-634.018,-176.54],[-632.308,-180.356],[-632.974,-182.912],[-634.684,-184.46],[-636.88,-185.378],[-639.094,-186.044],[-640.804,-186.836],[-641.452,-188.168],[-640.714,-189.5],[-638.572,-190.004],[-636.196,-189.5],[-634.396,-188.06],[-632.308,-190.148],[-634.882,-192.254],[-638.464,-192.956],[-641.74,-192.344],[-643.846,-190.598],[-644.584,-187.916],[-643.918,-185.414],[-642.208,-183.92],[-639.994,-183.056],[-637.78,-182.39],[-636.07,-181.526],[-635.404,-180.068],[-636.232,-178.61],[-638.572,-178.088],[-641.308,-178.646],[-643.468,-180.356],[-645.556,-178.268],[-643.702,-176.594],[-641.344,-175.514],[-638.608,-175.136]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":366,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-609.52,-175.892],[-606.496,-178.088],[-608.584,-180.212],[-610.654,-178.7],[-613.3,-178.196],[-616.36,-178.934],[-618.412,-181.022],[-619.132,-184.172],[-618.448,-187.232],[-616.504,-189.248],[-613.588,-189.968],[-610.888,-189.302],[-609.16,-187.43],[-608.548,-184.496],[-607.36,-185.54],[-620.068,-185.54],[-620.068,-182.84],[-605.632,-182.84],[-605.488,-183.758],[-605.452,-184.532],[-606.478,-188.888],[-609.34,-191.876],[-613.516,-192.956],[-617.998,-191.786],[-621.166,-188.6],[-622.336,-184.064],[-621.148,-179.492],[-617.926,-176.306],[-613.3,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":367,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-594.436,-175.496],[-586.588,-192.596],[-590.044,-192.596],[-596.38,-178.16],[-594.292,-178.16],[-600.592,-192.596],[-604.192,-192.596],[-596.344,-175.496]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":368,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-572.764,-175.892],[-569.74,-178.088],[-571.828,-180.212],[-573.898,-178.7],[-576.544,-178.196],[-579.604,-178.934],[-581.656,-181.022],[-582.376,-184.172],[-581.692,-187.232],[-579.748,-189.248],[-576.832,-189.968],[-574.132,-189.302],[-572.404,-187.43],[-571.792,-184.496],[-570.604,-185.54],[-583.312,-185.54],[-583.312,-182.84],[-568.876,-182.84],[-568.732,-183.758],[-568.696,-184.532],[-569.722,-188.888],[-572.584,-191.876],[-576.76,-192.956],[-581.242,-191.786],[-584.41,-188.6],[-585.58,-184.064],[-584.392,-179.492],[-581.17,-176.306],[-576.544,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":369,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-549.832,-175.496],[-549.832,-186.116],[-550.696,-189.446],[-553.054,-191.984],[-556.492,-192.956],[-559.984,-192.074],[-562.396,-189.68],[-563.26,-186.224],[-561.928,-185.468],[-561.352,-187.772],[-559.768,-189.356],[-557.464,-189.932],[-554.314,-188.672],[-553.108,-185.468],[-553.108,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-561.928,-175.496],[-561.928,-192.596],[-565.168,-192.596],[-565.168,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":370,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-522.652,-175.496],[-522.652,-186.116],[-523.516,-189.68],[-525.874,-192.092],[-529.312,-192.956],[-532.804,-192.074],[-535.216,-189.68],[-536.08,-186.224],[-534.748,-185.468],[-534.172,-187.772],[-532.588,-189.356],[-530.284,-189.932],[-527.134,-188.672],[-525.928,-185.468],[-525.928,-175.496]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-534.748,-175.496],[-534.748,-201.2],[-537.988,-201.2],[-537.988,-175.496]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":371,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-506.56,-175.892],[-503.536,-178.088],[-505.624,-180.212],[-507.694,-178.7],[-510.34,-178.196],[-513.4,-178.934],[-515.452,-181.022],[-516.172,-184.172],[-515.488,-187.232],[-513.544,-189.248],[-510.628,-189.968],[-507.928,-189.302],[-506.2,-187.43],[-505.588,-184.496],[-504.4,-185.54],[-517.108,-185.54],[-517.108,-182.84],[-502.672,-182.84],[-502.528,-183.758],[-502.492,-184.532],[-503.518,-188.888],[-506.38,-191.876],[-510.556,-192.956],[-515.038,-191.786],[-518.206,-188.6],[-519.376,-184.064],[-518.188,-179.492],[-514.966,-176.306],[-510.34,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":372,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-484.744,-175.496],[-479.776,-188.384],[-480.964,-188.384],[-476.032,-175.496],[-474.124,-175.496],[-467.392,-192.596],[-470.776,-192.596],[-475.672,-179.276],[-474.592,-179.276],[-479.452,-192.596],[-481.324,-192.596],[-486.184,-179.276],[-485.104,-179.276],[-490,-192.596],[-493.384,-192.596],[-486.652,-175.496]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":373,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-454.252,-175.946],[-451.786,-178.196],[-450.76,-181.472],[-450.76,-186.62],[-451.804,-189.914],[-454.27,-192.146],[-457.744,-192.956],[-462.01,-191.768],[-464.998,-188.564],[-466.096,-184.028],[-464.998,-179.492],[-462.01,-176.306],[-457.744,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-460.084,-178.952],[-462.046,-181.022],[-462.748,-184.064],[-462.046,-187.07],[-460.102,-189.14],[-457.24,-189.896],[-454.414,-189.158],[-452.524,-187.088],[-451.84,-184.028],[-453.316,-179.834],[-457.204,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-448.78,-175.496],[-448.78,-192.596],[-452.056,-192.596],[-452.056,-188.42],[-451.444,-184.28],[-452.056,-180.104],[-452.056,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":374,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-434.038,-176.54],[-432.328,-180.356],[-432.994,-182.912],[-434.704,-184.46],[-436.9,-185.378],[-439.114,-186.044],[-440.824,-186.836],[-441.472,-188.168],[-440.734,-189.5],[-438.592,-190.004],[-436.216,-189.5],[-434.416,-188.06],[-432.328,-190.148],[-434.902,-192.254],[-438.484,-192.956],[-441.76,-192.344],[-443.866,-190.598],[-444.604,-187.916],[-443.938,-185.414],[-442.228,-183.92],[-440.014,-183.056],[-437.8,-182.39],[-436.09,-181.526],[-435.424,-180.068],[-436.252,-178.61],[-438.592,-178.088],[-441.328,-178.646],[-443.488,-180.356],[-445.576,-178.268],[-443.722,-176.594],[-441.364,-175.514],[-438.628,-175.136]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":375,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-405.904,-175.496],[-405.904,-186.116],[-406.768,-189.446],[-409.126,-191.984],[-412.564,-192.956],[-416.056,-192.074],[-418.468,-189.68],[-419.332,-186.224],[-418,-185.468],[-417.424,-187.772],[-415.84,-189.356],[-413.536,-189.932],[-410.386,-188.672],[-409.18,-185.468],[-409.18,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-418,-175.496],[-418,-192.596],[-421.24,-192.596],[-421.24,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":376,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-389.182,-176.324],[-385.96,-179.546],[-384.772,-184.1],[-385.96,-188.6],[-389.182,-191.786],[-393.736,-192.956],[-398.236,-191.768],[-401.44,-188.582],[-402.628,-184.1],[-401.44,-179.546],[-398.236,-176.324],[-393.736,-175.136]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-396.58,-179.024],[-398.56,-181.094],[-399.28,-184.1],[-398.56,-187.052],[-396.58,-189.086],[-393.736,-189.824],[-390.838,-189.086],[-388.858,-187.052],[-388.12,-184.1],[-388.84,-181.094],[-390.82,-179.024],[-393.736,-178.268]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":377,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-375.844,-175.496],[-375.844,-199.76],[-379.084,-199.76],[-379.084,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-371.632,-189.644],[-371.632,-192.596],[-383.296,-192.596],[-383.296,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":378,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-350.248,-175.946],[-347.782,-178.196],[-346.756,-181.472],[-346.756,-186.62],[-347.8,-189.914],[-350.266,-192.146],[-353.74,-192.956],[-358.006,-191.768],[-360.994,-188.564],[-362.092,-184.028],[-360.994,-179.492],[-358.006,-176.306],[-353.74,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-356.08,-178.952],[-358.042,-181.022],[-358.744,-184.064],[-358.042,-187.07],[-356.098,-189.14],[-353.236,-189.896],[-350.41,-189.158],[-348.52,-187.088],[-347.836,-184.028],[-349.312,-179.834],[-353.2,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-344.776,-175.496],[-344.776,-192.596],[-348.052,-192.596],[-348.052,-188.42],[-347.44,-184.28],[-348.052,-180.104],[-348.052,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":379,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-319.378,-176.306],[-316.408,-179.492],[-315.328,-184.028],[-316.408,-188.564],[-319.378,-191.768],[-323.608,-192.956],[-327.082,-192.146],[-329.602,-189.914],[-330.664,-186.62],[-330.664,-181.472],[-329.62,-178.196],[-327.118,-175.946],[-323.608,-175.136]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-329.368,-168.332],[-329.368,-179.78],[-329.98,-183.956],[-329.368,-188.096],[-329.368,-192.596],[-332.608,-192.596],[-332.608,-168.332]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-326.974,-178.952],[-328.882,-181.022],[-329.548,-184.028],[-328.864,-187.07],[-326.956,-189.14],[-324.148,-189.896],[-321.304,-189.14],[-319.378,-187.07],[-318.676,-184.064],[-319.378,-181.022],[-321.304,-178.952],[-324.148,-178.196]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":380,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-300.892,-175.946],[-298.426,-178.196],[-297.4,-181.472],[-297.4,-186.62],[-298.444,-189.914],[-300.91,-192.146],[-304.384,-192.956],[-308.65,-191.768],[-311.638,-188.564],[-312.736,-184.028],[-311.638,-179.492],[-308.65,-176.306],[-304.384,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-306.724,-178.952],[-308.686,-181.022],[-309.388,-184.064],[-308.686,-187.07],[-306.742,-189.14],[-303.88,-189.896],[-301.054,-189.158],[-299.164,-187.088],[-298.48,-184.028],[-299.956,-179.834],[-303.844,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-295.42,-175.496],[-295.42,-192.596],[-298.696,-192.596],[-298.696,-188.42],[-298.084,-184.28],[-298.696,-180.104],[-298.696,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":381,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-287.464,-175.496],[-287.464,-192.596],[-290.704,-192.596],[-290.704,-175.496]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-286.312,-188.744],[-283.36,-189.896],[-281.848,-189.644],[-280.66,-188.816],[-278.536,-191.012],[-280.48,-192.506],[-282.82,-192.956],[-287.176,-191.012],[-288.688,-185.792],[-287.464,-185.216]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":382,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-270.436,-175.496],[-270.436,-199.76],[-273.676,-199.76],[-273.676,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-266.224,-189.644],[-266.224,-192.596],[-277.888,-192.596],[-277.888,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":383,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-243.274,-176.324],[-240.052,-179.546],[-238.864,-184.1],[-240.052,-188.6],[-243.274,-191.786],[-247.828,-192.956],[-252.328,-191.768],[-255.532,-188.582],[-256.72,-184.1],[-255.532,-179.546],[-252.328,-176.324],[-247.828,-175.136]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-250.672,-179.024],[-252.652,-181.094],[-253.372,-184.1],[-252.652,-187.052],[-250.672,-189.086],[-247.828,-189.824],[-244.93,-189.086],[-242.95,-187.052],[-242.212,-184.1],[-242.932,-181.094],[-244.912,-179.024],[-247.828,-178.268]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":384,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[-230.116,-175.496],[-230.116,-195.152],[-229.27,-197.618],[-226.876,-198.5],[-225.472,-198.248],[-224.428,-197.492],[-222.304,-199.58],[-224.284,-201.056],[-226.84,-201.56],[-230.26,-200.732],[-232.564,-198.464],[-233.392,-195.152],[-233.392,-175.496]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-224.68,-189.644],[-224.68,-192.596],[-237.568,-192.596],[-237.568,-189.644]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":385,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-208.12,-175.496],[-208.12,-199.76],[-211.36,-199.76],[-211.36,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-203.908,-189.644],[-203.908,-192.596],[-215.572,-192.596],[-215.572,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":386,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-185.404,-175.496],[-185.404,-186.116],[-186.268,-189.68],[-188.626,-192.092],[-192.064,-192.956],[-195.556,-192.074],[-197.968,-189.68],[-198.832,-186.224],[-197.5,-185.468],[-196.924,-187.772],[-195.34,-189.356],[-193.036,-189.932],[-189.886,-188.672],[-188.68,-185.468],[-188.68,-175.496]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-197.5,-175.496],[-197.5,-201.2],[-200.74,-201.2],[-200.74,-175.496]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":387,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-169.312,-175.892],[-166.288,-178.088],[-168.376,-180.212],[-170.446,-178.7],[-173.092,-178.196],[-176.152,-178.934],[-178.204,-181.022],[-178.924,-184.172],[-178.24,-187.232],[-176.296,-189.248],[-173.38,-189.968],[-170.68,-189.302],[-168.952,-187.43],[-168.34,-184.496],[-167.152,-185.54],[-179.86,-185.54],[-179.86,-182.84],[-165.424,-182.84],[-165.28,-183.758],[-165.244,-184.532],[-166.27,-188.888],[-169.132,-191.876],[-173.308,-192.956],[-177.79,-191.786],[-180.958,-188.6],[-182.128,-184.064],[-180.94,-179.492],[-177.718,-176.306],[-173.092,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":388,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-143.536,-175.946],[-141.052,-178.196],[-140.008,-181.472],[-140.008,-186.62],[-141.07,-189.914],[-143.572,-192.146],[-147.064,-192.956],[-151.276,-191.768],[-154.246,-188.564],[-155.344,-184.028],[-154.246,-179.492],[-151.276,-176.306],[-147.064,-175.136]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-149.35,-178.934],[-151.294,-181.004],[-151.996,-184.064],[-151.294,-187.106],[-149.368,-189.158],[-146.524,-189.896],[-143.68,-189.14],[-141.772,-187.07],[-141.088,-184.028],[-141.772,-181.022],[-143.68,-178.952],[-146.524,-178.196]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-138.028,-201.2],[-141.304,-201.2],[-141.304,-188.42],[-140.692,-184.28],[-141.304,-180.104],[-141.304,-175.496],[-138.028,-175.496]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":389,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-121.612,-175.892],[-118.588,-178.088],[-120.676,-180.212],[-122.746,-178.7],[-125.392,-178.196],[-128.452,-178.934],[-130.504,-181.022],[-131.224,-184.172],[-130.54,-187.232],[-128.596,-189.248],[-125.68,-189.968],[-122.98,-189.302],[-121.252,-187.43],[-120.64,-184.496],[-119.452,-185.54],[-132.16,-185.54],[-132.16,-182.84],[-117.724,-182.84],[-117.58,-183.758],[-117.544,-184.532],[-118.57,-188.888],[-121.432,-191.876],[-125.608,-192.956],[-130.09,-191.786],[-133.258,-188.6],[-134.428,-184.064],[-133.24,-179.492],[-130.018,-176.306],[-125.392,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":390,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-110.776,-175.496],[-110.776,-192.596],[-114.016,-192.596],[-114.016,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-99.22,-175.496],[-99.22,-186.512],[-100.066,-189.932],[-102.37,-192.164],[-105.628,-192.956],[-108.94,-192.146],[-111.262,-189.896],[-112.108,-186.512],[-110.776,-185.828],[-110.2,-188.024],[-108.688,-189.428],[-106.564,-189.932],[-103.63,-188.834],[-102.46,-185.828],[-102.46,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-87.628,-175.496],[-87.628,-186.476],[-88.51,-189.932],[-90.868,-192.164],[-94.216,-192.956],[-97.528,-192.146],[-99.994,-189.914],[-101.056,-186.512],[-99.22,-185.828],[-98.644,-188.024],[-97.114,-189.428],[-94.972,-189.932],[-92.074,-188.834],[-90.904,-185.828],[-90.904,-175.496]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":391,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-70.906,-176.324],[-67.684,-179.546],[-66.496,-184.1],[-67.684,-188.6],[-70.906,-191.786],[-75.46,-192.956],[-79.96,-191.768],[-83.164,-188.582],[-84.352,-184.1],[-83.164,-179.546],[-79.96,-176.324],[-75.46,-175.136]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-78.304,-179.024],[-80.284,-181.094],[-81.004,-184.1],[-80.284,-187.052],[-78.304,-189.086],[-75.46,-189.824],[-72.562,-189.086],[-70.582,-187.052],[-69.844,-184.1],[-70.564,-181.094],[-72.544,-179.024],[-75.46,-178.268]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":392,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-47.56,-175.496],[-47.56,-186.116],[-48.424,-189.446],[-50.782,-191.984],[-54.22,-192.956],[-57.712,-192.074],[-60.124,-189.68],[-60.988,-186.224],[-59.656,-185.468],[-59.08,-187.772],[-57.496,-189.356],[-55.192,-189.932],[-52.042,-188.672],[-50.836,-185.468],[-50.836,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-59.656,-175.496],[-59.656,-192.596],[-62.896,-192.596],[-62.896,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":393,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-33.142,-176.54],[-31.432,-180.356],[-32.098,-182.912],[-33.808,-184.46],[-36.004,-185.378],[-38.218,-186.044],[-39.928,-186.836],[-40.576,-188.168],[-39.838,-189.5],[-37.696,-190.004],[-35.32,-189.5],[-33.52,-188.06],[-31.432,-190.148],[-34.006,-192.254],[-37.588,-192.956],[-40.864,-192.344],[-42.97,-190.598],[-43.708,-187.916],[-43.042,-185.414],[-41.332,-183.92],[-39.118,-183.056],[-36.904,-182.39],[-35.194,-181.526],[-34.528,-180.068],[-35.356,-178.61],[-37.696,-178.088],[-40.432,-178.646],[-42.592,-180.356],[-44.68,-178.268],[-42.826,-176.594],[-40.468,-175.514],[-37.732,-175.136]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":394,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-21.928,-175.496],[-21.928,-199.76],[-25.168,-199.76],[-25.168,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-17.716,-189.644],[-17.716,-192.596],[-29.38,-192.596],[-29.38,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":395,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-11.308,-175.496],[-11.308,-192.596],[-14.548,-192.596],[-14.548,-175.496]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-10.156,-188.744],[-7.204,-189.896],[-5.692,-189.644],[-4.504,-188.816],[-2.38,-191.012],[-4.324,-192.506],[-6.664,-192.956],[-11.02,-191.012],[-12.532,-185.792],[-11.308,-185.216]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":396,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[10.112,-175.946],[12.578,-178.196],[13.604,-181.472],[13.604,-186.62],[12.56,-189.914],[10.094,-192.146],[6.62,-192.956],[2.354,-191.768],[-0.634,-188.564],[-1.732,-184.028],[-0.634,-179.492],[2.354,-176.306],[6.62,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[4.28,-178.952],[2.318,-181.022],[1.616,-184.064],[2.318,-187.07],[4.262,-189.14],[7.124,-189.896],[9.95,-189.158],[11.84,-187.088],[12.524,-184.028],[11.048,-179.834],[7.16,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.584,-175.496],[15.584,-192.596],[12.308,-192.596],[12.308,-188.42],[12.92,-184.28],[12.308,-180.104],[12.308,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":397,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[26.096,-175.496],[26.096,-199.76],[22.856,-199.76],[22.856,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[30.308,-189.644],[30.308,-192.596],[18.644,-192.596],[18.644,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":398,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[36.752,-175.496],[36.752,-192.596],[33.476,-192.596],[33.476,-175.496]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[36.608,-196.61],[37.184,-198.104],[36.608,-199.562],[35.132,-200.156],[33.656,-199.562],[33.08,-198.104],[33.656,-196.61],[35.132,-196.016]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":399,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[53.87,-176.324],[57.092,-179.546],[58.28,-184.1],[57.092,-188.6],[53.87,-191.786],[49.316,-192.956],[44.816,-191.768],[41.612,-188.582],[40.424,-184.1],[41.612,-179.546],[44.816,-176.324],[49.316,-175.136]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[46.472,-179.024],[44.492,-181.094],[43.772,-184.1],[44.492,-187.052],[46.472,-189.086],[49.316,-189.824],[52.214,-189.086],[54.194,-187.052],[54.932,-184.1],[54.212,-181.094],[52.232,-179.024],[49.316,-178.268]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":400,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[77.216,-175.496],[77.216,-186.116],[76.352,-189.446],[73.994,-191.984],[70.556,-192.956],[67.064,-192.074],[64.652,-189.68],[63.788,-186.224],[65.12,-185.468],[65.696,-187.772],[67.28,-189.356],[69.584,-189.932],[72.734,-188.672],[73.94,-185.468],[73.94,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[65.12,-175.496],[65.12,-192.596],[61.88,-192.596],[61.88,-175.496]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":401,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.444,0.468],[0,0.648],[0.444,0.444],[0.672,0],[0.432,-0.444],[0,-0.672],[-0.432,-0.468],[-0.696,0]],"o":[[0.444,-0.468],[0,-0.672],[-0.444,-0.444],[-0.696,0],[-0.432,0.444],[0,0.648],[0.432,0.468],[0.672,0]],"v":[[86.126,-175.838],[86.792,-177.512],[86.126,-179.186],[84.452,-179.852],[82.76,-179.186],[82.112,-177.512],[82.76,-175.838],[84.452,-175.136]],"c":true},"ix":2},"nm":".","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":".","np":3,"cix":2,"bm":0,"ix":402,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.176,0.588],[-0.636,1.056],[0,1.416],[0.636,1.056],[1.176,0.612],[1.584,0],[0,0],[0,0],[0,0],[-0.78,-0.792],[0,-1.2],[0.78,-0.744],[1.464,0],[0,0],[0,0]],"o":[[1.584,0],[1.176,-0.588],[0.636,-1.056],[0,-1.368],[-0.636,-1.056],[-1.176,-0.612],[0,0],[0,0],[0,0],[1.44,0],[0.78,0.792],[0,1.272],[-0.78,0.744],[0,0],[0,0],[0,0]],"v":[[109.256,-186.368],[113.396,-187.25],[116.114,-189.716],[117.068,-193.424],[116.114,-197.06],[113.396,-199.562],[109.256,-200.48],[102.344,-200.48],[102.344,-197.528],[109.148,-197.528],[112.478,-196.34],[113.648,-193.352],[112.478,-190.328],[109.112,-189.212],[102.344,-189.212],[102.344,-186.368]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[103.46,-175.496],[103.46,-200.48],[100.076,-200.48],[100.076,-175.496]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[118.76,-175.496],[108.608,-187.808],[105.404,-186.692],[114.476,-175.496]],"c":true},"ix":2},"nm":"R","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"R","np":6,"cix":2,"bm":0,"ix":403,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[132.836,-175.892],[135.86,-178.088],[133.772,-180.212],[131.702,-178.7],[129.056,-178.196],[125.996,-178.934],[123.944,-181.022],[123.224,-184.172],[123.908,-187.232],[125.852,-189.248],[128.768,-189.968],[131.468,-189.302],[133.196,-187.43],[133.808,-184.496],[134.996,-185.54],[122.288,-185.54],[122.288,-182.84],[136.724,-182.84],[136.868,-183.758],[136.904,-184.532],[135.878,-188.888],[133.016,-191.876],[128.84,-192.956],[124.358,-191.786],[121.19,-188.6],[120.02,-184.064],[121.208,-179.492],[124.43,-176.306],[129.056,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":404,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[153.662,-176.306],[156.632,-179.492],[157.712,-184.028],[156.632,-188.564],[153.662,-191.768],[149.432,-192.956],[145.958,-192.146],[143.438,-189.914],[142.376,-186.62],[142.376,-181.472],[143.42,-178.196],[145.922,-175.946],[149.432,-175.136]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[143.672,-168.332],[143.672,-179.78],[143.06,-183.956],[143.672,-188.096],[143.672,-192.596],[140.432,-192.596],[140.432,-168.332]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[146.066,-178.952],[144.158,-181.022],[143.492,-184.028],[144.176,-187.07],[146.084,-189.14],[148.892,-189.896],[151.736,-189.14],[153.662,-187.07],[154.364,-184.064],[153.662,-181.022],[151.736,-178.952],[148.892,-178.196]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":405,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[173.714,-176.324],[176.936,-179.546],[178.124,-184.1],[176.936,-188.6],[173.714,-191.786],[169.16,-192.956],[164.66,-191.768],[161.456,-188.582],[160.268,-184.1],[161.456,-179.546],[164.66,-176.324],[169.16,-175.136]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[166.316,-179.024],[164.336,-181.094],[163.616,-184.1],[164.336,-187.052],[166.316,-189.086],[169.16,-189.824],[172.058,-189.086],[174.038,-187.052],[174.776,-184.1],[174.056,-181.094],[172.076,-179.024],[169.16,-178.268]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":406,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[184.964,-175.496],[184.964,-192.596],[181.724,-192.596],[181.724,-175.496]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[186.116,-188.744],[189.068,-189.896],[190.58,-189.644],[191.768,-188.816],[193.892,-191.012],[191.948,-192.506],[189.608,-192.956],[185.252,-191.012],[183.74,-185.792],[184.964,-185.216]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":407,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[201.992,-175.496],[201.992,-199.76],[198.752,-199.76],[198.752,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[206.204,-189.644],[206.204,-192.596],[194.54,-192.596],[194.54,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":408,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[220.532,-175.892],[223.556,-178.088],[221.468,-180.212],[219.398,-178.7],[216.752,-178.196],[213.692,-178.934],[211.64,-181.022],[210.92,-184.172],[211.604,-187.232],[213.548,-189.248],[216.464,-189.968],[219.164,-189.302],[220.892,-187.43],[221.504,-184.496],[222.692,-185.54],[209.984,-185.54],[209.984,-182.84],[224.42,-182.84],[224.564,-183.758],[224.6,-184.532],[223.574,-188.888],[220.712,-191.876],[216.536,-192.956],[212.054,-191.786],[208.886,-188.6],[207.716,-184.064],[208.904,-179.492],[212.126,-176.306],[216.752,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":409,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[238.856,-175.946],[241.34,-178.196],[242.384,-181.472],[242.384,-186.62],[241.322,-189.914],[238.82,-192.146],[235.328,-192.956],[231.116,-191.768],[228.146,-188.564],[227.048,-184.028],[228.146,-179.492],[231.116,-176.306],[235.328,-175.136]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[233.042,-178.934],[231.098,-181.004],[230.396,-184.064],[231.098,-187.106],[233.024,-189.158],[235.868,-189.896],[238.712,-189.14],[240.62,-187.07],[241.304,-184.028],[240.62,-181.022],[238.712,-178.952],[235.868,-178.196]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[244.364,-201.2],[241.088,-201.2],[241.088,-188.42],[241.7,-184.28],[241.088,-180.104],[241.088,-175.496],[244.364,-175.496]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":410,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[252.32,-175.496],[252.32,-201.2],[249.08,-201.2],[249.08,-175.496]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":411,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[264.632,-175.352],[272.624,-192.596],[269.024,-192.596],[263.228,-179.096],[264.38,-179.096],[258.872,-192.596],[255.272,-192.596],[262.688,-175.352]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[261.392,-168.332],[264.632,-175.352],[262.796,-178.664],[257.792,-168.332]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":412,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[293.792,-175.946],[296.258,-178.196],[297.284,-181.472],[297.284,-186.62],[296.24,-189.914],[293.774,-192.146],[290.3,-192.956],[286.034,-191.768],[283.046,-188.564],[281.948,-184.028],[283.046,-179.492],[286.034,-176.306],[290.3,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[287.96,-178.952],[285.998,-181.022],[285.296,-184.064],[285.998,-187.07],[287.942,-189.14],[290.804,-189.896],[293.63,-189.158],[295.52,-187.088],[296.204,-184.028],[294.728,-179.834],[290.84,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[299.264,-175.496],[299.264,-192.596],[295.988,-192.596],[295.988,-188.42],[296.6,-184.28],[295.988,-180.104],[295.988,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":413,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[314.006,-176.54],[315.716,-180.356],[315.05,-182.912],[313.34,-184.46],[311.144,-185.378],[308.93,-186.044],[307.22,-186.836],[306.572,-188.168],[307.31,-189.5],[309.452,-190.004],[311.828,-189.5],[313.628,-188.06],[315.716,-190.148],[313.142,-192.254],[309.56,-192.956],[306.284,-192.344],[304.178,-190.598],[303.44,-187.916],[304.106,-185.414],[305.816,-183.92],[308.03,-183.056],[310.244,-182.39],[311.954,-181.526],[312.62,-180.068],[311.792,-178.61],[309.452,-178.088],[306.716,-178.646],[304.556,-180.356],[302.468,-178.268],[304.322,-176.594],[306.68,-175.514],[309.416,-175.136]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":414,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[339.134,-176.324],[342.356,-179.546],[343.544,-184.1],[342.356,-188.6],[339.134,-191.786],[334.58,-192.956],[330.08,-191.768],[326.876,-188.582],[325.688,-184.1],[326.876,-179.546],[330.08,-176.324],[334.58,-175.136]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[331.736,-179.024],[329.756,-181.094],[329.036,-184.1],[329.756,-187.052],[331.736,-189.086],[334.58,-189.824],[337.478,-189.086],[339.458,-187.052],[340.196,-184.1],[339.476,-181.094],[337.496,-179.024],[334.58,-178.268]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":415,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[352.292,-175.496],[352.292,-195.152],[353.138,-197.618],[355.532,-198.5],[356.936,-198.248],[357.98,-197.492],[360.104,-199.58],[358.124,-201.056],[355.568,-201.56],[352.148,-200.732],[349.844,-198.464],[349.016,-195.152],[349.016,-175.496]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[357.728,-189.644],[357.728,-192.596],[344.84,-192.596],[344.84,-189.644]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":416,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[369.752,-175.496],[378.212,-196.628],[376.916,-196.628],[385.34,-175.496],[389.012,-175.496],[378.824,-200.48],[376.376,-200.48],[366.116,-175.496]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[384.152,-181.148],[384.152,-184.1],[371.012,-184.1],[371.012,-181.148]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"A","np":5,"cix":2,"bm":0,"ix":417,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[402.512,-176.126],[405.104,-178.736],[406.04,-182.66],[406.04,-192.596],[402.8,-192.596],[402.8,-182.804],[401.72,-179.474],[398.732,-178.268],[396.536,-178.808],[395.114,-180.374],[394.628,-182.804],[394.628,-192.596],[391.388,-192.596],[391.388,-182.66],[392.324,-178.736],[394.934,-176.126],[398.732,-175.208]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":418,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[422.186,-168.998],[425.354,-171.878],[426.488,-176.18],[426.488,-192.596],[423.248,-192.596],[423.248,-188.096],[423.824,-184.28],[423.248,-180.428],[423.248,-176.18],[421.7,-172.454],[417.56,-171.068],[414.14,-171.77],[411.656,-173.804],[409.532,-171.68],[412.808,-168.944],[417.488,-167.972]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[421.016,-176.576],[423.482,-178.79],[424.508,-182.084],[424.508,-186.62],[423.5,-189.95],[421.034,-192.164],[417.452,-192.956],[413.276,-191.822],[410.342,-188.762],[409.28,-184.388],[410.36,-179.978],[413.294,-176.9],[417.488,-175.784]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[415.274,-179.546],[413.33,-181.508],[412.628,-184.388],[413.33,-187.25],[415.256,-189.194],[418.1,-189.896],[420.89,-189.194],[422.762,-187.25],[423.428,-184.352],[422.762,-181.454],[420.908,-179.528],[418.1,-178.844]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":419,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[441.896,-176.126],[444.488,-178.736],[445.424,-182.66],[445.424,-192.596],[442.184,-192.596],[442.184,-182.804],[441.104,-179.474],[438.116,-178.268],[435.92,-178.808],[434.498,-180.374],[434.012,-182.804],[434.012,-192.596],[430.772,-192.596],[430.772,-182.66],[431.708,-178.736],[434.318,-176.126],[438.116,-175.208]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":420,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[459.806,-176.54],[461.516,-180.356],[460.85,-182.912],[459.14,-184.46],[456.944,-185.378],[454.73,-186.044],[453.02,-186.836],[452.372,-188.168],[453.11,-189.5],[455.252,-190.004],[457.628,-189.5],[459.428,-188.06],[461.516,-190.148],[458.942,-192.254],[455.36,-192.956],[452.084,-192.344],[449.978,-190.598],[449.24,-187.916],[449.906,-185.414],[451.616,-183.92],[453.83,-183.056],[456.044,-182.39],[457.754,-181.526],[458.42,-180.068],[457.592,-178.61],[455.252,-178.088],[452.516,-178.646],[450.356,-180.356],[448.268,-178.268],[450.122,-176.594],[452.48,-175.514],[455.216,-175.136]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":421,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[471.02,-175.496],[471.02,-199.76],[467.78,-199.76],[467.78,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[475.232,-189.644],[475.232,-192.596],[463.568,-192.596],[463.568,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":422,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.32,0.684],[-0.756,1.212],[0,1.584],[0.636,1.128],[1.068,0.624],[1.344,0],[0.528,-0.12],[0.456,-0.216],[0,0],[-0.444,0.06],[-0.408,0],[-0.84,-0.42],[-0.456,-0.744],[0,-1.032],[0.456,-0.768],[0.804,-0.42],[1.128,0],[0.96,0.492],[0.552,0.84],[0,0],[-1.332,-0.612],[-1.632,0]],"o":[[1.32,-0.684],[0.756,-1.212],[0,-1.488],[-0.636,-1.128],[-1.068,-0.624],[-0.528,0],[-0.528,0.12],[0,0],[0.384,-0.12],[0.444,-0.06],[1.176,0],[0.84,0.42],[0.456,0.744],[0,1.008],[-0.456,0.768],[-0.804,0.42],[-1.152,0],[-0.96,-0.492],[0,0],[0.912,1.176],[1.332,0.612],[1.752,0]],"v":[[496.976,-176.162],[500.09,-179.006],[501.224,-183.2],[500.27,-187.124],[497.714,-189.752],[494.096,-190.688],[492.512,-190.508],[491.036,-190.004],[489.596,-188.06],[490.838,-188.33],[492.116,-188.42],[495.14,-187.79],[497.084,-186.044],[497.768,-183.38],[497.084,-180.716],[495.194,-178.934],[492.296,-178.304],[489.128,-179.042],[486.86,-181.04],[484.556,-178.736],[487.922,-176.054],[492.368,-175.136]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[493.412,-189.932],[500.936,-198.428],[496.904,-198.428],[489.596,-190.112],[489.596,-188.06]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[497.984,-197.456],[500.936,-198.428],[500.936,-200.48],[485.708,-200.48],[485.708,-197.456]],"c":true},"ix":2},"nm":"3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"3","np":6,"cix":2,"bm":0,"ix":423,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[512.42,-175.496],[512.42,-200.48],[509.072,-200.48],[509.072,-175.496]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[512.06,-197.456],[512.06,-200.48],[503.96,-200.48],[503.96,-197.456]],"c":true},"ix":2},"nm":"1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"1","np":5,"cix":2,"bm":0,"ix":424,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[527.738,-176.54],[529.448,-180.356],[528.782,-182.912],[527.072,-184.46],[524.876,-185.378],[522.662,-186.044],[520.952,-186.836],[520.304,-188.168],[521.042,-189.5],[523.184,-190.004],[525.56,-189.5],[527.36,-188.06],[529.448,-190.148],[526.874,-192.254],[523.292,-192.956],[520.016,-192.344],[517.91,-190.598],[517.172,-187.916],[517.838,-185.414],[519.548,-183.92],[521.762,-183.056],[523.976,-182.39],[525.686,-181.526],[526.352,-180.068],[525.524,-178.61],[523.184,-178.088],[520.448,-178.646],[518.288,-180.356],[516.2,-178.268],[518.054,-176.594],[520.412,-175.514],[523.148,-175.136]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":425,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[538.952,-175.496],[538.952,-199.76],[535.712,-199.76],[535.712,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[543.164,-189.644],[543.164,-192.596],[531.5,-192.596],[531.5,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":426,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.264],[0.48,0.468],[0.624,0],[0.456,-0.468],[0,-0.696],[-0.42,-0.42],[-0.504,0],[-0.192,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.6],[0.108,-0.372],[0,-0.696],[-0.48,-0.468],[-0.696,0],[-0.456,0.468],[0,0.624],[0.42,0.42],[0.24,0],[0.192,-0.168],[0,0],[0,0],[0,0]],"v":[[547.124,-170.528],[549.536,-174.992],[550.166,-176.45],[550.328,-177.404],[549.608,-179.15],[547.952,-179.852],[546.224,-179.15],[545.54,-177.404],[546.17,-175.838],[547.556,-175.208],[548.204,-175.46],[548.672,-176.108],[547.52,-175.82],[545.288,-171.536]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":427,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[568.328,-175.496],[568.328,-199.76],[565.088,-199.76],[565.088,-175.496]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[572.54,-189.644],[572.54,-192.596],[560.876,-192.596],[560.876,-189.644]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":428,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[591.044,-175.496],[591.044,-186.116],[590.18,-189.68],[587.822,-192.092],[584.384,-192.956],[580.892,-192.074],[578.48,-189.68],[577.616,-186.224],[578.948,-185.468],[579.524,-187.772],[581.108,-189.356],[583.412,-189.932],[586.562,-188.672],[587.768,-185.468],[587.768,-175.496]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[578.948,-175.496],[578.948,-201.2],[575.708,-201.2],[575.708,-175.496]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":429,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[607.136,-175.892],[610.16,-178.088],[608.072,-180.212],[606.002,-178.7],[603.356,-178.196],[600.296,-178.934],[598.244,-181.022],[597.524,-184.172],[598.208,-187.232],[600.152,-189.248],[603.068,-189.968],[605.768,-189.302],[607.496,-187.43],[608.108,-184.496],[609.296,-185.54],[596.588,-185.54],[596.588,-182.84],[611.024,-182.84],[611.168,-183.758],[611.204,-184.532],[610.178,-188.888],[607.316,-191.876],[603.14,-192.956],[598.658,-191.786],[595.49,-188.6],[594.32,-184.064],[595.508,-179.492],[598.73,-176.306],[603.356,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":430,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[617.972,-175.496],[617.972,-192.596],[614.732,-192.596],[614.732,-175.496]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[619.124,-188.744],[622.076,-189.896],[623.588,-189.644],[624.776,-188.816],[626.9,-191.012],[624.956,-192.506],[622.616,-192.956],[618.26,-191.012],[616.748,-185.792],[617.972,-185.216]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":431,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[640.328,-175.892],[643.352,-178.088],[641.264,-180.212],[639.194,-178.7],[636.548,-178.196],[633.488,-178.934],[631.436,-181.022],[630.716,-184.172],[631.4,-187.232],[633.344,-189.248],[636.26,-189.968],[638.96,-189.302],[640.688,-187.43],[641.3,-184.496],[642.488,-185.54],[629.78,-185.54],[629.78,-182.84],[644.216,-182.84],[644.36,-183.758],[644.396,-184.532],[643.37,-188.888],[640.508,-191.876],[636.332,-192.956],[631.85,-191.786],[628.682,-188.6],[627.512,-184.064],[628.7,-179.492],[631.922,-176.306],[636.548,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":432,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[666.14,-175.946],[668.606,-178.196],[669.632,-181.472],[669.632,-186.62],[668.588,-189.914],[666.122,-192.146],[662.648,-192.956],[658.382,-191.768],[655.394,-188.564],[654.296,-184.028],[655.394,-179.492],[658.382,-176.306],[662.648,-175.136]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[660.308,-178.952],[658.346,-181.022],[657.644,-184.064],[658.346,-187.07],[660.29,-189.14],[663.152,-189.896],[665.978,-189.158],[667.868,-187.088],[668.552,-184.028],[667.076,-179.834],[663.188,-178.196]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[671.612,-175.496],[671.612,-192.596],[668.336,-192.596],[668.336,-188.42],[668.948,-184.28],[668.336,-180.104],[668.336,-175.496]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":433,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[679.568,-175.496],[679.568,-192.596],[676.328,-192.596],[676.328,-175.496]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[680.72,-188.744],[683.672,-189.896],[685.184,-189.644],[686.372,-188.816],[688.496,-191.012],[686.552,-192.506],[684.212,-192.956],[679.856,-191.012],[678.344,-185.792],[679.568,-185.216]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":434,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[701.924,-175.892],[704.948,-178.088],[702.86,-180.212],[700.79,-178.7],[698.144,-178.196],[695.084,-178.934],[693.032,-181.022],[692.312,-184.172],[692.996,-187.232],[694.94,-189.248],[697.856,-189.968],[700.556,-189.302],[702.284,-187.43],[702.896,-184.496],[704.084,-185.54],[691.376,-185.54],[691.376,-182.84],[705.812,-182.84],[705.956,-183.758],[705.992,-184.532],[704.966,-188.888],[702.104,-191.876],[697.928,-192.956],[693.446,-191.786],[690.278,-188.6],[689.108,-184.064],[690.296,-179.492],[693.518,-176.306],[698.144,-175.136]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":435,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-814.288,-132.296],[-814.288,-142.916],[-815.152,-146.246],[-817.51,-148.784],[-820.948,-149.756],[-824.44,-148.874],[-826.852,-146.48],[-827.716,-143.024],[-826.384,-142.268],[-825.808,-144.572],[-824.224,-146.156],[-821.92,-146.732],[-818.77,-145.472],[-817.564,-142.268],[-817.564,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-826.384,-132.296],[-826.384,-149.396],[-829.624,-149.396],[-829.624,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":436,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-799.204,-132.926],[-796.612,-135.536],[-795.676,-139.46],[-795.676,-149.396],[-798.916,-149.396],[-798.916,-139.604],[-799.996,-136.274],[-802.984,-135.068],[-805.18,-135.608],[-806.602,-137.174],[-807.088,-139.604],[-807.088,-149.396],[-810.328,-149.396],[-810.328,-139.46],[-809.392,-135.536],[-806.782,-132.926],[-802.984,-132.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":437,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-788.08,-132.296],[-788.08,-149.396],[-791.32,-149.396],[-791.32,-132.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-776.524,-132.296],[-776.524,-143.312],[-777.37,-146.732],[-779.674,-148.964],[-782.932,-149.756],[-786.244,-148.946],[-788.566,-146.696],[-789.412,-143.312],[-788.08,-142.628],[-787.504,-144.824],[-785.992,-146.228],[-783.868,-146.732],[-780.934,-145.634],[-779.764,-142.628],[-779.764,-132.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-764.932,-132.296],[-764.932,-143.276],[-765.814,-146.732],[-768.172,-148.964],[-771.52,-149.756],[-774.832,-148.946],[-777.298,-146.714],[-778.36,-143.312],[-776.524,-142.628],[-775.948,-144.824],[-774.418,-146.228],[-772.276,-146.732],[-769.378,-145.634],[-768.208,-142.628],[-768.208,-132.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":438,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-747.31,-133.106],[-744.34,-136.292],[-743.26,-140.828],[-744.34,-145.364],[-747.31,-148.568],[-751.54,-149.756],[-755.014,-148.946],[-757.534,-146.714],[-758.596,-143.42],[-758.596,-138.272],[-757.552,-134.996],[-755.05,-132.746],[-751.54,-131.936]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-757.3,-132.296],[-757.3,-136.904],[-757.912,-141.08],[-757.3,-145.22],[-757.3,-158],[-760.54,-158],[-760.54,-132.296]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-754.906,-135.752],[-756.814,-137.822],[-757.48,-140.828],[-756.796,-143.87],[-754.888,-145.94],[-752.08,-146.696],[-749.236,-145.94],[-747.31,-143.87],[-746.608,-140.864],[-747.31,-137.822],[-749.236,-135.752],[-752.08,-134.996]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":439,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-727.888,-132.692],[-724.864,-134.888],[-726.952,-137.012],[-729.022,-135.5],[-731.668,-134.996],[-734.728,-135.734],[-736.78,-137.822],[-737.5,-140.972],[-736.816,-144.032],[-734.872,-146.048],[-731.956,-146.768],[-729.256,-146.102],[-727.528,-144.23],[-726.916,-141.296],[-725.728,-142.34],[-738.436,-142.34],[-738.436,-139.64],[-724,-139.64],[-723.856,-140.558],[-723.82,-141.332],[-724.846,-145.688],[-727.708,-148.676],[-731.884,-149.756],[-736.366,-148.586],[-739.534,-145.4],[-740.704,-140.864],[-739.516,-136.292],[-736.294,-133.106],[-731.668,-131.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":440,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-717.052,-132.296],[-717.052,-149.396],[-720.292,-149.396],[-720.292,-132.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-715.9,-145.544],[-712.948,-146.696],[-711.436,-146.444],[-710.248,-145.616],[-708.124,-147.812],[-710.068,-149.306],[-712.408,-149.756],[-716.764,-147.812],[-718.276,-142.592],[-717.052,-142.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":441,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-685.426,-133.124],[-682.204,-136.346],[-681.016,-140.9],[-682.204,-145.4],[-685.426,-148.586],[-689.98,-149.756],[-694.48,-148.568],[-697.684,-145.382],[-698.872,-140.9],[-697.684,-136.346],[-694.48,-133.124],[-689.98,-131.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-692.824,-135.824],[-694.804,-137.894],[-695.524,-140.9],[-694.804,-143.852],[-692.824,-145.886],[-689.98,-146.624],[-687.082,-145.886],[-685.102,-143.852],[-684.364,-140.9],[-685.084,-137.894],[-687.064,-135.824],[-689.98,-135.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":442,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[-672.268,-132.296],[-672.268,-151.952],[-671.422,-154.418],[-669.028,-155.3],[-667.624,-155.048],[-666.58,-154.292],[-664.456,-156.38],[-666.436,-157.856],[-668.992,-158.36],[-672.412,-157.532],[-674.716,-155.264],[-675.544,-151.952],[-675.544,-132.296]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-666.832,-146.444],[-666.832,-149.396],[-679.72,-149.396],[-679.72,-146.444]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":443,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-643.81,-133.124],[-640.588,-136.346],[-639.4,-140.9],[-640.588,-145.4],[-643.81,-148.586],[-648.364,-149.756],[-652.864,-148.568],[-656.068,-145.382],[-657.256,-140.9],[-656.068,-136.346],[-652.864,-133.124],[-648.364,-131.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-651.208,-135.824],[-653.188,-137.894],[-653.908,-140.9],[-653.188,-143.852],[-651.208,-145.886],[-648.364,-146.624],[-645.466,-145.886],[-643.486,-143.852],[-642.748,-140.9],[-643.468,-137.894],[-645.448,-135.824],[-648.364,-135.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":444,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-630.472,-132.296],[-630.472,-156.56],[-633.712,-156.56],[-633.712,-132.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-626.26,-146.444],[-626.26,-149.396],[-637.924,-149.396],[-637.924,-146.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":445,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-607.756,-132.296],[-607.756,-142.916],[-608.62,-146.48],[-610.978,-148.892],[-614.416,-149.756],[-617.908,-148.874],[-620.32,-146.48],[-621.184,-143.024],[-619.852,-142.268],[-619.276,-144.572],[-617.692,-146.156],[-615.388,-146.732],[-612.238,-145.472],[-611.032,-142.268],[-611.032,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-619.852,-132.296],[-619.852,-158],[-623.092,-158],[-623.092,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":446,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-591.664,-132.692],[-588.64,-134.888],[-590.728,-137.012],[-592.798,-135.5],[-595.444,-134.996],[-598.504,-135.734],[-600.556,-137.822],[-601.276,-140.972],[-600.592,-144.032],[-598.648,-146.048],[-595.732,-146.768],[-593.032,-146.102],[-591.304,-144.23],[-590.692,-141.296],[-589.504,-142.34],[-602.212,-142.34],[-602.212,-139.64],[-587.776,-139.64],[-587.632,-140.558],[-587.596,-141.332],[-588.622,-145.688],[-591.484,-148.676],[-595.66,-149.756],[-600.142,-148.586],[-603.31,-145.4],[-604.48,-140.864],[-603.292,-136.292],[-600.07,-133.106],[-595.444,-131.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":447,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-580.828,-132.296],[-580.828,-149.396],[-584.068,-149.396],[-584.068,-132.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-579.676,-145.544],[-576.724,-146.696],[-575.212,-146.444],[-574.024,-145.616],[-571.9,-147.812],[-573.844,-149.306],[-576.184,-149.756],[-580.54,-147.812],[-582.052,-142.592],[-580.828,-142.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":448,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-553.756,-132.296],[-545.908,-149.396],[-549.364,-149.396],[-555.7,-134.96],[-553.612,-134.96],[-559.912,-149.396],[-563.512,-149.396],[-555.664,-132.296]],"c":true},"ix":2},"nm":"v","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"v","np":3,"cix":2,"bm":0,"ix":449,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-539.86,-132.296],[-539.86,-149.396],[-543.136,-149.396],[-543.136,-132.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-540.004,-153.41],[-539.428,-154.904],[-540.004,-156.362],[-541.48,-156.956],[-542.956,-156.362],[-543.532,-154.904],[-542.956,-153.41],[-541.48,-152.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":450,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-523.57,-132.692],[-520.672,-134.816],[-522.796,-136.976],[-524.758,-135.554],[-527.26,-135.068],[-530.14,-135.824],[-532.12,-137.876],[-532.84,-140.864],[-532.12,-143.852],[-530.14,-145.886],[-527.26,-146.624],[-524.776,-146.138],[-522.832,-144.716],[-520.672,-146.876],[-523.588,-149.018],[-527.26,-149.756],[-531.814,-148.586],[-535.018,-145.4],[-536.188,-140.864],[-535.018,-136.346],[-531.814,-133.124],[-527.26,-131.936]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":451,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-511.816,-132.296],[-511.816,-156.56],[-515.056,-156.56],[-515.056,-132.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-507.604,-146.444],[-507.604,-149.396],[-519.268,-149.396],[-519.268,-146.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":452,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-501.16,-132.296],[-501.16,-149.396],[-504.436,-149.396],[-504.436,-132.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-501.304,-153.41],[-500.728,-154.904],[-501.304,-156.362],[-502.78,-156.956],[-504.256,-156.362],[-504.832,-154.904],[-504.256,-153.41],[-502.78,-152.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":453,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-493.132,-132.296],[-493.132,-149.396],[-496.372,-149.396],[-496.372,-132.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-481.576,-132.296],[-481.576,-143.312],[-482.422,-146.732],[-484.726,-148.964],[-487.984,-149.756],[-491.296,-148.946],[-493.618,-146.696],[-494.464,-143.312],[-493.132,-142.628],[-492.556,-144.824],[-491.044,-146.228],[-488.92,-146.732],[-485.986,-145.634],[-484.816,-142.628],[-484.816,-132.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-469.984,-132.296],[-469.984,-143.276],[-470.866,-146.732],[-473.224,-148.964],[-476.572,-149.756],[-479.884,-148.946],[-482.35,-146.714],[-483.412,-143.312],[-481.576,-142.628],[-481,-144.824],[-479.47,-146.228],[-477.328,-146.732],[-474.43,-145.634],[-473.26,-142.628],[-473.26,-132.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":454,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-455.566,-133.34],[-453.856,-137.156],[-454.522,-139.712],[-456.232,-141.26],[-458.428,-142.178],[-460.642,-142.844],[-462.352,-143.636],[-463,-144.968],[-462.262,-146.3],[-460.12,-146.804],[-457.744,-146.3],[-455.944,-144.86],[-453.856,-146.948],[-456.43,-149.054],[-460.012,-149.756],[-463.288,-149.144],[-465.394,-147.398],[-466.132,-144.716],[-465.466,-142.214],[-463.756,-140.72],[-461.542,-139.856],[-459.328,-139.19],[-457.618,-138.326],[-456.952,-136.868],[-457.78,-135.41],[-460.12,-134.888],[-462.856,-135.446],[-465.016,-137.156],[-467.104,-135.068],[-465.25,-133.394],[-462.892,-132.314],[-460.156,-131.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":455,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-436,-132.296],[-431.032,-145.184],[-432.22,-145.184],[-427.288,-132.296],[-425.38,-132.296],[-418.648,-149.396],[-422.032,-149.396],[-426.928,-136.076],[-425.848,-136.076],[-430.708,-149.396],[-432.58,-149.396],[-437.44,-136.076],[-436.36,-136.076],[-441.256,-149.396],[-444.64,-149.396],[-437.908,-132.296]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":456,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-400.432,-132.296],[-400.432,-142.916],[-401.296,-146.48],[-403.654,-148.892],[-407.092,-149.756],[-410.584,-148.874],[-412.996,-146.48],[-413.86,-143.024],[-412.528,-142.268],[-411.952,-144.572],[-410.368,-146.156],[-408.064,-146.732],[-404.914,-145.472],[-403.708,-142.268],[-403.708,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-412.528,-132.296],[-412.528,-158],[-415.768,-158],[-415.768,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":457,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-383.71,-133.124],[-380.488,-136.346],[-379.3,-140.9],[-380.488,-145.4],[-383.71,-148.586],[-388.264,-149.756],[-392.764,-148.568],[-395.968,-145.382],[-397.156,-140.9],[-395.968,-136.346],[-392.764,-133.124],[-388.264,-131.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-391.108,-135.824],[-393.088,-137.894],[-393.808,-140.9],[-393.088,-143.852],[-391.108,-145.886],[-388.264,-146.624],[-385.366,-145.886],[-383.386,-143.852],[-382.648,-140.9],[-383.368,-137.894],[-385.348,-135.824],[-388.264,-135.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":458,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-355.018,-133.106],[-352.048,-136.292],[-350.968,-140.828],[-352.048,-145.364],[-355.018,-148.568],[-359.248,-149.756],[-362.722,-148.946],[-365.242,-146.714],[-366.304,-143.42],[-366.304,-138.272],[-365.26,-134.996],[-362.758,-132.746],[-359.248,-131.936]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-365.008,-125.132],[-365.008,-136.58],[-365.62,-140.756],[-365.008,-144.896],[-365.008,-149.396],[-368.248,-149.396],[-368.248,-125.132]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-362.614,-135.752],[-364.522,-137.822],[-365.188,-140.828],[-364.504,-143.87],[-362.596,-145.94],[-359.788,-146.696],[-356.944,-145.94],[-355.018,-143.87],[-354.316,-140.864],[-355.018,-137.822],[-356.944,-135.752],[-359.788,-134.996]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":459,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-336.532,-132.746],[-334.066,-134.996],[-333.04,-138.272],[-333.04,-143.42],[-334.084,-146.714],[-336.55,-148.946],[-340.024,-149.756],[-344.29,-148.568],[-347.278,-145.364],[-348.376,-140.828],[-347.278,-136.292],[-344.29,-133.106],[-340.024,-131.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-342.364,-135.752],[-344.326,-137.822],[-345.028,-140.864],[-344.326,-143.87],[-342.382,-145.94],[-339.52,-146.696],[-336.694,-145.958],[-334.804,-143.888],[-334.12,-140.828],[-335.596,-136.634],[-339.484,-134.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-331.06,-132.296],[-331.06,-149.396],[-334.336,-149.396],[-334.336,-145.22],[-333.724,-141.08],[-334.336,-136.904],[-334.336,-132.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":460,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-316.318,-133.34],[-314.608,-137.156],[-315.274,-139.712],[-316.984,-141.26],[-319.18,-142.178],[-321.394,-142.844],[-323.104,-143.636],[-323.752,-144.968],[-323.014,-146.3],[-320.872,-146.804],[-318.496,-146.3],[-316.696,-144.86],[-314.608,-146.948],[-317.182,-149.054],[-320.764,-149.756],[-324.04,-149.144],[-326.146,-147.398],[-326.884,-144.716],[-326.218,-142.214],[-324.508,-140.72],[-322.294,-139.856],[-320.08,-139.19],[-318.37,-138.326],[-317.704,-136.868],[-318.532,-135.41],[-320.872,-134.888],[-323.608,-135.446],[-325.768,-137.156],[-327.856,-135.068],[-326.002,-133.394],[-323.644,-132.314],[-320.908,-131.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":461,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-300.946,-133.34],[-299.236,-137.156],[-299.902,-139.712],[-301.612,-141.26],[-303.808,-142.178],[-306.022,-142.844],[-307.732,-143.636],[-308.38,-144.968],[-307.642,-146.3],[-305.5,-146.804],[-303.124,-146.3],[-301.324,-144.86],[-299.236,-146.948],[-301.81,-149.054],[-305.392,-149.756],[-308.668,-149.144],[-310.774,-147.398],[-311.512,-144.716],[-310.846,-142.214],[-309.136,-140.72],[-306.922,-139.856],[-304.708,-139.19],[-302.998,-138.326],[-302.332,-136.868],[-303.16,-135.41],[-305.5,-134.888],[-308.236,-135.446],[-310.396,-137.156],[-312.484,-135.068],[-310.63,-133.394],[-308.272,-132.314],[-305.536,-131.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":462,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-283.9,-132.692],[-280.876,-134.888],[-282.964,-137.012],[-285.034,-135.5],[-287.68,-134.996],[-290.74,-135.734],[-292.792,-137.822],[-293.512,-140.972],[-292.828,-144.032],[-290.884,-146.048],[-287.968,-146.768],[-285.268,-146.102],[-283.54,-144.23],[-282.928,-141.296],[-281.74,-142.34],[-294.448,-142.34],[-294.448,-139.64],[-280.012,-139.64],[-279.868,-140.558],[-279.832,-141.332],[-280.858,-145.688],[-283.72,-148.676],[-287.896,-149.756],[-292.378,-148.586],[-295.546,-145.4],[-296.716,-140.864],[-295.528,-136.292],[-292.306,-133.106],[-287.68,-131.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":463,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-265.576,-132.746],[-263.092,-134.996],[-262.048,-138.272],[-262.048,-143.42],[-263.11,-146.714],[-265.612,-148.946],[-269.104,-149.756],[-273.316,-148.568],[-276.286,-145.364],[-277.384,-140.828],[-276.286,-136.292],[-273.316,-133.106],[-269.104,-131.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-271.39,-135.734],[-273.334,-137.804],[-274.036,-140.864],[-273.334,-143.906],[-271.408,-145.958],[-268.564,-146.696],[-265.72,-145.94],[-263.812,-143.87],[-263.128,-140.828],[-263.812,-137.822],[-265.72,-135.752],[-268.564,-134.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-260.068,-158],[-263.344,-158],[-263.344,-145.22],[-262.732,-141.08],[-263.344,-136.904],[-263.344,-132.296],[-260.068,-132.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":464,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-237.136,-132.746],[-234.67,-134.996],[-233.644,-138.272],[-233.644,-143.42],[-234.688,-146.714],[-237.154,-148.946],[-240.628,-149.756],[-244.894,-148.568],[-247.882,-145.364],[-248.98,-140.828],[-247.882,-136.292],[-244.894,-133.106],[-240.628,-131.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-242.968,-135.752],[-244.93,-137.822],[-245.632,-140.864],[-244.93,-143.87],[-242.986,-145.94],[-240.124,-146.696],[-237.298,-145.958],[-235.408,-143.888],[-234.724,-140.828],[-236.2,-136.634],[-240.088,-134.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-231.664,-132.296],[-231.664,-149.396],[-234.94,-149.396],[-234.94,-145.22],[-234.328,-141.08],[-234.94,-136.904],[-234.94,-132.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":465,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-220.252,-132.296],[-215.284,-145.184],[-216.472,-145.184],[-211.54,-132.296],[-209.632,-132.296],[-202.9,-149.396],[-206.284,-149.396],[-211.18,-136.076],[-210.1,-136.076],[-214.96,-149.396],[-216.832,-149.396],[-221.692,-136.076],[-220.612,-136.076],[-225.508,-149.396],[-228.892,-149.396],[-222.16,-132.296]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":466,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-189.76,-132.746],[-187.294,-134.996],[-186.268,-138.272],[-186.268,-143.42],[-187.312,-146.714],[-189.778,-148.946],[-193.252,-149.756],[-197.518,-148.568],[-200.506,-145.364],[-201.604,-140.828],[-200.506,-136.292],[-197.518,-133.106],[-193.252,-131.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-195.592,-135.752],[-197.554,-137.822],[-198.256,-140.864],[-197.554,-143.87],[-195.61,-145.94],[-192.748,-146.696],[-189.922,-145.958],[-188.032,-143.888],[-187.348,-140.828],[-188.824,-136.634],[-192.712,-134.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-184.288,-132.296],[-184.288,-149.396],[-187.564,-149.396],[-187.564,-145.22],[-186.952,-141.08],[-187.564,-136.904],[-187.564,-132.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":467,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-172.012,-132.152],[-164.02,-149.396],[-167.62,-149.396],[-173.416,-135.896],[-172.264,-135.896],[-177.772,-149.396],[-181.372,-149.396],[-173.956,-132.152]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-175.252,-125.132],[-172.012,-132.152],[-173.848,-135.464],[-178.852,-125.132]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":468,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-150.34,-132.296],[-150.34,-149.396],[-153.616,-149.396],[-153.616,-132.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-150.484,-153.41],[-149.908,-154.904],[-150.484,-156.362],[-151.96,-156.956],[-153.436,-156.362],[-154.012,-154.904],[-153.436,-153.41],[-151.96,-152.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":469,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-130.216,-132.296],[-130.216,-142.916],[-131.08,-146.246],[-133.438,-148.784],[-136.876,-149.756],[-140.368,-148.874],[-142.78,-146.48],[-143.644,-143.024],[-142.312,-142.268],[-141.736,-144.572],[-140.152,-146.156],[-137.848,-146.732],[-134.698,-145.472],[-133.492,-142.268],[-133.492,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-142.312,-132.296],[-142.312,-149.396],[-145.552,-149.396],[-145.552,-132.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":470,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-112.504,-132.296],[-112.504,-156.56],[-115.744,-156.56],[-115.744,-132.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-108.292,-146.444],[-108.292,-149.396],[-119.956,-149.396],[-119.956,-146.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":471,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-89.788,-132.296],[-89.788,-142.916],[-90.652,-146.48],[-93.01,-148.892],[-96.448,-149.756],[-99.94,-148.874],[-102.352,-146.48],[-103.216,-143.024],[-101.884,-142.268],[-101.308,-144.572],[-99.724,-146.156],[-97.42,-146.732],[-94.27,-145.472],[-93.064,-142.268],[-93.064,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-101.884,-132.296],[-101.884,-158],[-105.124,-158],[-105.124,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":472,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-73.696,-132.692],[-70.672,-134.888],[-72.76,-137.012],[-74.83,-135.5],[-77.476,-134.996],[-80.536,-135.734],[-82.588,-137.822],[-83.308,-140.972],[-82.624,-144.032],[-80.68,-146.048],[-77.764,-146.768],[-75.064,-146.102],[-73.336,-144.23],[-72.724,-141.296],[-71.536,-142.34],[-84.244,-142.34],[-84.244,-139.64],[-69.808,-139.64],[-69.664,-140.558],[-69.628,-141.332],[-70.654,-145.688],[-73.516,-148.676],[-77.692,-149.756],[-82.174,-148.586],[-85.342,-145.4],[-86.512,-140.864],[-85.324,-136.292],[-82.102,-133.106],[-77.476,-131.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":473,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-43.312,-132.296],[-43.312,-142.916],[-44.176,-146.48],[-46.534,-148.892],[-49.972,-149.756],[-53.464,-148.874],[-55.876,-146.48],[-56.74,-143.024],[-55.408,-142.268],[-54.832,-144.572],[-53.248,-146.156],[-50.944,-146.732],[-47.794,-145.472],[-46.588,-142.268],[-46.588,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-55.408,-132.296],[-55.408,-158],[-58.648,-158],[-58.648,-132.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":474,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-26.59,-133.124],[-23.368,-136.346],[-22.18,-140.9],[-23.368,-145.4],[-26.59,-148.586],[-31.144,-149.756],[-35.644,-148.568],[-38.848,-145.382],[-40.036,-140.9],[-38.848,-136.346],[-35.644,-133.124],[-31.144,-131.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-33.988,-135.824],[-35.968,-137.894],[-36.688,-140.9],[-35.968,-143.852],[-33.988,-145.886],[-31.144,-146.624],[-28.246,-145.886],[-26.266,-143.852],[-25.528,-140.9],[-26.248,-137.894],[-28.228,-135.824],[-31.144,-135.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":475,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-8.554,-133.34],[-6.844,-137.156],[-7.51,-139.712],[-9.22,-141.26],[-11.416,-142.178],[-13.63,-142.844],[-15.34,-143.636],[-15.988,-144.968],[-15.25,-146.3],[-13.108,-146.804],[-10.732,-146.3],[-8.932,-144.86],[-6.844,-146.948],[-9.418,-149.054],[-13,-149.756],[-16.276,-149.144],[-18.382,-147.398],[-19.12,-144.716],[-18.454,-142.214],[-16.744,-140.72],[-14.53,-139.856],[-12.316,-139.19],[-10.606,-138.326],[-9.94,-136.868],[-10.768,-135.41],[-13.108,-134.888],[-15.844,-135.446],[-18.004,-137.156],[-20.092,-135.068],[-18.238,-133.394],[-15.88,-132.314],[-13.144,-131.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":476,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[10.022,-133.106],[12.992,-136.292],[14.072,-140.828],[12.992,-145.364],[10.022,-148.568],[5.792,-149.756],[2.318,-148.946],[-0.202,-146.714],[-1.264,-143.42],[-1.264,-138.272],[-0.22,-134.996],[2.282,-132.746],[5.792,-131.936]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[0.032,-125.132],[0.032,-136.58],[-0.58,-140.756],[0.032,-144.896],[0.032,-149.396],[-3.208,-149.396],[-3.208,-125.132]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[2.426,-135.752],[0.518,-137.822],[-0.148,-140.828],[0.536,-143.87],[2.444,-145.94],[5.252,-146.696],[8.096,-145.94],[10.022,-143.87],[10.724,-140.864],[10.022,-137.822],[8.096,-135.752],[5.252,-134.996]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":477,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21.02,-132.296],[21.02,-149.396],[17.744,-149.396],[17.744,-132.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[20.876,-153.41],[21.452,-154.904],[20.876,-156.362],[19.4,-156.956],[17.924,-156.362],[17.348,-154.904],[17.924,-153.41],[19.4,-152.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":478,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[31.676,-132.296],[31.676,-156.56],[28.436,-156.56],[28.436,-132.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[35.888,-146.444],[35.888,-149.396],[24.224,-149.396],[24.224,-146.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":479,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[49.28,-132.746],[51.746,-134.996],[52.772,-138.272],[52.772,-143.42],[51.728,-146.714],[49.262,-148.946],[45.788,-149.756],[41.522,-148.568],[38.534,-145.364],[37.436,-140.828],[38.534,-136.292],[41.522,-133.106],[45.788,-131.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[43.448,-135.752],[41.486,-137.822],[40.784,-140.864],[41.486,-143.87],[43.43,-145.94],[46.292,-146.696],[49.118,-145.958],[51.008,-143.888],[51.692,-140.828],[50.216,-136.634],[46.328,-134.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[54.752,-132.296],[54.752,-149.396],[51.476,-149.396],[51.476,-145.22],[52.088,-141.08],[51.476,-136.904],[51.476,-132.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":480,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[62.708,-132.296],[62.708,-158],[59.468,-158],[59.468,-132.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":481,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.444,0.468],[0,0.648],[0.444,0.444],[0.672,0],[0.432,-0.444],[0,-0.672],[-0.432,-0.468],[-0.696,0]],"o":[[0.444,-0.468],[0,-0.672],[-0.444,-0.444],[-0.696,0],[-0.432,0.444],[0,0.648],[0.432,0.468],[0.672,0]],"v":[[71.978,-132.638],[72.644,-134.312],[71.978,-135.986],[70.304,-136.652],[68.612,-135.986],[67.964,-134.312],[68.612,-132.638],[70.304,-131.936]],"c":true},"ix":2},"nm":".","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":".","np":3,"cix":2,"bm":0,"ix":482,"mn":"ADBE Vector Group","hd":false}],"ip":361,"op":4845,"st":361,"ct":1,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"Firstly, I would like to apologize for this sudden announcement but, I would like to bring you some information regarding what is currently happening in Indonesia. Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":3690,"s":[100]},{"t":3720,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[964,609,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-825.664,-348.296],[-825.664,-373.28],[-829.048,-373.28],[-829.048,-348.296]],"c":true},"ix":2},"nm":"F","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-813.712,-359.276],[-813.712,-362.372],[-826.744,-362.372],[-826.744,-359.276]],"c":true},"ix":2},"nm":"F","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-813.1,-370.184],[-813.1,-373.28],[-826.744,-373.28],[-826.744,-370.184]],"c":true},"ix":2},"nm":"F","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"F","np":6,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-805.972,-348.296],[-805.972,-365.396],[-809.248,-365.396],[-809.248,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-806.116,-369.41],[-805.54,-370.904],[-806.116,-372.362],[-807.592,-372.956],[-809.068,-372.362],[-809.644,-370.904],[-809.068,-369.41],[-807.592,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-797.944,-348.296],[-797.944,-365.396],[-801.184,-365.396],[-801.184,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-796.792,-361.544],[-793.84,-362.696],[-792.328,-362.444],[-791.14,-361.616],[-789.016,-363.812],[-790.96,-365.306],[-793.3,-365.756],[-797.656,-363.812],[-799.168,-358.592],[-797.944,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-777.082,-349.34],[-775.372,-353.156],[-776.038,-355.712],[-777.748,-357.26],[-779.944,-358.178],[-782.158,-358.844],[-783.868,-359.636],[-784.516,-360.968],[-783.778,-362.3],[-781.636,-362.804],[-779.26,-362.3],[-777.46,-360.86],[-775.372,-362.948],[-777.946,-365.054],[-781.528,-365.756],[-784.804,-365.144],[-786.91,-363.398],[-787.648,-360.716],[-786.982,-358.214],[-785.272,-356.72],[-783.058,-355.856],[-780.844,-355.19],[-779.134,-354.326],[-778.468,-352.868],[-779.296,-351.41],[-781.636,-350.888],[-784.372,-351.446],[-786.532,-353.156],[-788.62,-351.068],[-786.766,-349.394],[-784.408,-348.314],[-781.672,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-765.868,-348.296],[-765.868,-372.56],[-769.108,-372.56],[-769.108,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-761.656,-362.444],[-761.656,-365.396],[-773.32,-365.396],[-773.32,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-755.248,-348.296],[-755.248,-374],[-758.488,-374],[-758.488,-348.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-742.936,-348.152],[-734.944,-365.396],[-738.544,-365.396],[-744.34,-351.896],[-743.188,-351.896],[-748.696,-365.396],[-752.296,-365.396],[-744.88,-348.152]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-746.176,-341.132],[-742.936,-348.152],[-744.772,-351.464],[-749.776,-341.132]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.264],[0.48,0.468],[0.624,0],[0.456,-0.468],[0,-0.696],[-0.42,-0.42],[-0.504,0],[-0.192,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.6],[0.108,-0.372],[0,-0.696],[-0.48,-0.468],[-0.696,0],[-0.456,0.468],[0,0.624],[0.42,0.42],[0.24,0],[0.192,-0.168],[0,0],[0,0],[0,0]],"v":[[-732.424,-343.328],[-730.012,-347.792],[-729.382,-349.25],[-729.22,-350.204],[-729.94,-351.95],[-731.596,-352.652],[-733.324,-351.95],[-734.008,-350.204],[-733.378,-348.638],[-731.992,-348.008],[-731.344,-348.26],[-730.876,-348.908],[-732.028,-348.62],[-734.26,-344.336]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-713.128,-348.296],[-713.128,-373.28],[-716.512,-373.28],[-716.512,-348.296]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-693.58,-348.296],[-688.612,-361.184],[-689.8,-361.184],[-684.868,-348.296],[-682.96,-348.296],[-676.228,-365.396],[-679.612,-365.396],[-684.508,-352.076],[-683.428,-352.076],[-688.288,-365.396],[-690.16,-365.396],[-695.02,-352.076],[-693.94,-352.076],[-698.836,-365.396],[-702.22,-365.396],[-695.488,-348.296]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-661.522,-349.124],[-658.3,-352.346],[-657.112,-356.9],[-658.3,-361.4],[-661.522,-364.586],[-666.076,-365.756],[-670.576,-364.568],[-673.78,-361.382],[-674.968,-356.9],[-673.78,-352.346],[-670.576,-349.124],[-666.076,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-668.92,-351.824],[-670.9,-353.894],[-671.62,-356.9],[-670.9,-359.852],[-668.92,-361.886],[-666.076,-362.624],[-663.178,-361.886],[-661.198,-359.852],[-660.46,-356.9],[-661.18,-353.894],[-663.16,-351.824],[-666.076,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-642.82,-348.926],[-640.228,-351.536],[-639.292,-355.46],[-639.292,-365.396],[-642.532,-365.396],[-642.532,-355.604],[-643.612,-352.274],[-646.6,-351.068],[-648.796,-351.608],[-650.218,-353.174],[-650.704,-355.604],[-650.704,-365.396],[-653.944,-365.396],[-653.944,-355.46],[-653.008,-351.536],[-650.398,-348.926],[-646.6,-348.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-631.696,-348.296],[-631.696,-374],[-634.936,-374],[-634.936,-348.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-616.216,-348.746],[-613.732,-350.996],[-612.688,-354.272],[-612.688,-359.42],[-613.75,-362.714],[-616.252,-364.946],[-619.744,-365.756],[-623.956,-364.568],[-626.926,-361.364],[-628.024,-356.828],[-626.926,-352.292],[-623.956,-349.106],[-619.744,-347.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-622.03,-351.734],[-623.974,-353.804],[-624.676,-356.864],[-623.974,-359.906],[-622.048,-361.958],[-619.204,-362.696],[-616.36,-361.94],[-614.452,-359.87],[-613.768,-356.828],[-614.452,-353.822],[-616.36,-351.752],[-619.204,-350.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-610.708,-374],[-613.984,-374],[-613.984,-361.22],[-613.372,-357.08],[-613.984,-352.904],[-613.984,-348.296],[-610.708,-348.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-595.3,-348.296],[-595.3,-374],[-598.54,-374],[-598.54,-348.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-587.272,-348.296],[-587.272,-365.396],[-590.548,-365.396],[-590.548,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-587.416,-369.41],[-586.84,-370.904],[-587.416,-372.362],[-588.892,-372.956],[-590.368,-372.362],[-590.944,-370.904],[-590.368,-369.41],[-588.892,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-567.364,-348.296],[-576.364,-358.052],[-576.508,-356.18],[-567.688,-365.396],[-571.648,-365.396],[-579.532,-357.044],[-571.54,-348.296]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-579.244,-348.296],[-579.244,-374],[-582.484,-374],[-582.484,-348.296]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"k","np":5,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-553.828,-348.692],[-550.804,-350.888],[-552.892,-353.012],[-554.962,-351.5],[-557.608,-350.996],[-560.668,-351.734],[-562.72,-353.822],[-563.44,-356.972],[-562.756,-360.032],[-560.812,-362.048],[-557.896,-362.768],[-555.196,-362.102],[-553.468,-360.23],[-552.856,-357.296],[-551.668,-358.34],[-564.376,-358.34],[-564.376,-355.64],[-549.94,-355.64],[-549.796,-356.558],[-549.76,-357.332],[-550.786,-361.688],[-553.648,-364.676],[-557.824,-365.756],[-562.306,-364.586],[-565.474,-361.4],[-566.644,-356.864],[-565.456,-352.292],[-562.234,-349.106],[-557.608,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-532.912,-348.296],[-532.912,-372.56],[-536.152,-372.56],[-536.152,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-528.7,-362.444],[-528.7,-365.396],[-540.364,-365.396],[-540.364,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-513.742,-349.124],[-510.52,-352.346],[-509.332,-356.9],[-510.52,-361.4],[-513.742,-364.586],[-518.296,-365.756],[-522.796,-364.568],[-526,-361.382],[-527.188,-356.9],[-526,-352.346],[-522.796,-349.124],[-518.296,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-521.14,-351.824],[-523.12,-353.894],[-523.84,-356.9],[-523.12,-359.852],[-521.14,-361.886],[-518.296,-362.624],[-515.398,-361.886],[-513.418,-359.852],[-512.68,-356.9],[-513.4,-353.894],[-515.38,-351.824],[-518.296,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-487.516,-348.746],[-485.05,-350.996],[-484.024,-354.272],[-484.024,-359.42],[-485.068,-362.714],[-487.534,-364.946],[-491.008,-365.756],[-495.274,-364.568],[-498.262,-361.364],[-499.36,-356.828],[-498.262,-352.292],[-495.274,-349.106],[-491.008,-347.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-493.348,-351.752],[-495.31,-353.822],[-496.012,-356.864],[-495.31,-359.87],[-493.366,-361.94],[-490.504,-362.696],[-487.678,-361.958],[-485.788,-359.888],[-485.104,-356.828],[-486.58,-352.634],[-490.468,-350.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-482.044,-348.296],[-482.044,-365.396],[-485.32,-365.396],[-485.32,-361.22],[-484.708,-357.08],[-485.32,-352.904],[-485.32,-348.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-464.098,-349.106],[-461.128,-352.292],[-460.048,-356.828],[-461.128,-361.364],[-464.098,-364.568],[-468.328,-365.756],[-471.802,-364.946],[-474.322,-362.714],[-475.384,-359.42],[-475.384,-354.272],[-474.34,-350.996],[-471.838,-348.746],[-468.328,-347.936]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-474.088,-341.132],[-474.088,-352.58],[-474.7,-356.756],[-474.088,-360.896],[-474.088,-365.396],[-477.328,-365.396],[-477.328,-341.132]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-471.694,-351.752],[-473.602,-353.822],[-474.268,-356.828],[-473.584,-359.87],[-471.676,-361.94],[-468.868,-362.696],[-466.024,-361.94],[-464.098,-359.87],[-463.396,-356.864],[-464.098,-353.822],[-466.024,-351.752],[-468.868,-350.996]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-444.046,-349.124],[-440.824,-352.346],[-439.636,-356.9],[-440.824,-361.4],[-444.046,-364.586],[-448.6,-365.756],[-453.1,-364.568],[-456.304,-361.382],[-457.492,-356.9],[-456.304,-352.346],[-453.1,-349.124],[-448.6,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-451.444,-351.824],[-453.424,-353.894],[-454.144,-356.9],[-453.424,-359.852],[-451.444,-361.886],[-448.6,-362.624],[-445.702,-361.886],[-443.722,-359.852],[-442.984,-356.9],[-443.704,-353.894],[-445.684,-351.824],[-448.6,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-432.796,-348.296],[-432.796,-374],[-436.036,-374],[-436.036,-348.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-415.714,-349.124],[-412.492,-352.346],[-411.304,-356.9],[-412.492,-361.4],[-415.714,-364.586],[-420.268,-365.756],[-424.768,-364.568],[-427.972,-361.382],[-429.16,-356.9],[-427.972,-352.346],[-424.768,-349.124],[-420.268,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-423.112,-351.824],[-425.092,-353.894],[-425.812,-356.9],[-425.092,-359.852],[-423.112,-361.886],[-420.268,-362.624],[-417.37,-361.886],[-415.39,-359.852],[-414.652,-356.9],[-415.372,-353.894],[-417.352,-351.824],[-420.268,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-395.914,-341.798],[-392.746,-344.678],[-391.612,-348.98],[-391.612,-365.396],[-394.852,-365.396],[-394.852,-360.896],[-394.276,-357.08],[-394.852,-353.228],[-394.852,-348.98],[-396.4,-345.254],[-400.54,-343.868],[-403.96,-344.57],[-406.444,-346.604],[-408.568,-344.48],[-405.292,-341.744],[-400.612,-340.772]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-397.084,-349.376],[-394.618,-351.59],[-393.592,-354.884],[-393.592,-359.42],[-394.6,-362.75],[-397.066,-364.964],[-400.648,-365.756],[-404.824,-364.622],[-407.758,-361.562],[-408.82,-357.188],[-407.74,-352.778],[-404.806,-349.7],[-400.612,-348.584]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-402.826,-352.346],[-404.77,-354.308],[-405.472,-357.188],[-404.77,-360.05],[-402.844,-361.994],[-400,-362.696],[-397.21,-361.994],[-395.338,-360.05],[-394.672,-357.152],[-395.338,-354.254],[-397.192,-352.328],[-400,-351.644]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-383.62,-348.296],[-383.62,-365.396],[-386.896,-365.396],[-386.896,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-383.764,-369.41],[-383.188,-370.904],[-383.764,-372.362],[-385.24,-372.956],[-386.716,-372.362],[-387.292,-370.904],[-386.716,-369.41],[-385.24,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-376.384,-350.06],[-366.232,-363.632],[-370.048,-363.632],[-380.236,-350.06]],"c":true},"ix":2},"nm":"z","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-366.448,-348.296],[-366.448,-351.248],[-377.32,-351.248],[-380.236,-350.06],[-380.236,-348.296]],"c":true},"ix":2},"nm":"z","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-369.22,-362.444],[-366.232,-363.632],[-366.232,-365.396],[-379.588,-365.396],[-379.588,-362.444]],"c":true},"ix":2},"nm":"z","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"z","np":6,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-351.364,-348.692],[-348.34,-350.888],[-350.428,-353.012],[-352.498,-351.5],[-355.144,-350.996],[-358.204,-351.734],[-360.256,-353.822],[-360.976,-356.972],[-360.292,-360.032],[-358.348,-362.048],[-355.432,-362.768],[-352.732,-362.102],[-351.004,-360.23],[-350.392,-357.296],[-349.204,-358.34],[-361.912,-358.34],[-361.912,-355.64],[-347.476,-355.64],[-347.332,-356.558],[-347.296,-357.332],[-348.322,-361.688],[-351.184,-364.676],[-355.36,-365.756],[-359.842,-364.586],[-363.01,-361.4],[-364.18,-356.864],[-362.992,-352.292],[-359.77,-349.106],[-355.144,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[-330.628,-348.296],[-330.628,-367.952],[-329.782,-370.418],[-327.388,-371.3],[-325.984,-371.048],[-324.94,-370.292],[-322.816,-372.38],[-324.796,-373.856],[-327.352,-374.36],[-330.772,-373.532],[-333.076,-371.264],[-333.904,-367.952],[-333.904,-348.296]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-325.192,-362.444],[-325.192,-365.396],[-338.08,-365.396],[-338.08,-362.444]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-310.594,-349.124],[-307.372,-352.346],[-306.184,-356.9],[-307.372,-361.4],[-310.594,-364.586],[-315.148,-365.756],[-319.648,-364.568],[-322.852,-361.382],[-324.04,-356.9],[-322.852,-352.346],[-319.648,-349.124],[-315.148,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-317.992,-351.824],[-319.972,-353.894],[-320.692,-356.9],[-319.972,-359.852],[-317.992,-361.886],[-315.148,-362.624],[-312.25,-361.886],[-310.27,-359.852],[-309.532,-356.9],[-310.252,-353.894],[-312.232,-351.824],[-315.148,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-299.344,-348.296],[-299.344,-365.396],[-302.584,-365.396],[-302.584,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-298.192,-361.544],[-295.24,-362.696],[-293.728,-362.444],[-292.54,-361.616],[-290.416,-363.812],[-292.36,-365.306],[-294.7,-365.756],[-299.056,-363.812],[-300.568,-358.592],[-299.344,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-274.18,-348.296],[-274.18,-372.56],[-277.42,-372.56],[-277.42,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-269.968,-362.444],[-269.968,-365.396],[-281.632,-365.396],[-281.632,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-251.464,-348.296],[-251.464,-358.916],[-252.328,-362.48],[-254.686,-364.892],[-258.124,-365.756],[-261.616,-364.874],[-264.028,-362.48],[-264.892,-359.024],[-263.56,-358.268],[-262.984,-360.572],[-261.4,-362.156],[-259.096,-362.732],[-255.946,-361.472],[-254.74,-358.268],[-254.74,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-263.56,-348.296],[-263.56,-374],[-266.8,-374],[-266.8,-348.296]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-243.796,-348.296],[-243.796,-365.396],[-247.072,-365.396],[-247.072,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-243.94,-369.41],[-243.364,-370.904],[-243.94,-372.362],[-245.416,-372.956],[-246.892,-372.362],[-247.468,-370.904],[-246.892,-369.41],[-245.416,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-228.982,-349.34],[-227.272,-353.156],[-227.938,-355.712],[-229.648,-357.26],[-231.844,-358.178],[-234.058,-358.844],[-235.768,-359.636],[-236.416,-360.968],[-235.678,-362.3],[-233.536,-362.804],[-231.16,-362.3],[-229.36,-360.86],[-227.272,-362.948],[-229.846,-365.054],[-233.428,-365.756],[-236.704,-365.144],[-238.81,-363.398],[-239.548,-360.716],[-238.882,-358.214],[-237.172,-356.72],[-234.958,-355.856],[-232.744,-355.19],[-231.034,-354.326],[-230.368,-352.868],[-231.196,-351.41],[-233.536,-350.888],[-236.272,-351.446],[-238.432,-353.156],[-240.52,-351.068],[-238.666,-349.394],[-236.308,-348.314],[-233.572,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-206.158,-349.34],[-204.448,-353.156],[-205.114,-355.712],[-206.824,-357.26],[-209.02,-358.178],[-211.234,-358.844],[-212.944,-359.636],[-213.592,-360.968],[-212.854,-362.3],[-210.712,-362.804],[-208.336,-362.3],[-206.536,-360.86],[-204.448,-362.948],[-207.022,-365.054],[-210.604,-365.756],[-213.88,-365.144],[-215.986,-363.398],[-216.724,-360.716],[-216.058,-358.214],[-214.348,-356.72],[-212.134,-355.856],[-209.92,-355.19],[-208.21,-354.326],[-207.544,-352.868],[-208.372,-351.41],[-210.712,-350.888],[-213.448,-351.446],[-215.608,-353.156],[-217.696,-351.068],[-215.842,-349.394],[-213.484,-348.314],[-210.748,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-190.12,-348.926],[-187.528,-351.536],[-186.592,-355.46],[-186.592,-365.396],[-189.832,-365.396],[-189.832,-355.604],[-190.912,-352.274],[-193.9,-351.068],[-196.096,-351.608],[-197.518,-353.174],[-198.004,-355.604],[-198.004,-365.396],[-201.244,-365.396],[-201.244,-355.46],[-200.308,-351.536],[-197.698,-348.926],[-193.9,-348.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-171.508,-348.746],[-169.024,-350.996],[-167.98,-354.272],[-167.98,-359.42],[-169.042,-362.714],[-171.544,-364.946],[-175.036,-365.756],[-179.248,-364.568],[-182.218,-361.364],[-183.316,-356.828],[-182.218,-352.292],[-179.248,-349.106],[-175.036,-347.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-177.322,-351.734],[-179.266,-353.804],[-179.968,-356.864],[-179.266,-359.906],[-177.34,-361.958],[-174.496,-362.696],[-171.652,-361.94],[-169.744,-359.87],[-169.06,-356.828],[-169.744,-353.822],[-171.652,-351.752],[-174.496,-350.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-166,-374],[-169.276,-374],[-169.276,-361.22],[-168.664,-357.08],[-169.276,-352.904],[-169.276,-348.296],[-166,-348.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-150.556,-348.746],[-148.072,-350.996],[-147.028,-354.272],[-147.028,-359.42],[-148.09,-362.714],[-150.592,-364.946],[-154.084,-365.756],[-158.296,-364.568],[-161.266,-361.364],[-162.364,-356.828],[-161.266,-352.292],[-158.296,-349.106],[-154.084,-347.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-156.37,-351.734],[-158.314,-353.804],[-159.016,-356.864],[-158.314,-359.906],[-156.388,-361.958],[-153.544,-362.696],[-150.7,-361.94],[-148.792,-359.87],[-148.108,-356.828],[-148.792,-353.822],[-150.7,-351.752],[-153.544,-350.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-145.048,-374],[-148.324,-374],[-148.324,-361.22],[-147.712,-357.08],[-148.324,-352.904],[-148.324,-348.296],[-145.048,-348.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-128.632,-348.692],[-125.608,-350.888],[-127.696,-353.012],[-129.766,-351.5],[-132.412,-350.996],[-135.472,-351.734],[-137.524,-353.822],[-138.244,-356.972],[-137.56,-360.032],[-135.616,-362.048],[-132.7,-362.768],[-130,-362.102],[-128.272,-360.23],[-127.66,-357.296],[-126.472,-358.34],[-139.18,-358.34],[-139.18,-355.64],[-124.744,-355.64],[-124.6,-356.558],[-124.564,-357.332],[-125.59,-361.688],[-128.452,-364.676],[-132.628,-365.756],[-137.11,-364.586],[-140.278,-361.4],[-141.448,-356.864],[-140.26,-352.292],[-137.038,-349.106],[-132.412,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-105.7,-348.296],[-105.7,-358.916],[-106.564,-362.246],[-108.922,-364.784],[-112.36,-365.756],[-115.852,-364.874],[-118.264,-362.48],[-119.128,-359.024],[-117.796,-358.268],[-117.22,-360.572],[-115.636,-362.156],[-113.332,-362.732],[-110.182,-361.472],[-108.976,-358.268],[-108.976,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-117.796,-348.296],[-117.796,-365.396],[-121.036,-365.396],[-121.036,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-83.092,-348.746],[-80.626,-350.996],[-79.6,-354.272],[-79.6,-359.42],[-80.644,-362.714],[-83.11,-364.946],[-86.584,-365.756],[-90.85,-364.568],[-93.838,-361.364],[-94.936,-356.828],[-93.838,-352.292],[-90.85,-349.106],[-86.584,-347.936]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-88.924,-351.752],[-90.886,-353.822],[-91.588,-356.864],[-90.886,-359.87],[-88.942,-361.94],[-86.08,-362.696],[-83.254,-361.958],[-81.364,-359.888],[-80.68,-356.828],[-82.156,-352.634],[-86.044,-350.996]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-77.62,-348.296],[-77.62,-365.396],[-80.896,-365.396],[-80.896,-361.22],[-80.284,-357.08],[-80.896,-352.904],[-80.896,-348.296]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-57.568,-348.296],[-57.568,-358.916],[-58.432,-362.246],[-60.79,-364.784],[-64.228,-365.756],[-67.72,-364.874],[-70.132,-362.48],[-70.996,-359.024],[-69.664,-358.268],[-69.088,-360.572],[-67.504,-362.156],[-65.2,-362.732],[-62.05,-361.472],[-60.844,-358.268],[-60.844,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-69.664,-348.296],[-69.664,-365.396],[-72.904,-365.396],[-72.904,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-37.84,-348.296],[-37.84,-358.916],[-38.704,-362.246],[-41.062,-364.784],[-44.5,-365.756],[-47.992,-364.874],[-50.404,-362.48],[-51.268,-359.024],[-49.936,-358.268],[-49.36,-360.572],[-47.776,-362.156],[-45.472,-362.732],[-42.322,-361.472],[-41.116,-358.268],[-41.116,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-49.936,-348.296],[-49.936,-365.396],[-53.176,-365.396],[-53.176,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-21.118,-349.124],[-17.896,-352.346],[-16.708,-356.9],[-17.896,-361.4],[-21.118,-364.586],[-25.672,-365.756],[-30.172,-364.568],[-33.376,-361.382],[-34.564,-356.9],[-33.376,-352.346],[-30.172,-349.124],[-25.672,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-28.516,-351.824],[-30.496,-353.894],[-31.216,-356.9],[-30.496,-359.852],[-28.516,-361.886],[-25.672,-362.624],[-22.774,-361.886],[-20.794,-359.852],[-20.056,-356.9],[-20.776,-353.894],[-22.756,-351.824],[-25.672,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-2.416,-348.926],[0.176,-351.536],[1.112,-355.46],[1.112,-365.396],[-2.128,-365.396],[-2.128,-355.604],[-3.208,-352.274],[-6.196,-351.068],[-8.392,-351.608],[-9.814,-353.174],[-10.3,-355.604],[-10.3,-365.396],[-13.54,-365.396],[-13.54,-355.46],[-12.604,-351.536],[-9.994,-348.926],[-6.196,-348.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[20.804,-348.296],[20.804,-358.916],[19.94,-362.246],[17.582,-364.784],[14.144,-365.756],[10.652,-364.874],[8.24,-362.48],[7.376,-359.024],[8.708,-358.268],[9.284,-360.572],[10.868,-362.156],[13.172,-362.732],[16.322,-361.472],[17.528,-358.268],[17.528,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8.708,-348.296],[8.708,-365.396],[5.468,-365.396],[5.468,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[36.698,-348.692],[39.596,-350.816],[37.472,-352.976],[35.51,-351.554],[33.008,-351.068],[30.128,-351.824],[28.148,-353.876],[27.428,-356.864],[28.148,-359.852],[30.128,-361.886],[33.008,-362.624],[35.492,-362.138],[37.436,-360.716],[39.596,-362.876],[36.68,-365.018],[33.008,-365.756],[28.454,-364.586],[25.25,-361.4],[24.08,-356.864],[25.25,-352.346],[28.454,-349.124],[33.008,-347.936]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[54.176,-348.692],[57.2,-350.888],[55.112,-353.012],[53.042,-351.5],[50.396,-350.996],[47.336,-351.734],[45.284,-353.822],[44.564,-356.972],[45.248,-360.032],[47.192,-362.048],[50.108,-362.768],[52.808,-362.102],[54.536,-360.23],[55.148,-357.296],[56.336,-358.34],[43.628,-358.34],[43.628,-355.64],[58.064,-355.64],[58.208,-356.558],[58.244,-357.332],[57.218,-361.688],[54.356,-364.676],[50.18,-365.756],[45.698,-364.586],[42.53,-361.4],[41.36,-356.864],[42.548,-352.292],[45.77,-349.106],[50.396,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[65.012,-348.296],[65.012,-365.396],[61.772,-365.396],[61.772,-348.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[76.568,-348.296],[76.568,-359.312],[75.722,-362.732],[73.418,-364.964],[70.16,-365.756],[66.848,-364.946],[64.526,-362.696],[63.68,-359.312],[65.012,-358.628],[65.588,-360.824],[67.1,-362.228],[69.224,-362.732],[72.158,-361.634],[73.328,-358.628],[73.328,-348.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[88.16,-348.296],[88.16,-359.276],[87.278,-362.732],[84.92,-364.964],[81.572,-365.756],[78.26,-364.946],[75.794,-362.714],[74.732,-359.312],[76.568,-358.628],[77.144,-360.824],[78.674,-362.228],[80.816,-362.732],[83.714,-361.634],[84.884,-358.628],[84.884,-348.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[104.252,-348.692],[107.276,-350.888],[105.188,-353.012],[103.118,-351.5],[100.472,-350.996],[97.412,-351.734],[95.36,-353.822],[94.64,-356.972],[95.324,-360.032],[97.268,-362.048],[100.184,-362.768],[102.884,-362.102],[104.612,-360.23],[105.224,-357.296],[106.412,-358.34],[93.704,-358.34],[93.704,-355.64],[108.14,-355.64],[108.284,-356.558],[108.32,-357.332],[107.294,-361.688],[104.432,-364.676],[100.256,-365.756],[95.774,-364.586],[92.606,-361.4],[91.436,-356.864],[92.624,-352.292],[95.846,-349.106],[100.472,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[127.184,-348.296],[127.184,-358.916],[126.32,-362.246],[123.962,-364.784],[120.524,-365.756],[117.032,-364.874],[114.62,-362.48],[113.756,-359.024],[115.088,-358.268],[115.664,-360.572],[117.248,-362.156],[119.552,-362.732],[122.702,-361.472],[123.908,-358.268],[123.908,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[115.088,-348.296],[115.088,-365.396],[111.848,-365.396],[111.848,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[137.228,-348.296],[137.228,-372.56],[133.988,-372.56],[133.988,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[141.44,-362.444],[141.44,-365.396],[129.776,-365.396],[129.776,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[165.29,-349.106],[168.26,-352.292],[169.34,-356.828],[168.26,-361.364],[165.29,-364.568],[161.06,-365.756],[157.586,-364.946],[155.066,-362.714],[154.004,-359.42],[154.004,-354.272],[155.048,-350.996],[157.55,-348.746],[161.06,-347.936]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[155.3,-348.296],[155.3,-352.904],[154.688,-357.08],[155.3,-361.22],[155.3,-374],[152.06,-374],[152.06,-348.296]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[157.694,-351.752],[155.786,-353.822],[155.12,-356.828],[155.804,-359.87],[157.712,-361.94],[160.52,-362.696],[163.364,-361.94],[165.29,-359.87],[165.992,-356.864],[165.29,-353.822],[163.364,-351.752],[160.52,-350.996]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[183.704,-348.926],[186.296,-351.536],[187.232,-355.46],[187.232,-365.396],[183.992,-365.396],[183.992,-355.604],[182.912,-352.274],[179.924,-351.068],[177.728,-351.608],[176.306,-353.174],[175.82,-355.604],[175.82,-365.396],[172.58,-365.396],[172.58,-355.46],[173.516,-351.536],[176.126,-348.926],[179.924,-348.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[197.456,-348.296],[197.456,-372.56],[194.216,-372.56],[194.216,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[201.668,-362.444],[201.668,-365.396],[190.004,-365.396],[190.004,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.108,0.372],[0,0.264],[0.48,0.468],[0.624,0],[0.456,-0.468],[0,-0.696],[-0.42,-0.42],[-0.504,0],[-0.192,0.168],[-0.12,0.264],[0,0],[0,0]],"o":[[0,0],[0.312,-0.6],[0.108,-0.372],[0,-0.696],[-0.48,-0.468],[-0.696,0],[-0.456,0.468],[0,0.624],[0.42,0.42],[0.24,0],[0.192,-0.168],[0,0],[0,0],[0,0]],"v":[[205.628,-343.328],[208.04,-347.792],[208.67,-349.25],[208.832,-350.204],[208.112,-351.95],[206.456,-352.652],[204.728,-351.95],[204.044,-350.204],[204.674,-348.638],[206.06,-348.008],[206.708,-348.26],[207.176,-348.908],[206.024,-348.62],[203.792,-344.336]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[224.924,-348.296],[224.924,-373.28],[221.54,-373.28],[221.54,-348.296]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[244.472,-348.296],[249.44,-361.184],[248.252,-361.184],[253.184,-348.296],[255.092,-348.296],[261.824,-365.396],[258.44,-365.396],[253.544,-352.076],[254.624,-352.076],[249.764,-365.396],[247.892,-365.396],[243.032,-352.076],[244.112,-352.076],[239.216,-365.396],[235.832,-365.396],[242.564,-348.296]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[276.53,-349.124],[279.752,-352.346],[280.94,-356.9],[279.752,-361.4],[276.53,-364.586],[271.976,-365.756],[267.476,-364.568],[264.272,-361.382],[263.084,-356.9],[264.272,-352.346],[267.476,-349.124],[271.976,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[269.132,-351.824],[267.152,-353.894],[266.432,-356.9],[267.152,-359.852],[269.132,-361.886],[271.976,-362.624],[274.874,-361.886],[276.854,-359.852],[277.592,-356.9],[276.872,-353.894],[274.892,-351.824],[271.976,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[295.232,-348.926],[297.824,-351.536],[298.76,-355.46],[298.76,-365.396],[295.52,-365.396],[295.52,-355.604],[294.44,-352.274],[291.452,-351.068],[289.256,-351.608],[287.834,-353.174],[287.348,-355.604],[287.348,-365.396],[284.108,-365.396],[284.108,-355.46],[285.044,-351.536],[287.654,-348.926],[291.452,-348.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[306.356,-348.296],[306.356,-374],[303.116,-374],[303.116,-348.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[321.836,-348.746],[324.32,-350.996],[325.364,-354.272],[325.364,-359.42],[324.302,-362.714],[321.8,-364.946],[318.308,-365.756],[314.096,-364.568],[311.126,-361.364],[310.028,-356.828],[311.126,-352.292],[314.096,-349.106],[318.308,-347.936]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[316.022,-351.734],[314.078,-353.804],[313.376,-356.864],[314.078,-359.906],[316.004,-361.958],[318.848,-362.696],[321.692,-361.94],[323.6,-359.87],[324.284,-356.828],[323.6,-353.822],[321.692,-351.752],[318.848,-350.996]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[327.344,-374],[324.068,-374],[324.068,-361.22],[324.68,-357.08],[324.068,-352.904],[324.068,-348.296],[327.344,-348.296]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[342.752,-348.296],[342.752,-374],[339.512,-374],[339.512,-348.296]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[350.78,-348.296],[350.78,-365.396],[347.504,-365.396],[347.504,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[350.636,-369.41],[351.212,-370.904],[350.636,-372.362],[349.16,-372.956],[347.684,-372.362],[347.108,-370.904],[347.684,-369.41],[349.16,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[370.688,-348.296],[361.688,-358.052],[361.544,-356.18],[370.364,-365.396],[366.404,-365.396],[358.52,-357.044],[366.512,-348.296]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[358.808,-348.296],[358.808,-374],[355.568,-374],[355.568,-348.296]],"c":true},"ix":2},"nm":"k","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"k","np":5,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[384.224,-348.692],[387.248,-350.888],[385.16,-353.012],[383.09,-351.5],[380.444,-350.996],[377.384,-351.734],[375.332,-353.822],[374.612,-356.972],[375.296,-360.032],[377.24,-362.048],[380.156,-362.768],[382.856,-362.102],[384.584,-360.23],[385.196,-357.296],[386.384,-358.34],[373.676,-358.34],[373.676,-355.64],[388.112,-355.64],[388.256,-356.558],[388.292,-357.332],[387.266,-361.688],[384.404,-364.676],[380.228,-365.756],[375.746,-364.586],[372.578,-361.4],[371.408,-356.864],[372.596,-352.292],[375.818,-349.106],[380.444,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[405.14,-348.296],[405.14,-372.56],[401.9,-372.56],[401.9,-348.296]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[409.352,-362.444],[409.352,-365.396],[397.688,-365.396],[397.688,-362.444]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[424.31,-349.124],[427.532,-352.346],[428.72,-356.9],[427.532,-361.4],[424.31,-364.586],[419.756,-365.756],[415.256,-364.568],[412.052,-361.382],[410.864,-356.9],[412.052,-352.346],[415.256,-349.124],[419.756,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[416.912,-351.824],[414.932,-353.894],[414.212,-356.9],[414.932,-359.852],[416.912,-361.886],[419.756,-362.624],[422.654,-361.886],[424.634,-359.852],[425.372,-356.9],[424.652,-353.894],[422.672,-351.824],[419.756,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[453.002,-349.106],[455.972,-352.292],[457.052,-356.828],[455.972,-361.364],[453.002,-364.568],[448.772,-365.756],[445.298,-364.946],[442.778,-362.714],[441.716,-359.42],[441.716,-354.272],[442.76,-350.996],[445.262,-348.746],[448.772,-347.936]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[443.012,-348.296],[443.012,-352.904],[442.4,-357.08],[443.012,-361.22],[443.012,-374],[439.772,-374],[439.772,-348.296]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[445.406,-351.752],[443.498,-353.822],[442.832,-356.828],[443.516,-359.87],[445.424,-361.94],[448.232,-362.696],[451.076,-361.94],[453.002,-359.87],[453.704,-356.864],[453.002,-353.822],[451.076,-351.752],[448.232,-350.996]],"c":true},"ix":2},"nm":"b","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"b","np":6,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[463.964,-348.296],[463.964,-365.396],[460.724,-365.396],[460.724,-348.296]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[465.116,-361.544],[468.068,-362.696],[469.58,-362.444],[470.768,-361.616],[472.892,-363.812],[470.948,-365.306],[468.608,-365.756],[464.252,-363.812],[462.74,-358.592],[463.964,-358.016]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[478.436,-348.296],[478.436,-365.396],[475.16,-365.396],[475.16,-348.296]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[478.292,-369.41],[478.868,-370.904],[478.292,-372.362],[476.816,-372.956],[475.34,-372.362],[474.764,-370.904],[475.34,-369.41],[476.816,-368.816]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[498.56,-348.296],[498.56,-358.916],[497.696,-362.246],[495.338,-364.784],[491.9,-365.756],[488.408,-364.874],[485.996,-362.48],[485.132,-359.024],[486.464,-358.268],[487.04,-360.572],[488.624,-362.156],[490.928,-362.732],[494.078,-361.472],[495.284,-358.268],[495.284,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[486.464,-348.296],[486.464,-365.396],[483.224,-365.396],[483.224,-348.296]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[514.742,-341.798],[517.91,-344.678],[519.044,-348.98],[519.044,-365.396],[515.804,-365.396],[515.804,-360.896],[516.38,-357.08],[515.804,-353.228],[515.804,-348.98],[514.256,-345.254],[510.116,-343.868],[506.696,-344.57],[504.212,-346.604],[502.088,-344.48],[505.364,-341.744],[510.044,-340.772]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[513.572,-349.376],[516.038,-351.59],[517.064,-354.884],[517.064,-359.42],[516.056,-362.75],[513.59,-364.964],[510.008,-365.756],[505.832,-364.622],[502.898,-361.562],[501.836,-357.188],[502.916,-352.778],[505.85,-349.7],[510.044,-348.584]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[507.83,-352.346],[505.886,-354.308],[505.184,-357.188],[505.886,-360.05],[507.812,-361.994],[510.656,-362.696],[513.446,-361.994],[515.318,-360.05],[515.984,-357.152],[515.318,-354.254],[513.464,-352.328],[510.656,-351.644]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[538.772,-348.152],[546.764,-365.396],[543.164,-365.396],[537.368,-351.896],[538.52,-351.896],[533.012,-365.396],[529.412,-365.396],[536.828,-348.152]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[535.532,-341.132],[538.772,-348.152],[536.936,-351.464],[531.932,-341.132]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[561.11,-349.124],[564.332,-352.346],[565.52,-356.9],[564.332,-361.4],[561.11,-364.586],[556.556,-365.756],[552.056,-364.568],[548.852,-361.382],[547.664,-356.9],[548.852,-352.346],[552.056,-349.124],[556.556,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[553.712,-351.824],[551.732,-353.894],[551.012,-356.9],[551.732,-359.852],[553.712,-361.886],[556.556,-362.624],[559.454,-361.886],[561.434,-359.852],[562.172,-356.9],[561.452,-353.894],[559.472,-351.824],[556.556,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[579.812,-348.926],[582.404,-351.536],[583.34,-355.46],[583.34,-365.396],[580.1,-365.396],[580.1,-355.604],[579.02,-352.274],[576.032,-351.068],[573.836,-351.608],[572.414,-353.174],[571.928,-355.604],[571.928,-365.396],[568.688,-365.396],[568.688,-355.46],[569.624,-351.536],[572.234,-348.926],[576.032,-348.008]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[605.174,-349.34],[606.884,-353.156],[606.218,-355.712],[604.508,-357.26],[602.312,-358.178],[600.098,-358.844],[598.388,-359.636],[597.74,-360.968],[598.478,-362.3],[600.62,-362.804],[602.996,-362.3],[604.796,-360.86],[606.884,-362.948],[604.31,-365.054],[600.728,-365.756],[597.452,-365.144],[595.346,-363.398],[594.608,-360.716],[595.274,-358.214],[596.984,-356.72],[599.198,-355.856],[601.412,-355.19],[603.122,-354.326],[603.788,-352.868],[602.96,-351.41],[600.62,-350.888],[597.884,-351.446],[595.724,-353.156],[593.636,-351.068],[595.49,-349.394],[597.848,-348.314],[600.584,-347.936]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[622.85,-349.124],[626.072,-352.346],[627.26,-356.9],[626.072,-361.4],[622.85,-364.586],[618.296,-365.756],[613.796,-364.568],[610.592,-361.382],[609.404,-356.9],[610.592,-352.346],[613.796,-349.124],[618.296,-347.936]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[615.452,-351.824],[613.472,-353.894],[612.752,-356.9],[613.472,-359.852],[615.452,-361.886],[618.296,-362.624],[621.194,-361.886],[623.174,-359.852],[623.912,-356.9],[623.192,-353.894],[621.212,-351.824],[618.296,-351.068]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[634.1,-348.296],[634.1,-365.396],[630.86,-365.396],[630.86,-348.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[645.656,-348.296],[645.656,-359.312],[644.81,-362.732],[642.506,-364.964],[639.248,-365.756],[635.936,-364.946],[633.614,-362.696],[632.768,-359.312],[634.1,-358.628],[634.676,-360.824],[636.188,-362.228],[638.312,-362.732],[641.246,-361.634],[642.416,-358.628],[642.416,-348.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[657.248,-348.296],[657.248,-359.276],[656.366,-362.732],[654.008,-364.964],[650.66,-365.756],[647.348,-364.946],[644.882,-362.714],[643.82,-359.312],[645.656,-358.628],[646.232,-360.824],[647.762,-362.228],[649.904,-362.732],[652.802,-361.634],[653.972,-358.628],[653.972,-348.296]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[673.34,-348.692],[676.364,-350.888],[674.276,-353.012],[672.206,-351.5],[669.56,-350.996],[666.5,-351.734],[664.448,-353.822],[663.728,-356.972],[664.412,-360.032],[666.356,-362.048],[669.272,-362.768],[671.972,-362.102],[673.7,-360.23],[674.312,-357.296],[675.5,-358.34],[662.792,-358.34],[662.792,-355.64],[677.228,-355.64],[677.372,-356.558],[677.408,-357.332],[676.382,-361.688],[673.52,-364.676],[669.344,-365.756],[664.862,-364.586],[661.694,-361.4],[660.524,-356.864],[661.712,-352.292],[664.934,-349.106],[669.56,-347.936]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-826.348,-305.096],[-826.348,-322.196],[-829.624,-322.196],[-829.624,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-826.492,-326.21],[-825.916,-327.704],[-826.492,-329.162],[-827.968,-329.756],[-829.444,-329.162],[-830.02,-327.704],[-829.444,-326.21],[-827.968,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-806.224,-305.096],[-806.224,-315.716],[-807.088,-319.046],[-809.446,-321.584],[-812.884,-322.556],[-816.376,-321.674],[-818.788,-319.28],[-819.652,-315.824],[-818.32,-315.068],[-817.744,-317.372],[-816.16,-318.956],[-813.856,-319.532],[-810.706,-318.272],[-809.5,-315.068],[-809.5,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-818.32,-305.096],[-818.32,-322.196],[-821.56,-322.196],[-821.56,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.564,0.588],[-1.032,0],[-0.384,-0.168],[-0.312,-0.336],[0,0],[0.72,0.336],[0.984,0],[0.984,-0.552],[0.552,-0.96],[0,-1.248],[0,0]],"o":[[0,0],[0,-1.056],[0.564,-0.588],[0.552,0],[0.384,0.168],[0,0],[-0.6,-0.648],[-0.72,-0.336],[-1.296,0],[-0.984,0.552],[-0.552,0.96],[0,0],[0,0]],"v":[[-796.36,-305.096],[-796.36,-324.752],[-795.514,-327.218],[-793.12,-328.1],[-791.716,-327.848],[-790.672,-327.092],[-788.548,-329.18],[-790.528,-330.656],[-793.084,-331.16],[-796.504,-330.332],[-798.808,-328.064],[-799.636,-324.752],[-799.636,-305.096]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-790.924,-319.244],[-790.924,-322.196],[-803.812,-322.196],[-803.812,-319.244]],"c":true},"ix":2},"nm":"f","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"f","np":5,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-776.326,-305.924],[-773.104,-309.146],[-771.916,-313.7],[-773.104,-318.2],[-776.326,-321.386],[-780.88,-322.556],[-785.38,-321.368],[-788.584,-318.182],[-789.772,-313.7],[-788.584,-309.146],[-785.38,-305.924],[-780.88,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-783.724,-308.624],[-785.704,-310.694],[-786.424,-313.7],[-785.704,-316.652],[-783.724,-318.686],[-780.88,-319.424],[-777.982,-318.686],[-776.002,-316.652],[-775.264,-313.7],[-775.984,-310.694],[-777.964,-308.624],[-780.88,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-765.076,-305.096],[-765.076,-322.196],[-768.316,-322.196],[-768.316,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-763.924,-318.344],[-760.972,-319.496],[-759.46,-319.244],[-758.272,-318.416],[-756.148,-320.612],[-758.092,-322.106],[-760.432,-322.556],[-764.788,-320.612],[-766.3,-315.392],[-765.076,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-750.568,-305.096],[-750.568,-322.196],[-753.808,-322.196],[-753.808,-305.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.564,0.96],[0.972,0.528],[1.2,0],[0.984,-0.54],[0.564,-0.96],[0,-1.296],[0,0],[-0.384,0.6],[-0.624,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.32],[-0.564,-0.96],[-0.972,-0.528],[-1.224,0],[-0.984,0.54],[-0.564,0.96],[0,0],[0,-0.864],[0.384,-0.6],[0.624,-0.336],[1.176,0],[0.78,0.732],[0,0],[0,0]],"v":[[-739.012,-305.096],[-739.012,-316.112],[-739.858,-319.532],[-742.162,-321.764],[-745.42,-322.556],[-748.732,-321.746],[-751.054,-319.496],[-751.9,-316.112],[-750.568,-315.428],[-749.992,-317.624],[-748.48,-319.028],[-746.356,-319.532],[-743.422,-318.434],[-742.252,-315.428],[-742.252,-305.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.588,0.96],[0.984,0.528],[1.248,0],[1.008,-0.54],[0.636,-0.948],[0.072,-1.32],[0,0],[-0.384,0.6],[-0.636,0.336],[-0.792,0],[-0.78,-0.732],[0,-1.272],[0,0]],"o":[[0,0],[0,-1.344],[-0.588,-0.96],[-0.984,-0.528],[-1.2,0],[-1.008,0.54],[-0.636,0.948],[0,0],[0,-0.864],[0.384,-0.6],[0.636,-0.336],[1.152,0],[0.78,0.732],[0,0],[0,0]],"v":[[-727.42,-305.096],[-727.42,-316.076],[-728.302,-319.532],[-730.66,-321.764],[-734.008,-322.556],[-737.32,-321.746],[-739.786,-319.514],[-740.848,-316.112],[-739.012,-315.428],[-738.436,-317.624],[-736.906,-319.028],[-734.764,-319.532],[-731.866,-318.434],[-730.696,-315.428],[-730.696,-305.096]],"c":true},"ix":2},"nm":"m","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"m","np":6,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-712.264,-305.546],[-709.798,-307.796],[-708.772,-311.072],[-708.772,-316.22],[-709.816,-319.514],[-712.282,-321.746],[-715.756,-322.556],[-720.022,-321.368],[-723.01,-318.164],[-724.108,-313.628],[-723.01,-309.092],[-720.022,-305.906],[-715.756,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-718.096,-308.552],[-720.058,-310.622],[-720.76,-313.664],[-720.058,-316.67],[-718.114,-318.74],[-715.252,-319.496],[-712.426,-318.758],[-710.536,-316.688],[-709.852,-313.628],[-711.328,-309.434],[-715.216,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-706.792,-305.096],[-706.792,-322.196],[-710.068,-322.196],[-710.068,-318.02],[-709.456,-313.88],[-710.068,-309.704],[-710.068,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-696.28,-305.096],[-696.28,-329.36],[-699.52,-329.36],[-699.52,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-692.068,-319.244],[-692.068,-322.196],[-703.732,-322.196],[-703.732,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-685.624,-305.096],[-685.624,-322.196],[-688.9,-322.196],[-688.9,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-685.768,-326.21],[-685.192,-327.704],[-685.768,-329.162],[-687.244,-329.756],[-688.72,-329.162],[-689.296,-327.704],[-688.72,-326.21],[-687.244,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":91,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[-668.506,-305.924],[-665.284,-309.146],[-664.096,-313.7],[-665.284,-318.2],[-668.506,-321.386],[-673.06,-322.556],[-677.56,-321.368],[-680.764,-318.182],[-681.952,-313.7],[-680.764,-309.146],[-677.56,-305.924],[-673.06,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[-675.904,-308.624],[-677.884,-310.694],[-678.604,-313.7],[-677.884,-316.652],[-675.904,-318.686],[-673.06,-319.424],[-670.162,-318.686],[-668.182,-316.652],[-667.444,-313.7],[-668.164,-310.694],[-670.144,-308.624],[-673.06,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":92,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-645.16,-305.096],[-645.16,-315.716],[-646.024,-319.046],[-648.382,-321.584],[-651.82,-322.556],[-655.312,-321.674],[-657.724,-319.28],[-658.588,-315.824],[-657.256,-315.068],[-656.68,-317.372],[-655.096,-318.956],[-652.792,-319.532],[-649.642,-318.272],[-648.436,-315.068],[-648.436,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-657.256,-305.096],[-657.256,-322.196],[-660.496,-322.196],[-660.496,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":93,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-630.076,-305.096],[-630.076,-322.196],[-633.316,-322.196],[-633.316,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-628.924,-318.344],[-625.972,-319.496],[-624.46,-319.244],[-623.272,-318.416],[-621.148,-320.612],[-623.092,-322.106],[-625.432,-322.556],[-629.788,-320.612],[-631.3,-315.392],[-630.076,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":94,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-607.72,-305.492],[-604.696,-307.688],[-606.784,-309.812],[-608.854,-308.3],[-611.5,-307.796],[-614.56,-308.534],[-616.612,-310.622],[-617.332,-313.772],[-616.648,-316.832],[-614.704,-318.848],[-611.788,-319.568],[-609.088,-318.902],[-607.36,-317.03],[-606.748,-314.096],[-605.56,-315.14],[-618.268,-315.14],[-618.268,-312.44],[-603.832,-312.44],[-603.688,-313.358],[-603.652,-314.132],[-604.678,-318.488],[-607.54,-321.476],[-611.716,-322.556],[-616.198,-321.386],[-619.366,-318.2],[-620.536,-313.664],[-619.348,-309.092],[-616.126,-305.906],[-611.5,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":95,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-588.334,-298.598],[-585.166,-301.478],[-584.032,-305.78],[-584.032,-322.196],[-587.272,-322.196],[-587.272,-317.696],[-586.696,-313.88],[-587.272,-310.028],[-587.272,-305.78],[-588.82,-302.054],[-592.96,-300.668],[-596.38,-301.37],[-598.864,-303.404],[-600.988,-301.28],[-597.712,-298.544],[-593.032,-297.572]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-589.504,-306.176],[-587.038,-308.39],[-586.012,-311.684],[-586.012,-316.22],[-587.02,-319.55],[-589.486,-321.764],[-593.068,-322.556],[-597.244,-321.422],[-600.178,-318.362],[-601.24,-313.988],[-600.16,-309.578],[-597.226,-306.5],[-593.032,-305.384]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-595.246,-309.146],[-597.19,-311.108],[-597.892,-313.988],[-597.19,-316.85],[-595.264,-318.794],[-592.42,-319.496],[-589.63,-318.794],[-587.758,-316.85],[-587.092,-313.952],[-587.758,-311.054],[-589.612,-309.128],[-592.42,-308.444]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":96,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-568.552,-305.546],[-566.086,-307.796],[-565.06,-311.072],[-565.06,-316.22],[-566.104,-319.514],[-568.57,-321.746],[-572.044,-322.556],[-576.31,-321.368],[-579.298,-318.164],[-580.396,-313.628],[-579.298,-309.092],[-576.31,-305.906],[-572.044,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-574.384,-308.552],[-576.346,-310.622],[-577.048,-313.664],[-576.346,-316.67],[-574.402,-318.74],[-571.54,-319.496],[-568.714,-318.758],[-566.824,-316.688],[-566.14,-313.628],[-567.616,-309.434],[-571.504,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-563.08,-305.096],[-563.08,-322.196],[-566.356,-322.196],[-566.356,-318.02],[-565.744,-313.88],[-566.356,-309.704],[-566.356,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":97,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-555.124,-305.096],[-555.124,-322.196],[-558.364,-322.196],[-558.364,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-553.972,-318.344],[-551.02,-319.496],[-549.508,-319.244],[-548.32,-318.416],[-546.196,-320.612],[-548.14,-322.106],[-550.48,-322.556],[-554.836,-320.612],[-556.348,-315.392],[-555.124,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":98,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[-533.74,-305.546],[-531.256,-307.796],[-530.212,-311.072],[-530.212,-316.22],[-531.274,-319.514],[-533.776,-321.746],[-537.268,-322.556],[-541.48,-321.368],[-544.45,-318.164],[-545.548,-313.628],[-544.45,-309.092],[-541.48,-305.906],[-537.268,-304.736]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-539.554,-308.534],[-541.498,-310.604],[-542.2,-313.664],[-541.498,-316.706],[-539.572,-318.758],[-536.728,-319.496],[-533.884,-318.74],[-531.976,-316.67],[-531.292,-313.628],[-531.976,-310.622],[-533.884,-308.552],[-536.728,-307.796]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-528.232,-330.8],[-531.508,-330.8],[-531.508,-318.02],[-530.896,-313.88],[-531.508,-309.704],[-531.508,-305.096],[-528.232,-305.096]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":99,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-520.24,-305.096],[-520.24,-322.196],[-523.516,-322.196],[-523.516,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-520.384,-326.21],[-519.808,-327.704],[-520.384,-329.162],[-521.86,-329.756],[-523.336,-329.162],[-523.912,-327.704],[-523.336,-326.21],[-521.86,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":100,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-500.116,-305.096],[-500.116,-315.716],[-500.98,-319.046],[-503.338,-321.584],[-506.776,-322.556],[-510.268,-321.674],[-512.68,-319.28],[-513.544,-315.824],[-512.212,-315.068],[-511.636,-317.372],[-510.052,-318.956],[-507.748,-319.532],[-504.598,-318.272],[-503.392,-315.068],[-503.392,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-512.212,-305.096],[-512.212,-322.196],[-515.452,-322.196],[-515.452,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":101,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-483.934,-298.598],[-480.766,-301.478],[-479.632,-305.78],[-479.632,-322.196],[-482.872,-322.196],[-482.872,-317.696],[-482.296,-313.88],[-482.872,-310.028],[-482.872,-305.78],[-484.42,-302.054],[-488.56,-300.668],[-491.98,-301.37],[-494.464,-303.404],[-496.588,-301.28],[-493.312,-298.544],[-488.632,-297.572]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-485.104,-306.176],[-482.638,-308.39],[-481.612,-311.684],[-481.612,-316.22],[-482.62,-319.55],[-485.086,-321.764],[-488.668,-322.556],[-492.844,-321.422],[-495.778,-318.362],[-496.84,-313.988],[-495.76,-309.578],[-492.826,-306.5],[-488.632,-305.384]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-490.846,-309.146],[-492.79,-311.108],[-493.492,-313.988],[-492.79,-316.85],[-490.864,-318.794],[-488.02,-319.496],[-485.23,-318.794],[-483.358,-316.85],[-482.692,-313.952],[-483.358,-311.054],[-485.212,-309.128],[-488.02,-308.444]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":102,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-460.696,-305.096],[-455.728,-317.984],[-456.916,-317.984],[-451.984,-305.096],[-450.076,-305.096],[-443.344,-322.196],[-446.728,-322.196],[-451.624,-308.876],[-450.544,-308.876],[-455.404,-322.196],[-457.276,-322.196],[-462.136,-308.876],[-461.056,-308.876],[-465.952,-322.196],[-469.336,-322.196],[-462.604,-305.096]],"c":true},"ix":2},"nm":"w","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"w","np":3,"cix":2,"bm":0,"ix":103,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-425.128,-305.096],[-425.128,-315.716],[-425.992,-319.28],[-428.35,-321.692],[-431.788,-322.556],[-435.28,-321.674],[-437.692,-319.28],[-438.556,-315.824],[-437.224,-315.068],[-436.648,-317.372],[-435.064,-318.956],[-432.76,-319.532],[-429.61,-318.272],[-428.404,-315.068],[-428.404,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-437.224,-305.096],[-437.224,-330.8],[-440.464,-330.8],[-440.464,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":104,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-409.972,-305.546],[-407.506,-307.796],[-406.48,-311.072],[-406.48,-316.22],[-407.524,-319.514],[-409.99,-321.746],[-413.464,-322.556],[-417.73,-321.368],[-420.718,-318.164],[-421.816,-313.628],[-420.718,-309.092],[-417.73,-305.906],[-413.464,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-415.804,-308.552],[-417.766,-310.622],[-418.468,-313.664],[-417.766,-316.67],[-415.822,-318.74],[-412.96,-319.496],[-410.134,-318.758],[-408.244,-316.688],[-407.56,-313.628],[-409.036,-309.434],[-412.924,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-404.5,-305.096],[-404.5,-322.196],[-407.776,-322.196],[-407.776,-318.02],[-407.164,-313.88],[-407.776,-309.704],[-407.776,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":105,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-393.988,-305.096],[-393.988,-329.36],[-397.228,-329.36],[-397.228,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-389.776,-319.244],[-389.776,-322.196],[-401.44,-322.196],[-401.44,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":106,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-375.88,-305.096],[-375.88,-322.196],[-379.156,-322.196],[-379.156,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-376.024,-326.21],[-375.448,-327.704],[-376.024,-329.162],[-377.5,-329.756],[-378.976,-329.162],[-379.552,-327.704],[-378.976,-326.21],[-377.5,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":107,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[-361.066,-306.14],[-359.356,-309.956],[-360.022,-312.512],[-361.732,-314.06],[-363.928,-314.978],[-366.142,-315.644],[-367.852,-316.436],[-368.5,-317.768],[-367.762,-319.1],[-365.62,-319.604],[-363.244,-319.1],[-361.444,-317.66],[-359.356,-319.748],[-361.93,-321.854],[-365.512,-322.556],[-368.788,-321.944],[-370.894,-320.198],[-371.632,-317.516],[-370.966,-315.014],[-369.256,-313.52],[-367.042,-312.656],[-364.828,-311.99],[-363.118,-311.126],[-362.452,-309.668],[-363.28,-308.21],[-365.62,-307.688],[-368.356,-308.246],[-370.516,-309.956],[-372.604,-307.868],[-370.75,-306.194],[-368.392,-305.114],[-365.656,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":108,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.504],[-0.792,0.912],[0,0],[0.756,-0.324],[0.912,0],[0.84,0.504],[0.48,0.864],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.08,0],[-0.768,-0.324],[-0.528,-0.624],[0,0],[1.128,0.492],[1.32,0],[1.356,-0.78],[0.78,-1.344],[0,-1.68],[-0.78,-1.356],[-1.356,-0.792],[-1.68,0]],"o":[[1.14,-0.504],[0,0],[-0.552,0.624],[-0.756,0.324],[-1.08,0],[-0.84,-0.504],[-0.48,-0.864],[0,-1.128],[0.48,-0.864],[0.84,-0.492],[0.888,0],[0.768,0.324],[0,0],[-0.816,-0.936],[-1.128,-0.492],[-1.68,0],[-1.356,0.78],[-0.78,1.344],[0,1.656],[0.78,1.356],[1.356,0.792],[1.32,0]],"v":[[-336.766,-305.492],[-333.868,-307.616],[-335.992,-309.776],[-337.954,-308.354],[-340.456,-307.868],[-343.336,-308.624],[-345.316,-310.676],[-346.036,-313.664],[-345.316,-316.652],[-343.336,-318.686],[-340.456,-319.424],[-337.972,-318.938],[-336.028,-317.516],[-333.868,-319.676],[-336.784,-321.818],[-340.456,-322.556],[-345.01,-321.386],[-348.214,-318.2],[-349.384,-313.664],[-348.214,-309.146],[-345.01,-305.924],[-340.456,-304.736]],"c":true},"ix":2},"nm":"c","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c","np":3,"cix":2,"bm":0,"ix":109,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.104,0.612],[-0.624,1.128],[0,1.488],[0,0],[0,0],[0,0],[0.72,-0.804],[1.272,0],[0.624,0.36],[0.324,0.684],[0,0.936],[0,0],[0,0],[0,0],[-0.624,-1.128],[-1.116,-0.612],[-1.416,0]],"o":[[1.104,-0.612],[0.624,-1.128],[0,0],[0,0],[0,0],[0,1.416],[-0.72,0.804],[-0.84,0],[-0.624,-0.36],[-0.324,-0.684],[0,0],[0,0],[0,0],[0,1.488],[0.624,1.128],[1.116,0.612],[1.416,0]],"v":[[-319.972,-305.726],[-317.38,-308.336],[-316.444,-312.26],[-316.444,-322.196],[-319.684,-322.196],[-319.684,-312.404],[-320.764,-309.074],[-323.752,-307.868],[-325.948,-308.408],[-327.37,-309.974],[-327.856,-312.404],[-327.856,-322.196],[-331.096,-322.196],[-331.096,-312.26],[-330.16,-308.336],[-327.55,-305.726],[-323.752,-304.808]],"c":true},"ix":2},"nm":"u","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"u","np":3,"cix":2,"bm":0,"ix":110,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-308.848,-305.096],[-308.848,-322.196],[-312.088,-322.196],[-312.088,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-307.696,-318.344],[-304.744,-319.496],[-303.232,-319.244],[-302.044,-318.416],[-299.92,-320.612],[-301.864,-322.106],[-304.204,-322.556],[-308.56,-320.612],[-310.072,-315.392],[-308.848,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":111,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-294.34,-305.096],[-294.34,-322.196],[-297.58,-322.196],[-297.58,-305.096]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.768,0.768],[-1.2,0],[-0.432,-0.168],[-0.36,-0.384],[0,0],[0.696,0.3],[0.864,0],[1.008,-1.296],[0,-2.184],[0,0]],"o":[[0.768,-0.768],[0.576,0],[0.432,0.168],[0,0],[-0.6,-0.696],[-0.696,-0.3],[-1.896,0],[-1.008,1.296],[0,0],[0,-1.584]],"v":[[-293.188,-318.344],[-290.236,-319.496],[-288.724,-319.244],[-287.536,-318.416],[-285.412,-320.612],[-287.356,-322.106],[-289.696,-322.556],[-294.052,-320.612],[-295.564,-315.392],[-294.34,-314.816]],"c":true},"ix":2},"nm":"r","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r","np":5,"cix":2,"bm":0,"ix":112,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-271.984,-305.492],[-268.96,-307.688],[-271.048,-309.812],[-273.118,-308.3],[-275.764,-307.796],[-278.824,-308.534],[-280.876,-310.622],[-281.596,-313.772],[-280.912,-316.832],[-278.968,-318.848],[-276.052,-319.568],[-273.352,-318.902],[-271.624,-317.03],[-271.012,-314.096],[-269.824,-315.14],[-282.532,-315.14],[-282.532,-312.44],[-268.096,-312.44],[-267.952,-313.358],[-267.916,-314.132],[-268.942,-318.488],[-271.804,-321.476],[-275.98,-322.556],[-280.462,-321.386],[-283.63,-318.2],[-284.8,-313.664],[-283.612,-309.092],[-280.39,-305.906],[-275.764,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":113,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-249.052,-305.096],[-249.052,-315.716],[-249.916,-319.046],[-252.274,-321.584],[-255.712,-322.556],[-259.204,-321.674],[-261.616,-319.28],[-262.48,-315.824],[-261.148,-315.068],[-260.572,-317.372],[-258.988,-318.956],[-256.684,-319.532],[-253.534,-318.272],[-252.328,-315.068],[-252.328,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-261.148,-305.096],[-261.148,-322.196],[-264.388,-322.196],[-264.388,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":114,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-239.008,-305.096],[-239.008,-329.36],[-242.248,-329.36],[-242.248,-305.096]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-234.796,-319.244],[-234.796,-322.196],[-246.46,-322.196],[-246.46,-319.244]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":115,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-228.388,-305.096],[-228.388,-330.8],[-231.628,-330.8],[-231.628,-305.096]],"c":true},"ix":2},"nm":"l","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l","np":3,"cix":2,"bm":0,"ix":116,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-216.076,-304.952],[-208.084,-322.196],[-211.684,-322.196],[-217.48,-308.696],[-216.328,-308.696],[-221.836,-322.196],[-225.436,-322.196],[-218.02,-304.952]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-219.316,-297.932],[-216.076,-304.952],[-217.912,-308.264],[-222.916,-297.932]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":117,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.032],[0.996,0.576],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.344],[-0.576,-1.032],[-0.996,-0.576],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-182.344,-305.096],[-182.344,-315.716],[-183.208,-319.28],[-185.566,-321.692],[-189.004,-322.556],[-192.496,-321.674],[-194.908,-319.28],[-195.772,-315.824],[-194.44,-315.068],[-193.864,-317.372],[-192.28,-318.956],[-189.976,-319.532],[-186.826,-318.272],[-185.62,-315.068],[-185.62,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-194.44,-305.096],[-194.44,-330.8],[-197.68,-330.8],[-197.68,-305.096]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":118,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[-167.188,-305.546],[-164.722,-307.796],[-163.696,-311.072],[-163.696,-316.22],[-164.74,-319.514],[-167.206,-321.746],[-170.68,-322.556],[-174.946,-321.368],[-177.934,-318.164],[-179.032,-313.628],[-177.934,-309.092],[-174.946,-305.906],[-170.68,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[-173.02,-308.552],[-174.982,-310.622],[-175.684,-313.664],[-174.982,-316.67],[-173.038,-318.74],[-170.176,-319.496],[-167.35,-318.758],[-165.46,-316.688],[-164.776,-313.628],[-166.252,-309.434],[-170.14,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-161.716,-305.096],[-161.716,-322.196],[-164.992,-322.196],[-164.992,-318.02],[-164.38,-313.88],[-164.992,-309.704],[-164.992,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":119,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-143.77,-305.906],[-140.8,-309.092],[-139.72,-313.628],[-140.8,-318.164],[-143.77,-321.368],[-148,-322.556],[-151.474,-321.746],[-153.994,-319.514],[-155.056,-316.22],[-155.056,-311.072],[-154.012,-307.796],[-151.51,-305.546],[-148,-304.736]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-153.76,-297.932],[-153.76,-309.38],[-154.372,-313.556],[-153.76,-317.696],[-153.76,-322.196],[-157,-322.196],[-157,-297.932]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-151.366,-308.552],[-153.274,-310.622],[-153.94,-313.628],[-153.256,-316.67],[-151.348,-318.74],[-148.54,-319.496],[-145.696,-318.74],[-143.77,-316.67],[-143.068,-313.664],[-143.77,-310.622],[-145.696,-308.552],[-148.54,-307.796]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":120,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.26,0.78],[-0.72,1.344],[0,1.68],[0.72,1.344],[1.26,0.792],[1.56,0],[1.044,-0.54],[0.636,-0.948],[0.072,-1.248],[0,0],[-0.624,-0.96],[-1.044,-0.54],[-1.296,0]],"o":[[1.26,-0.78],[0.72,-1.344],[0,-1.68],[-0.72,-1.344],[-1.26,-0.792],[-1.272,0],[-1.044,0.54],[-0.636,0.948],[0,0],[0.072,1.224],[0.624,0.96],[1.044,0.54],[1.56,0]],"v":[[-122.818,-305.906],[-119.848,-309.092],[-118.768,-313.628],[-119.848,-318.164],[-122.818,-321.368],[-127.048,-322.556],[-130.522,-321.746],[-133.042,-319.514],[-134.104,-316.22],[-134.104,-311.072],[-133.06,-307.796],[-130.558,-305.546],[-127.048,-304.736]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-132.808,-297.932],[-132.808,-309.38],[-133.42,-313.556],[-132.808,-317.696],[-132.808,-322.196],[-136.048,-322.196],[-136.048,-297.932]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.504],[0.444,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0],[-0.816,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.504],[-0.444,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0],[0.816,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.816,0.504],[-1.056,0]],"v":[[-130.414,-308.552],[-132.322,-310.622],[-132.988,-313.628],[-132.304,-316.67],[-130.396,-318.74],[-127.588,-319.496],[-124.744,-318.74],[-122.818,-316.67],[-122.116,-313.664],[-122.818,-310.622],[-124.744,-308.552],[-127.588,-307.796]],"c":true},"ix":2},"nm":"p","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"p","np":6,"cix":2,"bm":0,"ix":121,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[-103.396,-305.492],[-100.372,-307.688],[-102.46,-309.812],[-104.53,-308.3],[-107.176,-307.796],[-110.236,-308.534],[-112.288,-310.622],[-113.008,-313.772],[-112.324,-316.832],[-110.38,-318.848],[-107.464,-319.568],[-104.764,-318.902],[-103.036,-317.03],[-102.424,-314.096],[-101.236,-315.14],[-113.944,-315.14],[-113.944,-312.44],[-99.508,-312.44],[-99.364,-313.358],[-99.328,-314.132],[-100.354,-318.488],[-103.216,-321.476],[-107.392,-322.556],[-111.874,-321.386],[-115.042,-318.2],[-116.212,-313.664],[-115.024,-309.092],[-111.802,-305.906],[-107.176,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":122,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-80.464,-305.096],[-80.464,-315.716],[-81.328,-319.046],[-83.686,-321.584],[-87.124,-322.556],[-90.616,-321.674],[-93.028,-319.28],[-93.892,-315.824],[-92.56,-315.068],[-91.984,-317.372],[-90.4,-318.956],[-88.096,-319.532],[-84.946,-318.272],[-83.74,-315.068],[-83.74,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-92.56,-305.096],[-92.56,-322.196],[-95.8,-322.196],[-95.8,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":123,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-72.796,-305.096],[-72.796,-322.196],[-76.072,-322.196],[-76.072,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-72.94,-326.21],[-72.364,-327.704],[-72.94,-329.162],[-74.416,-329.756],[-75.892,-329.162],[-76.468,-327.704],[-75.892,-326.21],[-74.416,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":124,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[-52.672,-305.096],[-52.672,-315.716],[-53.536,-319.046],[-55.894,-321.584],[-59.332,-322.556],[-62.824,-321.674],[-65.236,-319.28],[-66.1,-315.824],[-64.768,-315.068],[-64.192,-317.372],[-62.608,-318.956],[-60.304,-319.532],[-57.154,-318.272],[-55.948,-315.068],[-55.948,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-64.768,-305.096],[-64.768,-322.196],[-68.008,-322.196],[-68.008,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":125,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.684],[-0.756,1.236],[0,1.632],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.032,-0.924],[1.728,0],[0.96,0.468],[0.696,0.888],[0,0],[-1.344,-0.648],[-1.776,0]],"o":[[1.356,-0.684],[0.756,-1.236],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.56],[-1.032,0.924],[-1.32,0],[-0.96,-0.468],[0,0],[0.84,1.176],[1.344,0.648],[1.776,0]],"v":[[-36.49,-298.598],[-33.322,-301.478],[-32.188,-305.78],[-32.188,-322.196],[-35.428,-322.196],[-35.428,-317.696],[-34.852,-313.88],[-35.428,-310.028],[-35.428,-305.78],[-36.976,-302.054],[-41.116,-300.668],[-44.536,-301.37],[-47.02,-303.404],[-49.144,-301.28],[-45.868,-298.544],[-41.188,-297.572]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-1.032,0.528],[-0.612,0.948],[-0.072,1.248],[0,0],[0.6,0.948],[1.044,0.528],[1.344,0],[1.248,-0.756],[0.708,-1.284],[0,-1.632],[-0.72,-1.308],[-1.236,-0.744],[-1.56,0]],"o":[[1.032,-0.528],[0.612,-0.948],[0,0],[-0.072,-1.272],[-0.6,-0.948],[-1.044,-0.528],[-1.536,0],[-1.248,0.756],[-0.708,1.284],[0,1.632],[0.72,1.308],[1.236,0.744],[1.32,0]],"v":[[-37.66,-306.176],[-35.194,-308.39],[-34.168,-311.684],[-34.168,-316.22],[-35.176,-319.55],[-37.642,-321.764],[-41.224,-322.556],[-45.4,-321.422],[-48.334,-318.362],[-49.396,-313.988],[-48.316,-309.578],[-45.382,-306.5],[-41.188,-305.384]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0.828,0.468],[0.468,0.84],[0,1.08],[-0.468,0.828],[-0.816,0.468],[-1.08,0],[-0.804,-0.468],[-0.444,-0.828],[0,-1.104],[0.444,-0.828],[0.792,-0.456],[1.08,0]],"o":[[-0.828,-0.468],[-0.468,-0.84],[0,-1.08],[0.468,-0.828],[0.816,-0.468],[1.056,0],[0.804,0.468],[0.444,0.828],[0,1.104],[-0.444,0.828],[-0.792,0.456],[-1.056,0]],"v":[[-43.402,-309.146],[-45.346,-311.108],[-46.048,-313.988],[-45.346,-316.85],[-43.42,-318.794],[-40.576,-319.496],[-37.786,-318.794],[-35.914,-316.85],[-35.248,-313.952],[-35.914,-311.054],[-37.768,-309.128],[-40.576,-308.444]],"c":true},"ix":2},"nm":"g","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"g","np":6,"cix":2,"bm":0,"ix":126,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-16.744,-305.096],[-16.744,-322.196],[-20.02,-322.196],[-20.02,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[-16.888,-326.21],[-16.312,-327.704],[-16.888,-329.162],[-18.364,-329.756],[-19.84,-329.162],[-20.416,-327.704],[-19.84,-326.21],[-18.364,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":127,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[3.38,-305.096],[3.38,-315.716],[2.516,-319.046],[0.158,-321.584],[-3.28,-322.556],[-6.772,-321.674],[-9.184,-319.28],[-10.048,-315.824],[-8.716,-315.068],[-8.14,-317.372],[-6.556,-318.956],[-4.252,-319.532],[-1.102,-318.272],[0.104,-315.068],[0.104,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-8.716,-305.096],[-8.716,-322.196],[-11.956,-322.196],[-11.956,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":128,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[19.184,-305.096],[19.184,-330.08],[15.8,-330.08],[15.8,-305.096]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"I","np":3,"cix":2,"bm":0,"ix":129,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[39.848,-305.096],[39.848,-315.716],[38.984,-319.046],[36.626,-321.584],[33.188,-322.556],[29.696,-321.674],[27.284,-319.28],[26.42,-315.824],[27.752,-315.068],[28.328,-317.372],[29.912,-318.956],[32.216,-319.532],[35.366,-318.272],[36.572,-315.068],[36.572,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[27.752,-305.096],[27.752,-322.196],[24.512,-322.196],[24.512,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":130,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.624,0.96],[-0.072,1.224],[0,0],[0.636,0.948],[1.032,0.54],[1.296,0],[1.248,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.248,-0.78],[-1.56,0]],"o":[[1.032,-0.54],[0.624,-0.96],[0,0],[-0.072,-1.248],[-0.636,-0.948],[-1.032,-0.54],[-1.56,0],[-1.248,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.248,0.78],[1.32,0]],"v":[[54.968,-305.546],[57.452,-307.796],[58.496,-311.072],[58.496,-316.22],[57.434,-319.514],[54.932,-321.746],[51.44,-322.556],[47.228,-321.368],[44.258,-318.164],[43.16,-313.628],[44.258,-309.092],[47.228,-305.906],[51.44,-304.736]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.828,0.492],[0.468,0.888],[0,1.152],[-0.468,0.876],[-0.816,0.492],[-1.08,0],[-0.816,-0.504],[-0.456,-0.876],[0,-1.152],[0.456,-0.876],[0.816,-0.504],[1.08,0]],"o":[[-0.828,-0.492],[-0.468,-0.888],[0,-1.152],[0.468,-0.876],[0.816,-0.492],[1.08,0],[0.816,0.504],[0.456,0.876],[0,1.128],[-0.456,0.876],[-0.816,0.504],[-1.056,0]],"v":[[49.154,-308.534],[47.21,-310.604],[46.508,-313.664],[47.21,-316.706],[49.136,-318.758],[51.98,-319.496],[54.824,-318.74],[56.732,-316.67],[57.416,-313.628],[56.732,-310.622],[54.824,-308.552],[51.98,-307.796]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[60.476,-330.8],[57.2,-330.8],[57.2,-318.02],[57.812,-313.88],[57.2,-309.704],[57.2,-305.096],[60.476,-305.096]],"c":true},"ix":2},"nm":"d","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"d","np":6,"cix":2,"bm":0,"ix":131,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.356,0.792],[-0.792,1.356],[0,1.68],[0.792,1.344],[1.356,0.78],[1.68,0],[1.344,-0.792],[0.792,-1.332],[0,-1.656],[-0.792,-1.356],[-1.344,-0.792],[-1.656,0]],"o":[[1.356,-0.792],[0.792,-1.356],[0,-1.656],[-0.792,-1.344],[-1.356,-0.78],[-1.656,0],[-1.344,0.792],[-0.792,1.332],[0,1.68],[0.792,1.356],[1.344,0.792],[1.68,0]],"v":[[77.522,-305.924],[80.744,-309.146],[81.932,-313.7],[80.744,-318.2],[77.522,-321.386],[72.968,-322.556],[68.468,-321.368],[65.264,-318.182],[64.076,-313.7],[65.264,-309.146],[68.468,-305.924],[72.968,-304.736]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.48,0.876],[0,1.128],[-0.48,0.864],[-0.84,0.492],[-1.056,0],[-0.828,-0.492],[-0.492,-0.864],[0,-1.104],[0.48,-0.876],[0.84,-0.504],[1.104,0]],"o":[[-0.84,-0.504],[-0.48,-0.876],[0,-1.104],[0.48,-0.864],[0.84,-0.492],[1.104,0],[0.828,0.492],[0.492,0.864],[0,1.128],[-0.48,0.876],[-0.84,0.504],[-1.056,0]],"v":[[70.124,-308.624],[68.144,-310.694],[67.424,-313.7],[68.144,-316.652],[70.124,-318.686],[72.968,-319.424],[75.866,-318.686],[77.846,-316.652],[78.584,-313.7],[77.864,-310.694],[75.884,-308.624],[72.968,-307.868]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":132,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.576,1.044],[0.996,0.648],[1.296,0],[1.032,-0.588],[0.576,-1.008],[0,-1.296],[0,0],[-0.384,0.672],[-0.672,0.384],[-0.864,0],[-0.804,-0.84],[0,-1.296],[0,0]],"o":[[0,0],[0,-1.176],[-0.576,-1.044],[-0.996,-0.648],[-1.296,0],[-1.032,0.588],[-0.576,1.008],[0,0],[0,-0.864],[0.384,-0.672],[0.672,-0.384],[1.296,0],[0.804,0.84],[0,0],[0,0]],"v":[[100.868,-305.096],[100.868,-315.716],[100.004,-319.046],[97.646,-321.584],[94.208,-322.556],[90.716,-321.674],[88.304,-319.28],[87.44,-315.824],[88.772,-315.068],[89.348,-317.372],[90.932,-318.956],[93.236,-319.532],[96.386,-318.272],[97.592,-315.068],[97.592,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[88.772,-305.096],[88.772,-322.196],[85.532,-322.196],[85.532,-305.096]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":133,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.176,0.504],[-0.84,0.96],[0,0],[0.804,-0.336],[0.96,0],[0.888,0.492],[0.48,0.9],[0,1.2],[-0.456,0.864],[-0.84,0.48],[-1.104,0],[-0.744,-0.444],[-0.408,-0.804],[0,-1.152],[0,0],[0,0],[0,0],[0,0],[-0.024,0.276],[0,0.24],[0.684,1.272],[1.224,0.72],[1.56,0],[1.332,-0.78],[0.78,-1.344],[0,-1.68],[-0.792,-1.344],[-1.356,-0.78],[-1.728,0]],"o":[[1.176,-0.504],[0,0],[-0.576,0.672],[-0.804,0.336],[-1.152,0],[-0.888,-0.492],[-0.48,-0.9],[0,-1.176],[0.456,-0.864],[0.84,-0.48],[1.056,0],[0.744,0.444],[0.408,0.804],[0,0],[0,0],[0,0],[0,0],[0.072,-0.336],[0.024,-0.276],[0,-1.632],[-0.684,-1.272],[-1.224,-0.72],[-1.656,0],[-1.332,0.78],[-0.78,1.344],[0,1.704],[0.792,1.344],[1.356,0.78],[1.344,0]],"v":[[116.96,-305.492],[119.984,-307.688],[117.896,-309.812],[115.826,-308.3],[113.18,-307.796],[110.12,-308.534],[108.068,-310.622],[107.348,-313.772],[108.032,-316.832],[109.976,-318.848],[112.892,-319.568],[115.592,-318.902],[117.32,-317.03],[117.932,-314.096],[119.12,-315.14],[106.412,-315.14],[106.412,-312.44],[120.848,-312.44],[120.992,-313.358],[121.028,-314.132],[120.002,-318.488],[117.14,-321.476],[112.964,-322.556],[108.482,-321.386],[105.314,-318.2],[104.144,-313.664],[105.332,-309.092],[108.554,-305.906],[113.18,-304.736]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":134,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.14,0.936],[0,1.608],[0.444,0.648],[0.696,0.384],[0.768,0.228],[0.708,0.216],[0.432,0.312],[0,0.576],[-0.492,0.336],[-0.936,0],[-0.696,-0.336],[-0.504,-0.624],[0,0],[1.044,0.468],[1.344,0],[0.912,-0.408],[0.492,-0.756],[0,-1.032],[-0.444,-0.636],[-0.696,-0.36],[-0.78,-0.216],[-0.696,-0.228],[-0.444,-0.348],[0,-0.624],[0.552,-0.348],[1.008,0],[0.816,0.372],[0.624,0.768],[0,0],[-0.708,-0.468],[-0.864,-0.252],[-0.96,0]],"o":[[1.14,-0.936],[0,-1.056],[-0.444,-0.648],[-0.696,-0.384],[-0.768,-0.228],[-0.708,-0.216],[-0.432,-0.312],[0,-0.552],[0.492,-0.336],[0.888,0],[0.696,0.336],[0,0],[-0.672,-0.936],[-1.044,-0.468],[-1.272,0],[-0.912,0.408],[-0.492,0.756],[0,1.032],[0.444,0.636],[0.696,0.36],[0.78,0.216],[0.696,0.228],[0.444,0.348],[0,0.624],[-0.552,0.348],[-1.008,0],[-0.816,-0.372],[0,0],[0.528,0.648],[0.708,0.468],[0.864,0.252],[1.92,0]],"v":[[134.582,-306.14],[136.292,-309.956],[135.626,-312.512],[133.916,-314.06],[131.72,-314.978],[129.506,-315.644],[127.796,-316.436],[127.148,-317.768],[127.886,-319.1],[130.028,-319.604],[132.404,-319.1],[134.204,-317.66],[136.292,-319.748],[133.718,-321.854],[130.136,-322.556],[126.86,-321.944],[124.754,-320.198],[124.016,-317.516],[124.682,-315.014],[126.392,-313.52],[128.606,-312.656],[130.82,-311.99],[132.53,-311.126],[133.196,-309.668],[132.368,-308.21],[130.028,-307.688],[127.292,-308.246],[125.132,-309.956],[123.044,-307.868],[124.898,-306.194],[127.256,-305.114],[129.992,-304.736]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":135,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[143.204,-305.096],[143.204,-322.196],[139.928,-322.196],[139.928,-305.096]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0],[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0]],"o":[[0.384,-0.396],[0,-0.576],[-0.384,-0.396],[-0.6,0],[-0.384,0.396],[0,0.6],[0.384,0.396],[0.6,0]],"v":[[143.06,-326.21],[143.636,-327.704],[143.06,-329.162],[141.584,-329.756],[140.108,-329.162],[139.532,-327.704],[140.108,-326.21],[141.584,-325.616]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":136,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.032,0.54],[-0.612,0.96],[-0.072,1.224],[0,0],[0.624,0.948],[1.02,0.54],[1.296,0],[1.26,-0.792],[0.732,-1.344],[0,-1.68],[-0.732,-1.344],[-1.26,-0.78],[-1.584,0]],"o":[[1.032,-0.54],[0.612,-0.96],[0,0],[-0.072,-1.248],[-0.624,-0.948],[-1.02,-0.54],[-1.584,0],[-1.26,0.792],[-0.732,1.344],[0,1.68],[0.732,1.344],[1.26,0.78],[1.296,0]],"v":[[158.756,-305.546],[161.222,-307.796],[162.248,-311.072],[162.248,-316.22],[161.204,-319.514],[158.738,-321.746],[155.264,-322.556],[150.998,-321.368],[148.01,-318.164],[146.912,-313.628],[148.01,-309.092],[150.998,-305.906],[155.264,-304.736]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.84,0.504],[0.468,0.876],[0,1.152],[-0.468,0.876],[-0.828,0.504],[-1.08,0],[-0.804,-0.492],[-0.456,-0.888],[0,-1.152],[0.984,-1.092],[1.608,0]],"o":[[-0.84,-0.504],[-0.468,-0.876],[0,-1.128],[0.468,-0.876],[0.828,-0.504],[1.08,0],[0.804,0.492],[0.456,0.888],[0,1.704],[-0.984,1.092],[-1.08,0]],"v":[[152.924,-308.552],[150.962,-310.622],[150.26,-313.664],[150.962,-316.67],[152.906,-318.74],[155.768,-319.496],[158.594,-318.758],[160.484,-316.688],[161.168,-313.628],[159.692,-309.434],[155.804,-307.796]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[164.228,-305.096],[164.228,-322.196],[160.952,-322.196],[160.952,-318.02],[161.564,-313.88],[160.952,-309.704],[160.952,-305.096]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":137,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.444,0.468],[0,0.648],[0.444,0.444],[0.672,0],[0.432,-0.444],[0,-0.672],[-0.432,-0.468],[-0.696,0]],"o":[[0.444,-0.468],[0,-0.672],[-0.444,-0.444],[-0.696,0],[-0.432,0.444],[0,0.648],[0.432,0.468],[0.672,0]],"v":[[173.462,-305.438],[174.128,-307.112],[173.462,-308.786],[171.788,-309.452],[170.096,-308.786],[169.448,-307.112],[170.096,-305.438],[171.788,-304.736]],"c":true},"ix":2},"nm":".","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":".","np":3,"cix":2,"bm":0,"ix":138,"mn":"ADBE Vector Group","hd":false}],"ip":60,"op":4846,"st":60,"ct":1,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Hi, this is neon-nyan Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":3690,"s":[100]},{"t":3720,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[128,166,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[9.856,0],[9.856,-38.864],[4.592,-38.864],[4.592,0]],"c":true},"ix":2},"nm":"H","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[34.944,0],[34.944,-38.864],[29.68,-38.864],[29.68,0]],"c":true},"ix":2},"nm":"H","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[30.912,-17.696],[30.912,-22.512],[8.176,-22.512],[8.176,-17.696]],"c":true},"ix":2},"nm":"H","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"H","np":6,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[48.328,0],[48.328,-26.6],[43.232,-26.6],[43.232,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.598,0.616],[0,0.934],[0.597,0.616],[0.933,0],[0.597,-0.616],[0,-0.896],[-0.598,-0.616],[-0.934,0]],"o":[[0.597,-0.616],[0,-0.896],[-0.598,-0.616],[-0.934,0],[-0.598,0.616],[0,0.934],[0.597,0.616],[0.933,0]],"v":[[48.104,-32.844],[49,-35.168],[48.104,-37.436],[45.808,-38.36],[43.512,-37.436],[42.616,-35.168],[43.512,-32.844],[45.808,-31.92]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.168,0.579],[0,0.411],[0.746,0.728],[0.97,0],[0.709,-0.728],[0,-1.082],[-0.654,-0.653],[-0.784,0],[-0.299,0.261],[-0.187,0.411],[0,0],[0,0]],"o":[[0,0],[0.485,-0.933],[0.168,-0.578],[0,-1.082],[-0.747,-0.728],[-1.083,0],[-0.71,0.728],[0,0.971],[0.653,0.653],[0.373,0],[0.298,-0.261],[0,0],[0,0],[0,0]],"v":[[58.912,7.728],[62.664,0.784],[63.644,-1.484],[63.896,-2.968],[62.776,-5.684],[60.2,-6.776],[57.512,-5.684],[56.448,-2.968],[57.428,-0.532],[59.584,0.448],[60.592,0.056],[61.32,-0.952],[59.528,-0.504],[56.056,6.16]],"c":true},"ix":2},"nm":",","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":",","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[91.896,0],[91.896,-37.744],[86.856,-37.744],[86.856,0]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[98.448,-22.008],[98.448,-26.6],[80.304,-26.6],[80.304,-22.008]],"c":true},"ix":2},"nm":"t","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"t","np":5,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.896,1.606],[1.549,0.896],[2.016,0],[1.605,-0.914],[0.896,-1.568],[0,-2.016],[0,0],[-0.598,1.046],[-1.046,0.598],[-1.344,0],[-1.251,-1.306],[0,-2.016],[0,0]],"o":[[0,0],[0,-2.09],[-0.896,-1.605],[-1.55,-0.896],[-2.016,0],[-1.606,0.915],[-0.896,1.568],[0,0],[0,-1.344],[0.597,-1.045],[1.045,-0.597],[2.016,0],[1.25,1.307],[0,0],[0,0]],"v":[[127.232,0],[127.232,-16.52],[125.888,-22.064],[122.22,-25.816],[116.872,-27.16],[111.44,-25.788],[107.688,-22.064],[106.344,-16.688],[108.416,-15.512],[109.312,-19.096],[111.776,-21.56],[115.36,-22.456],[120.26,-20.496],[122.136,-15.512],[122.136,0]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[108.416,0],[108.416,-39.984],[103.376,-39.984],[103.376,0]],"c":true},"ix":2},"nm":"h","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"h","np":5,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[139.16,0],[139.16,-26.6],[134.064,-26.6],[134.064,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.598,0.616],[0,0.934],[0.597,0.616],[0.933,0],[0.597,-0.616],[0,-0.896],[-0.598,-0.616],[-0.934,0]],"o":[[0.597,-0.616],[0,-0.896],[-0.598,-0.616],[-0.934,0],[-0.598,0.616],[0,0.934],[0.597,0.616],[0.933,0]],"v":[[138.936,-32.844],[139.832,-35.168],[138.936,-37.436],[136.64,-38.36],[134.344,-37.436],[133.448,-35.168],[134.344,-32.844],[136.64,-31.92]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.774,1.456],[0,2.502],[0.69,1.008],[1.082,0.598],[1.194,0.355],[1.101,0.336],[0.672,0.486],[0,0.896],[-0.766,0.523],[-1.456,0],[-1.083,-0.522],[-0.784,-0.97],[0,0],[1.624,0.728],[2.09,0],[1.418,-0.634],[0.765,-1.176],[0,-1.605],[-0.691,-0.989],[-1.083,-0.56],[-1.214,-0.336],[-1.083,-0.354],[-0.691,-0.541],[0,-0.97],[0.858,-0.541],[1.568,0],[1.269,0.579],[0.97,1.195],[0,0],[-1.102,-0.728],[-1.344,-0.392],[-1.494,0]],"o":[[1.773,-1.456],[0,-1.642],[-0.691,-1.008],[-1.083,-0.597],[-1.195,-0.354],[-1.102,-0.336],[-0.672,-0.485],[0,-0.858],[0.765,-0.522],[1.381,0],[1.082,0.523],[0,0],[-1.046,-1.456],[-1.624,-0.728],[-1.979,0],[-1.419,0.635],[-0.766,1.176],[0,1.606],[0.69,0.99],[1.082,0.56],[1.213,0.336],[1.082,0.355],[0.69,0.542],[0,0.971],[-0.859,0.542],[-1.568,0],[-1.27,-0.578],[0,0],[0.821,1.008],[1.101,0.728],[1.344,0.392],[2.986,0]],"v":[[162.204,-1.624],[164.864,-7.56],[163.828,-11.536],[161.168,-13.944],[157.752,-15.372],[154.308,-16.408],[151.648,-17.64],[150.64,-19.712],[151.788,-21.784],[155.12,-22.568],[158.816,-21.784],[161.616,-19.544],[164.864,-22.792],[160.86,-26.068],[155.288,-27.16],[150.192,-26.208],[146.916,-23.492],[145.768,-19.32],[146.804,-15.428],[149.464,-13.104],[152.908,-11.76],[156.352,-10.724],[159.012,-9.38],[160.048,-7.112],[158.76,-4.844],[155.12,-4.032],[150.864,-4.9],[147.504,-7.56],[144.256,-4.312],[147.14,-1.708],[150.808,-0.028],[155.064,0.56]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[187.208,0],[187.208,-26.6],[182.112,-26.6],[182.112,0]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.598,0.616],[0,0.934],[0.597,0.616],[0.933,0],[0.597,-0.616],[0,-0.896],[-0.598,-0.616],[-0.934,0]],"o":[[0.597,-0.616],[0,-0.896],[-0.598,-0.616],[-0.934,0],[-0.598,0.616],[0,0.934],[0.597,0.616],[0.933,0]],"v":[[186.984,-32.844],[187.88,-35.168],[186.984,-37.436],[184.688,-38.36],[182.392,-37.436],[181.496,-35.168],[182.392,-32.844],[184.688,-31.92]],"c":true},"ix":2},"nm":"i","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"i","np":5,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.774,1.456],[0,2.502],[0.69,1.008],[1.082,0.598],[1.194,0.355],[1.101,0.336],[0.672,0.486],[0,0.896],[-0.766,0.523],[-1.456,0],[-1.083,-0.522],[-0.784,-0.97],[0,0],[1.624,0.728],[2.09,0],[1.418,-0.634],[0.765,-1.176],[0,-1.605],[-0.691,-0.989],[-1.083,-0.56],[-1.214,-0.336],[-1.083,-0.354],[-0.691,-0.541],[0,-0.97],[0.858,-0.541],[1.568,0],[1.269,0.579],[0.97,1.195],[0,0],[-1.102,-0.728],[-1.344,-0.392],[-1.494,0]],"o":[[1.773,-1.456],[0,-1.642],[-0.691,-1.008],[-1.083,-0.597],[-1.195,-0.354],[-1.102,-0.336],[-0.672,-0.485],[0,-0.858],[0.765,-0.522],[1.381,0],[1.082,0.523],[0,0],[-1.046,-1.456],[-1.624,-0.728],[-1.979,0],[-1.419,0.635],[-0.766,1.176],[0,1.606],[0.69,0.99],[1.082,0.56],[1.213,0.336],[1.082,0.355],[0.69,0.542],[0,0.971],[-0.859,0.542],[-1.568,0],[-1.27,-0.578],[0,0],[0.821,1.008],[1.101,0.728],[1.344,0.392],[2.986,0]],"v":[[210.252,-1.624],[212.912,-7.56],[211.876,-11.536],[209.216,-13.944],[205.8,-15.372],[202.356,-16.408],[199.696,-17.64],[198.688,-19.712],[199.836,-21.784],[203.168,-22.568],[206.864,-21.784],[209.664,-19.544],[212.912,-22.792],[208.908,-26.068],[203.336,-27.16],[198.24,-26.208],[194.964,-23.492],[193.816,-19.32],[194.852,-15.428],[197.512,-13.104],[200.956,-11.76],[204.4,-10.724],[207.06,-9.38],[208.096,-7.112],[206.808,-4.844],[203.168,-4.032],[198.912,-4.9],[195.552,-7.56],[192.304,-4.312],[195.188,-1.708],[198.856,-0.028],[203.112,0.56]],"c":true},"ix":2},"nm":"s","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"s","np":3,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.896,1.587],[1.568,0.934],[1.978,0],[1.661,-0.877],[0.952,-1.605],[0,-2.128],[0,0],[-0.411,0.71],[-0.71,0.392],[-0.896,0],[-0.896,-0.877],[0,-1.381],[0,0]],"o":[[0,0],[0,-1.866],[-0.896,-1.586],[-1.568,-0.933],[-2.091,0],[-1.662,0.878],[-0.952,1.606],[0,0],[0,-0.933],[0.41,-0.709],[0.709,-0.392],[1.344,0],[0.896,0.878],[0,0],[0,0]],"v":[[256.088,0],[256.088,-17.416],[254.744,-22.596],[251.048,-26.376],[245.728,-27.776],[240.1,-26.46],[236.18,-22.736],[234.752,-17.136],[238.056,-15.512],[238.672,-17.976],[240.352,-19.628],[242.76,-20.216],[246.12,-18.9],[247.464,-15.512],[247.464,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[238.056,0],[238.056,-27.216],[229.432,-27.216],[229.432,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.904,0.765],[-1.344,1.606],[0,0],[1.082,-0.466],[1.306,0],[1.064,0.616],[0.578,1.158],[0,1.568],[-0.542,1.12],[-0.99,0.635],[-1.344,0],[-0.878,-0.56],[-0.448,-1.026],[-0.038,-1.53],[0,0],[0,0],[0,0],[0,0],[-0.056,0.542],[0,0.523],[1.194,2.054],[2.053,1.158],[2.725,0],[2.202,-1.232],[1.269,-2.146],[0,-2.688],[-1.307,-2.165],[-2.278,-1.213],[-2.95,0]],"o":[[1.904,-0.765],[0,0],[-0.822,0.934],[-1.083,0.467],[-1.456,0],[-1.064,-0.616],[-0.579,-1.157],[0,-1.568],[0.541,-1.12],[0.989,-0.634],[1.232,0],[0.877,0.56],[0.448,1.027],[0,0],[0,0],[0,0],[0,0],[0.186,-0.672],[0.056,-0.541],[0,-2.65],[-1.195,-2.053],[-2.054,-1.157],[-2.763,0],[-2.203,1.232],[-1.27,2.147],[0,2.763],[1.306,2.166],[2.277,1.213],[2.314,0]],"v":[[281.232,-0.532],[286.104,-4.088],[281.344,-8.792],[278.488,-6.692],[274.904,-5.992],[271.124,-6.916],[268.66,-9.576],[267.792,-13.664],[268.604,-17.696],[270.9,-20.328],[274.4,-21.28],[277.564,-20.44],[279.552,-18.06],[280.28,-14.224],[283.976,-16.744],[264.264,-16.632],[264.264,-10.696],[287.672,-10.808],[288.036,-12.628],[288.12,-14.224],[286.328,-21.28],[281.456,-26.096],[274.288,-27.832],[266.84,-25.984],[261.632,-20.916],[259.728,-13.664],[261.688,-6.272],[267.064,-1.204],[274.904,0.616]],"c":true},"ix":2},"nm":"e","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"e","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.24,1.27],[-1.307,2.147],[0,2.726],[1.306,2.147],[2.258,1.232],[2.8,0],[2.24,-1.25],[1.288,-2.128],[0,-2.65],[-1.307,-2.165],[-2.24,-1.269],[-2.838,0]],"o":[[2.24,-1.269],[1.306,-2.146],[0,-2.65],[-1.307,-2.146],[-2.259,-1.232],[-2.875,0],[-2.24,1.251],[-1.288,2.128],[0,2.688],[1.306,2.166],[2.24,1.27],[2.837,0]],"v":[[312.928,-1.288],[318.248,-6.412],[320.208,-13.72],[318.248,-20.916],[312.9,-25.984],[305.312,-27.832],[297.64,-25.956],[292.348,-20.888],[290.416,-13.72],[292.376,-6.44],[297.696,-1.288],[305.312,0.616]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.933,0.523],[0.522,0.99],[0,1.27],[-0.523,0.971],[-0.934,0.542],[-1.195,0],[-0.915,-0.541],[-0.523,-0.952],[0,-1.232],[0.504,-0.989],[0.933,-0.522],[1.194,0]],"o":[[-0.934,-0.522],[-0.523,-0.989],[0,-1.194],[0.522,-0.97],[0.933,-0.541],[1.194,0],[0.914,0.542],[0.522,0.952],[0,1.27],[-0.504,0.99],[-0.934,0.523],[-1.195,0]],"v":[[302.12,-8.008],[299.936,-10.276],[299.152,-13.664],[299.936,-16.912],[302.12,-19.18],[305.312,-19.992],[308.476,-19.18],[310.632,-16.94],[311.416,-13.664],[310.66,-10.276],[308.504,-8.008],[305.312,-7.224]],"c":true},"ix":2},"nm":"o","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"o","np":5,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.896,1.587],[1.568,0.934],[1.978,0],[1.661,-0.877],[0.952,-1.605],[0,-2.128],[0,0],[-0.411,0.71],[-0.71,0.392],[-0.896,0],[-0.896,-0.877],[0,-1.381],[0,0]],"o":[[0,0],[0,-1.866],[-0.896,-1.586],[-1.568,-0.933],[-2.091,0],[-1.662,0.878],[-0.952,1.606],[0,0],[0,-0.933],[0.41,-0.709],[0.709,-0.392],[1.344,0],[0.896,0.878],[0,0],[0,0]],"v":[[351.064,0],[351.064,-17.416],[349.72,-22.596],[346.024,-26.376],[340.704,-27.776],[335.076,-26.46],[331.156,-22.736],[329.728,-17.136],[333.032,-15.512],[333.648,-17.976],[335.328,-19.628],[337.736,-20.216],[341.096,-18.9],[342.44,-15.512],[342.44,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[333.032,0],[333.032,-27.216],[324.408,-27.216],[324.408,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[376.376,-10.528],[376.376,-18.032],[356.44,-18.032],[356.44,-10.528]],"c":true},"ix":2},"nm":"-","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"-","np":3,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.896,1.587],[1.568,0.934],[1.978,0],[1.661,-0.877],[0.952,-1.605],[0,-2.128],[0,0],[-0.411,0.71],[-0.71,0.392],[-0.896,0],[-0.896,-0.877],[0,-1.381],[0,0]],"o":[[0,0],[0,-1.866],[-0.896,-1.586],[-1.568,-0.933],[-2.091,0],[-1.662,0.878],[-0.952,1.606],[0,0],[0,-0.933],[0.41,-0.709],[0.709,-0.392],[1.344,0],[0.896,0.878],[0,0],[0,0]],"v":[[408.968,0],[408.968,-17.416],[407.624,-22.596],[403.928,-26.376],[398.608,-27.776],[392.98,-26.46],[389.06,-22.736],[387.632,-17.136],[390.936,-15.512],[391.552,-17.976],[393.232,-19.628],[395.64,-20.216],[399,-18.9],[400.344,-15.512],[400.344,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[390.936,0],[390.936,-27.216],[382.312,-27.216],[382.312,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[429.408,0.168],[441.056,-27.216],[431.76,-27.216],[424.536,-5.544],[427.952,-5.544],[420.84,-27.216],[411.544,-27.216],[422.744,0.168]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[424.592,11.48],[429.408,0.168],[423.92,-6.216],[415.744,11.48]],"c":true},"ix":2},"nm":"y","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"y","np":5,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.475,0.709],[-0.915,1.251],[-0.112,1.606],[0,0],[0.933,1.251],[1.474,0.71],[1.829,0],[1.96,-1.213],[1.138,-2.146],[0,-2.725],[-1.139,-2.109],[-1.979,-1.25],[-2.464,0]],"o":[[1.474,-0.709],[0.914,-1.25],[0,0],[-0.112,-1.605],[-0.934,-1.25],[-1.475,-0.709],[-2.502,0],[-1.96,1.214],[-1.139,2.147],[0,2.726],[1.138,2.11],[1.978,1.251],[1.866,0]],"v":[[459.62,-0.504],[463.204,-3.444],[464.744,-7.728],[464.744,-19.488],[463.176,-23.772],[459.564,-26.712],[454.608,-27.776],[447.916,-25.956],[443.268,-20.916],[441.56,-13.608],[443.268,-6.356],[447.944,-1.316],[454.608,0.56]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.914,0.542],[0.541,0.971],[0,1.232],[-0.542,0.971],[-0.915,0.542],[-1.158,0],[-0.934,-0.541],[-0.486,-0.952],[0,-1.232],[1.101,-1.194],[1.829,0]],"o":[[-0.915,-0.541],[-0.542,-0.97],[0,-1.232],[0.541,-0.97],[0.914,-0.541],[1.194,0],[0.933,0.542],[0.485,0.952],[0,1.904],[-1.102,1.195],[-1.158,0]],"v":[[453.292,-8.036],[451.108,-10.304],[450.296,-13.608],[451.108,-16.912],[453.292,-19.18],[456.4,-19.992],[459.592,-19.18],[461.72,-16.94],[462.448,-13.664],[460.796,-9.016],[456.4,-7.224]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[470.568,0],[470.568,-27.216],[462.112,-27.216],[462.112,-20.552],[463.4,-14],[462.112,-7.336],[462.112,0]],"c":true},"ix":2},"nm":"a","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"a","np":6,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.896,1.587],[1.568,0.934],[1.978,0],[1.661,-0.877],[0.952,-1.605],[0,-2.128],[0,0],[-0.411,0.71],[-0.71,0.392],[-0.896,0],[-0.896,-0.877],[0,-1.381],[0,0]],"o":[[0,0],[0,-1.866],[-0.896,-1.586],[-1.568,-0.933],[-2.091,0],[-1.662,0.878],[-0.952,1.606],[0,0],[0,-0.933],[0.41,-0.709],[0.709,-0.392],[1.344,0],[0.896,0.878],[0,0],[0,0]],"v":[[503.216,0],[503.216,-17.416],[501.872,-22.596],[498.176,-26.376],[492.856,-27.776],[487.228,-26.46],[483.308,-22.736],[481.88,-17.136],[485.184,-15.512],[485.8,-17.976],[487.48,-19.628],[489.888,-20.216],[493.248,-18.9],[494.592,-15.512],[494.592,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[485.184,0],[485.184,-27.216],[476.56,-27.216],[476.56,0]],"c":true},"ix":2},"nm":"n","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"n","np":5,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":4830,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":15,"ty":0,"nm":"Comp 1","refId":"comp_0","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4350,"s":[0]},{"t":4370,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2,"l":2},"a":{"a":0,"k":[960,540,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":1920,"h":1080,"ip":4350,"op":4800,"st":4350,"bm":0}],"markers":[],"props":{}} \ No newline at end of file diff --git a/CollapseLauncher/Classes/EventsManagement/EventsHandler.cs b/CollapseLauncher/Classes/EventsManagement/EventsHandler.cs index 46f6403e9..561c56b1a 100644 --- a/CollapseLauncher/Classes/EventsManagement/EventsHandler.cs +++ b/CollapseLauncher/Classes/EventsManagement/EventsHandler.cs @@ -1,4 +1,6 @@ -using Hi3Helper.SentryHelper; +using CollapseLauncher.XAMLs.Theme.CustomControls.FullPageOverlay; +using Hi3Helper.Plugin.Core.Management; +using Hi3Helper.SentryHelper; using Hi3Helper.Shared.ClassStruct; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Controls; @@ -63,7 +65,7 @@ public GameVersion? Version { get { - return !GameVersion.TryParse(VersionString, out GameVersion? result) ? null : result; + return !GameVersion.TryParse(VersionString, null, out GameVersion result) ? null : result; } } @@ -408,17 +410,34 @@ internal ShowLoadingPageProperty(bool hide, string title, string subtitle) } #endregion #region ChangeTitleDragArea + [Flags] public enum DragAreaTemplate { - None, - Full, - Default + None = 0, + Full = 1, + Default = 2, + + OverlayOpened = 4 } internal static class ChangeTitleDragArea { private static readonly ChangeTitleDragAreaInvoker Invoker = new(); - public static void Change(DragAreaTemplate template) => Invoker.Change(template); + public static DragAreaTemplate CurrentDragAreaType; + + public static void UpdateLayout() => Change(CurrentDragAreaType); + + public static void Change(DragAreaTemplate template) + { + // Ensure to keep the overlay opened even if the drag area type is changed. + if (CurrentDragAreaType.HasFlag(DragAreaTemplate.OverlayOpened) && + FullPageOverlay.CurrentlyOpenedOverlays.Count > 0) + { + template |= DragAreaTemplate.OverlayOpened; + } + + Invoker.Change(CurrentDragAreaType = template); + } } internal class ChangeTitleDragAreaInvoker diff --git a/CollapseLauncher/Classes/Extension/TaskExtensions.TaskAwaitable.cs b/CollapseLauncher/Classes/Extension/TaskExtensions.TaskAwaitable.cs index de41ca85a..ee39293eb 100644 --- a/CollapseLauncher/Classes/Extension/TaskExtensions.TaskAwaitable.cs +++ b/CollapseLauncher/Classes/Extension/TaskExtensions.TaskAwaitable.cs @@ -1,4 +1,5 @@ -using System.Runtime.CompilerServices; +using System; +using System.Runtime.CompilerServices; using System.Threading; using System.Threading.Tasks; // ReSharper disable UnusedMember.Global @@ -13,11 +14,17 @@ internal static partial class TaskExtensions { internal static async Task WaitForRetryAsync(this ActionTimeoutTaskAwaitableCallback funcCallback, - int? timeout = null, - int? timeoutStep = null, - int? retryAttempt = null, - ActionOnTimeOutRetry? actionOnRetry = null, - CancellationToken fromToken = default) - => await funcCallback.Invoke(fromToken); + int? timeout = null, + int? timeoutStep = null, + int? retryAttempt = null, + ActionOnTimeOutRetry? actionOnRetry = null, + Action? actionOnSuccess = null, + CancellationToken fromToken = default) + { + TResult? result = await funcCallback.Invoke(fromToken); + actionOnSuccess?.Invoke(result); + + return result; + } } } diff --git a/CollapseLauncher/Classes/Extension/TaskExtensions.cs b/CollapseLauncher/Classes/Extension/TaskExtensions.cs index f4a2ef67b..eb43660fd 100644 --- a/CollapseLauncher/Classes/Extension/TaskExtensions.cs +++ b/CollapseLauncher/Classes/Extension/TaskExtensions.cs @@ -1,12 +1,18 @@ using Hi3Helper; +using Hi3Helper.Plugin.Core; +using Hi3Helper.Plugin.Core.Utility; +using Hi3Helper.Win32.ManagedTools; using System; +using System.Runtime.InteropServices; using System.Threading; using System.Threading.Tasks; // ReSharper disable UnusedMember.Global +// ReSharper disable IdentifierTypo #nullable enable namespace CollapseLauncher.Extension { + public delegate Task ActionTimeoutTaskCallback(CancellationToken token); public delegate Task ActionTimeoutTaskCallback(CancellationToken token); public delegate void ActionOnTimeOutRetry(int retryAttemptCount, int retryAttemptTotal, int timeOutSecond, int timeOutStep); @@ -15,14 +21,89 @@ internal static partial class TaskExtensions internal const int DefaultTimeoutSec = 10; internal const int DefaultRetryAttempt = 5; - internal static async Task + internal static Task + WaitForRetryAsync(this ActionTimeoutTaskCallback funcCallback, + int? timeout = null, + int? timeoutStep = null, + int? retryAttempt = null, + ActionOnTimeOutRetry? actionOnRetry = null, + CancellationToken fromToken = default) + => WaitForRetryAsync(() => funcCallback, timeout, timeoutStep, retryAttempt, actionOnRetry, fromToken); + + internal static async Task + WaitForRetryAsync(Func funcCallback, + int? timeout = null, + int? timeoutStep = null, + int? retryAttempt = null, + ActionOnTimeOutRetry? actionOnRetry = null, + CancellationToken fromToken = default) + { + timeout ??= DefaultTimeoutSec; + timeoutStep ??= 0; + retryAttempt ??= DefaultRetryAttempt; + + int retryAttemptCurrent = 1; + Exception? lastException = null; + while (retryAttemptCurrent < retryAttempt) + { + fromToken.ThrowIfCancellationRequested(); + CancellationTokenSource? innerCancellationToken = null; + CancellationTokenSource? consolidatedToken = null; + + try + { + innerCancellationToken = new CancellationTokenSource(TimeSpan.FromSeconds(timeout ?? DefaultTimeoutSec)); + consolidatedToken = CancellationTokenSource.CreateLinkedTokenSource(innerCancellationToken.Token, fromToken); + + ActionTimeoutTaskCallback delegateCallback = funcCallback(); + await delegateCallback(consolidatedToken.Token).ConfigureAwait(false); + + return; + } + catch (OperationCanceledException) when (fromToken.IsCancellationRequested) { throw; } + catch (Exception ex) + { + lastException = ex; + actionOnRetry?.Invoke(retryAttemptCurrent, (int)retryAttempt, timeout ?? 0, timeoutStep ?? 0); + + if (ex is TimeoutException) + { + string msg = $"The operation has timed out! Retrying attempt left: {retryAttemptCurrent}/{retryAttempt}"; + Logger.LogWriteLine(msg, LogType.Warning, true); + } + else + { + string msg = $"The operation has thrown an exception! Retrying attempt left: {retryAttemptCurrent}/{retryAttempt}\r\n{ex}"; + Logger.LogWriteLine(msg, LogType.Error, true); + } + + retryAttemptCurrent++; + timeout += timeoutStep; + } + finally + { + innerCancellationToken?.Dispose(); + consolidatedToken?.Dispose(); + } + } + + if (lastException is not null + && !fromToken.IsCancellationRequested) + throw lastException is TaskCanceledException ? + new TimeoutException("The operation has timed out with inner exception!", lastException) : + lastException; + + throw new TimeoutException("The operation has timed out!"); + } + + internal static Task WaitForRetryAsync(this ActionTimeoutTaskCallback funcCallback, int? timeout = null, int? timeoutStep = null, int? retryAttempt = null, ActionOnTimeOutRetry? actionOnRetry = null, CancellationToken fromToken = default) - => await WaitForRetryAsync(() => funcCallback, timeout, timeoutStep, retryAttempt, actionOnRetry, fromToken); + => WaitForRetryAsync(() => funcCallback, timeout, timeoutStep, retryAttempt, actionOnRetry, fromToken); internal static async Task WaitForRetryAsync(Func> funcCallback, @@ -50,7 +131,7 @@ internal static async Task consolidatedToken = CancellationTokenSource.CreateLinkedTokenSource(innerCancellationToken.Token, fromToken); ActionTimeoutTaskCallback delegateCallback = funcCallback(); - return await delegateCallback(consolidatedToken.Token); + return await delegateCallback(consolidatedToken.Token).ConfigureAwait(false); } catch (OperationCanceledException) when (fromToken.IsCancellationRequested) { throw; } catch (Exception ex) @@ -87,5 +168,55 @@ internal static async Task throw new TimeoutException("The operation has timed out!"); } + + internal static Guid RegisterCancelToken(this IPlugin pluginInstance, CancellationToken token) + { + Guid guid = Guid.CreateVersion7(); + token.Register(() => + { + pluginInstance.CancelAsync(in guid); + }); + + return guid; + } + + internal static async Task InitPluginComAsync(this T initializableInterface, IPlugin pluginInstance, CancellationToken token) + where T : class + { + ArgumentNullException.ThrowIfNull(pluginInstance, nameof(pluginInstance)); + + IInitializableTask initiableTask = GetInitializableTask(initializableInterface); + + initiableTask.InitAsync(pluginInstance.RegisterCancelToken(token), out nint asyncResult); + Task initTask = asyncResult.AsTask(); + int returnCode = await initTask; + + if (initTask.IsCompletedSuccessfully) + { + return; + } + + if (returnCode == 69420) + { + throw new NotImplementedException("InitAsync isn't overriden!"); + } + + throw new COMException($"Initialization for {nameof(T)} has failed with return code: {returnCode}", initTask.Exception); + } + + private static readonly Guid IInitializableIid = new(ComInterfaceId.ExInitializable); + private static IInitializableTask GetInitializableTask(T instance) + where T : class + { + if (!ComMarshal.TryCastComObjectAs(instance, + in IInitializableIid, + out IInitializableTask? initTask, + out Exception? ex)) + { + throw ex; + } + + return initTask; + } } } diff --git a/CollapseLauncher/Classes/Extension/UIElementExtensions.ThemeExtensions.cs b/CollapseLauncher/Classes/Extension/UIElementExtensions.ThemeExtensions.cs new file mode 100644 index 000000000..ee6f4898b --- /dev/null +++ b/CollapseLauncher/Classes/Extension/UIElementExtensions.ThemeExtensions.cs @@ -0,0 +1,74 @@ +using Hi3Helper.Shared.ClassStruct; +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Media; +using Windows.UI; + +#pragma warning disable IDE0130 + +#nullable enable +namespace CollapseLauncher.Extension +{ + internal static partial class UIElementExtensions + { + private static string CurrentReversedThemeKey => InnerLauncherConfig.IsAppThemeLight ? "Dark" : "Light"; + + public static void ChangeAccentColor(this FrameworkElement element, Color accentColor, Color accentColorMask, Color accentColorTransparent) + { + const string searchKeyAccentColor = "AccentColor"; + const string searchKeyMain = "System" + searchKeyAccentColor; + const string searchKeyMask = searchKeyMain + "BackgroundMask"; + const string searchKeyMaskTransparent = searchKeyMain + "BackgroundMaskTransparent"; + + string searchReversedKey = CurrentReversedThemeKey; + string searchKey1 = $"{searchKeyMain}{searchReversedKey}1"; + string searchKey2 = $"{searchKeyMain}{searchReversedKey}2"; + string searchKey3 = $"{searchKeyMain}{searchReversedKey}3"; + + SetApplicationResource(searchKeyAccentColor, new SolidColorBrush(accentColor)); + SetApplicationResource(searchKeyMain, accentColor); + SetApplicationResource(searchKey1, accentColor); + SetApplicationResource(searchKey2, accentColor); + SetApplicationResource(searchKey3, accentColor); + SetApplicationResource(searchKeyMask, accentColorMask); + SetApplicationResource(searchKeyMaskTransparent, accentColorTransparent); + + element.ReloadPageTheme(); + } + + private static void ReloadPageTheme(this FrameworkElement page) + { + ElementTheme theme = InnerLauncherConfig.CurrentAppTheme switch + { + AppThemeMode.Dark => ElementTheme.Dark, + AppThemeMode.Light => ElementTheme.Light, + _ => ElementTheme.Default + }; + + bool isComplete = false; + while (!isComplete) + { + try + { + page.RequestedTheme = page.RequestedTheme switch + { + ElementTheme.Dark => ElementTheme.Light, + ElementTheme.Light => ElementTheme.Default, + ElementTheme.Default => ElementTheme.Dark, + _ => page.RequestedTheme + }; + + if (page.RequestedTheme != theme) + { + ReloadPageTheme(page); + } + + isComplete = true; + } + catch + { + // ignored + } + } + } + } +} diff --git a/CollapseLauncher/Classes/Extension/UIElementExtensions.cs b/CollapseLauncher/Classes/Extension/UIElementExtensions.cs index e4e1d9ffb..5aaea51d3 100644 --- a/CollapseLauncher/Classes/Extension/UIElementExtensions.cs +++ b/CollapseLauncher/Classes/Extension/UIElementExtensions.cs @@ -1,4 +1,5 @@ -using CommunityToolkit.WinUI; +using CollapseLauncher.Helper.Animation; +using CommunityToolkit.WinUI; using Hi3Helper; using Hi3Helper.CommunityToolkit.WinUI.Controls; using Hi3Helper.SentryHelper; @@ -13,10 +14,13 @@ using Microsoft.UI.Xaml.Media; using System; using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Numerics; +using System.Runtime.CompilerServices; using Windows.UI; using Windows.UI.Text; +using WinRT; // ReSharper disable SwitchStatementHandlesSomeKnownEnumValuesWithDefault // ReSharper disable UnusedMember.Global @@ -181,7 +185,7 @@ internal static void ApplyNavigationViewItemLocaleTextBindings(this NavigationVi navViewControl.UpdateLayout(); } - internal static T BindProperty(this T element, DependencyProperty dependencyProperty, object objectToBind, string propertyName, IValueConverter? converter = null, BindingMode bindingMode = BindingMode.OneWay) + internal static T BindProperty(this T element, DependencyProperty dependencyProperty, object objectToBind, string propertyName, IValueConverter? converter = null, BindingMode bindingMode = BindingMode.OneWay, UpdateSourceTrigger sourceTrigger = UpdateSourceTrigger.Default) where T : FrameworkElement { // Create a new binding instance @@ -190,7 +194,7 @@ internal static T BindProperty(this T element, DependencyProperty dependencyP Source = objectToBind, Mode = bindingMode, Path = new PropertyPath(propertyName), - UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged + UpdateSourceTrigger = sourceTrigger }; // If the converter is assigned, then add the converter @@ -386,9 +390,13 @@ internal static TextBlock AddTextBlockLine(this TextBlock textBlock, string mess return textBlock; } + private static ResourceDictionary _currentDictionary; + internal static TReturnType GetApplicationResource(string resourceKey) { - if (!Application.Current.Resources.TryGetValue(resourceKey, out object resourceObj)) + _currentDictionary ??= Application.Current.Resources; + + if (!(_currentDictionary?.TryGetValue(resourceKey, out object resourceObj) ?? false)) throw new KeyNotFoundException($"Application resource with key: {resourceKey} does not exist!"); if (resourceObj is not TReturnType resource) @@ -397,12 +405,25 @@ internal static TReturnType GetApplicationResource(string resourceK return resource; } + internal static ref TReturnType GetApplicationResourceRef(string resourceKey) + where TReturnType : struct + { + _currentDictionary ??= Application.Current.Resources; + + if (!(_currentDictionary?.TryGetValue(resourceKey, out object resourceObj) ?? false)) + { + return ref Unsafe.NullRef(); + } + + return ref Unsafe.Unbox(resourceObj); + } + internal static void SetApplicationResource(string resourceKey, object value) { - if (!Application.Current.Resources.ContainsKey(resourceKey)) + if (!_currentDictionary.ContainsKey(resourceKey)) throw new KeyNotFoundException($"Application resource with key: {resourceKey} does not exist!"); - Application.Current.Resources[resourceKey] = value; + _currentDictionary[resourceKey] = value; } internal static CornerRadius GetElementCornerRadius(FrameworkElement element, CornerRadiusKind kind = CornerRadiusKind.Normal) @@ -987,6 +1008,47 @@ internal static void ApplyDropShadow(this FrameworkElement from, FrameworkElemen } #nullable enable + public static nint GetPointerFromDependencyObject(this T? element) + where T : DependencyObject + => element is null ? nint.Zero : MarshalInspectable.FromManaged(element); + + public static T? GetDependencyObjectFromPointer(this nint ptr) + where T : DependencyObject + => ptr == nint.Zero ? null : MarshalInspectable.FromAbi(ptr); + + + internal static readonly InputSystemCursor HandCursor = InputSystemCursor.Create(InputSystemCursorShape.Hand); + + internal static void AttachHandCursorRecursiveOnLoaded(object sender, RoutedEventArgs e) + { + if (sender is not UIElement element) + { + return; + } + + element.SetAllControlsCursorRecursive(HandCursor); + } + + internal static void AttachHandCursorOnLoaded(object sender, RoutedEventArgs e) + { + if (sender is not UIElement element) + { + return; + } + + element.SetCursor(HandCursor); + } + + internal static void EnableImplicitAnimationRecursiveOnLoaded(object sender, RoutedEventArgs e) + { + if (sender is not UIElement element) + { + return; + } + + element.EnableImplicitAnimation(true); + } + private static IEnumerable VisualTreeHelperGetChildrenEnumerable(FrameworkElement? element) { if (element is null) @@ -1054,5 +1116,65 @@ internal static bool IsElementVisible(this FrameworkElement? element) return VisualTreeHelper.GetParent(element) is not FrameworkElement parentElement || (parentElement.Visibility != Visibility.Collapsed && !(element.Opacity < 1)); } + + internal static Grid FindOverlayGrid([NotNull] this XamlRoot? root, bool isAlwaysOnTop) + { + // XAML root cannot be empty or null! + ArgumentNullException.ThrowIfNull(root); + + // If alwaysOnTop is not preferred, find for a grid called "OverlayRootGrid" under the XamlRoot's Content. + if (!isAlwaysOnTop) + { + FrameworkElement? parent = root.Content.FindDescendant("OverlayRootGrid", StringComparison.OrdinalIgnoreCase); + if (parent is not Grid parentAsGrid) + { + //If the "OverlayRootGrid" doesn't exist, start searching for any last grid existed. + goto FindAnyLastGrid; + } + + // Otherwise, return the "OverlayRootGrid" + return parentAsGrid; + } + + FindAnyLastGrid: + // Assign the XamlRoot's Content as grid. If it's not a grid, find any last child grid + // on the XamlRoot's VisualTree children. + Grid? topGrid = root.Content as Grid; + topGrid ??= FindLastChildGrid(root.Content); + + // If it still cannot find any grid, throw. + if (topGrid is null) + { + throw new InvalidOperationException("Cannot find any or the last grid in your XAML layout!"); + } + + // Otherwise, any grid that have been found. + return topGrid; + } + + internal static Grid? FindLastChildGrid(DependencyObject? element) + { + // Get count of any children existed under the element's VisualTree + int visualTreeCount = VisualTreeHelper.GetChildrenCount(element); + if (visualTreeCount == 0) + { + // If none is found, return null. + return null; + } + + // Find the last grid to be found under the element's VisualTree + Grid? lastGrid = null; + for (int i = 0; i < visualTreeCount; i++) + { + DependencyObject currentObject = VisualTreeHelper.GetChild(element, i); + if (currentObject is Grid asGrid) + { + lastGrid = asGrid; + } + } + + // Return the result (whether if it's not found/as null, or any last grid) + return lastGrid; + } } } diff --git a/CollapseLauncher/Classes/Extension/VelopackLocatorExtension.cs b/CollapseLauncher/Classes/Extension/VelopackLocatorExtension.cs index b408bd2d9..eef47e202 100644 --- a/CollapseLauncher/Classes/Extension/VelopackLocatorExtension.cs +++ b/CollapseLauncher/Classes/Extension/VelopackLocatorExtension.cs @@ -14,6 +14,7 @@ using System.Threading.Tasks; using Velopack; using Velopack.Locators; +using Velopack.Logging; // ReSharper disable IdentifierTypo // ReSharper disable StringLiteralTypo @@ -29,59 +30,35 @@ internal static class VelopackLocatorExtension internal static void StartUpdaterHook(string aumid) { -#if !USEVELOPACK - // Add Squirrel Hooks - SquirrelAwareApp.HandleEvents( - // Add shortcut and uninstaller entry on first start-up - // ReSharper disable UnusedParameter.Local - (_, sqr) => - { - Console - .WriteLine("Please do not close this console window while Collapse is preparing the installation via Squirrel..."); - }, - (_, sqr) => - { - Console - .WriteLine("Please do not close this console window while Collapse is updating via Squirrel..."); - }, - onAppUninstall: (_, sqr) => - { - Console - .WriteLine("Uninstalling Collapse via Squirrel...\r\n" + - "Please do not close this console window while action is being performed!"); - }, - // ReSharper restore UnusedParameter.Local - onEveryRun: (_, _, _) => { } - ); -#else // Allocate the Velopack locator manually to avoid Velopack from re-assigning // its custom AUMID - var logger = ILoggerHelper.GetILogger("Velopack").ToVelopackLogger(); + IVelopackLogger? logger = ILoggerHelper.GetILogger("Velopack").ToVelopackLogger(); - var currentProcess = Process.GetCurrentProcess(); + Process currentProcess = Process.GetCurrentProcess(); - var locator = - new WindowsVelopackLocator(currentProcess.MainModule!.FileName, - (uint)currentProcess.Id, - logger); + WindowsVelopackLocator locator = + new(currentProcess.MainModule!.FileName, + (uint)currentProcess.Id, + logger); // HACK: Always ensure to set the AUMID field null so it won't // set the AUMID to its own. locator.GetLocatorAumidField() = null; - var velopackBuilder = VelopackApp.Build() - .OnRestarted(TryCleanupFallbackUpdate) - .OnAfterUpdateFastCallback(TryCleanupFallbackUpdate) - .OnFirstRun(TryCleanupFallbackUpdate) - .SetLocator(locator) - .SetLogger(logger); + VelopackApp velopackBuilder = VelopackApp.Build() + .OnRestarted(TryCleanupFallbackUpdate) + .OnAfterUpdateFastCallback(TryCleanupFallbackUpdate) + .OnFirstRun(TryCleanupFallbackUpdate) + .SetLocator(locator) + .SetLogger(logger); velopackBuilder.Run(); _ = Task.Run(DeleteVelopackLock); GenerateVelopackMetadata(aumid); + return; - void DeleteVelopackLock() + static void DeleteVelopackLock() { // Get the current application directory string currentAppDir = AppDomain.CurrentDomain.BaseDirectory; @@ -102,10 +79,8 @@ void DeleteVelopackLock() File.Delete(velopackLockPath); Logger.LogWriteLine(".velopack_lock file deleted successfully."); } -#endif } -#if USEVELOPACK public static void TryCleanupFallbackUpdate(SemanticVersion newVersion) { string currentExecutedAppFolder = LauncherConfig.AppExecutableDir.TrimEnd('\\'); @@ -126,7 +101,7 @@ public static void TryCleanupFallbackUpdate(SemanticVersion newVersion) string? currentExecutedParentFolder = Path.GetDirectoryName(currentExecutedAppFolder); if (currentExecutedParentFolder != null) { - DirectoryInfo directoryInfo = new DirectoryInfo(currentExecutedParentFolder); + DirectoryInfo directoryInfo = new(currentExecutedParentFolder); foreach (DirectoryInfo childLegacyAppSemVerFolder in directoryInfo.EnumerateDirectories("app-*", SearchOption.TopDirectoryOnly)) { @@ -138,7 +113,7 @@ public static void TryCleanupFallbackUpdate(SemanticVersion newVersion) // Try to remove squirrel temp clowd folder string squirrelTempPackagesFolder = Path.Combine(currentExecutedParentFolder, "SquirrelClowdTemp"); - DirectoryInfo squirrelTempPackagesFolderInfo = new DirectoryInfo(squirrelTempPackagesFolder); + DirectoryInfo squirrelTempPackagesFolderInfo = new(squirrelTempPackagesFolder); if (squirrelTempPackagesFolderInfo.Exists) { squirrelTempPackagesFolderInfo.Delete(true); @@ -193,7 +168,7 @@ public static void TryCleanupFallbackUpdate(SemanticVersion newVersion) // Try open the shortcut and check whether this shortcut is actually pointing to // CollapseLauncher.exe file - using ShellLink shellLink = new ShellLink(thisUserStartMenuShortcut); + using ShellLink shellLink = new(thisUserStartMenuShortcut); // Try to get the target path and its filename string shortcutTargetPath = shellLink.Target; if (!shortcutTargetPath.Equals(currentExecutedPath, StringComparison.OrdinalIgnoreCase)) @@ -219,7 +194,7 @@ public static void TryCleanupFallbackUpdate(SemanticVersion newVersion) return; - void RemoveSquirrelFilePath(string filePath) + static void RemoveSquirrelFilePath(string filePath) { if (!File.Exists(filePath)) { @@ -231,22 +206,19 @@ void RemoveSquirrelFilePath(string filePath) LogType.Default, true); } } -#endif public static string FindCollapseStubPath() { - var collapseMainPath = LauncherConfig.AppExecutablePath; + string collapseMainPath = LauncherConfig.AppExecutablePath; - #if USEVELOPACK const string collapseExecName = "CollapseLauncher.exe"; - var collapseStubPath = Path.Combine(Directory.GetParent(Path.GetDirectoryName(collapseMainPath)!)!.FullName, - collapseExecName); + string collapseStubPath = Path.Combine(Directory.GetParent(Path.GetDirectoryName(collapseMainPath)!)!.FullName, + collapseExecName); if (File.Exists(collapseStubPath)) { Logger.LogWriteLine($"Found stub at {collapseStubPath}", LogType.Default, true); return collapseStubPath; } - #endif Logger.LogWriteLine($"Collapse stub is not used anymore, returning current executable path!\r\n\t{collapseMainPath}", LogType.Default, true); @@ -274,16 +246,16 @@ internal static void GenerateVelopackMetadata(string aumid) """; // Adding shortcutAumid for future use, since they typo-ed the XML tag LMAO - var currentVersion = LauncherUpdateHelper.LauncherCurrentVersionString; - var xmlPath = Path.Combine(LauncherConfig.AppExecutableDir, "sq.version"); - var xmlContent = string.Format(xmlTemplate, currentVersion, LauncherConfig.IsPreview ? "preview" : "stable", - aumid).ReplaceLineEndings("\n"); + string currentVersion = LauncherUpdateHelper.LauncherCurrentVersionString; + string xmlPath = Path.Combine(LauncherConfig.AppExecutableDir, "sq.version"); + string xmlContent = string.Format(xmlTemplate, currentVersion, LauncherConfig.IsPreview ? "preview" : "stable", + aumid).ReplaceLineEndings("\n"); // Check if file exist if (File.Exists(xmlPath)) { // Check if the content is the same - var existingContent = File.ReadAllText(xmlPath); + string existingContent = File.ReadAllText(xmlPath); if (existingContent.ReplaceLineEndings("\n").Equals(xmlContent, StringComparison.Ordinal)) { Logger.LogWriteLine("Velopack metadata is already up-to-date, skipping write operation.", LogType.Default, true); diff --git a/CollapseLauncher/Classes/Extension/WriteableBitmapExtension.cs b/CollapseLauncher/Classes/Extension/WriteableBitmapExtension.cs new file mode 100644 index 000000000..246b60bca --- /dev/null +++ b/CollapseLauncher/Classes/Extension/WriteableBitmapExtension.cs @@ -0,0 +1,36 @@ +using Hi3Helper; +using Hi3Helper.SentryHelper; +using Hi3Helper.Win32.ManagedTools; +using Hi3Helper.Win32.Native.Interfaces; +using Hi3Helper.Win32.WinRT.IBufferCOM; +using Microsoft.UI.Xaml.Media.Imaging; +using System; +// ReSharper disable CheckNamespace +#pragma warning disable IDE0130 + +#nullable enable +namespace CollapseLauncher.Extension +{ + internal static class WriteableBitmapExtension + { + internal static nint GetBufferPointer(this WriteableBitmap writeableBitmap) + { + IBufferByteAccess byteAccess = writeableBitmap.PixelBuffer.AsBufferByteAccess(); + try + { + byteAccess.Buffer(out nint bufferP); + return bufferP; + } + finally + { + if (!ComMarshal.TryReleaseComObject(byteAccess, out Exception? ex)) + { + SentryHelper.ExceptionHandler(ex, SentryHelper.ExceptionType.UnhandledOther); + Logger.LogWriteLine($"Cannot free the instance of IBufferByteAccess from WriteableBitmap\r\n{ex}", + LogType.Error, + true); + } + } + } + } +} diff --git a/CollapseLauncher/Classes/FileDialog/FileDialogHelper.cs b/CollapseLauncher/Classes/FileDialog/FileDialogHelper.cs index 1e5a9e7df..df63c187f 100644 --- a/CollapseLauncher/Classes/FileDialog/FileDialogHelper.cs +++ b/CollapseLauncher/Classes/FileDialog/FileDialogHelper.cs @@ -22,7 +22,7 @@ internal static class FileDialogHelper /// The title of the folder dialog /// Override path check and returns the actual string /// If is empty, then it's cancelled. Otherwise, returns a selected path - internal static async Task GetRestrictedFolderPathDialog(string? title = null, Func? checkOverride = null) + internal static async Task GetRestrictedFolderPathDialog(string? title = null, Func>? checkOverride = null) { StartGet: string dirPath = await FileDialogNative.GetFolderPicker(title); @@ -31,7 +31,7 @@ internal static async Task GetRestrictedFolderPathDialog(string? title = return dirPath; string? existingCheckOverride; - if (checkOverride != null && !string.IsNullOrEmpty(existingCheckOverride = checkOverride(dirPath))) + if (checkOverride != null && !string.IsNullOrEmpty(existingCheckOverride = await checkOverride(dirPath))) { return existingCheckOverride; } diff --git a/CollapseLauncher/Classes/GameManagement/GamePlaytime/Playtime.cs b/CollapseLauncher/Classes/GameManagement/GamePlaytime/Playtime.cs index 3d84a90ce..7f7ab27a0 100644 --- a/CollapseLauncher/Classes/GameManagement/GamePlaytime/Playtime.cs +++ b/CollapseLauncher/Classes/GameManagement/GamePlaytime/Playtime.cs @@ -7,10 +7,12 @@ using System.Collections.Generic; using System.Diagnostics; using System.IO; +using System.Threading; using System.Threading.Tasks; -using System.Timers; using static CollapseLauncher.Dialogs.SimpleDialogs; using static Hi3Helper.Logger; + +using Timer = System.Timers.Timer; // ReSharper disable PartialTypeWithSinglePart // ReSharper disable AsyncVoidMethod @@ -45,7 +47,8 @@ public Playtime(IGameVersion gameVersionManager, IGameSettings gameSettings) gameSettings); - if (DbHandler.IsEnabled && gameSettings.AsIGameSettingsUniversal().SettingsCollapseMisc.IsSyncPlaytimeToDatabase) + IGameSettingsUniversal gameSettingsUniversal = gameSettings.AsIGameSettingsUniversal(); + if ((DbHandler.IsEnabled ?? false) && gameSettingsUniversal.SettingsCollapseMisc.IsSyncPlaytimeToDatabase) _ = CheckDb(); } #nullable disable @@ -79,7 +82,7 @@ public void Reset() LogWriteLine($"Playtime counter was reset! (Previous value: {TimeSpanToString(oldTimeSpan)})", writeToLog: true); } - public async void StartSession(Process proc, DateTime? begin = null) + public async Task StartSessionFromAwaiter(Func awaiterTask, DateTime? begin = null) { try { @@ -119,7 +122,8 @@ public async void StartSession(Process proc, DateTime? begin = null) }; inGameTimer.Start(); - await proc.WaitForExitAsync(_token.Token); + + await awaiterTask(_token.Token); inGameTimer.Stop(); } @@ -147,6 +151,9 @@ public async void StartSession(Process proc, DateTime? begin = null) } } + public Task StartSession(Process proc, DateTime? begin = null) + => StartSessionFromAwaiter(proc.WaitForExitAsync, begin); + private static string TimeSpanToString(TimeSpan timeSpan) => $"{timeSpan.Days * 24 + timeSpan.Hours}h {timeSpan.Minutes}m"; public void Dispose() diff --git a/CollapseLauncher/Classes/GameManagement/GamePlaytime/RegistryClass/CollapsePlaytime.cs b/CollapseLauncher/Classes/GameManagement/GamePlaytime/RegistryClass/CollapsePlaytime.cs index ce856ae34..8a84b4d01 100644 --- a/CollapseLauncher/Classes/GameManagement/GamePlaytime/RegistryClass/CollapsePlaytime.cs +++ b/CollapseLauncher/Classes/GameManagement/GamePlaytime/RegistryClass/CollapsePlaytime.cs @@ -1,4 +1,5 @@ using CollapseLauncher.Helper.Database; +using CollapseLauncher.Helper.Metadata; using CollapseLauncher.Interfaces; using Hi3Helper; using Hi3Helper.SentryHelper; @@ -26,8 +27,9 @@ internal class CollapsePlaytime private static HashSet _isDeserializing = []; private RegistryKey _registryRoot; private int _hashID; - private IGameVersion _gameVersion; + private IGameVersion _gameVersion; private IGameSettings _gameSettings; + private string _gameType; #endregion @@ -115,6 +117,8 @@ public static CollapsePlaytime Load(RegistryKey root, int hashID, } playtimeInner._gameVersion = gameVersion; + playtimeInner._gameType = gameVersion.GameType is not GameNameType.Plugin + ? gameVersion.GameType.ToString() : gameVersion.GameName?.Replace(" ", ""); playtimeInner._gameSettings = gameSettings; playtimeInner._registryRoot = root; playtimeInner._hashID = hashID; @@ -164,7 +168,7 @@ public void Save(bool forceUpdateDb = false) if (lastPlayed != null) _registryRoot.SetValue(LastPlayedValueName, lastPlayed, RegistryValueKind.DWord); - if (DbHandler.IsEnabled && _gameSettings.AsIGameSettingsUniversal().SettingsCollapseMisc.IsSyncPlaytimeToDatabase && + if ((DbHandler.IsEnabled ?? false) && _gameSettings.AsIGameSettingsUniversal().SettingsCollapseMisc.IsSyncPlaytimeToDatabase && ((DateTime.Now - LastDbUpdate).TotalMinutes >= 5 || forceUpdateDb)) // Sync only every 5 minutes to reduce database usage { _ = UpdatePlaytime_Database_Push(data, TotalPlaytime.TotalSeconds, lastPlayed); @@ -278,10 +282,10 @@ public void AddMinute() private int? _unixStampDb; // Key names - private string KeyPlaytimeJson => $"{_gameVersion.GameType.ToString()}-{_gameVersion.GameRegion}-pt-js"; - private string KeyTotalTime => $"{_gameVersion.GameType.ToString()}-{_gameVersion.GameRegion}-pt-total"; - private string KeyLastPlayed => $"{_gameVersion.GameType.ToString()}-{_gameVersion.GameRegion}-pt-lastPlayed"; - private string KeyLastUpdated => $"{_gameVersion.GameType.ToString()}-{_gameVersion.GameRegion}-pt-lu"; + private string KeyPlaytimeJson => $"{_gameType}-{_gameVersion.GameRegion}-pt-js"; + private string KeyTotalTime => $"{_gameType}-{_gameVersion.GameRegion}-pt-total"; + private string KeyLastPlayed => $"{_gameType}-{_gameVersion.GameRegion}-pt-lastPlayed"; + private string KeyLastUpdated => $"{_gameType}-{_gameVersion.GameRegion}-pt-lu"; #region Sync Methods diff --git a/CollapseLauncher/Classes/GameManagement/GameSettings/BaseClass/SettingsBase.cs b/CollapseLauncher/Classes/GameManagement/GameSettings/BaseClass/SettingsBase.cs index e5e09fc15..746c50e06 100644 --- a/CollapseLauncher/Classes/GameManagement/GameSettings/BaseClass/SettingsBase.cs +++ b/CollapseLauncher/Classes/GameManagement/GameSettings/BaseClass/SettingsBase.cs @@ -41,6 +41,15 @@ internal static RegistryKey? RegistryRoot protected SettingsBase(IGameVersion gameVersionManager) => GameVersionManager = gameVersionManager; + public static IGameSettings CreateBaseFrom(IGameVersion gameVersionManager, bool isEnableResizableWindow = false) + { + SettingsBase settings = new SettingsBase(gameVersionManager); + settings.InitializeSettings(); + settings.SettingsCollapseScreen.UseResizableWindow = isEnableResizableWindow; + + return settings; + } + public virtual void InitializeSettings() { SettingsCustomArgument = CustomArgs.Load(); diff --git a/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.GameApi.cs b/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.GameApi.cs index c06354d2c..2f6816d7b 100644 --- a/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.GameApi.cs +++ b/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.GameApi.cs @@ -1,4 +1,5 @@ using Hi3Helper.Data; +using Hi3Helper.Plugin.Core.Management; using Hi3Helper.Shared.ClassStruct; using System; using System.Collections.Generic; @@ -15,7 +16,7 @@ namespace CollapseLauncher.GameManagement.Versioning internal partial class GameVersionBase { #region Game Region Resource Prop - public RegionResourceProp GameApiProp { get; set; } + public virtual RegionResourceProp? GameApiProp { get; set; } // Assign for the Game Delta-Patch properties (if any). // If there's no Delta-Patch, then set it to null. @@ -35,43 +36,11 @@ protected virtual DeltaPatchProperty? GameDeltaPatchProp #endregion #region Game Version API Properties - protected virtual GameVersion? SdkVersionAPI - { - get - { - // Return null if the plugin is not exist - if (GameApiProp.data?.sdk == null) - return null; - - // If the version provided by the SDK API, return the result - return GameVersion.TryParse(GameApiProp.data?.sdk?.version, out GameVersion? result) ? result : - // Otherwise, return null - null; - } - } - - protected virtual GameVersion? GameVersionAPI - { - get => GameVersion.TryParse(GameApiProp.data?.game?.latest?.version, out GameVersion? version) ? version : null; - } - - protected virtual GameVersion? GameVersionAPIPreload - { - get - { - GameVersion? currentInstalled = GameVersionInstalled; + protected virtual GameVersion? SdkVersionAPI => GameApiProp?.data?.sdk?.version; - // If no installation installed, then return null - if (currentInstalled == null) - return null; + protected virtual GameVersion? GameVersionAPI => GameApiProp?.data?.game?.latest?.version; - // Check if the pre_download_game property has value. If not, then return null - if (string.IsNullOrEmpty(GameApiProp.data?.pre_download_game?.latest?.version)) - return null; - - return new GameVersion(GameApiProp.data.pre_download_game.latest.version); - } - } + protected virtual GameVersion? GameVersionAPIPreload => GameVersionInstalled ?? GameApiProp?.data?.pre_download_game?.latest?.version; protected virtual Dictionary PluginVersionsAPI { @@ -81,13 +50,13 @@ protected virtual Dictionary PluginVersionsAPI Dictionary value = new(); // Return empty if the plugin is not exist - if (GameApiProp.data?.plugins == null || GameApiProp.data.plugins.Count == 0) + if (GameApiProp?.data?.plugins == null || GameApiProp.data.plugins.Count == 0) { return value; } // Get the version and convert it into GameVersion - foreach (var plugin in GameApiProp.data.plugins + foreach ((string? plugin_id, string? version) plugin in GameApiProp.data.plugins .Where(plugin => plugin.plugin_id != null) .Select(plugin => (plugin.plugin_id, plugin.version))) { @@ -95,7 +64,7 @@ protected virtual Dictionary PluginVersionsAPI { continue; } - value.TryAdd(plugin.plugin_id, new GameVersion(plugin.version)); + value.TryAdd(plugin.plugin_id, plugin.version); } return value; @@ -116,14 +85,8 @@ protected virtual GameVersion? GameVersionInstalled // Get the game version string? val = gameVersion; - // If not, then return as null - if (string.IsNullOrEmpty(val)) - { - return null; - } - // Otherwise, return the game version - return new GameVersion(val); + return val; } set { @@ -140,13 +103,13 @@ protected virtual Dictionary? PluginVersionsInstalled Dictionary value = new(); // Return empty if the plugin is not exist - if (GameApiProp.data?.plugins == null || GameApiProp.data?.plugins?.Count == 0) + if (GameApiProp?.data?.plugins == null || GameApiProp.data?.plugins?.Count == 0) { return value; } // Get the version and convert it into GameVersion - foreach (var plugin in GameApiProp.data?.plugins!) + foreach (RegionResourcePlugin plugin in GameApiProp?.data?.plugins!) { // Check if the INI has plugin_ID_version key... string keyName = $"plugin_{plugin.plugin_id}_version"; @@ -156,14 +119,9 @@ protected virtual Dictionary? PluginVersionsInstalled } string? val = getPluginVersion; - if (string.IsNullOrEmpty(val)) - { - continue; - } - if (plugin.plugin_id != null) { - _ = value.TryAdd(plugin.plugin_id, new GameVersion(val)); + _ = value.TryAdd(plugin.plugin_id, val); } } @@ -183,26 +141,20 @@ protected virtual GameVersion? SdkVersionInstalled // Check if it has no value, then return null string? versionName = pluginSdkVersion; - if (string.IsNullOrEmpty(versionName)) - return null; // Try parse the version. - return !GameVersion.TryParse(versionName, out GameVersion? result) ? - // If it's not valid, then return null - null : - // Otherwise, return the result - result; + return versionName; } set => UpdateSdkVersion(value ?? SdkVersionAPI); } #endregion #region Game Version API Methods - public GameVersion? GetGameExistingVersion() => GameVersionInstalled; + public virtual GameVersion? GetGameExistingVersion() => GameVersionInstalled; - public GameVersion? GetGameVersionApi() => GameVersionAPI; + public virtual GameVersion? GetGameVersionApi() => GameVersionAPI; - public GameVersion? GetGameVersionApiPreload() => GameVersionAPIPreload; + public virtual GameVersion? GetGameVersionApiPreload() => GameVersionAPIPreload; #endregion #region Game Info Methods @@ -212,7 +164,7 @@ public virtual List GetGameLatestZip(GameInstallStateEnum { // Initialize the return list List returnList = []; - RegionResourceVersion? currentLatestRegionPackage = GameApiProp.data?.game?.latest; + RegionResourceVersion? currentLatestRegionPackage = GameApiProp?.data?.game?.latest; // If the current latest region package is null, then throw if (currentLatestRegionPackage == null) @@ -230,7 +182,7 @@ public virtual List GetGameLatestZip(GameInstallStateEnum } // Try to get the diff file by the first or default (null) - if (GameApiProp.data?.game?.diffs == null) + if (GameApiProp?.data?.game?.diffs == null) { return returnList; } @@ -250,7 +202,7 @@ public virtual List GetGameLatestZip(GameInstallStateEnum List returnList = []; // If the preload is not exist, then return null - if (GameApiProp.data?.pre_download_game == null + if (GameApiProp?.data?.pre_download_game == null || (GameApiProp.data?.pre_download_game?.diffs?.Count ?? 0) == 0 && GameApiProp.data?.pre_download_game?.latest == null) { @@ -273,8 +225,8 @@ public virtual List GetGameLatestZip(GameInstallStateEnum public virtual List? GetGamePluginZip() { // Check if the plugin is not empty, then add it - if ((GameApiProp.data?.plugins?.Count ?? 0) != 0) - return [.. GameApiProp.data?.plugins!]; + if ((GameApiProp?.data?.plugins?.Count ?? 0) != 0) + return [.. GameApiProp?.data?.plugins!]; // Return null if plugin is unavailable return null; @@ -283,7 +235,7 @@ public virtual List GetGameLatestZip(GameInstallStateEnum public virtual List? GetGameSdkZip() { // Check if the sdk is not empty, then add it - if (GameApiProp.data?.sdk == null) + if (GameApiProp?.data?.sdk == null) { return null; } diff --git a/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.GameState.cs b/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.GameState.cs index 0212f528d..02896bacc 100644 --- a/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.GameState.cs +++ b/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.GameState.cs @@ -5,7 +5,9 @@ using CollapseLauncher.Helper.Metadata; using Hi3Helper; using Hi3Helper.Data; +using Hi3Helper.EncTool.Hashes; using Hi3Helper.EncTool.Parser.AssetIndex; +using Hi3Helper.Plugin.Core.Management; using Hi3Helper.SentryHelper; using Hi3Helper.Shared.ClassStruct; using Microsoft.UI.Text; @@ -114,9 +116,9 @@ protected virtual bool IsGameHasBilibiliStatus(string? executableName) public virtual bool IsGameHasPreload() { if (GamePreset.LauncherType == LauncherType.Sophon) - return GameApiProp.data?.pre_download_game != null; + return GameApiProp?.data?.pre_download_game != null; - return GameApiProp.data?.pre_download_game?.latest != null || GameApiProp.data?.pre_download_game?.diffs != null; + return GameApiProp?.data?.pre_download_game?.latest != null || GameApiProp?.data?.pre_download_game?.diffs != null; } public virtual bool IsGameHasDeltaPatch() => false; @@ -124,10 +126,9 @@ public virtual bool IsGameHasPreload() public virtual bool IsGameVersionMatch() // Ensure if the GameVersionInstalled is available (this is coming from the Game Profile's Ini file). // If not, then return false to indicate that the game isn't installed. - => GameVersionInstalled.HasValue && - // If the game is installed and the version doesn't match, then return to false. - // But if the game version matches, then return to true. - GameVersionInstalled.Value.IsMatch(GameVersionAPI); + // If the game is installed and the version doesn't match, then return to false. + // But if the game version matches, then return to true. + => GameVersionInstalled == GameVersionAPI; public virtual async ValueTask IsPluginVersionsMatch() { @@ -154,7 +155,7 @@ public virtual async ValueTask IsPluginVersionsMatch() foreach (KeyValuePair pluginVersion in pluginVersions) { if (pluginVersionsInstalled.TryGetValue(pluginVersion.Key, out GameVersion installedPluginVersion) && - pluginVersion.Value.IsMatch(installedPluginVersion)) + pluginVersion.Value == installedPluginVersion) { continue; } @@ -227,7 +228,7 @@ protected virtual bool IsGameInstalledInner([NotNullWhen(true)] string? executab FileInfo execFileInfo = new FileInfo(Path.Combine(GameDirPath, executableName)); // Check if the vendor type exist. If not, then return false - if (VendorTypeProp.GameName == null || !VendorTypeProp.VendorType.HasValue) + if (VendorTypeProp.GameName == null || string.IsNullOrEmpty(VendorTypeProp.VendorType)) { return false; } @@ -262,15 +263,9 @@ protected virtual bool IsDiskPartitionExist(string? path) { try { - ReadOnlySpan pathRoot = Path.GetPathRoot(path); - if (pathRoot.IsEmpty) - { - return false; - } - - string pathRootStr = pathRoot.ToString(); - // Return from Directory.Exists() since the IsReady property use the same method. - return Directory.Exists(pathRootStr); + var pathRoot = Path.GetPathRoot(path); + return !string.IsNullOrEmpty(pathRoot) && Directory.Exists(pathRoot); + // Return from Directory.Exists() since the IsReady property use the same method. } catch (Exception) { @@ -415,9 +410,9 @@ public virtual async ValueTask CheckSdkUpdate(string validatePath) if (!File.Exists(filePath)) return false; - await using FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read); - byte[] hashArray = await Hash.GetCryptoHashAsync(fs); - string md5 = Convert.ToHexStringLower(hashArray); + await using FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read); + byte[] hashArray = await CryptoHashUtility.ThreadSafe.GetHashFromStreamAsync(fs); + string md5 = Convert.ToHexStringLower(hashArray); if (!md5.Equals(pkgVersion.md5, StringComparison.OrdinalIgnoreCase)) return false; } @@ -435,19 +430,14 @@ public virtual async ValueTask CheckSdkUpdate(string validatePath) public virtual async ValueTask> CheckPluginUpdate(string pluginKey) { List result = []; - if (GameApiProp.data?.plugins == null) + if (GameApiProp?.data?.plugins == null) { return result; } RegionResourcePlugin? plugin = GameApiProp.data?.plugins? .FirstOrDefault(x => x.plugin_id != null && x.plugin_id.Equals(pluginKey, StringComparison.OrdinalIgnoreCase)); - if (plugin == null) - { - return result; - } - - if (plugin.package?.validate == null) + if (plugin?.package?.validate == null) { return result; } @@ -497,10 +487,10 @@ public virtual async ValueTask> CheckPluginUpdate(str } // Get the preload status - bool isGameHasPreload = IsGameHasPreload() && GameVersionInstalled.Value.IsMatch(gameVersion); + bool isGameHasPreload = IsGameHasPreload() && GameVersionInstalled == gameVersion; // If the game version doesn't match with the API's version, then go to the next check. - if (GameVersionInstalled.Value.IsMatch(gameVersion) && !isGameHasPreload) + if (GameVersionInstalled == gameVersion && !isGameHasPreload) { return null; } @@ -519,16 +509,16 @@ public virtual async ValueTask> CheckPluginUpdate(str // Initialize patchProperty for versioning check. DeltaPatchProperty patchProperty = new DeltaPatchProperty(path); // If the version of the game is valid and the profile name matches, then return the property. - if (GameVersionInstalled.Value.IsMatch(patchProperty.SourceVer) - && (GameVersionAPI?.IsMatch(patchProperty.TargetVer) ?? false) + if (GameVersionInstalled == patchProperty.SourceVer + && GameVersionAPI == patchProperty.TargetVer && patchProperty.ProfileName == GamePreset.ProfileName) { return patchProperty; } // If the state is on preload, then try check the preload delta patch - if (GameVersionAPIPreload != null && isGameHasPreload && GameVersionInstalled.Value.IsMatch(patchProperty.SourceVer) - && GameVersionAPIPreload.Value.IsMatch(patchProperty.TargetVer) + if (GameVersionAPIPreload.HasValue && isGameHasPreload && GameVersionInstalled == patchProperty.SourceVer + && GameVersionAPIPreload == patchProperty.TargetVer && patchProperty.ProfileName == GamePreset.ProfileName) { return patchProperty; diff --git a/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.IniConfig.cs b/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.IniConfig.cs index a13c46f28..658796a62 100644 --- a/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.IniConfig.cs +++ b/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.IniConfig.cs @@ -1,12 +1,15 @@ using CollapseLauncher.Helper.Metadata; using Hi3Helper; using Hi3Helper.Data; +using Hi3Helper.Plugin.Core.Management; using Hi3Helper.Shared.Region; using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.IO; using System.Text; +using System.Threading.Tasks; + // ReSharper disable StringLiteralTypo // ReSharper disable IdentifierTypo // ReSharper disable CommentTypo @@ -62,8 +65,8 @@ internal partial class GameVersionBase #region Game Config Properties protected virtual IniFile GameIniProfile { get; } = new(); protected virtual IniFile GameIniVersion { get; } = new(); - public virtual IniSection GameIniVersionSection { get => GameIniVersion[DefaultIniVersionSection]; } - public virtual IniSection GameIniProfileSection { get => GameIniProfile[DefaultIniProfileSection]; } + public virtual IniSection? GameIniVersionSection { get => GameIniVersion[DefaultIniVersionSection]; } + public virtual IniSection GameIniProfileSection { get => GameIniProfile[DefaultIniProfileSection]; } #endregion #region Game Config Path Properties @@ -173,9 +176,12 @@ protected virtual void FixInvalidGameConfigId() string gameIniVersionPath = Path.Combine(GameDirPath, ConfigFileName); - GameIniVersionSection[channelIdKeyName] = GamePreset.ChannelID ?? 0; - GameIniVersionSection[subChannelIdKeyName] = GamePreset.SubChannelID ?? 0; - GameIniVersionSection[cpsKeyName] = GamePreset.LauncherCPSType; + if (GameIniVersionSection != null) + { + GameIniVersionSection[channelIdKeyName] = GamePreset.ChannelID ?? 0; + GameIniVersionSection[subChannelIdKeyName] = GamePreset.SubChannelID ?? 0; + GameIniVersionSection[cpsKeyName] = GamePreset.LauncherCPSType; + } SaveGameIni(gameIniVersionPath, GameIniVersion); } @@ -196,7 +202,7 @@ protected virtual void FixInvalidGameBilibiliStatus(string? executableName) #endregion #region Update Game Config Methods - public void UpdateGamePath(string? path, bool saveValue = true) + public virtual void UpdateGamePath(string? path, bool saveValue = true) { GameIniProfileSection["game_install_path"] = path?.Replace('\\', '/'); if (saveValue) @@ -205,7 +211,7 @@ public void UpdateGamePath(string? path, bool saveValue = true) } } - public void UpdateGameVersionToLatest(bool saveValue = true) + public virtual void UpdateGameVersionToLatest(bool saveValue = true) { GameVersionInstalled = GameVersionAPI; if (!saveValue) @@ -218,20 +224,27 @@ public void UpdateGameVersionToLatest(bool saveValue = true) UpdatePluginVersions(PluginVersionsAPI); } - public void UpdateGameVersion(GameVersion? version, bool saveValue = true) + public virtual void UpdateGameVersion(GameVersion? version, bool saveValue = true) { - GameIniVersionSection["game_version"] = version?.VersionString; + if (GameIniVersionSection != null) + { + GameIniVersionSection["game_version"] = version?.VersionString; + } + if (saveValue) { SaveGameIni(GameIniVersionPath, GameIniVersion); } } - public void UpdateGameChannels(bool saveValue = true) + public virtual void UpdateGameChannels(bool saveValue = true) { - GameIniVersionSection["channel"] = DefaultGameChannelID; - GameIniVersionSection["sub_channel"] = DefaultGameSubChannelID; - GameIniVersionSection["cps"] = DefaultGameCps; + if (GameIniVersionSection != null) + { + GameIniVersionSection["channel"] = DefaultGameChannelID; + GameIniVersionSection["sub_channel"] = DefaultGameSubChannelID; + GameIniVersionSection["cps"] = DefaultGameCps; + } if (saveValue) { @@ -239,7 +252,7 @@ public void UpdateGameChannels(bool saveValue = true) } } - public void UpdatePluginVersions(Dictionary versions, bool saveValue = true) + public virtual void UpdatePluginVersions(Dictionary versions, bool saveValue = true) { // If the plugin is empty, ignore it if (versions.Count == 0) @@ -253,7 +266,10 @@ public void UpdatePluginVersions(Dictionary versions, bool string keyName = $"plugin_{version.Key}_version"; // Set the value - GameIniVersionSection[keyName] = version.Value.VersionString; + if (GameIniVersionSection != null) + { + GameIniVersionSection[keyName] = version.Value.VersionString; + } } if (saveValue) @@ -262,19 +278,22 @@ public void UpdatePluginVersions(Dictionary versions, bool } } - public void UpdateSdkVersion(GameVersion? version, bool saveValue = true) + public virtual void UpdateSdkVersion(GameVersion? version, bool saveValue = true) { // If the version is null, return if (!version.HasValue) return; // If the sdk is empty, ignore it - if (GameApiProp.data?.sdk == null) + if (GameApiProp?.data?.sdk == null) return; // Set the value const string keyName = "plugin_sdk_version"; - GameIniVersionSection[keyName] = version.ToString(); + if (GameIniVersionSection != null) + { + GameIniVersionSection[keyName] = version.ToString(); + } if (saveValue) { @@ -284,23 +303,24 @@ public void UpdateSdkVersion(GameVersion? version, bool saveValue = true) #endregion #region Find Game Config Methods - public virtual string? FindGameInstallationPath(string path) - { - // Try to find the base game path from the executable location. - string? basePath = TryFindGamePathFromExecutableAndConfig(path, GamePreset.GameExecutableName); - - // If the executable file and version config doesn't exist (null), then return null. - if (string.IsNullOrEmpty(basePath)) + public virtual Task FindGameInstallationPath(string path) + => Task.Factory.StartNew(() => { - return null; - } + // Try to find the base game path from the executable location. + string? basePath = TryFindGamePathFromExecutableAndConfig(path, GamePreset.GameExecutableName); - // Check if the ini file does have the "game_version" value. - string iniPath = Path.Combine(basePath, ConfigFileName); - return IsTryParseIniVersionExist(iniPath) ? basePath : - // If the file doesn't exist, return as null. - null; - } + // If the executable file and version config doesn't exist (null), then return null. + if (string.IsNullOrEmpty(basePath)) + { + return null; + } + + // Check if the ini file does have the "game_version" value. + string iniPath = Path.Combine(basePath, ConfigFileName); + return IsTryParseIniVersionExist(iniPath) ? basePath : + // If the file doesn't exist, return as null. + null; + }); protected virtual string? TryFindGamePathFromExecutableAndConfig(string path, string? executableName) { diff --git a/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.PresetConfig.cs b/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.PresetConfig.cs index 63509da3d..aebda5f08 100644 --- a/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.PresetConfig.cs +++ b/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.PresetConfig.cs @@ -13,8 +13,8 @@ namespace CollapseLauncher.GameManagement.Versioning internal partial class GameVersionBase { #region Game Config Properties - public string GameName { get; set; } - public string GameRegion { get; set; } + public virtual string? GameName { get; set; } + public virtual string? GameRegion { get; set; } public virtual GameVendorProp VendorTypeProp { get; private set; } public virtual GameNameType GameType { diff --git a/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.cs b/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.cs index d4babfd64..46f036f82 100644 --- a/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.cs +++ b/CollapseLauncher/Classes/GameManagement/Versioning/GameVersionBase.cs @@ -9,15 +9,19 @@ namespace CollapseLauncher.GameManagement.Versioning { internal partial class GameVersionBase : IGameVersion { - protected GameVersionBase(RegionResourceProp gameRegionProp, string gameName, string gameRegion) + protected GameVersionBase(RegionResourceProp? gameRegionProp, string? gameName, string? gameRegion) { - GameApiProp = gameRegionProp; - GameName = gameName; - GameRegion = gameRegion; + // ReSharper disable VirtualMemberCallInConstructor + GameApiProp = gameRegionProp; + GameName = gameName; + GameRegion = gameRegion; + // ReSharper enable VirtualMemberCallInConstructor // Initialize INI Prop ahead of other operations // ReSharper disable once VirtualMemberCallInConstructor InitializeIniProp(); } + + protected GameVersionBase() { } } } \ No newline at end of file diff --git a/CollapseLauncher/Classes/GamePresetProperty.cs b/CollapseLauncher/Classes/GamePresetProperty.cs index 8da18d4d5..097e6cba7 100644 --- a/CollapseLauncher/Classes/GamePresetProperty.cs +++ b/CollapseLauncher/Classes/GamePresetProperty.cs @@ -1,4 +1,5 @@ using CollapseLauncher.GamePlaytime; +using CollapseLauncher.GameSettings.Base; using CollapseLauncher.GameSettings.Genshin; using CollapseLauncher.GameSettings.Honkai; using CollapseLauncher.GameSettings.StarRail; @@ -10,14 +11,13 @@ using CollapseLauncher.InstallManager.StarRail; using CollapseLauncher.InstallManager.Zenless; using CollapseLauncher.Interfaces; +using CollapseLauncher.Plugins; using Hi3Helper; -using Hi3Helper.SentryHelper; using Hi3Helper.Win32.ManagedTools; using Hi3Helper.Win32.Native.Enums; using Microsoft.Extensions.Logging; using Microsoft.UI.Xaml; using System; -using System.Diagnostics.CodeAnalysis; using System.IO; // ReSharper disable UnusedMember.Global @@ -29,117 +29,117 @@ namespace CollapseLauncher { internal sealed partial class GamePresetProperty : IDisposable { - #pragma warning disable CS8618, CS9264 - internal GamePresetProperty(UIElement uiElementParent,RegionResourceProp apiResourceProp, string gameName, string gameRegion) - #pragma warning restore CS8618, CS9264 + internal static GamePresetProperty Create(UIElement uiElementParent, RegionResourceProp? apiResourceProp, string gameName, string gameRegion) { - if (LauncherMetadataHelper.LauncherMetadataConfig == null) + var gamePreset = LauncherMetadataHelper.LauncherMetadataConfig?[gameName]?[gameRegion]; + if (gamePreset == null) { - return; + throw new NullReferenceException($"Cannot find game with name: {gameName} and region: {gameRegion} on the currently loaded metadata config!"); } - var gamePreset = LauncherMetadataHelper.LauncherMetadataConfig[gameName]?[gameRegion]; - - if (gamePreset == null) + if (gamePreset.GameType == GameNameType.Plugin && + gamePreset is not PluginPresetConfigWrapper) { - throw new NullReferenceException($"Cannot find game with name: {gameName} and region: {gameRegion} on the currently loaded metadata config!"); + throw new InvalidCastException($"[GamePresetProperty.Ctor] The game preset with name: {gameName} and region: {gameRegion} is not a valid PluginPresetConfigWrapper instance!"); } - ApiResourceProp = apiResourceProp.Copy(); + GamePresetProperty property = new GamePresetProperty(); + + property.ApiResourceProp = apiResourceProp?.Copy(); switch (gamePreset.GameType) { case GameNameType.Honkai: - GameVersion = new GameTypeHonkaiVersion(ApiResourceProp, gameName, gameRegion); - GameSettings = new HonkaiSettings(GameVersion); - GameCache = new HonkaiCache(uiElementParent, GameVersion); - GameRepair = new HonkaiRepair(uiElementParent, GameVersion, GameCache, GameSettings); - GameInstall = new HonkaiInstall(uiElementParent, GameVersion, GameCache); + property.GameVersion = new GameTypeHonkaiVersion(apiResourceProp, gameName, gameRegion); + property.GameSettings = new HonkaiSettings(property.GameVersion); + property.GameCache = new HonkaiCache(uiElementParent, property.GameVersion); + property.GameRepair = new HonkaiRepair(uiElementParent, property.GameVersion, property.GameCache, property.GameSettings); + property.GameInstall = new HonkaiInstall(uiElementParent, property.GameVersion, property.GameCache); break; case GameNameType.StarRail: - GameVersion = new GameTypeStarRailVersion(ApiResourceProp, gameName, gameRegion); - GameSettings = new StarRailSettings(GameVersion); - GameCache = new StarRailCache(uiElementParent, GameVersion); - GameRepair = new StarRailRepair(uiElementParent, GameVersion); - GameInstall = new StarRailInstall(uiElementParent, GameVersion); + property.GameVersion = new GameTypeStarRailVersion(apiResourceProp, gameName, gameRegion); + property.GameSettings = new StarRailSettings(property.GameVersion); + property.GameCache = new StarRailCache(uiElementParent, property.GameVersion); + property.GameRepair = new StarRailRepair(uiElementParent, property.GameVersion); + property.GameInstall = new StarRailInstall(uiElementParent, property.GameVersion); break; case GameNameType.Genshin: - GameVersion = new GameTypeGenshinVersion(ApiResourceProp, gameName, gameRegion); - GameSettings = new GenshinSettings(GameVersion); - GameCache = null; - GameRepair = new GenshinRepair(uiElementParent, GameVersion, GameVersion.GameApiProp.data?.game?.latest?.decompressed_path ?? ""); - GameInstall = new GenshinInstall(uiElementParent, GameVersion); + property.GameVersion = new GameTypeGenshinVersion(apiResourceProp, gameName, gameRegion); + property.GameSettings = new GenshinSettings(property.GameVersion); + property.GameCache = null; + property.GameRepair = new GenshinRepair(uiElementParent, property.GameVersion, property.GameVersion.GameApiProp?.data?.game?.latest?.decompressed_path ?? ""); + property.GameInstall = new GenshinInstall(uiElementParent, property.GameVersion); break; case GameNameType.Zenless: - GameVersion = new GameTypeZenlessVersion(ApiResourceProp, gamePreset, gameName, gameRegion); - GameSettings = new ZenlessSettings(GameVersion); - GameCache = new ZenlessCache(uiElementParent, GameVersion, (GameSettings as ZenlessSettings)!); - GameRepair = new ZenlessRepair(uiElementParent, GameVersion, (GameSettings as ZenlessSettings)!); - GameInstall = new ZenlessInstall(uiElementParent, GameVersion, (GameSettings as ZenlessSettings)!); + property.GameVersion = new GameTypeZenlessVersion(apiResourceProp, gamePreset, gameName, gameRegion); + property.GameSettings = new ZenlessSettings(property.GameVersion); + property.GameCache = new ZenlessCache(uiElementParent, property.GameVersion, (property.GameSettings as ZenlessSettings)!); + property.GameRepair = new ZenlessRepair(uiElementParent, property.GameVersion, (property.GameSettings as ZenlessSettings)!); + property.GameInstall = new ZenlessInstall(uiElementParent, property.GameVersion, (property.GameSettings as ZenlessSettings)!); + break; + case GameNameType.Plugin: + PluginPresetConfigWrapper pluginPresetConfig = (PluginPresetConfigWrapper)gamePreset; + PluginGameVersionWrapper pluginGameVersion = new PluginGameVersionWrapper(pluginPresetConfig); + + property.GameVersion = pluginGameVersion; + property.GameSettings = SettingsBase.CreateBaseFrom(pluginGameVersion, true); + property.GameCache = null; + property.GameRepair = null; + property.GameInstall = new PluginGameInstallWrapper(uiElementParent, pluginPresetConfig, pluginGameVersion); break; case GameNameType.Unknown: default: throw new NotSupportedException($"[GamePresetProperty.Ctor] Game type: {gamePreset.GameType} ({gamePreset.ProfileName} - {gamePreset.ZoneName}) is not supported!"); } - GamePlaytime = new Playtime(GameVersion, GameSettings); - GamePropLogger = ILoggerHelper.GetILogger($"GameProp: {GameVersion.GameName} - {GameVersion.GameRegion}"); + property.GamePlaytime = new Playtime(property.GameVersion, property.GameSettings); + property.GamePropLogger = ILoggerHelper.GetILogger($"GameProp: {gameName} - {gameRegion}"); - SentryHelper.CurrentGameCategory = GameVersion.GameName; - SentryHelper.CurrentGameRegion = GameVersion.GameRegion; - SentryHelper.CurrentGameLocation = GameVersion.GameDirPath; - SentryHelper.CurrentGameInstalled = GameVersion.IsGameInstalled(); - SentryHelper.CurrentGameUpdated = GameVersion.IsGameVersionMatch(); - SentryHelper.CurrentGameHasPreload = GameVersion.IsGameHasPreload(); - SentryHelper.CurrentGameHasDelta = GameVersion.IsGameHasDeltaPatch(); + return property; } + internal bool IsPlugin => GamePreset is PluginPresetConfigWrapper; internal RegionResourceProp? ApiResourceProp { get; set; } internal IGameSettings? GameSettings { get; set; } internal IGamePlaytime? GamePlaytime { get; set; } internal IRepair? GameRepair { get; set; } internal ICache? GameCache { get; set; } - internal ILogger GamePropLogger { get; set; } + internal ILogger? GamePropLogger { get; set; } internal IGameVersion? GameVersion { get; set; } internal IGameInstallManager? GameInstall { get; set; } internal PresetConfig GamePreset { get => GameVersion?.GamePreset ?? throw new NullReferenceException(); } - - [field: AllowNull, MaybeNull] + internal string GameExecutableName { - get - { - if (string.IsNullOrEmpty(field)) - field = GamePreset.GameExecutableName ?? ""; - return field; - } + get => GamePreset.GameExecutableName ?? ""; } - [field: AllowNull, MaybeNull] internal string GameExecutableNameWithoutExtension { - get - { - if (string.IsNullOrEmpty(field)) - field = Path.GetFileNameWithoutExtension(GameExecutableName); - return field; - } + get => Path.GetFileNameWithoutExtension(GameExecutableName); } - [field: AllowNull, MaybeNull] internal string GameExecutableDir { - get => field ??= GameVersion?.GameDirPath ?? throw new NullReferenceException(); + get => GameVersion?.GameDirPath ?? throw new NullReferenceException(); } - [field: AllowNull, MaybeNull] internal string GameExecutablePath { - get => field ??= Path.Combine(GameExecutableDir, GameExecutableName); + get => Path.Combine(GameExecutableDir, GameExecutableName); } internal bool IsGameRunning { - get => ProcessChecker.IsProcessExist(GameExecutableName, out _, out _, GameExecutablePath, GamePropLogger); + get + { + // Try to use plugin's game launch API + if (GamePreset is PluginPresetConfigWrapper { RunGameContext.CanUseGameLaunchApi: true } asPluginPresetConfig) + { + return asPluginPresetConfig.RunGameContext.IsGameRunning; + } + + return ProcessChecker.IsProcessExist(GameExecutableName, out _, out _, GameExecutablePath, GamePropLogger); + } } internal bool GetIsGameProcessRunning(int processId) diff --git a/CollapseLauncher/Classes/GamePropertyVault.cs b/CollapseLauncher/Classes/GamePropertyVault.cs index 5f3839ba8..7e825c19d 100644 --- a/CollapseLauncher/Classes/GamePropertyVault.cs +++ b/CollapseLauncher/Classes/GamePropertyVault.cs @@ -56,7 +56,7 @@ public static GamePresetProperty GetCurrentGameProperty() throw new KeyNotFoundException($"Cached region with Hash ID: {hashId} was not found in the vault!"); } - public static async Task LoadGameProperty(UIElement uiElementParent, RegionResourceProp apiResourceProp, string gameName, string gameRegion) + public static void LoadGameProperty(UIElement uiElementParent, RegionResourceProp apiResourceProp, string gameName, string gameRegion) { if (LauncherMetadataHelper.LauncherMetadataConfig?[gameName]? .TryGetValue(gameRegion, out PresetConfig? gamePreset) ?? false) @@ -65,7 +65,7 @@ public static async Task LoadGameProperty(UIElement uiElementParent, RegionResou CurrentGameHashID = gamePreset.HashID; } - await Task.Run(() => RegisterGameProperty(uiElementParent, apiResourceProp, gameName, gameRegion)); + RegisterGameProperty(uiElementParent, apiResourceProp, gameName, gameRegion); } private static void RegisterGameProperty(UIElement uiElementParent, RegionResourceProp apiResourceProp, string gameName, string gameRegion) @@ -80,23 +80,40 @@ private static void RegisterGameProperty(UIElement uiElementParent, RegionResour return; } - CleanupUnusedGameProperty(); + // This is disabled due to early Weak Reference by GC, causing the property + // (especially the one with background activity) being garbage collected. + // CleanupUnusedGameProperty(); if (Vault.TryGetValue(gamePreset.HashID, out GamePresetProperty? value)) { #if DEBUG Logger.LogWriteLine($"[GamePropertyVault] Game property has been cached by Hash ID: {gamePreset.HashID}", LogType.Debug, true); #endif value.GameVersion?.Reinitialize(); + UpdateSentryState(value); return; } - GamePresetProperty property = new GamePresetProperty(uiElementParent, apiResourceProp, gameName, gameRegion); + GamePresetProperty property = GamePresetProperty.Create(uiElementParent, apiResourceProp, gameName, gameRegion); + UpdateSentryState(property); _ = Vault.TryAdd(gamePreset.HashID, property); #if DEBUG Logger.LogWriteLine($"[GamePropertyVault] Creating & caching game property by Hash ID: {gamePreset.HashID}", LogType.Debug, true); #endif } + internal static void UpdateSentryState(GamePresetProperty property) + { + SentryHelper.CurrentGameCategory = property.GameVersion?.GameName ?? string.Empty; + SentryHelper.CurrentGameRegion = property.GameVersion?.GameRegion ?? string.Empty; + SentryHelper.CurrentGameLocation = property.GameVersion?.GameDirPath ?? string.Empty; + SentryHelper.CurrentGameInstalled = property.GameVersion?.IsGameInstalled() ?? false; + SentryHelper.CurrentGameUpdated = property.GameVersion?.IsGameVersionMatch() ?? false; + SentryHelper.CurrentGameHasPreload = property.GameVersion?.IsGameHasPreload() ?? false; + SentryHelper.CurrentGameHasDelta = property.GameVersion?.IsGameHasDeltaPatch() ?? false; + SentryHelper.CurrentGameIsPlugin = property.GamePreset.GameType == GameNameType.Plugin; + } + + /* #pragma warning disable CS1998 // Async method lacks 'await' operators and will run synchronously private static async void CleanupUnusedGameProperty() #pragma warning restore CS1998 // Async method lacks 'await' operators and will run synchronously @@ -116,6 +133,7 @@ private static async void CleanupUnusedGameProperty() Vault.Remove(key, out _); } } + */ public static async Task AttachNotificationForCurrentGame(int hashID = int.MinValue) { diff --git a/CollapseLauncher/Classes/Helper/Background/BackgroundMediaUtility.cs b/CollapseLauncher/Classes/Helper/Background/BackgroundMediaUtility.cs index 23f32d796..51022568f 100644 --- a/CollapseLauncher/Classes/Helper/Background/BackgroundMediaUtility.cs +++ b/CollapseLauncher/Classes/Helper/Background/BackgroundMediaUtility.cs @@ -13,6 +13,7 @@ using System.IO; using System.Linq; using System.Threading; +using System.Threading.Channels; using System.Threading.Tasks; using ImageUI = Microsoft.UI.Xaml.Controls.Image; // ReSharper disable PartialTypeWithSinglePart @@ -35,6 +36,7 @@ internal sealed partial class BackgroundMediaUtility : IDisposable internal enum MediaType { Media, + SequenceImage, StillImage, Unknown } @@ -73,20 +75,34 @@ internal enum MediaType private delegate ValueTask AssignDefaultAction(T element) where T : class; internal delegate void ThrowExceptionAction(Exception element); - private static bool _isOnQueue; - internal static async void RunQueuedTask(Task task) + private static readonly Channel QueuedTaskChannel; + + static BackgroundMediaUtility() { - while (_isOnQueue) + QueuedTaskChannel = Channel.CreateBounded(new BoundedChannelOptions(1) { - await Task.Delay(100); - } + AllowSynchronousContinuations = true, + FullMode = BoundedChannelFullMode.Wait, + SingleReader = true, + SingleWriter = true + }); - Interlocked.Exchange(ref _isOnQueue, true); - await task; - Interlocked.Exchange(ref _isOnQueue, false); + _ = RunAsyncTaskFromChannel(); } - internal static void RunQueuedTask(Action action) => RunQueuedTask(Task.Factory.StartNew(action)); + private static async Task RunAsyncTaskFromChannel() + { + while (await QueuedTaskChannel.Reader.ReadAsync() is { } asTask) + { + await asTask; + } + } + + internal static async void RunQueuedTask(Task task) + { + await QueuedTaskChannel.Writer.WaitToWriteAsync(); + await QueuedTaskChannel.Writer.WriteAsync(task); + } /// /// Attach and register the of the page to be assigned with background utility. diff --git a/CollapseLauncher/Classes/Helper/Background/ColorPaletteUtility.cs b/CollapseLauncher/Classes/Helper/Background/ColorPaletteUtility.cs index ee49c74b5..046f944a8 100644 --- a/CollapseLauncher/Classes/Helper/Background/ColorPaletteUtility.cs +++ b/CollapseLauncher/Classes/Helper/Background/ColorPaletteUtility.cs @@ -3,11 +3,10 @@ using ColorThiefDotNet; using Hi3Helper; using Hi3Helper.Data; +using Hi3Helper.EncTool.Hashes; using Hi3Helper.SentryHelper; -using Hi3Helper.Shared.ClassStruct; using Hi3Helper.Shared.Region; using Microsoft.UI.Xaml; -using Microsoft.UI.Xaml.Media; using System; using System.Diagnostics.CodeAnalysis; using System.Drawing; @@ -35,8 +34,11 @@ internal struct BitmapInputStruct [SuppressMessage("ReSharper", "AssignNullToNotNullAttribute")] internal static class ColorPaletteUtility { - internal static async Task ApplyAccentColor(T page, IRandomAccessStream stream, string filePath, - bool isImageLoadForFirstTime, bool isContinuousGeneration) + internal static async Task ApplyAccentColor(T page, + IRandomAccessStream stream, + string filePath, + bool isImageLoadForFirstTime, + bool isContinuousGeneration) where T : FrameworkElement { using Bitmap bitmapAccentColor = await Task.Run(() => ImageLoaderHelper.Stream2Bitmap(stream)); @@ -64,7 +66,10 @@ internal static async Task ApplyAccentColor(T page, IRandomAccessStream st Channel = bitmapChannelCount }; - await ApplyAccentColor(page, bitmapInputStruct, filePath, isImageLoadForFirstTime, + await ApplyAccentColor(page, + bitmapInputStruct, + filePath, + isImageLoadForFirstTime, isContinuousGeneration); } finally @@ -76,9 +81,11 @@ await ApplyAccentColor(page, bitmapInputStruct, filePath, isImageLoadForFirstTim } } - internal static async Task ApplyAccentColor(T page, BitmapInputStruct bitmapInput, string bitmapPath, - bool forceCreateNewCache = false, - bool isContinuousGeneration = false) + internal static async Task ApplyAccentColor(T page, + BitmapInputStruct bitmapInput, + string bitmapPath, + bool forceCreateNewCache = false, + bool isContinuousGeneration = false) where T : FrameworkElement { bool isLight = InnerLauncherConfig.IsAppThemeLight; @@ -97,7 +104,7 @@ private static async ValueTask TryGetCachedPalette(BitmapInputStruct b } string cachedPalettePath = bitmapPath + $".palette{(isLight ? "Light" : "Dark")}"; - string cachedFileHash = Hash.GetHashStringFromString(cachedPalettePath); + string cachedFileHash = HexTool.BytesToHexUnsafe(HashUtility.Shared.GetHashFromString(cachedPalettePath))!; cachedPalettePath = Path.Combine(LauncherConfig.AppGameImgCachedFolder, cachedFileHash); if (!File.Exists(cachedPalettePath) || forceCreateNewCache) @@ -119,58 +126,50 @@ internal static void SetColorPalette(T page, WColor? palette = null) { if (!palette.HasValue) return; - string dictColorNameTheme = InnerLauncherConfig.IsAppThemeLight ? "Dark" : "Light"; - UIElementExtensions.SetApplicationResource("SystemAccentColor", palette); - UIElementExtensions.SetApplicationResource($"SystemAccentColor{dictColorNameTheme}1", palette); - UIElementExtensions.SetApplicationResource($"SystemAccentColor{dictColorNameTheme}2", palette); - UIElementExtensions.SetApplicationResource($"SystemAccentColor{dictColorNameTheme}3", palette); - UIElementExtensions.SetApplicationResource("AccentColor", new SolidColorBrush(palette.Value)); - - ReloadPageTheme(page, ConvertAppThemeToElementTheme(InnerLauncherConfig.CurrentAppTheme)); + WColor maskTransparentPalette = new() + { + A = 0, + R = palette.Value.R, + G = palette.Value.G, + B = palette.Value.B + }; + maskTransparentPalette = ChangeColorBrightness(maskTransparentPalette, !InnerLauncherConfig.IsAppThemeLight ? -0.75f : 0.85f); + + WColor maskPalette = new() + { + A = 255, + R = palette.Value.R, + G = palette.Value.G, + B = palette.Value.B + }; + maskPalette = ChangeColorBrightness(maskPalette, !InnerLauncherConfig.IsAppThemeLight ? -0.75f : 0.85f); + + page.ChangeAccentColor(palette.Value, maskPalette, maskTransparentPalette); } - internal static void ReloadPageTheme(FrameworkElement page, AppThemeMode startTheme) + // Credit: + // https://gist.github.com/zihotki/09fc41d52981fb6f93a81ebf20b35cd5 + public static WColor ChangeColorBrightness(WColor color, float correctionFactor) { - ReloadPageTheme(page, ConvertAppThemeToElementTheme(startTheme)); - } + float red = color.R; + float green = color.G; + float blue = color.B; - internal static void ReloadPageTheme(FrameworkElement page, ElementTheme startTheme) - { - bool isComplete = false; - while (!isComplete) + if (correctionFactor < 0) { - try - { - page.RequestedTheme = page.RequestedTheme switch - { - ElementTheme.Dark => ElementTheme.Light, - ElementTheme.Light => ElementTheme.Default, - ElementTheme.Default => ElementTheme.Dark, - _ => page.RequestedTheme - }; - - if (page.RequestedTheme != startTheme) - { - ReloadPageTheme(page, startTheme); - } - - isComplete = true; - } - catch - { - // ignored - } + correctionFactor = 1 + correctionFactor; + red *= correctionFactor; + green *= correctionFactor; + blue *= correctionFactor; + } + else + { + red = (255 - red) * correctionFactor + red; + green = (255 - green) * correctionFactor + green; + blue = (255 - blue) * correctionFactor + blue; } - } - public static ElementTheme ConvertAppThemeToElementTheme(AppThemeMode theme) - { - return theme switch - { - AppThemeMode.Dark => ElementTheme.Dark, - AppThemeMode.Light => ElementTheme.Light, - _ => ElementTheme.Default - }; + return WColor.FromArgb(color.A, (byte)red, (byte)green, (byte)blue); } private static async ValueTask TryGenerateNewCachedPalette(BitmapInputStruct bitmapInput, diff --git a/CollapseLauncher/Classes/Helper/Background/Loaders/MediaPlayerLoader.cs b/CollapseLauncher/Classes/Helper/Background/Loaders/MediaPlayerLoader.cs index f46867e43..8281bef95 100644 --- a/CollapseLauncher/Classes/Helper/Background/Loaders/MediaPlayerLoader.cs +++ b/CollapseLauncher/Classes/Helper/Background/Loaders/MediaPlayerLoader.cs @@ -427,15 +427,15 @@ private async void FrameGrabberEvent(MediaPlayer mediaPlayer, object args) public void Undimm() => BackgroundMediaUtility.RunQueuedTask(ToggleImageVisibility(false)); - private async Task ToggleImageVisibility(bool hideImage) + private Task ToggleImageVisibility(bool hideImage) { - if (IsBackgroundDimm == hideImage) return; + if (IsBackgroundDimm == hideImage) return Task.CompletedTask; IsBackgroundDimm = hideImage; TimeSpan duration = TimeSpan.FromSeconds(hideImage ? BackgroundMediaUtility.TransitionDuration : BackgroundMediaUtility.TransitionDurationSlow); - await Task.WhenAll( + return Task.WhenAll( AcrylicMask.StartAnimation( duration, CurrentCompositor.CreateScalarKeyFrameAnimation("Opacity", @@ -453,9 +453,9 @@ await Task.WhenAll( public void Show(bool isForceShow = false) => BackgroundMediaUtility.RunQueuedTask(ShowInner()); - private async Task ShowInner() + private Task ShowInner() { - if (_currentMediaPlayerFrameParentGrid.Opacity > 0f) return; + if (_currentMediaPlayerFrameParentGrid.Opacity > 0f) return Task.CompletedTask; if (!IsUseVideoBgDynamicColorUpdate) { @@ -463,7 +463,7 @@ private async Task ShowInner() } TimeSpan duration = TimeSpan.FromSeconds(BackgroundMediaUtility.TransitionDuration); - await _currentMediaPlayerFrameParentGrid + return _currentMediaPlayerFrameParentGrid .StartAnimation(duration, CurrentCompositor .CreateScalarKeyFrameAnimation("Opacity", 1f, 0f) diff --git a/CollapseLauncher/Classes/Helper/Background/Loaders/StillImageLoader.cs b/CollapseLauncher/Classes/Helper/Background/Loaders/StillImageLoader.cs index da65ee934..640965281 100644 --- a/CollapseLauncher/Classes/Helper/Background/Loaders/StillImageLoader.cs +++ b/CollapseLauncher/Classes/Helper/Background/Loaders/StillImageLoader.cs @@ -1,4 +1,5 @@ -using CollapseLauncher.Helper.Animation; +using CollapseLauncher.Extension; +using CollapseLauncher.Helper.Animation; using CollapseLauncher.Helper.Image; using CommunityToolkit.WinUI.Animations; using Hi3Helper.Shared.Region; @@ -14,6 +15,7 @@ using System.Threading.Tasks; using ImageUI = Microsoft.UI.Xaml.Controls.Image; // ReSharper disable PartialTypeWithSinglePart +#pragma warning disable IDE0130 #nullable enable namespace CollapseLauncher.Helper.Background.Loaders @@ -67,38 +69,46 @@ public void Dispose() GC.SuppressFinalize(this); } - public async Task LoadAsync(string filePath, bool isImageLoadForFirstTime, - bool isRequestInit, CancellationToken token) + public async Task LoadAsync(string filePath, + bool isImageLoadForFirstTime, + bool isRequestInit, + CancellationToken token) { - try + // Get the image stream + token.ThrowIfCancellationRequested(); + await using FileStream? imageStream = BackgroundMediaUtility.GetAlternativeFileStream() ?? + await ImageLoaderHelper.LoadImage(filePath, false, + isImageLoadForFirstTime); + // Return if the stream is null due to cancellation or an error. + if (imageStream == null) { - // Get the image stream - token.ThrowIfCancellationRequested(); - await using FileStream? imageStream = BackgroundMediaUtility.GetAlternativeFileStream() ?? - await ImageLoaderHelper.LoadImage(filePath, false, - isImageLoadForFirstTime); - // Return if the stream is null due to cancellation or an error. - if (imageStream == null) - { - return; - } - - BitmapImage bitmapImage = - await ImageLoaderHelper.Stream2BitmapImage(imageStream.AsRandomAccessStream()); - - await Task.WhenAll(ApplyAndSwitchImage(AnimationDuration, bitmapImage), ColorPaletteUtility.ApplyAccentColor(ParentUI, - imageStream.AsRandomAccessStream(), - filePath, - isImageLoadForFirstTime, false)); - - } - finally - { - GC.Collect(); + return; } + + // Load and decode to WriteableBitmap + WriteableBitmap wBitmap = new(1, 1); + await wBitmap.SetSourceAsync(imageStream.AsRandomAccessStream()); + + // Run image switch task + nint wBitmapBufferP = wBitmap.GetBufferPointer(); + Task applyColorTask = ColorPaletteUtility + .ApplyAccentColor(ParentUI, + new BitmapInputStruct + { + Buffer = wBitmapBufferP, + Channel = 4, + Width = wBitmap.PixelWidth, + Height = wBitmap.PixelHeight + }, + filePath, + isImageLoadForFirstTime); + Task applyAndSwitchImageTask = ApplyAndSwitchImage(AnimationDuration, wBitmap); + + _ = Task.WhenAll(applyAndSwitchImageTask, applyColorTask) + .ContinueWith(_ => GC.Collect(), token); } - private async Task ApplyAndSwitchImage(double duration, BitmapImage imageToApply) + private Task ApplyAndSwitchImage(double duration, BitmapSource imageToApply) { TimeSpan timeSpan = TimeSpan.FromSeconds(duration); @@ -109,7 +119,7 @@ private async Task ApplyAndSwitchImage(double duration, BitmapImage imageToApply ImageBackLast!.Opacity = 1; ImageBackCurrent!.Source = imageToApply; - await Task.WhenAll( + return Task.WhenAll( ImageBackCurrent.StartAnimation(timeSpan, CurrentCompositor .CreateScalarKeyFrameAnimation("Opacity", @@ -125,7 +135,7 @@ await Task.WhenAll( public void Undimm() => BackgroundMediaUtility.RunQueuedTask(ToggleImageVisibility(false)); - private async Task ToggleImageVisibility(bool hideImage, bool completeInvisible = false, bool isForceShow = false) + private Task ToggleImageVisibility(bool hideImage, bool completeInvisible = false, bool isForceShow = false) { if (isForceShow) { @@ -134,7 +144,7 @@ private async Task ToggleImageVisibility(bool hideImage, bool completeInvisible } else { - if (IsBackgroundDimm == hideImage) return; + if (IsBackgroundDimm == hideImage) return Task.CompletedTask; IsBackgroundDimm = hideImage; } @@ -152,7 +162,7 @@ private async Task ToggleImageVisibility(bool hideImage, bool completeInvisible if (isForceShow) { - await Task.WhenAll( + return Task.WhenAll( AcrylicMask.StartAnimation( duration, CurrentCompositor.CreateScalarKeyFrameAnimation("Opacity", hideImage ? 1f : 0f, hideImage ? 0f : 1f) @@ -169,33 +179,28 @@ await Task.WhenAll( ) ); } - else if (completeInvisible) + + if (completeInvisible) { - await Task.WhenAll( + return Task.WhenAll( ImageBackParentGrid.StartAnimation( duration, CurrentCompositor.CreateScalarKeyFrameAnimation("Opacity", hideImage ? completeInvisible ? 0f : 0.4f : 1f, hideImage ? 1f : 0f) ) ); } - else - { - await Task.WhenAll( - AcrylicMask.StartAnimation( - duration, - CurrentCompositor.CreateScalarKeyFrameAnimation("Opacity", hideImage ? 1f : 0f, hideImage ? 0f : 1f) - ), - OverlayTitleBar.StartAnimation( - duration, - CurrentCompositor.CreateScalarKeyFrameAnimation("Opacity", hideImage ? 0f : 1f, hideImage ? 1f : 0f) - ), - ImageBackParentGrid.StartAnimation( - duration, - CurrentCompositor.CreateVector3KeyFrameAnimation("Scale", new Vector3(hideImage ? toScale : fromScale), new Vector3(!hideImage ? toScale : fromScale)), - CurrentCompositor.CreateVector3KeyFrameAnimation("Translation", hideImage ? toTranslate : fromTranslate, !hideImage ? toTranslate : fromTranslate) - ) - ); - } + + return Task.WhenAll(AcrylicMask.StartAnimation(duration, + CurrentCompositor.CreateScalarKeyFrameAnimation("Opacity", hideImage ? 1f : 0f, hideImage ? 0f : 1f) + ), + OverlayTitleBar.StartAnimation(duration, + CurrentCompositor.CreateScalarKeyFrameAnimation("Opacity", hideImage ? 0f : 1f, hideImage ? 1f : 0f) + ), + ImageBackParentGrid.StartAnimation(duration, + CurrentCompositor.CreateVector3KeyFrameAnimation("Scale", new Vector3(hideImage ? toScale : fromScale), new Vector3(!hideImage ? toScale : fromScale)), + CurrentCompositor.CreateVector3KeyFrameAnimation("Translation", hideImage ? toTranslate : fromTranslate, !hideImage ? toTranslate : fromTranslate) + ) + ); } public void Show(bool isForceShow = false) diff --git a/CollapseLauncher/Classes/Helper/Database/DBHandler.cs b/CollapseLauncher/Classes/Helper/Database/DBHandler.cs index 0282f5e00..750c3162f 100644 --- a/CollapseLauncher/Classes/Helper/Database/DBHandler.cs +++ b/CollapseLauncher/Classes/Helper/Database/DBHandler.cs @@ -1,4 +1,5 @@ using Hi3Helper; +using Hi3Helper.SentryHelper; using Libsql.Client; using System; using System.Diagnostics; @@ -10,355 +11,415 @@ // ReSharper disable CommentTypo #nullable enable -namespace CollapseLauncher.Helper.Database +namespace CollapseLauncher.Helper.Database; + +internal static class DbHandler { - internal static class DbHandler + #region Config Propertie + + public static bool? IsEnabled { - #region Config Properties - - private static bool? _enabled; - public static bool IsEnabled + get { - get - { - if (_enabled != null) return (bool)_enabled; - var c = DbConfig.DbEnabled; - _enabled = c; - return c; - } - set - { - _enabled = value; - DbConfig.DbEnabled = value; + if (field != null) return field; + field = DbConfig.DbEnabled; + return field; + } + set + { + field = value; + DbConfig.DbEnabled = value ?? false; - _isFirstInit = true; // Force first init - if (!value) Dispose(); // Dispose instance if user disabled database function globally - } + _isFirstInit = true; // Force first init + if (!(value ?? false)) Dispose(); // Dispose instance if user disabled database function globally } + } - private static string? _uri; - public static string Uri + public static string? Uri + { + get { - get - { - if (!string.IsNullOrEmpty(_uri)) return _uri; - var c = DbConfig.DbUrl; - _uri = c; - return c; - } - set - { - if (value != _uri) _isFirstInit = true; // Force first init if value changed - - _uri = value; - DbConfig.DbUrl = value; - _isFirstInit = true; - } + if (!string.IsNullOrEmpty(field)) return field; + field = DbConfig.DbUrl; + return field; } - - [DebuggerBrowsable(DebuggerBrowsableState.Never)] - private static string? _token; - - [DebuggerHidden] - [DebuggerBrowsable(DebuggerBrowsableState.Never)] - public static string Token + set { - get - { - if (!string.IsNullOrEmpty(_token)) return _token; - var c = DbConfig.DbToken; - _token = c; - return c; - } - set - { - if (value != _token) _isFirstInit = true; // Force first init if value changed + if (value != field) _isFirstInit = true; // Force first init if value changed - _token = value; - DbConfig.DbToken = value; - _isFirstInit = true; - } + field = value; + DbConfig.DbUrl = value; + _isFirstInit = true; } + } - private static string? _userId; - private static string? _userIdHash; - public static string UserId + [DebuggerHidden] + [DebuggerBrowsable(DebuggerBrowsableState.Never)] + public static string? Token + { + get { - get - { - if (_userId != null) return _userId; - var c = DbConfig.UserGuid; // Get or create (if not yet has one) GUIDv7 - _userId = c; - _userIdHash = Convert.ToHexStringLower(System.IO.Hashing.XxHash64.Hash(Encoding.ASCII.GetBytes(c))); - // Get hash for the UserID to be used as SQL table name - // I know that this is overkill, but I want it to be totally non-identifiable if for some reason someone - // has access to their database. It also lowers the amount of query command length to be sent, hopefully - // reducing access latency. - // p.s. oh yeah, this is also why user won't be able to get their data back if they lost the GUID, - // good luck reversing Xxhash64 back to string. Technically possible, but good luck! - return c; - } - set - { - if (value != _userId) _isFirstInit = true; // Force first init if value changed - - _userId = value; - DbConfig.UserGuid = value; + if (!string.IsNullOrEmpty(field)) return field; + field = DbConfig.DbToken; + return field; + } + set + { + if (value != field) _isFirstInit = true; // Force first init if value changed - var byteUidH = System.IO.Hashing.XxHash64.Hash(Encoding.ASCII.GetBytes(value)); - _userIdHash = Convert.ToHexStringLower(byteUidH); - _isFirstInit = true; - } + field = value; + DbConfig.DbToken = value; + _isFirstInit = true; } - - private static bool _isFirstInit = true; - #endregion + } - [DebuggerBrowsable(DebuggerBrowsableState.Never)] - private static IDatabaseClient? _database; - - public static async Task Init(bool redirectThrow = false, bool bypassEnableFlag = false) + //private static string? _userId; + private static string? _userIdHash; + public static string? UserId + { + get { - DbConfig.Init(); + if (field != null) return field; + field = DbConfig.UserGuid; // Get or create (if not yet has one) GUIDv7 - if (!bypassEnableFlag && !IsEnabled) + _userIdHash = Convert.ToHexStringLower(System.IO.Hashing.XxHash64.Hash(Encoding.ASCII.GetBytes(field))); + // Get hash for the UserID to be used as SQL table name + // I know that this is overkill, but I want it to be totally non-identifiable if for some reason someone + // has access to their database. It also lowers the amount of query command length to be sent, hopefully + // reducing access latency. + // p.s. oh yeah, this is also why user won't be able to get their data back if they lost the GUID, + // good luck reversing Xxhash64 back to string. Technically possible, but good luck! + return field; + } + set + { + if (value != field) _isFirstInit = true; // Force first init if value changed + + field = value; + DbConfig.UserGuid = value; + + if (string.IsNullOrWhiteSpace(value)) { - LogWriteLine("[DbHandler::Init] Database functionality is disabled!"); + _userIdHash = null; + _isFirstInit = true; return; } + + var byteUidH = System.IO.Hashing.XxHash64.Hash(Encoding.ASCII.GetBytes(value)); + _userIdHash = Convert.ToHexStringLower(byteUidH); + _isFirstInit = true; + } + } - try - { - // Init props - _ = Token; - _ = Uri; - _ = UserId; + private static bool _isFirstInit = true; + #endregion + + [DebuggerBrowsable(DebuggerBrowsableState.Never)] + private static IDatabaseClient? _database; - if (string.IsNullOrEmpty(Uri)) - { - IsEnabled = false; - throw new NullReferenceException($"DB_001 {Lang._SettingsPage.Database_Error_EmptyUri}"); - } - - if (string.IsNullOrEmpty(Token)) - { - IsEnabled = false; - throw new NullReferenceException($"DB_002 {Lang._SettingsPage.Database_Error_EmptyToken}"); - } - + public static async Task Init(bool redirectThrow = false, bool bypassEnableFlag = false) + { + DbConfig.Init(); + + if (!bypassEnableFlag && !(IsEnabled ?? false)) + { + LogWriteLine("[DbHandler::Init] Database functionality is disabled!"); + return; + } - // Connect to database - // Libsql-client-dotnet technically support file based SQLite by pushing `file://` proto in the URL. - // But what's the point? - _database = await DatabaseClient.Create(opts => - { - opts.Url = Uri; - opts.AuthToken = Token; - }); + try + { + // Init props + _ = Token; + _ = Uri; + _ = UserId; - if (_isFirstInit) - { - LogWriteLine("[DbHandler::Init] Initializing database system..."); - // Ensure table exist at first initialization - await - _database - .Execute($"CREATE TABLE IF NOT EXISTS \"uid-{_userIdHash}\" (Id INTEGER PRIMARY KEY AUTOINCREMENT, 'key' TEXT UNIQUE NOT NULL, 'value' TEXT)"); - _isFirstInit = false; - } - else LogWriteLine("[DbHandler::Init] Reinitializing database system..."); - } - catch (DllNotFoundException e) + if (string.IsNullOrEmpty(Uri)) { - LogWriteLine("[DbHandler::Init] Error when connecting to database system! Probably missing Visual C/C++ redist!\r\n" + e, - LogType.Error, true); - if (redirectThrow) throw; + IsEnabled = false; + throw new NullReferenceException($"DB_001 {Lang._SettingsPage.Database_Error_EmptyUri}"); } - // No need to handle all these error catcher with sentry - // The error should be handled in the method caller instead - catch (LibsqlException e) when (e.Message.Contains("`api error: `{\"error\":\"Unauthorized: `The JWT is invalid`\"}``", - StringComparison.InvariantCultureIgnoreCase) && !redirectThrow) - { - LogWriteLine($"[DBHandler::Init] Error when connecting to database system! Token invalid!\r\n{e}", - LogType.Error, true); - } - catch (Exception e) when (!redirectThrow) - { - LogWriteLine($"[DBHandler::Init] Error when (re)initializing database system!\r\n{e}", LogType.Error, true); - } - catch (LibsqlException e) when (e.Message.Contains("`api error: `{\"error\":\"Unauthorized: `The JWT is invalid`\"}``", - StringComparison.InvariantCultureIgnoreCase)) + + if (string.IsNullOrEmpty(Token)) { - LogWriteLine($"[DBHandler::Init] Error when connecting to database system! Token invalid!\r\n{e}", - LogType.Error, true); - var ex = new AggregateException("DB_003 Unauthorized: wrong token inserted", e); - throw ex; + IsEnabled = false; + throw new NullReferenceException($"DB_002 {Lang._SettingsPage.Database_Error_EmptyToken}"); } - catch (Exception e) + + + // Connect to database + // Libsql-client-dotnet technically support file based SQLite by pushing `file://` proto in the URL. + // But what's the point? + _database = await DatabaseClient.Create(opts => + { + opts.Url = Uri; + opts.AuthToken = Token; + }); + + if (_isFirstInit) { - LogWriteLine($"[DBHandler::Init] Error when (re)initializing database system!\r\n{e}", LogType.Error, true); - throw; + LogWriteLine("[DbHandler::Init] Initializing database system..."); + // Ensure table exist at first initialization + await + _database + .Execute($"CREATE TABLE IF NOT EXISTS \"uid-{_userIdHash}\" (Id INTEGER PRIMARY KEY AUTOINCREMENT, 'key' TEXT UNIQUE NOT NULL, 'value' TEXT)"); + _isFirstInit = false; } + else LogWriteLine("[DbHandler::Init] Reinitializing database system..."); } - - public static async Task TryInit() + catch (DllNotFoundException e) { - if (string.IsNullOrEmpty(Uri) || string.IsNullOrEmpty(Token)) - return; - await Init(); + LogWriteLine("[DbHandler::Init] Error when connecting to database system! Probably missing Visual C/C++ redist!\r\n" + e, + LogType.Error, true); + if (redirectThrow) throw; } - - private static void Dispose() + // No need to handle all these error catcher with sentry + // The error should be handled in the method caller instead + catch (LibsqlException e) when (e.Message.Contains("The JWT is invalid", StringComparison.OrdinalIgnoreCase) + && !redirectThrow) + { + LogWriteLine($"[DBHandler::Init] Error when connecting to database system! Token invalid!\r\n{e}", + LogType.Error, true); + } + catch (Exception e) when (!redirectThrow) + { + LogWriteLine($"[DBHandler::Init] Error when (re)initializing database system!\r\n{e}", LogType.Error, true); + } + catch (LibsqlException e) when (e.Message.Contains("The JWT is invalid", StringComparison.OrdinalIgnoreCase)) { - _database = null; - _token = null; - _uri = null; - _userId = null; - _userIdHash = null; + LogWriteLine($"[DBHandler::Init] Error when connecting to database system! Token invalid!\r\n{e}", + LogType.Error, true); + var ex = new AggregateException("DB_003 Unauthorized: wrong token inserted", e); + throw ex; } + catch (Exception e) + { + LogWriteLine($"[DBHandler::Init] Error when (re)initializing database system!\r\n{e}", LogType.Error, true); + throw; + } + } + + public static async Task TryInit() + { + if (string.IsNullOrEmpty(Uri) || string.IsNullOrEmpty(Token)) + return; + await Init(); + } + + private static void Dispose() + { + _database = null; + _userIdHash = null; + + Token = null; + Uri = null; + UserId = null; + } + + private const int MaxAttempts = 5; - public static async Task QueryKey(string key, bool redirectThrow = false) + public static async Task QueryKey(string key, bool redirectThrow = false) + { + if (!(IsEnabled ?? false)) return null; + #if DEBUG + var r = new Random(); + var sId = Math.Abs(r.Next(0, 1000).ToString().GetHashCode()); + LogWriteLine($"[DBHandler::QueryKey][{sId}] Invoked!\r\n\tKey: {key}", LogType.Debug, true); + var t = Stopwatch.StartNew(); + #endif + for (var i = 0; i < MaxAttempts; i++) { - if (!IsEnabled) return null; - #if DEBUG - var r = new Random(); - var sId = Math.Abs(r.Next(0, 1000).ToString().GetHashCode()); - LogWriteLine($"[DBHandler::QueryKey][{sId}] Invoked!\r\n\tKey: {key}", LogType.Debug, true); - var t = Stopwatch.StartNew(); - #endif - const int retryCount = 3; - for (var i = 0; i < retryCount; i++) + var retVal = await QueryKeyInternal(key + #if DEBUG + , sId + #endif + ); + if (retVal.result == 200) { - try - { - if (_database == null) await Init(true); - // Get table row for exact key - var rs = - await - _database! - .Execute($"SELECT value FROM \"uid-{_userIdHash}\" WHERE key = ?", key); - if (rs == null) - { - continue; - } + #if DEBUG + LogWriteLine($"[DBHandler::QueryKey][{sId}] Got value!\r\n\tKey: {key}\r\n\tValue:\r\n{retVal.returnedValue}", + LogType.Debug, true); + #endif + return retVal.returnedValue; + } - // freaking black magic to convert the column row to the value - var str = - string.Join("", rs.Rows.Select(row => string.Join("", row.Select(x => x.ToString())))); - #if DEBUG - LogWriteLine($"[DBHandler::QueryKey][{sId}] Got value!\r\n\tKey: {key}\r\n\tValue:\r\n{str}", LogType.Debug, - true); - #endif - return str; - } - // No need to handle all these error catcher with sentry - // The error should be handled in the method caller instead - catch (LibsqlException ex) when ((ex.Message.Contains("STREAM_EXPIRED", StringComparison.OrdinalIgnoreCase) || - ex.Message.Contains("Received an invalid baton", StringComparison.OrdinalIgnoreCase) || - ex.Message.Contains("stream not found", StringComparison.OrdinalIgnoreCase)) && - i < retryCount - 1) - { - if (i > 0) - LogWriteLine("[DBHandler::QueryKey] Database stream expired, retrying...", LogType.Error, true); + if (i < MaxAttempts - 1) + { + var delayTime = (int)Math.Pow(2, i) * 500; // Exponential backoff delay + LogWriteLine($"[DBHandler::QueryKey] Failed to get value for key {key}, retrying after {delayTime}ms (try {i + 1} of {MaxAttempts})...\r\n\t" + + $"Status Code: {retVal.result}", LogType.Error, true); + + await Task.Delay(delayTime); + continue; + } - await Init(); - } - catch (Exception ex) when (i < retryCount - 1) - { - LogWriteLine($"[DBHandler::QueryKey] Failed when getting value for key {key}! Retrying...\r\n{ex}", - LogType.Error, true); - - await Task.Delay(500); - } - catch (Exception ex) when (!redirectThrow) - { - LogWriteLine($"[DBHandler::QueryKey] Failed when getting value for key {key} after {retryCount} retries! Returning null...\r\n{ex}", - LogType.Error, true); - return null; - } - catch (Exception ex) - { - LogWriteLine($"[DBHandler::QueryKey] Failed when getting value for key {key} after {retryCount} retries! Returning null...\r\n{ex}", - LogType.Error, true); - throw; - } + LogWriteLine($"[DBHandler::QueryKey] Failed to get value for key {key} after {MaxAttempts} tries!\r\n\t" + + $"Status Code: {retVal.result}", LogType.Error, true); + + // Exception handler when exceptionValue is null does not need to be handled by Sentry. + // Technically, this should never happen, but just in case... + if (retVal.exceptionValue == null) + return redirectThrow + ? throw new Exception($"DB_005 Failed to get value for key {key} after {MaxAttempts} tries!") + : null; + + await SentryHelper.ExceptionHandlerAsync(retVal.exceptionValue); + return redirectThrow + ? throw new + AggregateException($"DB_004 Failed to get value for key {key} after {MaxAttempts} tries!", + retVal.exceptionValue) + : null; + } + #if DEBUG + t.Stop(); + LogWriteLine($"[DBHandler::QueryKey][{sId}] Operation took {t.ElapsedMilliseconds} ms!", LogType.Debug, true); + #endif + + return null; + } + + public static async Task StoreKeyValue(string key, string value, bool redirectThrow = false) + { + if (!(IsEnabled ?? false)) return; + #if DEBUG + var t = Stopwatch.StartNew(); + var r = new Random(); + var sId = Math.Abs(r.Next(0, 1000).ToString().GetHashCode()); + LogWriteLine($"[DBHandler::StoreKeyValue][{sId}] Invoked!\r\n\tKey: {key}\r\n\tValue: {value}", LogType.Debug, + true); + #endif + for (var i = 0; i < MaxAttempts; i++) + { + var retVal = await StoreKeyValueInternal(key, value); + if (retVal.result == 200) + { #if DEBUG - finally - { - t.Stop(); - LogWriteLine($"[DBHandler::QueryKey][{sId}] Operation took {t.ElapsedMilliseconds} ms!", LogType.Debug, true); - } + LogWriteLine($"[DBHandler::StoreKeyValue][{sId}] Saved value!\r\n\tKey: {key}\r\n\tValue: {value}", + LogType.Debug, true); #endif + return; + } + + if (i < MaxAttempts - 1) + { + var delayTime = (int)Math.Pow(2, i) * 500; // Exponential backoff delay + LogWriteLine($"[DBHandler::StoreKeyValue] Failed to store value for key {key}, retrying after {delayTime}ms (try {i + 1} of {MaxAttempts})...\r\n\t" + + $"Status Code: {retVal.result}", LogType.Error, true); + await Task.Delay(delayTime); + continue; } + + LogWriteLine($"[DBHandler::StoreKeyValue] Failed to store value for key {key} after {MaxAttempts} tries!\r\n\t" + + $"Status Code: {retVal.result}", LogType.Error, true); - return null; + // Exception handler when exceptionValue is null does not need to be handled by Sentry. + // Technically, this should never happen, but just in case... + if (retVal.exceptionValue == null) + { + LogWriteLine($"[DBHandler::StoreKeyValue] Failed when trying to store key {key}", LogType.Error, + true); + if (redirectThrow) throw new Exception($"DB_005 Failed to get value for key {key} after {MaxAttempts} tries!"); + return; + } + + await SentryHelper.ExceptionHandlerAsync(retVal.exceptionValue); + LogWriteLine($"[DBHandler::StoreKeyValue] Exception value is not null, throwing exception!\r\n{retVal.exceptionValue}", LogType.Error, true); + if (redirectThrow) + throw new AggregateException($"DB_004 Failed to store value for key {key} after {MaxAttempts} tries!", + retVal.exceptionValue); } + + #if DEBUG + t.Stop(); + LogWriteLine($"[DBHandler::StoreKeyValue][{sId}] Operation took {t.ElapsedMilliseconds} ms!", + LogType.Debug, true); + #endif + } + + #region Private Methods - public static async Task StoreKeyValue(string key, string value, bool redirectThrow = false) + private static async Task<(int result, string? returnedValue, Exception? exceptionValue)> QueryKeyInternal(string key + #if DEBUG + , int sId = 0 + #endif + ) + { + try { - if (!IsEnabled) return; + if (_database == null) await Init(true); + // Get table row for exact key + var rs = + await + _database! + .Execute($"SELECT value FROM \"uid-{_userIdHash}\" WHERE key = ?", key); + if (rs == null) + { + return (200, null, null); + } + + // freaking black magic to convert the column row to the value + var str = + string.Join("", rs.Rows.Select(row => string.Join("", row.Select(x => x.ToString())))); #if DEBUG - var t = Stopwatch.StartNew(); - var r = new Random(); - var sId = Math.Abs(r.Next(0, 1000).ToString().GetHashCode()); - LogWriteLine($"[DBHandler::StoreKeyValue][{sId}] Invoked!\r\n\tKey: {key}\r\n\tValue: {value}", LogType.Debug, + LogWriteLine($"[DBHandler::QueryKey][{sId}] Got value!\r\n\tKey: {key}\r\n\tValue:\r\n{str}", LogType.Debug, true); #endif - const int retryCount = 5; - for (var i = 0; i < retryCount; i++) - { - try - { - if (_database == null) await Init(true); - - // Create key for storing value, if key already exist, just update the value (key column is set to UNIQUE) - var command = $"INSERT INTO \"uid-{_userIdHash}\" (key, value) VALUES (?, ?) " + - $"ON CONFLICT(key) DO UPDATE SET value = ?"; - var parameters = new object[] { key, value, value }; - await _database!.Execute(command, parameters); - break; - } - catch (LibsqlException ex) when ((ex.Message.Contains("STREAM_EXPIRED", StringComparison.OrdinalIgnoreCase) || - ex.Message.Contains("Received an invalid baton", StringComparison.OrdinalIgnoreCase) || - ex.Message.Contains("stream not found", StringComparison.OrdinalIgnoreCase)) && - i < retryCount - 1) - { - if (i > 0) - LogWriteLine("[DBHandler::StoreKeyValue] Database stream expired, retrying...", LogType.Error, - true); + return (200, str, null); // 200: OK, return value + } + // No need to handle all these error catcher with sentry + // The error should be handled in the method caller instead + catch (LibsqlException ex) when (ex.Message.Contains("STREAM_EXPIRED", StringComparison.OrdinalIgnoreCase) || + ex.Message.Contains("Received an invalid baton", StringComparison.OrdinalIgnoreCase) || + ex.Message.Contains("stream not found", StringComparison.OrdinalIgnoreCase)) + { + LogWriteLine($"[DBHandler::QueryKey] Database stream expired.", + LogType.Error, true); + + await Init(); + return (419, null, ex); // 419: Stream expired + } + catch (Exception ex) + { + LogWriteLine($"[DBHandler::QueryKey] Failed when getting value for key {key}! {ex.Message}", + LogType.Error, true); + return (500, null, ex); // 500: Internal Server Error + } + } - await Init(); - } - // No need to handle all these error catcher with sentry - // The error should be handled in the method caller instead - catch (Exception ex) when (i < retryCount - 1) - { - LogWriteLine($"[DBHandler::StoreKeyValue] Failed when saving value for key {key}! Retrying...\r\n{ex}", - LogType.Error, true); + private static async Task<(int result, Exception? exceptionValue)> StoreKeyValueInternal(string key, string value) + { + try + { + if (_database == null) await Init(true); - await Task.Delay(500); - } - catch (Exception ex) when (!redirectThrow) - { - LogWriteLine($"[DBHandler::StoreKeyValue] Failed when saving value for key {key} after {retryCount} tries!\r\n{ex}", - LogType.Error, true); - return; - } - catch (Exception ex) - { - LogWriteLine($"[DBHandler::StoreKeyValue] Failed when saving value for key {key} after {retryCount} tries!\r\n{ex}", - LogType.Error, true); - throw; - } - #if DEBUG - finally - { - t.Stop(); - LogWriteLine($"[DBHandler::StoreKeyValue][{sId}] Operation took {t.ElapsedMilliseconds} ms!", - LogType.Debug, true); - } - #endif - } + // Create key for storing value, if key already exist, just update the value (key column is set to UNIQUE) + var command = $"INSERT INTO \"uid-{_userIdHash}\" (key, value) VALUES (?, ?) " + + $"ON CONFLICT(key) DO UPDATE SET value = ?"; + var parameters = new object[] { key, value, value }; + await _database!.Execute(command, parameters); + + return (200, null); // 200: OK + } + catch (LibsqlException ex) when (ex.Message.Contains("STREAM_EXPIRED", StringComparison.OrdinalIgnoreCase) || + ex.Message.Contains("Received an invalid baton", StringComparison.OrdinalIgnoreCase) || + ex.Message.Contains("stream not found", StringComparison.OrdinalIgnoreCase)) + { + LogWriteLine($"[DBHandler::StoreKeyValue] Database stream expired, Reinitializing ({ex.Message})", LogType.Error, + true); + + await Init(); + return (419, ex); // 419: Stream expired + } + // No need to handle all these error catcher with sentry + // The error should be handled in the method caller instead + catch (Exception ex) + { + LogWriteLine($"[DBHandler::StoreKeyValue] Failed when saving value for key {key}! {ex.Message}", + LogType.Error, true); + return (500, ex); // 500: Internal Server Error } } + + #endregion } \ No newline at end of file diff --git a/CollapseLauncher/Classes/Helper/FileUtility.cs b/CollapseLauncher/Classes/Helper/FileUtility.cs index 548a107f0..c65be34cb 100644 --- a/CollapseLauncher/Classes/Helper/FileUtility.cs +++ b/CollapseLauncher/Classes/Helper/FileUtility.cs @@ -111,5 +111,19 @@ public static bool RenameFileWithPrefix(string filePath, string prefix = "-old", } return false; } + + public static int GetFileStreamBufferSize(this long fileSize) + => fileSize switch + { + // 128 KiB + <= 128 << 10 => 4 << 10, + // 1 MiB + <= 1 << 20 => 64 << 10, + // 32 MiB + <= 32 << 20 => 128 << 10, + // 100 MiB + <= 100 << 20 => 512 << 10, + _ => 1 << 20 + }; } } \ No newline at end of file diff --git a/CollapseLauncher/Classes/Helper/Hash.FileStream.cs b/CollapseLauncher/Classes/Helper/Hash.FileStream.cs deleted file mode 100644 index c3b8c48b4..000000000 --- a/CollapseLauncher/Classes/Helper/Hash.FileStream.cs +++ /dev/null @@ -1,684 +0,0 @@ -using System; -using System.Buffers; -using System.IO; -using System.IO.Hashing; -using System.Runtime.CompilerServices; -using System.Security.Cryptography; -using System.Threading; -using System.Threading.Tasks; -// ReSharper disable CheckNamespace -// ReSharper disable UnusedMember.Global - -#nullable enable -namespace CollapseLauncher.Helper -{ - public static partial class Hash - { - /// - /// Asynchronously computes the cryptographic hash of a file specified by its path. - /// - /// The type of the hash algorithm to use. Must inherit from . - /// The path of the file to compute the hash for. - /// The key to use for HMAC-based hash algorithms. If null, a standard hash algorithm is used. - /// An action to report the read progress. - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetCryptoHashAsync( - string filePath, - byte[]? hmacKey = null, - Action? readProgress = null, - CancellationToken token = default) - where T : HashAlgorithm => - GetCryptoHashAsync(() => File.OpenRead(filePath), hmacKey, readProgress, false, token); - - /// - /// Asynchronously computes the cryptographic hash of a file specified by its path. - /// - /// The type of the hash algorithm to use. Must inherit from . - /// The path of the file to compute the hash for. - /// The key to use for HMAC-based hash algorithms. If null, a standard hash algorithm is used. - /// An action to report the read progress. - /// - /// Define where the async method should run for hashing big files.
- /// This to hint the default TaskScheduler to allow more hashing threads to be running at the same time.
- /// Set to true if the data stream is big, otherwise false for small data stream. - /// - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetCryptoHashAsync( - string filePath, - byte[]? hmacKey, - Action? readProgress, - bool isLongRunning, - CancellationToken token) - where T : HashAlgorithm => - GetCryptoHashAsync(() => File.OpenRead(filePath), hmacKey, readProgress, isLongRunning, token); - - /// - /// Asynchronously computes the cryptographic hash of a file specified by a object. - /// - /// The type of the hash algorithm to use. Must inherit from . - /// The object representing the file to compute the hash for. - /// The key to use for HMAC-based hash algorithms. If null, a standard hash algorithm is used. - /// An action to report the read progress. - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetCryptoHashAsync( - FileInfo fileInfo, - byte[]? hmacKey = null, - Action? readProgress = null, - CancellationToken token = default) - where T : HashAlgorithm => - GetCryptoHashAsync(fileInfo.OpenRead, hmacKey, readProgress, false, token); - - /// - /// Asynchronously computes the cryptographic hash of a file specified by a object. - /// - /// The type of the hash algorithm to use. Must inherit from . - /// The object representing the file to compute the hash for. - /// The key to use for HMAC-based hash algorithms. If null, a standard hash algorithm is used. - /// An action to report the read progress. - /// - /// Define where the async method should run for hashing big files.
- /// This to hint the default TaskScheduler to allow more hashing threads to be running at the same time.
- /// Set to true if the data stream is big, otherwise false for small data stream. - /// - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetCryptoHashAsync( - FileInfo fileInfo, - byte[]? hmacKey, - Action? readProgress, - bool isLongRunning, - CancellationToken token) - where T : HashAlgorithm => - GetCryptoHashAsync(fileInfo.OpenRead, hmacKey, readProgress, isLongRunning, token); - - /// - /// Asynchronously computes the cryptographic hash of a stream. - /// - /// The type of the hash algorithm to use. Must inherit from . - /// The stream to compute the hash for. - /// The key to use for HMAC-based hash algorithms. If null, a standard hash algorithm is used. - /// An action to report the read progress. - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetCryptoHashAsync( - Stream stream, - byte[]? hmacKey = null, - Action? readProgress = null, - CancellationToken token = default) - where T : HashAlgorithm => - GetCryptoHashAsync(stream, hmacKey, readProgress, false, token); - - /// - /// Asynchronously computes the cryptographic hash of a stream. - /// - /// The type of the hash algorithm to use. Must inherit from . - /// The stream to compute the hash for. - /// The key to use for HMAC-based hash algorithms. If null, a standard hash algorithm is used. - /// An action to report the read progress. - /// - /// Define where the async method should run for hashing big files.
- /// This to hint the default TaskScheduler to allow more hashing threads to be running at the same time.
- /// Set to true if the data stream is big, otherwise false for small data stream. - /// - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetCryptoHashAsync( - Stream stream, - byte[]? hmacKey, - Action? readProgress, - bool isLongRunning, - CancellationToken token) - where T : HashAlgorithm - { - // Create a new task from factory, assign a synchronous method to it with detached thread. - Task task = Task - .Factory - .StartNew(Impl, - (stream, hmacKey, readProgress, token), - token, - isLongRunning ? TaskCreationOptions.LongRunning : TaskCreationOptions.DenyChildAttach, - TaskScheduler.Default); - - // Create awaitable returnable-task - return task.ConfigureAwait(false); - - static byte[] Impl(object? state) - { - (Stream stream, byte[]? hmacKey, Action? readProgress, CancellationToken token) = ((Stream, byte[]?, Action?, CancellationToken))state!; - return GetCryptoHash(stream, hmacKey, readProgress, token); - } - } - - /// - /// Asynchronously computes the cryptographic hash of a stream. - /// - /// The type of the hash algorithm to use. Must inherit from . - /// A delegate function which returns the stream to compute the hash for. - /// The key to use for HMAC-based hash algorithms. If null, a standard hash algorithm is used. - /// An action to report the read progress. - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetCryptoHashAsync( - Func streamDelegate, - byte[]? hmacKey = null, - Action? readProgress = null, - CancellationToken token = default) - where T : HashAlgorithm => - GetCryptoHashAsync(streamDelegate, hmacKey, readProgress, false, token); - - /// - /// Asynchronously computes the cryptographic hash of a stream. - /// - /// The type of the hash algorithm to use. Must inherit from . - /// A delegate function which returns the stream to compute the hash for. - /// The key to use for HMAC-based hash algorithms. If null, a standard hash algorithm is used. - /// An action to report the read progress. - /// - /// Define where the async method should run for hashing big files.
- /// This to hint the default TaskScheduler to allow more hashing threads to be running at the same time.
- /// Set to true if the data stream is big, otherwise false for small data stream. - /// - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetCryptoHashAsync( - Func streamDelegate, - byte[]? hmacKey, - Action? readProgress, - bool isLongRunning, - CancellationToken token) - where T : HashAlgorithm - { - // Create a new task from factory, assign a synchronous method to it with detached thread. - Task task = Task - .Factory - .StartNew(Impl, - (streamDelegate, hmacKey, readProgress, token), - token, - isLongRunning ? TaskCreationOptions.LongRunning : TaskCreationOptions.DenyChildAttach, - TaskScheduler.Default); - - // Create awaitable returnable-task - return task.ConfigureAwait(false); - - static byte[] Impl(object? state) - { - (Func streamDelegate, byte[]? hmacKey, Action? readProgress, CancellationToken token) = ((Func, byte[]?, Action?, CancellationToken))state!; - using Stream stream = streamDelegate(); - return GetCryptoHash(stream, hmacKey, readProgress, token); - } - } - - /// - /// Synchronously computes the cryptographic hash of a file specified by its path. - /// - /// The type of the hash algorithm to use. Must inherit from . - /// The path of the file to compute the hash for. - /// A cancellation token to observe while waiting for the operation to complete. - /// The key to use for HMAC-based hash algorithms. If null, a standard hash algorithm is used. - /// An action to report the read progress. - /// The computed hash as a byte array. - public static byte[] GetCryptoHash( - string filePath, - byte[]? hmacKey = null, - Action? readProgress = null, - CancellationToken token = default) - where T : HashAlgorithm => - GetCryptoHash(() => File.OpenRead(filePath), hmacKey, readProgress, token); - - /// - /// Synchronously computes the cryptographic hash of a file specified by a object. - /// - /// The type of the hash algorithm to use. Must inherit from . - /// The object representing the file to compute the hash for. - /// A cancellation token to observe while waiting for the operation to complete. - /// The key to use for HMAC-based hash algorithms. If null, a standard hash algorithm is used. - /// An action to report the read progress. - /// The computed hash as a byte array. - public static byte[] GetCryptoHash( - FileInfo fileInfo, - byte[]? hmacKey = null, - Action? readProgress = null, - CancellationToken token = default) - where T : HashAlgorithm => - GetCryptoHash(fileInfo.OpenRead, hmacKey, readProgress, token); - - /// - /// Synchronously computes the cryptographic hash of a file specified by a object. - /// - /// The type of the hash algorithm to use. Must inherit from . - /// A delegate function which returns the stream to compute the hash for. - /// A cancellation token to observe while waiting for the operation to complete. - /// The key to use for HMAC-based hash algorithms. If null, a standard hash algorithm is used. - /// An action to report the read progress. - /// The computed hash as a byte array. - public static byte[] GetCryptoHash( - Func streamDelegate, - byte[]? hmacKey = null, - Action? readProgress = null, - CancellationToken token = default) - where T : HashAlgorithm - { - using Stream stream = streamDelegate(); - return GetCryptoHash(stream, hmacKey, readProgress, token); - } - - /// - /// Synchronously computes the cryptographic hash of a stream. - /// - /// The type of the hash algorithm to use. Must inherit from . - /// The stream to compute the hash for. - /// A cancellation token to observe while waiting for the operation to complete. - /// The key to use for HMAC-based hash algorithms. If null, a standard hash algorithm is used. - /// An action to report the read progress. - /// The computed hash as a byte array. - public static byte[] GetCryptoHash( - Stream stream, - byte[]? hmacKey = null, - Action? readProgress = null, - CancellationToken token = default) - where T : HashAlgorithm - { - // Create and use hasher. If hmacKey is not null and not empty, then create HMAC hasher - using HashAlgorithm hashCryptoTransform = hmacKey != null && hmacKey.Length != 0 ? - CreateHmacCryptoHash(hmacKey) : - CreateCryptoHash(); - - // Get length based on stream length or at least if bigger, use the default one - long streamLen = GetStreamLength(stream); - int bufferLen = streamLen != -1 && BufferLength > streamLen ? (int)streamLen : BufferLength; - - // Initialize buffer - byte[] buffer = ArrayPool.Shared.Rent(bufferLen); - bufferLen = buffer.Length; - - try - { - // Do read activity - int read; - while ((read = stream.ReadAtLeast(buffer, bufferLen, false)) > 0) - { - // Throw Cancellation exception if detected - token.ThrowIfCancellationRequested(); - - // Append buffer into hash block - hashCryptoTransform.TransformBlock(buffer, 0, read, buffer, 0); - - // Update the read progress if the action is not null - readProgress?.Invoke(read); - } - - // Finalize the hash calculation - hashCryptoTransform.TransformFinalBlock(buffer, 0, read); - - // Return computed hash byte - return hashCryptoTransform.Hash ?? []; - } - finally - { - ArrayPool.Shared.Return(buffer); - } - } - - /// - /// Asynchronously computes the non-cryptographic hash of a file specified by its path. - /// - /// The type of the non-cryptographic hash algorithm to use. Must inherit from and have a parameterless constructor. - /// The path of the file to compute the hash for. - /// An action to report the read progress. - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetHashAsync( - string filePath, - Action? readProgress = null, - CancellationToken token = default) - where T : NonCryptographicHashAlgorithm, new() => - GetHashAsync(() => File.OpenRead(filePath), readProgress, false, token); - - /// - /// Asynchronously computes the non-cryptographic hash of a file specified by its path. - /// - /// The type of the non-cryptographic hash algorithm to use. Must inherit from and have a parameterless constructor. - /// The path of the file to compute the hash for. - /// An action to report the read progress. - /// - /// Define where the async method should run for hashing big files.
- /// This to hint the default TaskScheduler to allow more hashing threads to be running at the same time.
- /// Set to true if the data stream is big, otherwise false for small data stream. - /// - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetHashAsync( - string filePath, - Action? readProgress, - bool isLongRunning, - CancellationToken token) - where T : NonCryptographicHashAlgorithm, new() => - GetHashAsync(() => File.OpenRead(filePath), readProgress, isLongRunning, token); - - /// - /// Asynchronously computes the non-cryptographic hash of a file specified by a object. - /// - /// The type of the non-cryptographic hash algorithm to use. Must inherit from and have a parameterless constructor. - /// The object representing the file to compute the hash for. - /// An action to report the read progress. - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetHashAsync( - FileInfo fileInfo, - Action? readProgress = null, - CancellationToken token = default) - where T : NonCryptographicHashAlgorithm, new() => - GetHashAsync(fileInfo.OpenRead, readProgress, false, token); - - /// - /// Asynchronously computes the non-cryptographic hash of a file specified by a object. - /// - /// The type of the non-cryptographic hash algorithm to use. Must inherit from and have a parameterless constructor. - /// The object representing the file to compute the hash for. - /// An action to report the read progress. - /// - /// Define where the async method should run for hashing big files.
- /// This to hint the default TaskScheduler to allow more hashing threads to be running at the same time.
- /// Set to true if the data stream is big, otherwise false for small data stream. - /// - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetHashAsync( - FileInfo fileInfo, - Action? readProgress, - bool isLongRunning, - CancellationToken token) - where T : NonCryptographicHashAlgorithm, new() => - GetHashAsync(fileInfo.OpenRead, readProgress, isLongRunning, token); - - /// - /// Asynchronously computes the non-cryptographic hash of a stream. - /// - /// The type of the non-cryptographic hash algorithm to use. Must inherit from and have a parameterless constructor. - /// The stream to compute the hash for. - /// An action to report the read progress. - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetHashAsync( - Stream stream, - Action? readProgress = null, - CancellationToken token = default) - where T : NonCryptographicHashAlgorithm, new() => - GetHashAsync(stream, readProgress, false, token); - - /// - /// Asynchronously computes the non-cryptographic hash of a stream. - /// - /// The type of the non-cryptographic hash algorithm to use. Must inherit from and have a parameterless constructor. - /// The stream to compute the hash for. - /// An action to report the read progress. - /// - /// Define where the async method should run for hashing big files.
- /// This to hint the default TaskScheduler to allow more hashing threads to be running at the same time.
- /// Set to true if the data stream is big, otherwise false for small data stream. - /// - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetHashAsync( - Stream stream, - Action? readProgress, - bool isLongRunning, - CancellationToken token) - where T : NonCryptographicHashAlgorithm, new() - { - // Create hasher instance - NonCryptographicHashAlgorithm hashProvider = CreateHash(); - - // Calculate hash from the stream - return GetHashAsync(stream, hashProvider, readProgress, isLongRunning, token); - } - - /// - /// Asynchronously computes the non-cryptographic hash of a stream using a specifically provided instance. - /// - /// The stream to compute the hash for. - /// A specifically instance to use. - /// An action to report the read progress. - /// - /// Define where the async method should run for hashing big files.
- /// This to hint the default TaskScheduler to allow more hashing threads to be running at the same time.
- /// Set to true if the data stream is big, otherwise false for small data stream. - /// - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetHashAsync( - Stream stream, - NonCryptographicHashAlgorithm hashProvider, - Action? readProgress, - bool isLongRunning, - CancellationToken token) - { - // Create a new task from factory, assign a synchronous method to it with detached thread. - Task task = Task - .Factory - .StartNew(Impl, - (stream, hashProvider, readProgress, token), - token, - isLongRunning ? TaskCreationOptions.LongRunning : TaskCreationOptions.DenyChildAttach, - TaskScheduler.Default); - - // Create awaitable returnable-task - return task.ConfigureAwait(false); - - static byte[] Impl(object? state) - { - (Stream stream, NonCryptographicHashAlgorithm hashProvider, Action? readProgress, CancellationToken token) = - ((Stream, NonCryptographicHashAlgorithm, Action?, CancellationToken))state!; - return GetHash(stream, hashProvider, readProgress, token); - } - } - - /// - /// Asynchronously computes the non-cryptographic hash of a stream. - /// - /// The type of the non-cryptographic hash algorithm to use. Must inherit from and have a parameterless constructor. - /// A delegate function which returns the stream to compute the hash for. - /// An action to report the read progress. - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetHashAsync( - Func streamDelegate, - Action? readProgress = null, - CancellationToken token = default) - where T : NonCryptographicHashAlgorithm, new() => - GetHashAsync(streamDelegate, readProgress, false, token); - - /// - /// Asynchronously computes the non-cryptographic hash of a stream. - /// - /// The type of the non-cryptographic hash algorithm to use. Must inherit from and have a parameterless constructor. - /// A delegate function which returns the stream to compute the hash for. - /// An action to report the read progress. - /// - /// Define where the async method should run for hashing big files.
- /// This to hint the default TaskScheduler to allow more hashing threads to be running at the same time.
- /// Set to true if the data stream is big, otherwise false for small data stream. - /// - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetHashAsync( - Func streamDelegate, - Action? readProgress, - bool isLongRunning, - CancellationToken token) - where T : NonCryptographicHashAlgorithm, new() - { - // Create hasher instance - NonCryptographicHashAlgorithm hashProvider = CreateHash(); - - // Calculate hash from the stream - return GetHashAsync(streamDelegate, hashProvider, readProgress, isLongRunning, token); - } - - - /// - /// Asynchronously computes the non-cryptographic hash of a stream using a specifically provided instance. - /// - /// A delegate function which returns the stream to compute the hash for. - /// A specifically instance to use. - /// An action to report the read progress. - /// - /// Define where the async method should run for hashing big files.
- /// This to hint the default TaskScheduler to allow more hashing threads to be running at the same time.
- /// Set to true if the data stream is big, otherwise false for small data stream. - /// - /// A cancellation token to observe while waiting for the task to complete. - /// A task that represents the asynchronous operation. The task result contains the computed hash as a byte array. - public static ConfiguredTaskAwaitable GetHashAsync( - Func streamDelegate, - NonCryptographicHashAlgorithm hashProvider, - Action? readProgress, - bool isLongRunning, - CancellationToken token) - { - // Create a new task from factory, assign a synchronous method to it with detached thread. - Task task = Task - .Factory - .StartNew(Impl, - (streamDelegate, hashProvider, readProgress, token), - token, - isLongRunning ? TaskCreationOptions.LongRunning : TaskCreationOptions.DenyChildAttach, - TaskScheduler.Default); - - // Create awaitable returnable-task - return task.ConfigureAwait(false); - - static byte[] Impl(object? state) - { - (Func streamDelegate, NonCryptographicHashAlgorithm hashProvider, Action? readProgress, CancellationToken token) = - ((Func, NonCryptographicHashAlgorithm, Action?, CancellationToken))state!; - using Stream stream = streamDelegate(); - return GetHash(stream, hashProvider, readProgress, token); - } - } - - /// - /// Synchronously computes the non-cryptographic hash of a file specified by its path. - /// - /// The type of the non-cryptographic hash algorithm to use. Must inherit from and have a parameterless constructor. - /// The path of the file to compute the hash for. - /// An action to report the read progress. - /// A cancellation token to observe while waiting for the operation to complete. - /// The computed hash as a byte array. - public static byte[] GetHash( - string filePath, - Action? readProgress = null, - CancellationToken token = default) - where T : NonCryptographicHashAlgorithm, new() - { - using FileStream fileStream = File.OpenRead(filePath); - return GetHash(fileStream, readProgress, token); - } - - /// - /// Synchronously computes the non-cryptographic hash of a file specified by a object. - /// - /// The type of the non-cryptographic hash algorithm to use. Must inherit from and have a parameterless constructor. - /// The object representing the file to compute the hash for. - /// An action to report the read progress. - /// A cancellation token to observe while waiting for the operation to complete. - /// The computed hash as a byte array. - public static byte[] GetHash( - FileInfo fileInfo, - Action? readProgress = null, - CancellationToken token = default) - where T : NonCryptographicHashAlgorithm, new() - { - using FileStream fileStream = fileInfo.OpenRead(); - return GetHash(fileStream, readProgress, token); - } - - /// - /// Synchronously computes the non-cryptographic hash of a stream. - /// - /// The type of the non-cryptographic hash algorithm to use. Must inherit from and have a parameterless constructor. - /// The stream to compute the hash for. - /// An action to report the read progress. - /// A cancellation token to observe while waiting for the operation to complete. - /// The computed hash as a byte array. - public static byte[] GetHash( - Stream stream, - Action? readProgress = null, - CancellationToken token = default) - where T : NonCryptographicHashAlgorithm, new() - { - // Create hasher instance - NonCryptographicHashAlgorithm hashProvider = CreateHash(); - - // Calculate hash from the stream - return GetHash(stream, hashProvider, readProgress, token); - } - - /// - /// Synchronously computes the non-cryptographic hash of a stream using a specifically provided instance. - /// - /// The stream to compute the hash for. - /// A specifically instance to use. - /// An action to report the read progress. - /// A cancellation token to observe while waiting for the operation to complete. - /// The computed hash as a byte array. - public static byte[] GetHash( - Stream stream, - NonCryptographicHashAlgorithm hashProvider, - Action? readProgress = null, - CancellationToken token = default) - { - // Get length based on stream length or at least if bigger, use the default one - long streamLen = GetStreamLength(stream); - int bufferLen = streamLen != -1 && BufferLength > streamLen ? (int)streamLen : BufferLength; - - // Initialize buffer - byte[] buffer = ArrayPool.Shared.Rent(bufferLen); - bufferLen = buffer.Length; - - try - { - // Do read activity - int read; - while ((read = stream.ReadAtLeast(buffer, bufferLen, false)) > 0) - { - // Throw Cancellation exception if detected - token.ThrowIfCancellationRequested(); - - // Append buffer into hash block - hashProvider.Append(buffer.AsSpan(0, read)); - - // Update the read progress if the action is not null - readProgress?.Invoke(read); - } - - // Return computed hash byte - return hashProvider.GetHashAndReset(); - } - finally - { - ArrayPool.Shared.Return(buffer); - } - } - - /// - /// Try to get the length of the stream. - /// - /// The stream to get the length to. - /// If it doesn't have exact length (which will throw), return -1. Otherwise, return the actual length. - private static long GetStreamLength(Stream stream) - { - try - { - return stream.Length; - } - catch - { - return -1; - } - } - } -} diff --git a/CollapseLauncher/Classes/Helper/Hash.StringAndBytes.cs b/CollapseLauncher/Classes/Helper/Hash.StringAndBytes.cs deleted file mode 100644 index a0401fcaa..000000000 --- a/CollapseLauncher/Classes/Helper/Hash.StringAndBytes.cs +++ /dev/null @@ -1,249 +0,0 @@ -using System; -using System.IO.Hashing; -using System.Runtime.InteropServices; -using System.Security.Cryptography; -using System.Threading; -// ReSharper disable UnusedMember.Global - -#nullable enable -namespace CollapseLauncher.Helper -{ - public static partial class Hash - { - #region Non-crypto hash - /// - /// Computes a non-cryptographic hash for the given read-only character span using the specified hash algorithm. - /// - /// The type of the non-cryptographic hash algorithm to use. - /// The read-only character span to compute the hash for. - /// A byte array containing the computed hash. - public static byte[] GetHashFromString(ReadOnlySpan source) - where T : NonCryptographicHashAlgorithm - { - // Cast as bytes - ReadOnlySpan spanAsBytes = MemoryMarshal.AsBytes(source); - - // Borrow GetHashFromBytes(ReadOnlySpan source) to get the hash - return GetHashFromBytes(spanAsBytes); - } - - /// - /// Computes a non-cryptographic hash for the given read-only character span using the specified hash algorithm. - /// - /// The type of the non-cryptographic hash algorithm to use. - /// The read-only character span to compute the hash for. - /// A byte array containing the computed hash. - public static string GetHashStringFromString(ReadOnlySpan source) - where T : NonCryptographicHashAlgorithm - { - // Cast as bytes - ReadOnlySpan spanAsBytes = MemoryMarshal.AsBytes(source); - - // Borrow GetHashStringFromBytes(ReadOnlySpan source) to get the hash - return GetHashStringFromBytes(spanAsBytes); - } - - /// - /// Computes a non-cryptographic hash for the given read-only byte span using the specified hash algorithm. - /// - /// The type of the non-cryptographic hash algorithm to use. - /// The read-only byte span to compute the hash for. - /// A byte array containing the computed hash. - public static byte[] GetHashFromBytes(ReadOnlySpan source) - where T : NonCryptographicHashAlgorithm - { - // Get the shared hash algorithm and the thread lock instance - ref (NonCryptographicHashAlgorithm? Hash, Lock Lock) hash = ref GetSharedHash(); - - // Allocate the return buffer and calculate the hash from the source span - int hashLenInBytes = hash.Hash!.HashLengthInBytes; - byte[] hashBytesReturn = new byte[hashLenInBytes]; - if (!TryGetHashFromBytes(ref hash!, source, hashBytesReturn, out _)) - { - throw new InvalidOperationException("Failed to get the hash."); - } - - // Return the hash bytes - return hashBytesReturn; - } - - /// - /// Computes a non-cryptographic hash for the given read-only byte span using the specified hash algorithm. - /// - /// The type of the non-cryptographic hash algorithm to use. - /// The read-only byte span to compute the hash for. - /// A byte array containing the computed hash. - public static string GetHashStringFromBytes(ReadOnlySpan source) - where T : NonCryptographicHashAlgorithm - { - // Get the shared hash algorithm and the thread lock instance - ref (NonCryptographicHashAlgorithm? Hash, Lock Lock) hash = ref GetSharedHash(); - - // Allocate the hash buffer to be written to - int hashLenInBytes = hash.Hash!.HashLengthInBytes; - Span hashBuffer = stackalloc byte[hashLenInBytes]; - Span hashCharBuffer = stackalloc char[hashLenInBytes * 2]; - - // Compute the hash and reset - if (!TryGetHashFromBytes(ref hash!, source, hashBuffer, out _)) - { - throw new InvalidOperationException("Failed to get the hash."); - } - - // Convert the hash buffer into the characters of hash string - if (!Convert.TryToHexStringLower(hashBuffer, hashCharBuffer, out _)) - { - throw new InvalidOperationException("Failed to convert the hash bytes buffer to string."); - } - - // Create the string from the hash character buffer - return new string(hashCharBuffer); - } - - /// - /// Computes a non-cryptographic hash for the given read-only byte span using the specified hash algorithm. - /// - /// The type of the non-cryptographic hash algorithm to use. - /// The hash instance source to be used to compute the hash. Use to get the instance. - /// The read-only byte span to compute the hash for. - /// The hash span to be written to. - /// The length of how much bytes is the hash written to the . - /// True if it's successfully calculate the hash, False as failed. - public static bool TryGetHashFromBytes( - ref (NonCryptographicHashAlgorithm Hash, Lock Lock) hashSource, - ReadOnlySpan source, - Span destination, - out int hashBytesWritten) - where T : NonCryptographicHashAlgorithm - { - // Lock the thread and append the span to the hash algorithm - using (hashSource.Lock.EnterScope()) - { - // Append and calculate the hash of the span - hashSource.Hash.Append(source); - - // Return the bool as success or not, then reset the hash while writing the hash bytes to destination span. - return hashSource.Hash.TryGetHashAndReset(destination, out hashBytesWritten); - } - } - #endregion - - #region Crypto hash - /// - /// Computes a non-cryptographic hash for the given read-only character span using the specified hash algorithm. - /// - /// The type of the non-cryptographic hash algorithm to use. - /// The read-only character span to compute the hash for. - /// A byte array containing the computed hash. - public static byte[] GetCryptoHashFromString(ReadOnlySpan source) - where T : HashAlgorithm - { - // Cast as bytes - ReadOnlySpan spanAsBytes = MemoryMarshal.AsBytes(source); - - // Borrow GetCryptoHashFromBytes(ReadOnlySpan source) to get the hash - return GetCryptoHashFromBytes(spanAsBytes); - } - - /// - /// Computes a cryptographic hash for the given read-only character span using the specified hash algorithm. - /// - /// The type of the cryptographic hash algorithm to use. - /// The read-only character span to compute the hash for. - /// A byte array containing the computed hash. - public static string GetCryptoHashStringFromString(ReadOnlySpan source) - where T : HashAlgorithm - { - // Cast as bytes - ReadOnlySpan spanAsBytes = MemoryMarshal.AsBytes(source); - - // Borrow GetCryptoHashStringFromBytes(ReadOnlySpan source) to get the hash - return GetCryptoHashStringFromBytes(spanAsBytes); - } - - /// - /// Computes a cryptographic hash for the given read-only byte span using the specified hash algorithm. - /// - /// The type of the cryptographic hash algorithm to use. - /// The read-only byte span to compute the hash for. - /// A byte array containing the computed hash. - public static byte[] GetCryptoHashFromBytes(ReadOnlySpan source) - where T : HashAlgorithm - { - // Get the shared hash algorithm and the thread lock instance - ref (HashAlgorithm? Hash, Lock Lock) hash = ref GetSharedCryptoHash(); - - // Allocate the return buffer and calculate the hash from the source span - int hashLenInBytes = hash.Hash!.HashSize; - byte[] hashBytesReturn = new byte[hashLenInBytes]; - if (!TryGetCryptoHashFromBytes(ref hash!, source, hashBytesReturn, out _)) - { - throw new InvalidOperationException("Failed to get the hash."); - } - - // Return the hash bytes - return hashBytesReturn; - } - - /// - /// Computes a cryptographic hash for the given read-only byte span using the specified hash algorithm. - /// - /// The type of the cryptographic hash algorithm to use. - /// The read-only byte span to compute the hash for. - /// A byte array containing the computed hash. - public static string GetCryptoHashStringFromBytes(ReadOnlySpan source) - where T : HashAlgorithm - { - // Get the shared hash algorithm and the thread lock instance - ref (HashAlgorithm? Hash, Lock Lock) hash = ref GetSharedCryptoHash(); - - // Allocate the hash buffer to be written to - int hashLenInBytes = hash.Hash!.HashSize; - Span hashBuffer = stackalloc byte[hashLenInBytes]; - Span hashCharBuffer = stackalloc char[hashLenInBytes * 2]; - - // Compute the hash and reset - if (!TryGetCryptoHashFromBytes(ref hash!, source, hashBuffer, out _)) - { - throw new InvalidOperationException("Failed to get the hash."); - } - - // Convert the hash buffer into the characters of hash string - if (!Convert.TryToHexStringLower(hashBuffer, hashCharBuffer, out _)) - { - throw new InvalidOperationException("Failed to convert the hash bytes buffer to string."); - } - - // Create the string from the hash character buffer - return new string(hashCharBuffer); - } - - /// - /// Computes a cryptographic hash for the given read-only byte span using the specified hash algorithm. - /// - /// The type of the cryptographic hash algorithm to use. - /// The hash instance source to be used to compute the hash. Use to get the instance. - /// The read-only byte span to compute the hash for. - /// The hash span to be written to. - /// The length of how much bytes is the hash written to the . - /// True if it's successfully calculate the hash, False as failed. - public static bool TryGetCryptoHashFromBytes( - ref (HashAlgorithm Hash, Lock Lock) hashSource, - ReadOnlySpan source, - Span destination, - out int hashBytesWritten) - where T : HashAlgorithm - { - // Lock the thread and compute the hash of the span - using (hashSource.Lock.EnterScope()) - { - // Reset the hash instance state. - hashSource.Hash.Initialize(); - - // Compute the source bytes and return the success state - return hashSource.Hash.TryComputeHash(source, destination, out hashBytesWritten); - } - } - #endregion - } -} diff --git a/CollapseLauncher/Classes/Helper/Hash.cs b/CollapseLauncher/Classes/Helper/Hash.cs deleted file mode 100644 index 8dc1965de..000000000 --- a/CollapseLauncher/Classes/Helper/Hash.cs +++ /dev/null @@ -1,149 +0,0 @@ -using Hi3Helper; -using System; -using System.Collections.Generic; -using System.IO.Hashing; -using System.Runtime.InteropServices; -using System.Security.Cryptography; -using System.Threading; - -#nullable enable -namespace CollapseLauncher.Helper -{ - public static partial class Hash - { - private const int BufferLength = 512 << 10; - private static readonly Dictionary> CryptoHashDict = new() - { - { typeof(MD5).GetHashCode(), MD5.Create }, - { typeof(SHA1).GetHashCode(), SHA1.Create }, - { typeof(SHA256).GetHashCode(), SHA256.Create }, - { typeof(SHA384).GetHashCode(), SHA384.Create }, - { typeof(SHA512).GetHashCode(), SHA512.Create }, - { typeof(SHA3_256).GetHashCode(), SHA3_256.Create }, - { typeof(SHA3_384).GetHashCode(), SHA3_384.Create }, - { typeof(SHA3_512).GetHashCode(), SHA3_512.Create } - }; - private static readonly Dictionary> CryptoHmacHashDict = new() - { - { typeof(HMACSHA1).GetHashCode(), key => new HMACSHA1(key) }, - { typeof(HMACSHA256).GetHashCode(), key => new HMACSHA256(key) }, - { typeof(HMACSHA384).GetHashCode(), key => new HMACSHA384(key) }, - { typeof(HMACSHA512).GetHashCode(), key => new HMACSHA512(key) }, - { typeof(HMACSHA3_256).GetHashCode(), key => new HMACSHA3_256(key) }, - { typeof(HMACSHA3_384).GetHashCode(), key => new HMACSHA3_384(key) }, - { typeof(HMACSHA3_512).GetHashCode(), key => new HMACSHA3_512(key) } - }; - - private static readonly Dictionary CryptoHashDictShared = new() - { - { typeof(MD5).GetHashCode(), (CreateHashAndNullIfUnsupported(MD5.Create), new Lock()) }, - { typeof(SHA1).GetHashCode(), (CreateHashAndNullIfUnsupported(SHA1.Create), new Lock()) }, - { typeof(SHA256).GetHashCode(), (CreateHashAndNullIfUnsupported(SHA256.Create), new Lock()) }, - { typeof(SHA384).GetHashCode(), (CreateHashAndNullIfUnsupported(SHA384.Create), new Lock()) }, - { typeof(SHA512).GetHashCode(), (CreateHashAndNullIfUnsupported(SHA512.Create), new Lock()) }, - { typeof(SHA3_256).GetHashCode(), (CreateHashAndNullIfUnsupported(SHA3_256.Create), new Lock()) }, - { typeof(SHA3_384).GetHashCode(), (CreateHashAndNullIfUnsupported(SHA3_384.Create), new Lock()) }, - { typeof(SHA3_512).GetHashCode(), (CreateHashAndNullIfUnsupported(SHA3_512.Create), new Lock()) } - }; - - private static readonly Dictionary HashDictShared = new() - { - { typeof(Crc32).GetHashCode(), (CreateHashAndNullIfUnsupported(() => new Crc32()), new Lock()) }, - { typeof(Crc64).GetHashCode(), (CreateHashAndNullIfUnsupported(() => new Crc64()), new Lock()) }, - { typeof(XxHash3).GetHashCode(), (CreateHashAndNullIfUnsupported(() => new XxHash3()), new Lock()) }, - { typeof(XxHash32).GetHashCode(), (CreateHashAndNullIfUnsupported(() => new XxHash32()), new Lock()) }, - { typeof(XxHash64).GetHashCode(), (CreateHashAndNullIfUnsupported(() => new XxHash64()), new Lock()) }, - { typeof(XxHash128).GetHashCode(), (CreateHashAndNullIfUnsupported(() => new XxHash128()), new Lock()) } - }; - - private static T? CreateHashAndNullIfUnsupported(Func delegateCreate) - { - try - { - return delegateCreate(); - } - catch (PlatformNotSupportedException) - { - Logger.LogWriteLine($"Cannot initialize hash type: {typeof(T).Name} as it is not supported on your platform!", LogType.Warning, true); - return default; - } - } - - /// - /// Creates an instance of the specified cryptographic hash algorithm. - /// - /// The type of the hash algorithm to create. Must inherit from . - /// An instance of the specified hash algorithm. - /// Thrown when the specified hash algorithm type is not supported. - public static HashAlgorithm CreateCryptoHash() - where T : HashAlgorithm - { - // Try to get the hash create method from the dictionary - ref Func createHashDelegate = ref CollectionsMarshal - .GetValueRefOrNullRef(CryptoHashDict, typeof(T).GetHashCode()); - - // Create the hash algorithm instance - return createHashDelegate(); - } - - /// - /// Creates an instance of the specified HMAC-based cryptographic hash algorithm using the provided key. - /// - /// The type of the HMAC-based hash algorithm to create. Must inherit from . - /// The key to use for the HMAC-based hash algorithm. - /// An instance of the specified HMAC-based hash algorithm. - /// Thrown when the specified HMAC-based hash algorithm type is not supported. - public static HashAlgorithm CreateHmacCryptoHash(byte[] key) - where T : HashAlgorithm - { - // Try to get the hash create method from the dictionary - ref Func createHashDelegate = ref CollectionsMarshal - .GetValueRefOrNullRef(CryptoHmacHashDict, typeof(T).GetHashCode()); - - // Create the hash algorithm instance - return createHashDelegate(key); - } - - /// - /// Creates an instance of the specified non-cryptographic hash algorithm. - /// - /// The type of the non-cryptographic hash algorithm to create. Must inherit from and have a parameterless constructor. - /// An instance of the specified non-cryptographic hash algorithm. - public static NonCryptographicHashAlgorithm CreateHash() - where T : NonCryptographicHashAlgorithm, new() => new T(); - - /// - /// Gets the shared hash algorithm instance of the specified non-cryptographic hash algorithm. - /// - /// The type of the non-cryptographic hash algorithm to use. - /// A tuple of the non-cryptographic hash algorithm and the thread instance. - /// Thrown when the specified non-cryptographic hash algorithm type is not supported. - public static ref (NonCryptographicHashAlgorithm? Hash, Lock Lock) GetSharedHash() - where T : NonCryptographicHashAlgorithm - { - // Get reference from the dictionary - ref (NonCryptographicHashAlgorithm? Hash, Lock Lock) hash = ref CollectionsMarshal - .GetValueRefOrNullRef(HashDictShared, typeof(T).GetHashCode()); - - // Return the tuple reference - return ref hash; - } - - /// - /// Gets the shared hash algorithm instance of the specified cryptographic hash algorithm. - /// - /// The type of the cryptographic hash algorithm to use. - /// A tuple of the cryptographic hash algorithm and the thread instance. - /// Thrown when the specified cryptographic hash algorithm type is not supported. - public static ref (HashAlgorithm? Hash, Lock Lock) GetSharedCryptoHash() - where T : HashAlgorithm - { - // Get reference from the dictionary - ref (HashAlgorithm? Hash, Lock Lock) hash = ref CollectionsMarshal - .GetValueRefOrNullRef(CryptoHashDictShared, typeof(T).GetHashCode()); - - // Return the tuple reference - return ref hash; - } - } -} diff --git a/CollapseLauncher/Classes/Helper/HttpClientBuilder.Dns.cs b/CollapseLauncher/Classes/Helper/HttpClientBuilder.Dns.cs index 358323650..379ffbbb0 100644 --- a/CollapseLauncher/Classes/Helper/HttpClientBuilder.Dns.cs +++ b/CollapseLauncher/Classes/Helper/HttpClientBuilder.Dns.cs @@ -1,4 +1,5 @@ -using Hi3Helper; +using CollapseLauncher.Plugins; +using Hi3Helper; using Hi3Helper.Shared.Region; using Hi3Helper.Win32.Native.Structs.Dns.RecordDataType; using System; @@ -72,8 +73,29 @@ private static Dictionary GetDnsServerTemplateKeyIndex() private static readonly ConcurrentDictionary DnsClientResolveTtlCache = new(StringComparer.OrdinalIgnoreCase); - internal static bool IsUseExternalDns => SharedExternalDnsServers is { Length: > 0 }; - internal static NameServer[]? SharedExternalDnsServers; + internal static bool IsUseExternalDns => SharedExternalDnsServers is { Length: > 0 }; + internal static NameServer[]? SharedExternalDnsServers + { + get; + set + { + field = value; + if (field == null || field.Length == 0) + { + foreach (PluginInfo pluginInfo in PluginManager.PluginInstances.Values) + { + pluginInfo.DisableDnsResolver(); + } + } + else + { + foreach (PluginInfo pluginInfo in PluginManager.PluginInstances.Values) + { + pluginInfo.EnableDnsResolver(); + } + } + } + } /// /// Supported input format:
@@ -329,7 +351,6 @@ internal static void UseExternalDns(string[]? servers = null, DnsConnectionType } Logger.LogWriteLine("[HttpClientBuilder::ParseDnsSettings] No valid IP addresses has been parsed to be used as the DNS query host, the settings will be reverted", LogType.Warning, true); - return; } internal static IEnumerable EnumerateHostAsIp(IEnumerable input) @@ -357,7 +378,7 @@ internal static IEnumerable EnumerateHostAsIp(IEnumerable inp } } - internal static void UseExternalDns(NameServer[]? nameServers = null) => Interlocked.Exchange(ref SharedExternalDnsServers, nameServers); + internal static void UseExternalDns(NameServer[]? nameServers = null) => SharedExternalDnsServers = nameServers; protected static async ValueTask ExternalDnsConnectCallback( SocketsHttpConnectionContext context, CancellationToken token) @@ -625,7 +646,7 @@ internal static IEnumerable MergeWithZigZag(this ResourceRecordC try { - Enumerate: + Enumerate: bool isGetOne = enumeratorOne.MoveNext(); bool isGetTwo = enumeratorTwo.MoveNext(); diff --git a/CollapseLauncher/Classes/Helper/HttpClientBuilder.cs b/CollapseLauncher/Classes/Helper/HttpClientBuilder.cs index 2d15d5ea6..af287b542 100644 --- a/CollapseLauncher/Classes/Helper/HttpClientBuilder.cs +++ b/CollapseLauncher/Classes/Helper/HttpClientBuilder.cs @@ -52,6 +52,11 @@ private static string GetDefaultUserAgent() + $"WinAppSDK/{LauncherConfig.WindowsAppSdkVersion}"; } + public static HttpClient CreateDefaultClient(int maxConnection = 32, bool isSkipDnsInit = false) + => new HttpClientBuilder() + .UseLauncherConfig() + .Create(); + public HttpClientBuilder UseProxy(bool isUseSystemProxy = true) { IsUseProxy = true; diff --git a/CollapseLauncher/Classes/Helper/Image/ImageConverterHelper.cs b/CollapseLauncher/Classes/Helper/Image/ImageConverterHelper.cs new file mode 100644 index 000000000..68fea5002 --- /dev/null +++ b/CollapseLauncher/Classes/Helper/Image/ImageConverterHelper.cs @@ -0,0 +1,60 @@ +using System.Drawing; +using System.Drawing.Imaging; +using System.IO; +using DImage = System.Drawing.Image; + +namespace CollapseLauncher.Classes.Helper.Image +{ + internal static class ImageConverterHelper + { + public static Icon ConvertToIcon(DImage image) + { + using var bmp32 = new Bitmap(image.Width, image.Height, PixelFormat.Format32bppArgb); + + using (var g = Graphics.FromImage(bmp32)) + { + g.DrawImage(image, new Rectangle(0, 0, bmp32.Width, bmp32.Height)); + } + + using (var stream = new MemoryStream()) + { + bmp32.Save(stream, ImageFormat.Png); + var bytes = stream.ToArray(); + + using var ms = new MemoryStream(); + using var bw = new BinaryWriter(ms); + + // ICONDIR structure (6 bytes) + // 0-1 reserved (0), 2-3 type (1 for icons), 4-5 count + bw.Write((ushort)0); // Reserved + bw.Write((ushort)1); // Image type (1 = icon) + bw.Write((ushort)1); // Number of images + + + int width = image.Width >= 256 ? 0 : image.Width; + int height = image.Height >= 256 ? 0 : image.Height; + + // ICONDIRENTRY (16 bytes) + bw.Write((byte)width); // width + bw.Write((byte)height); // height + bw.Write((byte)0); // Color palette (0 = no palette) + bw.Write((byte)0); // Reserved + bw.Write((ushort)0); // Color planes + bw.Write((ushort)32); // Bits per pixel + + uint bytesInRes = (uint)bytes.Length; + uint imageOffset = 6 + 16; + + bw.Write(bytesInRes); + bw.Write(imageOffset); + + bw.Write(bytes); + + bw.Flush(); + ms.Position = 0; + + return new Icon(ms); + } + } + } +} diff --git a/CollapseLauncher/Classes/Helper/Image/ImageLoaderHelper.cs b/CollapseLauncher/Classes/Helper/Image/ImageLoaderHelper.cs index 55713fc2c..162928a9f 100644 --- a/CollapseLauncher/Classes/Helper/Image/ImageLoaderHelper.cs +++ b/CollapseLauncher/Classes/Helper/Image/ImageLoaderHelper.cs @@ -3,11 +3,13 @@ using CollapseLauncher.Extension; using CollapseLauncher.Helper.Background; using CollapseLauncher.Helper.StreamUtility; +using CollapseLauncher.Plugins; using CommunityToolkit.WinUI.Animations; using CommunityToolkit.WinUI.Media; using Hi3Helper; using Hi3Helper.Data; using Hi3Helper.EncTool; +using Hi3Helper.EncTool.Hashes; using Hi3Helper.SentryHelper; using Microsoft.UI.Text; using Microsoft.UI.Xaml; @@ -18,6 +20,7 @@ using PhotoSauce.MagicScaler; using System; using System.Buffers; +using System.Buffers.Text; using System.Collections.Concurrent; using System.Collections.Generic; using System.Drawing; @@ -25,7 +28,10 @@ using System.IO.Hashing; using System.Linq; using System.Net.Http; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; using System.Security.Cryptography; +using System.Text; using System.Threading; using System.Threading.Tasks; using Windows.Storage; @@ -326,7 +332,7 @@ private static async Task GenerateCachedStream(FileInfo inputFileInf internal static FileInfo GetCacheFileInfo(string filePath) { - string cachedFileHash = Hash.GetHashStringFromString(filePath); + string cachedFileHash = HexTool.BytesToHexUnsafe(HashUtility.Shared.GetHashFromString(filePath))!; string cachedFilePath = Path.Combine(AppGameImgCachedFolder!, cachedFileHash!); if (IsWaifu2XEnabled) cachedFilePath += "_waifu2x"; @@ -500,11 +506,11 @@ private static bool TryGetMd5HashFromFilename(string fileName, out byte[]? hash) private static readonly HashSet ProcessingFiles = []; private static readonly HashSet ProcessingUrls = []; - public static async void TryDownloadToCompletenessDetached(string? url, HttpClient? useHttpClient, FileInfo fileInfo, CancellationToken token) + public static async void TryDownloadToCompletenessDetached(string? url, HttpClient? useHttpClient, FileInfo fileInfo, bool isSkipCheck, CancellationToken token) { try { - _ = await TryDownloadToCompletenessAsync(url, useHttpClient, fileInfo, token); + _ = await TryDownloadToCompletenessAsync(url, useHttpClient, fileInfo, isSkipCheck, token); } catch { @@ -512,13 +518,15 @@ public static async void TryDownloadToCompletenessDetached(string? url, HttpClie } } - public static async Task TryDownloadToCompletenessAsync(string? url, HttpClient? useHttpClient, FileInfo fileInfo, CancellationToken token) + public static async Task TryDownloadToCompletenessAsync(string? url, HttpClient? useHttpClient, FileInfo fileInfo, bool isSkipCheck, CancellationToken token) { if (string.IsNullOrEmpty(url)) { return false; } + fileInfo.EnsureCreationOfDirectory().EnsureNoReadOnly(); + if (ProcessingFiles.Contains(fileInfo) || ProcessingUrls.Contains(url)) { Logger.LogWriteLine("Found duplicate download request, skipping...\r\n\t" + @@ -531,7 +539,9 @@ public static async Task TryDownloadToCompletenessAsync(string? url, HttpC ProcessingFiles.Add(fileInfo); ProcessingUrls.Add(url); // Initialize file temporary name - FileInfo fileInfoTemp = new FileInfo(fileInfo.FullName + "_temp"); + FileInfo fileInfoTemp = new FileInfo(fileInfo.FullName + "_temp") + .EnsureCreationOfDirectory() + .EnsureNoReadOnly(); Logger.LogWriteLine($"Start downloading resource from: {url}", LogType.Default, true); @@ -553,8 +563,8 @@ public static async Task TryDownloadToCompletenessAsync(string? url, HttpC fileLength = netStream.Length; // Create the prop file for download completeness checking - string? outputParentPath = Path.GetDirectoryName(fileInfoTemp.FullName); - string outputFilename = Path.GetFileName(fileInfoTemp.FullName); + string? outputParentPath = Path.GetDirectoryName(fileInfo.FullName); + string outputFilename = Path.GetFileName(fileInfo.FullName); if (outputParentPath != null) { string propFilePath = Path.Combine(outputParentPath, $"{outputFilename}#{netStream.Length}"); @@ -571,15 +581,16 @@ public static async Task TryDownloadToCompletenessAsync(string? url, HttpC } } - if (await IsFileCompletelyDownloadedAsync(fileInfoTemp, true)) - { - // Move to its original filename - fileInfoTemp.Refresh(); - fileInfoTemp.MoveTo(fileInfo.FullName, true); + Logger.LogWriteLine($"Resource download from: {url} has been completed and stored locally into:" + + $"\"{fileInfo.FullName}\" with size: {ConverterTool.SummarizeSizeSimple(fileLength)} ({fileLength} bytes)", LogType.Default, true); - Logger.LogWriteLine($"Resource download from: {url} has been completed and stored locally into:" - + $"\"{fileInfo.FullName}\" with size: {ConverterTool.SummarizeSizeSimple(fileLength)} ({fileLength} bytes)", LogType.Default, true); + // Move to its original filename + fileInfoTemp.Refresh(); + fileInfoTemp.MoveTo(fileInfo.FullName, true); + fileInfo.Refresh(); + if (isSkipCheck || await IsFileCompletelyDownloadedAsync(fileInfo, true)) + { // Break from the loop and return true return true; } @@ -668,7 +679,7 @@ await client.GetAsync(urlLocal, HttpCompletionOption.ResponseHeadersRead, tokenL tokenLocal); } - public static string? GetCachedSprites(HttpClient? httpClient, string? url, CancellationToken token) + public static string? GetCachedSprites(HttpClient? httpClient, string? url, bool isSkipHashCheck, CancellationToken token) { if (string.IsNullOrEmpty(url) || token.IsCancellationRequested) return url; @@ -677,20 +688,20 @@ await client.GetAsync(urlLocal, HttpCompletionOption.ResponseHeadersRead, tokenL Directory.CreateDirectory(AppGameImgCachedFolder); FileInfo fInfo = new FileInfo(cachePath); - if (IsFileCompletelyDownloaded(fInfo, true)) + if (IsFileCompletelyDownloaded(fInfo, !isSkipHashCheck)) { return cachePath; } - TryDownloadToCompletenessDetached(url, httpClient, fInfo, token); + TryDownloadToCompletenessDetached(url, httpClient, fInfo, isSkipHashCheck, token); return url; } - public static async Task GetCachedSpritesAsync(string? url, CancellationToken token) - => await GetCachedSpritesAsync(null, url, token); + public static async Task GetCachedSpritesAsync(string? url, bool isSkipHashCheck, CancellationToken token) + => await GetCachedSpritesAsync(null, url, isSkipHashCheck, token); - public static async Task GetCachedSpritesAsync(HttpClient? httpClient, string? url, CancellationToken token) + public static async Task GetCachedSpritesAsync(HttpClient? httpClient, string? url, bool isSkipHashCheck, CancellationToken token) { if (string.IsNullOrEmpty(url)) return url; @@ -699,16 +710,136 @@ await client.GetAsync(urlLocal, HttpCompletionOption.ResponseHeadersRead, tokenL Directory.CreateDirectory(AppGameImgCachedFolder); FileInfo fInfo = new FileInfo(cachePath); - if (await IsFileCompletelyDownloadedAsync(fInfo, true)) + if (await IsFileCompletelyDownloadedAsync(fInfo, !isSkipHashCheck)) { return cachePath; } - if (!await TryDownloadToCompletenessAsync(url, httpClient, fInfo, token)) + if (!await TryDownloadToCompletenessAsync(url, httpClient, fInfo, isSkipHashCheck, token)) { return url; } return cachePath; } + + private delegate bool WriteEmbeddedBase64DataToBuffer(ReadOnlySpan chars, Span buffer, out int dataDecoded); + + public static string? CopyToLocalIfBase64(string? url, string? dirPath = null) + { + if (string.IsNullOrEmpty(url)) + { + return null; + } + + WriteEmbeddedBase64DataToBuffer writeToDelegate; + if (Base64Url.IsValid(url, out int bufferLen)) + { + writeToDelegate = WriteBufferFromBase64Url; + } + else if (Base64.IsValid(url, out bufferLen)) + { + writeToDelegate = WriteBufferFromBase64Raw; + } + else + { + return url; + } + + ReadOnlySpan urlAsSpan = url; + + dirPath ??= Path.GetTempPath(); + byte[] fileNameHash = HashUtility.Shared.GetHashFromString(urlAsSpan.Length > 32 ? urlAsSpan[..^32] : urlAsSpan[..Math.Min(urlAsSpan.Length - 1, 32)]); + string fileNameBase = HexTool.BytesToHexUnsafe(fileNameHash)!; + string filePath = Path.Combine(dirPath, fileNameBase); + + string? existingFilePath = Directory + .EnumerateFiles(dirPath, fileNameBase + ".*", SearchOption.TopDirectoryOnly) + .FirstOrDefault(); + + if (!string.IsNullOrEmpty(existingFilePath)) + { + return existingFilePath; + } + + byte[] decodedBuffer = ArrayPool.Shared.Rent(bufferLen); + try + { + if (!writeToDelegate(url, decodedBuffer, out int writtenToBuffer)) + { + return null; + } + + string fileExt = PluginLauncherApiWrapper.DecideEmbeddedDataExtension(decodedBuffer); + filePath += fileExt; + + using UnmanagedMemoryStream bufferStream = ToStream(new Span(decodedBuffer, 0, writtenToBuffer)); + using FileStream fileStream = File.Create(filePath); + bufferStream.CopyTo(fileStream); + + return filePath; + } + catch +#if DEBUG + (Exception ex) +#endif + { +#if DEBUG + Logger.LogWriteLine($"An error has occurred while writing Base64 URL to local file.\r\n{ex}", LogType.Error, true); +#endif + return null; + } + finally + { + ArrayPool.Shared.Return(decodedBuffer); + } + + unsafe UnmanagedMemoryStream ToStream(Span buffer) + { + ref byte dataRef = ref MemoryMarshal.AsRef(buffer); + return new UnmanagedMemoryStream((byte*)Unsafe.AsPointer(ref dataRef), buffer.Length); + } + + bool WriteBufferFromBase64Url(ReadOnlySpan chars, Span buffer, out int dataDecoded) + { + if (Base64Url.TryDecodeFromChars(chars, buffer, out dataDecoded)) + { + return true; + } + + dataDecoded = 0; + return false; + } + + bool WriteBufferFromBase64Raw(ReadOnlySpan chars, Span buffer, out int dataDecoded) + { + int tempBufferToUtf8Len = Encoding.UTF8.GetByteCount(chars); + byte[] tempBufferToUtf8 = ArrayPool.Shared.Rent(tempBufferToUtf8Len); + try + { + if (!Encoding.UTF8.TryGetBytes(chars, tempBufferToUtf8, out int utf8StrWritten)) + { + dataDecoded = 0; + return false; + } + + OperationStatus decodeStatus = Base64.DecodeFromUtf8(tempBufferToUtf8.AsSpan(0, utf8StrWritten), buffer, out _, out dataDecoded); + if (decodeStatus == OperationStatus.Done) + { + return true; + } + + dataDecoded = 0; +#if DEBUG + throw new InvalidOperationException($"Cannot decode data string from Base64 as it returns with status: {decodeStatus}"); +#else + return false; +#endif + } + finally + { + ArrayPool.Shared.Return(tempBufferToUtf8); + } + } + } } } diff --git a/CollapseLauncher/Classes/Helper/LauncherApiLoader/HoYoPlay/HoYoPlayLauncherApiLoader.cs b/CollapseLauncher/Classes/Helper/LauncherApiLoader/HoYoPlay/HoYoPlayLauncherApiLoader.cs index c9b26e3e7..bc7e5d913 100644 --- a/CollapseLauncher/Classes/Helper/LauncherApiLoader/HoYoPlay/HoYoPlayLauncherApiLoader.cs +++ b/CollapseLauncher/Classes/Helper/LauncherApiLoader/HoYoPlay/HoYoPlayLauncherApiLoader.cs @@ -73,10 +73,11 @@ public static HoYoPlayLauncherApiLoader CreateApiInstance(PresetConfig presetCon protected override Task LoadLauncherGameResource(ActionOnTimeOutRetry? onTimeoutRoutine, CancellationToken token) { ActionTimeoutTaskAwaitableCallback hypResourceResponseCallback = - innerToken => ApiGeneralHttpClient.GetFromCachedJsonAsync(PresetConfig?.LauncherResourceURL, - HoYoPlayLauncherResourcesJsonContext.Default.HoYoPlayLauncherResources, - token: innerToken) - .ConfigureAwait(false); + innerToken => ApiGeneralHttpClient + .GetFromCachedJsonAsync(PresetConfig?.LauncherResourceURL, + HoYoPlayLauncherResourcesJsonContext.Default.HoYoPlayLauncherResources, + token: innerToken) + .ConfigureAwait(false); // Assign as 3 Task array Task[] tasks = [ @@ -95,8 +96,8 @@ protected override Task LoadLauncherGameResource(ActionOnTimeOutRetry? onTimeout ExecutionTimeoutStep, ExecutionTimeoutAttempt, onTimeoutRoutine, - token) - .ContinueWith(async result => hypResourceResponse = await result, token); + result => hypResourceResponse = result, + token); if (!string.IsNullOrEmpty(PresetConfig?.LauncherPluginURL) && (PresetConfig.IsPluginUpdateEnabled ?? false)) { @@ -112,8 +113,8 @@ protected override Task LoadLauncherGameResource(ActionOnTimeOutRetry? onTimeout ExecutionTimeoutStep, ExecutionTimeoutAttempt, onTimeoutRoutine, - token) - .ContinueWith(async result => hypPluginResource = await result, token); + result => hypPluginResource = result, + token); } if (!string.IsNullOrEmpty(PresetConfig?.LauncherGameChannelSDKURL)) @@ -126,12 +127,12 @@ protected override Task LoadLauncherGameResource(ActionOnTimeOutRetry? onTimeout .ConfigureAwait(false); tasks[2] = hypSdkResourceCallback - .WaitForRetryAsync(ExecutionTimeout, - ExecutionTimeoutStep, - ExecutionTimeoutAttempt, - onTimeoutRoutine, - token) - .ContinueWith(async result => hypSdkResource = await result, token); + .WaitForRetryAsync(ExecutionTimeout, + ExecutionTimeoutStep, + ExecutionTimeoutAttempt, + onTimeoutRoutine, + result => hypSdkResource = result, + token); } RegionResourceLatest sophonResourceCurrentPackage = new RegionResourceLatest(); @@ -146,10 +147,12 @@ protected override Task LoadLauncherGameResource(ActionOnTimeOutRetry? onTimeout }; // Await all callbacks - return Task.WhenAll(tasks) - .ContinueWith(AfterExecute, token); + Task waitAllTask = Task.WhenAll(tasks); + waitAllTask.GetAwaiter().OnCompleted(AfterExecute); + + return waitAllTask; - void AfterExecute(Task action) + void AfterExecute() { ConvertPluginResources(ref sophonResourceData, hypPluginResource); ConvertSdkResources(ref sophonResourceData, hypSdkResource); @@ -393,17 +396,21 @@ protected override Task LoadLauncherNews(ActionOnTimeOutRetry? onTimeoutRoutine, ActionTimeoutTaskAwaitableCallback hypLauncherBackgroundCallback = innerToken => - ApiResourceHttpClient.GetFromJsonAsync(launcherSpriteUrl, - HoYoPlayLauncherNewsJsonContext.Default.HoYoPlayLauncherNews, - innerToken) - .ConfigureAwait(false); + ApiResourceHttpClient + .GetFromCachedJsonAsync(launcherSpriteUrl, + HoYoPlayLauncherNewsJsonContext.Default.HoYoPlayLauncherNews, + null, + innerToken) + .ConfigureAwait(false); ActionTimeoutTaskAwaitableCallback hypLauncherNewsCallback = innerToken => - ApiResourceHttpClient.GetFromJsonAsync(launcherNewsUrl, - HoYoPlayLauncherNewsJsonContext.Default.HoYoPlayLauncherNews, - innerToken) - .ConfigureAwait(false); + ApiResourceHttpClient + .GetFromCachedJsonAsync(launcherNewsUrl, + HoYoPlayLauncherNewsJsonContext.Default.HoYoPlayLauncherNews, + null, + innerToken) + .ConfigureAwait(false); HoYoPlayLauncherNews? hypLauncherBackground = null; HoYoPlayLauncherNews? hypLauncherNews = null; @@ -415,26 +422,24 @@ protected override Task LoadLauncherNews(ActionOnTimeOutRetry? onTimeoutRoutine, ExecutionTimeoutStep, ExecutionTimeoutAttempt, onTimeoutRoutine, - token) - .ContinueWith(async result => hypLauncherBackground = await result, token), + result => hypLauncherBackground = result, + token), hypLauncherNewsCallback .WaitForRetryAsync(ExecutionTimeout, ExecutionTimeoutStep, ExecutionTimeoutAttempt, onTimeoutRoutine, + result => hypLauncherNews = result, token) - .ContinueWith(async result => hypLauncherNews = await result, token) ]; // Await the result - return Task.WhenAll(tasks) - .ContinueWith(AfterExecute, token); + Task waitAllTask = Task.WhenAll(tasks); + waitAllTask.GetAwaiter().OnCompleted(AfterExecute); + return waitAllTask; - async Task AfterExecute(Task action) + void AfterExecute() { - // Run action - await action.ConfigureAwait(false); - // Merge background image if (hypLauncherBackground?.Data?.GameInfoList != null && hypLauncherNews?.Data != null) hypLauncherNews.Data.GameInfoList = hypLauncherBackground.Data?.GameInfoList; @@ -561,29 +566,30 @@ protected override Task LoadLauncherGameInfo(ActionOnTimeOutRetry? onTimeoutRout ActionTimeoutTaskAwaitableCallback hypLauncherGameInfoCallback = innerToken => - ApiResourceHttpClient.GetFromJsonAsync(launcherGameInfoUrl, - HoYoPlayLauncherGameInfoJsonContext.Default.HoYoPlayLauncherGameInfo, - innerToken) - .ConfigureAwait(false); + ApiResourceHttpClient + .GetFromCachedJsonAsync(launcherGameInfoUrl, + HoYoPlayLauncherGameInfoJsonContext.Default.HoYoPlayLauncherGameInfo, + null, + innerToken) + .ConfigureAwait(false); return hypLauncherGameInfoCallback .WaitForRetryAsync(ExecutionTimeout, ExecutionTimeoutStep, ExecutionTimeoutAttempt, onTimeoutRoutine, - token) - .ContinueWith(async action => - { - HoYoPlayLauncherGameInfo? hypLauncherGameInfo = await action; - - HoYoPlayGameInfoField? sophonLauncherGameInfoRoot = new HoYoPlayGameInfoField(); - if (hypLauncherGameInfo != null) - { - ConvertGameInfoResources(ref sophonLauncherGameInfoRoot, hypLauncherGameInfo.GameInfoData); - - LauncherGameInfoField = sophonLauncherGameInfoRoot ?? new HoYoPlayGameInfoField(); - } - }, token); + action => + { + HoYoPlayGameInfoField? sophonLauncherGameInfoRoot = new HoYoPlayGameInfoField(); + if (action == null) + { + return; + } + + ConvertGameInfoResources(ref sophonLauncherGameInfoRoot, action.GameInfoData); + LauncherGameInfoField = sophonLauncherGameInfoRoot ?? new HoYoPlayGameInfoField(); + }, + token); } #region Convert Game Info Resources @@ -668,19 +674,27 @@ private static string FindOrCreateHYPDeviceId(RegistryKey? rootRegistryKey, bool private static string CreateNewDeviceId() { - // Define the registry key path for cryptography settings - const string regKeyCryptography = @"SOFTWARE\Microsoft\Cryptography"; - - // Open the registry key for reading - using RegistryKey? rootRegistryKey = Registry.LocalMachine.OpenSubKey(regKeyCryptography, true); - // Retrieve the MachineGuid value from the registry, or generate a new GUID if it doesn't exist - string guid = ((string?)rootRegistryKey?.GetValue("MachineGuid", null) ?? - Guid.NewGuid().ToString()).Replace("-", string.Empty); + string guid; + try + { + // Define the registry key path for cryptography settings + const string regKeyCryptography = @"SOFTWARE\Microsoft\Cryptography"; + + // Open the registry key for reading + using var rootRegistryKey = Registry.LocalMachine.OpenSubKey(regKeyCryptography, true); + // Retrieve the MachineGuid value from the registry, or generate a new GUID if it doesn't exist + guid = ((string?)rootRegistryKey?.GetValue("MachineGuid", null) ?? + Guid.NewGuid().ToString()).Replace("-", string.Empty); + } + catch (Exception ex) + { + Logger.LogWriteLine($"[HoYoPlayLauncherApiLoader::CreateNewDeviceId] Failed to retrieve MachineGuid from registry, using a dummy GUID instead" + + $"\r\n{ex}", LogType.Error, true); + guid = Guid.NewGuid().ToString().Replace("-", string.Empty); + } // Append the current Unix timestamp in milliseconds to the GUID - string guidWithEpochMs = guid + DateTimeOffset.UtcNow.ToUnixTimeMilliseconds(); - // Return the combined GUID and timestamp - return guidWithEpochMs; + return guid + DateTimeOffset.UtcNow.ToUnixTimeMilliseconds(); } #endregion } diff --git a/CollapseLauncher/Classes/Helper/LauncherApiLoader/ILauncherApi.cs b/CollapseLauncher/Classes/Helper/LauncherApiLoader/ILauncherApi.cs index 48ed2dc0b..b1334447e 100644 --- a/CollapseLauncher/Classes/Helper/LauncherApiLoader/ILauncherApi.cs +++ b/CollapseLauncher/Classes/Helper/LauncherApiLoader/ILauncherApi.cs @@ -26,6 +26,7 @@ public interface ILauncherApi : IDisposable LauncherGameNews? LauncherGameNews { get; } HttpClient? ApiGeneralHttpClient { get; } HttpClient? ApiResourceHttpClient { get; } + bool IsPlugin { get; } Task LoadAsync(OnLoadTaskAction? beforeLoadRoutine = null, OnLoadTaskAction? afterLoadRoutine = null, ActionOnTimeOutRetry? onTimeoutRoutine = null, ErrorLoadRoutineDelegate? errorLoadRoutine = null, CancellationToken token = default); diff --git a/CollapseLauncher/Classes/Helper/LauncherApiLoader/LauncherApiBase.cs b/CollapseLauncher/Classes/Helper/LauncherApiLoader/LauncherApiBase.cs index e71f24238..30bed835e 100644 --- a/CollapseLauncher/Classes/Helper/LauncherApiLoader/LauncherApiBase.cs +++ b/CollapseLauncher/Classes/Helper/LauncherApiLoader/LauncherApiBase.cs @@ -3,6 +3,8 @@ using CollapseLauncher.Helper.LauncherApiLoader.Legacy; using CollapseLauncher.Helper.Metadata; using Hi3Helper; +using Hi3Helper.EncTool; +using Hi3Helper.Plugin.Core.Management; using Microsoft.Win32; using System; #if SIMULATEPRELOAD @@ -34,14 +36,14 @@ internal partial class LauncherApiBase : ILauncherApi public const int ExecutionTimeout = 10; public const int ExecutionTimeoutStep = 5; public const int ExecutionTimeoutAttempt = 5; - protected PresetConfig? PresetConfig { get; } - - public bool IsLoadingCompleted { get; private set; } - public bool IsForceRedirectToSophon { get; private set; } - public string? GameBackgroundImg { get => LauncherGameNews?.Content?.Background?.BackgroundImg; } - public string? GameBackgroundImgLocal { get; set; } - public string? GameName { get; init; } - public string? GameRegion { get; init; } + public bool IsPlugin => false; + public bool IsLoadingCompleted { get; private set; } + public bool IsForceRedirectToSophon { get; private set; } + public string? GameBackgroundImg { get => LauncherGameNews?.Content?.Background?.BackgroundImg; } + public string? GameBackgroundImgLocal { get; set; } + public string? GameName { get; init; } + public string? GameRegion { get; init; } + protected PresetConfig? PresetConfig { get; } public string? GameNameTranslation => InnerLauncherConfig.GetGameTitleRegionTranslationString(GameName, Locale.Lang._GameClientTitles); @@ -153,8 +155,8 @@ protected virtual async Task LoadAsyncInner(ActionOnTimeOutRetry? onTimeoutRouti // 2025-05-05: As per now, the Sophon resource information requires to be fetched first. // This is mandatory due to latest Genshin Impact changes which removes zip // packages and also version infos. - await LoadLauncherGameResourceSophon(onTimeoutRoutine, token); - await Task.WhenAll(LoadLauncherGameResource(onTimeoutRoutine, token), + await Task.WhenAll(LoadLauncherGameResourceSophon(onTimeoutRoutine, token), + LoadLauncherGameResource(onTimeoutRoutine, token), LoadLauncherNews(onTimeoutRoutine, token), LoadLauncherGameInfo(onTimeoutRoutine, token)); @@ -177,8 +179,8 @@ protected virtual void InitializeFakeVersionInfo() return; } - if (GameVersion.TryParse(gameBranch.GameMainField?.Tag, out GameVersion? latestSophonVersion) && - GameVersion.TryParse(LauncherGameResource.data.game?.latest?.version, out GameVersion? latestZipVersion) && + if (GameVersion.TryParse(gameBranch.GameMainField?.Tag, out GameVersion latestSophonVersion) && + GameVersion.TryParse(LauncherGameResource.data.game?.latest?.version, out GameVersion latestZipVersion) && latestSophonVersion == latestZipVersion) { return; @@ -237,25 +239,30 @@ protected virtual async Task LoadLauncherGameResourceSophon(ActionOnTimeOutRetry Logger.LogWriteLine("This game/region doesn't have Sophon->BranchUrl or PresetConfig->LauncherBizName property defined! This might cause the launcher inaccurately check the version if Zip download is unavailable", LogType.Warning, true); } + // Ensure associated await sophonUrls.EnsureReassociated(ApiGeneralHttpClient, sophonBranchUrl, PresetConfig.LauncherBizName!, false, token); + sophonUrls.ResetAssociation(); // Reset association so it won't conflict with preload/update/install activity - ActionTimeoutTaskAwaitableCallback launcherSophonBranchCallback = + ActionTimeoutTaskAwaitableCallback launcherSophonBranchCallback = innerToken => - ApiGeneralHttpClient.GetFromJsonAsync(PresetConfig.LauncherResourceChunksURL?.BranchUrl, - HoYoPlayLauncherGameInfoJsonContext.Default.HoYoPlayLauncherGameInfo, - innerToken) - .ConfigureAwait(false); - - LauncherGameResourceSophon = await launcherSophonBranchCallback + ApiGeneralHttpClient + .GetFromCachedJsonAsync(PresetConfig.LauncherResourceChunksURL?.BranchUrl, + HoYoPlayLauncherGameInfoJsonContext.Default.HoYoPlayLauncherGameInfo, + null, + innerToken) + .ConfigureAwait(false); + + await launcherSophonBranchCallback .WaitForRetryAsync(ExecutionTimeout, ExecutionTimeoutStep, ExecutionTimeoutAttempt, onTimeoutRoutine, + result => LauncherGameResourceSophon = result, token); } @@ -265,12 +272,11 @@ protected virtual Task LoadLauncherGameResource(ActionOnTimeOutRetry? onTimeoutR EnsurePresetConfigNotNull(); EnsureResourceUrlNotNull(); - ActionTimeoutTaskAwaitableCallback launcherGameResourceCallback = + ActionTimeoutTaskCallback launcherGameResourceCallback = innerToken => ApiGeneralHttpClient.GetFromJsonAsync(PresetConfig?.LauncherResourceURL, RegionResourcePropJsonContext.Default.RegionResourceProp, - innerToken) - .ConfigureAwait(false); + innerToken); Task[] tasks = [ launcherGameResourceCallback @@ -290,13 +296,12 @@ protected virtual Task LoadLauncherGameResource(ActionOnTimeOutRetry? onTimeoutR .ContinueWith(AfterExecute, token); } - ActionTimeoutTaskAwaitableCallback launcherPluginPropCallback = + ActionTimeoutTaskCallback launcherPluginPropCallback = innerToken => ApiGeneralHttpClient.GetFromJsonAsync(string.Format(PresetConfig?.LauncherPluginURL!, GetDeviceId(PresetConfig!)), RegionResourcePropJsonContext.Default.RegionResourceProp, - innerToken) - .ConfigureAwait(false); + innerToken); tasks[1] = launcherPluginPropCallback .WaitForRetryAsync(ExecutionTimeout, @@ -467,7 +472,7 @@ private ConfiguredTaskAwaitable throw new NullReferenceException("Launcher news URL is null or empty!"); } - ActionTimeoutTaskAwaitableCallback taskGameLauncherNewsSophonCallback = + ActionTimeoutTaskCallback taskGameLauncherNewsSophonCallback = innerToken => isMultiLang ? LoadMultiLangLauncherNews(presetConfig.LauncherSpriteURL, lang, innerToken) @@ -481,25 +486,23 @@ private ConfiguredTaskAwaitable .ConfigureAwait(false); } - private ConfiguredTaskAwaitable + private Task LoadSingleLangLauncherNews(string launcherSpriteUrl, CancellationToken token) { return ApiResourceHttpClient.GetFromJsonAsync(launcherSpriteUrl, LauncherGameNewsJsonContext.Default.LauncherGameNews, - token) - .ConfigureAwait(false); + token); } - private ConfiguredTaskAwaitable + private Task LoadMultiLangLauncherNews(string launcherSpriteUrl, string lang, CancellationToken token) { return ApiResourceHttpClient.GetFromJsonAsync(string.Format(launcherSpriteUrl, lang), LauncherGameNewsJsonContext.Default.LauncherGameNews, - token) - .ConfigureAwait(false); + token); } protected virtual string GetDeviceId(PresetConfig preset) diff --git a/CollapseLauncher/Classes/Helper/LauncherApiLoader/Legacy/LauncherGameNews.cs b/CollapseLauncher/Classes/Helper/LauncherApiLoader/Legacy/LauncherGameNews.cs index a0e55f54f..da9c96bbd 100644 --- a/CollapseLauncher/Classes/Helper/LauncherApiLoader/Legacy/LauncherGameNews.cs +++ b/CollapseLauncher/Classes/Helper/LauncherApiLoader/Legacy/LauncherGameNews.cs @@ -214,7 +214,8 @@ public class LauncherGameNewsCarousel : LauncherUIResourceBase, ILauncherGameNew { [JsonIgnore] public CancellationToken? InnerToken { get; set; } - [JsonPropertyName("banner_id")] public string? CarouselId { get; init; } + [JsonIgnore] public bool IsImageUrlHashable { get; set; } = true; + [JsonPropertyName("banner_id")] public string? CarouselId { get; init; } [JsonPropertyName("name")] [JsonConverter(typeof(EmptyStringAsNullConverter))] @@ -224,7 +225,7 @@ public class LauncherGameNewsCarousel : LauncherUIResourceBase, ILauncherGameNew [JsonConverter(typeof(SanitizeUrlStringConverter))] public string? CarouselImg { - get => ImageLoaderHelper.GetCachedSprites(CurrentHttpClient, field, InnerToken ?? CancellationToken.None); + get => CurrentHttpClient == null ? field : ImageLoaderHelper.GetCachedSprites(CurrentHttpClient, field, !IsImageUrlHashable, InnerToken ?? CancellationToken.None); init; } @@ -244,7 +245,8 @@ public partial class LauncherGameNewsSocialMedia : LauncherUIResourceBase, ILaun { private readonly string? _socialMediaUrl; - [JsonIgnore] public CancellationToken? InnerToken { get; set; } + [JsonIgnore] public bool IsImageUrlHashable { get; set; } = true; + [JsonIgnore] public CancellationToken? InnerToken { get; set; } [JsonPropertyName("icon_id")] public string? IconId { get; init; } @@ -252,7 +254,7 @@ public partial class LauncherGameNewsSocialMedia : LauncherUIResourceBase, ILaun [JsonConverter(typeof(SanitizeUrlStringConverter))] public string? IconImg { - get => ImageLoaderHelper.GetCachedSprites(CurrentHttpClient, field, InnerToken ?? CancellationToken.None); + get => CurrentHttpClient == null ? field : ImageLoaderHelper.GetCachedSprites(CurrentHttpClient, field, !IsImageUrlHashable, InnerToken ?? CancellationToken.None); init; } @@ -260,7 +262,7 @@ public string? IconImg [JsonConverter(typeof(SanitizeUrlStringConverter))] public string? IconImgHover { - get => ImageLoaderHelper.GetCachedSprites(CurrentHttpClient, field, InnerToken ?? CancellationToken.None); + get => CurrentHttpClient == null ? field : ImageLoaderHelper.GetCachedSprites(CurrentHttpClient, field, !IsImageUrlHashable, InnerToken ?? CancellationToken.None); init; } @@ -287,7 +289,7 @@ public string? Title [JsonConverter(typeof(SanitizeUrlStringConverter))] public string? QrImg { - get => ImageLoaderHelper.GetCachedSprites(CurrentHttpClient, field, InnerToken ?? CancellationToken.None); + get => CurrentHttpClient == null ? field : ImageLoaderHelper.GetCachedSprites(CurrentHttpClient, field, !IsImageUrlHashable, InnerToken ?? CancellationToken.None); init; } @@ -353,6 +355,13 @@ public string? Title init; } + [JsonIgnore] + public string? Description + { + get => field ?? Title; + set; + } + // TODO: Make sure that the value always be a number. If yes, then we // will change the type from string? to int? [JsonPropertyName("order")] diff --git a/CollapseLauncher/Classes/Helper/Loading/LoadingMessageHelper.cs b/CollapseLauncher/Classes/Helper/Loading/LoadingMessageHelper.cs index 955a426b2..f2ea01763 100644 --- a/CollapseLauncher/Classes/Helper/Loading/LoadingMessageHelper.cs +++ b/CollapseLauncher/Classes/Helper/Loading/LoadingMessageHelper.cs @@ -92,9 +92,9 @@ internal static async void ShowLoadingFrame() } } - private static async Task ShowLoadingFrameInner() + private static Task ShowLoadingFrameInner() { - if (IsCurrentlyShow) return; + if (IsCurrentlyShow) return Task.CompletedTask; IsCurrentlyShow = true; CurrentMainWindow.LoadingStatusGrid.Visibility = Visibility.Visible; @@ -102,8 +102,7 @@ private static async Task ShowLoadingFrameInner() TimeSpan duration = TimeSpan.FromSeconds(0.25); - await Task.WhenAll( - CurrentMainWindow.LoadingStatusBackgroundGrid.StartAnimation(duration, + return Task.WhenAll(CurrentMainWindow.LoadingStatusBackgroundGrid.StartAnimation(duration, CurrentMainWindow.LoadingStatusBackgroundGrid.GetElementCompositor().CreateScalarKeyFrameAnimation("Opacity", 1, 0)), CurrentMainWindow.LoadingStatusGrid.StartAnimation(duration, CurrentMainWindow.LoadingStatusGrid.GetElementCompositor().CreateVector3KeyFrameAnimation("Translation", new Vector3(0, 0, CurrentMainWindow.LoadingStatusGrid.Translation.Z), new Vector3(0, (float)(CurrentMainWindow.LoadingStatusGrid.ActualHeight + 16), CurrentMainWindow.LoadingStatusGrid.Translation.Z)), @@ -132,24 +131,27 @@ internal static async void HideLoadingFrame() } } - private static async Task HideLoadingFrameInner() + private static Task HideLoadingFrameInner() { - if (!IsCurrentlyShow) return; + if (!IsCurrentlyShow) return Task.CompletedTask; IsCurrentlyShow = false; TimeSpan duration = TimeSpan.FromSeconds(0.25); - await Task.WhenAll( - CurrentMainWindow.LoadingStatusBackgroundGrid.StartAnimation(duration, - CurrentMainWindow.LoadingStatusBackgroundGrid.GetElementCompositor().CreateScalarKeyFrameAnimation("Opacity", 0, 1)), - CurrentMainWindow.LoadingStatusGrid.StartAnimation(duration, - CurrentMainWindow.LoadingStatusGrid.GetElementCompositor().CreateVector3KeyFrameAnimation("Translation", new Vector3(0, (float)(CurrentMainWindow.LoadingStatusGrid.ActualHeight + 16), CurrentMainWindow.LoadingStatusGrid.Translation.Z), new Vector3(0, 0, CurrentMainWindow.LoadingStatusGrid.Translation.Z)), - CurrentMainWindow.LoadingStatusGrid.GetElementCompositor().CreateScalarKeyFrameAnimation("Opacity", 0, 1)) - ); - - CurrentMainWindow.LoadingStatusGrid.Visibility = Visibility.Collapsed; - CurrentMainWindow.LoadingStatusBackgroundGrid.Visibility = Visibility.Collapsed; - HideActionButton(); + return Task.WhenAll(CurrentMainWindow.LoadingStatusBackgroundGrid.StartAnimation(duration, + CurrentMainWindow.LoadingStatusBackgroundGrid.GetElementCompositor().CreateScalarKeyFrameAnimation("Opacity", 0, 1)), + CurrentMainWindow.LoadingStatusGrid.StartAnimation(duration, + CurrentMainWindow.LoadingStatusGrid.GetElementCompositor().CreateVector3KeyFrameAnimation("Translation", new Vector3(0, (float)(CurrentMainWindow.LoadingStatusGrid.ActualHeight + 16), CurrentMainWindow.LoadingStatusGrid.Translation.Z), new Vector3(0, 0, CurrentMainWindow.LoadingStatusGrid.Translation.Z)), + CurrentMainWindow.LoadingStatusGrid.GetElementCompositor().CreateScalarKeyFrameAnimation("Opacity", 0, 1)) + ).ContinueWith((_, _) => + { + CurrentMainWindow.DispatcherQueue.TryEnqueue(() => + { + CurrentMainWindow.LoadingStatusGrid.Visibility = Visibility.Collapsed; + CurrentMainWindow.LoadingStatusBackgroundGrid.Visibility = Visibility.Collapsed; + HideActionButton(); + }); + }, null); } /// diff --git a/CollapseLauncher/Classes/Helper/Metadata/LauncherMetadataHelper.cs b/CollapseLauncher/Classes/Helper/Metadata/LauncherMetadataHelper.cs index 72430d899..d0a07baa4 100644 --- a/CollapseLauncher/Classes/Helper/Metadata/LauncherMetadataHelper.cs +++ b/CollapseLauncher/Classes/Helper/Metadata/LauncherMetadataHelper.cs @@ -2,9 +2,11 @@ using CollapseLauncher.Helper.LauncherApiLoader.HoYoPlay; using CollapseLauncher.Helper.LauncherApiLoader.Legacy; using CollapseLauncher.Helper.Loading; +using CollapseLauncher.Plugins; using CollapseLauncher.Statics; using Hi3Helper; using Hi3Helper.Data; +using Hi3Helper.EncTool.Hashes; using Hi3Helper.SentryHelper; using Hi3Helper.Shared.Region; using System; @@ -184,6 +186,10 @@ private static Task IsMetadataLocallyModified(string gameName, string gameR if (stamp == null) return -2; + // Ignore the stamp generated by the plugin. Return as 0 (unmodified) + if (stamp.MetadataType == MetadataType.PresetConfigPlugin) + return 0; + // SANITIZE: MetadataPath cannot be empty or null if (string.IsNullOrEmpty(stamp.MetadataPath)) throw new NullReferenceException($"MetadataPath property inside of the stamp from: {stampKey} cannot be empty or null!"); @@ -220,6 +226,12 @@ internal static async Task Initialize(bool isCacheUpdateModeOnly = false, bool i // Initialize the stamp and config file await InitializeStamp(currentChannel); await InitializeConfig(currentChannel, isCacheUpdateModeOnly, isShowLoadingMessage); + + // Unload Plugins first + PluginManager.UnloadPlugins(); + + // Load preset config from plugins + await PluginManager.LoadPlugins(LauncherMetadataConfig!, LauncherGameNameRegionCollection!, LauncherMetadataStampDictionary!); } internal static async Task InitializeStamp(string currentChannel, bool throwAfterRetry = false) @@ -551,8 +563,8 @@ async ValueTask LoadRegionMetadataConfig((int, (Stamp?, ConcurrentDictionary(hashComposition); - int hashID = BitConverter.ToInt32(hashBytes); + byte[] hashBytes = HashUtility.ThreadSafe.GetHashFromString(hashComposition); + int hashID = BitConverter.ToInt32(hashBytes); presetConfig.HashID = hashID; presetConfig.GameName = stamp.GameName; diff --git a/CollapseLauncher/Classes/Helper/Metadata/MetadataType.cs b/CollapseLauncher/Classes/Helper/Metadata/MetadataType.cs index 9f77d9190..092e09fe0 100644 --- a/CollapseLauncher/Classes/Helper/Metadata/MetadataType.cs +++ b/CollapseLauncher/Classes/Helper/Metadata/MetadataType.cs @@ -8,6 +8,7 @@ public enum MetadataType Unknown, PresetConfigV2, MasterKey, - CommunityTools + CommunityTools, + PresetConfigPlugin } } diff --git a/CollapseLauncher/Classes/Helper/Metadata/PresetConfig.cs b/CollapseLauncher/Classes/Helper/Metadata/PresetConfig.cs index afe5e0634..8a256f5a5 100644 --- a/CollapseLauncher/Classes/Helper/Metadata/PresetConfig.cs +++ b/CollapseLauncher/Classes/Helper/Metadata/PresetConfig.cs @@ -56,6 +56,7 @@ public enum GameNameType Genshin, StarRail, Zenless, + Plugin, Unknown = int.MinValue } @@ -63,14 +64,16 @@ public enum GameNameType public enum GameVendorType { miHoYo, - Cognosphere + Cognosphere, + CollapsePlugin } [JsonConverter(typeof(JsonStringEnumConverter))] public enum LauncherType { Sophon, - HoYoPlay + HoYoPlay, + Plugin } public class SophonChunkUrls @@ -109,12 +112,11 @@ public Task EnsureReassociated(HttpClient client, string? branchUrl, string bizN return Task.CompletedTask; // Fetch branch info - ActionTimeoutTaskAwaitableCallback hypLauncherBranchCallback = + ActionTimeoutTaskCallback hypLauncherBranchCallback = innerToken => FallbackCDNUtil.DownloadAsJSONType(branchUrl, HoYoPlayLauncherGameInfoJsonContext.Default.HoYoPlayLauncherGameInfo, - innerToken) - .ConfigureAwait(false); + innerToken); return hypLauncherBranchCallback .WaitForRetryAsync(LauncherApiBase.ExecutionTimeout, @@ -292,7 +294,7 @@ internal static class PresetConfigExt [JsonSerializable(typeof(PresetConfig))] internal sealed partial class PresetConfigJsonContext : JsonSerializerContext; - internal sealed class PresetConfig + public class PresetConfig { #region Constants // ReSharper disable once UnusedMember.Local @@ -305,13 +307,13 @@ internal sealed class PresetConfig #region Config Propeties [JsonIgnore] - public ILauncherApi? GameLauncherApi { get; set; } + public virtual ILauncherApi? GameLauncherApi { get; set; } - [JsonPropertyName("GameChannel")] public GameChannel Channel { get; init; } - public AudioLanguageType GameDefaultCVLanguage { get; init; } - public GameNameType GameType { get; init; } = GameNameType.Unknown; - public GameVendorType VendorType { get; init; } - public LauncherType LauncherType { get; init; } + public virtual GameChannel GameChannel { get; init; } + public AudioLanguageType GameDefaultCVLanguage { get; init; } + public virtual GameNameType GameType { get; init; } = GameNameType.Unknown; + public virtual GameVendorType VendorType { get; init; } + public virtual LauncherType LauncherType { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] public string? BetterHi3LauncherVerInfoReg { get; init; } @@ -320,16 +322,17 @@ internal sealed class PresetConfig public string? DispatcherKey { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] - public string? FallbackLanguage { get; init; } + [JsonPropertyName("FallbackLanguage")] + public virtual string? DefaultLanguage { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] public string? InternalGameNameFolder { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] - public string? InternalGameNameInConfig { get; init; } + public virtual string? InternalGameNameInConfig { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] - public string? GameDirectoryName { get; init; } + public virtual string? GameDirectoryName { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] public string? GameDispatchURL { get; init; } @@ -344,7 +347,7 @@ internal sealed class PresetConfig public string? GameDispatchURLTemplate { get; set; } [JsonConverter(typeof(ServeV3StringConverter))] - public string? GameExecutableName { get; init; } + public virtual string? GameExecutableName { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] public string? GameGatewayDefault { get; init; } @@ -353,7 +356,7 @@ internal sealed class PresetConfig public string? GameGatewayURLTemplate { get; set; } [JsonConverter(typeof(ServeV3StringConverter))] - public string? GameName { get; set; } + public virtual string? GameName { get; set; } [JsonConverter(typeof(ServeV3StringConverter))] public string? LauncherId { get; init; } @@ -426,7 +429,7 @@ public SophonChunkUrls? LauncherResourceChunksURL public string? LauncherCPSType { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] - public string? ProfileName { get; init; } + public virtual string? ProfileName { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] public string? ProtoDispatchKey { get; init; } @@ -435,43 +438,42 @@ public SophonChunkUrls? LauncherResourceChunksURL public string? SteamInstallRegistryLocation { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] - public string? ZoneDescription { get; init; } + public virtual string? ZoneDescription { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] - public string? ZoneFullname { get; init; } + public virtual string? ZoneFullname { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] - public string? ZoneLogoURL { get; init; } + public virtual string? ZoneLogoURL { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] - public string? ZoneName { get; init; } + public virtual string? ZoneName { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] - public string? ZonePosterURL { get; init; } + public virtual string? ZonePosterURL { get; init; } [JsonConverter(typeof(ServeV3StringConverter))] - public string? ZoneURL { get; init; } + public virtual string? ZoneURL { get; init; } [JsonConverter(typeof(ServeV3StringListConverter))] public List? ConvertibleTo { get; init; } [JsonConverter(typeof(ServeV3StringListConverter))] - public List? GameSupportedLanguages { get; init; } + public virtual List GameSupportedLanguages { get; init; } = []; [JsonConverter(typeof(ServeV3StringListConverter))] public List? GameDispatchArrayURL { get; init; } public bool? IsPluginUpdateEnabled { get; init; } = false; - - public bool? IsConvertible { get; init; } - public bool? IsExperimental { get; init; } - public bool? IsGenshin { get; init; } - public bool? IsHideSocMedDesc { get; init; } = true; - - #if !DEBUG + + public bool? IsConvertible { get; init; } + public bool? IsGenshin { get; init; } + public bool? IsHideSocMedDesc { get; init; } = true; + +#if !DEBUG public bool? IsRepairEnabled { get; set; } public bool? IsCacheUpdateEnabled { get; set; } - #else +#else public bool? IsRepairEnabled = true; public bool? IsCacheUpdateEnabled = true; #endif @@ -505,8 +507,8 @@ public SophonChunkUrls? LauncherResourceChunksURL public string ConfigRegistryLocation => string.Format(PrefixRegGameConfig, VendorType, InternalGameNameInConfig); - public string? ActualGameDataLocation { get; set; } - public int HashID { get; set; } + public string? ActualGameDataLocation { get; set; } + public virtual int HashID { get; set; } #endregion @@ -522,7 +524,7 @@ public SophonChunkUrls? LauncherResourceChunksURL { LogWriteLine($"Language registry on \e[32;1m{Path.GetFileName(ConfigRegistryLocation)}\e[0m version doesn't exist. Fallback value will be used.", LogType.Warning, true); - return FallbackLanguage; + return DefaultLanguage; } ReadOnlySpan value = Encoding.UTF8.GetString(result).AsSpan().Trim('\0'); diff --git a/CollapseLauncher/Classes/Helper/StreamUtility/StreamExtension.cs b/CollapseLauncher/Classes/Helper/StreamUtility/StreamExtension.cs index 5d112fcc9..f9361c0bc 100644 --- a/CollapseLauncher/Classes/Helper/StreamUtility/StreamExtension.cs +++ b/CollapseLauncher/Classes/Helper/StreamUtility/StreamExtension.cs @@ -1,6 +1,7 @@ using Hi3Helper; using Hi3Helper.Data; using Hi3Helper.SentryHelper; +using Hi3Helper.Win32.ManagedTools; using System; using System.Collections.Generic; using System.IO; @@ -53,18 +54,20 @@ internal static FileInfo EnsureNoReadOnly(this FileInfo fileInfo) internal static FileInfo EnsureNoReadOnly(this FileInfo fileInfo, out bool isFileExist) { + isFileExist = fileInfo.Exists; + if (!isFileExist || !fileInfo.IsReadOnly) return fileInfo; + try { - if (!(isFileExist = fileInfo.Exists)) - return fileInfo; - fileInfo.IsReadOnly = false; + fileInfo.Refresh(); return fileInfo; } - finally + catch (Exception ex) { - fileInfo.Refresh(); + throw new AggregateException($"[StreamExtension::EnsureNoReadOnly] Failed to remove ReadOnly attribute from file: {fileInfo.FullName}", + ex); } } @@ -169,6 +172,25 @@ internal static bool TryDeleteFile(this FileInfo filePath, bool throwIfFailed = } } + internal static bool TryDeleteDirectory(this DirectoryInfo directoryPath, bool isRecursive = false, bool throwIfFailed = false) + { + try + { + if (directoryPath.Exists) + directoryPath.Delete(isRecursive); + + return true; + } + catch (Exception ex) + { + if (throwIfFailed) + throw; + + Logger.LogWriteLine($"Failed to delete directory: {directoryPath.FullName}\r\n{ex}", LogType.Error, true); + return false; + } + } + internal static string NormalizePath(this string path) => ConverterTool.NormalizePath(path); @@ -283,5 +305,35 @@ public static FileInfo ResolveSymlink(this FileInfo fileInfo) throw; } } + + /// + /// Deletes the directory if it is empty. + /// + /// The directory to remove. + /// Whether to remove all possibly empty directories recursively. + public static void DeleteEmptyDirectory(this string dir, bool recursive = false) + => new DirectoryInfo(dir).DeleteEmptyDirectory(recursive); + + /// + /// Deletes the directory if it is empty. + /// + /// The directory to remove. + /// Whether to remove all possibly empty directories recursively. + public static void DeleteEmptyDirectory(this DirectoryInfo dir, bool recursive = false) + { + if (recursive) + { + foreach (DirectoryInfo childDir in dir.EnumerateDirectories("*", SearchOption.TopDirectoryOnly)) + { + DeleteEmptyDirectory(childDir); + } + } + + FindFiles.TryIsDirectoryEmpty(dir.FullName, out bool isEmpty); + if (isEmpty) + { + dir.Delete(true); + } + } } } diff --git a/CollapseLauncher/Classes/Helper/Update/LauncherUpdateHelper.cs b/CollapseLauncher/Classes/Helper/Update/LauncherUpdateHelper.cs index 67b6ea9d9..9d7e7bb2c 100644 --- a/CollapseLauncher/Classes/Helper/Update/LauncherUpdateHelper.cs +++ b/CollapseLauncher/Classes/Helper/Update/LauncherUpdateHelper.cs @@ -1,23 +1,18 @@ using CollapseLauncher.Extension; using Hi3Helper; using Hi3Helper.Data; +using Hi3Helper.Plugin.Core.Management; using Hi3Helper.SentryHelper; using Hi3Helper.Shared.Region; using System; using System.Threading.Tasks; using System.Diagnostics.CodeAnalysis; using System.IO; - -#if !USEVELOPACK -using Squirrel; -using Squirrel.Sources; -#else using Velopack; using Velopack.Locators; +using Velopack.Logging; using Velopack.Sources; // ReSharper disable UnusedMember.Global -#endif - // ReSharper disable StringLiteralTypo // ReSharper disable CheckNamespace @@ -29,7 +24,7 @@ internal static class LauncherUpdateHelper internal static AppUpdateVersionProp? AppUpdateVersionProp; internal static bool IsLauncherUpdateAvailable; - internal static GameVersion? LauncherCurrentVersion => field ??= new GameVersion(LauncherConfig.AppCurrentVersionString); + internal static GameVersion? LauncherCurrentVersion => field ??= LauncherConfig.AppCurrentVersionString; [field: AllowNull, MaybeNull] internal static string LauncherCurrentVersionString => field = LauncherConfig.AppCurrentVersionString; @@ -56,23 +51,17 @@ internal static async Task IsUpdateAvailable(bool isForceCheckUpdate = fal string updateChannel = LauncherConfig.IsPreview ? "preview" : "stable"; CDNURLProperty launcherUpdatePreferredCdn = FallbackCDNUtil.GetPreferredCDN(); - string launcherUpdateManagerBaseUrl = launcherUpdatePreferredCdn.URLPrefix.CombineURLFromString( - #if USEVELOPACK - "velopack", - updateChannel -#else - "squirrel", - updateChannel -#endif - ); + string launcherUpdateManagerBaseUrl = + launcherUpdatePreferredCdn + .URLPrefix + .CombineURLFromString("velopack", updateChannel); // Register the update manager adapter IFileDownloader updateManagerHttpAdapter = new UpdateManagerHttpAdapter(); -#if USEVELOPACK // Initialize update manager logger, locator and options - var velopackLogger = ILoggerHelper.GetILogger("Velopack").ToVelopackLogger(); - var updateManagerLocator = VelopackLocator.CreateDefaultForPlatform(velopackLogger); - UpdateOptions updateManagerOptions = new UpdateOptions + IVelopackLogger? velopackLogger = ILoggerHelper.GetILogger("Velopack").ToVelopackLogger(); + IVelopackLocator updateManagerLocator = VelopackLocator.CreateDefaultForPlatform(velopackLogger); + UpdateOptions updateManagerOptions = new() { AllowVersionDowngrade = true, ExplicitChannel = updateChannel @@ -82,10 +71,9 @@ internal static async Task IsUpdateAvailable(bool isForceCheckUpdate = fal IUpdateSource updateSource = new SimpleWebSource(launcherUpdateManagerBaseUrl, updateManagerHttpAdapter); // Initialize the update manager - UpdateManager updateManager = new UpdateManager( - updateSource, - updateManagerOptions, - updateManagerLocator); + UpdateManager updateManager = new(updateSource, + updateManagerOptions, + updateManagerLocator); // Get the update info. If it's null, then return false (no update) UpdateInfo? updateInfo = await updateManager.CheckForUpdatesAsync(); @@ -95,7 +83,7 @@ internal static async Task IsUpdateAvailable(bool isForceCheckUpdate = fal } // If there's an update, then get the update metadata - GameVersion updateVersion = new GameVersion(updateInfo.TargetFullRelease.Version.ToString()); + GameVersion updateVersion = updateInfo.TargetFullRelease.Version.ToString(); AppUpdateVersionProp = await GetUpdateMetadata(updateChannel); if (AppUpdateVersionProp == null) { @@ -103,32 +91,13 @@ internal static async Task IsUpdateAvailable(bool isForceCheckUpdate = fal } // Compare the version - IsLauncherUpdateAvailable = LauncherCurrentVersion.Compare(updateVersion); + IsLauncherUpdateAvailable = LauncherCurrentVersion < updateVersion; // Get the status if the update is ignorable or forced update. bool isUserIgnoreUpdate = (LauncherConfig.GetAppConfigValue("DontAskUpdate").ToBoolNullable() ?? false) && !isForceCheckUpdate; bool isUpdateRoutineSkipped = isUserIgnoreUpdate && !AppUpdateVersionProp.IsForceUpdate; return IsLauncherUpdateAvailable && !isUpdateRoutineSkipped; -#else - using (UpdateManager updateManager = new UpdateManager(launcherUpdateManagerBaseUrl, null, null, updateManagerHttpAdapter)) - { - UpdateInfo info = await updateManager.CheckForUpdate(); - if (info == null) return false; - - GameVersion remoteVersion = new GameVersion(info.FutureReleaseEntry.Version.Version); - - AppUpdateVersionProp = await GetUpdateMetadata(updateChannel); - if (AppUpdateVersionProp == null) return false; - - IsLauncherUpdateAvailable = LauncherCurrentVersion.Compare(remoteVersion); - - bool isUserIgnoreUpdate = (LauncherConfig.GetAppConfigValue("DontAskUpdate").ToBoolNullable() ?? false) && !isForceCheckUpdate; - bool isUpdateRoutineSkipped = isUserIgnoreUpdate && !AppUpdateVersionProp.IsForceUpdate; - - return IsLauncherUpdateAvailable && !isUpdateRoutineSkipped; - } -#endif } private static async ValueTask GetUpdateMetadata(string updateChannel) diff --git a/CollapseLauncher/Classes/Helper/WindowUtility.cs b/CollapseLauncher/Classes/Helper/WindowUtility.cs index 20ef3dfe9..150942a3e 100644 --- a/CollapseLauncher/Classes/Helper/WindowUtility.cs +++ b/CollapseLauncher/Classes/Helper/WindowUtility.cs @@ -510,18 +510,6 @@ private static IntPtr MainWndProc(IntPtr hwnd, uint msg, UIntPtr wParam, IntPtr case SC_MINIMIZE: { MainPage.CurrentBackgroundHandler?.WindowUnfocused(); - if (LauncherConfig.GetAppConfigValue("MinimizeToTray").ToBool()) - { - // Carousel is handled inside WM_SHOWWINDOW message for minimize to tray - if (CurrentWindow is MainWindow mainWindow && mainWindow._TrayIcon != null) - { - mainWindow._TrayIcon.ToggleAllVisibility(); - } - else TrayNullHandler("WindowUtility.MainWndProc"); - - return 0; - } - InnerLauncherConfig.m_homePage?.CarouselStopScroll(); break; } @@ -768,15 +756,31 @@ internal static void SetWindowSize(int width, int height) { Height = lastWindowHeight, Width = lastWindowWidth, X = xOff, Y = yOff }; } - internal static void WindowMinimize() + internal static void WindowMinimize(bool sendToTray = true) { if (CurrentWindowPtr == nint.Zero) { return; } + if (LauncherConfig.GetAppConfigValue("MinimizeToTray").ToBool() && sendToTray) + { + // If minimize to tray is enabled, toggle the tray icon visibility + // This will also handle the carousel visibility + // If the tray icon is not initialized, call the null handler + { + // Carousel is handled inside WM_SHOWWINDOW message for minimize to tray + if (CurrentWindow is MainWindow mainWindow && mainWindow._TrayIcon != null) + { + mainWindow._TrayIcon.ToggleAllVisibility(); + } + else TrayNullHandler("WindowUtility.MainWndProc"); + return; // Early return to prevent double minimize call + } + } + const uint WM_SYSCOMMAND = 0x0112; - const uint SC_MINIMIZE = 0xF020; + const uint SC_MINIMIZE = 0xF020; PInvoke.SendMessage(CurrentWindowPtr, WM_SYSCOMMAND, SC_MINIMIZE, 0); } diff --git a/CollapseLauncher/Classes/InstallManagement/Base/GameInstallPackage.cs b/CollapseLauncher/Classes/InstallManagement/Base/GameInstallPackage.cs index ef4a3718c..628ccf6fb 100644 --- a/CollapseLauncher/Classes/InstallManagement/Base/GameInstallPackage.cs +++ b/CollapseLauncher/Classes/InstallManagement/Base/GameInstallPackage.cs @@ -3,6 +3,7 @@ using Hi3Helper.Data; using Hi3Helper.EncTool; using Hi3Helper.Http.Legacy; +using Hi3Helper.Plugin.Core.Management; using Hi3Helper.Preset; using Hi3Helper.SentryHelper; using System; @@ -44,7 +45,7 @@ public GameInstallPackage(RegionResourcePlugin packageProperty, string pathOutpu if (packageProperty.version != null) { - Version = new GameVersion(packageProperty.version); + Version = packageProperty.version; } PackageType = GameInstallPackageType.Plugin; } @@ -71,7 +72,7 @@ public GameInstallPackage(RegionResourceVersion packageProperty, string pathOutp if (packageProperty.version != null || overrideVersion != null) { - Version = new GameVersion(overrideVersion ?? packageProperty.version); + Version = overrideVersion ?? packageProperty.version; } if (!string.IsNullOrEmpty(packageProperty.md5)) diff --git a/CollapseLauncher/Classes/InstallManagement/Base/InstallManagerBase.Sophon.cs b/CollapseLauncher/Classes/InstallManagement/Base/InstallManagerBase.Sophon.cs index 724dff4b9..34a972643 100644 --- a/CollapseLauncher/Classes/InstallManagement/Base/InstallManagerBase.Sophon.cs +++ b/CollapseLauncher/Classes/InstallManagement/Base/InstallManagerBase.Sophon.cs @@ -13,6 +13,7 @@ using CollapseLauncher.Helper.StreamUtility; using Hi3Helper; using Hi3Helper.Data; +using Hi3Helper.Plugin.Core.Management; using Hi3Helper.SentryHelper; using Hi3Helper.Shared.ClassStruct; using Hi3Helper.Shared.Region; @@ -232,7 +233,7 @@ await GameVersionManager.GamePreset } ?? GameVersionManager!.GetGameVersionApi(); // Add the tag query to the Url - requestedUrl += $"&tag={requestedVersion.ToString()}"; + requestedUrl += $"&tag={requestedVersion}"; #endif try @@ -421,12 +422,13 @@ await Parallel.ForEachAsync(sophonAssetList, parallelOptions, DelegateAssetRenam // Remove sophon verified files CleanupTempSophonVerifiedFiles(); + // ReSharper disable AccessToDisposedClosure // Declare the download delegate - ValueTask DelegateAssetDownload(SophonAsset asset, CancellationToken _) - // ReSharper disable once AccessToDisposedClosure - { - return RunSophonAssetDownloadThread(httpClient, asset, parallelChunksOptions); - } + ValueTask DelegateAssetDownload(SophonAsset asset, CancellationToken _) => + gameState == GameInstallStateEnum.NeedsUpdate + ? RunSophonAssetUpdateThread(httpClient, asset, parallelChunksOptions) + : RunSophonAssetDownloadThread(httpClient, asset, parallelChunksOptions); + // ReSharper enable AccessToDisposedClosure // Declare the rename temp file delegate async ValueTask DelegateAssetRenameTempFile(SophonAsset asset, CancellationToken token) @@ -791,6 +793,9 @@ await TryGetAdditionalPackageForSophonDiff(httpClient, downloadSpeedLimiter); } + // Filter asset list + await FilterSophonPatchAssetList(sophonUpdateAssetList, Token.Token); + // Get the remote chunk size ProgressPerFileSizeTotal = sophonUpdateAssetList.GetCalculatedDiffSize(!isPreloadMode); ProgressPerFileSizeCurrent = 0; @@ -926,7 +931,14 @@ await Parallel.ForEachAsync(sophonUpdateAssetList.Where(x => !x.IsDirectory), } } - private ValueTask RunSophonAssetDownloadThread(HttpClient client, SophonAsset asset, + protected virtual Task FilterSophonPatchAssetList(List itemList, CancellationToken token) + { + // NOP + return Task.CompletedTask; + } + + private ValueTask RunSophonAssetDownloadThread(HttpClient client, + SophonAsset asset, ParallelOptions parallelOptions) { // If the asset is a dictionary, then return @@ -936,11 +948,49 @@ private ValueTask RunSophonAssetDownloadThread(HttpClient client, SophonAss } // Get the file path and start the write process - var assetName = asset.AssetName; - var filePath = EnsureCreationOfDirectory(Path.Combine(GamePath, assetName)); + string? assetName = asset.AssetName; + string filePath = EnsureCreationOfDirectory(Path.Combine(GamePath, assetName)); + + if (File.Exists(filePath + "_tempSophon")) // Fallback to legacy behaviour + { + return RunSophonAssetUpdateThread(client, asset, parallelOptions); + } + + // Get the target and temp file info + FileInfo existingFileInfo = new FileInfo(filePath).EnsureNoReadOnly(); + + return asset.WriteToStreamAsync(client, + assetSize => existingFileInfo.Open(new FileStreamOptions + { + Mode = FileMode.OpenOrCreate, + Access = FileAccess.ReadWrite, + Share = FileShare.ReadWrite, + BufferSize = assetSize.GetFileStreamBufferSize() + }), + parallelOptions, + UpdateSophonFileTotalProgress, + UpdateSophonFileDownloadProgress, + UpdateSophonDownloadStatus + ); + } + + private ValueTask RunSophonAssetUpdateThread(HttpClient client, + SophonAsset asset, + ParallelOptions parallelOptions) + { + // If the asset is a dictionary, then return + if (asset.IsDirectory) + { + return ValueTask.CompletedTask; + } + + // Get the file path and start the write process + string? assetName = asset.AssetName; + string filePath = EnsureCreationOfDirectory(Path.Combine(GamePath, assetName)); // Get the target and temp file info - FileInfo existingFileInfo = new FileInfo(filePath).EnsureNoReadOnly(out bool isExistingFileInfoExist); + FileInfo existingFileInfo = + new FileInfo(filePath).EnsureNoReadOnly(out bool isExistingFileInfoExist); FileInfo sophonFileInfo = new FileInfo(filePath + "_tempSophon").EnsureNoReadOnly(out bool isSophonFileInfoExist); @@ -958,10 +1008,12 @@ private ValueTask RunSophonAssetDownloadThread(HttpClient client, SophonAss sophonFileInfo.Delete(); } - return asset.WriteToStreamAsync( - client, - () => new FileStream(filePath, FileMode.OpenOrCreate, FileAccess.ReadWrite, - FileShare.ReadWrite), + return asset.WriteToStreamAsync(client, + assetSize => new FileStream(filePath, + FileMode.OpenOrCreate, + FileAccess.ReadWrite, + FileShare.ReadWrite, + assetSize.GetFileStreamBufferSize()), parallelOptions, UpdateSophonFileTotalProgress, UpdateSophonFileDownloadProgress, diff --git a/CollapseLauncher/Classes/InstallManagement/Base/InstallManagerBase.SophonPatch.cs b/CollapseLauncher/Classes/InstallManagement/Base/InstallManagerBase.SophonPatch.cs index ef3400dea..2afb7d8c3 100644 --- a/CollapseLauncher/Classes/InstallManagement/Base/InstallManagerBase.SophonPatch.cs +++ b/CollapseLauncher/Classes/InstallManagement/Base/InstallManagerBase.SophonPatch.cs @@ -13,6 +13,7 @@ using CollapseLauncher.Interfaces; using Hi3Helper; using Hi3Helper.Data; +using Hi3Helper.Plugin.Core.Management; using Hi3Helper.Shared.Region; using Hi3Helper.Sophon; using Hi3Helper.Sophon.Structs; @@ -117,6 +118,9 @@ await GetAlterSophonPatchAssets(httpClient, downloadSpeedLimiter, Token.Token); + // Filter asset list + await FilterSophonPatchAssetList(patchAssets.AssetList, Token.Token); + // Start the patch pipeline await StartAlterSophonPatch(httpClient, isPreloadMode, @@ -130,6 +134,12 @@ await StartAlterSophonPatch(httpClient, return true; } + protected virtual Task FilterSophonPatchAssetList(List itemList, CancellationToken token) + { + // NOP + return Task.CompletedTask; + } + protected virtual async Task ConfirmAdditionalPatchDataPackageFiles(SophonChunkManifestInfoPair patchManifest, List matchingFieldsList, CancellationToken token) @@ -456,8 +466,7 @@ protected virtual async Task StartAlterSophonPatch(HttpClient ParallelOptions parallelOptions = new() { MaxDegreeOfParallelism = threadNum, - CancellationToken = token, - TaskScheduler = TaskScheduler.Default + CancellationToken = token }; if (LauncherConfig.GetAppConfigValue("SophonPreloadApplyPerfMode")) diff --git a/CollapseLauncher/Classes/InstallManagement/Base/InstallManagerBase.cs b/CollapseLauncher/Classes/InstallManagement/Base/InstallManagerBase.cs index 3a5190aa3..c5310719f 100644 --- a/CollapseLauncher/Classes/InstallManagement/Base/InstallManagerBase.cs +++ b/CollapseLauncher/Classes/InstallManagement/Base/InstallManagerBase.cs @@ -29,6 +29,7 @@ using Hi3Helper.EncTool.Parser.AssetIndex; using Hi3Helper.Http; using Hi3Helper.Http.Legacy; +using Hi3Helper.Plugin.Core.Management; using Hi3Helper.SentryHelper; using Hi3Helper.Shared.ClassStruct; using Hi3Helper.Shared.Region; @@ -89,6 +90,7 @@ public enum MigrateFromLauncherType Official, BetterHi3Launcher, Steam, + Plugin, Unknown } @@ -153,14 +155,12 @@ protected struct UninstallGameProperty protected bool _isAllowExtractCorruptZip { get; set; } protected UninstallGameProperty? _uninstallGameProperty { get; set; } - #endregion #region Public Properties - public event EventHandler FlushingTrigger; - public virtual bool StartAfterInstall { get; set; } public virtual bool IsRunning { get; protected set; } + public PostInstallBehaviour PostInstallBehaviour { get; set; } = PostInstallBehaviour.Nothing; #endregion public InstallManagerBase(UIElement parentUI, IGameVersion GameVersionManager) @@ -1238,14 +1238,14 @@ public virtual void ApplyGameConfig(bool forceUpdateToLatest = false) continue; } - gamePluginVersionDictionary.Add(plugins.plugin_id, new GameVersion(plugins.version)); + gamePluginVersionDictionary.Add(plugins.plugin_id, plugins.version); } GameVersionManager.UpdatePluginVersions(gamePluginVersionDictionary); } RegionResourcePlugin? gameSdkList = GameVersionManager.GetGameSdkZip()?.FirstOrDefault(); - if (gameSdkList != null && GameVersion.TryParse(gameSdkList.version, out GameVersion? sdkVersionResult)) + if (gameSdkList != null && GameVersion.TryParse(gameSdkList.version, out GameVersion sdkVersionResult)) { GameVersionManager.UpdateSdkVersion(sdkVersionResult); } @@ -2798,7 +2798,7 @@ private bool TryGetExistingBHI3LPath(ref string OutputPath) } - private async Task AskGameFolderDialog(Func? checkExistingGameDelegate = null) + private async Task AskGameFolderDialog(Func>? checkExistingGameDelegate = null) { // Set initial folder variable as empty string folder = ""; @@ -2895,28 +2895,27 @@ protected virtual void TryAddPluginPackage(List assetList) // If the game ini section is not null, then try eliminate the version section if (GameVersionManager.GameIniVersionSection != null) { - foreach (KeyValuePair iniProperty in GameVersionManager.GameIniVersionSection + foreach (var (iniKey, value) in GameVersionManager.GameIniVersionSection .Where(x => x.Key.StartsWith(pluginKeyStart) && x.Key.EndsWith(pluginKeyEnd))) { // Get the plugin id from the ini property's key - string iniKey = iniProperty.Key; int startIniKeyOffset = pluginKeyStart.Length; int startIniKeyLength = - iniProperty.Key.LastIndexOf(pluginKeyEnd, StringComparison.OrdinalIgnoreCase) - + iniKey.LastIndexOf(pluginKeyEnd, StringComparison.OrdinalIgnoreCase) - startIniKeyOffset; string iniPluginId = iniKey.AsSpan(startIniKeyOffset, startIniKeyLength).ToString(); // Try remove the plugin resource from dictionary if found - if (!pluginResourceDictionary.TryGetValue(iniPluginId, out var pluginResource)) + if (!pluginResourceDictionary.TryGetValue(iniPluginId, out RegionResourcePlugin? pluginResource)) { continue; } // Try to get the plugin version from both installed and api's one string pluginResourceVersion = pluginResource.version!; - if (!GameVersion.TryParse(pluginResourceVersion, out GameVersion? pluginResourceVersionResult) - || !GameVersion.TryParse(iniProperty.Value.ToString(), - out GameVersion? installedPluginVersionResult)) + if (!GameVersion.TryParse(pluginResourceVersion, out GameVersion pluginResourceVersionResult) + || !GameVersion.TryParse(value.ToString(), + out GameVersion installedPluginVersionResult)) { continue; } @@ -2934,7 +2933,7 @@ protected virtual void TryAddPluginPackage(List assetList) // Add the plugin resources to asset list foreach (KeyValuePair pluginResource in pluginResourceDictionary) { - if (!GameVersion.TryParse(pluginResource.Value.version, out GameVersion? _)) + if (!GameVersion.TryParse(pluginResource.Value.version, out _)) { LogWriteLine($"Failed to parse plugin version: {pluginResource.Value.version} with id: {pluginResource.Key}", LogType.Error, true); @@ -2957,7 +2956,7 @@ private async ValueTask CheckExistingOrAskFolderDialog() // Check for existing installation and if it's found, then override result // with pathPossibleExisting value and return 0 to skip the process - string pathPossibleExisting = GameVersionManager.FindGameInstallationPath(result); + string pathPossibleExisting = await GameVersionManager.FindGameInstallationPath(result); if (pathPossibleExisting != null) { GameVersionManager.UpdateGamePath(pathPossibleExisting, false); diff --git a/CollapseLauncher/Classes/InstallManagement/GameConversionManagement.cs b/CollapseLauncher/Classes/InstallManagement/GameConversionManagement.cs index 915042975..21e5d243f 100644 --- a/CollapseLauncher/Classes/InstallManagement/GameConversionManagement.cs +++ b/CollapseLauncher/Classes/InstallManagement/GameConversionManagement.cs @@ -1,6 +1,8 @@ using CollapseLauncher.Helper; using CollapseLauncher.Helper.Metadata; using Hi3Helper; +using Hi3Helper.Data; +using Hi3Helper.EncTool.Hashes; using Hi3Helper.Http; using Hi3Helper.Http.Legacy; using Hi3Helper.Preset; @@ -168,7 +170,7 @@ private async Task> VerifyIngredients(List _convertStatus = Lang._InstallConvert.Step3Title2; foreach (FileProperties entry in fileManifest) { - var outputPath = Path.Combine(gamePath, entry.FileName); + var outputPath = Path.Combine(gamePath, entry.FileName); _convertDetail = $"{Lang._Misc.CheckingFile}: {string.Format(Lang._Misc.PerFromTo, entry.FileName, entry.FileSizeStr)}"; UpdateProgress(curRead, totalSize, 1, 1, _convertSw.Elapsed, _convertStatus, _convertDetail); @@ -176,9 +178,10 @@ private async Task> VerifyIngredients(List { await using FileStream fs = new FileStream(outputPath, FileMode.Open, FileAccess.Read); byte[] hashBytes = entry.CurrCRC.Length > 8 ? - await Hash.GetCryptoHashAsync(fs, null, null, _token) : - await Hash.GetHashAsync(fs, null, _token); - var localHash = Convert.ToHexStringLower(hashBytes); + await CryptoHashUtility.ThreadSafe.GetHashFromStreamAsync(fs, token: _token) : + await HashUtility.ThreadSafe.GetHashFromStreamAsync(fs, token: _token); + + var localHash = HexTool.BytesToHexUnsafe(hashBytes); _token.ThrowIfCancellationRequested(); if (localHash != entry.CurrCRC) diff --git a/CollapseLauncher/Classes/InstallManagement/Zenless/ZenlessInstall.Sophon.cs b/CollapseLauncher/Classes/InstallManagement/Zenless/ZenlessInstall.Sophon.cs new file mode 100644 index 000000000..8c4ac349b --- /dev/null +++ b/CollapseLauncher/Classes/InstallManagement/Zenless/ZenlessInstall.Sophon.cs @@ -0,0 +1,23 @@ +using Hi3Helper.Sophon; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +// ReSharper disable CheckNamespace + +#nullable enable +namespace CollapseLauncher.InstallManager.Zenless +{ + internal partial class ZenlessInstall + { + protected override async Task FilterSophonPatchAssetList(List itemList, CancellationToken token) + { + HashSet exceptMatchFieldHashSet = await GetExceptMatchFieldHashSet(token); + if (exceptMatchFieldHashSet.Count == 0) + { + return; + } + + FilterSophonAsset(itemList, x => x, exceptMatchFieldHashSet, token); + } + } +} diff --git a/CollapseLauncher/Classes/InstallManagement/Zenless/ZenlessInstall.SophonPatch.cs b/CollapseLauncher/Classes/InstallManagement/Zenless/ZenlessInstall.SophonPatch.cs new file mode 100644 index 000000000..da76f0953 --- /dev/null +++ b/CollapseLauncher/Classes/InstallManagement/Zenless/ZenlessInstall.SophonPatch.cs @@ -0,0 +1,147 @@ +using Hi3Helper.Sophon; +using Hi3Helper.Sophon.Infos; +using System; +using System.Buffers; +using System.Collections.Generic; +using System.IO; +using System.Runtime.CompilerServices; +using System.Threading; +using System.Threading.Tasks; +// ReSharper disable CheckNamespace + +#nullable enable +namespace CollapseLauncher.InstallManager.Zenless +{ + internal partial class ZenlessInstall + { + internal const StringSplitOptions SplitOptions = StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries; + + // ReSharper disable once StringLiteralTypo + [UnsafeAccessor(UnsafeAccessorKind.Field, Name = "k__BackingField")] + private static extern ref SophonChunksInfo GetChunkAssetChunksInfo(SophonAsset element); + + // ReSharper disable once StringLiteralTypo + [UnsafeAccessor(UnsafeAccessorKind.Field, Name = "k__BackingField")] + private static extern ref SophonChunksInfo GetChunkAssetChunksInfoAlt(SophonAsset element); + + protected override async Task FilterSophonPatchAssetList(List itemList, CancellationToken token) + { + HashSet exceptMatchFieldHashSet = await GetExceptMatchFieldHashSet(token); + if (exceptMatchFieldHashSet.Count == 0) + { + return; + } + + FilterSophonAsset(itemList, x => x.MainAssetInfo, exceptMatchFieldHashSet, token); + } + + private async Task> GetExceptMatchFieldHashSet(CancellationToken token) + { + string gameExecDataName = + Path.GetFileNameWithoutExtension(GameVersionManager.GamePreset.GameExecutableName) ?? "ZenlessZoneZero"; + string gameExecDataPath = $"{gameExecDataName}_Data"; + string gamePersistentDataPath = Path.Combine(GamePath, gameExecDataPath, "Persistent"); + string gameExceptMatchFieldFile = Path.Combine(gamePersistentDataPath, "KDelResource"); + + if (!File.Exists(gameExceptMatchFieldFile)) + { + return []; + } + + string exceptMatchFieldContent = await File.ReadAllTextAsync(gameExceptMatchFieldFile, token); + HashSet exceptMatchFieldHashSet = CreateExceptMatchFieldHashSet(exceptMatchFieldContent); + + return exceptMatchFieldHashSet; + } + + // ReSharper disable once IdentifierTypo + private static void FilterSophonAsset(List itemList, Func assetSelector, HashSet exceptMatchFieldHashSet, CancellationToken token) + { + const string separators = "/\\"; + scoped Span urlPathRanges = stackalloc Range[32]; + + List filteredList = []; + foreach (T asset in itemList) + { + SophonAsset? assetSelected = assetSelector(asset); + + token.ThrowIfCancellationRequested(); + ref SophonChunksInfo chunkInfo = ref assetSelected == null + ? ref Unsafe.NullRef() + : ref GetChunkAssetChunksInfo(assetSelected); + + if (assetSelected != null && Unsafe.IsNullRef(ref chunkInfo)) + { + chunkInfo = ref GetChunkAssetChunksInfoAlt(assetSelected); + } + + if (Unsafe.IsNullRef(ref chunkInfo)) + { + filteredList.Add(asset); + continue; + } + + ReadOnlySpan manifestUrl = chunkInfo.ChunksBaseUrl; + int rangeLen = manifestUrl.SplitAny(urlPathRanges, separators, SplitOptions); + + if (rangeLen <= 0) + { + continue; + } + + ReadOnlySpan manifestStr = manifestUrl[urlPathRanges[rangeLen - 1]]; + if (int.TryParse(manifestStr, null, out int lookupNumber) && + exceptMatchFieldHashSet.Contains(lookupNumber)) + { + continue; + } + + filteredList.Add(asset); + } + + if (filteredList.Count == 0) + { + return; + } + + itemList.Clear(); + itemList.AddRange(filteredList); + } + + internal static HashSet CreateExceptMatchFieldHashSet(string exceptMatchFieldContent) + where T : ISpanParsable + { + const string lineFeedSeparators = "\r\n"; + HashSet hashSetReturn = []; + scoped Span contentLineRange = stackalloc Range[2]; + + ReadOnlySpan contentSpan = exceptMatchFieldContent.AsSpan(); + int contentLineLen = contentSpan.SplitAny(contentLineRange, lineFeedSeparators, SplitOptions); + + if (contentLineLen == 0) + { + return hashSetReturn; + } + + contentSpan = contentSpan[contentLineRange[0]]; + const string separatorsChars = "|;,$#@+ "; + SearchValues separators = SearchValues.Create(separatorsChars); + + foreach (Range contentMatchRange in contentSpan.SplitAny(separators)) + { + if (contentMatchRange.End.Value - contentMatchRange.Start.Value <= 0) + { + continue; + } + + ReadOnlySpan contentMatch = contentSpan[contentMatchRange].Trim(separatorsChars); + if (T.TryParse(contentMatch, null, out T? result)) + { + hashSetReturn.Add(result); + } + } + + return hashSetReturn; + } + } +} diff --git a/CollapseLauncher/Classes/InstallManagement/Zenless/ZenlessInstall.cs b/CollapseLauncher/Classes/InstallManagement/Zenless/ZenlessInstall.cs index 69c47f02b..e4c0086c2 100644 --- a/CollapseLauncher/Classes/InstallManagement/Zenless/ZenlessInstall.cs +++ b/CollapseLauncher/Classes/InstallManagement/Zenless/ZenlessInstall.cs @@ -21,7 +21,7 @@ #nullable enable namespace CollapseLauncher.InstallManager.Zenless { - internal sealed class ZenlessInstall : InstallManagerBase + internal sealed partial class ZenlessInstall : InstallManagerBase { #region Private Properties private ZenlessSettings? ZenlessSettings { get; } diff --git a/CollapseLauncher/Classes/Interfaces/Class/Enums.cs b/CollapseLauncher/Classes/Interfaces/Class/Enums.cs index 31d957898..f719e142e 100644 --- a/CollapseLauncher/Classes/Interfaces/Class/Enums.cs +++ b/CollapseLauncher/Classes/Interfaces/Class/Enums.cs @@ -44,4 +44,13 @@ internal enum GameInstallPackageType Plugin, Utilities } + + internal enum PostInstallBehaviour + { + Nothing, + StartGame, + Hibernate, + Restart, + Shutdown + } } diff --git a/CollapseLauncher/Classes/Interfaces/Class/GamePropertyBase.cs b/CollapseLauncher/Classes/Interfaces/Class/GamePropertyBase.cs index ab8f319b2..8b7bcdaf8 100644 --- a/CollapseLauncher/Classes/Interfaces/Class/GamePropertyBase.cs +++ b/CollapseLauncher/Classes/Interfaces/Class/GamePropertyBase.cs @@ -1,4 +1,5 @@ using CollapseLauncher.Extension; +using Hi3Helper.Plugin.Core.Management; using Microsoft.UI.Xaml; using System; using System.Collections.Generic; @@ -27,7 +28,7 @@ public GamePropertyBase(UIElement parentUI, IGameVersion? gameVersionManager, IG // If the version override is not null, then assign the override value if (IsVersionOverride) { - GameVersionOverride = new GameVersion(versionOverride); + GameVersionOverride = versionOverride; } AssetEntry = []; @@ -67,7 +68,7 @@ protected GameVersion GameVersion [field: MaybeNull, AllowNull] protected string GameRepoURL { - get => string.IsNullOrEmpty(field) ? GameVersionManager.GameApiProp.data?.game?.latest?.decompressed_path : field; + get => string.IsNullOrEmpty(field) ? GameVersionManager.GameApiProp?.data?.game?.latest?.decompressed_path : field; set; } diff --git a/CollapseLauncher/Classes/Interfaces/Class/JSONSerializerHelper.cs b/CollapseLauncher/Classes/Interfaces/Class/JSONSerializerHelper.cs index 993978216..7a1b7164d 100644 --- a/CollapseLauncher/Classes/Interfaces/Class/JSONSerializerHelper.cs +++ b/CollapseLauncher/Classes/Interfaces/Class/JSONSerializerHelper.cs @@ -64,6 +64,34 @@ internal static partial class JsonSerializerHelper internal static JsonNode? DeserializeAsJsonNode(this string data) => InnerDeserializeAsJsonNode(data); + internal static T? DeserializeFromFile(this string filePath, + JsonTypeInfo typeInfo, + T? defaultType = null) + where T : class => DeserializeFromFile(new FileInfo(filePath), typeInfo, defaultType); + + internal static T? DeserializeFromFile(this FileInfo fileInfo, + JsonTypeInfo typeInfo, + T? defaultType = null) + where T : class + { + using FileStream stream = fileInfo.OpenRead(); + return InnerDeserializeStream(stream, typeInfo, defaultType); + } + + internal static T? DeserializeFromFile(this string filePath, + JsonTypeInfo typeInfo, + T? defaultType = null) + where T : struct => DeserializeFromFile(new FileInfo(filePath), typeInfo, defaultType); + + internal static T? DeserializeFromFile(this FileInfo fileInfo, + JsonTypeInfo typeInfo, + T? defaultType = null) + where T : struct + { + using FileStream stream = fileInfo.OpenRead(); + return InnerDeserializeStream(stream, typeInfo, defaultType); + } + internal static T? Deserialize(this ReadOnlySpan data, JsonTypeInfo typeInfo, T? defaultType = null) where T : class => InnerDeserialize(data, typeInfo, defaultType); diff --git a/CollapseLauncher/Classes/Interfaces/Class/JSONSerializerHelperAsync.cs b/CollapseLauncher/Classes/Interfaces/Class/JSONSerializerHelperAsync.cs index 29fc6bfac..2138a8bda 100644 --- a/CollapseLauncher/Classes/Interfaces/Class/JSONSerializerHelperAsync.cs +++ b/CollapseLauncher/Classes/Interfaces/Class/JSONSerializerHelperAsync.cs @@ -13,6 +13,26 @@ namespace CollapseLauncher { internal static partial class JsonSerializerHelper { + internal static Task DeserializeFromFileAsync(this string filePath, JsonTypeInfo typeInfo, T? defaultType = null, CancellationToken token = default) + where T : class => DeserializeFromFileAsync(new FileInfo(filePath), typeInfo, defaultType, token); + + internal static Task DeserializeFromFileAsync(this string filePath, JsonTypeInfo typeInfo, T? defaultType = null, CancellationToken token = default) + where T : struct => DeserializeFromFileAsync(new FileInfo(filePath), typeInfo, defaultType, token); + + internal static async Task DeserializeFromFileAsync(this FileInfo fileInfo, JsonTypeInfo typeInfo, T? defaultType = null, CancellationToken token = default) + where T : class + { + await using FileStream fileStream = fileInfo.OpenRead(); + return await InnerDeserializeStreamAsync(fileStream, typeInfo, defaultType, token); + } + + internal static async Task DeserializeFromFileAsync(this FileInfo fileInfo, JsonTypeInfo typeInfo, T? defaultType = null, CancellationToken token = default) + where T : struct + { + await using FileStream fileStream = fileInfo.OpenRead(); + return await InnerDeserializeStreamAsync(fileStream, typeInfo, defaultType, token); + } + internal static async Task DeserializeAsync(this Stream data, JsonTypeInfo typeInfo, T? defaultType = null, CancellationToken token = default) where T : class => await InnerDeserializeStreamAsync(data, typeInfo, defaultType, token); diff --git a/CollapseLauncher/Classes/Interfaces/Class/ProgressBase.cs b/CollapseLauncher/Classes/Interfaces/Class/ProgressBase.cs index db7661434..bfb05c121 100644 --- a/CollapseLauncher/Classes/Interfaces/Class/ProgressBase.cs +++ b/CollapseLauncher/Classes/Interfaces/Class/ProgressBase.cs @@ -7,6 +7,7 @@ using Hi3Helper; using Hi3Helper.Data; using Hi3Helper.EncTool; +using Hi3Helper.EncTool.Hashes; using Hi3Helper.Http; using Hi3Helper.Preset; using Hi3Helper.SentryHelper; @@ -401,7 +402,6 @@ protected bool CheckIfNeedRefreshStopwatch() Interlocked.Exchange(ref _riLastTick, Environment.TickCount); return true; - } #endregion @@ -685,9 +685,6 @@ protected static void MoveFolderContent(string sourcePath, string destPath) protected virtual void ResetStatusAndProgress() { - // Reset the cancellation token - Token = new CancellationTokenSourceWrapper(); - // Reset RepairAssetProperty list AssetEntry!.Clear(); @@ -786,7 +783,7 @@ protected async Task BufferSourceStreamToMemoryStream(Stream input protected async Task FetchBilibiliSdk(CancellationToken token) { // Check whether the sdk is not null, - if (GameVersionManager.GameApiProp.data?.sdk == null) return; + if (GameVersionManager.GameApiProp?.data?.sdk == null) return; // Set total activity string as "Loading Indexes..." Status.ActivityStatus = Lang!._GameRepairPage!.Status2; @@ -830,7 +827,7 @@ protected async Task FetchBilibiliSdk(CancellationToken token) // Try to create the file if not exist or open an existing one await using Stream sdkDllStream = sdkDllFile.Open(!sdkDllFile.Exists || entry.Length < sdkDllFile.Length ? FileMode.Create : FileMode.OpenOrCreate); // Get the hash from the stream - byte[] hashByte = await Hash.GetHashAsync(sdkDllStream, null, token); + byte[] hashByte = await HashUtility.ThreadSafe.GetHashFromStreamAsync(sdkDllStream, token: token); uint hashInt = BitConverter.ToUInt32(hashByte); // If the hash is the same, then skip @@ -1060,7 +1057,7 @@ internal static ValueTask NaivelyOpenFileStreamAsync(FileInfo info, #endregion #region HashTools - protected virtual ConfiguredTaskAwaitable GetCryptoHashAsync( + protected virtual Task GetCryptoHashAsync( string filePath, byte[]? hmacKey = null, bool updateProgress = true, @@ -1073,18 +1070,17 @@ protected virtual ConfiguredTaskAwaitable GetCryptoHashAsync( updateTotalProgress, token); - protected virtual ConfiguredTaskAwaitable GetCryptoHashAsync( + protected virtual async Task GetCryptoHashAsync( FileInfo fileInfo, byte[]? hmacKey = null, bool updateProgress = true, bool updateTotalProgress = true, CancellationToken token = default) - where T : HashAlgorithm => - Hash.GetCryptoHashAsync(fileInfo, - hmacKey, - read => UpdateHashReadProgress(read, updateProgress, updateTotalProgress), - fileInfo is { Exists: true, Length: > 1024 << 20 }, - token); + where T : HashAlgorithm + { + await using FileStream fileStream = fileInfo.Open(FileMode.Open, FileAccess.Read, FileShare.Read); + return await GetCryptoHashAsync(fileStream, hmacKey, updateProgress, updateTotalProgress, token); + } protected virtual ConfiguredTaskAwaitable GetCryptoHashAsync( Stream stream, @@ -1093,11 +1089,17 @@ protected virtual ConfiguredTaskAwaitable GetCryptoHashAsync( bool updateTotalProgress = true, CancellationToken token = default) where T : HashAlgorithm => - Hash.GetCryptoHashAsync(stream, - hmacKey, - read => UpdateHashReadProgress(read, updateProgress, updateTotalProgress), - stream is { Length: > 1024 << 20 }, - token); + CryptoHashUtility.ThreadSafe + .GetHashFromStreamAsync(stream, + read => + UpdateHashReadProgress( + read, + updateProgress, + updateTotalProgress), + hmacKey, + 512 << 10, + token) + .ConfigureAwait(false); protected virtual byte[] GetCryptoHash( string filePath, @@ -1106,10 +1108,7 @@ protected virtual byte[] GetCryptoHash( bool updateTotalProgress = true, CancellationToken token = default) where T : HashAlgorithm => - Hash.GetCryptoHash(filePath, - hmacKey, - read => UpdateHashReadProgress(read, updateProgress, updateTotalProgress), - token); + GetCryptoHash(new FileInfo(filePath), hmacKey, updateProgress, updateTotalProgress, token); protected virtual byte[] GetCryptoHash( FileInfo fileInfo, @@ -1117,11 +1116,11 @@ protected virtual byte[] GetCryptoHash( bool updateProgress = true, bool updateTotalProgress = true, CancellationToken token = default) - where T : HashAlgorithm => - Hash.GetCryptoHash(fileInfo, - hmacKey, - read => UpdateHashReadProgress(read, updateProgress, updateTotalProgress), - token); + where T : HashAlgorithm + { + using FileStream fileStream = fileInfo.Open(FileMode.Open, FileAccess.Read, FileShare.Read); + return GetCryptoHash(fileStream, hmacKey, updateProgress, updateTotalProgress, token); + } protected virtual byte[] GetCryptoHash( Stream stream, @@ -1130,12 +1129,17 @@ protected virtual byte[] GetCryptoHash( bool updateTotalProgress = true, CancellationToken token = default) where T : HashAlgorithm => - Hash.GetCryptoHash(stream, - hmacKey, - read => UpdateHashReadProgress(read, updateProgress, updateTotalProgress), - token); - - protected virtual ConfiguredTaskAwaitable GetHashAsync( + CryptoHashUtility.ThreadSafe + .GetHashFromStream(stream, + read => + UpdateHashReadProgress(read, + updateProgress, + updateTotalProgress), + hmacKey, + 32 << 10, + token); + + protected virtual Task GetHashAsync( string filePath, bool updateProgress = true, bool updateTotalProgress = true, @@ -1146,16 +1150,16 @@ protected virtual ConfiguredTaskAwaitable GetHashAsync( updateTotalProgress, token); - protected virtual ConfiguredTaskAwaitable GetHashAsync( + protected virtual async Task GetHashAsync( FileInfo fileInfo, bool updateProgress = true, bool updateTotalProgress = true, CancellationToken token = default) - where T : NonCryptographicHashAlgorithm, new() => - Hash.GetHashAsync(fileInfo, - read => UpdateHashReadProgress(read, updateProgress, updateTotalProgress), - fileInfo is { Exists: true, Length: > 1024 << 20 }, - token); + where T : NonCryptographicHashAlgorithm, new() + { + await using FileStream fileStream = fileInfo.Open(FileMode.Open, FileAccess.Read, FileShare.Read); + return await GetHashAsync(fileStream, updateProgress, updateTotalProgress, token); + } protected virtual ConfiguredTaskAwaitable GetHashAsync( Stream stream, @@ -1163,40 +1167,52 @@ protected virtual ConfiguredTaskAwaitable GetHashAsync( bool updateTotalProgress = true, CancellationToken token = default) where T : NonCryptographicHashAlgorithm, new() => - Hash.GetHashAsync(stream, - read => UpdateHashReadProgress(read, updateProgress, updateTotalProgress), - stream is { Length: > 1024 << 20 }, - token); + HashUtility.ThreadSafe + .GetHashFromStreamAsync(stream, + read => + UpdateHashReadProgress(read, + updateProgress, + updateTotalProgress), + 512 << 10, + token) + .ConfigureAwait(false); protected virtual byte[] GetHash( string filePath, bool updateProgress = true, bool updateTotalProgress = true, CancellationToken token = default) - where T : NonCryptographicHashAlgorithm, new() => - Hash.GetHash(filePath, - read => UpdateHashReadProgress(read, updateProgress, updateTotalProgress), - token); + where T : NonCryptographicHashAlgorithm, new() + => GetHash(new FileInfo(filePath), + updateProgress, + updateTotalProgress, + token); protected virtual byte[] GetHash( FileInfo fileInfo, bool updateProgress = true, bool updateTotalProgress = true, CancellationToken token = default) - where T : NonCryptographicHashAlgorithm, new() => - Hash.GetHash(fileInfo, - read => UpdateHashReadProgress(read, updateProgress, updateTotalProgress), - token); + where T : NonCryptographicHashAlgorithm, new() + { + using FileStream fileStream = fileInfo.Open(FileMode.Open, FileAccess.Read, FileShare.Read); + return GetHash(fileStream, updateProgress, updateTotalProgress, token); + } protected virtual byte[] GetHash( Stream stream, bool updateProgress = true, bool updateTotalProgress = true, CancellationToken token = default) - where T : NonCryptographicHashAlgorithm, new() => - Hash.GetHash(stream, - read => UpdateHashReadProgress(read, updateProgress, updateTotalProgress), - token); + where T : NonCryptographicHashAlgorithm, new() + => HashUtility.ThreadSafe + .GetHashFromStream(stream, + read => + UpdateHashReadProgress(read, + updateProgress, + updateTotalProgress), + 32 << 10, + token); protected void UpdateHashReadProgress(int read, bool updateProgress, bool updateTotalProgress) { diff --git a/CollapseLauncher/Classes/Interfaces/Class/Structs.cs b/CollapseLauncher/Classes/Interfaces/Class/Structs.cs index 0aea33c90..e56220871 100644 --- a/CollapseLauncher/Classes/Interfaces/Class/Structs.cs +++ b/CollapseLauncher/Classes/Interfaces/Class/Structs.cs @@ -2,7 +2,6 @@ using Hi3Helper; using Hi3Helper.Data; using System; -using System.Diagnostics.CodeAnalysis; using System.IO; // ReSharper disable CheckNamespace // ReSharper disable InconsistentNaming @@ -58,7 +57,7 @@ internal struct GameVendorProp public GameVendorProp(string gamePath, string execName, GameVendorType fallbackVendorType) { // Set the fallback value of the Vendor Type first (in case the game isn't yet installed) - VendorType = fallbackVendorType; + VendorType = Enum.GetName(fallbackVendorType); // Concat the vendor app info file and return if it doesn't exist string infoVendorPath = Path.Combine(gamePath, $"{execName}_Data\\app.info"); @@ -84,149 +83,13 @@ public GameVendorProp(string gamePath, string execName, GameVendorType fallbackV } // Assign the values - VendorType = _VendorType; + VendorType = Enum.GetName(_VendorType); GameName = infoEntries[1]; } - public GameVendorType? VendorType { get; set; } + public string? VendorType { get; set; } public string? GameName { get; set; } } - - public static class GameVersionExt - { - public static bool Compare(this GameVersion? fromVersion, GameVersion? toVersion) - { - if (!fromVersion.HasValue || !toVersion.HasValue) return false; - return fromVersion.Value.ToVersion() < toVersion.Value.ToVersion(); - } - - public static bool Equals(this GameVersion? fromVersion, GameVersion? toVersion) - { - if (!fromVersion.HasValue || !toVersion.HasValue) return false; - return fromVersion.Value.ToVersion() == toVersion.Value.ToVersion(); - } - } - - public readonly record struct GameVersion - { - public GameVersion(params ReadOnlySpan ver) - { - if (ver.Length == 0) - { - throw new ArgumentException("Version array entered should have length at least 1 or max. 4!"); - } - - Major = ver[0]; - Minor = ver.Length >= 2 ? ver[1] : 0; - Build = ver.Length >= 3 ? ver[2] : 0; - Revision = ver.Length >= 4 ? ver[3] : 0; - } - - public GameVersion(Version version) - { - Major = version.Major; - Minor = version.Minor; - Build = version.Build; - Revision = version.Revision; - } - - public GameVersion(string? version) - { - if (!TryParse(version, out GameVersion? versionOut) || !versionOut.HasValue) - { - throw new ArgumentException($"Version in the config.ini should be either in \"x\", \"x.x\", \"x.x.x\" or \"x.x.x.x\" format or all the values aren't numbers! (current value: \"{version}\")"); - } - - Major = versionOut.Value.Major; - Minor = versionOut.Value.Minor; - Build = versionOut.Value.Build; - Revision = versionOut.Value.Revision; - } - - public static bool TryParse(string? version, [NotNullWhen(true)] out GameVersion? result) - { - const string Separators = ",.;|"; - - result = null; - if (string.IsNullOrEmpty(version)) - { - return false; - } - - Span ranges = stackalloc Range[8]; - ReadOnlySpan versionSpan = version.AsSpan(); - int splitRanges = versionSpan.SplitAny(ranges, Separators, StringSplitOptions.TrimEntries | StringSplitOptions.RemoveEmptyEntries); - - if (splitRanges == 0) - { - if (!int.TryParse(versionSpan, null, out int majorOnly)) - { - return false; - } - - result = new GameVersion(majorOnly); - return true; - } - - Span versionSplits = stackalloc int[4]; - for (int i = 0; i < splitRanges; i++) - { - if (!int.TryParse(versionSpan[ranges[i]], null, out int versionParsed)) - { - return false; - } - - versionSplits[i] = versionParsed; - } - - result = new GameVersion(versionSplits); - return true; - } - - public bool IsMatch(string versionToCompare) - { - GameVersion parsed = new GameVersion(versionToCompare); - return IsMatch(parsed); - } - - public bool IsMatch(GameVersion? versionToCompare) - { - if (!versionToCompare.HasValue) return false; - return Major == versionToCompare.Value.Major && - Minor == versionToCompare.Value.Minor && - Build == versionToCompare.Value.Build && - Revision == versionToCompare.Value.Revision; - } - - public GameVersion GetIncrementedVersion() - { - int nextMajor = Major; - int nextMinor = Minor; - - nextMinor++; - if (nextMinor < 10) - { - return new GameVersion(nextMajor, nextMinor, Build, Revision); - } - - nextMinor = 0; - nextMajor++; - - return new GameVersion(nextMajor, nextMinor, Build, Revision); - } - - public Version ToVersion() => new(Major, Minor, Build, Revision); - public override string ToString() => $"{Major}.{Minor}.{Build}"; - - public string VersionStringManifest { get => string.Join('.', VersionArrayManifest); } - public string VersionString { get => string.Join('.', VersionArray); } - public int[] VersionArrayManifest { get => [Major, Minor, Build, Revision]; } - public int[] VersionArray { get => [Major, Minor, Build]; } - public readonly int Major; - public readonly int Minor; - public readonly int Build; - public readonly int Revision; - } #nullable restore public interface IAssetProperty diff --git a/CollapseLauncher/Classes/Interfaces/IGameInstallManager.cs b/CollapseLauncher/Classes/Interfaces/IGameInstallManager.cs index 1b07a7afe..1502f4665 100644 --- a/CollapseLauncher/Classes/Interfaces/IGameInstallManager.cs +++ b/CollapseLauncher/Classes/Interfaces/IGameInstallManager.cs @@ -28,8 +28,9 @@ internal interface IGameInstallManager : IBackgroundActivity, IDisposable void UpdateCompletenessStatus(CompletenessStatus status); - bool StartAfterInstall { get; set; } bool IsUseSophon { get; } bool IsSophonInUpdateMode { get; } + + PostInstallBehaviour PostInstallBehaviour { get; set; } } } diff --git a/CollapseLauncher/Classes/Interfaces/IGamePlaytime.cs b/CollapseLauncher/Classes/Interfaces/IGamePlaytime.cs index 8da09b0a0..df41159ed 100644 --- a/CollapseLauncher/Classes/Interfaces/IGamePlaytime.cs +++ b/CollapseLauncher/Classes/Interfaces/IGamePlaytime.cs @@ -1,6 +1,7 @@ using CollapseLauncher.GamePlaytime; using System; using System.Diagnostics; +using System.Threading; using System.Threading.Tasks; namespace CollapseLauncher.Interfaces @@ -11,8 +12,9 @@ internal interface IGamePlaytime : IDisposable CollapsePlaytime CollapsePlaytime { get; } void Reset(); - void Update(TimeSpan timeSpan, bool forceUpdateDb = false); - void StartSession(Process proc, DateTime? begin = null); + void Update(TimeSpan timeSpan, bool forceUpdateDb = false); + Task StartSession(Process proc, DateTime? begin = null); + Task StartSessionFromAwaiter(Func awaiterTask, DateTime? begin = null); Task CheckDb(bool redirectThrow = false); } } diff --git a/CollapseLauncher/Classes/Interfaces/IGameVersionCheck.cs b/CollapseLauncher/Classes/Interfaces/IGameVersionCheck.cs index dfe6e3a84..0b16eb9ee 100644 --- a/CollapseLauncher/Classes/Interfaces/IGameVersionCheck.cs +++ b/CollapseLauncher/Classes/Interfaces/IGameVersionCheck.cs @@ -1,5 +1,6 @@ using CollapseLauncher.Helper.Metadata; using Hi3Helper.Data; +using Hi3Helper.Plugin.Core.Management; using Hi3Helper.Shared.ClassStruct; using Microsoft.UI.Xaml; using System.Collections.Generic; @@ -22,12 +23,12 @@ internal interface IGameVersion /// /// Get the game name /// - string GameName { get; } + string? GameName { get; } /// /// Get the region name of the game /// - string GameRegion { get; } + string? GameRegion { get; } /// /// Get the version section of the game INI's configuration @@ -58,7 +59,7 @@ internal interface IGameVersion /// /// Returns or set the API properties /// - RegionResourceProp GameApiProp { get; set; } + RegionResourceProp? GameApiProp { get; set; } /// /// Returns the type of the game @@ -182,7 +183,7 @@ internal interface IGameVersion /// Try to find game installation path from the given path. /// If it returns null, then there's no game installation found. /// - string? FindGameInstallationPath(string path); + Task FindGameInstallationPath(string path); /// /// Update the location of the game folder and also save it to the Game Profile's Ini file. diff --git a/CollapseLauncher/Classes/Plugins/PluginGameInstallWrapper.cs b/CollapseLauncher/Classes/Plugins/PluginGameInstallWrapper.cs new file mode 100644 index 000000000..4d04efb44 --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginGameInstallWrapper.cs @@ -0,0 +1,433 @@ +using CollapseLauncher.Dialogs; +using CollapseLauncher.Extension; +using CollapseLauncher.FileDialogCOM; +using CollapseLauncher.InstallManager; +using CollapseLauncher.InstallManager.Base; +using CollapseLauncher.Interfaces; +using Hi3Helper; +using Hi3Helper.Data; +using Hi3Helper.EncTool.Parser.AssetIndex; +using Hi3Helper.Plugin.Core; +using Hi3Helper.Plugin.Core.Management; +using Hi3Helper.Plugin.Core.Utility; +using Hi3Helper.SentryHelper; +using Hi3Helper.Shared.ClassStruct; +using Hi3Helper.Shared.Region; +using Hi3Helper.Win32.ManagedTools; +using Microsoft.UI.Dispatching; +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; +using System; +using System.Collections.Generic; +using System.IO; +using System.Threading; +using System.Threading.Tasks; + +namespace CollapseLauncher.Plugins; + +#nullable enable +internal partial class PluginGameInstallWrapper : ProgressBase, IGameInstallManager +{ + public event EventHandler? FlushingTrigger; + + public bool IsRunning { get; private set; } + + private readonly IPlugin _plugin; + private readonly PluginPresetConfigWrapper _pluginPresetConfig; + private readonly IGameInstaller _gameInstaller; + + private PluginGameVersionWrapper GameManager => + GameVersionManager as PluginGameVersionWrapper ?? throw new InvalidCastException("GameVersionManager is not PluginGameVersionWrapper"); + + internal PluginGameInstallWrapper(UIElement parentUi, PluginPresetConfigWrapper pluginPresetConfig, PluginGameVersionWrapper pluginVersionManager) + : base(parentUi, pluginVersionManager, pluginVersionManager.GameDirPath, null, null) + { + ParentUI = parentUi ?? throw new ArgumentNullException(nameof(parentUi)); + IsRunning = false; + + _pluginPresetConfig = pluginPresetConfig ?? throw new ArgumentNullException(nameof(pluginPresetConfig)); + _plugin = pluginPresetConfig.Plugin ?? throw new ArgumentNullException(nameof(pluginPresetConfig)); + _gameInstaller = pluginPresetConfig.PluginGameInstaller; + + IsSophonInUpdateMode = false; + } + + public void CancelRoutine() + { + Token.Cancel(); + ResetAndCancelTokenSource(); + } + + private void ResetAndCancelTokenSource() + { + Token.Dispose(); + ResetStatusAndProgressProperty(); + } + + public void Dispose() + { + _gameInstaller.Free(); + GC.SuppressFinalize(this); + } + + public async ValueTask GetInstallationPath(bool isHasOnlyMigrateOption = false) + { + // Try get existing path + string? existingPath = await GameManager.FindGameInstallationPath(string.Empty); + + // If the path is existed, + if (!string.IsNullOrEmpty(existingPath) && Directory.Exists(existingPath)) + { + ContentDialogResult dialogResult = await SimpleDialogs.Dialog_MigrationChoiceDialog(existingPath, + InnerLauncherConfig.GetGameTitleRegionTranslationString(_pluginPresetConfig.GameName, Locale.Lang._GameClientTitles) ?? _pluginPresetConfig.GameName, + InnerLauncherConfig.GetGameTitleRegionTranslationString(_pluginPresetConfig.ZoneName, Locale.Lang._GameClientRegions) ?? _pluginPresetConfig.ZoneName, + nameof(MigrateFromLauncherType.Plugin), + MigrateFromLauncherType.Plugin, + true); + + // Return as success (0) and update the game path. + if (dialogResult == ContentDialogResult.Primary) + { + GameManager.GameDirPath = existingPath; + GameManager.Reinitialize(); + return 0; + } + } + + if (isHasOnlyMigrateOption) + { + return -1; + } + + // Otherwise, ask for new game path + string? installPath = await AskGameFolderDialog(); + if (string.IsNullOrEmpty(installPath)) + { + // Return as cancelled if it's empty + return -1; + } + + // Register the game path without saving it first. + // This to ensure that the plugin is aware of the installation path to be used. + // Then tell the plugin to reinitialize the game manager. + GameManager.GameDirPath = installPath; + GameManager.Reinitialize(); + + // Check if the game is installed after the game manager is reinitialized. + return GameManager.IsGameInstalled() ? + // Return as completed and apply the config. + 0 : + // Return as to continue to the next routine if the game isn't detected. + 1; + } + + // Copied from InstallManagerBase + private async Task AskGameFolderDialog() + { + // Set initial folder variable as empty + string folder = ""; + + // Do loop and break if choice is already been done + bool isChosen = false; + while (!isChosen) + { + // Show dialog + switch (await SimpleDialogs.Dialog_InstallationLocation()) + { + // If primary button is clicked, then set folder with the default path + case ContentDialogResult.Primary: + if (_pluginPresetConfig is not null) + { + folder = Path.Combine(LauncherConfig.AppGameFolder, + _pluginPresetConfig.ProfileName, + _pluginPresetConfig.GameDirectoryName); + } + + isChosen = true; + break; + // If secondary, then show folder picker dialog to choose the folder + case ContentDialogResult.Secondary: + folder = await FileDialogHelper.GetRestrictedFolderPathDialog(Locale.Lang._Dialogs.FolderDialogTitle1); + isChosen = !string.IsNullOrEmpty(folder); + break; + case ContentDialogResult.None: + return null; + default: + throw new ArgumentOutOfRangeException(); + } + } + + return folder; + } + + public Task StartPackageDownload(bool skipDialog = false) + { + // NOP + return Task.CompletedTask; + } + + public ValueTask StartPackageVerification(List? gamePackage = null) + { + // NOP + return new ValueTask(1); + } + + public async Task StartPackageInstallation() + { + bool isUpdateMode = await GameManager.GetGameState() == GameInstallStateEnum.NeedsUpdate; + + Lock updateStatusLock = new Lock(); + ResetStatusAndProgressProperty(); + + try + { + IsRunning = true; + + Status.IsProgressAllIndetermined = true; + Status.IsProgressPerFileIndetermined = true; + Status.IsRunning = true; + Status.IsIncludePerFileIndicator = false; + UpdateStatus(); + + int stateCount = 0; + int stateCountTotal = 0; + + int assetCount = 0; + int assetCountTotal = 0; + + long lastDownloaded = 0; + + Guid cancelGuid = _plugin.RegisterCancelToken(Token.Token); + await _gameInstaller.InitPluginComAsync(_plugin, Token.Token); + + InstallProgressDelegate progressDelegate = UpdateProgressCallback; + InstallProgressStateDelegate progressStatusDelegate = UpdateStatusCallback; + + GameInstallerKind sizeInstallerKind = isUpdateMode ? GameInstallerKind.Update : GameInstallerKind.Install; + + _gameInstaller.GetGameSizeAsync(sizeInstallerKind, in cancelGuid, out nint asyncGetGameSizeResult); + long sizeToDownload = await asyncGetGameSizeResult.AsTask(); + + _gameInstaller.GetGameDownloadedSizeAsync(sizeInstallerKind, in cancelGuid, out nint asyncGetDownloadedSizeResult); + long sizeAlreadyDownloaded = await asyncGetDownloadedSizeResult.AsTask(); + + await EnsureDiskSpaceAvailability(GameManager.GameDirPath, sizeToDownload, sizeAlreadyDownloaded); + + Task routineTask; + if (isUpdateMode) + { + _gameInstaller + .StartUpdateAsync(progressDelegate, + progressStatusDelegate, + _plugin.RegisterCancelToken(Token.Token), + out nint asyncStartUpdateResult); + routineTask = asyncStartUpdateResult.AsTask(); + } + else + { + _gameInstaller + .StartInstallAsync(progressDelegate, + progressStatusDelegate, + _plugin.RegisterCancelToken(Token.Token), + out nint asyncStartInstallResult); + + routineTask = asyncStartInstallResult.AsTask(); + } + + await routineTask.ConfigureAwait(false); + return; + + void UpdateProgressCallback(in InstallProgress delegateProgress) + { + using (updateStatusLock.EnterScope()) + { + stateCount = delegateProgress.StateCount; + stateCountTotal = delegateProgress.TotalStateToComplete; + + assetCount = delegateProgress.DownloadedCount; + assetCountTotal = delegateProgress.TotalCountToDownload; + + long downloadedBytes = delegateProgress.DownloadedBytes; + long downloadedBytesTotal = delegateProgress.TotalBytesToDownload; + + long readDownload = delegateProgress.DownloadedBytes - lastDownloaded; + double currentSpeed = CalculateSpeed(readDownload); + + Progress.ProgressAllEntryCountCurrent = assetCount; + Progress.ProgressAllEntryCountTotal = assetCountTotal; + + Progress.ProgressAllSizeCurrent = downloadedBytes; + Progress.ProgressAllSizeTotal = downloadedBytesTotal; + Progress.ProgressAllSpeed = currentSpeed; + + Progress.ProgressAllTimeLeft = ConverterTool + .ToTimeSpanRemain(downloadedBytesTotal, downloadedBytes, currentSpeed); + + Progress.ProgressAllPercentage = ConverterTool.ToPercentage(downloadedBytesTotal, downloadedBytes); + + lastDownloaded = downloadedBytes; + + if (CheckIfNeedRefreshStopwatch()) + { + return; + } + + if (Status.IsProgressAllIndetermined) + { + Status.IsProgressAllIndetermined = false; + Status.IsProgressPerFileIndetermined = false; + UpdateStatus(); + } + + UpdateProgress(); + } + } + + void UpdateStatusCallback(InstallProgressState delegateState) + { + using (updateStatusLock.EnterScope()) + { + string stateString = delegateState switch + { + InstallProgressState.Removing => string.Format("Deleting" + ": " + Locale.Lang._Misc.PerFromTo, stateCount, stateCountTotal), + InstallProgressState.Idle => Locale.Lang._Misc.Idle, + InstallProgressState.Install => string.Format(Locale.Lang._Misc.Extracting + ": " + Locale.Lang._Misc.PerFromTo, stateCount, stateCountTotal), + InstallProgressState.Verify or InstallProgressState.Preparing => string.Format(Locale.Lang._Misc.Verifying + ": " + Locale.Lang._Misc.PerFromTo, stateCount, stateCountTotal), + _ => string.Format((!isUpdateMode ? Locale.Lang._Misc.Downloading : Locale.Lang._Misc.Updating) + ": " + Locale.Lang._Misc.PerFromTo, stateCount, stateCountTotal) + }; + + Status.ActivityStatus = stateString; + Status.ActivityAll = string.Format(Locale.Lang._Misc.PerFromTo, assetCount, assetCountTotal); + + UpdateStatus(); + } + } + } + catch (OperationCanceledException) when (Token.IsCancellationRequested) + { + Status.IsCanceled = true; + throw; + } + finally + { + Status.IsCompleted = true; + IsRunning = false; + UpdateStatus(); + } + } + + private static async Task EnsureDiskSpaceAvailability(string gamePath, long sizeToDownload, long sizeAlreadyDownloaded) + { + long sizeRemainedToDownload = sizeToDownload - sizeAlreadyDownloaded; + + // Push log regarding how much size remained to download + Logger.LogWriteLine($"Size remained to download: {ConverterTool.SummarizeSizeSimple(sizeRemainedToDownload)}.", + LogType.Default, true); + + // Get the information about the disk + DriveInfo driveInfo = new DriveInfo(gamePath); + + // Push log regarding disk space + Logger.LogWriteLine($"Total free space remained on disk: {driveInfo.Name}: {ConverterTool.SummarizeSizeSimple(driveInfo.TotalFreeSpace)}.", + LogType.Default, true); + + // If the space is insufficient, then show the dialog and throw + if (sizeRemainedToDownload > driveInfo.TotalFreeSpace) + { + string errStr = $"Free Space on {driveInfo.Name} is not sufficient! " + + $"(Free space: {ConverterTool.SummarizeSizeSimple(driveInfo.TotalFreeSpace)}, Req. Space: {ConverterTool.SummarizeSizeSimple(sizeRemainedToDownload)} (Total: {ConverterTool.SummarizeSizeSimple(sizeToDownload)}), " + + $"Drive: {driveInfo.Name})"; + await SimpleDialogs.Dialog_InsufficientDriveSpace(driveInfo.TotalFreeSpace, + sizeRemainedToDownload, driveInfo.Name); + + // Push log for the disk space error + Logger.LogWriteLine(errStr, LogType.Error, true); + throw new TaskCanceledException(errStr); + } + } + + public void ApplyGameConfig(bool forceUpdateToLatest = false) + { + GameManager.UpdateGamePath(); + + if (forceUpdateToLatest) + { + GameManager.UpdateGameVersionToLatest(); + } + } + + public ValueTask MoveGameLocation() + { + // NOP + return new ValueTask(false); + } + + public async ValueTask UninstallGame() + { + if (!ComMarshal.TryCastComObjectAs(_gameInstaller, + out IGameUninstaller? asUninstaller, + out Exception? castEx)) + { + Logger.LogWriteLine($"The current plugin interface doesn't implement IGameUninstaller. Function will not be called!\r\n{castEx}", LogType.Error, true); + return false; + } + + try + { + await asUninstaller.InitPluginComAsync(_plugin, CancellationToken.None); + asUninstaller.UninstallAsync(_plugin.RegisterCancelToken(CancellationToken.None), out nint asyncUninstallResult); + await asyncUninstallResult.AsTask(); + return true; + } + catch (Exception ex) + { + SentryHelper.ExceptionHandler(ex, SentryHelper.ExceptionType.UnhandledOther); + Logger.LogWriteLine($"An error has occurred while performing game uninstaller from the plugin.\r\n{ex}", LogType.Error, true); + return false; + } + } + + public void Flush() => FlushingTrigger?.Invoke(this, EventArgs.Empty); + + // TODO: + // Implement this after WuWa Plugin implementation is completed + public ValueTask IsPreloadCompleted(CancellationToken token = default) + { + // NOP + return new ValueTask(true); + } + + // TODO: + // Might consider delta-patch to be supported via Plugin. But that's for future. + public ValueTask TryShowFailedDeltaPatchState() + { + // NOP + return new ValueTask(false); + } + + // Intended to be NOP. The plugin wouldn't have feature to show game conversion failure status. + public ValueTask TryShowFailedGameConversionState() + { + // NOP + return new ValueTask(false); + } + + // TODO: + // Implement this after WuWa Plugin implementation is completed + public ValueTask CleanUpGameFiles(bool withDialog = true) + { + // NOP + return new ValueTask(); + } + + // TODO: + // Implement this after WuWa Plugin implementation is completed + public void UpdateCompletenessStatus(CompletenessStatus status) + { + // NOP + } + + public PostInstallBehaviour PostInstallBehaviour { get; set; } = PostInstallBehaviour.Nothing; + public bool StartAfterInstall { get; set; } + public bool IsUseSophon => false; +} diff --git a/CollapseLauncher/Classes/Plugins/PluginGameVersionWrapper.cs b/CollapseLauncher/Classes/Plugins/PluginGameVersionWrapper.cs new file mode 100644 index 000000000..6aa821a21 --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginGameVersionWrapper.cs @@ -0,0 +1,249 @@ +using CollapseLauncher.GameManagement.Versioning; +using CollapseLauncher.Helper.Metadata; +using CollapseLauncher.Interfaces; +using Hi3Helper.Data; +using Hi3Helper.Plugin.Core; +using Hi3Helper.Plugin.Core.Management; +using Hi3Helper.Plugin.Core.Utility; +using Hi3Helper.Shared.ClassStruct; +using Microsoft.UI.Xaml; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; + +#nullable enable +namespace CollapseLauncher.Plugins; + +internal class PluginGameVersionWrapper : GameVersionBase, IGameVersion +{ + private readonly PluginPresetConfigWrapper _pluginPresetConfig; + private readonly IGameManager _pluginGameManager; + private GameVendorProp? _vendorTypeProp; + + internal PluginGameVersionWrapper(PluginPresetConfigWrapper presetConfig) + { + ArgumentNullException.ThrowIfNull(presetConfig, nameof(presetConfig)); + + _pluginPresetConfig = presetConfig; + _pluginGameManager = presetConfig.PluginGameManager; + + // Initialize INI Prop ahead of other operations + // ReSharper disable once VirtualMemberCallInConstructor + InitializeIniProp(); + + // Initialize the Game Path into the plugin + _pluginGameManager.SetGamePath(base.GameDirPath); + _pluginGameManager.LoadConfig(); + } + + public override void Reinitialize() + { + // Initialize the Game Path into the plugin + _pluginGameManager.SetGamePath(base.GameDirPath); + _pluginGameManager.LoadConfig(); + + base.Reinitialize(); + } + + public override string GameName + { + get => _pluginPresetConfig.GameName ?? + throw new NullReferenceException("Game Name in Plugin Preset Config cannot be null!"); + } + + public override string GameRegion => _pluginPresetConfig.ZoneName ?? throw new NullReferenceException("Game Region/Zone Name in Plugin Preset Config cannot be null!"); + + public override IniSection? GameIniVersionSection => null; + // public override IniSection GameIniProfileSection => null; + + public override string GameDirPath + { + get + { + _pluginGameManager.GetGamePath(out string? path); + return path ?? string.Empty; + } + set + { + _pluginGameManager.SetGamePath(value); + base.GameDirPath = value; // Ensure the path is set in the base class as well + } + } + + public override PresetConfig GamePreset => _pluginPresetConfig; + + // public override RegionResourceProp? GameApiProp { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } + + public override GameNameType GameType => GameNameType.Plugin; + + public override string GameDirAppDataPath => _pluginPresetConfig.GameAppDataPath ?? string.Empty; + public override string GameOutputLogName => _pluginPresetConfig.GameLogFileName ?? string.Empty; + + public override GameVendorProp VendorTypeProp => _vendorTypeProp ??= new GameVendorProp + { + GameName = _pluginPresetConfig.GameName, + VendorType = _pluginPresetConfig.VendorTypeInString + }; + + public override ValueTask EnsureGameConfigIniCorrectiveness(UIElement uiParentElement) => ValueTask.FromResult(true); + + public override async Task FindGameInstallationPath(string path) + { + Guid cancelToken = Guid.CreateVersion7(); + _pluginGameManager + .FindExistingInstallPathAsync(in cancelToken, out nint asyncFindExistingInstallPathResult); + string? gameInstallPath = await asyncFindExistingInstallPathResult.AsTask(); + + return gameInstallPath; + } + + public override DeltaPatchProperty? GetDeltaPatchInfo() => null; + + public override List GetGameLatestZip(GameInstallStateEnum gameState) => []; + public override List? GetGamePluginZip() => null; + public override List? GetGamePreloadZip() => null; + public override List? GetGameSdkZip() => null; + + + // ReSharper disable ConvertIfStatementToReturnStatement + ValueTask IGameVersion.GetGameState() + { + _pluginGameManager.IsGameHasPreload(out bool isHavePreload); + _pluginGameManager.IsGameInstalled(out bool isGameInstalled); + _pluginGameManager.IsGameHasUpdate(out bool isGameNeedsUpdate); + + if (isGameInstalled && isHavePreload) + { + return ValueTask.FromResult(GameInstallStateEnum.InstalledHavePreload); + } + + if (isGameNeedsUpdate) + { + return ValueTask.FromResult(GameInstallStateEnum.NeedsUpdate); + } + + if (isGameInstalled) + { + return ValueTask.FromResult(GameInstallStateEnum.Installed); + } + + return ValueTask.FromResult(GameInstallStateEnum.NotInstalled); + } + // ReSharper enable ConvertIfStatementToReturnStatement + + public override GameVersion? GetGameExistingVersion() + { + _pluginGameManager.GetCurrentGameVersion(out GameVersion gameVersion); + if (gameVersion == GameVersion.Empty) + { + return null; + } + + return gameVersion; + } + + public override GameVersion? GetGameVersionApi() + { + _pluginGameManager.GetApiGameVersion(out GameVersion gameVersion); + if (gameVersion == GameVersion.Empty) + { + return null; + } + + return gameVersion; + } + + public override GameVersion? GetGameVersionApiPreload() + { + _pluginGameManager.GetApiPreloadGameVersion(out GameVersion gameVersion); + if (gameVersion == GameVersion.Empty) + { + return null; + } + + return gameVersion; + } + + /* + public override void InitializeIniProp() + { + // NOP + } + */ + + public override bool IsForceRedirectToSophon() => false; + public override bool IsGameHasDeltaPatch() => false; + + public override bool IsGameHasPreload() + { + _pluginGameManager.IsGameHasPreload(out bool result); + return result; + } + public override bool IsGameInstalled() + { + _pluginGameManager.IsGameInstalled(out bool result); + return result; + } + public override bool IsGameVersionMatch() => GetGameExistingVersion() == GetGameVersionApi(); + + public override ValueTask IsPluginVersionsMatch() => ValueTask.FromResult(true); + public override ValueTask IsSdkVersionsMatch() => ValueTask.FromResult(true); + + /* + public override void Reinitialize() + { + // NOP + } + */ + + public override void UpdateGameChannels(bool saveValue = true) + { + // NOP + } + + public void UpdateGamePath() => UpdateGamePath(GameDirPath); + + public override void UpdateGamePath(string? path, bool saveValue = true) + { + _pluginGameManager.SetGamePath(path ?? throw new ArgumentNullException(nameof(path), "path cannot be null!")); + if (saveValue) + { + _pluginGameManager.SaveConfig(); + } + base.UpdateGamePath(path, saveValue); + } + + public override void UpdateGameVersion(GameVersion? version, bool saveValue = true) + { + if (!version.HasValue) + { + throw new ArgumentNullException(nameof(version), "version cannot be null!"); + } + + _pluginGameManager.SetCurrentGameVersion(version.Value); + + _pluginGameManager.GetGamePath(out string? currentPath); + if (string.IsNullOrEmpty(currentPath)) + { + return; + } + + _pluginGameManager.SetGamePath(currentPath); + if (saveValue) + { + _pluginGameManager.SaveConfig(); + } + } + + public override void UpdateGameVersionToLatest(bool saveValue = true) => UpdateGameVersion(GetGameVersionApi(), saveValue); + + public override void UpdatePluginVersions(Dictionary versions, bool saveValue = true) + { + // NOP + } + + public override void UpdateSdkVersion(GameVersion? version, bool saveValue = true) + { + // NOP + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginImporter.IPluginSource.cs b/CollapseLauncher/Classes/Plugins/PluginImporter.IPluginSource.cs new file mode 100644 index 000000000..37c6fcc92 --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginImporter.IPluginSource.cs @@ -0,0 +1,18 @@ +using Hi3Helper.Plugin.Core.Update; +using System; +using System.IO; +using System.Threading; +using System.Threading.Tasks; + +#nullable enable +namespace CollapseLauncher.Plugins; + +internal static partial class PluginImporter +{ + private interface IPluginSource : IDisposable + { + PluginManifest Manifest { get; } + + Task GetAssetStream(PluginManifestAssetInfo assetInfo, CancellationToken token = default); + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginImporter.IPluginSourceT.cs b/CollapseLauncher/Classes/Plugins/PluginImporter.IPluginSourceT.cs new file mode 100644 index 000000000..7c4af09f2 --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginImporter.IPluginSourceT.cs @@ -0,0 +1,14 @@ +using System.Threading; +using System.Threading.Tasks; + +#nullable enable +namespace CollapseLauncher.Plugins; + +internal static partial class PluginImporter +{ + private interface IPluginSource + where T : IPluginSource + { + static abstract Task GetSourceFrom(string sourceFilePath, CancellationToken token = default); + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginImporter.ManifestPluginSource.cs b/CollapseLauncher/Classes/Plugins/PluginImporter.ManifestPluginSource.cs new file mode 100644 index 000000000..c80011b7a --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginImporter.ManifestPluginSource.cs @@ -0,0 +1,48 @@ +using Hi3Helper.Plugin.Core.Update; +using System; +using System.IO; +using System.Threading; +using System.Threading.Tasks; + +#nullable enable +namespace CollapseLauncher.Plugins; + +internal static partial class PluginImporter +{ + private partial class ManifestPluginSource(PluginManifest manifest, string baseDir) + : IPluginSource, IPluginSource + { + public PluginManifest Manifest { get; } = manifest; + private string BaseDir { get; } = baseDir; + + public static async Task GetSourceFrom(string sourceFilePath, CancellationToken token = default) + { + await using FileStream manifestStream = File.OpenRead(sourceFilePath); + PluginManifest? manifest = + await manifestStream.DeserializeAsync(PluginManifestContext.Default.PluginManifest, token: token); + + if (manifest == null) + { + throw new InvalidDataException("manifest.json data is not valid!"); + } + + return new ManifestPluginSource(manifest, Path.GetDirectoryName(sourceFilePath) ?? ""); + } + + public Task GetAssetStream(PluginManifestAssetInfo assetInfo, CancellationToken token = default) + { + return Task.Factory.StartNew(Impl, token); + + Stream Impl() + { + string filePath = Path.Combine(BaseDir, assetInfo.FilePath); + return File.OpenRead(filePath); + } + } + + public void Dispose() + { + GC.SuppressFinalize(this); + } + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginImporter.ZipPluginSource.cs b/CollapseLauncher/Classes/Plugins/PluginImporter.ZipPluginSource.cs new file mode 100644 index 000000000..5c6a33581 --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginImporter.ZipPluginSource.cs @@ -0,0 +1,134 @@ +using Hi3Helper.Plugin.Core.Update; +using System; +using System.Collections.Generic; +using System.IO; +using System.IO.Compression; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; + +#nullable enable +namespace CollapseLauncher.Plugins; + +internal static partial class PluginImporter +{ + private partial class ZipPluginSource + : IPluginSource, IPluginSource + { + private const string CompressionExt = ".br"; + private const string PathSeparators = "\\/"; + + private ZipArchive Archive { get; } + private FileStream ArchiveStream { get; } + public PluginManifest Manifest { get; } + private Dictionary ManifestAssetToZipArchiveMap { get; } + + private ZipPluginSource(ZipArchive archive, + FileStream archiveStream, + string? eliminatedPrefix, + PluginManifest manifest) + { + Archive = archive; + ArchiveStream = archiveStream; + Manifest = manifest; + + ReadOnlySpan eliminatedPrefixSpan = eliminatedPrefix; + + ManifestAssetToZipArchiveMap = new Dictionary(StringComparer.OrdinalIgnoreCase); + foreach (ZipArchiveEntry entry in archive.Entries) + { + ReadOnlySpan assetPathTrimmed = entry.FullName + .AsSpan(eliminatedPrefixSpan.Length) + .TrimStart(PathSeparators); + + if (assetPathTrimmed.EndsWith(CompressionExt, StringComparison.OrdinalIgnoreCase)) + { + assetPathTrimmed = assetPathTrimmed[..^CompressionExt.Length]; + } + + ManifestAssetToZipArchiveMap.TryAdd(assetPathTrimmed.ToString(), entry); + } + } + + public static async Task GetSourceFrom(string sourceFilePath, CancellationToken token = default) + { + bool isFail = false; + FileStream? fileStream = null; + ZipArchive? archive = null; + + try + { + fileStream = File.OpenRead(sourceFilePath); + archive = new ZipArchive(fileStream, ZipArchiveMode.Read); + + ZipArchiveEntry? manifestEntry = + archive.Entries.FirstOrDefault(x => x.Name.StartsWith(PluginManager.ManifestPrefix, + StringComparison.OrdinalIgnoreCase)); + + if (manifestEntry == null) + { + throw new FileNotFoundException("Cannot find manifest.json file on the root of the package path!", + PluginManager.ManifestPrefix); + } + + bool isManifestCompressed = manifestEntry.Name.EndsWith(CompressionExt, StringComparison.OrdinalIgnoreCase); + string? eliminatedPrefix = Path.GetDirectoryName(manifestEntry.FullName); + + await using Stream manifestStream = manifestEntry.Open(); + await using Stream manifestDecStream = isManifestCompressed + ? new BrotliStream(manifestStream, CompressionMode.Decompress) + : manifestStream; + + PluginManifest? manifest = + await manifestDecStream.DeserializeAsync(PluginManifestContext.Default.PluginManifest, token: token); + + if (manifest == null) + { + throw new InvalidDataException($"manifest.json data is not valid! (IsCompressed? {isManifestCompressed})"); + } + + return new ZipPluginSource(archive, fileStream, eliminatedPrefix, manifest); + } + catch + { + isFail = true; + throw; + } + finally + { + if (isFail) + { + archive?.Dispose(); + if (fileStream != null) + { + await fileStream.DisposeAsync(); + } + } + } + } + + public Task GetAssetStream(PluginManifestAssetInfo assetInfo, CancellationToken token = default) + { + return Task.Factory.StartNew(Impl, token); + + Stream Impl() + { + if (!ManifestAssetToZipArchiveMap.TryGetValue(assetInfo.FilePath, out ZipArchiveEntry? entry)) + { + throw new FileNotFoundException($"Asset with path: {assetInfo.FilePath} is not exist inside of the zip package!", assetInfo.FilePath); + } + + bool isCompressed = entry.Name.EndsWith(CompressionExt, StringComparison.OrdinalIgnoreCase); + return isCompressed ? new BrotliStream(entry.Open(), CompressionMode.Decompress) : entry.Open(); + } + } + + public void Dispose() + { + Archive.Dispose(); + ArchiveStream.Dispose(); + ManifestAssetToZipArchiveMap.Clear(); + GC.SuppressFinalize(this); + } + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginImporter.cs b/CollapseLauncher/Classes/Plugins/PluginImporter.cs new file mode 100644 index 000000000..b8f3b496b --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginImporter.cs @@ -0,0 +1,68 @@ +using Hi3Helper.Plugin.Core.Update; +using Hi3Helper.Shared.Region; +using System; +using System.Data; +using System.IO; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; + +#nullable enable +namespace CollapseLauncher.Plugins; + +internal static partial class PluginImporter +{ + public static async Task AutoGetImportFromPath(string filePath, CancellationToken token) + { + bool isFromPackage = filePath.EndsWith(".zip", StringComparison.OrdinalIgnoreCase); + + using IPluginSource pluginSource = isFromPackage ? + await ZipPluginSource.GetSourceFrom(filePath, token) : + await ManifestPluginSource.GetSourceFrom(filePath, token); + + string pluginExecNameNoExt = Path.GetFileNameWithoutExtension(pluginSource.Manifest.MainLibraryName); + string pluginDirName = $"Hi3Helper.Plugin.{pluginExecNameNoExt}"; + string pluginBaseDir = Path.Combine(LauncherConfig.AppPluginFolder, pluginDirName); + string pluginRelName = Path.Combine(pluginDirName, pluginSource.Manifest.MainLibraryName); + + if (PluginManager.PluginInstances.ContainsKey(pluginBaseDir) || + PluginManager.PluginInstances.Values + .FirstOrDefault(x => x.PluginKey == pluginRelName) != null) + { + throw new DuplicateNameException($"Plugin: {pluginRelName} has already been imported!"); + } + + if (pluginSource.Manifest + .Assets + .FirstOrDefault(x => x.FilePath + .EndsWith(PluginManager.ManifestPrefix)) == null) + { + pluginSource.Manifest.Assets.Add(new PluginManifestAssetInfo + { + FileHash = [], + FilePath = PluginManager.ManifestPrefix + }); + } + + string pluginEntryPath = Path.Combine(pluginBaseDir, pluginSource.Manifest.MainLibraryName); + foreach (PluginManifestAssetInfo asset in pluginSource.Manifest.Assets) + { + string assetFullPath = Path.Combine(pluginBaseDir, asset.FilePath); + string? assetFullDir = Path.GetDirectoryName(assetFullPath); + + if (!string.IsNullOrEmpty(assetFullDir)) + { + Directory.CreateDirectory(assetFullDir); + } + + await using FileStream assetStream = File.Create(assetFullPath); + await using Stream assetPluginSourceStream = await pluginSource.GetAssetStream(asset, token); + + await assetPluginSourceStream.CopyToAsync(assetStream, token); + } + + return new PluginInfo(pluginEntryPath, + pluginRelName, + pluginSource.Manifest); + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginInfo.Update.cs b/CollapseLauncher/Classes/Plugins/PluginInfo.Update.cs new file mode 100644 index 000000000..8d5b59ebb --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginInfo.Update.cs @@ -0,0 +1,505 @@ +using CollapseLauncher.Extension; +using CollapseLauncher.Helper; +using Hi3Helper.Data; +using Hi3Helper.Plugin.Core.Management; +using Hi3Helper.Plugin.Core.Update; +using Hi3Helper.Plugin.Core.Utility; +using Hi3Helper.SentryHelper; +using Microsoft.Extensions.Logging; +using System; +using System.Buffers; +using System.IO; +using System.Linq; +using System.Net.Http; +using System.Security.Cryptography; +using System.Threading; +using System.Threading.Tasks; + +#nullable enable +namespace CollapseLauncher.Plugins; + +public partial class PluginInfo +{ + public string[]? UpdateCdnList { get; set; } + public IPluginSelfUpdate? Updater { get; set; } + + public bool IsUpdateSupported + { + get => (UpdateCdnList != null && UpdateCdnList.Length != 0) || Updater != null; + } + + public bool IsPluginUpToDate + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + public bool IsUpdateAvailable + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + public bool IsUpdateCheckInProgress + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + public bool IsUpdateInProgress + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + public bool IsUpdateCompleted + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + public double UpdateProgress + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + public PluginManifest? NextUpdateManifestInfo + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + /// + /// Perform a background update check task.
+ /// This method is supposed to be called only from MVVM-related methods or launcher's background check method. + ///
+ /// + /// Returns false if update check isn't eligible to be performed due to plugin not supporting update or the same background task already being run or an unexpected error is occurred.
+ /// Returns true if the operation has been completed successfully. + ///
+ public async ValueTask RunCheckUpdateTask(CancellationToken token = default) + { + // Invalidate if the plugin doesn't support update. + if (UpdateCdnList == null || UpdateCdnList.Length == 0 || Updater == null || Instance == null) + { + return false; + } + + // Invalidate if the plugin update is already being run or update check is in progress. + if (IsUpdateInProgress || IsUpdateCheckInProgress || IsUpdateCompleted) + { + return false; + } + + try + { + // Lock the operation to prevent multiple update checks being run at the same time. + IsUpdateCheckInProgress = true; + IsUpdateCompleted = false; + + // Unassign previous properties. + UpdateProgress = 0d; + NextUpdateManifestInfo = null; + IsUpdateAvailable = false; + IsPluginUpToDate = false; + + // Try to perform managed update check task. If unavailable, use plugin's own SelfUpdater. + if (!await RunCheckUpdateTaskCoreManaged(this, token).ConfigureAwait(false)) + { + await RunCheckUpdateTaskCoreUnmanaged(this, token).ConfigureAwait(false); + } + + return true; + } + catch (Exception ex) + { + // Wrap it up + UnknownPluginException wrappedEx = + ex.WrapPluginException($"An unexpected error has occurred while performing update check task on plugin: {Name}"); + SentryHelper.ExceptionHandler(wrappedEx, SentryHelper.ExceptionType.PluginUnhandled); + PluginLogger.LogError(wrappedEx, "[PluginInfo::RunCheckUpdateTask()]"); + + return false; + } + finally + { + IsUpdateCheckInProgress = false; + } + } + + private static async ValueTask RunCheckUpdateTaskCoreUnmanaged(PluginInfo pluginInfo, CancellationToken token) + { + if (pluginInfo.Updater == null || pluginInfo.Instance == null) + { + throw new NullReferenceException("Updater and Instance property cannot be null!"); + } + + string updateOutputDir = Path.Combine(pluginInfo.PluginDirPath, MarkPendingUpdateApplyFileName); + pluginInfo.Updater.TryPerformUpdateAsync(updateOutputDir, + true, + null, + pluginInfo.Instance.RegisterCancelToken(token), + out nint asyncResult); + + using SelfUpdateReturnInfo updateRoutineStatus = ReplicateFromPtr(await asyncResult.AsTask()); + + // Update manifest if update is available. + if (updateRoutineStatus.ReturnCode.HasFlag(SelfUpdateReturnCode.UpdateIsAvailable) && + updateRoutineStatus.PluginVersion != GameVersion.Empty && + updateRoutineStatus.PluginVersion != pluginInfo.Version) + { + pluginInfo.IsUpdateAvailable = true; + pluginInfo.NextUpdateManifestInfo = new PluginManifest + { + PluginVersion = updateRoutineStatus.PluginVersion ?? default, + PluginStandardVersion = updateRoutineStatus.StandardVersion ?? default, + MainPluginAuthor = updateRoutineStatus.Author ?? string.Empty, + MainPluginName = updateRoutineStatus.Name ?? string.Empty, + MainPluginDescription = updateRoutineStatus.Description ?? string.Empty, + PluginCreationDate = updateRoutineStatus.CreationDate ?? default, + ManifestDate = updateRoutineStatus.CompiledDate ?? default, + MainLibraryName = pluginInfo.PluginManifest.MainLibraryName, + Assets = [] // Leave the asset list empty as the update will be handled by the plugin itself. + }; + } + + if (updateRoutineStatus.PluginVersion == pluginInfo.Version) + { + pluginInfo.IsPluginUpToDate = true; + } + + // Throw if an error is occurred + if (updateRoutineStatus.ReturnCode.HasFlag(SelfUpdateReturnCode.Error)) + { + throw new InvalidOperationException($"Plugin has thrown an error while performing update check with return code: {updateRoutineStatus.ReturnCode} ({(int)updateRoutineStatus.ReturnCode})"); + } + } + + private static async Task RunCheckUpdateTaskCoreManaged(PluginInfo pluginInfo, CancellationToken token = default) + { + if (pluginInfo.UpdateCdnList?.Length == 0) + { + return false; + } + + using HttpClient httpClient = HttpClientBuilder.CreateDefaultClient(); + (_, PluginManifest? manifest) = await TryGetCDNFromList(httpClient, pluginInfo.UpdateCdnList!, token); + + // If the manifest is null or + // If the manifest version is empty or + // If the manifest version is the same as the plugin version, then ignore while return true as successful operation. + if (manifest == null || + manifest.PluginVersion == GameVersion.Empty || + (pluginInfo.IsPluginUpToDate = manifest.PluginVersion == pluginInfo.Version)) + { + return true; + } + + // Otherwise, update the plugin infos. + pluginInfo.NextUpdateManifestInfo = manifest; + pluginInfo.IsUpdateAvailable = true; + return true; + } + + /// + /// Perform a background update task. Make sure to run first and check if set to true before calling this method.
+ /// This method is supposed to be called only from MVVM-related methods or launcher's background check method. + ///
+ public async ValueTask RunUpdateTask(CancellationToken token = default) + { + if (!IsUpdateAvailable || + !IsUpdateSupported || + IsUpdateInProgress || + IsUpdateCheckInProgress || + IsUpdateCompleted || + IsPluginUpToDate) + { + return; + } + + string updateOutputDir = Path.Combine(PluginDirPath, MarkPendingUpdateFileName); + try + { + UpdateProgress = 0; + IsUpdateInProgress = true; + + if (await RunUpdateTaskCoreManaged(updateOutputDir, this, token) || + await RunUpdateTaskCoreUnmanaged(updateOutputDir, this, token)) + { + IsUpdateCompleted = true; + + string updateCompletedStampPath = Path.Combine(updateOutputDir, MarkPendingUpdateApplyFileName); + await File.WriteAllTextAsync(updateCompletedStampPath, "Update Completed! - Managed", token); + } + } + catch (Exception ex) + { + UnknownPluginException wrappedEx = + ex.WrapPluginException($"An unexpected error has occurred while performing update check task on plugin: {Name}"); + SentryHelper.ExceptionHandler(wrappedEx, SentryHelper.ExceptionType.PluginUnhandled); + PluginLogger.LogError(wrappedEx, "[PluginInfo::RunCheckUpdateTask()]"); + } + finally + { + IsUpdateInProgress = false; + IsUpdateAvailable = false; + } + } + + private static async ValueTask RunUpdateTaskCoreManaged(string outputDir, PluginInfo pluginInfo, CancellationToken token) + { + if (pluginInfo.UpdateCdnList == null || pluginInfo.UpdateCdnList.Length == 0) + { + return false; + } + + using HttpClient httpClient = HttpClientBuilder.CreateDefaultClient(); + (string? cdnBaseUrl, PluginManifest? manifest) = + await TryGetCDNFromList(httpClient, pluginInfo.UpdateCdnList, token); + + if (manifest == null || cdnBaseUrl == null) + { + return false; + } + + bool hasManifestIncluded = + manifest + .Assets + .FirstOrDefault(x => x.FilePath.Equals(PluginManager.ManifestPrefix, StringComparison.OrdinalIgnoreCase)) != null; + + if (!hasManifestIncluded) + { + manifest.Assets.Add(new PluginManifestAssetInfo + { + FileHash = [], + FilePath = PluginManager.ManifestPrefix, + Size = 0 + }); + } + + long downloadedAll = 0; + long totalAssetSize = manifest.Assets.Sum(x => x.Size); + await Parallel.ForEachAsync(manifest.Assets, token, Impl); + + return true; + + void UpdateProgress(long read) + { + Interlocked.Add(ref downloadedAll, read); + lock (pluginInfo) + { + pluginInfo.UpdateProgress = ConverterTool.ToPercentage(totalAssetSize, downloadedAll); + } + } + + async ValueTask Impl(PluginManifestAssetInfo asset, CancellationToken innerToken) + { + string filePath = Path.Combine(outputDir, asset.FilePath); + string? fileDir = Path.GetDirectoryName(filePath); + string fileUrl = cdnBaseUrl.CombineUrlFromString(asset.FilePath); + + if (!string.IsNullOrEmpty(fileDir)) + { + Directory.CreateDirectory(fileDir); + } + + byte[] buffer = ArrayPool.Shared.Rent(256 << 10); + + int retry = 5; + MD5? hasher = null; + + long downloadedCurrent = 0; + byte[] hash; + + Download: + try + { + downloadedCurrent = 0; + hasher = MD5.Create(); + + using HttpResponseMessage response = + // ReSharper disable once AccessToDisposedClosure + // Reason: The httpClient will never get disposed until the method is done being executed. + await httpClient.GetAsync(fileUrl, HttpCompletionOption.ResponseHeadersRead, innerToken); + await using Stream responseStream = await response.Content.ReadAsStreamAsync(innerToken); + await using FileStream fileStream = File.Create(filePath); + + int read; + while ((read = await responseStream.ReadAtLeastAsync(buffer, buffer.Length, false, innerToken)) > 0) + { + Interlocked.Add(ref downloadedCurrent, read); + UpdateProgress(read); + hasher.TransformBlock(buffer, 0, read, buffer, 0); + await fileStream.WriteAsync(buffer.AsMemory(0, read), innerToken); + } + + hasher.TransformFinalBlock(buffer, 0, read); + hash = hasher.Hash!; + } + catch when (retry > 0) + { + --retry; + UpdateProgress(-downloadedCurrent); + + goto Download; + } + finally + { + hasher?.Dispose(); + } + + if (filePath.EndsWith(PluginManager.ManifestPrefix, StringComparison.OrdinalIgnoreCase)) + { + return; + } + + if (asset.FileHash.SequenceEqual(hash)) + { + return; + } + + Array.Reverse(hash); + if (asset.FileHash.SequenceEqual(hash)) + { + return; + } + + Array.Reverse(hash); + throw new InvalidDataException($"!Cannot update as the data hash isn't matching! {fileUrl} ({HexTool.BytesToHexUnsafe(hash)} Local != {HexTool.BytesToHexUnsafe(asset.FileHash)} Remote)"); + } + } + + private static async ValueTask RunUpdateTaskCoreUnmanaged(string outputDir, PluginInfo pluginInfo, CancellationToken token) + { + if (pluginInfo.Instance == null || + pluginInfo.Updater == null) + { + return false; + } + + pluginInfo.Updater.TryPerformUpdateAsync(outputDir, + false, + (in progress) => + { + lock (pluginInfo) + { + pluginInfo.UpdateProgress = ConverterTool.ToPercentage(progress.TotalBytesToDownload, progress.DownloadedBytes); + } + }, + pluginInfo.Instance.RegisterCancelToken(token), + out nint asyncResult); + + nint checkUpdateStatusP = await asyncResult.AsTask(); + using SelfUpdateReturnInfo selfUpdateReturnInfo = ReplicateFromPtr(checkUpdateStatusP); + SelfUpdateReturnCode checkUpdateStatus = selfUpdateReturnInfo.ReturnCode; + + // Throw if an error is occurred + if (checkUpdateStatus.HasFlag(SelfUpdateReturnCode.Error)) + { + throw new InvalidOperationException($"Plugin has thrown an error while performing update with return code: {checkUpdateStatus} ({(int)checkUpdateStatus})"); + } + + return checkUpdateStatus == SelfUpdateReturnCode.UpdateSuccess; + } + + private static async Task<(string?, PluginManifest?)> TryGetCDNFromList(HttpClient client, string[] cdnList, CancellationToken token) + { + string[] randomizedUrls = GetRandomItems(cdnList); + + foreach (string currentCdnUrl in randomizedUrls) + { + string manifestUrl = currentCdnUrl.CombineUrlFromString(PluginManager.ManifestPrefix); + + try + { + using HttpResponseMessage response = + await client.GetAsync(manifestUrl, HttpCompletionOption.ResponseHeadersRead, token); + + if (!response.IsSuccessStatusCode) + { + continue; + } + + PluginManifest? manifest = + await (await response.Content.ReadAsStreamAsync(token)) + .DeserializeAsync(PluginManifestContext.Default.PluginManifest, token: token); + + return (currentCdnUrl, manifest); + } + catch + { + // ignored + } + } + + return (null, null); + } + + private static unsafe SelfUpdateReturnInfo ReplicateFromPtr(nint ptr) + { + // Fallback if the result is actually the enum. + SelfUpdateReturnCode asRetCode = (SelfUpdateReturnCode)(uint)ptr; + if (IsValidReturnCode(asRetCode)) + { + return new SelfUpdateReturnInfo((SelfUpdateReturnCode)(uint)ptr); + } + + // Return the struct if it returns it. + SelfUpdateReturnInfo* selfUpdateReturnInfo = ptr.AsPointer(); + SelfUpdateReturnInfo ret = *selfUpdateReturnInfo; // basically copy the fields. + + // Free the struct from native memory (but not the pointer inside of it since it's already copied above). + Mem.Free(selfUpdateReturnInfo); + return ret; + } + + private static bool IsValidReturnCode(SelfUpdateReturnCode retCode) + { + uint asUint = (uint)retCode; + if (retCode.HasFlag(SelfUpdateReturnCode.Ok) && + asUint is >= 0b_00000001_00000000_00000000_00000000 and <= 0b_10000000_00000000_00000000_00000000) + { + return true; + } + + return retCode.HasFlag(SelfUpdateReturnCode.Error) && + asUint is >= 0b_00000000_00000000_00000001_00000000 and <= 0b_00000000_10000000_00000000_00000000; + } + + private static TItem[] GetRandomItems(TItem[] items) + { + TItem[] itemsRandomized = new TItem[items.Length]; + Random.Shared.GetItems(items, itemsRandomized); + + return itemsRandomized; + } +} \ No newline at end of file diff --git a/CollapseLauncher/Classes/Plugins/PluginInfo.cs b/CollapseLauncher/Classes/Plugins/PluginInfo.cs new file mode 100644 index 000000000..3b9964984 --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginInfo.cs @@ -0,0 +1,506 @@ +using CollapseLauncher.Helper; +using Hi3Helper; +using Hi3Helper.Plugin.Core; +using Hi3Helper.Plugin.Core.Management; +using Hi3Helper.Plugin.Core.Management.PresetConfig; +using Hi3Helper.Plugin.Core.Update; +using Hi3Helper.Plugin.Core.Utility; +using Hi3Helper.Shared.Region; +using Hi3Helper.Win32.ManagedTools; +using Microsoft.Extensions.Logging; +using System; +using System.ComponentModel; +using System.IO; +using System.Net; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.Marshalling; +using System.Threading; +using System.Threading.Tasks; +using WinRT; + +// ReSharper disable LoopCanBeConvertedToQuery + +namespace CollapseLauncher.Plugins; + +#nullable enable +[GeneratedBindableCustomProperty] +public partial class PluginInfo : INotifyPropertyChanged, IDisposable +{ + internal const string MarkDisabledFileName = "_markDisabled"; + internal const string MarkPendingDeletionFileName = "_markPendingDeletion"; + internal const string MarkPendingUpdateFileName = "_markPendingUpdate"; + internal const string MarkPendingUpdateApplyFileName = "_markPendingUpdateApply"; + + internal unsafe delegate void DelegateGetPluginUpdateCdnList(int* count, ushort*** ptr); + internal unsafe delegate GameVersion* DelegateGetPluginStandardVersion(); + internal unsafe delegate GameVersion* DelegateGetPluginVersion(); + internal unsafe delegate void* DelegateGetPlugin(); + internal delegate void DelegateFreePlugin(); + internal delegate void DelegateSetCallback(nint callbackP); + + private bool _isDisposed; + + public event PropertyChangedEventHandler? PropertyChanged = delegate { }; + + public GameVersion StandardVersion { get; } + public GameVersion Version { get; } + public IPlugin? Instance { get; } + public nint Handle { get; } + public PluginPresetConfigWrapper[] PresetConfigs { get; } + public ILogger PluginLogger { get; } + + public bool IsEnabled + { + get => !GetMarkState(PluginDirPath, MarkDisabledFileName); + set + { + SetMarkState(PluginDirPath, MarkDisabledFileName, !value, out bool isValid); + if (isValid) + { + OnPropertyChanged(); + } + } + } + + public bool IsMarkedForDeletion + { + get => GetMarkState(PluginDirPath, MarkPendingDeletionFileName); + set + { + SetMarkState(PluginDirPath, MarkPendingDeletionFileName, value, out bool isValid); + if (isValid) + { + OnPropertyChanged(); + } + } + } + + public bool IsLoaded { get; set; } + + public string PluginDirPath { get; } + public string PluginFilePath { get; } + public string PluginFileName { get; } + public string PluginKey { get; } + public PluginManifest PluginManifest { get; set; } + public string? Name => field ?? Locale.Lang._SettingsPage.Plugin_PluginInfoNameUnknown; + public string? Description => field ?? Locale.Lang._SettingsPage.Plugin_PluginInfoDescUnknown; + public string? Author => field ?? Locale.Lang._SettingsPage.Plugin_PluginInfoAuthorUnknown; + public DateTime? CreationDate => field ?? DateTime.MinValue; + + // ReSharper disable once PrivateFieldCanBeConvertedToLocalVariable + // Reason: These fields must be defined in the object's instance to avoid early Garbage Collection to the delegate. + // Defining it as local variables will cause early Garbage Collection and raise ExecutionEngineException. + private SharedLoggerCallback? _sharedLoggerCallback; + private GCHandle _sharedLoggerCallbackGcHandle; + + private static readonly SharedDnsResolverCallback SharedDnsResolverCallback; + private static readonly SharedDnsResolverCallbackAsync SharedDnsResolverCallbackAsync; + + static unsafe PluginInfo() + { + SharedDnsResolverCallback = DnsResolverCallback; + SharedDnsResolverCallbackAsync = DnsResolverCallbackAsync; + } + + public unsafe PluginInfo(string pluginFilePath, string pluginRelName, PluginManifest manifest, bool load = false) + { + nint pluginHandle = nint.Zero; + bool isPluginLoaded = false; + string pluginBaseDir = Path.GetDirectoryName(pluginFilePath) ?? ""; + + // Set callback + _sharedLoggerCallback = LoggerCallback; + + ILogger pluginLogger = ILoggerHelper.GetILogger(pluginRelName); + + if (!load) + { + PresetConfigs = []; + StandardVersion = manifest.PluginStandardVersion; + Version = manifest.PluginVersion; + PluginManifest = manifest; + PluginDirPath = pluginBaseDir; + PluginFilePath = pluginFilePath; + PluginFileName = manifest.MainLibraryName; + PluginKey = pluginRelName; + Name = manifest.MainPluginName; + Description = manifest.MainPluginDescription; + Author = manifest.MainPluginAuthor; + CreationDate = manifest.PluginCreationDate.DateTime; + PluginLogger = pluginLogger; + IsLoaded = false; + + return; + } + + try + { + if (!NativeLibrary.TryLoad(pluginFilePath, out nint libraryHandle)) + { + Marshal.ThrowExceptionForHR(Marshal.GetHRForLastWin32Error()); + } + + if (!libraryHandle.TryGetExport("GetPluginStandardVersion", out DelegateGetPluginStandardVersion getPluginStandardVersionHandle) || + !libraryHandle.TryGetExport("GetPluginVersion", out DelegateGetPluginVersion getPluginVersionHandle) || + !libraryHandle.TryGetExport("GetPlugin", out DelegateGetPlugin getPluginHandle) || + !libraryHandle.TryGetExport("SetLoggerCallback", out DelegateSetCallback setLoggerCallbackHandle)) + { + throw new InvalidOperationException($"Plugin: {Path.GetFileName(pluginFilePath)} is missing some required exports. Plugin won't be loaded!"); + } + + _sharedLoggerCallbackGcHandle = GCHandle.Alloc(_sharedLoggerCallback); // Prevent the delegate from getting GCed + nint callbackForLogger = Marshal.GetFunctionPointerForDelegate(_sharedLoggerCallback); + if (callbackForLogger != nint.Zero) + { + setLoggerCallbackHandle(callbackForLogger); + } + + // TODO: Add versioning check. + GameVersion pluginStandardVersion = *getPluginStandardVersionHandle(); + GameVersion pluginVersion = *getPluginVersionHandle(); + void* pluginInstancePtr = getPluginHandle(); + + if (pluginInstancePtr == null) + { + throw new NullReferenceException($"Plugin's \"GetPlugin\" ({pluginRelName}) export function returns a null pointer!"); + } + + IPlugin? pluginInstance = ComInterfaceMarshaller.ConvertToManaged(pluginInstancePtr); + if (pluginInstance == null) + { + throw new NullReferenceException($"Plugin's \"GetPlugin\" ({pluginRelName}) export returns an invalid interface contract! Make sure that the plugin returns the valid interface instance!"); + } + + // Get Self Updater + pluginInstance.GetPluginSelfUpdater(out IPluginSelfUpdate? selfUpdater); + Updater = selfUpdater; + + // Get Managed Update CDN List + if (libraryHandle.TryGetExport("GetPluginUpdateCdnList", out DelegateGetPluginUpdateCdnList getPluginUpdateCdnList)) + { + int pluginCdnListCount = 0; + ushort** urlsPtr = null; + + getPluginUpdateCdnList(&pluginCdnListCount, &urlsPtr); + + if (pluginCdnListCount != 0 && urlsPtr != null) + { + string[] urlList = GC.AllocateUninitializedArray(pluginCdnListCount); + for (int i = 0; i < pluginCdnListCount; i++) + { + ushort* ptr = urlsPtr[i]; + urlList[i] = Utf16StringMarshaller.ConvertToManaged(ptr) ?? ""; + Utf16StringMarshaller.Free(ptr); + } + + UpdateCdnList = urlList; + } + } + + // Get preset configs + pluginInstance.GetPresetConfigCount(out int presetConfigCount); + if (presetConfigCount <= 0) + { + throw new InvalidOperationException($"Plugin: {pluginRelName} doesn't have IPluginPresetConfig definition!"); + } + + // Set this PluginInfo properties + pluginInstance.GetPluginName(out string? pluginName); + pluginInstance.GetPluginDescription(out string? pluginDescription); + pluginInstance.GetPluginAuthor(out string? pluginAuthor); + pluginInstance.GetPluginCreationDate(out DateTime* pluginCreationDate); + + Instance = pluginInstance; + StandardVersion = pluginStandardVersion; + Version = pluginVersion; + PluginManifest = manifest; + PluginDirPath = pluginBaseDir; + PluginFilePath = pluginFilePath; + PluginFileName = manifest.MainLibraryName; + PluginKey = pluginRelName; + Handle = libraryHandle; + Name = pluginName ?? manifest.MainPluginName; + Description = pluginDescription ?? manifest.MainPluginDescription; + Author = pluginAuthor ?? manifest.MainPluginAuthor; + CreationDate = pluginCreationDate == null ? manifest.PluginCreationDate.DateTime : *pluginCreationDate; + PluginLogger = pluginLogger; + IsLoaded = true; + + pluginInstance.SetPluginLocaleId(LauncherConfig.GetAppConfigValue("AppLanguage")); + + Logger.LogWriteLine($"[PluginInfo] Successfully loaded plugin: {Name} from: {pluginRelName}@0x{libraryHandle:x8} with version {Version} and standard version {StandardVersion}.", LogType.Debug, true); + + PresetConfigs = new PluginPresetConfigWrapper[presetConfigCount]; + for (int i = 0; i < presetConfigCount; i++) + { + pluginInstance.GetPresetConfig(i, out IPluginPresetConfig presetConfig); + if (!PluginPresetConfigWrapper.TryCreate(this, presetConfig, out PluginPresetConfigWrapper? presetConfigWrapper)) + { + throw new InvalidOperationException($"Plugin: {pluginRelName} returns an invalid IPluginPresetConfig at index {i}!"); + } + PresetConfigs[i] = presetConfigWrapper; + } + + isPluginLoaded = true; + } + catch + { + if (pluginHandle != nint.Zero && !isPluginLoaded) + { + NativeLibrary.Free(pluginHandle); + } + + throw; + } + } + + internal void EnableDnsResolver() + { + if (!IsLoaded) + { + return; + } + + if (Handle.TryGetExport("SetDnsResolverCallback", + out DelegateSetCallback setDnsResolverCallbackHandle)) + { + nint dnsCallback = Marshal.GetFunctionPointerForDelegate(SharedDnsResolverCallback); + setDnsResolverCallbackHandle(dnsCallback); + } + + if (!Handle.TryGetExport("SetDnsResolverCallbackAsync", + out DelegateSetCallback setDnsResolverCallbackAsyncHandle)) + { + return; + } + + nint dnsCallbackAsync = Marshal.GetFunctionPointerForDelegate(SharedDnsResolverCallbackAsync); + setDnsResolverCallbackAsyncHandle(dnsCallbackAsync); + } + + internal void DisableDnsResolver() + { + if (!IsLoaded) + { + return; + } + + if (Handle.TryGetExport("SetDnsResolverCallback", + out DelegateSetCallback setDnsResolverCallbackHandle)) + { + setDnsResolverCallbackHandle(nint.Zero); + } + + if (Handle.TryGetExport("SetDnsResolverCallbackAsync", + out DelegateSetCallback setDnsResolverCallbackAsyncHandle)) + { + setDnsResolverCallbackAsyncHandle(nint.Zero); + } + } + + internal async Task Initialize(CancellationToken token = default) + { + if (!IsLoaded) + { + return; + } + + if (HttpClientBuilder.SharedExternalDnsServers != null) + { + EnableDnsResolver(); + } + + foreach (PluginPresetConfigWrapper preset in PresetConfigs) + { + await preset.InitializeAsync(token); + } + } + + internal void SetPluginLocaleId(string localeId) => Instance?.SetPluginLocaleId(localeId); + + public void Dispose() + { + if (_isDisposed) + { + return; + } + + try + { + // Dispose loaded preset config + foreach (PluginPresetConfigWrapper presetConfig in PresetConfigs) + { + presetConfig.Dispose(); + } + + if (Handle.TryGetExport("SetLoggerCallback", out DelegateSetCallback setLoggerCallbackHandle)) + { + setLoggerCallbackHandle(nint.Zero); + Logger.LogWriteLine($"[PluginInfo] Plugin: {Name} Logger Callbacks have been detached!", LogType.Debug, true); + } + + DisableDnsResolver(); + Logger.LogWriteLine($"[PluginInfo] Plugin: {Name} DNS Resolver Callbacks have been detached!", LogType.Debug, true); + + // Try to dispose the IPlugin instance using the plugin's safe FreePlugin method first. + if (Handle.TryGetExport("FreePlugin", out DelegateFreePlugin freePluginCallback)) + { + // Try call the free function. + freePluginCallback(); + + // Log the successful unload of the plugin. + Logger.LogWriteLine($"[PluginInfo] Successfully unloaded plugin: {Name} ({Path.GetFileName(PluginFilePath)}@0x{Handle:x8}) using graceful free function.", LogType.Debug, true); + return; + } + + // If the graceful free function is not available, try to call Dispose method directly. + Instance?.Free(); + Logger.LogWriteLine($"[PluginInfo] Successfully unloaded plugin: {Name} ({Path.GetFileName(PluginFilePath)}@0x{Handle:x8}) using explicit function.", LogType.Debug, true); + + // Mark as disposed + _isDisposed = true; + } + catch (Exception ex) + { + Logger.LogWriteLine($"[PluginInfo] Cannot dispose IPlugin instance from plugin: {Name} ({Path.GetFileName(PluginFilePath)}@0x{Handle:x8}) due to unexpected error: {ex}", LogType.Warning, true); + } + finally + { + // Free the plugin handle and remove it from the dictionary. + if (!ComMarshal.TryReleaseComObject(Instance, out Exception? ex)) + { + Logger.LogWriteLine($"[PluginInfo] Cannot release COM Object reference for IPlugin instance due to unexpected error: {ex}", LogType.Error, true); + } + + NativeLibrary.Free(Handle); + + // Free GCHandle and nullify the delegate. + _sharedLoggerCallbackGcHandle.Free(); + Interlocked.Exchange(ref _sharedLoggerCallback, null); + } + + GC.SuppressFinalize(this); + } + + private static unsafe nint DnsResolverCallbackAsync(char* hostnameP, int hostnameLength, void** cancelCallbackP) + { + string hostnameString = new string(new ReadOnlySpan(hostnameP, hostnameLength)); + + CancellationTokenSource tcs = new CancellationTokenSource(); + VoidCallback cancelCallback = CancelDelegate; + GCHandle handle = GCHandle.Alloc(cancelCallback); // Lock the callback from getting GCed + + *cancelCallbackP = (void*)Marshal.GetFunctionPointerForDelegate(cancelCallback); + + Task task = DnsResolverCallbackAsync(hostnameString, tcs.Token); + task.GetAwaiter() + .OnCompleted(() => + { + handle.Free(); // Allow the GC to free the callback + }); + + return task.AsResult(); + + void CancelDelegate() + { + tcs.Cancel(); + tcs.Dispose(); + } + } + + private static async Task DnsResolverCallbackAsync(string hostname, CancellationToken token) + { + ArgumentNullException.ThrowIfNull(HttpClientBuilder.SharedExternalDnsServers, nameof(HttpClientBuilder.SharedExternalDnsServers)); + + IPAddress[] resolvedIpAddresses = + await HttpClientBuilder.ResolveHostToIpAsync(hostname, + HttpClientBuilder.SharedExternalDnsServers, + token); + + nint ptr = DnsARecordResult.CreateToIntPtr(resolvedIpAddresses); + return ptr; + } + + private static unsafe void DnsResolverCallback(char* hostnameP, char* ipResolvedWriteBuffer, int ipResolvedWriteBufferLength, int* ipResolvedWriteCount) + { + ArgumentNullException.ThrowIfNull(HttpClientBuilder.SharedExternalDnsServers, nameof(HttpClientBuilder.SharedExternalDnsServers)); + + string hostname = MemoryMarshal.CreateReadOnlySpanFromNullTerminated(hostnameP).ToString(); + if (string.IsNullOrEmpty(hostname)) + { + *ipResolvedWriteCount = 0; + return; + } + + IPAddress[] resolvedIpAddresses = + HttpClientBuilder.ResolveHostToIpAsync(hostname, HttpClientBuilder.SharedExternalDnsServers, CancellationToken.None) + .GetAwaiter() + .GetResult(); + + if (resolvedIpAddresses.Length == 0) + { + *ipResolvedWriteCount = 0; + return; + } + + *ipResolvedWriteCount = resolvedIpAddresses.Length; + + int offset = 0; + foreach (IPAddress ipAddress in resolvedIpAddresses) + { + string ipAsString = ipAddress.ToString(); + ipAsString.CopyTo(new Span(ipResolvedWriteBuffer + offset, ipAsString.Length)); + ipResolvedWriteBuffer[offset += ipAsString.Length] = '\0'; + offset++; + } + } + + private static bool GetMarkState(string dir, string stateName) + { + string markPath = Path.Combine(dir, stateName); + return File.Exists(markPath); + } + + private static void SetMarkState(string dir, string stateName, bool state, out bool isValid) + { + try + { + string markPath = Path.Combine(dir, stateName); + bool isFileExist = File.Exists(markPath); + + isValid = (state && !isFileExist) || (!state && isFileExist); + + switch (state) + { + case true when !isFileExist: + File.WriteAllText(markPath, stateName); + return; + case false when isFileExist: + File.Delete(markPath); + break; + } + } + catch (Exception e) + { + Logger.LogWriteLine($"[PluginInfo::SetMarkState()] Failed to set plugin state: {stateName} to {state} due to unexpected error: {e}", LogType.Error, true); + throw; + } + } + +#pragma warning disable CA2254, CS8500 + private unsafe void LoggerCallback(LogLevel* logLevel, EventId* eventId, char* messageBuffer, int messageLength) + => PluginLogger.Log(logLevel: *logLevel, eventId: *eventId, message: new ReadOnlySpan(messageBuffer, messageLength).ToString()); +#pragma warning restore CA2254, CS8500 + + public override string ToString() => $"{Name} (by {Author}) - {Description}"; + + private void OnPropertyChanged([CallerMemberName] string? propertyName = null) + { + InnerLauncherConfig + .m_mainPage? + .DispatcherQueue + .TryEnqueue(() => PropertyChanged? + .Invoke(this, new PropertyChangedEventArgs(propertyName))); + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginLauncherApiWrapper.Background.cs b/CollapseLauncher/Classes/Plugins/PluginLauncherApiWrapper.Background.cs new file mode 100644 index 000000000..3807d34a3 --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginLauncherApiWrapper.Background.cs @@ -0,0 +1,99 @@ +using CollapseLauncher.Extension; +using CollapseLauncher.Helper.LauncherApiLoader.Legacy; +using CollapseLauncher.Helper.StreamUtility; +using Hi3Helper.Plugin.Core; +using Hi3Helper.Plugin.Core.Management.Api; +using Hi3Helper.Plugin.Core.Utility; +using Hi3Helper.Shared.Region; +using System; +using System.IO; +using System.Threading; +using System.Threading.Tasks; + +namespace CollapseLauncher.Plugins; + +#nullable enable + +internal partial class PluginLauncherApiWrapper +{ + private async Task ConvertBackgroundImageEntries(LauncherGameNewsData newsData, CancellationToken token) + { + // TODO: Handle image sequence format with logo overlay (example: Wuthering Waves) + string backgroundFolder = Path.Combine(LauncherConfig.AppGameImgFolder, "bg"); + string? firstImageSpritePath = null; + string? firstImageSpriteUrl = null; + + using PluginDisposableMemory backgroundEntries = PluginDisposableMemoryExtension.ToManagedSpan(_pluginMediaApi.GetBackgroundEntries); + int count = backgroundEntries.Length; + for (int i = 0; i < count; i++) + { + using LauncherPathEntry entry = backgroundEntries[i]; + string? url = entry.Path; + if (string.IsNullOrEmpty(url)) + { + continue; + } + + string fileName = Path.GetFileNameWithoutExtension(url) + $"_{i}" + Path.GetExtension(url); + string spriteLocalPath = Path.Combine(backgroundFolder, fileName); + FileInfo fileInfo = new(spriteLocalPath); + fileInfo.Directory?.Create(); + + // Check if the background download is completed + if (IsFileDownloadCompleted(fileInfo)) + { + firstImageSpriteUrl ??= url; + firstImageSpritePath ??= spriteLocalPath; + continue; + } + + // Use local file as its url and do Copy Over instead. + if (url.StartsWith("file://", StringComparison.OrdinalIgnoreCase)) + { + // Remove "file://" prefix and normalize the path + string localUrl = url.AsSpan()[7..].TrimStart("/\\").ToString().NormalizePath(); + + if (string.IsNullOrEmpty(localUrl) || !File.Exists(localUrl)) + { + continue; // Skip if the file does not exist + } + + await using FileStream fromFileStream = new(localUrl, FileMode.Open, FileAccess.Read, FileShare.Read); + await using FileStream destCopyOver = fileInfo.Create(); + + await fromFileStream.CopyToAsync(destCopyOver, 64 << 10, token).ConfigureAwait(false); + + firstImageSpriteUrl ??= url; + firstImageSpritePath ??= spriteLocalPath; + continue; // Skip further processing for local files + } + + // Start the download + Guid cancelTokenPass = _plugin.RegisterCancelToken(token); + await using FileStream destDownload = fileInfo.Create(); + _pluginMediaApi.DownloadAssetAsync(entry, + destDownload.SafeFileHandle.DangerousGetHandle(), + null, + in cancelTokenPass, + out nint asyncDownloadAssetResult); + await asyncDownloadAssetResult.AsTask(); + + SaveFileStamp(fileInfo, destDownload.Length); + + firstImageSpriteUrl ??= url; + firstImageSpritePath ??= spriteLocalPath; + } + + // Set props + _pluginMediaApi.GetBackgroundSpriteFps(out float fps); + GameBackgroundImg = firstImageSpriteUrl ?? string.Empty; + GameBackgroundImgLocal = firstImageSpritePath; + GameBackgroundSequenceCount = count; + GameBackgroundSequenceFps = fps; + + newsData.Background = new LauncherGameNewsBackground + { + BackgroundImg = GameBackgroundImg + }; + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginLauncherApiWrapper.News.cs b/CollapseLauncher/Classes/Plugins/PluginLauncherApiWrapper.News.cs new file mode 100644 index 000000000..c3efca503 --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginLauncherApiWrapper.News.cs @@ -0,0 +1,102 @@ +using CollapseLauncher.Helper.LauncherApiLoader.Legacy; +using Hi3Helper.Plugin.Core; +using Hi3Helper.Plugin.Core.Management; +using Hi3Helper.Plugin.Core.Management.Api; +using Hi3Helper.Shared.Region; +using System; +using System.IO; +using System.Threading; +using System.Threading.Tasks; + +namespace CollapseLauncher.Plugins; + +#nullable enable + +internal partial class PluginLauncherApiWrapper +{ + internal async Task ConvertNewsAndCarouselEntries(LauncherGameNewsData newsData, CancellationToken token) + { + using PluginDisposableMemory newsEntry = PluginDisposableMemoryExtension.ToManagedSpan(_pluginNewsApi.GetNewsEntries); + if (!newsEntry.IsEmpty) + { + ConvertNewsEntriesInner(newsData, newsEntry); + } + + using PluginDisposableMemory carouselEntry = PluginDisposableMemoryExtension.ToManagedSpan(_pluginNewsApi.GetCarouselEntries); + if (!carouselEntry.IsEmpty) + { + await ConvertCarouselEntriesInner(newsData, carouselEntry, token); + } + } + + internal static void ConvertNewsEntriesInner(LauncherGameNewsData newsData, PluginDisposableMemory entrySpan) + { + int count = entrySpan.Length; + for (int i = 0; i < count; i++) + { + using LauncherNewsEntry entry = entrySpan[i]; + + string? title = entry.Title; + string? clickUrl = entry.Url; + string? postDate = entry.PostDate; + LauncherNewsEntryType newsType = entry.Type; + string? description = entry.Description; + + if (string.IsNullOrEmpty(clickUrl) || + string.IsNullOrEmpty(title)) + { + continue; + } + + newsData.NewsPost ??= []; + newsData.NewsPost.Add(new LauncherGameNewsPost + { + PostDate = postDate, + PostId = Guid.CreateVersion7().ToString(), + Title = title, + Description = description, + PostOrder = i, + PostUrl = clickUrl, + PostType = newsType switch + { + LauncherNewsEntryType.Info => LauncherGameNewsPostType.POST_TYPE_INFO, + LauncherNewsEntryType.Notice => LauncherGameNewsPostType.POST_TYPE_ANNOUNCE, + LauncherNewsEntryType.Event => LauncherGameNewsPostType.POST_TYPE_ACTIVITY, + _ => LauncherGameNewsPostType.POST_TYPE_INFO + } + }); + } + } + + internal async Task ConvertCarouselEntriesInner(LauncherGameNewsData newsData, PluginDisposableMemory entrySpan, CancellationToken token) + { + string spriteFolder = Path.Combine(LauncherConfig.AppGameImgFolder, "cached"); + + int count = entrySpan.Length; + for (int i = 0; i < count; i++) + { + using LauncherCarouselEntry entry = entrySpan[i]; + + string? imageUrl = entry.ImageUrl; + string? imagePath = await CopyOverUrlData(_plugin, _pluginNewsApi, spriteFolder, imageUrl, token); + if (string.IsNullOrEmpty(imagePath)) + { + continue; + } + + string? description = entry.Description; + string? clickUrl = entry.ClickUrl; + + newsData.NewsCarousel ??= []; + newsData.NewsCarousel.Add(new LauncherGameNewsCarousel + { + CarouselId = Guid.CreateVersion7().ToString(), + CarouselImg = imageUrl, + CarouselOrder = i, + CarouselTitle = description, + CarouselUrl = clickUrl, + IsImageUrlHashable = false + }); + } + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginLauncherApiWrapper.SocialMedia.cs b/CollapseLauncher/Classes/Plugins/PluginLauncherApiWrapper.SocialMedia.cs new file mode 100644 index 000000000..fd1332352 --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginLauncherApiWrapper.SocialMedia.cs @@ -0,0 +1,375 @@ +using CollapseLauncher.Extension; +using CollapseLauncher.Helper.LauncherApiLoader.Legacy; +using CollapseLauncher.Helper.StreamUtility; +using Hi3Helper.Data; +using Hi3Helper.EncTool.Hashes; +using Hi3Helper.Plugin.Core; +using Hi3Helper.Plugin.Core.Management.Api; +using Hi3Helper.Plugin.Core.Utility; +using Hi3Helper.Shared.Region; +using System; +using System.Buffers; +using System.Buffers.Text; +using System.Collections.Generic; +using System.IO; +using System.IO.Hashing; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +// ReSharper disable ConvertIfStatementToReturnStatement + +namespace CollapseLauncher.Plugins; + +#nullable enable +internal partial class PluginLauncherApiWrapper +{ + private async Task ConvertSocialMediaEntries(LauncherGameNewsData newsData, CancellationToken token) + { + string spriteFolder = Path.Combine(LauncherConfig.AppGameImgFolder, "cached"); + newsData.SocialMedia ??= []; + newsData.SocialMedia.Clear(); + + using PluginDisposableMemory socialMediaEntry = PluginDisposableMemoryExtension.ToManagedSpan(_pluginNewsApi.GetSocialMediaEntries); + int count = socialMediaEntry.Length; + for (int i = 0; i < count; i++) + { + using LauncherSocialMediaEntry entry = socialMediaEntry[i]; + LauncherSocialMediaEntryFlag flags = entry.Flags; + + string? iconTitle = entry.Description; + string? iconClickUrl = entry.ClickUrl; + string? qrImageDescription = entry.QrDescription; + + string? iconDataMarshal = entry.IconPath; + string? iconHoverDataMarshal = entry.IconHoverPath; + string? qrImageDataMarshal = entry.QrPath; + + string? iconUrl = await GetSocialMediaIconFromFlags(_plugin, + _pluginNewsApi, + flags, + LauncherSocialMediaEntryFlag.IconIsPath, + LauncherSocialMediaEntryFlag.IconIsDataBuffer, + spriteFolder, + iconDataMarshal, + token); + string? iconHoverUrl = await GetSocialMediaIconFromFlags(_plugin, + _pluginNewsApi, + flags, + LauncherSocialMediaEntryFlag.IconIsPath, + LauncherSocialMediaEntryFlag.IconIsDataBuffer, + spriteFolder, + iconHoverDataMarshal, + token); + string? qrImageUrl = await GetSocialMediaIconFromFlags(_plugin, + _pluginNewsApi, + flags, + LauncherSocialMediaEntryFlag.QrImageIsPath, + LauncherSocialMediaEntryFlag.QrImageIsDataBuffer, + spriteFolder, + qrImageDataMarshal, + token); + + newsData.SocialMedia.Add(new LauncherGameNewsSocialMedia + { + IconId = Guid.CreateVersion7().ToString(), + IconImg = iconUrl, + IconImgHover = iconHoverUrl ?? iconUrl, + Title = iconTitle, + SocialMediaUrl = iconClickUrl, + QrImg = qrImageUrl, + QrTitle = qrImageDescription, + QrLinks = GetSocialMediaInnerLinks(ref entry.ChildEntryHandle), + IsImageUrlHashable = false + }); + } + } + + private static List? GetSocialMediaInnerLinks(ref LauncherSocialMediaEntry innerEntry) + { + if (Unsafe.IsNullRef(ref innerEntry)) + { + return null; + } + + List links = []; + while (!Unsafe.IsNullRef(ref innerEntry)) + { + try + { + string? description = innerEntry.Description; + string? descriptionUrl = innerEntry.ClickUrl; + + innerEntry = ref innerEntry.ChildEntryHandle; + + if (string.IsNullOrEmpty(description) || + string.IsNullOrEmpty(descriptionUrl)) + { + continue; + } + + links.Add(new LauncherGameNewsSocialMediaQrLinks + { + Title = description, + Url = descriptionUrl + }); + } + finally + { + innerEntry.Dispose(); + } + } + + return links; + } + + private static async Task GetSocialMediaIconFromFlags(IPlugin plugin, + ILauncherApiNews pluginNewsApi, + LauncherSocialMediaEntryFlag flags, + LauncherSocialMediaEntryFlag flagIfUrl, + LauncherSocialMediaEntryFlag flagIfBuffer, + string outputDir, + string? embeddedDataOrPath, + CancellationToken token) + { + if (string.IsNullOrEmpty(embeddedDataOrPath)) + { + return null; + } + + if (flags.HasFlag(flagIfUrl)) + { + return await CopyOverUrlData(plugin, pluginNewsApi, outputDir, embeddedDataOrPath, token); + } + + if (flags.HasFlag(flagIfBuffer)) + { + return await CopyOverEmbeddedDataAsync(outputDir, embeddedDataOrPath, token); + } + + return string.Empty; + } + + private static async Task CopyOverUrlData(IPlugin plugin, + ILauncherApiNews pluginNewsApi, + string outputDir, + string? dataUrl, + CancellationToken token) + { + if (string.IsNullOrEmpty(dataUrl)) + { + return null; + } + + // Safeguard: Check if the data is actually base64. If so, redirect. + if (IsDataActuallyBase64(dataUrl)) + { + return await CopyOverEmbeddedDataAsync(outputDir, dataUrl, token); + } + + string fileName = Path.GetFileName(dataUrl); + string filePath = Path.Combine(outputDir, fileName); + + FileInfo fileInfo = new FileInfo(filePath) + .EnsureCreationOfDirectory() + .EnsureNoReadOnly(); + + if (IsFileDownloadCompleted(fileInfo)) + { + return filePath; + } + + await using FileStream fileStream = fileInfo.Create(); + + Guid cancelToken = plugin.RegisterCancelToken(token); + pluginNewsApi.DownloadAssetAsync(dataUrl, + fileStream.SafeFileHandle.DangerousGetHandle(), + null, + in cancelToken, + out nint asyncDownloadAssetResult); + await asyncDownloadAssetResult.AsTask(); + + SaveFileStamp(fileInfo, fileStream.Length); + + return filePath; + } + + internal static bool IsDataActuallyBase64(string data) + { + if (Base64Url.IsValid(data)) + { + return true; + } + + if (!Base64.IsValid(data)) + { + return false; + } + + return true; + } + + private delegate bool WriteEmbeddedBase64DataToBuffer(ReadOnlySpan chars, Span buffer, out int dataDecoded); + + internal static Task CopyOverEmbeddedDataAsync(string outputDir, + string? dataBase64, + CancellationToken token) + => Task.Factory.StartNew(() => CopyOverEmbeddedData(outputDir, dataBase64), token); + + internal static string? CopyOverEmbeddedData(string outputDir, + string? dataBase64) + { + + if (string.IsNullOrEmpty(dataBase64)) + { + return null; + } + + WriteEmbeddedBase64DataToBuffer writeToDelegate; + if (Base64Url.IsValid(dataBase64, out int bufferLen)) + { + writeToDelegate = WriteBufferFromBase64Url; + } + else if (Base64.IsValid(dataBase64, out bufferLen)) + { + writeToDelegate = WriteBufferFromBase64Raw; + } + else + { + return null; + } + + byte[] dataBuffer = ArrayPool.Shared.Rent(bufferLen); + try + { + if (!writeToDelegate(dataBase64, dataBuffer, out int dataDecoded) || dataDecoded == 0) + { + return null; + } + + ReadOnlySpan headerSpan = dataBuffer.AsSpan(0, Math.Min(1 << 10, dataDecoded)); + string fileExtension = DecideEmbeddedDataExtension(headerSpan); + + string fileBaseNameSignature = GetHashString(headerSpan); + string filePath = Path.Combine(outputDir, $"embeddedPluginAssets-{fileBaseNameSignature}" + fileExtension); + + FileInfo fileInfo = new FileInfo(filePath) + .EnsureCreationOfDirectory() + .EnsureNoReadOnly(); + + if (IsFileDownloadCompleted(fileInfo)) + { + return filePath; + } + + using UnmanagedMemoryStream unmanagedStream = ToStream(dataBuffer.AsSpan(0, dataDecoded)); + using FileStream fileStream = fileInfo.Create(); + + unmanagedStream.CopyTo(fileStream); + SaveFileStamp(fileInfo, fileStream.Length); + + return filePath; + } + finally + { + ArrayPool.Shared.Return(dataBuffer); + } + + unsafe UnmanagedMemoryStream ToStream(Span buffer) + { + ref byte dataRef = ref MemoryMarshal.AsRef(buffer); + return new UnmanagedMemoryStream((byte*)Unsafe.AsPointer(ref dataRef), buffer.Length); + } + + bool WriteBufferFromBase64Url(ReadOnlySpan chars, Span buffer, out int dataDecoded) + { + if (Base64Url.TryDecodeFromChars(chars, buffer, out dataDecoded)) + { + return true; + } + + dataDecoded = 0; + return false; + } + + bool WriteBufferFromBase64Raw(ReadOnlySpan chars, Span buffer, out int dataDecoded) + { + int tempBufferToUtf8Len = Encoding.UTF8.GetByteCount(chars); + byte[] tempBufferToUtf8 = ArrayPool.Shared.Rent(tempBufferToUtf8Len); + try + { + if (!Encoding.UTF8.TryGetBytes(chars, tempBufferToUtf8, out int utf8StrWritten)) + { + dataDecoded = 0; + return false; + } + + OperationStatus decodeStatus = Base64.DecodeFromUtf8(tempBufferToUtf8.AsSpan(0, utf8StrWritten), buffer, out _, out dataDecoded); + if (decodeStatus == OperationStatus.Done) + { + return true; + } + + dataDecoded = 0; + #if DEBUG + throw new InvalidOperationException($"Cannot decode data string from Base64 as it returns with status: {decodeStatus}"); + #else + return false; + #endif + } + finally + { + ArrayPool.Shared.Return(tempBufferToUtf8); + } + } + } + + private static string GetHashString(ReadOnlySpan headerData) + { + byte[] data = HashUtility.Shared.GetHashFromBytes(headerData); + string hashString = HexTool.BytesToHexUnsafe(data)!; + return hashString; + } + + internal static string DecideEmbeddedDataExtension(ReadOnlySpan headerData) + { + ReadOnlySpan pngMagic = [0x89, 0x50, 0x4E, 0x47]; + ReadOnlySpan jpgMagic = "JFIF\0"u8; + ReadOnlySpan svgMagic = " webp1Magic = "RIFF"u8; + ReadOnlySpan webp2Magic = "WEBP"u8; + + if (headerData.StartsWith(svgMagic)) + { + return ".svg"; + } + + if (headerData.StartsWith(pngMagic)) + { + return ".png"; + } + + if (headerData.IndexOf(jpgMagic) > 0) + { + return ".jpg"; + } + + if (headerData.StartsWith(webp1Magic) && + headerData.IndexOf(webp2Magic) > 7) + { + return ".webp"; + } + + return ".bin"; + } + + private static void SaveFileStamp(FileInfo fileInfo, long fileLength) + { + string fileNamePrefix = Path.GetFileName(fileInfo.Name); + string? fileDir = Path.GetDirectoryName(fileInfo.FullName); + + string stampFileName = Path.Combine(fileDir ?? string.Empty, fileNamePrefix + $"#{fileLength}"); + File.WriteAllText(stampFileName, string.Empty); // Create an empty file to mark completion + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginLauncherApiWrapper.cs b/CollapseLauncher/Classes/Plugins/PluginLauncherApiWrapper.cs new file mode 100644 index 000000000..ed106724e --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginLauncherApiWrapper.cs @@ -0,0 +1,184 @@ +using CollapseLauncher.Extension; +using CollapseLauncher.Helper.LauncherApiLoader; +using CollapseLauncher.Helper.LauncherApiLoader.HoYoPlay; +using CollapseLauncher.Helper.LauncherApiLoader.Legacy; +using Hi3Helper; +using Hi3Helper.Plugin.Core; +using Hi3Helper.Plugin.Core.Management; +using Hi3Helper.Plugin.Core.Management.Api; +using Hi3Helper.SentryHelper; +using System; +using System.IO; +using System.Linq; +using System.Net.Http; +using System.Threading; +using System.Threading.Tasks; +using ILauncherApi = CollapseLauncher.Helper.LauncherApiLoader.ILauncherApi; +using LauncherApiBase = CollapseLauncher.Helper.LauncherApiLoader.LauncherApiBase; + +namespace CollapseLauncher.Plugins; + +#nullable enable +internal partial class PluginLauncherApiWrapper : ILauncherApi +{ + private readonly PluginPresetConfigWrapper _pluginPresetConfig; + private readonly IPlugin _plugin; + private readonly IGameManager _pluginGameManager; + private readonly ILauncherApiMedia _pluginMediaApi; + private readonly ILauncherApiNews _pluginNewsApi; + + public PluginLauncherApiWrapper(IPlugin plugin, PluginPresetConfigWrapper presetConfig) + { + ArgumentNullException.ThrowIfNull(plugin, nameof(plugin)); + ArgumentNullException.ThrowIfNull(presetConfig, nameof(presetConfig)); + + _plugin = plugin; + _pluginPresetConfig = presetConfig; + _pluginGameManager = presetConfig.PluginGameManager; + _pluginMediaApi = presetConfig.PluginMediaApi; + _pluginNewsApi = presetConfig.PluginNewsApi; + } + + public bool IsPlugin => true; + public bool IsForceRedirectToSophon => false; + public bool IsLoadingCompleted { get; private set; } + + public string GameBackgroundImg { get; private set; } = string.Empty; + public string? GameBackgroundImgLocal { get; set; } + + // ReSharper disable UnusedAutoPropertyAccessor.Global + public int GameBackgroundSequenceCount { get; private set; } = 1; + public float GameBackgroundSequenceFps { get; private set; } + // ReSharper enable UnusedAutoPropertyAccessor.Global + + public string GameName => _pluginPresetConfig.GameName; + public string GameRegion => _pluginPresetConfig.ZoneName; + public string GameNameTranslation => InnerLauncherConfig.GetGameTitleRegionTranslationString(GameName, Locale.Lang._GameClientTitles) ?? GameName; + public string GameRegionTranslation => InnerLauncherConfig.GetGameTitleRegionTranslationString(GameRegion, Locale.Lang._GameClientRegions) ?? GameRegion; + + public HoYoPlayGameInfoField? LauncherGameInfoField { get; } = new(); + public LauncherGameNews LauncherGameNews { get; } = new(); + public RegionResourceProp LauncherGameResource { get; } = new(); + + public HttpClient ApiGeneralHttpClient => throw new NotImplementedException(); + public HttpClient ApiResourceHttpClient => throw new NotImplementedException(); + + public async Task LoadAsync(OnLoadTaskAction? beforeLoadRoutine = null, + OnLoadTaskAction? afterLoadRoutine = null, + ActionOnTimeOutRetry? onTimeoutRoutine = null, + ErrorLoadRoutineDelegate? errorLoadRoutine = null, + CancellationToken token = default) + { + _ = beforeLoadRoutine?.Invoke(token) ?? Task.CompletedTask; + + try + { + IsLoadingCompleted = false; + + Task[] initTasks = GetApiInitTasks(onTimeoutRoutine, token); + await Task.WhenAll(initTasks); + + LauncherGameNews.Content = new LauncherGameNewsData(); + + await ConvertBackgroundImageEntries(LauncherGameNews.Content, token); + await ConvertSocialMediaEntries(LauncherGameNews.Content, token); + await ConvertNewsAndCarouselEntries(LauncherGameNews.Content, token); + + await (afterLoadRoutine?.Invoke(token) ?? Task.CompletedTask); + return true; + } + catch (Exception ex) + { + await SentryHelper.ExceptionHandlerAsync(ex, SentryHelper.ExceptionType.UnhandledOther); + errorLoadRoutine?.Invoke(ex); + return false; + } + finally + { + IsLoadingCompleted = true; + } + } + + private static bool IsFileDownloadCompleted(FileInfo fileInfo) + { + if (!fileInfo.Exists) + { + return false; + } + + string fileNamePrefix = Path.GetFileName(fileInfo.Name); + string? fileDir = Path.GetDirectoryName(fileInfo.FullName); + + string? firstMarkFile = Directory.EnumerateFiles(fileDir ?? string.Empty, fileNamePrefix + "#*", SearchOption.TopDirectoryOnly) + .FirstOrDefault(); + + if (firstMarkFile == null) + { + return false; + } + + Span range = stackalloc Range[16]; + int lenSplit = firstMarkFile.Split(range, '#', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries); + + if (lenSplit < 2 || lenSplit > range.Length) + { + return false; // Invalid mark file format + } + + if (!int.TryParse(firstMarkFile[range[..lenSplit][^1]], out int fileLength)) + { + return false; // Invalid file length in mark file + } + + return fileInfo.Length == fileLength; + } + + private Task[] GetApiInitTasks(ActionOnTimeOutRetry? actionOnTimeoutRetry, CancellationToken cancelToken) + { + // GameManager initialization + ActionTimeoutTaskCallback retryGameManager = innerToken => _pluginGameManager.InitPluginComAsync(_plugin, innerToken); + Task initGameManagerTask = retryGameManager.WaitForRetryAsync(LauncherApiBase.ExecutionTimeout, + LauncherApiBase.ExecutionTimeoutStep, + LauncherApiBase.ExecutionTimeoutAttempt, + actionOnTimeoutRetry, + cancelToken); + + // Media API initialization + ActionTimeoutTaskCallback retryMediaApi = innerToken => _pluginMediaApi.InitPluginComAsync(_plugin, innerToken); + Task initMediaApiTask = retryMediaApi.WaitForRetryAsync(LauncherApiBase.ExecutionTimeout, + LauncherApiBase.ExecutionTimeoutStep, + LauncherApiBase.ExecutionTimeoutAttempt, + actionOnTimeoutRetry, + cancelToken); + + // News API initialization + ActionTimeoutTaskCallback retryCallback = innerToken => _pluginNewsApi.InitPluginComAsync(_plugin, innerToken); + Task initNewsApi = retryCallback.WaitForRetryAsync(LauncherApiBase.ExecutionTimeout, + LauncherApiBase.ExecutionTimeoutStep, + LauncherApiBase.ExecutionTimeoutAttempt, + actionOnTimeoutRetry, + cancelToken); + + return [initGameManagerTask, initMediaApiTask, initNewsApi]; + } + + protected virtual void Dispose(bool disposing) + { + if (!disposing) + { + return; + } + + // Add dispose for GameManager here + _pluginMediaApi.Free(); + _pluginNewsApi.Free(); + } + + ~PluginLauncherApiWrapper() => Dispose(disposing: false); + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginManager.Uninstall.cs b/CollapseLauncher/Classes/Plugins/PluginManager.Uninstall.cs new file mode 100644 index 000000000..c703a902d --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginManager.Uninstall.cs @@ -0,0 +1,53 @@ +using CollapseLauncher.Helper.StreamUtility; +using Hi3Helper; +using Hi3Helper.Plugin.Core.Update; +using System; +using System.IO; +using System.Linq; +// ReSharper disable BadControlBracesIndent + +#nullable enable +namespace CollapseLauncher.Plugins; + +internal static partial class PluginManager +{ + private static void ApplyPendingUninstallRoutine(DirectoryInfo pluginDir, FileInfo markFile) + { + try + { +#if DEBUG + const bool isThrowOnFailDelete = true; +#else + const bool isThrowOnFailDelete = false; +#endif + + FileInfo manifestFileInfo = new FileInfo(Path.Combine(pluginDir.FullName, ManifestPrefix)); + if (!manifestFileInfo.Exists) + { + throw new FileNotFoundException($"Cannot uninstall as manifest file is not found in plugin directory: {pluginDir.FullName}", manifestFileInfo.FullName); + } + + PluginManifest? manifest = manifestFileInfo.DeserializeFromFile(PluginManifestContext.Default.PluginManifest); + if (manifest == null) + { + throw new InvalidDataException($"Cannot uninstall as manifest file is not valid in plugin directory: {pluginDir.FullName}"); + } + + foreach (FileInfo fileInfo in manifest + .Assets + .Select(x => new FileInfo(Path.Combine(pluginDir.FullName, + x.FilePath)))) + { + fileInfo.TryDeleteFile(isThrowOnFailDelete); + } + + manifestFileInfo.TryDeleteFile(isThrowOnFailDelete); + markFile.TryDeleteFile(); + pluginDir.DeleteEmptyDirectory(true); + } + catch (Exception e) + { + Logger.LogWriteLine($"Failed while trying to uninstall plugin at directory: {pluginDir.FullName} due to an error: {e}", LogType.Error, true); + } + } +} \ No newline at end of file diff --git a/CollapseLauncher/Classes/Plugins/PluginManager.Update.cs b/CollapseLauncher/Classes/Plugins/PluginManager.Update.cs new file mode 100644 index 000000000..08caf483f --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginManager.Update.cs @@ -0,0 +1,93 @@ +using CollapseLauncher.Helper.StreamUtility; +using CollapseLauncher.Pages; +using Hi3Helper; +using Hi3Helper.Plugin.Core.Update; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Threading.Tasks; + +#nullable enable +namespace CollapseLauncher.Plugins; + +internal static partial class PluginManager +{ + internal static async Task<(List<(string, PluginManifest)>, bool)> StartUpdateBackgroundRoutine(bool isForUpdateCheckOnly = false) + { + return await PluginManagerPage.Context.StartBackgroundUpdateTask(); + } + + private static void ApplyPendingUpdateRoutine(DirectoryInfo pluginDir) + { + DirectoryInfo tempUpdateDir = new DirectoryInfo(Path.Combine(pluginDir.FullName, PluginInfo.MarkPendingUpdateFileName)); + DirectoryInfo? targetUpdateDir = tempUpdateDir.Parent; + + FileInfo stampCompletedFileInfo = new FileInfo(Path.Combine(tempUpdateDir.FullName, PluginInfo.MarkPendingUpdateApplyFileName)); + + try + { + if (targetUpdateDir == null) + { + return; + } + + if (!tempUpdateDir.Exists) + { + return; + } + + if (!stampCompletedFileInfo.Exists) + { + return; + } + + stampCompletedFileInfo.TryDeleteFile(); + + // Cleanup old files + foreach (FileInfo oldFileInfo in targetUpdateDir + .EnumerateFiles("*", SearchOption.AllDirectories) + .Where(x => x.FullName.IndexOf(PluginInfo.MarkPendingUpdateFileName, StringComparison.OrdinalIgnoreCase) < 0)) + { + oldFileInfo.IsReadOnly = false; + oldFileInfo.TryDeleteFile(); + + string? currentOldFileDir = oldFileInfo.DirectoryName; + if (currentOldFileDir == null) + { + return; + } + + oldFileInfo.Refresh(); + oldFileInfo.Delete(); + } + + string tempUpdateDirPath = tempUpdateDir.FullName; + string targetUpdateDirPath = targetUpdateDir.FullName; + + foreach (FileInfo tempFileInfo in tempUpdateDir + .EnumerateFiles("*", SearchOption.AllDirectories)) + { + ReadOnlySpan baseName = tempFileInfo.FullName.AsSpan(tempUpdateDirPath.Length).TrimStart("/\\"); + string newFilePath = Path.Combine(targetUpdateDirPath, baseName.ToString()); + FileInfo newFileInfo = new FileInfo(newFilePath); + + newFileInfo.Directory?.Create(); + tempFileInfo.TryMoveTo(newFilePath); + } + + pluginDir.DeleteEmptyDirectory(); + } + catch (Exception ex) + { + Logger.LogWriteLine($"Cannot apply the update to plugin: {pluginDir.Name} due to an error: {ex}", LogType.Error, true); + } + finally + { + if (tempUpdateDir.Exists) + { + tempUpdateDir.TryDeleteDirectory(true); + } + } + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginManager.cs b/CollapseLauncher/Classes/Plugins/PluginManager.cs new file mode 100644 index 000000000..b10550b07 --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginManager.cs @@ -0,0 +1,212 @@ +using CollapseLauncher.Helper.Metadata; +using Hi3Helper; +using Hi3Helper.Plugin.Core.Update; +using Hi3Helper.Shared.Region; +using System; +using System.Buffers; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Threading; +using System.Threading.Tasks; +// ReSharper disable StringLiteralTypo + +namespace CollapseLauncher.Plugins; + +#nullable enable +internal static partial class PluginManager +{ + internal const string PluginDirPrefix = "Hi3Helper.Plugin.*"; + internal const string ManifestPrefix = "manifest.json"; + + public static readonly Dictionary PluginInstances = new(StringComparer.OrdinalIgnoreCase); + + internal static async Task LoadPlugins( + Dictionary?> launcherMetadataConfig, + Dictionary?> launcherGameNameRegionCollection, + Dictionary launcherMetadataStampDictionary) + { + DirectoryInfo directoryInfo = new DirectoryInfo(LauncherConfig.AppPluginFolder); + if (!directoryInfo.Exists) + { + directoryInfo.Create(); + } + + ApplyPendingRoutines(directoryInfo); + + foreach (DirectoryInfo pluginDirInfo in directoryInfo.EnumerateDirectories(PluginDirPrefix, SearchOption.TopDirectoryOnly)) + { + PluginInfo? pluginInfo = null; + FileInfo? pluginFile = null; + FileInfo? manifestFile = pluginDirInfo + .EnumerateFiles(ManifestPrefix, SearchOption.TopDirectoryOnly) + .FirstOrDefault(); + + FileInfo? markDisabled = pluginDirInfo + .EnumerateFiles(PluginInfo.MarkDisabledFileName, SearchOption.TopDirectoryOnly) + .FirstOrDefault(); + + try + { + if (manifestFile == null) + { + continue; + } + + await using FileStream manifestFileStream = manifestFile.OpenRead(); + PluginManifest? pluginManifest = + await manifestFileStream.DeserializeAsync(PluginManifestContext.Default.PluginManifest); + + if (pluginManifest == null) + { + continue; + } + + pluginFile = new FileInfo(Path.Combine(pluginDirInfo.FullName, pluginManifest.MainLibraryName)); + if (!pluginFile.Exists) + { + Logger.LogWriteLine($"The {pluginManifest.MainLibraryName} doesn't exist in this plugin directory: {pluginDirInfo.FullName}. Skipping!", LogType.Warning, true); + continue; + } + + AssertIfUpxPacked(pluginFile); + + string pluginDirName = pluginDirInfo.Name; + if (PluginInstances.TryGetValue(pluginDirName, out pluginInfo)) + { + // Plugin already loaded, skip it. + continue; + } + + string pluginRelName = Path.Combine(pluginDirInfo.Name, pluginFile.Name); + pluginInfo = new PluginInfo(pluginFile.FullName, + pluginRelName, + pluginManifest, + markDisabled is not + { + Exists: true + }); + + await pluginInfo.Initialize(CancellationToken.None); + + _ = PluginInstances.TryAdd(pluginDirName, pluginInfo); + } + catch (Exception ex) + { + Logger.LogWriteLine($"[PluginManager] Failed to load plugin from file: {pluginFile?.FullName} due to error: {ex}", LogType.Error, true); + pluginInfo?.Dispose(); + } + finally + { + if (pluginInfo is { IsLoaded: true }) + { + foreach (PluginPresetConfigWrapper currentConfig in pluginInfo.PresetConfigs) + { + string gameName = currentConfig.GameName; + string gameRegion = currentConfig.ZoneName; + + ref Dictionary? dict = ref CollectionsMarshal.GetValueRefOrAddDefault(launcherMetadataConfig, gameName, out _); + if (Unsafe.IsNullRef(ref dict) || dict == null) + { + dict = new Dictionary(StringComparer.OrdinalIgnoreCase); + } + + dict.TryAdd(gameRegion, currentConfig); + + ref List? gameRegions = ref CollectionsMarshal.GetValueRefOrAddDefault(launcherGameNameRegionCollection, gameName, out _); + if (Unsafe.IsNullRef(ref gameRegions) || gameRegions == null) + { + gameRegions = []; + } + + gameRegions.Add(gameRegion); + + long stampTimestamp = long.Parse(pluginInfo.CreationDate?.ToString("yyyyMMddHHmmss") ?? "0"); + _ = launcherMetadataStampDictionary.TryAdd($"{gameName} - {gameRegion}", new Stamp + { + GameName = gameName, + GameRegion = gameRegion, + LastModifiedTimeUtc = pluginInfo.CreationDate ?? DateTime.MinValue, + LastUpdated = stampTimestamp, + MetadataType = MetadataType.PresetConfigPlugin, + PresetConfigVersion = pluginInfo.StandardVersion.ToString() + }); + } + } + } + } + } + + internal static void UnloadPlugins() + { + // Dispose all plugin instances before freeing the plugin handles. + foreach (PluginInfo pluginInfo in PluginInstances.Values) + { + pluginInfo.Dispose(); + } + + // Clear the plugin instances. + PluginInstances.Clear(); + } + + internal static void ApplyPendingRoutines(DirectoryInfo pluginRootDir) + { + foreach (DirectoryInfo pluginDir in pluginRootDir + .EnumerateDirectories(PluginDirPrefix, SearchOption.TopDirectoryOnly)) + { + FileInfo markPendingUninstall = + new FileInfo(Path.Combine(pluginDir.FullName, PluginInfo.MarkPendingDeletionFileName)); + FileInfo markPendingApplyUpdate = + new FileInfo(Path.Combine(pluginDir.FullName, PluginInfo.MarkPendingUpdateFileName, PluginInfo.MarkPendingUpdateApplyFileName)); + + if (markPendingUninstall.Exists) + { + ApplyPendingUninstallRoutine(pluginDir, markPendingUninstall); + } + + markPendingApplyUpdate.Refresh(); + if (!markPendingApplyUpdate.Exists) + { + continue; + } + + ApplyPendingUpdateRoutine(pluginDir); + } + } + + internal static void SetPluginLocaleId(string localeId) + { + foreach (PluginInfo pluginInfo in PluginInstances.Values) + { + pluginInfo.SetPluginLocaleId(localeId); + } + } + + private static void AssertIfUpxPacked(FileInfo fileInfo) + { + ReadOnlySpan searchValuesPattern1 = "UPX0\0\0\0\0"u8; + ReadOnlySpan searchValuesPattern2 = "UPX1\0\0\0\0"u8; + + byte[] readHeader = ArrayPool.Shared.Rent(2048); + try + { + using FileStream stream = fileInfo.OpenRead(); + stream.ReadAtLeast(readHeader, readHeader.Length, false); + + int indexOfPattern1 = readHeader.AsSpan().IndexOf(searchValuesPattern1); + int indexOfPattern2 = readHeader.AsSpan().IndexOf(searchValuesPattern2); + + if (indexOfPattern1 >= 0 && + indexOfPattern2 >= 0) + { + Logger.LogWriteLine($"[PluginManager] Plugin: {fileInfo.Name} is UPX packed! The plugin might be unstable.", LogType.Warning, true); + } + } + finally + { + ArrayPool.Shared.Return(readHeader); + } + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginManagerPageContext.cs b/CollapseLauncher/Classes/Plugins/PluginManagerPageContext.cs new file mode 100644 index 000000000..c19b3c1ed --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginManagerPageContext.cs @@ -0,0 +1,423 @@ +using CollapseLauncher.Extension; +using CollapseLauncher.Pages; +using CommunityToolkit.Mvvm.Input; +using Hi3Helper; +using Hi3Helper.Plugin.Core.Update; +using Hi3Helper.SentryHelper; +using Hi3Helper.Shared.Region; +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Collections.Specialized; +using System.ComponentModel; +using System.Diagnostics; +using System.Linq; +using System.Runtime.CompilerServices; +using System.Threading; +using System.Threading.Tasks; +using System.Windows.Input; +using WinRT; + +#nullable enable +namespace CollapseLauncher.Plugins; + +[GeneratedBindableCustomProperty] +public partial class PluginManagerPageContext : INotifyPropertyChanged +{ + internal ObservableCollection PluginCollection { get; } = CreateNewCollectionFromPluginManager(); + public event PropertyChangedEventHandler? PropertyChanged = delegate { }; + + internal bool IsChanged + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + internal int ListViewSelectedItemsCountUninstalled + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + internal int ListViewSelectedItemsCountRestored + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + internal int ListViewSelectedItemsCountEnabled + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + internal int ListViewSelectedItemsCountDisabled + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + internal bool IsUpdateCheckOnProgress + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + internal bool IsUpdateOnProgress + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + internal bool IsUpdateAllShow + { + get; + set + { + field = value; + OnPropertyChanged(); + } + } + + public bool IsEnableAutoUpdate + { + get => field = LauncherConfig.GetAppConfigValue("IsEnablePluginAutoUpdate"); + set + { + if (field == value) + { + return; + } + LauncherConfig.SetAndSaveConfigValue("IsEnablePluginAutoUpdate", field = value); + OnPropertyChanged(); + } + } + + public PluginManagerPageContext() + { + PluginCollection.CollectionChanged += OnChangeUpdatePluginCollection; + } + + private static ObservableCollection CreateNewCollectionFromPluginManager() + { + List backedList = PluginManager.PluginInstances.Values.ToList(); + foreach (PluginInfo pluginInfo in backedList) + { + pluginInfo.PropertyChanged += OnPluginInfoPropertyChanged; + } + + ObservableCollection newCollection = []; + ObservableCollectionExtension.GetBackedCollectionList(newCollection) = backedList; + return newCollection; + } + + private static void OnPluginInfoPropertyChanged(object? sender, PropertyChangedEventArgs e) + { + // Update Property based on all PluginInfo instance + bool isAnyUpdateCheckOnProgress = PluginManager.PluginInstances.Values.Any(x => x.IsUpdateCheckInProgress); + bool isAnyUpdateOnProgress = PluginManager.PluginInstances.Values.Any(x => x.IsUpdateInProgress); + bool isAnyUpdateCompleted = PluginManager.PluginInstances.Values.Any(x => x.IsUpdateCompleted); + + PluginManagerPage.Context.IsUpdateCheckOnProgress = isAnyUpdateCheckOnProgress; + PluginManagerPage.Context.IsUpdateOnProgress = isAnyUpdateOnProgress; + PluginManagerPage.Context.IsUpdateAllShow = !isAnyUpdateCheckOnProgress && !isAnyUpdateOnProgress; + + bool isPluginEnableChanged = e.PropertyName?.Equals(nameof(PluginInfo.IsEnabled)) ?? false; + bool isPluginMarkDeletionChanged = e.PropertyName?.Equals(nameof(PluginInfo.IsMarkedForDeletion)) ?? false; + + if (isAnyUpdateCompleted || + isPluginEnableChanged || + isPluginMarkDeletionChanged) + { + PluginManagerPage.Context.IsChanged = true; + } + } + + private void OnChangeUpdatePluginCollection(object? sender, NotifyCollectionChangedEventArgs e) + { + try + { + if (e is not { Action: NotifyCollectionChangedAction.Add, NewItems: not null }) + { + return; + } + + foreach (PluginInfo newPluginInfo in e.NewItems) + { + PluginManager.PluginInstances.TryAdd(newPluginInfo.PluginDirPath, newPluginInfo); + } + } + finally + { + IsChanged = true; + } + } + + public static ICommand OnOpenCurrentPluginFolderCommand { get; } = new RelayCommand(OnOpenCurrentPluginFolder); + public static void OnOpenCurrentPluginFolder(PluginInfo? obj) + { + if (obj == null) + { + return; + } + + Process.Start(new ProcessStartInfo + { + FileName = obj.PluginDirPath, + UseShellExecute = true + }); + } + + public static ICommand OnOpenCollapsePluginFolderCommand { get; } = new RelayCommand(OnOpenCollapsePluginFolder); + public static void OnOpenCollapsePluginFolder(PluginInfo? obj) + { + if (obj == null) + { + return; + } + + Process.Start(new ProcessStartInfo + { + FileName = LauncherConfig.AppPluginFolder, + UseShellExecute = true + }); + } + + public static ICommand OnDisableSelectedPluginsCommand { get; } = new RelayCommand>(OnDisableSelectedPlugins); + public static void OnDisableSelectedPlugins(IList? obj) => ToggleIsEnabledSelectedPlugins(obj, false); + + public static ICommand OnEnableSelectedPluginsCommand { get; } = new RelayCommand>(OnEnableSelectedPlugins); + public static void OnEnableSelectedPlugins(IList? obj) => ToggleIsEnabledSelectedPlugins(obj, true); + + public static ICommand OnMarkForDeletionSelectedPluginsCommand { get; } = new RelayCommand>(OnMarkForDeletionSelectedPlugins); + public static void OnMarkForDeletionSelectedPlugins(IList? obj) => ToggleIsMarkedForDeletionSelectedPlugins(obj, true); + + public static ICommand OnRestoreFromDeletionSelectedPluginsCommand { get; } = new RelayCommand>(OnRestoreFromDeletionSelectedPlugins); + public static void OnRestoreFromDeletionSelectedPlugins(IList? obj) => ToggleIsMarkedForDeletionSelectedPlugins(obj, false); + + public static ICommand OnCheckUpdateCurrentPluginCommand { get; } = new RelayCommand(OnCheckUpdateCurrentPlugin); + public static void OnCheckUpdateCurrentPlugin(PluginInfo? plugin) + { + if (plugin == null) + { + return; + } + + CheckUpdateEnumeratePlugins(plugin); + } + + public static ICommand OnCheckAndDownloadUpdateCurrentPluginCommand { get; } = new RelayCommand(OnCheckAndDownloadUpdateCurrentPlugin); + public static void OnCheckAndDownloadUpdateCurrentPlugin(PluginInfo? plugin) + { + if (plugin == null) + { + return; + } + + OnCheckAndDownloadUpdateSelectedPlugins([plugin]); + } + + public static ICommand OnDownloadUpdateCurrentPluginCommand { get; } = new RelayCommand(OnDownloadUpdateCurrentPlugin); + public static async void OnDownloadUpdateCurrentPlugin(PluginInfo? plugin) + { + try + { + if (plugin == null) + { + return; + } + + await plugin.RunUpdateTask(); + } + catch (Exception ex) + { + ErrorSender.SendException(ex.WrapPluginException()); + } + } + + public static ICommand OnCheckUpdateSelectedPluginsCommand { get; } = new RelayCommand>(OnCheckUpdateSelectedPlugins); + public static void OnCheckUpdateSelectedPlugins(IList? obj) + { + if (obj == null) + { + return; + } + + CheckUpdateEnumeratePlugins(obj.OfType().ToList()); + } + + public static ICommand OnCheckAndDownloadUpdateSelectedPluginsCommand { get; } = new RelayCommand>(OnCheckAndDownloadUpdateSelectedPlugins); + public static void OnCheckAndDownloadUpdateSelectedPlugins(IList? obj) + { + if (obj == null) + { + return; + } + + CheckAndDownloadUpdateEnumeratePlugins(obj.OfType().ToList()); + } + + internal static async void CheckUpdateEnumeratePlugins(params PluginInfo[] pluginInfos) + { + try + { + await Parallel.ForEachAsync(pluginInfos, Impl); + + async ValueTask Impl(PluginInfo plugin, CancellationToken token) + { + await plugin.RunCheckUpdateTask(token); + } + } + catch (Exception ex) + { + ErrorSender.SendException(ex.WrapPluginException()); + } + } + + internal static async void CheckUpdateEnumeratePlugins(ICollection pluginInfos) + { + try + { + await Parallel.ForEachAsync(pluginInfos, Impl); + + async ValueTask Impl(PluginInfo plugin, CancellationToken token) + { + await plugin.RunCheckUpdateTask(token); + } + } + catch (Exception ex) + { + ErrorSender.SendException(ex.WrapPluginException()); + } + } + + internal static async void CheckAndDownloadUpdateEnumeratePlugins(IEnumerable pluginInfos) + { + try + { + await Parallel.ForEachAsync(pluginInfos, Impl); + + async ValueTask Impl(PluginInfo plugin, CancellationToken token) + { + if (await plugin.RunCheckUpdateTask(token)) + { + await plugin.RunUpdateTask(token); + } + } + } + catch (Exception ex) + { + ErrorSender.SendException(ex.WrapPluginException()); + } + } + + private static void ToggleIsEnabledSelectedPlugins(IList? obj, bool isEnabled) + { + if (obj == null) + { + return; + } + + foreach (PluginInfo pluginInfo in obj.OfType()) + { + pluginInfo.IsEnabled = isEnabled; + } + } + + private static void ToggleIsMarkedForDeletionSelectedPlugins(IList? obj, bool isMarkedForDeletion) + { + if (obj == null) + { + return; + } + + foreach (PluginInfo pluginInfo in obj.OfType()) + { + pluginInfo.IsMarkedForDeletion = isMarkedForDeletion; + } + } + + internal async Task<(List<(string, PluginManifest)>, bool)> StartBackgroundUpdateTask() + { + List<(string, PluginManifest)> returnList = []; + if (!IsEnableAutoUpdate) + { + return (returnList, false); + } + + await Parallel.ForEachAsync(PluginCollection, Impl); + + return (returnList, returnList.Count > 0); + + async ValueTask Impl(PluginInfo pluginInfo, CancellationToken token) + { + if (!pluginInfo.IsUpdateSupported) + { + return; + } + + try + { + if (!await pluginInfo.RunCheckUpdateTask(token)) + { + return; + } + + if (pluginInfo is { IsUpdateAvailable: true, NextUpdateManifestInfo: not null }) + { + await pluginInfo.RunUpdateTask(token); + } + + if (pluginInfo.NextUpdateManifestInfo != null) + { + lock (returnList) + { + returnList.Add((pluginInfo.PluginKey, pluginInfo.NextUpdateManifestInfo)); + } + } + } + catch (Exception ex) + { + Logger.LogWriteLine($"An error has occurred while performing auto-update for plugin: {pluginInfo.Name}", LogType.Error, true); + await SentryHelper.ExceptionHandlerAsync(ex); + } + } + } + + private void OnPropertyChanged([CallerMemberName] string? propertyName = null) + { + InnerLauncherConfig + .m_mainPage? + .DispatcherQueue + .TryEnqueue(() => PropertyChanged? + .Invoke(this, new PropertyChangedEventArgs(propertyName))); + } +} diff --git a/CollapseLauncher/Classes/Plugins/PluginPresetConfigWrapper.cs b/CollapseLauncher/Classes/Plugins/PluginPresetConfigWrapper.cs new file mode 100644 index 000000000..1e9613848 --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/PluginPresetConfigWrapper.cs @@ -0,0 +1,405 @@ +using CollapseLauncher.Extension; +using CollapseLauncher.Helper.Metadata; +using Hi3Helper; +using Hi3Helper.Plugin.Core; +using Hi3Helper.Plugin.Core.Management; +using Hi3Helper.Plugin.Core.Management.Api; +using Hi3Helper.Plugin.Core.Management.PresetConfig; +using Hi3Helper.Plugin.Core.Utility; +using Hi3Helper.Shared.Region; +using Hi3Helper.Win32.ManagedTools; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Threading; +using System.Threading.Tasks; +using ILauncherApi = CollapseLauncher.Helper.LauncherApiLoader.ILauncherApi; + +#nullable enable +namespace CollapseLauncher.Plugins; + +public partial class PluginPresetConfigWrapper : PresetConfig, IDisposable +{ + public GameManagerExtension.RunGameFromGameManagerContext RunGameContext { get; } + public readonly PluginInfo PluginInfo; + public readonly IPlugin Plugin; + private readonly IPluginPresetConfig _config; + + private bool _isWriteGameLog = true; + + private unsafe PluginPresetConfigWrapper(PluginInfo pluginInfo, IPluginPresetConfig config) + { + PluginInfo = pluginInfo; + Plugin = pluginInfo.Instance ?? throw new NullReferenceException("IPlugin interface cannot be null!"); + _config = config; + + config.comGet_GameManager(out IGameManager? gameManager); + PluginGameManager = gameManager ?? throw new NullReferenceException("IGameManager interface cannot be null!"); + + RunGameContext = new GameManagerExtension.RunGameFromGameManagerContext + { + Plugin = pluginInfo.Instance, + PluginHandle = pluginInfo.Handle, + GameManager = gameManager, + PresetConfig = config, + PrintGameLogCallback = PrintGameLogCallback + }; + } + + public unsafe GameManagerExtension.RunGameFromGameManagerContext UseToggledGameLaunchContext() + { + bool isUseConsole = LauncherConfig.GetAppConfigValue("EnableConsole"); + RunGameContext.PrintGameLogCallback = isUseConsole ? PrintGameLogCallback : null!; + + _isWriteGameLog = LauncherConfig.GetAppConfigValue("IncludeGameLogs"); + return RunGameContext; + } + + public static PluginPresetConfigWrapper Create(PluginInfo pluginInfo, IPluginPresetConfig presetConfig) + => new(pluginInfo, presetConfig); + + public static bool TryCreate( + PluginInfo pluginInfo, + IPluginPresetConfig presetConfig, + [NotNullWhen(true)] out PluginPresetConfigWrapper? wrapper) + { + Unsafe.SkipInit(out wrapper); + ArgumentNullException.ThrowIfNull(presetConfig, nameof(presetConfig)); + + try + { + wrapper = Create(pluginInfo, presetConfig); + return true; + } + catch (Exception ex) + { + SharedStatic.InstanceLogger.LogError(ex, "Failed while trying to create IPluginPresetConfig wrapper"); + } + + return false; + } + + public override ILauncherApi? GameLauncherApi + { + get => field ??= new PluginLauncherApiWrapper(Plugin, this); + set; + } + + public override GameNameType GameType => GameNameType.Plugin; + public override LauncherType LauncherType => LauncherType.Plugin; + public override GameVendorType VendorType => GameVendorType.CollapsePlugin; + public string VendorTypeInString + { + get + { + _config.comGet_GameVendorName(out string result); + return result; + } + } + + public override string? InternalGameNameInConfig + { + get + { + if (field != null) + { + return field; + } + _config.comGet_GameRegistryKeyName(out field); + + return field; + } + init; + } + + public override string GameName + { + get + { + _config.comGet_GameName(out string result); + return result; + } + } + + public override string ProfileName + { + get + { + _config.comGet_ProfileName(out string result); + return result; + } + } + + public override string ZoneDescription + { + get + { + _config.comGet_ZoneDescription(out string result); + return result; + } + } + + public override string ZoneName + { + get + { + _config.comGet_ZoneName(out string result); + return result; + } + } + + public override string ZoneFullname + { + get + { + _config.comGet_ZoneFullName(out string result); + return result; + } + } + + public override string ZoneLogoURL + { + get + { + _config.comGet_ZoneLogoUrl(out string result); + return result; + } + } + + public override string ZonePosterURL + { + get + { + _config.comGet_ZonePosterUrl(out string result); + return result; + } + } + + public override string ZoneURL + { + get + { + _config.comGet_ZoneHomePageUrl(out string result); + return result; + } + } + + public override string GameExecutableName + { + get + { + _config.comGet_GameExecutableName(out string result); + return result; + } + } + + public override string GameDirectoryName + { + get + { + _config.comGet_LauncherGameDirectoryName(out string result); + return result; + } + } + + public string? GameLogFileName + { + get + { + if (field != null) + { + return field; + } + _config.comGet_GameLogFileName(out field); + return field; + } + } + + public string? GameAppDataPath + { + get + { + if (field != null) + { + return field; + } + _config.comGet_GameAppDataPath(out field); + return field; + } + } + + [field: AllowNull, MaybeNull] + public override List GameSupportedLanguages + { + get + { + if (field != null) + { + return field; + } + + _config.comGet_GameSupportedLanguagesCount(out int count); + field = []; + for (int i = 0; i < count; i++) + { + _config.comGet_GameSupportedLanguages(i, out string result); + field.Add(result); + } + + return field; + } + init; + } + + public override GameChannel GameChannel + { + get + { + _config.comGet_ReleaseChannel(out GameReleaseChannel result); + return result switch + { + GameReleaseChannel.OpenBeta => GameChannel.Beta, + GameReleaseChannel.ClosedBeta => GameChannel.DevRelease, + _ => GameChannel.Stable + }; + } + } + + public override string DefaultLanguage + { + get + { + _config.comGet_GameMainLanguage(out string result); + return result; + } + } + + private int? _hashID; + public override int HashID { get => _hashID ??= HashCode.Combine(GameName, ZoneName); set => _hashID = value; } + + + [field: AllowNull, MaybeNull] + public ILauncherApiMedia PluginMediaApi + { + get + { + if (field != null) + { + return field; + } + + _config.comGet_LauncherApiMedia(out field); + return field ?? throw new NullReferenceException("ILauncherApiMedia interface cannot be null!"); + } + } + + [field: AllowNull, MaybeNull] + public ILauncherApiNews PluginNewsApi + { + get + { + if (field != null) + { + return field; + } + + _config.comGet_LauncherApiNews(out field); + return field ?? throw new NullReferenceException("ILauncherApiNews interface cannot be null!"); + } + } + + [field: AllowNull, MaybeNull] + public IGameManager PluginGameManager + { + get + { + if (field != null) + { + return field; + } + + _config.comGet_GameManager(out field); + return field ?? throw new NullReferenceException("IGameManager interface cannot be null!"); + } + } + + [field: AllowNull, MaybeNull] + public IGameInstaller PluginGameInstaller + { + get + { + if (field != null) + { + return field; + } + + _config.comGet_GameInstaller(out field); + return field ?? throw new NullReferenceException("IGameInstaller interface cannot be null!"); + } + } + + [field: AllowNull, MaybeNull] + private string PrintGameLogName + { + get + { + if (field != null) + { + return field; + } + + return field = $"{GameName} - {ZoneName}"; + } + } + + public async Task InitializeAsync(CancellationToken token = default) + { + _config.InitAsync(Plugin.RegisterCancelToken(token), out nint asyncResult); + int returnCode = await asyncResult.AsTask(); + if (returnCode != 0) + { + throw new InvalidOperationException($"Failed to initialize IPluginPresetConfig with return code: {returnCode}"); + } + } + + private unsafe void PrintGameLogCallback(char* logString, int logStringLen, int isStringCanFree) + { + Logger.LogWrite(new ReadOnlySpan(logString, logStringLen), + LogType.Game, + appendNewLine: true, + writeToLog: _isWriteGameLog, + writeTypeTag: true, + writeTimestampOnLogFile: true); + + if (isStringCanFree == 1) + { + Marshal.FreeCoTaskMem((nint)logString); + } + } + + public void Dispose() + { + _config.Free(); + + ReleaseComObject(PluginNewsApi); + ReleaseComObject(PluginMediaApi); + ReleaseComObject(PluginGameManager); + ReleaseComObject(PluginGameInstaller); + ReleaseComObject(_config); + + GC.SuppressFinalize(this); + return; + + static void ReleaseComObject(T obj) + where T : class + { + if (!ComMarshal.TryReleaseComObject(obj, out Exception? ex)) + { + Logger.LogWriteLine($"[PluginPresetConfigWrapper::Dispose] Cannot release COM Instance of {typeof(T).Name}\r\n{ex}", LogType.Error, true); + } + } + } +} diff --git a/CollapseLauncher/Classes/Plugins/UnknownPluginException.cs b/CollapseLauncher/Classes/Plugins/UnknownPluginException.cs new file mode 100644 index 000000000..8fd8b9ec3 --- /dev/null +++ b/CollapseLauncher/Classes/Plugins/UnknownPluginException.cs @@ -0,0 +1,14 @@ +using System; + +#nullable enable +namespace CollapseLauncher.Plugins +{ + internal class UnknownPluginException(string? message = null, Exception? innerException = null) + : Exception(message, innerException); + + internal static class UnknownPluginExceptionExtension + { + internal static UnknownPluginException WrapPluginException(this Exception? exception, string? message = null) + => new UnknownPluginException(message, exception); + } +} diff --git a/CollapseLauncher/Classes/Properties/ArgumentParser.cs b/CollapseLauncher/Classes/Properties/ArgumentParser.cs index 294ce044c..e0a1424a2 100644 --- a/CollapseLauncher/Classes/Properties/ArgumentParser.cs +++ b/CollapseLauncher/Classes/Properties/ArgumentParser.cs @@ -145,6 +145,7 @@ private static void AddUpdaterOptions(Command command) { var oInput = new Option("--input-path") { + Aliases = { "--input", "-i" }, Description = "Output path for the output file", Required = true }; diff --git a/CollapseLauncher/Classes/Properties/InnerLauncherConfig.cs b/CollapseLauncher/Classes/Properties/InnerLauncherConfig.cs index 0ea86c42b..7402dd0bb 100644 --- a/CollapseLauncher/Classes/Properties/InnerLauncherConfig.cs +++ b/CollapseLauncher/Classes/Properties/InnerLauncherConfig.cs @@ -128,7 +128,7 @@ public static List BuildGameRegionListUI(string? gameCategory GetGameTitleRegionTranslationTextBlock(ref gameRegionTextBlock, Locale.Lang._GameClientRegions); panel.AddElementToStackPanel(gameRegionTranslatedTextBlock); - if (config != null && config.Channel != GameChannel.Stable) + if (config != null && config.GameChannel != GameChannel.Stable) { Grid expTag = UIElementExtensions.CreateGrid() .WithPadding(4d, 0d) @@ -144,7 +144,7 @@ public static List BuildGameRegionListUI(string? gameCategory expTag.AddElementToGridRow(new TextBlock { - Text = GetGameChannelLabel(config.Channel), + Text = GetGameChannelLabel(config.GameChannel), HorizontalAlignment = HorizontalAlignment.Center, VerticalAlignment = VerticalAlignment.Center, FontSize = 10, diff --git a/CollapseLauncher/Classes/RegionManagement/FallbackCDNUtil.cs b/CollapseLauncher/Classes/RegionManagement/FallbackCDNUtil.cs index d197179ff..df293ea6b 100644 --- a/CollapseLauncher/Classes/RegionManagement/FallbackCDNUtil.cs +++ b/CollapseLauncher/Classes/RegionManagement/FallbackCDNUtil.cs @@ -15,36 +15,27 @@ using System.Net; using System.Net.Http; using System.Net.Http.Json; +using System.Text; using System.Text.Json.Serialization.Metadata; using System.Threading; using System.Threading.Tasks; +using Velopack.Sources; using static Hi3Helper.Logger; using static Hi3Helper.Shared.Region.LauncherConfig; -#if !USEVELOPACK -using System.Text; -using Squirrel.Sources; -#else -using System.Text; -using Velopack.Sources; // ReSharper disable InconsistentNaming // ReSharper disable IdentifierTypo -#endif +#nullable enable namespace CollapseLauncher { public class UpdateManagerHttpAdapter : IFileDownloader { -#if !USEVELOPACK - public async Task DownloadFile(string url, string targetFile, Action progress, string authorization = null, string accept = null) -#else -#nullable enable private async Task DownloadFileInner(string url, string targetFile, Action progress, string? authorization = null, CancellationToken cancelToken = default) -#endif { // Initialize new proxy-aware HttpClient HttpClientBuilder builder = new HttpClientBuilder() @@ -64,13 +55,11 @@ private async Task DownloadFileInner(string url, { FallbackCDNUtil.DownloadProgress += progressEvent; string relativePath = GetRelativePathOnly(url); - await FallbackCDNUtil.DownloadCDNFallbackContent(downloadClient, targetFile, AppCurrentDownloadThread, + await FallbackCDNUtil.DownloadCDNFallbackContent(downloadClient, + targetFile, + AppCurrentDownloadThread, relativePath, - #if !USEVELOPACK - default - #else cancelToken - #endif ); } catch (Exception ex) @@ -84,27 +73,19 @@ await FallbackCDNUtil.DownloadCDNFallbackContent(downloadClient, targetFile, App } } -#if !USEVELOPACK - public async Task DownloadBytes(string url, string authorization = null, string accept = null) -#else public async Task DownloadBytesInner(string url, string? authorization = null, string? accept = null, double timeout = 30.0) -#endif { string relativePath = GetRelativePathOnly(url); - await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(relativePath, CancellationToken.None, true); + await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(relativePath, true, CancellationToken.None); byte[] buffer = new byte[stream.Length]; await stream.ReadExactlyAsync(buffer); return buffer; } -#if !USEVELOPACK - public async Task DownloadString(string url, string authorization = null, string accept = null) -#else public async Task DownloadStringInner(string url, string? authorization = null, string? accept = null, double timeout = 30.0) -#endif { string relativePath = GetRelativePathOnly(url); - await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(relativePath, CancellationToken.None, true); + await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(relativePath, true, CancellationToken.None); byte[] buffer = new byte[stream.Length]; await stream.ReadExactlyAsync(buffer); return Encoding.UTF8.GetString(buffer); @@ -132,7 +113,6 @@ private string GetRelativePathOnly(string url) return url; } - #if USEVELOPACK public async Task DownloadFile(string url, string targetFile, Action progress, @@ -155,21 +135,15 @@ public async Task DownloadString(string url, headers?.TryGetValueIgnoreCase("Authorization"), null, timeout); - -#endif } -#if USEVELOPACK -#nullable restore -#endif - internal readonly struct CDNUtilHTTPStatus { - internal readonly HttpStatusCode StatusCode; - internal readonly bool IsSuccessStatusCode; - internal readonly bool IsInitializationError; - internal readonly Uri AbsoluteURL; - internal readonly HttpResponseMessage Message; + internal readonly HttpStatusCode StatusCode; + internal readonly bool IsSuccessStatusCode; + internal readonly bool IsInitializationError; + internal readonly Uri? AbsoluteURL; + internal readonly HttpResponseMessage? Message; internal CDNUtilHTTPStatus(HttpResponseMessage message) : this(false) { Message = message; @@ -204,29 +178,36 @@ internal static class FallbackCDNUtil private static HttpClient _clientNoCompression; + // ReSharper disable once NotNullOrRequiredMemberIsNotInitialized + #pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable. static FallbackCDNUtil() { InitializeHttpClient(); } + #pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable. + // ReSharper disable ConditionIsAlwaysTrueOrFalseAccordingToNullableAPIContract + // ReSharper disable ConditionalAccessQualifierIsNonNullableAccordingToAPIContract public static void InitializeHttpClient() { _client?.Dispose(); _clientNoCompression?.Dispose(); _client = new HttpClientBuilder() - .UseLauncherConfig() - .Create(); + .UseLauncherConfig() + .Create(); _clientNoCompression = new HttpClientBuilder() - .UseLauncherConfig() - .SetAllowedDecompression(DecompressionMethods.None) - .Create(); + .UseLauncherConfig() + .SetAllowedDecompression(DecompressionMethods.None) + .Create(); LogWriteLine("[FallbackCDNUtil::ReinitializeHttpClient()] HttpClient under FallbackCDNUtil has been successfully initialized", LogType.Default, true); } + // ReSharper enable ConditionalAccessQualifierIsNonNullableAccordingToAPIContract + // ReSharper enable ConditionIsAlwaysTrueOrFalseAccordingToNullableAPIContract - public static event EventHandler DownloadProgress; + public static event EventHandler? DownloadProgress; public static async Task DownloadCDNFallbackContent(DownloadClient downloadClient, string outputPath, int parallelThread, string relativeURL, CancellationToken token) { @@ -251,7 +232,7 @@ public static async Task DownloadCDNFallbackContent(DownloadClient downloadClien } // If successful, then return - var i = CDNList.IndexOf(fallbackCDN); + int i = CDNList.IndexOf(fallbackCDN); SetAndSaveConfigValue("CurrentCDN", i); return; } @@ -259,7 +240,7 @@ public static async Task DownloadCDNFallbackContent(DownloadClient downloadClien // If all of them failed, then throw an exception if (!isSuccess) { - var ex = new AggregateException($"All available CDNs aren't reachable for your network while getting content: {relativeURL}. Please check your internet!"); + AggregateException ex = new($"All available CDNs aren't reachable for your network while getting content: {relativeURL}. Please check your internet!"); await SentryHelper.ExceptionHandlerAsync(ex, SentryHelper.ExceptionType.UnhandledOther); throw ex; } @@ -291,7 +272,7 @@ public static async Task DownloadCDNFallbackContent(DownloadClient downloadClien } // If successful, then return - var i = CDNList.IndexOf(fallbackCDN); + int i = CDNList.IndexOf(fallbackCDN); SetAndSaveConfigValue("CurrentCDN", i); return; } @@ -303,11 +284,11 @@ public static async Task DownloadCDNFallbackContent(DownloadClient downloadClien } } - public static async Task TryGetCDNFallbackStream(string relativeURL, CancellationToken token = default, bool isForceUncompressRequest = false) + public static async Task TryGetCDNFallbackStream(string relativeURL, bool isForceUncompressRequest = false, CancellationToken token = default) { // Get the preferred CDN first and try to get the content CDNURLProperty preferredCDN = GetPreferredCDN(); - Stream contentStream = await TryGetCDNContent(preferredCDN, relativeURL, token, isForceUncompressRequest); + Stream? contentStream = await TryGetCDNContent(preferredCDN, relativeURL, isForceUncompressRequest, token); // If successful, then return if (contentStream != null) return contentStream; @@ -319,7 +300,7 @@ public static async Task TryGetCDNFallbackStream(string relativeURL, Can foreach (CDNURLProperty fallbackCDN in CDNList.Where(x => !x.Equals(preferredCDN))) { // Reassign and try to get the CDN stream - contentStream = await TryGetCDNContent(fallbackCDN, relativeURL, token, isForceUncompressRequest); + contentStream = await TryGetCDNContent(fallbackCDN, relativeURL, isForceUncompressRequest, token); // If the stream returns a null, then continue if (contentStream == null) continue; @@ -342,18 +323,20 @@ private static void PerformStreamCheckAndSeek(Stream outputStream) outputStream.Position = 0; } - private static async Task TryGetCDNContent(CDNURLProperty cdnProp, string relativeURL, CancellationToken token, bool isForceUncompressRequest) + private static async Task TryGetCDNContent(CDNURLProperty cdnProp, string relativeURL, bool isForceUncompressRequest, CancellationToken token) { try { - // Get the URL Status then return boolean and URLStatus - CDNUtilHTTPStatus urlStatus = await TryGetURLStatus(cdnProp, relativeURL, token, isForceUncompressRequest); + HttpClient clientToUse = isForceUncompressRequest + ? _clientNoCompression + : _client; - // If URL status is false, then return null - if (urlStatus.IsInitializationError || !urlStatus.IsSuccessStatusCode) return null; + CDNCacheResult result = await clientToUse + .TryGetCachedStreamFrom(cdnProp.URLPrefix.CombineURLFromString(relativeURL), + HttpMethod.Get, + token); - // Continue to get the content and return the stream if successful - return await GetHttpStreamFromResponse(urlStatus.Message, token); + return result.Stream; } // Handle the error and log it. If fails, then log it and return false catch (Exception ex) @@ -415,7 +398,6 @@ private static async ValueTask TryGetCDNContent(CDNURLProperty cdnProp, Do try { - SentryHelper.AppCdnOption = cdnProp.URLPrefix; // Get the URL Status then return boolean and URLStatus (bool, string) urlStatus = await TryGetURLStatus(cdnProp, downloadClient, relativeURL, token); @@ -492,9 +474,9 @@ private static async ValueTask TryGetURLStatus(CDNURLProperty LogWriteLine($"Getting CDN Content from: {cdnProp.Name} at URL: {absoluteURL}", LogType.Default, true); // Try check the status of the URL - using var timeoutCts = new CancellationTokenSource(5000); - using var linkedCts = CancellationTokenSource.CreateLinkedTokenSource(token, timeoutCts.Token); - var httpResponse = await GetURLHttpResponse(absoluteURL, linkedCts.Token, isUncompressRequest, 1); + using CancellationTokenSource timeoutCts = new CancellationTokenSource(5000); + using CancellationTokenSource linkedCts = CancellationTokenSource.CreateLinkedTokenSource(token, timeoutCts.Token); + HttpResponseMessage httpResponse = await GetURLHttpResponse(absoluteURL, linkedCts.Token, isUncompressRequest, 1); // If it's not a successful code, log the information if (!httpResponse.IsSuccessStatusCode) @@ -514,7 +496,7 @@ private static async ValueTask TryGetURLStatus(CDNURLProperty public static CDNURLProperty GetPreferredCDN() { // Get the CurrentCDN index - var cdnIndex = GetAppConfigValue("CurrentCDN").ToInt(); + int cdnIndex = GetAppConfigValue("CurrentCDN").ToInt(); // Fallback to the first CDN if index < 0 or > length of the list if (cdnIndex >= 0 && cdnIndex <= CDNList.Count - 1) @@ -601,11 +583,16 @@ public static async Task GetURLHttpResponse(this HttpClient return new HttpResponseMessage(HttpStatusCode.InternalServerError); } - public static async Task DownloadAsJSONType(string? URL, JsonTypeInfo typeInfo, CancellationToken token) - => await _client.GetFromJsonAsync(URL, typeInfo, token); + public static async Task DownloadAsJSONType(string? url, + JsonTypeInfo typeInfo, + CancellationToken token) + where T : class + { + return await _client.GetFromCachedJsonAsync(url, typeInfo, null, token); + } - public static async ValueTask GetURLStatusCode(string URL, CancellationToken token) - => await _client.GetURLStatusCode(URL, token); + public static async ValueTask GetURLStatusCode(string url, CancellationToken token) + => await _client.GetURLStatusCode(url, token); public static async ValueTask GetURLStatusCode(this HttpClient client, string url, CancellationToken token = default) { @@ -616,7 +603,7 @@ public static async ValueTask GetURLStatusCode(this HttpClient client public static async Task GetHttpStreamFromResponse(string URL, CancellationToken token) { - var responseMsg = await GetURLHttpResponse(URL, token); + HttpResponseMessage responseMsg = await GetURLHttpResponse(URL, token); return await GetHttpStreamFromResponse(responseMsg, token); } diff --git a/CollapseLauncher/Classes/RegionManagement/RegionManagement.cs b/CollapseLauncher/Classes/RegionManagement/RegionManagement.cs index 05cd466d9..81be05c20 100644 --- a/CollapseLauncher/Classes/RegionManagement/RegionManagement.cs +++ b/CollapseLauncher/Classes/RegionManagement/RegionManagement.cs @@ -7,6 +7,7 @@ using CollapseLauncher.Pages; using CollapseLauncher.Statics; using Hi3Helper; +using Hi3Helper.Plugin.Core.Management; using Hi3Helper.SentryHelper; using Hi3Helper.Shared.ClassStruct; using Microsoft.UI.Xaml; @@ -117,7 +118,7 @@ async Task AfterLoadRoutine(CancellationToken token) } LogWriteLine($"Game: {regionToChangeName} has been completely initialized!", LogType.Scheme, true); - await FinalizeLoadRegion(gameName, gameRegion); + await FinalizeLoadRegion(gameName, gameRegion, token); _ = ChangeBackgroundImageAsRegionAsync(); IsLoadRegionComplete = true; @@ -184,14 +185,21 @@ public void ClearMainPageState() }); } - private async Task DownloadBackgroundImage(CancellationToken Token) + private async Task DownloadBackgroundImage(CancellationToken token) { + var currentProperty = GamePropertyVault.GetCurrentGameProperty(); // Get and set the current path of the image string backgroundFolder = Path.Combine(AppGameImgFolder, "bg"); string backgroundFileName = Path.GetFileName(LauncherMetadataHelper.CurrentMetadataConfig.GameLauncherApi.GameBackgroundImg); - LauncherMetadataHelper.CurrentMetadataConfig.GameLauncherApi.GameBackgroundImgLocal = Path.Combine(backgroundFolder, backgroundFileName); + LauncherMetadataHelper.CurrentMetadataConfig.GameLauncherApi.GameBackgroundImgLocal = Path.Combine(backgroundFolder, backgroundFileName); SetAndSaveConfigValue("CurrentBackground", LauncherMetadataHelper.CurrentMetadataConfig.GameLauncherApi.GameBackgroundImgLocal); + await DownloadNonPluginBackgroundImage(backgroundFolder, currentProperty, token); + } + private async Task DownloadNonPluginBackgroundImage(string backgroundFolder, + GamePresetProperty currentProperty, + CancellationToken token) + { // Check if the background folder exist if (!Directory.Exists(backgroundFolder)) Directory.CreateDirectory(backgroundFolder); @@ -201,22 +209,21 @@ private async Task DownloadBackgroundImage(CancellationToken Token) // Start downloading the background image var isDownloaded = await ImageLoaderHelper.IsFileCompletelyDownloadedAsync(imgFileInfo, true); - if (isDownloaded) { - BackgroundImgChanger.ChangeBackground(imgFileInfo.FullName, () => - { - IsFirstStartup = false; - ColorPaletteUtility.ReloadPageTheme(this, CurrentAppTheme); - }, false, false, true); + BackgroundImgChanger.ChangeBackground(imgFileInfo.FullName, + () => IsFirstStartup = false, + false, + false, + true); return; } - + #nullable enable string? tempImage = null; var lastBgCfg = "lastBg-" + LauncherMetadataHelper.CurrentMetadataConfig.GameLauncherApi.GameName + - "-" + LauncherMetadataHelper.CurrentMetadataConfig.GameLauncherApi.GameRegion; - + "-" + LauncherMetadataHelper.CurrentMetadataConfig.GameLauncherApi.GameRegion; + // Check if the last background image exist, then use that temporarily instead var lastGameBackground = GetAppConfigValue(lastBgCfg).ToString(); if (!string.IsNullOrEmpty(lastGameBackground)) @@ -226,38 +233,39 @@ private async Task DownloadBackgroundImage(CancellationToken Token) tempImage = lastGameBackground; } } - + // If the file is not downloaded, use template image first, then download the image - GameNameType? currentGameType = GamePropertyVault.GetCurrentGameProperty().GameVersion?.GameType; + GameNameType? currentGameType = currentProperty.GameVersion?.GameType; tempImage ??= currentGameType switch - { - GameNameType.Honkai => Path.Combine(AppExecutableDir, @"Assets\Images\GameBackground\honkai.webp"), - GameNameType.Genshin => Path.Combine(AppExecutableDir, @"Assets\Images\GameBackground\genshin.webp"), - GameNameType.StarRail => Path.Combine(AppExecutableDir, @"Assets\Images\GameBackground\starrail.webp"), - GameNameType.Zenless => Path.Combine(AppExecutableDir, @"Assets\Images\GameBackground\zzz.webp"), - _ => BackgroundMediaUtility.GetDefaultRegionBackgroundPath() - }; - BackgroundImgChanger.ChangeBackground(tempImage, () => - { - IsFirstStartup = false; - ColorPaletteUtility.ReloadPageTheme(this, CurrentAppTheme); - }, false, false, true); + { + GameNameType.Honkai => Path.Combine(AppExecutableDir, @"Assets\Images\GameBackground\honkai.webp"), + GameNameType.Genshin => Path.Combine(AppExecutableDir, @"Assets\Images\GameBackground\genshin.webp"), + GameNameType.StarRail => Path.Combine(AppExecutableDir, @"Assets\Images\GameBackground\starrail.webp"), + GameNameType.Zenless => Path.Combine(AppExecutableDir, @"Assets\Images\GameBackground\zzz.webp"), + _ => BackgroundMediaUtility.GetDefaultRegionBackgroundPath() + }; + BackgroundImgChanger.ChangeBackground(tempImage, + () => IsFirstStartup = false, + false, + false, + true); if (await ImageLoaderHelper.TryDownloadToCompletenessAsync(LauncherMetadataHelper.CurrentMetadataConfig.GameLauncherApi.GameBackgroundImg, LauncherMetadataHelper.CurrentMetadataConfig.GameLauncherApi.ApiResourceHttpClient, imgFileInfo, - Token)) + false, + token)) { - BackgroundImgChanger.ChangeBackground(imgFileInfo.FullName, () => - { - IsFirstStartup = false; - ColorPaletteUtility.ReloadPageTheme(this, CurrentAppTheme); - }, false, true, true); + BackgroundImgChanger.ChangeBackground(imgFileInfo.FullName, + () => IsFirstStartup = false, + false, + true, + true); SetAndSaveConfigValue(lastBgCfg, imgFileInfo.FullName); } - #nullable disable + #nullable restore } - private async Task FinalizeLoadRegion(string gameName, string gameRegion) + private async Task FinalizeLoadRegion(string gameName, string gameRegion, CancellationToken token) { PresetConfig preset = LauncherMetadataHelper.LauncherMetadataConfig[gameName][gameRegion]; @@ -265,21 +273,24 @@ private async Task FinalizeLoadRegion(string gameName, string gameRegion) LogWriteLine($"Initializing Region {preset.ZoneFullname} Done!", LogType.Scheme, true); // Initializing Game Statics - await LoadGameStaticsByGameType(preset, gameName, gameRegion); + await LoadGameStaticsByGameType(preset, gameName, gameRegion, token); CurrentGameProperty = GamePropertyVault.GetCurrentGameProperty(); // Init NavigationPanel Items - await Task.Run(() => InitializeNavigationItems()); + await Task.Run(() => InitializeNavigationItems(), token); } - private async Task LoadGameStaticsByGameType(PresetConfig preset, string gameName, string gameRegion) + private async Task LoadGameStaticsByGameType(PresetConfig preset, string gameName, string gameRegion, CancellationToken token) { // Attach notification for the current game and dispose statics await GamePropertyVault.AttachNotificationForCurrentGame(); - await Task.Run(DisposeAllPageStatics); + await Task.Run(DisposeAllPageStatics, token); // Load region property (and potentially, cached one) - await GamePropertyVault.LoadGameProperty(this, preset.GameLauncherApi.LauncherGameResource, gameName, gameRegion); + GamePropertyVault.LoadGameProperty(this, + preset.GameType == GameNameType.Plugin ? null : preset.GameLauncherApi.LauncherGameResource, + gameName, + gameRegion); // Spawn Region Notification _ = SpawnRegionNotification(preset.ProfileName); @@ -311,11 +322,11 @@ private async Task SpawnRegionNotification(string RegionProfileName) if (NotificationData.RegionPush == null) return; - var regionPushCopy = new List(NotificationData.RegionPush); + List regionPushCopy = new List(NotificationData.RegionPush); - foreach (var Entry in regionPushCopy) + foreach (NotificationProp Entry in regionPushCopy) { - var toEntry = new NotificationInvokerProp + NotificationInvokerProp toEntry = new NotificationInvokerProp { CloseAction = null, IsAppNotif = false, @@ -328,13 +339,13 @@ private async Task SpawnRegionNotification(string RegionProfileName) toEntry.OtherContent = Entry.ActionProperty.GetFrameworkElement(); } - GameVersion? ValidForVerBelow = Entry.ValidForVerBelow != null ? new GameVersion(Entry.ValidForVerBelow) : null; - GameVersion? ValidForVerAbove = Entry.ValidForVerAbove != null ? new GameVersion(Entry.ValidForVerAbove) : null; + GameVersion? ValidForVerBelow = Entry.ValidForVerBelow; + GameVersion? ValidForVerAbove = Entry.ValidForVerAbove; if (Entry.RegionProfile == RegionProfileName && IsNotificationTimestampValid(Entry) && (Entry.ValidForVerBelow == null - || (LauncherUpdateHelper.LauncherCurrentVersion.Compare(ValidForVerBelow) - && ValidForVerAbove.Compare(LauncherUpdateHelper.LauncherCurrentVersion)) - || LauncherUpdateHelper.LauncherCurrentVersion.Compare(ValidForVerBelow))) + || (LauncherUpdateHelper.LauncherCurrentVersion < ValidForVerBelow + && ValidForVerAbove < LauncherUpdateHelper.LauncherCurrentVersion) + || LauncherUpdateHelper.LauncherCurrentVersion < ValidForVerBelow)) { NotificationSender.SendNotification(toEntry); } diff --git a/CollapseLauncher/Classes/RepairManagement/Genshin/Fetch.cs b/CollapseLauncher/Classes/RepairManagement/Genshin/Fetch.cs index 4480af866..8c0fca791 100644 --- a/CollapseLauncher/Classes/RepairManagement/Genshin/Fetch.cs +++ b/CollapseLauncher/Classes/RepairManagement/Genshin/Fetch.cs @@ -6,6 +6,7 @@ using CollapseLauncher.Interfaces; using Hi3Helper; using Hi3Helper.EncTool; +using Hi3Helper.EncTool.Hashes; using Hi3Helper.EncTool.Parser.AssetIndex; using Hi3Helper.EncTool.Parser.YSDispatchHelper; using Hi3Helper.Http; @@ -106,15 +107,15 @@ private async Task> Fetch(List private void EliminatePluginAssetIndex(List assetIndex) { - GameVersionManager.GameApiProp.data!.plugins?.ForEach(plugin => + GameVersionManager.GameApiProp?.data!.plugins?.ForEach(plugin => { if (plugin.package?.validate == null) return; assetIndex.RemoveAll(asset => { - var r = plugin.package.validate.Any(validate => validate.path != null && - (asset.localName.Contains(validate.path) || - asset.remoteName.Contains(validate.path))); + bool r = plugin.package.validate.Any(validate => validate.path != null && + (asset.localName?.Contains(validate.path) ?? + asset.remoteName.Contains(validate.path))); if (r) { LogWriteLine($"[EliminatePluginAssetIndex] Removed: {asset.localName}", LogType.Warning, @@ -274,8 +275,8 @@ private async Task SavePersistentRevision(QueryProperty dispatchQuery, Cancellat if (fileInfo.Exists) { await using FileStream resVersionStream = fileInfo.OpenRead(); - byte[] hashBytes = Hash.GetCryptoHash(resVersionStream, token: token); - string hash = Convert.ToHexStringLower(hashBytes); + byte[] hashBytes = await CryptoHashUtility.ThreadSafe.GetHashFromStreamAsync(resVersionStream, token: token); + string hash = Convert.ToHexStringLower(hashBytes); // Get base_res_version_hash content await File.WriteAllTextAsync(persistentPath + "\\base_res_version_hash", hash, token); @@ -331,7 +332,7 @@ private async Task GetDispatcherQuery(HttpClient client, Cancella LogWriteLine(dFormat); #endif // Write the decrypted query response in the log (for diagnostic) - WriteLog(dFormat); + await LogFileWriter.WriteLineAsync(dFormat); // Try decrypt the dispatcher, parse it and return it return await TryDecryptAndParseDispatcher(dispatchInfo, dispatchHelper); @@ -348,7 +349,7 @@ private async Task TryDecryptAndParseDispatcher(DispatchInfo disp #if DEBUG LogWriteLine(dFormat); #endif - WriteLog(dFormat); + await LogFileWriter.WriteLineAsync(dFormat); // Parse the dispatcher data in protobuf format and return it as QueryProperty await dispatchHelper.LoadDispatch(decryptedData); diff --git a/CollapseLauncher/Classes/RepairManagement/Honkai/Check.cs b/CollapseLauncher/Classes/RepairManagement/Honkai/Check.cs index 30b3ce1e5..2c56f99c5 100644 --- a/CollapseLauncher/Classes/RepairManagement/Honkai/Check.cs +++ b/CollapseLauncher/Classes/RepairManagement/Honkai/Check.cs @@ -785,11 +785,11 @@ private void GetUnusedAssetIndexList(HashSet catalog, List GetCryptoHashAsync( - Stream stream, - byte[]? hmacKey = null, - bool updateProgress = true, - bool updateTotalProgress = true, - CancellationToken token = default) + Stream stream, + byte[]? hmacKey = null, + bool updateProgress = true, + bool updateTotalProgress = true, + CancellationToken token = default) { // If the game version is >= 8.2.0 and the T is MD5, switch to MhyMurmurHash2 implementation. if (!_isGame820PostVersion || typeof(T) != typeof(MD5)) @@ -801,17 +801,37 @@ protected override ConfiguredTaskAwaitable GetCryptoHashAsync( token); } + // Use Murmur implementation for latest version. + return GetCryptoHashAsyncMurmur(stream, updateProgress, updateTotalProgress, token) + .ConfigureAwait(false); + } + + private async Task GetCryptoHashAsyncMurmur( + Stream stream, + bool updateProgress = true, + bool updateTotalProgress = true, + CancellationToken token = default) + { // Create the Hasher provider by explicitly specify the length of the stream. MhyMurmurHash264B murmurHashProvider = MhyMurmurHash264B.CreateForStream(stream, 0, stream.Length); - // Pass the provider and return the task - return Hash.GetHashAsync(stream, - murmurHashProvider, - read => UpdateHashReadProgress(read, updateProgress, updateTotalProgress), - stream is { Length: > 1024 << 20 }, - token); + byte[] buffer = ArrayPool.Shared.Rent(512 << 10); + try + { + int read; + while ((read = await stream.ReadAtLeastAsync(buffer, buffer.Length, false, token) + .ConfigureAwait(false)) > 0) + { + UpdateHashReadProgress(read, updateProgress, updateTotalProgress); + murmurHashProvider.Append(buffer[..read]); + } - // Otherwise, fallback to the default implementation. + return murmurHashProvider.GetHashAndReset(); + } + finally + { + ArrayPool.Shared.Return(buffer); + } } #endregion } diff --git a/CollapseLauncher/Classes/RepairManagement/Honkai/Fetch.cs b/CollapseLauncher/Classes/RepairManagement/Honkai/Fetch.cs index efc061cba..5dda9ef7c 100644 --- a/CollapseLauncher/Classes/RepairManagement/Honkai/Fetch.cs +++ b/CollapseLauncher/Classes/RepairManagement/Honkai/Fetch.cs @@ -570,7 +570,7 @@ private async Task ThrowIfFileIsNotSenadina(Stream stream, CancellationToken tok private void EliminatePluginAssetIndex(List assetIndex) { - GameVersionManager.GameApiProp.data!.plugins?.ForEach(plugin => + GameVersionManager.GameApiProp?.data!.plugins?.ForEach(plugin => { if (plugin.package?.validate == null) return; assetIndex.RemoveAll(asset => @@ -932,7 +932,7 @@ private async Task> FetchMetadata(CancellationToken t string urlMetadata = string.Format(AppGameRepoIndexURLPrefix, GameVersionManager!.GamePreset.ProfileName); // Start downloading metadata using FallbackCDNUtil - await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(urlMetadata, token); + await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(urlMetadata, token: token); return await stream.DeserializeAsync(CoreLibraryJsonContext.Default.DictionaryStringString, token: token) ?? []; } @@ -942,7 +942,7 @@ private async Task FetchAssetIndex(List assetIndex, Cancel string urlIndex = string.Format(AppGameRepairIndexURLPrefix, GameVersionManager!.GamePreset.ProfileName, GameVersion.VersionString) + ".binv2"; // Start downloading asset index using FallbackCDNUtil - await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(urlIndex, token); + await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(urlIndex, token: token); // Deserialize asset index and return DeserializeAssetIndexV2(stream, assetIndex); diff --git a/CollapseLauncher/Classes/RepairManagement/StarRail/Fetch.cs b/CollapseLauncher/Classes/RepairManagement/StarRail/Fetch.cs index 9639d50ba..548de0c6b 100644 --- a/CollapseLauncher/Classes/RepairManagement/StarRail/Fetch.cs +++ b/CollapseLauncher/Classes/RepairManagement/StarRail/Fetch.cs @@ -147,7 +147,7 @@ await Task.WhenAll( private void EliminatePluginAssetIndex(List assetIndex) { - GameVersionManager.GameApiProp.data!.plugins?.ForEach(plugin => + GameVersionManager.GameApiProp?.data!.plugins?.ForEach(plugin => { if (plugin.package?.validate == null) return; assetIndex.RemoveAll(asset => @@ -192,7 +192,7 @@ private async Task GetPrimaryManifest(List assetIndex, Can string urlIndex = string.Format(LauncherConfig.AppGameRepairIndexURLPrefix, GameVersionManager.GamePreset.ProfileName, GameVersion.VersionString) + ".binv2"; // Start downloading asset index using FallbackCDNUtil and return its stream - await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(urlIndex, token); + await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(urlIndex, token: token); if (stream != null) { // Deserialize asset index and set it to list @@ -214,7 +214,7 @@ private async Task> FetchMetadata(CancellationToken t string urlMetadata = string.Format(LauncherConfig.AppGameRepoIndexURLPrefix, GameVersionManager.GamePreset.ProfileName); // Start downloading metadata using FallbackCDNUtil - await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(urlMetadata, token); + await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(urlMetadata, token: token); return await stream.DeserializeAsync(CoreLibraryJsonContext.Default.DictionaryStringString, token: token); } diff --git a/CollapseLauncher/Classes/RepairManagement/Zenless/ZenlessRepair.Extensions.cs b/CollapseLauncher/Classes/RepairManagement/Zenless/ZenlessRepair.Extensions.cs index 36d36d52a..91b1b08bb 100644 --- a/CollapseLauncher/Classes/RepairManagement/Zenless/ZenlessRepair.Extensions.cs +++ b/CollapseLauncher/Classes/RepairManagement/Zenless/ZenlessRepair.Extensions.cs @@ -1,6 +1,7 @@ using CollapseLauncher.Helper.StreamUtility; using Hi3Helper; using Hi3Helper.Data; +using Hi3Helper.EncTool; using Hi3Helper.EncTool.Parser.AssetIndex; using Hi3Helper.EncTool.Parser.Sleepy; using Hi3Helper.Shared.ClassStruct; @@ -55,12 +56,10 @@ internal static async IAsyncEnumerable RegisterSleepyFileI string persistentPath, [EnumeratorCancellation] CancellationToken token = default) { - string manifestFileUrl = fileInfo.BaseUrl.CombineURLFromString(fileInfo.ReferenceFileInfo.FileName); - using HttpResponseMessage responseMessage = await httpClient.GetAsync(manifestFileUrl, HttpCompletionOption.ResponseHeadersRead, token); + string manifestFileUrl = fileInfo.BaseUrl.CombineURLFromString(fileInfo.ReferenceFileInfo.FileName); + string filePath = Path.Combine(persistentPath, fileInfo.ReferenceFileInfo.FileName + "_persist"); - string filePath = Path.Combine(persistentPath, fileInfo.ReferenceFileInfo.FileName + "_persist"); - - await using Stream responseStream = await responseMessage.Content.ReadAsStreamAsync(token); + await using Stream responseStream = (await httpClient.TryGetCachedStreamFrom(manifestFileUrl, null, token)).Stream; await using Stream responseInterceptedStream = new JsonFieldToEnumerableStream(needWriteToLocal ? filePath : null, responseStream); IAsyncEnumerable enumerable = JsonSerializer @@ -84,7 +83,8 @@ internal static async IAsyncEnumerable RegisterSleepyFileI isForceStoreInPersistent = manifest.IsPersistentFile, isPatch = manifest.IsPersistentFile, md5 = Convert.ToHexStringLower(manifest.Xxh64Hash), - remoteName = manifest.FileRelativePath + remoteName = manifest.FileRelativePath, + associatedObject = manifest }; } } @@ -143,6 +143,7 @@ internal static async IAsyncEnumerable RegisterSleepyFileI asset.fileSize, asset.md5, FileType.Generic, + asset.associatedObject, asset.isPatch); ReadOnlySpan relTypeRelativePath = asRemoteProperty.GetAssetRelativePath(out RepairAssetType assetType); @@ -189,6 +190,7 @@ private static FilePropertiesRemote GetNormalizedFilePropertyTypeBased(string re long fileSize, string hash, FileType type = FileType.Generic, + object associatedObject = null!, bool isPatchApplicable = false) { string remoteAbsolutePath = type switch @@ -205,7 +207,8 @@ private static FilePropertiesRemote GetNormalizedFilePropertyTypeBased(string re S = fileSize, N = localAbsolutePath, RN = remoteAbsolutePath, - IsPatchApplicable = isPatchApplicable + IsPatchApplicable = isPatchApplicable, + AssociatedObject = associatedObject }; } diff --git a/CollapseLauncher/Classes/RepairManagement/Zenless/ZenlessRepair.Fetch.cs b/CollapseLauncher/Classes/RepairManagement/Zenless/ZenlessRepair.Fetch.cs index 7cdc5e983..80fa88e6c 100644 --- a/CollapseLauncher/Classes/RepairManagement/Zenless/ZenlessRepair.Fetch.cs +++ b/CollapseLauncher/Classes/RepairManagement/Zenless/ZenlessRepair.Fetch.cs @@ -1,6 +1,7 @@ using CollapseLauncher.GameSettings.Zenless; using CollapseLauncher.Helper; using CollapseLauncher.Helper.Metadata; +using CollapseLauncher.InstallManager.Zenless; using Hi3Helper; using Hi3Helper.Data; using Hi3Helper.EncTool.Parser.AssetIndex; @@ -80,6 +81,8 @@ await GetResManifest(downloadClient, alternateHashSet, assetIndex, EliminatePluginAssetIndex(assetIndex); } } + + FilterExcludedAssets(assetIndex); } finally { @@ -88,6 +91,47 @@ await GetResManifest(downloadClient, alternateHashSet, assetIndex, } #endregion + #region Filter Excluded Assets + private void FilterExcludedAssets(List assetList) + { + string gameExecDataName = + Path.GetFileNameWithoutExtension(GameVersionManager.GamePreset.GameExecutableName) ?? "ZenlessZoneZero"; + string gameExecDataPath = $"{gameExecDataName}_Data"; + string gamePersistentDataPath = Path.Combine(GamePath, gameExecDataPath, "Persistent"); + string gameExceptMatchFieldFile = Path.Combine(gamePersistentDataPath, "KDelResource"); + + if (!File.Exists(gameExceptMatchFieldFile)) + { + return; + } + + string exceptMatchFieldContent = File.ReadAllText(gameExceptMatchFieldFile); + HashSet exceptMatchFieldHashSet = ZenlessInstall.CreateExceptMatchFieldHashSet(exceptMatchFieldContent); + + List filteredList = []; + foreach (FilePropertiesRemote asset in assetList) + { + if (asset.AssociatedObject is not ZenlessResManifestAsset zenlessResAsset || + zenlessResAsset.PackageMatchingIds == null || + zenlessResAsset.PackageMatchingIds.Length == 0) + { + filteredList.Add(asset); + continue; + } + + bool isExceptionFound = zenlessResAsset.PackageMatchingIds.Any(exceptMatchFieldHashSet.Contains); + if (isExceptionFound) + { + continue; + } + filteredList.Add(asset); + } + + assetList.Clear(); + assetList.AddRange(filteredList); + } + #endregion + #region PrimaryManifest private async Task GetPrimaryManifest( Dictionary.AlternateLookup> alternateHashSet, @@ -109,7 +153,7 @@ private async Task GetPrimaryManifest( Dictionary repoMetadata = await FetchMetadata(token); // Check for manifest. If it doesn't exist, then throw and warn the user - if (!repoMetadata.TryGetValue(GameVersion.VersionString, out var value)) + if (!repoMetadata.TryGetValue(GameVersion.VersionString, out string value)) { // If version override is on, then throw if (IsVersionOverride) @@ -154,30 +198,32 @@ private async Task GetPrimaryManifest( string urlIndex = string.Format(LauncherConfig.AppGameRepairIndexURLPrefix, GameVersionManager.GamePreset.ProfileName, GameVersion.VersionString) + ".binv2"; // Start downloading asset index using FallbackCDNUtil and return its stream - await Task.Run(async () => + await using Stream assetIndexStream = await FallbackCDNUtil.TryGetCDNFallbackStream(urlIndex, token: token); + if (assetIndexStream != null) { - await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(urlIndex, token); - if (stream != null) - { - // Deserialize asset index and set it to list - AssetIndexV2 parserTool = new AssetIndexV2(); - pkgVersion = parserTool.Deserialize(stream, out DateTime timestamp); - Logger.LogWriteLine($"Asset index timestamp: {timestamp}", LogType.Default, true); - } + // Deserialize asset index and set it to list + AssetIndexV2 parserTool = new AssetIndexV2(); + pkgVersion = parserTool.Deserialize(assetIndexStream, out DateTime timestamp); + Logger.LogWriteLine($"Asset index timestamp: {timestamp}", LogType.Default, true); + } - // Convert the pkg version list to asset index - foreach (FilePropertiesRemote entry in pkgVersion.RegisterMainCategorizedAssetsToHashSet(assetIndex, alternateHashSet, GamePath, GameRepoURL)) - { - // If entry is null (means, an existing entry has been overwritten), then next - if (entry == null) - continue; + if (GameRepoURL == null) + { + return; + } - assetIndex.Add(entry); - } + // Convert the pkg version list to asset index + foreach (FilePropertiesRemote entry in pkgVersion.RegisterMainCategorizedAssetsToHashSet(assetIndex, alternateHashSet, GamePath, GameRepoURL)) + { + // If entry is null (means, an existing entry has been overwritten), then next + if (entry == null) + continue; + + assetIndex.Add(entry); + } - // Clear the pkg version list - pkgVersion.Clear(); - }, token).ConfigureAwait(false); + // Clear the pkg version list + pkgVersion.Clear(); } private async Task> FetchMetadata(CancellationToken token) @@ -186,7 +232,7 @@ private async Task> FetchMetadata(CancellationToken t string urlMetadata = string.Format(LauncherConfig.AppGameRepoIndexURLPrefix, GameVersionManagerCast!.GamePreset.ProfileName); // Start downloading metadata using FallbackCDNUtil - await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(urlMetadata, token); + await using Stream stream = await FallbackCDNUtil.TryGetCDNFallbackStream(urlMetadata, token: token); return await stream.DeserializeAsync(CoreLibraryJsonContext.Default.DictionaryStringString, token: token); } #endregion @@ -422,7 +468,7 @@ private static async IAsyncEnumerable EnumerateResManifest private void EliminatePluginAssetIndex(List assetIndex) { - GameVersionManager.GameApiProp.data!.plugins?.ForEach(plugin => + GameVersionManager.GameApiProp?.data!.plugins?.ForEach(plugin => { if (plugin.package?.validate == null) return; assetIndex.RemoveAll(asset => diff --git a/CollapseLauncher/Classes/RepairManagement/Zenless/ZenlessResManifest.cs b/CollapseLauncher/Classes/RepairManagement/Zenless/ZenlessResManifest.cs index 82015c836..b4a678db0 100644 --- a/CollapseLauncher/Classes/RepairManagement/Zenless/ZenlessResManifest.cs +++ b/CollapseLauncher/Classes/RepairManagement/Zenless/ZenlessResManifest.cs @@ -10,7 +10,7 @@ internal class ZenlessResManifestAsset [JsonPropertyName("remoteName")] public string FileRelativePath { get; set; } - [JsonPropertyName("md5")] // "mD5" they said. BROO, IT'S A F**KING XXH64 HASH!!!! + [JsonPropertyName("md5")] // "MD5" they said. BROO, IT'S A F**KING XXH64 HASH!!!! [JsonConverter(typeof(NumberStringToXxh64HashBytesConverter))] // AND THEY STORED IT AS A NUMBER IN A STRING WTFF?????? public byte[] Xxh64Hash { get; set; } // classic @@ -23,5 +23,8 @@ internal class ZenlessResManifestAsset [JsonPropertyName("tags")] public int[] Tags { get; set; } + + [JsonPropertyName("packages")] + public int[] PackageMatchingIds { get; set; } } } diff --git a/CollapseLauncher/Classes/ShortcutCreator/ShortcutCreator.cs b/CollapseLauncher/Classes/ShortcutCreator/ShortcutCreator.cs index e9d917cc1..1304baee3 100644 --- a/CollapseLauncher/Classes/ShortcutCreator/ShortcutCreator.cs +++ b/CollapseLauncher/Classes/ShortcutCreator/ShortcutCreator.cs @@ -1,9 +1,13 @@ -using CollapseLauncher.Extension; +using CollapseLauncher.Classes.Helper.Image; +using CollapseLauncher.Extension; +using CollapseLauncher.Helper.Image; using CollapseLauncher.Helper.Loading; using CollapseLauncher.Helper.Metadata; +using CollapseLauncher.Plugins; using Hi3Helper; using Microsoft.Win32; using System.Collections.Generic; +using System.Drawing; using System.IO; using System.Linq; using System.Threading.Tasks; @@ -16,17 +20,52 @@ namespace CollapseLauncher.ShortcutUtils { public static class ShortcutCreator { - public static string GetIconName(GameNameType gameType) + public static string GetIconName(PresetConfig preset) { - return gameType switch + return preset.GameType switch { GameNameType.Genshin => "icon-genshin.ico", GameNameType.StarRail => "icon-starrail.ico", GameNameType.Zenless => "icon-zenless.ico", + GameNameType.Plugin => $"{preset.ProfileName}.ico", _ => "icon-honkai.ico" }; } +#nullable enable + public static string GetIconPath(PresetConfig preset) + { + var appPath = Path.GetDirectoryName(AppExecutablePath)!; + var iconPath = Path.Combine(appPath, $"Assets\\Images\\GameIcon"); + + var icon = Path.Combine(iconPath, GetIconName(preset)); + if (preset is PluginPresetConfigWrapper pluginPresetConfig) + { + pluginPresetConfig.Plugin.GetPluginAppIconUrl(out string? iconUrl); + string? appIconUrl = ImageLoaderHelper.CopyToLocalIfBase64(iconUrl, iconPath); + + if (appIconUrl == null) + return icon; + + icon = appIconUrl; + if (Path.GetExtension(icon) != ".ico") + { + var expectedPath = Path.ChangeExtension(icon, ".ico"); + using (var stream = File.OpenWrite(expectedPath)) + { + Image img = Image.FromFile(icon); + ImageConverterHelper.ConvertToIcon(img) + .Save(stream); + } + + return expectedPath; + } + } + + return icon; + } +#nullable disable + internal static void CreateShortcut(string path, PresetConfig preset, bool play = false) { var translatedGameTitle = @@ -40,8 +79,7 @@ internal static void CreateShortcut(string path, PresetConfig preset, bool play if (play) url += " -p"; - var icon = Path.Combine(Path.GetDirectoryName(AppExecutablePath)!, - $"Assets/Images/GameIcon/{GetIconName(preset.GameType)}"); + var icon = GetIconPath(preset); var fullPath = Path.Combine(path, shortcutName); diff --git a/CollapseLauncher/Classes/ShortcutCreator/SteamShortcut.cs b/CollapseLauncher/Classes/ShortcutCreator/SteamShortcut.cs index 83ceef291..062561538 100644 --- a/CollapseLauncher/Classes/ShortcutCreator/SteamShortcut.cs +++ b/CollapseLauncher/Classes/ShortcutCreator/SteamShortcut.cs @@ -54,7 +54,7 @@ internal SteamShortcut(string path, PresetConfig preset, bool play = false) AppID = GenerateAppId(Exe, appNameInternal); var gridPath = Path.Combine(_path!, "grid"); - var iconName = ShortcutCreator.GetIconName(_preset.GameType); + var iconName = ShortcutCreator.GetIconName(_preset); Icon = Path.Combine(gridPath, iconName); LaunchOptions = $"open -g \"{preset.GameName}\" -r \"{preset.ZoneName}\""; @@ -78,8 +78,7 @@ internal async Task MoveImages(CancellationToken token) var gridPath = Path.Combine(_path!, "grid"); if (!Directory.Exists(gridPath)) Directory.CreateDirectory(gridPath); - var iconName = ShortcutCreator.GetIconName(_preset.GameType); - var iconAssetPath = Path.Combine(Path.GetDirectoryName(AppExecutablePath)!, @"Assets\Images\GameIcon\" + iconName); + var iconAssetPath = ShortcutCreator.GetIconPath(_preset); if (!Path.Exists(Icon) && Path.Exists(iconAssetPath)) { @@ -121,7 +120,7 @@ private void CopyImageFromCache(string gridPath, string steamSuffix) private async Task CacheImages(CancellationToken token) { Dictionary assets = _preset.ZoneSteamAssets; - if (assets == null) return; + if (assets == null || assets.Count == 0) return; (string, string)[] images = [ diff --git a/CollapseLauncher/CollapseLauncher.csproj b/CollapseLauncher/CollapseLauncher.csproj index 298a02059..d1cbea859 100644 --- a/CollapseLauncher/CollapseLauncher.csproj +++ b/CollapseLauncher/CollapseLauncher.csproj @@ -16,22 +16,17 @@ $(Company). neon-nyan, Cry0, bagusnl, shatyuka, gablm. Copyright 2022-2025 $(Company) - 1.83.8 + 1.83.9 preview x64 net9.0-windows10.0.26100.0 - 10.0.26100.57 10.0.17763.0 win-x64 - true - true true portable false - - false true true @@ -59,19 +54,18 @@ false - - - true - Speed - true - true - false - false - $(DefineConstants);AOT - sse2 - - Guard - true + + + + + + + Static + True + foundation + True Exe - DISABLE_XAML_GENERATED_MAIN;ENABLEUSERFEEDBACK;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION;PREVIEW;DUMPGIJSON;SIMULATEGIHDR;GSPBYPASSGAMERUNNING;MHYPLUGINSUPPORT + DISABLE_XAML_GENERATED_MAIN;ENABLEUSERFEEDBACK;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;PREVIEW;DUMPGIJSON;SIMULATEGIHDR;GSPBYPASSGAMERUNNING;MHYPLUGINSUPPORT full - false - DISABLE_XAML_GENERATED_MAIN;ENABLEUSERFEEDBACK;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION;PREVIEW;MHYPLUGINSUPPORT + DISABLE_XAML_GENERATED_MAIN;ENABLEUSERFEEDBACK;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;PREVIEW;MHYPLUGINSUPPORT True true - DISABLE_XAML_GENERATED_MAIN;ENABLEUSERFEEDBACK;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION;MHYPLUGINSUPPORT + DISABLE_XAML_GENERATED_MAIN;ENABLEUSERFEEDBACK;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;MHYPLUGINSUPPORT true true + + + + false + + + + + $(DefineConstants);AOT + true + true + + + true + true + Speed + false + Speed + true + true + true + true + true + true + + + false + false + true + true + false + false + + + false + false + false + false + false + false + true + false + + + + x86-x64-v2 + + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - + + + + + + + + - + - + - + - + - - + + - - - + - + - + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + - + @@ -195,29 +284,30 @@ - + - - - - + + + + - + - - - + + + + @@ -264,10 +354,17 @@ Always - + + + + + + - + + - + --> - - - - + + + + - + - + - + - - + + - - + + diff --git a/CollapseLauncher/Program.cs b/CollapseLauncher/Program.cs index 9eaadbe15..f71467137 100644 --- a/CollapseLauncher/Program.cs +++ b/CollapseLauncher/Program.cs @@ -4,6 +4,7 @@ using CollapseLauncher.Helper.Update; using Hi3Helper; using Hi3Helper.EncTool; +using Hi3Helper.EncTool.Hashes; using Hi3Helper.Http.Legacy; using Hi3Helper.SentryHelper; using Hi3Helper.Shared.ClassStruct; @@ -12,6 +13,7 @@ using InnoSetupHelper; using Microsoft.UI.Dispatching; using Microsoft.UI.Xaml; +using Microsoft.Win32; using System; using System.Diagnostics; using System.Globalization; @@ -20,9 +22,9 @@ using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Security.Cryptography; -using System.Text; using System.Threading; using System.Threading.Tasks; +using Velopack; using WinRT; using static CollapseLauncher.ArgumentParser; using static CollapseLauncher.InnerLauncherConfig; @@ -35,191 +37,105 @@ // ReSharper disable StringLiteralTypo // ReSharper disable UnusedMember.Global +#nullable enable +#pragma warning disable CS0618 namespace CollapseLauncher { - public static partial class MainEntryPointExtension - { - [LibraryImport("Microsoft.ui.xaml.dll", EntryPoint = "XamlCheckProcessRequirements")] - public static partial void XamlCheckProcessRequirements(); - } - public static class MainEntryPoint { // Decide AUMID string public const string AppAumid = "Collapse"; -#nullable enable public static int InstanceCount { get; set; } public static App? CurrentAppInstance { get; set; } - #nullable restore [STAThread] + [MethodImpl(MethodImplOptions.NoInlining)] public static void Main(params string[] args) { - // Basically, the Libzstd's DLL will be checked if they exist on Non-AOT build. - // But due to AOT build uses Static Library in favor of Shared ones (that comes - // with .dll files), the check will be ignored. - #if AOT - ZstdNet.DllUtils.IsIgnoreMissingLibrary = true; - #endif - - AppCurrentArgument = args.ToList(); - #if PREVIEW - IsPreview = true; - #endif try { - // Add callbacks to apply shared settings - ApplyExternalConfigCallbackList.Add(HttpClientBuilder.ApplyDnsConfigOnAppConfigLoad); - - // Initialize the Sentry SDK - SentryHelper.IsPreview = IsPreview; - #pragma warning disable CS0618 // Type or member is obsolete - SentryHelper.AppBuildCommit = ThisAssembly.Git.Sha; - SentryHelper.AppBuildBranch = ThisAssembly.Git.Branch; - SentryHelper.AppBuildRepo = ThisAssembly.Git.RepositoryUrl; - #pragma warning restore CS0618 // Type or member is obsolete - if (SentryHelper.IsEnabled) - { - try - { - // Sentry SDK Entry - LogWriteLine("Loading Sentry SDK...", LogType.Sentry, true); - SentryHelper.InitializeSentrySdk(); - LogWriteLine("Setting up global exception handler redirection", LogType.Scheme, true); - SentryHelper.InitializeExceptionRedirect(); - } - catch (Exception ex) - { - LogWriteLine($"Failed to load Sentry SDK.\r\n{ex}", LogType.Sentry, true); - } - } - - // Extract icons from the executable file - string mainModulePath = AppExecutablePath; - uint iconCount = PInvoke.ExtractIconEx(mainModulePath, -1, nint.Zero, nint.Zero, 0); - if (iconCount > 0) - { - IntPtr[] largeIcons = new IntPtr[1]; - IntPtr[] smallIcons = new IntPtr[1]; - nint largeIconsArrayP = Marshal.UnsafeAddrOfPinnedArrayElement(largeIcons, 0); - nint smallIconsArrayP = Marshal.UnsafeAddrOfPinnedArrayElement(smallIcons, 0); - PInvoke.ExtractIconEx(mainModulePath, 0, largeIconsArrayP, smallIconsArrayP, 1); - AppIconLarge = largeIcons[0]; - AppIconSmall = smallIcons[0]; - } + AppCurrentArgument = args.ToList(); +#if PREVIEW + IsPreview = true; +#endif + // Initialize Application Configs and apply default settings. InitAppPreset(); - string logPath = AppGameLogsFolder; - CurrentLogger = IsConsoleEnabled - ? new LoggerConsole(logPath, Encoding.UTF8) - : new LoggerNull(logPath, Encoding.UTF8); - - // Set ILogger for CDNCacheUtil - CDNCacheUtil.Logger = ILoggerHelper.GetILogger("CDNCacheUtil"); - - // Start Updater Hook - VelopackLocatorExtension.StartUpdaterHook(AppAumid); - - if (Directory.GetCurrentDirectory() != AppExecutableDir) + + // Initialize Application Icons to Static Variables + InitAppIcons(); + + // Initialize Logger + UseConsoleLog(IsConsoleEnabled); + + // Initialize Critical Modules (Including Sentry SDK and WASDK+WinRT ComWrappers) + InitCriticalModules(); + + // Perform AppActivation Redirection. + AppActivation.Enable(); + if (AppActivation.DecideRedirection()) { - LogWriteLine( - $"Force changing the working directory from {Directory.GetCurrentDirectory()} to {AppExecutableDir}!", - LogType.Warning, true); - Directory.SetCurrentDirectory(AppExecutableDir); + return; // Rage quit :> } - - InitializeAppSettings(); - SentryHelper.AppCdnOption = FallbackCDNUtil.GetPreferredCDN().URLPrefix; + // Initialize Localization Files + InitLocale(); + + // Log Application Info LogWriteLine(string.Format("Running Collapse Launcher [{0}], [{3}], under {1}, as {2}", LauncherUpdateHelper.LauncherCurrentVersionString, GetVersionString(), #if DEBUG Environment.UserName, #else - "[REDACTED]", + "[REDACTED]", #endif IsPreview ? "Preview" : "Stable"), LogType.Scheme, true); - #pragma warning disable CS0618 // Type or member is obsolete LogWriteLine($"Runtime: {RuntimeInformation.FrameworkDescription} - WindowsAppSDK {WindowsAppSdkVersion}", LogType.Scheme, true); LogWriteLine($"Built from repo {ThisAssembly.Git.RepositoryUrl}\r\n\t" + $"Branch {ThisAssembly.Git.Branch} - Commit {ThisAssembly.Git.Commit} at {ThisAssembly.Git.CommitDate}", LogType.Scheme, true); - #pragma warning restore CS0618 // Type or member is obsolete - - Process.GetCurrentProcess().PriorityBoostEnabled = true; + // Parse arguments for app activation ParseArguments(args); - // Initiate InnoSetupHelper's log event - InnoSetupLogUpdate.LoggerEvent += InnoSetupLogUpdate_LoggerEvent; - HttpLogInvoker.DownloadLog += HttpClientLogWatcher!; - - switch (m_appMode) + // Try run and check if the main application can be run (if other modes m_appMode is not set) + if (!IsRunMainApp()) { - case AppMode.ElevateUpdater: - RunElevateUpdate(); - return; - case AppMode.InvokerTakeOwnership: - TakeOwnership.StartTakingOwnership(m_arguments.TakeOwnership.AppPath); - return; - case AppMode.InvokerMigrate: - if (m_arguments.Migrate.IsBhi3L) - { - new Migrate().DoMigrationBHI3L( - m_arguments.Migrate.GameVer, - m_arguments.Migrate.RegLoc, - m_arguments.Migrate.InputPath, - m_arguments.Migrate.OutputPath); - } - else - { - new Migrate().DoMigration( - m_arguments.Migrate.InputPath, - m_arguments.Migrate.OutputPath); - } - - return; - case AppMode.InvokerMoveSteam: - new Migrate().DoMoveSteam( - m_arguments.Migrate.InputPath, - m_arguments.Migrate.OutputPath, - m_arguments.Migrate.GameVer, - m_arguments.Migrate.KeyName); - return; - case AppMode.GenerateVelopackMetadata: - VelopackLocatorExtension.GenerateVelopackMetadata(AppAumid); - return; + return; // Rage quit :> } + // Now we start the main course :) + // Reason: These are methods that either has its own error handling and/or not that important, // so the execution could continue without anything to worry about **technically** _ = InitDatabaseHandler(); _ = CheckRuntimeFeatures(); AppDomain.CurrentDomain.ProcessExit += OnProcessExit!; - InstanceCount = ProcessChecker.EnumerateInstances(ILoggerHelper.GetILogger()); - - AppActivation.Enable(); - if (AppActivation.DecideRedirection()) + Application.Start(pContext => { - return; - } + DispatcherQueue dispatcherQueue = DispatcherQueue.GetForCurrentThread(); - MainEntryPointExtension.XamlCheckProcessRequirements(); - ComWrappersSupport.InitializeComWrappers(); + DispatcherQueueSynchronizationContext context = new DispatcherQueueSynchronizationContext(dispatcherQueue); + SynchronizationContext.SetSynchronizationContext(context); - StartMainApplication(); + // ReSharper disable once ObjectCreationAsStatement + CurrentAppInstance = new App + { + HighContrastAdjustment = ApplicationHighContrastAdjustment.None + }; + }); } - #if !DEBUG - catch (Exception ex) - { - SentryHelper.ExceptionHandler(ex, SentryHelper.ExceptionType.UnhandledOther); - SpawnFatalErrorConsole(ex); - } - #else + #if !DEBUG + catch (Exception ex) + { + SentryHelper.ExceptionHandler(ex, SentryHelper.ExceptionType.UnhandledOther); + SpawnFatalErrorConsole(ex); + } + #else // ReSharper disable once RedundantCatchClause // Reason: warning shaddap-er catch (Exception ex) @@ -227,13 +143,165 @@ public static void Main(params string[] args) SentryHelper.ExceptionHandler(ex, SentryHelper.ExceptionType.UnhandledOther); throw; } - #endif + #endif finally { HttpLogInvoker.DownloadLog -= HttpClientLogWatcher!; } } + // In order to prevent unexpected over-optimization from the JIT, NoInlining is applied. + [MethodImpl(MethodImplOptions.NoInlining)] + private static void InitAppIcons() + { + // Extract icons from the executable file + string mainModulePath = AppExecutablePath; + uint iconCount = PInvoke.ExtractIconEx(mainModulePath, -1, nint.Zero, nint.Zero, 0); + if (iconCount > 0) + { + IntPtr[] largeIcons = new IntPtr[1]; + IntPtr[] smallIcons = new IntPtr[1]; + nint largeIconsArrayP = Marshal.UnsafeAddrOfPinnedArrayElement(largeIcons, 0); + nint smallIconsArrayP = Marshal.UnsafeAddrOfPinnedArrayElement(smallIcons, 0); + PInvoke.ExtractIconEx(mainModulePath, 0, largeIconsArrayP, smallIconsArrayP, 1); + AppIconLarge = largeIcons[0]; + AppIconSmall = smallIcons[0]; + } + } + + private static bool IsRunMainApp() + { + switch (m_appMode) + { + case AppMode.ElevateUpdater: + RunElevateUpdate(); + return false; + case AppMode.InvokerTakeOwnership: + TakeOwnership.StartTakingOwnership(m_arguments.TakeOwnership.AppPath); + return false; + case AppMode.InvokerMigrate: + if (m_arguments.Migrate.IsBhi3L) + { + new Migrate().DoMigrationBHI3L( + m_arguments.Migrate.GameVer, + m_arguments.Migrate.RegLoc, + m_arguments.Migrate.InputPath, + m_arguments.Migrate.OutputPath); + } + else + { + new Migrate().DoMigration( + m_arguments.Migrate.InputPath, + m_arguments.Migrate.OutputPath); + } + + return false; + case AppMode.InvokerMoveSteam: + new Migrate().DoMoveSteam( + m_arguments.Migrate.InputPath, + m_arguments.Migrate.OutputPath, + m_arguments.Migrate.GameVer, + m_arguments.Migrate.KeyName); + return false; + case AppMode.GenerateVelopackMetadata: + VelopackLocatorExtension.GenerateVelopackMetadata(AppAumid); + return false; + } + + return true; + } + + // In order to prevent unexpected over-optimization from the JIT, NoInlining is applied. + [MethodImpl(MethodImplOptions.NoInlining)] + private static void InitCriticalModules() + { + /* --------------------------------------------------------------------------------------------- + * Module: Internal Working Directory Check + */ + + if (Directory.GetCurrentDirectory() != AppExecutableDir) + { + LogWriteLine($"Force changing the working directory from {Directory.GetCurrentDirectory()} to {AppExecutableDir}!", + LogType.Warning, true); + Directory.SetCurrentDirectory(AppExecutableDir); + } + + /* --------------------------------------------------------------------------------------------- + * Module: Sentry SDK + */ + + // Set App information to Sentry SDK + SentryHelper.IsPreview = IsPreview; + SentryHelper.AppBuildCommit = ThisAssembly.Git.Sha; + SentryHelper.AppBuildBranch = ThisAssembly.Git.Branch; + SentryHelper.AppBuildRepo = ThisAssembly.Git.RepositoryUrl; + SentryHelper.AppCdnOptionGetter = () => FallbackCDNUtil.GetPreferredCDN().URLPrefix; + + // Initialize Sentry SDK if enabled + if (SentryHelper.IsEnabled) + { + try + { + // Sentry SDK Entry + LogWriteLine("Loading Sentry SDK...", LogType.Sentry, true); + SentryHelper.InitializeSentrySdk(); + LogWriteLine("Setting up global exception handler redirection", LogType.Scheme, true); + SentryHelper.InitializeExceptionRedirect(); + } + catch (Exception ex) + { + LogWriteLine($"Failed to load Sentry SDK.\r\n{ex}", LogType.Sentry, true); + } + } + + /* --------------------------------------------------------------------------------------------- + * Module: WindowsAppSDK + WinRT + */ + + // Force WinRT's COM Wrappers to be initialized early. + // The method which this calls placed must not be inlined. + // So the Main() above has MethodImplOptions.NoInlining applied. + // + // This is a workaround to fix COM 0x80040154 error code under Windows 10 1809 build. + ComWrappersSupport.InitializeComWrappers(new DefaultComWrappers()); + + /* --------------------------------------------------------------------------------------------- + * Module: Libzstd + */ + + // Basically, the Libzstd's DLL will be checked if they exist on Non-AOT build. + // But due to AOT build uses Static Library in favor of Shared ones (that comes + // with .dll files), the check will be ignored. + ZstdNet.DllUtils.IsIgnoreMissingLibrary = true; + + /* --------------------------------------------------------------------------------------------- + * Module: Internal Misc. and Callbacks + */ + + // Add callbacks to apply shared settings + ApplyExternalConfigCallbackList.Add(HttpClientBuilder.ApplyDnsConfigOnAppConfigLoad); + + // Initiate InnoSetupHelper's log event + InnoSetupLogUpdate.LoggerEvent += InnoSetupLogUpdate_LoggerEvent; + HttpLogInvoker.DownloadLog += HttpClientLogWatcher!; + + // Set Priority Boost Enabled by default + Process.GetCurrentProcess().PriorityBoostEnabled = true; + + // Set ILogger for CDNCacheUtil + CDNCacheUtil.Logger = ILoggerHelper.GetILogger("CDNCacheUtil"); + + // Get how many the same processes are running + InstanceCount = ProcessChecker.EnumerateInstances(ILoggerHelper.GetILogger()); + + /* --------------------------------------------------------------------------------------------- + * Module: Velopack + */ + + // Start Updater Hook + VelopackLocatorExtension.StartUpdaterHook(AppAumid); + } + private static async Task InitDatabaseHandler() { try @@ -248,7 +316,7 @@ private static async Task InitDatabaseHandler() } } - private static void InnoSetupLogUpdate_LoggerEvent(object sender, InnoSetupLogStruct e) + private static void InnoSetupLogUpdate_LoggerEvent(object? sender, InnoSetupLogStruct e) { LogWriteLine( e.Message, @@ -264,17 +332,25 @@ private static void InnoSetupLogUpdate_LoggerEvent(object sender, InnoSetupLogSt public static void SpawnFatalErrorConsole(Exception ex) { CurrentAppInstance?.Exit(); + + UseConsoleLog(false); LoggerConsole.AllocateConsole(); - Console.Error - .WriteLine($"FATAL ERROR ON APP MAIN() LEVEL AND THE MAIN THREAD HAS BEEN TERMINATED!!!\r\n{ex}"); + Console.Error.WriteLine($"FATAL ERROR ON APP MAIN() LEVEL AND THE MAIN THREAD HAS BEEN TERMINATED!!!\r\n{ex}"); Console.Error.WriteLine("\r\nIf you are sure that this is not intended, " + - "please report it to: https://github.com/CollapseLauncher/Collapse/issues\r\n" + - "Press any key to exit or Press 'R' to restart the main thread app..."); + "please report it to: https://github.com/CollapseLauncher/Collapse/issues"); + + ShowAdditionalInfoIfComExceptionNotInstalled(ex); + + Console.Error.WriteLine(); + Console.Error.WriteLine("Activity: Checking for possible fallback/recovery update..."); + Console.Error.WriteLine("Press any key to exit or Press 'R' to restart the main thread app..."); + + using CancellationTokenSource tokenSource = new CancellationTokenSource(); + _ = RunCheckForPossibleRecoveryOrFallbackUpdate(tokenSource.Token); - #if !DEBUG if (ConsoleKey.R == Console.ReadKey().Key) { - ProcessStartInfo startInfo = new ProcessStartInfo + ProcessStartInfo startInfo = new() { FileName = AppExecutablePath, UseShellExecute = false @@ -290,24 +366,154 @@ public static void SpawnFatalErrorConsole(Exception ex) }; process.Start(); } - #endif + + tokenSource.Cancel(); } - private static void StartMainApplication() + private static async Task RunCheckForPossibleRecoveryOrFallbackUpdate(CancellationToken token) { - Application.Start(_ => - { - DispatcherQueue dispatcherQueue = DispatcherQueue.GetForCurrentThread(); - - DispatcherQueueSynchronizationContext context = new DispatcherQueueSynchronizationContext(dispatcherQueue); - SynchronizationContext.SetSynchronizationContext(context); - - // ReSharper disable once ObjectCreationAsStatement - CurrentAppInstance = new App - { - HighContrastAdjustment = ApplicationHighContrastAdjustment.None - }; - }); + Console.CursorTop--; + Console.CursorTop--; + int posV = Console.CursorTop; + + Updater updater = new Updater(IsPreview ? "preview" : "stable"); + if (await TryRunUpdateCheck() is not UpdateInfo updateInfo || + !IsCurrentUpToDate(updateInfo.TargetFullRelease.Version.ToString())) + { + PrintAndFlush(Console.Out, "Activity: Fallback/Recovery update is currently not available."); + return; + } + + updater.UpdaterProgressChanged += Updater_UpdaterProgressChanged; + PrintAndFlush(Console.Out, "Activity: Fallback/Recovery detected! Recovering..."); + + await updater.StartUpdate(updateInfo, token); + PrintAndFlush(Console.Out, "Activity: Fallback/Recovery finished!\r\n"); + + int seconds = 5; + posV = Console.CursorTop; + while (seconds > 0) + { + PrintAndFlush(Console.Out, $"Launcher will be restarted in {seconds}..."); + await Task.Delay(1000); + seconds--; + } + + await updater.FinishUpdate(); + + return; + + static bool IsCurrentUpToDate(string versionString) + { + string filePath = AppExecutablePath; + if (!File.Exists(filePath)) + { + return true; + } + + // Try to get the version info and if the version info is null, return false + FileVersionInfo toCheckVersionInfo = FileVersionInfo.GetVersionInfo(filePath); + + if (!Version.TryParse(versionString, out Version? latestVersion)) + { + return true; + } + + // Otherwise, try compare the version info. + if (!Version.TryParse(toCheckVersionInfo.FileVersion, out Version? currentVersion)) + { + return true; + } + + // Try compare. If currentVersion is more or equal to latestVersion, return true. + // Otherwise, return false. + return latestVersion > currentVersion; + } + + async Task TryRunUpdateCheck() + { + try + { + return await updater.StartCheck(); + } + catch + { + return null; + } + } + + void PrintAndFlush(TextWriter writer, string message) + { + Console.CursorTop = posV; + int buffSize = Console.BufferWidth - 1; + + if (buffSize > 0) + { + writer.Write("\r" + new string(' ', buffSize)); + writer.Write("\r" + message); + } + } + + void Updater_UpdaterProgressChanged(object? sender, Updater.UpdaterProgress? e) + { + PrintAndFlush(Console.Out, $"Activity: Fallback/Recovery detected! Recovering ({e?.ProgressPercentage}%)..."); + } + } + + private static void ShowAdditionalInfoIfComExceptionNotInstalled(Exception? ex) + { + if (ex is not COMException exAsComEx || + ex.HResult != unchecked((int)0x80040154)) + { + return; + } + + bool isLtsc = IsWindowsLTSC(); + bool isRedstone5Update = Environment.OSVersion.Version.Build == 17763; + + if (isRedstone5Update) + { + string windowsName = isLtsc + ? "Windows 10 Enterprise LTSC Redstone 5 Update (Build 1809)" + : "Windows 10 Redstone 5 Update (Build 1809)"; + + string recommendedWindowsName = isLtsc + ? "Windows 10 Enterprise LTSC November 2021 update (Build 21H2)" + : "Windows 10 May 2019 Update (Build 19H1)"; + + Console.Error.WriteLine(); + Console.Error.WriteLine("\e[42;1mAdditional Note:\e[0m"); + Console.Error.Write($"We have detected that you're trying to run this launcher under {windowsName}. "); + Console.Error.WriteLine("This error is expected to happen due to lack of Windows Runtime support for WinUI 3 apps compiled using NativeAOT.\r\n"); + Console.Error.WriteLine($"We are recommending you to update your Windows to at least {recommendedWindowsName} or newer in order to use this launcher.\r\n"); + Console.Error.WriteLine("We apologize for this inconvenience. We will try our best to get our launcher run across any Windows 10 (1809 LTSC/GAC or above) editions or newer in the future.\r\n"); + + Console.Error.WriteLine($"Error: {ex}"); + } + + static bool IsWindowsLTSC() + { + RegistryKey? key = Registry.LocalMachine.OpenSubKey(@"Software\Microsoft\Windows NT\CurrentVersion"); + if (key == null) + { + return false; + } + + if (key.GetValue("EditionID", null) is string editionId && + editionId.StartsWith("Enterprise", StringComparison.OrdinalIgnoreCase) && + editionId.EndsWith("S", StringComparison.OrdinalIgnoreCase)) + { + return true; + } + + if (key.GetValue("ProductName", null) is string productName && + productName.Contains("LTSC", StringComparison.OrdinalIgnoreCase)) + { + return true; + } + + return false; + } } private static void HttpClientLogWatcher(object sender, DownloadLogEvent e) @@ -354,7 +560,7 @@ await Task.Run(() => } } - private static void InitializeAppSettings() + private static void InitLocale() { InitializeLocale(); if (IsFirstInstall) @@ -367,7 +573,7 @@ private static void InitializeAppSettings() LoadLocale(GetAppConfigValue("AppLanguage").ToString()); } - string themeValue = GetAppConfigValue("ThemeMode").ToString(); + string? themeValue = GetAppConfigValue("ThemeMode").ToString(); if (Enum.TryParse(themeValue, true, out CurrentAppTheme)) { return; @@ -410,9 +616,17 @@ public static string MD5Hash(string path) } FileStream stream = File.OpenRead(path); - byte[] hash = Hash.GetCryptoHash(stream); + byte[] hash = CryptoHashUtility.Shared.GetHashFromStream(stream); stream.Close(); return Convert.ToHexStringLower(hash); } + + public static void ForceRestart() + { + // Workaround to artificially start new process and wait for the current one to be killed. + string collapsePath = AppExecutablePath; + Process.Start("cmd.exe", $"/c timeout /T 1 && start /I \"\" \"{collapsePath}\""); + Application.Current.Exit(); + } } } \ No newline at end of file diff --git a/CollapseLauncher/Properties/PublishProfiles/Publish-DebugCIRelease.pubxml b/CollapseLauncher/Properties/PublishProfiles/Publish-DebugCIRelease.pubxml index 44c8d441d..c0834055e 100644 --- a/CollapseLauncher/Properties/PublishProfiles/Publish-DebugCIRelease.pubxml +++ b/CollapseLauncher/Properties/PublishProfiles/Publish-DebugCIRelease.pubxml @@ -6,7 +6,6 @@ https://go.microsoft.com/fwlink/?LinkID=208121. Debug - $(DefineConstants);DISABLE_XAML_GENERATED_MAIN;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION;PREVIEW;DUMPGIJSON;SIMULATEGIHDR;GSPBYPASSGAMERUNNING;MHYPLUGINSUPPORT x64 @@ -19,7 +18,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. true - true + false true full true @@ -35,8 +34,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. Speed true true - true - true + true true @@ -55,4 +53,4 @@ https://go.microsoft.com/fwlink/?LinkID=208121. true - \ No newline at end of file + diff --git a/CollapseLauncher/Properties/PublishProfiles/Publish-DebugCIReleaseAOT.pubxml b/CollapseLauncher/Properties/PublishProfiles/Publish-DebugCIReleaseAOT.pubxml index c4a73f382..bfe6cc660 100644 --- a/CollapseLauncher/Properties/PublishProfiles/Publish-DebugCIReleaseAOT.pubxml +++ b/CollapseLauncher/Properties/PublishProfiles/Publish-DebugCIReleaseAOT.pubxml @@ -6,7 +6,6 @@ https://go.microsoft.com/fwlink/?LinkID=208121. Debug - $(DefineConstants);DISABLE_XAML_GENERATED_MAIN;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION;PREVIEW;DUMPGIJSON;SIMULATEGIHDR;GSPBYPASSGAMERUNNING;MHYPLUGINSUPPORT;AOT x64 @@ -18,45 +17,26 @@ https://go.microsoft.com/fwlink/?LinkID=208121. win-x64 + true true false true - full - true false - true - true - true - true - Speed - false - Speed - true - true - true - true + false true - false - true false + true + true - false - false - false - false - false - true + true + false true - - - true - true \ No newline at end of file diff --git a/CollapseLauncher/Properties/PublishProfiles/Publish-PreviewRelease.pubxml b/CollapseLauncher/Properties/PublishProfiles/Publish-PreviewRelease.pubxml index aa1aa5507..55a3b737d 100644 --- a/CollapseLauncher/Properties/PublishProfiles/Publish-PreviewRelease.pubxml +++ b/CollapseLauncher/Properties/PublishProfiles/Publish-PreviewRelease.pubxml @@ -6,7 +6,6 @@ https://go.microsoft.com/fwlink/?LinkID=208121. Release - $(DefineConstants);DISABLE_XAML_GENERATED_MAIN;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION;PREVIEW;MHYPLUGINSUPPORT x64 @@ -19,8 +18,8 @@ https://go.microsoft.com/fwlink/?LinkID=208121. true - true true + true full true false @@ -36,8 +35,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. Speed true true - true - true + true true diff --git a/CollapseLauncher/Properties/PublishProfiles/Publish-PreviewReleaseAOT.pubxml b/CollapseLauncher/Properties/PublishProfiles/Publish-PreviewReleaseAOT.pubxml index e9b784033..7fa93d7d7 100644 --- a/CollapseLauncher/Properties/PublishProfiles/Publish-PreviewReleaseAOT.pubxml +++ b/CollapseLauncher/Properties/PublishProfiles/Publish-PreviewReleaseAOT.pubxml @@ -6,7 +6,6 @@ https://go.microsoft.com/fwlink/?LinkID=208121. Release - $(DefineConstants);DISABLE_XAML_GENERATED_MAIN;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION;PREVIEW;MHYPLUGINSUPPORT;AOT x64 @@ -18,53 +17,15 @@ https://go.microsoft.com/fwlink/?LinkID=208121. win-x64 + true true false true - full false - true - true - true - - - true - true - Speed - false - Speed - true - true - true - true - true - true - - - false - false - true - true - false - false - - - false - false - false - false - false - false - true - false true - - true - true - collapse collapse-launcher @@ -78,5 +39,6 @@ https://go.microsoft.com/fwlink/?LinkID=208121. true true + \ No newline at end of file diff --git a/CollapseLauncher/Properties/PublishProfiles/Publish-StableRelease.pubxml b/CollapseLauncher/Properties/PublishProfiles/Publish-StableRelease.pubxml index 0057ebeb3..d55329b52 100644 --- a/CollapseLauncher/Properties/PublishProfiles/Publish-StableRelease.pubxml +++ b/CollapseLauncher/Properties/PublishProfiles/Publish-StableRelease.pubxml @@ -3,58 +3,55 @@ https://go.microsoft.com/fwlink/?LinkID=208121. --> - - - Publish - $(DefineConstants);DISABLE_XAML_GENERATED_MAIN;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION;MHYPLUGINSUPPORT - x64 + + + Publish + x64 - - ..\..\CollapseLauncher-ReleaseRepo\stable-build - FileSystem + + ..\..\CollapseLauncher-ReleaseRepo\stable-build + FileSystem - - net9.0-windows10.0.26100.0 - win-x64 + + net9.0-windows10.0.26100.0 + win-x64 - - true - true - true - full - true - false - false - false + + true + true + full + true + false + false + false true - + true - true - Speed + true + Speed false Speed - true - true - true - true + true + true + true - - true - false - true - false + + true + false + true + false - - false - false - false - false - false - true + + false + false + false + false + false + true - - true + + true collapse @@ -69,5 +66,5 @@ https://go.microsoft.com/fwlink/?LinkID=208121. true true - + \ No newline at end of file diff --git a/CollapseLauncher/Properties/PublishProfiles/Publish-StableReleaseAOT.pubxml b/CollapseLauncher/Properties/PublishProfiles/Publish-StableReleaseAOT.pubxml index ec9b7cfc0..07e41b6f1 100644 --- a/CollapseLauncher/Properties/PublishProfiles/Publish-StableReleaseAOT.pubxml +++ b/CollapseLauncher/Properties/PublishProfiles/Publish-StableReleaseAOT.pubxml @@ -3,67 +3,28 @@ https://go.microsoft.com/fwlink/?LinkID=208121. --> - - - Publish - $(DefineConstants);DISABLE_XAML_GENERATED_MAIN;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION;MHYPLUGINSUPPORT;AOT - x64 + + + Publish + x64 - - ..\..\CollapseLauncher-ReleaseRepo\stable-build - FileSystem + + ..\..\CollapseLauncher-ReleaseRepo\stable-build + FileSystem - - net9.0-windows10.0.26100.0 - win-x64 + + net9.0-windows10.0.26100.0 + win-x64 - - true - false - true - full - false - true - true - true + + true + true + false + true + false - - true - true - true - Speed - false - Speed - true - true - true - true - true - - - false - false - true - true - false - false - - - false - false - false - false - false - false - true - false - - - true - - - true - true + + true collapse @@ -78,5 +39,5 @@ https://go.microsoft.com/fwlink/?LinkID=208121. true true - + \ No newline at end of file diff --git a/CollapseLauncher/Properties/launchSettings.json b/CollapseLauncher/Properties/launchSettings.json index 940d2bdc8..eb3b60bd1 100644 --- a/CollapseLauncher/Properties/launchSettings.json +++ b/CollapseLauncher/Properties/launchSettings.json @@ -2,7 +2,8 @@ "profiles": { "Collapse Launcher": { "commandName": "Project", - "nativeDebugging": false + "nativeDebugging": false, + "hotReloadEnabled": true }, "OOBE Setup": { "commandName": "Project", diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.001 b/CollapseLauncher/StaticLib/StaticLib.7z.001 index c3ea418da..78c7ac6e7 100644 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.001 and b/CollapseLauncher/StaticLib/StaticLib.7z.001 differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.002 b/CollapseLauncher/StaticLib/StaticLib.7z.002 index 1d468f162..658364bc1 100644 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.002 and b/CollapseLauncher/StaticLib/StaticLib.7z.002 differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.003 b/CollapseLauncher/StaticLib/StaticLib.7z.003 index 3e69ce2fb..fbee1dbc7 100644 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.003 and b/CollapseLauncher/StaticLib/StaticLib.7z.003 differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.004 b/CollapseLauncher/StaticLib/StaticLib.7z.004 index c31fbdee3..5fd8bf796 100644 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.004 and b/CollapseLauncher/StaticLib/StaticLib.7z.004 differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.005 b/CollapseLauncher/StaticLib/StaticLib.7z.005 index 0760611d6..b97a178ed 100644 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.005 and b/CollapseLauncher/StaticLib/StaticLib.7z.005 differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.006 b/CollapseLauncher/StaticLib/StaticLib.7z.006 index 25f79e4a1..503d1ecbd 100644 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.006 and b/CollapseLauncher/StaticLib/StaticLib.7z.006 differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.007 b/CollapseLauncher/StaticLib/StaticLib.7z.007 index 3b82b6aa6..25536de9a 100644 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.007 and b/CollapseLauncher/StaticLib/StaticLib.7z.007 differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.008 b/CollapseLauncher/StaticLib/StaticLib.7z.008 index faadbf7b0..baf70dfea 100644 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.008 and b/CollapseLauncher/StaticLib/StaticLib.7z.008 differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.009 b/CollapseLauncher/StaticLib/StaticLib.7z.009 index 2b21b13c5..cd8669b6a 100644 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.009 and b/CollapseLauncher/StaticLib/StaticLib.7z.009 differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.010 b/CollapseLauncher/StaticLib/StaticLib.7z.010 index dda18de0a..668fdc96c 100644 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.010 and b/CollapseLauncher/StaticLib/StaticLib.7z.010 differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.011 b/CollapseLauncher/StaticLib/StaticLib.7z.011 index ae80b6f09..cf51acd43 100644 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.011 and b/CollapseLauncher/StaticLib/StaticLib.7z.011 differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.012 b/CollapseLauncher/StaticLib/StaticLib.7z.012 deleted file mode 100644 index 613f8df64..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.012 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.013 b/CollapseLauncher/StaticLib/StaticLib.7z.013 deleted file mode 100644 index 361d49d18..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.013 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.014 b/CollapseLauncher/StaticLib/StaticLib.7z.014 deleted file mode 100644 index 3d10ecbc7..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.014 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.015 b/CollapseLauncher/StaticLib/StaticLib.7z.015 deleted file mode 100644 index 60f92d52d..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.015 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.016 b/CollapseLauncher/StaticLib/StaticLib.7z.016 deleted file mode 100644 index c6cbe0ff6..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.016 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.017 b/CollapseLauncher/StaticLib/StaticLib.7z.017 deleted file mode 100644 index 9d62413ab..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.017 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.018 b/CollapseLauncher/StaticLib/StaticLib.7z.018 deleted file mode 100644 index 749682552..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.018 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.019 b/CollapseLauncher/StaticLib/StaticLib.7z.019 deleted file mode 100644 index 572b0fc47..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.019 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.020 b/CollapseLauncher/StaticLib/StaticLib.7z.020 deleted file mode 100644 index bfa1e9263..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.020 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.021 b/CollapseLauncher/StaticLib/StaticLib.7z.021 deleted file mode 100644 index 67f4f6bfe..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.021 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.022 b/CollapseLauncher/StaticLib/StaticLib.7z.022 deleted file mode 100644 index 69f0cdc5c..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.022 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.023 b/CollapseLauncher/StaticLib/StaticLib.7z.023 deleted file mode 100644 index 3f131827b..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.023 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.024 b/CollapseLauncher/StaticLib/StaticLib.7z.024 deleted file mode 100644 index 918657a32..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.024 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.025 b/CollapseLauncher/StaticLib/StaticLib.7z.025 deleted file mode 100644 index 051f33ea0..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.025 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.026 b/CollapseLauncher/StaticLib/StaticLib.7z.026 deleted file mode 100644 index 77e495f2a..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.026 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.027 b/CollapseLauncher/StaticLib/StaticLib.7z.027 deleted file mode 100644 index bfb5d211d..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.027 and /dev/null differ diff --git a/CollapseLauncher/StaticLib/StaticLib.7z.028 b/CollapseLauncher/StaticLib/StaticLib.7z.028 deleted file mode 100644 index 5b4ff8c57..000000000 Binary files a/CollapseLauncher/StaticLib/StaticLib.7z.028 and /dev/null differ diff --git a/CollapseLauncher/XAMLs/MainApp/MainPage.Background.cs b/CollapseLauncher/XAMLs/MainApp/MainPage.Background.cs index b88138174..0b6a2ebb2 100644 --- a/CollapseLauncher/XAMLs/MainApp/MainPage.Background.cs +++ b/CollapseLauncher/XAMLs/MainApp/MainPage.Background.cs @@ -192,8 +192,9 @@ internal async Task ChangeBackgroundImageAsRegionAsync(bool ShowLoadingMsg = fal { gameLauncherApi.GameBackgroundImgLocal = BGPath; } - // If it's still not, then check if API gives any background - else if (isAPIBackgroundAvailable) + // If it's still not, then check if API gives any background. Anyway, also ignore if the provided API is the plugin ones. + // ReSharper disable once ConvertIfStatementToSwitchStatement + else if (!gameLauncherApi.IsPlugin && isAPIBackgroundAvailable) { try { @@ -208,7 +209,7 @@ internal async Task ChangeBackgroundImageAsRegionAsync(bool ShowLoadingMsg = fal } } // IF ITS STILL NOT THERE, then use fallback game poster, IF ITS STILL NOT THEREEEE!! use paimon cute deadge pic :) - else + else if (!gameLauncherApi.IsPlugin) { gameLauncherApi.GameBackgroundImgLocal = posterBg; } @@ -220,11 +221,9 @@ internal async Task ChangeBackgroundImageAsRegionAsync(bool ShowLoadingMsg = fal // If the custom per region is enabled, then execute below BackgroundImgChanger.ChangeBackground(gameLauncherApi.GameBackgroundImgLocal, - () => - { - IsFirstStartup = false; - ColorPaletteUtility.ReloadPageTheme(this, CurrentAppTheme); - }, - IsCustomBG || isUseCustomPerRegionBg, true, true); + () => IsFirstStartup = false, + IsCustomBG || isUseCustomPerRegionBg, + true, + true); } } diff --git a/CollapseLauncher/XAMLs/MainApp/MainPage.Navigation.cs b/CollapseLauncher/XAMLs/MainApp/MainPage.Navigation.cs index e9a6dca4b..950620d87 100644 --- a/CollapseLauncher/XAMLs/MainApp/MainPage.Navigation.cs +++ b/CollapseLauncher/XAMLs/MainApp/MainPage.Navigation.cs @@ -361,17 +361,18 @@ private void NavigationViewControl_BackRequested(NavigationView sender, Navigati LauncherFrame.GoBack(); if (PreviousTagString.Count < 1) return; - string lastPreviousTag = PreviousTagString[^1]; - string currentNavigationItemTag = (string)((NavigationViewItem)sender.SelectedItem).Tag; + var lastPreviousTag = PreviousTagString[^1]; + var currentNavigationItemTag = (string)((NavigationViewItem)sender.SelectedItem).Tag; if (!string.Equals(lastPreviousTag, currentNavigationItemTag, StringComparison.CurrentCultureIgnoreCase)) { return; } - string goLastPreviousTag = PreviousTagString[^2]; - #nullable enable + string? goLastPreviousTag; + goLastPreviousTag = PreviousTagString.Count < 2 ? PreviousTagString[^2] : lastPreviousTag; + NavigationViewItem? goPreviousNavigationItem = sender.MenuItems.OfType().FirstOrDefault(x => goLastPreviousTag == (string)x.Tag); goPreviousNavigationItem ??= sender.FooterMenuItems.OfType().FirstOrDefault(x => goLastPreviousTag == (string)x.Tag); #nullable restore diff --git a/CollapseLauncher/XAMLs/MainApp/MainPage.Notification.cs b/CollapseLauncher/XAMLs/MainApp/MainPage.Notification.cs index dee21ef61..df8f6c5d5 100644 --- a/CollapseLauncher/XAMLs/MainApp/MainPage.Notification.cs +++ b/CollapseLauncher/XAMLs/MainApp/MainPage.Notification.cs @@ -4,6 +4,7 @@ using CollapseLauncher.Helper.Update; using CollapseLauncher.Pages.OOBE; using Hi3Helper; +using Hi3Helper.Plugin.Core.Management; using Hi3Helper.SentryHelper; using Hi3Helper.Shared.ClassStruct; using Hi3Helper.Win32.WinRT.ToastCOM.Notification; @@ -68,7 +69,7 @@ private async Task FetchNotificationFeed() CancellationTokenSource TokenSource = new CancellationTokenSource(); RunTimeoutCancel(TokenSource); - await using Stream networkStream = await FallbackCDNUtil.TryGetCDNFallbackStream(string.Format(AppNotifURLPrefix, IsPreview ? "preview" : "stable"), TokenSource.Token); + await using Stream networkStream = await FallbackCDNUtil.TryGetCDNFallbackStream(string.Format(AppNotifURLPrefix, IsPreview ? "preview" : "stable"), token: TokenSource.Token); NotificationData = await networkStream.DeserializeAsync(NotificationPushJsonContext.Default.NotificationPush, token: TokenSource.Token); IsLoadNotifComplete = true; @@ -163,13 +164,13 @@ private async Task SpawnPushAppNotification() _ => null }; - GameVersion? ValidForVerBelow = Entry.ValidForVerBelow != null ? new GameVersion(Entry.ValidForVerBelow) : null; - GameVersion? ValidForVerAbove = Entry.ValidForVerAbove != null ? new GameVersion(Entry.ValidForVerAbove) : null; + GameVersion? ValidForVerBelow = Entry.ValidForVerBelow; + GameVersion? ValidForVerAbove = Entry.ValidForVerAbove; if (Entry.ValidForVerBelow == null && IsNotificationTimestampValid(Entry) - || (LauncherUpdateHelper.LauncherCurrentVersion.Compare(ValidForVerBelow) - && ValidForVerAbove.Compare(LauncherUpdateHelper.LauncherCurrentVersion)) - || LauncherUpdateHelper.LauncherCurrentVersion.Compare(ValidForVerBelow)) + || (LauncherUpdateHelper.LauncherCurrentVersion < ValidForVerBelow + && ValidForVerAbove < LauncherUpdateHelper.LauncherCurrentVersion) + || LauncherUpdateHelper.LauncherCurrentVersion < ValidForVerBelow) { if (Entry.ActionProperty != null) { @@ -227,11 +228,11 @@ void ClickClose(InfoBar infoBar, object o) string[] verStrings = await File.ReadAllLinesAsync(updateNotifFile.FullName); string verString = string.Empty; - if (verStrings.Length > 0 && GameVersion.TryParse(verStrings[0], out GameVersion? version)) + if (verStrings.Length > 0 && GameVersion.TryParse(verStrings[0], out GameVersion version)) { - verString = version.Value.VersionString; + verString = version.VersionString; SpawnNotificationPush(Lang._Misc.UpdateCompleteTitle, - string.Format(Lang._Misc.UpdateCompleteSubtitle, version.Value.VersionString, IsPreview ? "Preview" : "Stable"), + string.Format(Lang._Misc.UpdateCompleteSubtitle, version.ToString("n"), IsPreview ? "Preview" : "Stable"), NotifSeverity.Success, 0xAF, true, diff --git a/CollapseLauncher/XAMLs/MainApp/MainPage.xaml b/CollapseLauncher/XAMLs/MainApp/MainPage.xaml index 3f1ffdecf..21f4adb05 100644 --- a/CollapseLauncher/XAMLs/MainApp/MainPage.xaml +++ b/CollapseLauncher/XAMLs/MainApp/MainPage.xaml @@ -82,21 +82,23 @@ + Grid.ColumnSpan="2" + x:FieldModifier="internal" /> - - + - - ChangeTitleDragArea.Change(DragAreaTemplate.Default); private static void MainPageGrid_SizeChanged(object sender, SizeChangedEventArgs e) => ChangeTitleDragArea.Change(DragAreaTemplate.Default); - private void ChangeTitleDragAreaInvoker_TitleBarEvent(object sender, ChangeTitleDragAreaProperty e) - { - UpdateLayout(); - - InputNonClientPointerSource nonClientInputSrc = InputNonClientPointerSource.GetForWindowId(WindowUtility.CurrentWindowId ?? throw new NullReferenceException()); - WindowUtility.EnableWindowNonClientArea(); - WindowUtility.SetWindowTitlebarDragArea(DragAreaMode_Full); - - switch (e.Template) - { - case DragAreaTemplate.None: - nonClientInputSrc.SetRegionRects(NonClientRegionKind.Passthrough, [ - GetElementPos((WindowUtility.CurrentWindow as MainWindow)?.AppTitleBar) - ]); - break; - case DragAreaTemplate.Full: - nonClientInputSrc.ClearRegionRects(NonClientRegionKind.Passthrough); - break; - case DragAreaTemplate.Default: - nonClientInputSrc.ClearAllRegionRects(); - nonClientInputSrc.SetRegionRects(NonClientRegionKind.Passthrough, [ - GetElementPos(GridBG_RegionGrid), - GetElementPos(GridBG_IconGrid), - GetElementPos(GridBG_NotifBtn), - GetElementPos((WindowUtility.CurrentWindow as MainWindow)?.MinimizeButton), - GetElementPos((WindowUtility.CurrentWindow as MainWindow)?.CloseButton) - ]); - break; - } - - nonClientInputSrc.SetRegionRects(NonClientRegionKind.Close, null); - nonClientInputSrc.SetRegionRects(NonClientRegionKind.Minimize, null); - } #endregion #region Admin Checks @@ -459,7 +419,6 @@ private void SubscribeEvents() BackgroundImgChangerInvoker.IsImageHide += BackgroundImg_IsImageHideEvent; SpawnWebView2Invoker.SpawnEvent += SpawnWebView2Invoker_SpawnEvent; ShowLoadingPageInvoker.PageEvent += ShowLoadingPageInvoker_PageEvent; - ChangeTitleDragAreaInvoker.TitleBarEvent += ChangeTitleDragAreaInvoker_TitleBarEvent; SettingsPage.KeyboardShortcutsEvent += SettingsPage_KeyboardShortcutsEvent; KeyboardShortcutsEvent += SettingsPage_KeyboardShortcutsEvent; UpdateBindingsInvoker.UpdateEvents += UpdateBindingsEvent; @@ -476,7 +435,6 @@ private void UnsubscribeEvents() BackgroundImgChangerInvoker.IsImageHide -= BackgroundImg_IsImageHideEvent; SpawnWebView2Invoker.SpawnEvent -= SpawnWebView2Invoker_SpawnEvent; ShowLoadingPageInvoker.PageEvent -= ShowLoadingPageInvoker_PageEvent; - ChangeTitleDragAreaInvoker.TitleBarEvent -= ChangeTitleDragAreaInvoker_TitleBarEvent; SettingsPage.KeyboardShortcutsEvent -= SettingsPage_KeyboardShortcutsEvent; KeyboardShortcutsEvent -= SettingsPage_KeyboardShortcutsEvent; UpdateBindingsInvoker.UpdateEvents -= UpdateBindingsEvent; @@ -594,11 +552,11 @@ private async void EnableRegionChangeButton(object sender, SelectionChangedEvent string region = GetComboBoxGameRegionValue(selValue); PresetConfig preset = await LauncherMetadataHelper.GetMetadataConfig(category, region); - ChangeRegionWarningText.Text = preset!.Channel != GameChannel.Stable - ? string.Format(Lang._MainPage.RegionChangeWarnExper1, preset.Channel) + ChangeRegionWarningText.Text = preset!.GameChannel != GameChannel.Stable + ? string.Format(Lang._MainPage.RegionChangeWarnExper1, preset.GameChannel) : string.Empty; ChangeRegionWarning.Visibility = - preset.Channel != GameChannel.Stable ? Visibility.Visible : Visibility.Collapsed; + preset.GameChannel != GameChannel.Stable ? Visibility.Visible : Visibility.Collapsed; ChangeRegionConfirmBtn.IsEnabled = !LockRegionChangeBtn; ChangeRegionConfirmBtnNoWarning.IsEnabled = !LockRegionChangeBtn; @@ -621,12 +579,102 @@ private void GameComboBox_OnDropDownClosed(object sender, object e) #region Metadata Update Method private async ValueTask CheckMetadataUpdateInBackground() { - bool IsUpdate = await LauncherMetadataHelper.IsMetadataHasUpdate(); - if (!IsUpdate) + bool isMetadataHasUpdate = await LauncherMetadataHelper.IsMetadataHasUpdate(); + (List<(string, PluginManifest)> pluginUpdateNameList, bool isPluginHasUpdate) = await PluginManager.StartUpdateBackgroundRoutine(); + + if (!isMetadataHasUpdate && !isPluginHasUpdate) { return false; } + if (isPluginHasUpdate) + { + StartSpawn: + Grid textGridBox = UIElementExtensions.CreateGrid() + .WithRows(new GridLength(), + new GridLength(1, GridUnitType.Auto)) + .WithRowSpacing(8d); + + TextBlock textBlock = textGridBox.AddElementToGridRow(new TextBlock + { + TextWrapping = TextWrapping.Wrap + }.AddTextBlockLine(string.Format(Lang._Dialogs.PluginManagerUpdateAvailableSubtitle1, pluginUpdateNameList.Count)) + .AddTextBlockNewLine(2), 0); + + CheckBox enablePluginAutoUpdateCheck = textGridBox.AddElementToGridRow(new CheckBox(), 1); + enablePluginAutoUpdateCheck.Content = new TextBlock + { + TextWrapping = TextWrapping.Wrap + }.AddTextBlockLine(Lang._PluginManagerPage.ListViewMainActionButton3); + enablePluginAutoUpdateCheck.BindProperty(ToggleButton.IsCheckedProperty, + PluginManagerPage.Context, + nameof(PluginManagerPage.Context.IsEnableAutoUpdate), + bindingMode: BindingMode.TwoWay); + enablePluginAutoUpdateCheck.Scale = new Vector3(0.80f); + enablePluginAutoUpdateCheck.Margin = new Thickness(0, 0, 0, -16); + + foreach ((string, PluginManifest) pluginUpdateName in pluginUpdateNameList) + { + try + { + #nullable enable + textBlock.AddTextBlockLine($" • {pluginUpdateName.Item1}", FontWeights.Bold); + #nullable restore + } + catch + { + // ignored + } + } + textBlock.AddTextBlockNewLine(2) + .AddTextBlockLine(Lang._Dialogs.PluginManagerUpdateAvailableSubtitle2); + + ContentDialogResult pluginUpdateConfirm = + await SimpleDialogs.SpawnDialog(string.Format(Lang._Dialogs.PluginManagerUpdateAvailableTitle, pluginUpdateNameList.Count), + textGridBox, + null, + Lang._Dialogs.PluginManagerUpdateAvailableCancelBtn, + Lang._Dialogs.PluginManagerUpdateAvailableConfirmBtn, + string.Format(Lang._Dialogs.PluginManagerUpdateAvailableToManagerMenuBtn, Lang._PluginManagerPage.PageTitle), + ContentDialogButton.Primary, + ContentDialogTheme.Success); + + if (pluginUpdateConfirm == ContentDialogResult.None) + { + return false; + } + + if (pluginUpdateConfirm == ContentDialogResult.Secondary) + { + FullPageOverlay overlayMenu = new FullPageOverlay(new PluginManagerPage(), XamlRoot, true) + { + Size = FullPageOverlaySize.Full, + OverlayTitleSource = () => Lang._PluginManagerPage.PageTitle, + OverlayTitleIcon = new FontIconSource + { + Glyph = "\uE912", + FontSize = 16 + } + }; + + await overlayMenu.ShowAsync(); + goto StartSpawn; + } + + try + { + PluginManagerPage.AskLauncherRestart(null, null); + return true; + } + catch (Exception ex) + { + LogWriteLine($"Error has occured while updating metadata!\r\n{ex}", LogType.Error, true); + ErrorSender.SendException(ex); + } + + return false; + } + Button UpdateMetadatabtn = UIElementExtensions.CreateButtonWithIcon + - + + Style="{ThemeResource WindowCaptionButton}"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/CollapseLauncher/XAMLs/MainApp/Pages/PluginManagerPage.xaml.cs b/CollapseLauncher/XAMLs/MainApp/Pages/PluginManagerPage.xaml.cs new file mode 100644 index 000000000..d704bc9b3 --- /dev/null +++ b/CollapseLauncher/XAMLs/MainApp/Pages/PluginManagerPage.xaml.cs @@ -0,0 +1,170 @@ +using CollapseLauncher.Dialogs; +using CollapseLauncher.Extension; +using CollapseLauncher.Plugins; +using Hi3Helper; +using Hi3Helper.SentryHelper; +using Hi3Helper.Win32.FileDialogCOM; +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Input; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; +using InternalExtension = CollapseLauncher.Extension.UIElementExtensions; +// ReSharper disable CheckNamespace + +#nullable enable +namespace CollapseLauncher.Pages +{ + public sealed partial class PluginManagerPage + { + public static PluginManagerPageContext Context { get; } = new(); + public static PluginManagerPage This { get; set; } = null!; + + public PluginManagerPage() + { + This = this; + InitializeComponent(); + ImportBoxButton.SetAllControlsCursorRecursive(InternalExtension.HandCursor); + } + + private void OnListViewRightClickUpdate(object sender, RightTappedRoutedEventArgs e) + { + Context.ListViewSelectedItemsCountUninstalled = + (sender as ListView)?.SelectedItems.Count(x => (x as PluginInfo)?.IsMarkedForDeletion ?? false) ?? 0; + Context.ListViewSelectedItemsCountRestored = + (sender as ListView)?.SelectedItems.Count(x => !(x as PluginInfo)?.IsMarkedForDeletion ?? false) ?? 0; + Context.ListViewSelectedItemsCountEnabled = + (sender as ListView)?.SelectedItems.Count(x => (x as PluginInfo)?.IsEnabled ?? false) ?? 0; + Context.ListViewSelectedItemsCountDisabled = + (sender as ListView)?.SelectedItems.Count(x => !(x as PluginInfo)?.IsEnabled ?? false) ?? 0; + } + + private void OnUninstallPlugin(object sender, RoutedEventArgs e) + { + if (sender is not Button { Tag: PluginInfo pluginInfo }) + { + return; + } + + pluginInfo.IsMarkedForDeletion = true; + } + + private void OnRestoreUninstalledPlugin(object sender, RoutedEventArgs e) + { + if (sender is not Button { Tag: PluginInfo pluginInfo }) + { + return; + } + + pluginInfo.IsMarkedForDeletion = false; + } + + private async void OnClickImportButton(object sender, RoutedEventArgs e) + { + int imported = 0; + try + { + ImportBoxButton.IsEnabled = false; + Dictionary supportedFiles = new() + { + { Locale.Lang._PluginManagerPage.FileDialogFileFilter1, "*.zip;manifest.json" } + }; + + string[] selectedFiles = + await FileDialogNative.GetMultiFilePicker(supportedFiles, Locale.Lang._PluginManagerPage.FileDialogTitle); + if (selectedFiles.Length == 0) + { + return; + } + + List exceptions = []; + + foreach (string filePath in selectedFiles) + { + try + { + PluginInfo pluginInfo = await PluginImporter.AutoGetImportFromPath(filePath, CancellationToken.None); + Context.PluginCollection.Add(pluginInfo); + imported++; + } + catch (Exception exception) + { + exceptions.Add(exception); + } + } + + if (exceptions.Count > 0) + { + throw new AggregateException(exceptions); + } + } + catch (Exception ex) + { + string messageHead = imported > 0 ? + $"{imported} plugin(s) have been imported! But some error has occurred while importing other plugins:" : + "No plugin has been imported due to following error:"; + + ErrorSender.SendException(ex.WrapPluginException(messageHead)); + } + finally + { + ImportBoxButton.IsEnabled = true; + } + } + + internal static async void AskLauncherRestart(object? sender, RoutedEventArgs? e) + { + try + { + ContentDialogResult pluginUpdateConfirm = await SimpleDialogs.Dialog_RestartLauncher(); + if (pluginUpdateConfirm != ContentDialogResult.Primary) + { + return; + } + + MainEntryPoint.ForceRestart(); + } + catch (Exception ex) + { + Logger.LogWriteLine($"An error has occurred while trying to spawn restart dialog\r\n{ex}", LogType.Error, true); + await SentryHelper.ExceptionHandlerAsync(ex); + } + } + +#pragma warning disable CA2012 + private void OnClickCheckForUpdatesAllButton(SplitButton button, SplitButtonClickEventArgs e) + { + PluginManagerPageContext.CheckUpdateEnumeratePlugins(PluginManager.PluginInstances.Values); + } + + private void OnClickUpdateCurrentPlugin(object sender, RoutedEventArgs e) + { + if (sender is Button { Tag: PluginInfo asPluginInfo }) + { + _ = asPluginInfo.RunUpdateTask(); + } + } + + private void OnClickUpdateAndDownloadAllPlugin(object sender, RoutedEventArgs e) + { + PluginManagerPageContext.CheckAndDownloadUpdateEnumeratePlugins(PluginManager.PluginInstances.Values); + } +#pragma warning restore CA2012 + + private void OnClickGoToPluginDownloadCatalogButton(object sender, RoutedEventArgs e) + { + Task.Run(() => + { + Process.Start(new ProcessStartInfo + { + FileName = "https://collapselauncher.com/plugin/catalog.html", + UseShellExecute = true + }); + }); + } + } +} diff --git a/CollapseLauncher/XAMLs/MainApp/Pages/SettingsPage.xaml b/CollapseLauncher/XAMLs/MainApp/Pages/SettingsPage.xaml index 50ed3c393..c022a1f26 100644 --- a/CollapseLauncher/XAMLs/MainApp/Pages/SettingsPage.xaml +++ b/CollapseLauncher/XAMLs/MainApp/Pages/SettingsPage.xaml @@ -13,18 +13,22 @@ xmlns:innerConfig="using:Hi3Helper.Shared.Region" xmlns:localWindowSize="using:CollapseLauncher.WindowSize" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" - mc:Ignorable="d" + xmlns:plugins="using:CollapseLauncher.Plugins" CacheMode="BitmapCache" Loaded="Page_Loaded" NavigationCacheMode="Enabled" - Unloaded="Page_Unloaded"> + Unloaded="Page_Unloaded" + mc:Ignorable="d"> + + + @@ -54,46 +58,46 @@ ItemsSource="{x:Bind LanguageList, Mode=OneWay}" MaxDropDownHeight="400" SelectedIndex="{x:Bind LanguageSelectedIndex, Mode=OneWay}" - SelectionChangedTrigger="Committed" - SelectionChanged="LanguageSelector_SelectionChanged"> + SelectionChanged="LanguageSelector_SelectionChanged" + SelectionChangedTrigger="Committed"> - - - + + + - + FontWeight="Bold" + Foreground="{ThemeResource NewAccentButtonForeground}" + HorizontalTextAlignment="Center" + Text="{x:Bind LangID}" + TextAlignment="Center" /> - - + Text="{x:Bind LangAuthor, Converter={StaticResource ByStringConverter}}" /> @@ -393,19 +397,19 @@ - - + + - - + + - + Text="{x:Bind helper:Locale.Lang._SettingsPage.HttpCache_Title}" /> - - + + + SpinButtonPlacementMode="Inline" + Value="{x:Bind innerConfig:LauncherConfig.AppNetworkCacheExpireMinute, Mode=TwoWay}" /> + CornerRadius="4" + Visibility="Collapsed"> @@ -1358,8 +1362,8 @@ VerticalAlignment="Bottom" Background="{ThemeResource DefaultBGColorAccentBrush}" CornerRadius="4" - Shadow="{ThemeResource FatSliderThumbShadow}" Opacity="{x:Bind NetworkDownloadSpeedLimitToggle.IsOn, Mode=OneWay, Converter={StaticResource BooleanToIsEnabledOpacityConverter}}" + Shadow="{ThemeResource FatSliderThumbShadow}" Translation="0,0,8"> - + + Style="{ThemeResource BodyStrongTextBlockStyle}" + Text="{x:Bind Name}" /> @@ -2108,6 +2112,15 @@ + + + @@ -2731,14 +2744,16 @@ - - - + + + + + + + + + + + + + + ItemsSource="{x:Bind DialogMethodNames, Mode=OneWay}" + PlaceholderText="Search custom dialog..." + QuerySubmitted="DebugCustomDialogComboBox_OnQuerySubmitted" + Text="{x:Bind SelectedDialogMethodName, Mode=TwoWay}" + TextChanged="DebugCustomDialogComboBox_OnTextChanged" /> + + Translation="0,0,8" /> + CornerRadius="{x:Bind SettingsSearchBox.CornerRadius}" + GettingFocus="SettingsSearchBox_OnGettingFocus" + LosingFocus="SettingsSearchBox_OnLosingFocus"> - - + + + TextChanged="SettingsSearchBox_TextChanged" /> - - - + + + + Text="4 / 20" /> + Translation="0,0,16" /> diff --git a/CollapseLauncher/XAMLs/MainApp/Pages/SettingsPage.xaml.cs b/CollapseLauncher/XAMLs/MainApp/Pages/SettingsPage.xaml.cs index 4157fde1d..21dea4e1d 100644 --- a/CollapseLauncher/XAMLs/MainApp/Pages/SettingsPage.xaml.cs +++ b/CollapseLauncher/XAMLs/MainApp/Pages/SettingsPage.xaml.cs @@ -1,4 +1,4 @@ -#if !DISABLEDISCORD +#if !DISABLEDISCORD using CollapseLauncher.DiscordPresence; #endif using CollapseLauncher.CustomControls; @@ -13,18 +13,22 @@ using CollapseLauncher.Helper.Update; using CollapseLauncher.Pages.OOBE; using CollapseLauncher.Pages.SettingsContext; +using CollapseLauncher.Plugins; using CollapseLauncher.Statics; #if ENABLEUSERFEEDBACK using CollapseLauncher.Helper.Loading; using CollapseLauncher.XAMLs.Theme.CustomControls.UserFeedbackDialog; #endif +using CollapseLauncher.XAMLs.Theme.CustomControls.FullPageOverlay; using CommunityToolkit.WinUI; using Hi3Helper; using Hi3Helper.EncTool; +using Hi3Helper.Plugin.Core.Management; using Hi3Helper.SentryHelper; using Hi3Helper.Shared.ClassStruct; using Hi3Helper.Shared.Region; using Hi3Helper.Win32.FileDialogCOM; +using Hi3Helper.Win32.ManagedTools; using Microsoft.UI.Input; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Controls; @@ -126,6 +130,7 @@ public SettingsPage() this.EnableImplicitAnimation(true); this.SetAllControlsCursorRecursive(InputSystemCursor.Create(InputSystemCursorShape.Hand)); + ShareYourFeedbackButton.SetCursor(InputSystemCursor.Create(InputSystemCursorShape.Hand)); AboutApp.FindAndSetTextBlockWrapping(TextWrapping.Wrap, HorizontalAlignment.Center, TextAlignment.Center, true); IsInstantRegionChange = LauncherConfig.IsInstantRegionChange; @@ -150,7 +155,8 @@ public SettingsPage() GitVersionIndicatorHyperlink.NavigateUri = new Uri(new StringBuilder() .Append(RepoUrl) - .Append(ThisAssembly.Git.Sha).ToString()); + .Append(ThisAssembly.Git.Sha) + .ToString()); #pragma warning restore CS0618 // Type or member is obsolete if (IsAppLangNeedRestart) AppLangSelectionWarning.Visibility = Visibility.Visible; @@ -176,8 +182,6 @@ public SettingsPage() #if !ENABLEUSERFEEDBACK ShareYourFeedbackButton.Visibility = Visibility.Collapsed; -#else - ShareYourFeedbackButton.IsEnabled = SentryHelper.IsEnabled; #endif Task.Run(() => @@ -220,6 +224,7 @@ private void Page_Loaded(object sender, RoutedEventArgs e) AppDiscordPresence.SetActivity(ActivityType.AppSettings); #endif } + private void Page_Unloaded(object sender, RoutedEventArgs e) { FallbackCDNUtil.InitializeHttpClient(); @@ -259,11 +264,8 @@ private async void ClearMetadataFolder(object sender, RoutedEventArgs e) case ContentDialogResult.Primary: try { - var collapsePath = AppExecutablePath; - if (string.IsNullOrEmpty(collapsePath)) return; Directory.Delete(LauncherMetadataHelper.LauncherMetadataFolder, true); - Process.Start(collapsePath); - (WindowUtility.CurrentWindow as MainWindow)?.CloseApp(); + MainEntryPoint.ForceRestart(); } catch (Exception ex) { @@ -403,11 +405,9 @@ private async void CheckUpdate(object sender, RoutedEventArgs e) LauncherUpdateWatcher.GetStatus(new LauncherUpdateProperty { IsUpdateAvailable = isUpdateAvailable, - // ReSharper disable PossibleInvalidOperationException - NewVersionName = (GameVersion)(isUpdateAvailable - ? LauncherUpdateHelper.AppUpdateVersionProp.Version.Value - : LauncherUpdateHelper.LauncherCurrentVersion) - // ReSharper restore PossibleInvalidOperationException + NewVersionName = (isUpdateAvailable + ? LauncherUpdateHelper.AppUpdateVersionProp.Version + : LauncherUpdateHelper.LauncherCurrentVersion) ?? GameVersion.Empty }); } catch (Exception ex) @@ -476,7 +476,7 @@ static void ExitFromOverlay(object? sender, RoutedEventArgs args) #nullable restore } - private async void ShareYourFeedbackClick(object sender, RoutedEventArgs e) + private async void ShareYourFeedbackClick(object sender, PointerRoutedEventArgs e) { #if ENABLEUSERFEEDBACK var content = UserFeedbackTemplate.FeedbackTemplate; @@ -1019,6 +1019,7 @@ private void LanguageSelector_SelectionChanged(object sender, SelectionChangedEv SetAndSaveConfigValue("AppLanguage", selectedKey); LoadLocale(selectedKey); UpdateBindings.Update(); + PluginManager.SetPluginLocaleId(selectedKey); foreach (ComboBox comboBoxOthers in this.FindDescendants().OfType()) { @@ -1357,7 +1358,7 @@ private async void ProxyConnectivityTestButton_Click(object sender, RoutedEventA { if (progressRing != null) progressRing.IsIndeterminate = true; - UrlStatus urlStatus = await FallbackCDNUtil.GetURLStatusCode("https://gitlab.com/bagusnl/CollapseLauncher-ReleaseRepo/-/raw/main/LICENSE", default); + UrlStatus urlStatus = await FallbackCDNUtil.GetURLStatusCode("https://gitlab.com/bagusnl/CollapseLauncher-ReleaseRepo/-/raw/main/LICENSE", CancellationToken.None); if (!urlStatus.IsSuccessStatusCode) { InvokeError(); @@ -1609,7 +1610,7 @@ private async void ValidateAndApplyDnsSettings(object sender, RoutedEventArgs e) } catch (Exception ex) { - Interlocked.Exchange(ref HttpClientBuilder.SharedExternalDnsServers, lastDnsSettings); + HttpClientBuilder.SharedExternalDnsServers = lastDnsSettings; DnsSettingsTestTextFailed.Visibility = Visibility.Visible; ErrorSender.SendException(new InvalidOperationException("DNS Settings cannot be validated due to these errors.", ex)); await SentryHelper.ExceptionHandlerAsync(ex); @@ -1636,7 +1637,7 @@ private async void ValidateAndApplyDnsSettings(object sender, RoutedEventArgs e) private bool IsDbEnabled { - get => DbHandler.IsEnabled; + get => DbHandler.IsEnabled ?? false; set { DbHandler.IsEnabled = value; @@ -1940,6 +1941,7 @@ private bool AreShortcutsEnabled } #endregion + #region Settings Search private void InitializeSettingsSearch() { // Create brushes for highlighting @@ -2445,6 +2447,80 @@ private void DebugCustomDialogComboBox_OnTextChanged(AutoSuggestBox sender, Auto sender.ItemsSource = filtered; } } + #endregion + + #region Plugins + internal static void CopyLoadedPluginInformationClick(object sender, RoutedEventArgs e) + { + try + { + if (sender is not Button { Tag: PluginInfo asPluginInfo }) + { + return; + } + + string info = + $""" + Name: {asPluginInfo.Name} + Author: {asPluginInfo.Author} + Description: + {asPluginInfo.Description} + + ========= + + Plugin Version: {asPluginInfo.Version} + Interface Version: {asPluginInfo.StandardVersion} + Creation Date: {asPluginInfo.CreationDate?.ToString(LocalFullDateTimeConverter.FullFormat)} + Main Library Path: {asPluginInfo.PluginFilePath} + Loaded Presets: + """; + + foreach (PluginPresetConfigWrapper wrapper in asPluginInfo.PresetConfigs) + { + string name = wrapper.GameName; + string region = wrapper.ZoneName; + + info += $"\r\n � {name} - {region}"; + } + + Clipboard.CopyStringToClipboard(info); + } + catch (Exception ex) + { + LogWriteLine($"Failed to copy loaded plugin information: {ex}", LogType.Error, true); + SentryHelper.ExceptionHandler(ex); + } + } + + private async void OpenPluginManagerClick(object sender, RoutedEventArgs e) + { + if (sender is not Button asButton) + { + return; + } + + try + { + asButton.IsEnabled = false; + FullPageOverlay overlayMenu = new FullPageOverlay(new PluginManagerPage(), XamlRoot, true) + { + Size = FullPageOverlaySize.Full, + OverlayTitleSource = () => Lang._PluginManagerPage.PageTitle, + OverlayTitleIcon = new FontIconSource + { + Glyph = "\uE912", + FontSize = 16 + } + }; + + await overlayMenu.ShowAsync(); + } + finally + { + asButton.IsEnabled = true; + } + } + #endregion #region Network Cache private async void NetworkCacheModeClear(object sender, RoutedEventArgs e) diff --git a/CollapseLauncher/XAMLs/MainApp/Pages/UpdatePage.xaml.cs b/CollapseLauncher/XAMLs/MainApp/Pages/UpdatePage.xaml.cs index 46ca701a9..7848da45e 100644 --- a/CollapseLauncher/XAMLs/MainApp/Pages/UpdatePage.xaml.cs +++ b/CollapseLauncher/XAMLs/MainApp/Pages/UpdatePage.xaml.cs @@ -2,23 +2,18 @@ using CollapseLauncher.Helper.Update; using CommunityToolkit.Labs.WinUI.Labs.MarkdownTextBlock; using Hi3Helper; +using Hi3Helper.Plugin.Core.Management; using Hi3Helper.SentryHelper; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Controls; using System; +using System.IO; using System.Threading; using System.Threading.Tasks; +using Velopack; using static CollapseLauncher.Dialogs.SimpleDialogs; using static Hi3Helper.Locale; using static Hi3Helper.Shared.Region.LauncherConfig; -using System.IO; - - -#if !USEVELOPACK -using Squirrel; -#else -using Velopack; -#endif // ReSharper disable RedundantExtendsListEntry // ReSharper disable AsyncVoidMethod @@ -50,10 +45,9 @@ private async void LoadedAsyncRoutine(object sender, RoutedEventArgs e) if (LauncherUpdateHelper.AppUpdateVersionProp == null) throw new NullReferenceException("New version property in LauncherUpdateHelper.AppUpdateVersionProp should haven't be null!"); - if (LauncherUpdateHelper.AppUpdateVersionProp.Version != null) + if (LauncherUpdateHelper.AppUpdateVersionProp.Version.HasValue) { GameVersion newUpdateVersion = LauncherUpdateHelper.AppUpdateVersionProp.Version.Value; - NewVersionLabel.Text = newUpdateVersion.VersionString; } @@ -169,7 +163,7 @@ private async Task GetReleaseNote() try { - await using Stream networkStream = await FallbackCDNUtil.TryGetCDNFallbackStream($"changelog_{(IsPreview ? "preview" : "stable")}.md", _tokenSource.Token); + await using Stream networkStream = await FallbackCDNUtil.TryGetCDNFallbackStream($"changelog_{(IsPreview ? "preview" : "stable")}.md", token: _tokenSource.Token); ReleaseNotesBox.Text = await networkStream.ReadAsStringAsync(_tokenSource.Token); } catch (Exception ex) @@ -210,13 +204,8 @@ private void Updater_UpdaterStatusChanged(object sender, Updater.UpdaterStatus e DispatcherQueue?.TryEnqueue(() => { Status.Text = e.Status; - if (string.IsNullOrEmpty(e.Newver)) - { - return; - } - - GameVersion version = new GameVersion(e.Newver); - NewVersionLabel.Text = version.VersionString; + GameVersion? version = e.Newver; + NewVersionLabel.Text = version?.ToString(); }); } diff --git a/CollapseLauncher/XAMLs/MainApp/ValueConverters.cs b/CollapseLauncher/XAMLs/MainApp/ValueConverters.cs index 608dd909b..0d61defd2 100644 --- a/CollapseLauncher/XAMLs/MainApp/ValueConverters.cs +++ b/CollapseLauncher/XAMLs/MainApp/ValueConverters.cs @@ -1,8 +1,15 @@ -using Hi3Helper; +using CollapseLauncher.Plugins; +using Hi3Helper; using Hi3Helper.Data; +using Hi3Helper.Plugin.Core.Management; +using Hi3Helper.Plugin.Core.Update; +using Hi3Helper.SentryHelper; +using Hi3Helper.Shared.Region; using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Data; using System; +using System.IO; using Windows.Globalization.NumberFormatting; // ReSharper disable PartialTypeWithSinglePart @@ -30,13 +37,13 @@ public object ConvertBack(object value, Type targetType, object parameter, strin public partial class BooleanVisibilityConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, string input) => (bool)value ? Visibility.Visible : Visibility.Collapsed; - public object ConvertBack(object value, Type targetType, object parameter, string input) => new NotImplementedException(); + public object ConvertBack(object value, Type targetType, object parameter, string input) => (Visibility)value == Visibility.Visible; } public partial class InverseBooleanVisibilityConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, string input) => !(bool)value ? Visibility.Visible : Visibility.Collapsed; - public object ConvertBack(object value, Type targetType, object parameter, string input) => new NotImplementedException(); + public object ConvertBack(object value, Type targetType, object parameter, string input) => (Visibility)value == Visibility.Collapsed; } public partial class DoubleRound2Converter : IValueConverter @@ -150,7 +157,224 @@ public object ConvertBack(object value, Type targetType, object parameter, strin throw new NotImplementedException(); } } - + + public partial class InverseCountToVisibilityConverter : IValueConverter + { + public object Convert(object value, Type targetType, object parameter, string language) + => value.Equals(0) ? Visibility.Visible : Visibility.Collapsed; + + public object ConvertBack(object value, Type targetType, object parameter, string language) + { + throw new NotImplementedException(); + } + } + + public partial class InverseNumberToBoolConverter : NumberToBoolConverter + { + public override object Convert(object value, Type targetType, object parameter, string language) + { + return !(bool)base.Convert(value, targetType, parameter, language); + } + } + + public partial class NumberToBoolConverter : IValueConverter + { + public virtual object Convert(object value, Type targetType, object parameter, string language) + { + return value switch + { + double asDouble => asDouble > 0, + float asFloat => asFloat > 0, + long asLong => asLong > 0, + ulong asULong => asULong > 0, + int asInt => asInt > 0, + uint asUInt => asUInt > 0, + short asShort => asShort > 0, + ushort asUShort => asUShort > 0, + byte asByte => asByte > 0, + sbyte asSByte => asSByte > 0, + _ => throw new InvalidDataException() + }; + } + + public virtual object ConvertBack(object value, Type targetType, object parameter, string language) + { + throw new NotImplementedException(); + } + } + + public partial class GameNameLocaleConverter : IValueConverter + { + public object Convert(object value, Type targetType, object parameter, string language) + { + if (value is string asString) + { + return InnerLauncherConfig.GetGameTitleRegionTranslationString(asString, Locale.Lang._GameClientTitles); + } + + return value; + } + + public object ConvertBack(object value, Type targetType, object parameter, string language) + { + throw new NotImplementedException(); + } + } + + public partial class GameRegionLocaleConverter : IValueConverter + { + public object Convert(object value, Type targetType, object parameter, string language) + { + if (value is string asString) + { + return InnerLauncherConfig.GetGameTitleRegionTranslationString(asString, Locale.Lang._GameClientRegions); + } + + return value; + } + + public object ConvertBack(object value, Type targetType, object parameter, string language) + { + throw new NotImplementedException(); + } + } + + public partial class ByStringConverter : IValueConverter + { + public object Convert(object value, Type targetType, object parameter, string language) + { + if (value is string asString) + { + return string.Format(Locale.Lang._SettingsPage.Plugin_AuthorBy, asString); + } + + return value; + } + + public object ConvertBack(object value, Type targetType, object parameter, string language) + { + throw new NotImplementedException(); + } + } + + public partial class GamePluginIconConverter : IValueConverter + { +#nullable enable + public object Convert(object value, Type targetType, object parameter, string language) + { + if (value is not PluginInfo asPluginInfo) + { + return GetDefault(); + } + + try + { + string? iconUrl = null; + if (asPluginInfo.Instance is { } pluginInstance) + { + pluginInstance.GetPluginAppIconUrl(out iconUrl); + } + + if (string.IsNullOrEmpty(iconUrl)) + { + iconUrl = asPluginInfo.PluginManifest.PluginAlternativeIcon; + } + + if (string.IsNullOrEmpty(iconUrl)) + { + return GetDefault(); + } + + Uri? url; + if (PluginLauncherApiWrapper.IsDataActuallyBase64(iconUrl)) + { + string spriteFolder = Path.Combine(LauncherConfig.AppGameImgFolder, "cached"); + string? urlStr = PluginLauncherApiWrapper.CopyOverEmbeddedData(spriteFolder, iconUrl); + + if (string.IsNullOrEmpty(urlStr)) + { + return GetDefault(); + } + + url = new Uri(urlStr); + } + else if (!Uri.TryCreate(iconUrl, UriKind.Absolute, out url)) + { + return GetDefault(); + } + + return new BitmapIcon + { + UriSource = url, + ShowAsMonochrome = false + }; + } + catch (Exception ex) + { + string message = $"[GamePluginIconConverter::Convert()] Cannot get icon from plugin: {asPluginInfo.Name}"; + Logger.LogWriteLine(message, LogType.Error, true); + SentryHelper.ExceptionHandler(ex); + } + + return GetDefault(); + + FontIcon GetDefault() => new() + { + Glyph = "\uE74C", + FontSize = 20, + Width = 20, + Height = 20 + }; + } +#nullable restore + + public object ConvertBack(object value, Type targetType, object parameter, string language) + { + throw new NotImplementedException(); + } + } + + public partial class LocalFullDateTimeConverter : IValueConverter + { + public const string FullFormat = "dddd, MMMM dd, yyyy hh:mm tt (zzz)"; + + public object Convert(object value, Type targetType, object parameter, string language) + { + return value switch + { + DateTime asDateTime => GetFullFormat(asDateTime.ToLocalTime()), + DateTimeOffset asDateTimeOffset => GetFullFormat(asDateTimeOffset.ToLocalTime()), + _ => value + }; + + string GetFullFormat(DateTimeOffset offset) => offset.ToString(FullFormat); + } + + public object ConvertBack(object value, Type targetType, object parameter, string language) + { + throw new NotImplementedException(); + } + } + + public partial class TimeToStringConverter : IValueConverter + { + public object Convert(object value, Type targetType, object parameter, string language) + { + if (value is not double asDouble) + { + return Locale.Lang._Misc.IsBytesNotANumber; + } + + TimeSpan span = TimeSpan.FromSeconds(asDouble); + return span.ToString("mm\\:ss"); + } + + public object ConvertBack(object value, Type targetType, object parameter, string language) + { + throw new NotImplementedException(); + } + } + public partial class BooleanToIsEnabledOpacityConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, string language) @@ -200,4 +424,50 @@ public object ConvertBack(object value, Type targetType, object parameter, strin throw new NotImplementedException(); } } + + public partial class UpdateToVersionStringConverter : IValueConverter + { + public object Convert(object value, Type targetType, object parameter, string language) + => string.Format(Locale.Lang._PluginManagerPage.ListViewItemUpdateStatusAvailableButton, + value switch + { + PluginManifest asManifest => asManifest.PluginVersion, + null => GameVersion.Empty, + _ => (GameVersion)value + }); + + public object ConvertBack(object value, Type targetType, object parameter, string language) + { + throw new NotImplementedException(); + } + } + + public partial class UpdatingPercentageStringConverter : IValueConverter + { + public object Convert(object value, Type targetType, object parameter, string language) + => string.Format(Locale.Lang._PluginManagerPage.ListViewItemUpdateStatusAvailableButtonUpdating, + Math.Round((double)value, 2)); + + public object ConvertBack(object value, Type targetType, object parameter, string language) + { + throw new NotImplementedException(); + } + } + + public partial class PluginUpdatedToVersionStringConverter : IValueConverter + { + public object Convert(object value, Type targetType, object parameter, string language) + => string.Format(Locale.Lang._PluginManagerPage.ListViewItemUpdateStatusCompleted, + value switch + { + PluginManifest asManifest => asManifest.PluginVersion, + null => GameVersion.Empty, + _ => (GameVersion)value + }); + + public object ConvertBack(object value, Type targetType, object parameter, string language) + { + throw new NotImplementedException(); + } + } } diff --git a/CollapseLauncher/XAMLs/Prototype/MainPageNew.xaml b/CollapseLauncher/XAMLs/Prototype/MainPageNew.xaml index 74a3a0284..fe30e5d1b 100644 --- a/CollapseLauncher/XAMLs/Prototype/MainPageNew.xaml +++ b/CollapseLauncher/XAMLs/Prototype/MainPageNew.xaml @@ -7,7 +7,7 @@ mc:Ignorable="d"> - + 0 @@ -74,7 +74,7 @@ - + ShowAsync() + => ShowAsync(ContentDialogPlacement.Popup); + + public new IAsyncOperation ShowAsync( + ContentDialogPlacement placement) { if (Title is string titleString && Theme != ContentDialogTheme.Informational) { Grid titleStack = UIElementExtensions.CreateIconTextGrid( - text: titleString, - iconGlyph: ThemeTitleGlyph, - iconSize: 20, - iconFontFamily: "FontAwesomeSolid" - ).WithPadding(-8d, 0d, 0d, 0d); + text: titleString, + iconGlyph: ThemeTitleGlyph, + iconSize: 20, + iconFontFamily: "FontAwesomeSolid" + ).WithPadding(-8d, 0d, 0d, 0d); Title = titleStack; } return base.ShowAsync(); diff --git a/CollapseLauncher/XAMLs/Theme/CustomControls/FullPageOverlay/FullPageOverlay.Constants.cs b/CollapseLauncher/XAMLs/Theme/CustomControls/FullPageOverlay/FullPageOverlay.Constants.cs new file mode 100644 index 000000000..152e58826 --- /dev/null +++ b/CollapseLauncher/XAMLs/Theme/CustomControls/FullPageOverlay/FullPageOverlay.Constants.cs @@ -0,0 +1,9 @@ +namespace CollapseLauncher.XAMLs.Theme.CustomControls.FullPageOverlay; + +public partial class FullPageOverlay +{ + private const string TemplateNameSmokeLayerBackground = "SmokeLayerBackground"; + private const string TemplateNamePresenter = "Presenter"; + private const string TemplateNameOverlayTitleGrid = "OverlayTitleGrid"; + private const string TemplateNameCloseButton = "CloseButton"; +} diff --git a/CollapseLauncher/XAMLs/Theme/CustomControls/FullPageOverlay/FullPageOverlay.Properties.cs b/CollapseLauncher/XAMLs/Theme/CustomControls/FullPageOverlay/FullPageOverlay.Properties.cs new file mode 100644 index 000000000..62885df19 --- /dev/null +++ b/CollapseLauncher/XAMLs/Theme/CustomControls/FullPageOverlay/FullPageOverlay.Properties.cs @@ -0,0 +1,157 @@ +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Media; +using Microsoft.UI.Xaml.Shapes; +using System; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; + +#nullable enable +namespace CollapseLauncher.XAMLs.Theme.CustomControls.FullPageOverlay; + +public enum FullPageOverlaySize +{ + /// + /// Stretch to full, with 16px gap. + /// + Full, + + /// + /// Set the size to follow the content. + /// + FollowContent, + + /// + /// Stretch to full, with no gap. + /// + FullNoGap +} + +public partial class FullPageOverlay +{ + #region Fields + public Button? LayoutCloseButton; + private Rectangle? _layoutSmokeBackgroundGrid; + private ContentPresenter? _layoutContentPresenter; + private Grid? _layoutOverlayTitleGrid; + + private readonly bool _isAlwaysOnTop; + private Grid _parentOverlayGrid; + + private CancellationTokenSource? _closeCts; + + public static readonly List CurrentlyOpenedOverlays = []; + private static readonly Lock ThisThreadLock = new(); + #endregion + + #region Properties + /// + /// Defines the size of the overlay frame. + /// + public FullPageOverlaySize Size + { + get => (FullPageOverlaySize)GetValue(SizeProperty); + set => SetValue(SizeProperty, value); + } + + /// + /// Sets the background of the content frame. + /// + public Brush? ContentBackground + { + get => (Brush?)GetValue(ContentBackgroundProperty); + set => SetValue(ContentBackgroundProperty, value); + } + + /// + /// Sets the icon source of the overlay + /// + public IconSource? OverlayTitleIcon + { + get => (IconSource?)GetValue(OverlayTitleIconProperty); + set => SetValue(OverlayTitleIconProperty, value); + } + + /// + /// Sets the title of the overlay + /// + public string? OverlayTitle + { + get => (string?)GetValue(OverlayTitleProperty); + set => SetValue(OverlayTitleProperty, value); + } + + /// + /// Sets the visibility of the close button + /// + public Visibility CloseButtonVisibility + { + get => (Visibility)GetValue(CloseButtonVisibilityProperty); + set => SetValue(CloseButtonVisibilityProperty, value); + } + + /// + /// Sets the source callback to get the title of the overlay + /// + public Func? OverlayTitleSource + { + get; + set; + } + #endregion + + #region Callback Methods + private static async void OnUILayoutLoaded(object sender, RoutedEventArgs e) + { + try + { + await Task.Delay(300); + using (ThisThreadLock.EnterScope()) + { + ChangeTitleDragArea.Change(ChangeTitleDragArea.CurrentDragAreaType | DragAreaTemplate.OverlayOpened); + } + } + catch + { + // Ignored + } + } + + private static void OnUILayoutUnloaded(object sender, RoutedEventArgs e) + { + using (ThisThreadLock.EnterScope()) + { + if (sender is not FullPageOverlay asOverlay) + { + return; + } + + asOverlay.UnassignEvents(); + asOverlay.OverlayTitleSource = null; + asOverlay.OverlayTitle = null; + asOverlay.OverlayTitleIcon = null; + asOverlay.ContentBackground = null; + asOverlay.Content = null; + + asOverlay._closeCts?.Dispose(); + Interlocked.Exchange(ref asOverlay._closeCts, null); + Interlocked.Exchange(ref asOverlay._parentOverlayGrid!, null); + Interlocked.Exchange(ref asOverlay.LayoutCloseButton!, null); + Interlocked.Exchange(ref asOverlay._layoutSmokeBackgroundGrid!, null); + Interlocked.Exchange(ref asOverlay._layoutContentPresenter!, null); + Interlocked.Exchange(ref asOverlay._layoutOverlayTitleGrid!, null); + + GC.Collect(); + } + } + #endregion + + #region DependencyProperty + public static readonly DependencyProperty SizeProperty = DependencyProperty.Register(nameof(Size), typeof(FullPageOverlaySize), typeof(FullPageOverlay), new PropertyMetadata(FullPageOverlaySize.Full, AssignContentFrameSizeChanged)); + public static readonly DependencyProperty ContentBackgroundProperty = DependencyProperty.Register(nameof(ContentBackground), typeof(Brush), typeof(FullPageOverlay), new PropertyMetadata(null)); + public static readonly DependencyProperty OverlayTitleIconProperty = DependencyProperty.Register(nameof(OverlayTitleIcon), typeof(IconSource), typeof(FullPageOverlay), new PropertyMetadata(new FontIconSource { Glyph = "\uE80A" })); + public static readonly DependencyProperty OverlayTitleProperty = DependencyProperty.Register(nameof(OverlayTitle), typeof(string), typeof(FullPageOverlay), new PropertyMetadata(null)); + public static readonly DependencyProperty CloseButtonVisibilityProperty = DependencyProperty.Register(nameof(CloseButtonVisibility), typeof(Visibility), typeof(FullPageOverlay), new PropertyMetadata(Visibility.Visible)); + #endregion +} diff --git a/CollapseLauncher/XAMLs/Theme/CustomControls/FullPageOverlay/FullPageOverlay.cs b/CollapseLauncher/XAMLs/Theme/CustomControls/FullPageOverlay/FullPageOverlay.cs new file mode 100644 index 000000000..7f469a05f --- /dev/null +++ b/CollapseLauncher/XAMLs/Theme/CustomControls/FullPageOverlay/FullPageOverlay.cs @@ -0,0 +1,218 @@ +using CollapseLauncher.Extension; +using CollapseLauncher.Pages; +using Hi3Helper; +using Microsoft.UI.Input; +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Shapes; +using System; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; + +#nullable enable +namespace CollapseLauncher.XAMLs.Theme.CustomControls.FullPageOverlay; + +public partial class FullPageOverlay : ContentControl +{ + #region Constructors + public FullPageOverlay(FrameworkElement content, bool alwaysOnTop = false) : this(content, content.XamlRoot, alwaysOnTop) { } + + public FullPageOverlay(FrameworkElement content, XamlRoot xamlRoot, bool alwaysOnTop = false) + { + DefaultStyleKey = typeof(FullPageOverlay); + + Content = content; + XamlRoot = xamlRoot; + _isAlwaysOnTop = alwaysOnTop; + _parentOverlayGrid = XamlRoot.FindOverlayGrid(_isAlwaysOnTop); + } + #endregion + + #region Override Methods + protected override void OnApplyTemplate() + { + // Get the UI element from XAML template + _layoutSmokeBackgroundGrid = GetTemplateChild(TemplateNameSmokeLayerBackground) as Rectangle; + _layoutContentPresenter = GetTemplateChild(TemplateNamePresenter) as ContentPresenter; + _layoutOverlayTitleGrid = GetTemplateChild(TemplateNameOverlayTitleGrid) as Grid; + LayoutCloseButton = GetTemplateChild(TemplateNameCloseButton) as Button; + + // Set cursor type + InputCursor pointerCursor = InputSystemCursor.Create(InputSystemCursorShape.Hand); + LayoutCloseButton?.SetCursor(pointerCursor); + + // Initialize size type + AssignContentFrameSize(Size); + + AssignEvents(); + AssignBindings(); + base.OnApplyTemplate(); + } + #endregion + + #region Public Methods + public async Task ShowAsync() + { + using (ThisThreadLock.EnterScope()) + { + // Get the count of the Rows and Column so it can be spanned across the grid. + int parentGridRowCount = _parentOverlayGrid.RowDefinitions.Count; + int parentGridColumnCount = _parentOverlayGrid.ColumnDefinitions.Count; + // Add the UI element to the grid + _parentOverlayGrid.AddElementToGridRowColumn(this, + 0, + 0, + parentGridRowCount, + parentGridColumnCount); + + // Assign if CTS is null or cancelled already. + if (_closeCts is null || _closeCts.IsCancellationRequested) + { + _closeCts = new CancellationTokenSource(); + } + + // Update the drag area of the app + CurrentlyOpenedOverlays.Add(this); + } + + try + { + // Wait until close button is invalidating the token. + _closeCts.Token.ThrowIfCancellationRequested(); + await Task.Delay(Timeout.InfiniteTimeSpan, _closeCts.Token); + } + catch when (_closeCts.IsCancellationRequested) + { + // Ignored + } + finally + { + using (ThisThreadLock.EnterScope()) + { + // Dispose the CTS + _closeCts.Dispose(); + + // Set the visual state as hidden and remove the UI element from the overlay grid. + VisualStateManager.GoToState(this, "OverlayHidden", true); + _parentOverlayGrid.Children.Remove(this); + + // Update the drag area of the app + CurrentlyOpenedOverlays.Remove(this); + if (CurrentlyOpenedOverlays.Count == 0) + { + // Remove DragAreaTemplate.OverlayOpened flag if there's no any overlays opened anymore and update it + ChangeTitleDragArea.Change(ChangeTitleDragArea.CurrentDragAreaType & ~DragAreaTemplate.OverlayOpened); + } + } + } + } + + public void Hide() + { + using (ThisThreadLock.EnterScope()) + { + _closeCts?.Cancel(); + } + } + #endregion + + #region Internal Methods + private static void AssignContentFrameSizeChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) + { + if (d is FullPageOverlay asPageOverlay) + { + asPageOverlay.AssignContentFrameSize((FullPageOverlaySize)e.NewValue); + } + } + + private void AssignContentFrameSize(FullPageOverlaySize size) + { + if (_layoutSmokeBackgroundGrid is null || + _layoutContentPresenter is null || + LayoutCloseButton is null) + { + return; + } + + string overlaySizeStateString = $"OverlaySize{size}"; + + VisualStateManager.GoToState(this, "OverlayShowing", true); + VisualStateManager.GoToState(this, overlaySizeStateString, false); + } + + private void AssignEvents() + { + using (ThisThreadLock.EnterScope()) + { + Loaded += OnUILayoutLoaded; + Unloaded += OnUILayoutUnloaded; + UpdateBindingsInvoker.UpdateEvents += UpdateBindings; + + if (LayoutCloseButton != null) + { + LayoutCloseButton.Click += InvalidateTokenOnClose; + } + } + } + + private void UnassignEvents() + { + using (ThisThreadLock.EnterScope()) + { + Loaded -= OnUILayoutLoaded; + Unloaded -= OnUILayoutUnloaded; + UpdateBindingsInvoker.UpdateEvents -= UpdateBindings; + + if (LayoutCloseButton != null) + { + LayoutCloseButton.Click -= InvalidateTokenOnClose; + } + } + } + + private void InvalidateTokenOnClose(object sender, RoutedEventArgs _) + { + if (sender is Button asButton) + { + asButton.IsEnabled = false; + } + + Hide(); + } + + private void UpdateBindings(object? sender, EventArgs e) + { + ChangeTitleDragArea.UpdateLayout(); + AssignBindings(); + } + + private void AssignBindings() + { + // Binding close button text + if (LayoutCloseButton is { Content: Grid asCloseButtonGrid } && + asCloseButtonGrid.Children.FirstOrDefault() is TextBlock asCloseButtonTextBlock) + { + asCloseButtonTextBlock.BindProperty(TextBlock.TextProperty, Locale.Lang._Misc, nameof(Locale.Lang._Misc.CloseOverlay)); + asCloseButtonTextBlock.UpdateLayout(); + } + + // Binding overlay title visibility + if (_layoutOverlayTitleGrid?.Children.OfType().FirstOrDefault() is { } asOverlayTitleTextBlock) + { + asOverlayTitleTextBlock.BindProperty(VisibilityProperty, this, nameof(OverlayTitle), StringToVisibilityConverter); + } + + // Try update overlay title if title source is available + string? titleGet = OverlayTitleSource?.Invoke(); + if (titleGet != null) + { + OverlayTitle = titleGet; + } + } + #endregion + + #region Private Converter + private static readonly StringToVisibilityConverter StringToVisibilityConverter = new(); + #endregion +} diff --git a/CollapseLauncher/XAMLs/Theme/CustomControls/FullPageOverlay/FullPageOverlay.xaml b/CollapseLauncher/XAMLs/Theme/CustomControls/FullPageOverlay/FullPageOverlay.xaml new file mode 100644 index 000000000..e98c37f9f --- /dev/null +++ b/CollapseLauncher/XAMLs/Theme/CustomControls/FullPageOverlay/FullPageOverlay.xaml @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/CollapseLauncher/XAMLs/Theme/CustomControls/UserFeedbackDialog/UserFeedbackDialog.cs b/CollapseLauncher/XAMLs/Theme/CustomControls/UserFeedbackDialog/UserFeedbackDialog.cs index 4144327bb..d425d70f6 100644 --- a/CollapseLauncher/XAMLs/Theme/CustomControls/UserFeedbackDialog/UserFeedbackDialog.cs +++ b/CollapseLauncher/XAMLs/Theme/CustomControls/UserFeedbackDialog/UserFeedbackDialog.cs @@ -153,7 +153,7 @@ protected override void OnApplyTemplate() public async Task ShowAsync(Func? actionCallbackTaskOnSubmit) { // Find an overlay grid where the UI element will be spawn to - _parentOverlayGrid = FindOverlayGrid(XamlRoot, _isAlwaysOnTop); + _parentOverlayGrid = XamlRoot.FindOverlayGrid(_isAlwaysOnTop); // Get the count of the Rows and Column so it can be spanned across the grid. int parentGridRowCount = _parentOverlayGrid?.RowDefinitions.Count ?? 1; int parentGridColumnCount = _parentOverlayGrid?.ColumnDefinitions.Count ?? 1; @@ -329,11 +329,8 @@ private static async Task UseTokenAndWait([NotNull] CancellationTokenSource? tok try { // Perform a loop while waiting for the tokenSource to be invalidated. - while (true) - { - tokenSource.Token.ThrowIfCancellationRequested(); - await Task.Delay(1000, tokenSource.Token); - } + tokenSource.Token.ThrowIfCancellationRequested(); + await Task.Delay(Timeout.InfiniteTimeSpan, tokenSource.Token); } // Ignore the cancellation (invalidation) exception catch (OperationCanceledException) @@ -341,66 +338,6 @@ private static async Task UseTokenAndWait([NotNull] CancellationTokenSource? tok // ignored } } - - private static Grid FindOverlayGrid([NotNull] XamlRoot? root, bool isAlwaysOnTop) - { - // XAML root cannot be empty or null! - ArgumentNullException.ThrowIfNull(root); - - // If alwaysOnTop is not preferred, find for a grid called "OverlayRootGrid" under the XamlRoot's Content. - if (!isAlwaysOnTop) - { - FrameworkElement? parent = root.Content.FindDescendant("OverlayRootGrid", StringComparison.OrdinalIgnoreCase); - if (parent is not Grid parentAsGrid) - { - //If the "OverlayRootGrid" doesn't exist, start searching for any last grid existed. - goto FindAnyLastGrid; - } - - // Otherwise, return the "OverlayRootGrid" - return parentAsGrid; - } - - FindAnyLastGrid: - // Assign the XamlRoot's Content as grid. If it's not a grid, find any last child grid - // on the XamlRoot's VisualTree children. - Grid? topGrid = root.Content as Grid; - topGrid ??= FindLastChildGrid(root.Content); - - // If it still cannot find any grid, throw. - if (topGrid is null) - { - throw new InvalidOperationException("Cannot find any or the last grid in your XAML layout!"); - } - - // Otherwise, any grid that have been found. - return topGrid; - } - - private static Grid? FindLastChildGrid(DependencyObject? element) - { - // Get count of any children existed under the element's VisualTree - int visualTreeCount = VisualTreeHelper.GetChildrenCount(element); - if (visualTreeCount == 0) - { - // If none is found, return null. - return null; - } - - // Find the last grid to be found under the element's VisualTree - Grid? lastGrid = null; - for (int i = 0; i < visualTreeCount; i++) - { - DependencyObject currentObject = VisualTreeHelper.GetChild(element, i); - if (currentObject is Grid asGrid) - { - lastGrid = asGrid; - } - } - - // Return the result (whether if it's not found/as null, or any last grid) - return lastGrid; - } #endregion } diff --git a/CollapseLauncher/XAMLs/Theme/CustomControls/UserFeedbackDialog/UserFeedbackDialog.xaml b/CollapseLauncher/XAMLs/Theme/CustomControls/UserFeedbackDialog/UserFeedbackDialog.xaml index f03bccffe..f98141f6d 100644 --- a/CollapseLauncher/XAMLs/Theme/CustomControls/UserFeedbackDialog/UserFeedbackDialog.xaml +++ b/CollapseLauncher/XAMLs/Theme/CustomControls/UserFeedbackDialog/UserFeedbackDialog.xaml @@ -7,45 +7,44 @@ + xmlns:controls="using:CollapseLauncher.XAMLs.Theme.CustomControls.UserFeedbackDialog"> + TintOpacity="0.9" /> + TintOpacity="0.4" /> + TintOpacity="0.8" /> + TintOpacity="0.9" /> + TintOpacity="0.8" /> + TintOpacity="0.9" /> @@ -175,7 +174,8 @@ - + + @@ -214,7 +214,7 @@ Grid.Column="0" Grid.ColumnSpan="2" Height="Auto" - Margin="0, 0, -16, 0" + Margin="0,0,-16,0" HorizontalAlignment="Center" Opacity="1" Source="/Assets/Images/GamePoster/headerposter_genshin.png" @@ -255,16 +255,16 @@ - + - + @@ -331,15 +331,15 @@ VerticalAlignment="Center" FontWeight="SemiBold" /> + Value="100" /> StartCheck() - { -#if !USEVELOPACK - return await UpdateManager.CheckForUpdate(); -#else - return await _updateManager.CheckForUpdatesAsync(); -#endif - } + => await _updateManager.CheckForUpdatesAsync(); public async Task StartUpdate(UpdateInfo updateInfo, CancellationToken token = default) { @@ -127,26 +95,6 @@ public async Task StartUpdate(UpdateInfo updateInfo, CancellationToken tok try { -#if !USEVELOPACK - if (!updateInfo.ReleasesToApply.Any()) - { - NewVersionTag = new GameVersion(updateInfo.FutureReleaseEntry.Version.Version); - if (DoesLatestVersionExist(NewVersionTag.VersionString)) - { - Progress = new UpdaterProgress(UpdateStopwatch, 100, 100); - return true; - } - - Status.status = string.Format(Lang._UpdatePage.UpdateStatus4, - LauncherUpdateHelper.LauncherCurrentVersionString); - Status.message = Lang._UpdatePage.UpdateMessage4; - UpdateStatus(); - - await Task.Delay(3000); - return false; - } - NewVersionTag = new GameVersion(updateInfo.ReleasesToApply.FirstOrDefault()!.Version.Version); -#else _newVersionTag = new GameVersion(updateInfo.TargetFullRelease.Version.ToString()); if (IsCurrentHasLatestVersion(_newVersionTag.VersionString)) { @@ -157,36 +105,17 @@ public async Task StartUpdate(UpdateInfo updateInfo, CancellationToken tok await Task.Delay(3000, token); return false; } -#endif - -#if !USEVELOPACK - await UpdateManager.DownloadReleases(updateInfo.ReleasesToApply, InvokeDownloadUpdateProgress); - await UpdateManager.ApplyReleases(updateInfo, InvokeApplyUpdateProgress); -#else await _updateManager.DownloadUpdatesAsync(updateInfo, InvokeDownloadUpdateProgress, token); _velopackVersionToUpdate = updateInfo.TargetFullRelease; await EnsureVelopackUpdateExec(token); -#endif void InvokeDownloadUpdateProgress(int progress) { - _progress = new UpdaterProgress(_updateStopwatch, progress -#if !USEVELOPACK - / 2 -#endif - , 100); - UpdateProgress(); - } - -#if !USEVELOPACK - void InvokeApplyUpdateProgress(int progress) - { - Progress = new UpdaterProgress(UpdateStopwatch, progress / 2 + 50, 100); + _progress = new UpdaterProgress(_updateStopwatch, progress, 100); UpdateProgress(); } -#endif } catch (Exception ex) { @@ -199,27 +128,29 @@ void InvokeApplyUpdateProgress(int progress) return true; } - private async Task EnsureVelopackUpdateExec(CancellationToken token) + private static async Task EnsureVelopackUpdateExec(CancellationToken token) { string updateExecPath = Path.Combine(Path.GetDirectoryName(AppExecutablePath) ?? "", "..\\", "update.exe"); FileInfo updateExecFileInfo = new FileInfo(updateExecPath); - if (!IsFileVersionValid(updateExecFileInfo)) + if (IsFileVersionValid(updateExecFileInfo)) { - // Initialize new proxy-aware HttpClient - using HttpClient client = new HttpClientBuilder() - .UseLauncherConfig() - .SetAllowedDecompression(DecompressionMethods.None) - .Create(); - DownloadClient downloadClient = DownloadClient.CreateInstance(client); - - await using FileStream updateExecStream = updateExecFileInfo.Create(); - await FallbackCDNUtil.DownloadCDNFallbackContent(downloadClient, updateExecStream, "Update.exe", token); + return; } + // Initialize new proxy-aware HttpClient + using HttpClient client = new HttpClientBuilder() + .UseLauncherConfig() + .SetAllowedDecompression(DecompressionMethods.None) + .Create(); + DownloadClient downloadClient = DownloadClient.CreateInstance(client); + + await using FileStream updateExecStream = updateExecFileInfo.Create(); + await FallbackCDNUtil.DownloadCDNFallbackContent(downloadClient, updateExecStream, "Update.exe", token); + return; - bool IsFileVersionValid(FileInfo fileInfo) + static bool IsFileVersionValid(FileInfo fileInfo) { const string velopackDesc = "Velopack"; @@ -259,7 +190,7 @@ private async Task StartLegacyUpdate() string updateFileIndexUrl = CombineURLFromString(preferredCdn.URLPrefix, _channelName.ToLower(), "fileindex.json"); AppUpdateVersionProp updateInfo = await FallbackCDNUtil.DownloadAsJSONType(updateFileIndexUrl, - AppUpdateVersionPropJsonContext.Default.AppUpdateVersionProp, default)!; + AppUpdateVersionPropJsonContext.Default.AppUpdateVersionProp, CancellationToken.None)!; GameVersion? gameVersion = updateInfo!.Version; @@ -272,7 +203,7 @@ await FallbackCDNUtil.DownloadCDNFallbackContent(downloadClient, ApplyElevatedPa Environment.ProcessorCount > 8 ? 8 : Environment.ProcessorCount, - $"{_channelName.ToLower()}/ApplyUpdate.exe", default); + $"{_channelName.ToLower()}/ApplyUpdate.exe", CancellationToken.None); FallbackCDNUtil.DownloadProgress -= FallbackCDNUtil_DownloadProgress; await File.WriteAllTextAsync(Path.Combine(WorkingDir, "..\\", "release"), _channelName.ToLower()); @@ -284,10 +215,10 @@ private void FallbackCDNUtil_DownloadProgress(object sender, DownloadEvent e) UpdateProgress(); } - private bool IsCurrentHasLatestVersion(string latestVersionString) + internal static bool IsCurrentHasLatestVersion(string latestVersionString) { // Check legacy version first - var filePath = Path.Combine(AppExecutableDir, $@"..\app-{latestVersionString}\{Path.GetFileName(AppExecutablePath)}"); + string filePath = Path.Combine(AppExecutableDir, $@"..\app-{latestVersionString}\{Path.GetFileName(AppExecutablePath)}"); if (File.Exists(filePath)) return true; // If none does not exist, then check the latest version @@ -321,10 +252,10 @@ private bool IsCurrentHasLatestVersion(string latestVersionString) public async Task FinishUpdate(bool noSuicide = false) { - var newVerTagPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), "AppData", - "LocalLow", "CollapseLauncher", "_NewVer"); - var needInnoLogUpdatePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), - "AppData", "LocalLow", "CollapseLauncher", "_NeedInnoLogUpdate"); + string newVerTagPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), "AppData", + "LocalLow", "CollapseLauncher", "_NewVer"); + string needInnoLogUpdatePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), + "AppData", "LocalLow", "CollapseLauncher", "_NeedInnoLogUpdate"); _status.Status = string.Format(Lang._UpdatePage.UpdateStatus5 + $" {Lang._UpdatePage.UpdateMessage5}", _newVersionTag.VersionString); @@ -349,9 +280,6 @@ public async Task FinishUpdate(bool noSuicide = false) private async Task Suicide() { await Task.Delay(3000); -#if !USEVELOPACK - UpdateManager.RestartApp(); -#else if (_velopackVersionToUpdate != null) { try @@ -369,12 +297,11 @@ private async Task Suicide() Environment.Exit(100); } } -#endif } private static void SuicideLegacy() { - var applyUpdate = new Process + Process applyUpdate = new() { StartInfo = new ProcessStartInfo { @@ -413,8 +340,8 @@ public UpdaterProgress(Stopwatch currentStopwatch, int counter, int counterGoal) { if (counter == 0) TimeLeft = TimeSpan.Zero; - var elapsedMin = (float)currentStopwatch.ElapsedMilliseconds / 1000 / 60; - var minLeft = elapsedMin / counter * (counterGoal - counter); + float elapsedMin = (float)currentStopwatch.ElapsedMilliseconds / 1000 / 60; + float minLeft = elapsedMin / counter * (counterGoal - counter); TimeLeft = double.IsNaN(minLeft) || double.IsInfinity(minLeft) ? TimeSpan.Zero : TimeSpan.FromMinutes(minLeft); diff --git a/CollapseLauncher/XAMLs/Updater/UpdaterWindow.xaml.cs b/CollapseLauncher/XAMLs/Updater/UpdaterWindow.xaml.cs index 36259eb24..2350ed1bd 100644 --- a/CollapseLauncher/XAMLs/Updater/UpdaterWindow.xaml.cs +++ b/CollapseLauncher/XAMLs/Updater/UpdaterWindow.xaml.cs @@ -10,6 +10,7 @@ using System.IO; using System.Net; using System.Net.Http; +using System.Threading; using System.Threading.Tasks; using static CollapseLauncher.InnerLauncherConfig; using static Hi3Helper.Data.ConverterTool; @@ -87,12 +88,12 @@ await FallbackCDNUtil.DownloadCDNFallbackContent(downloadClient, ApplyElevatedPa ? 8 : Environment.ProcessorCount, $"{m_arguments.Updater.UpdateChannel.ToString().ToLower()}/ApplyUpdate.exe", - default); + CancellationToken.None); FallbackCDNUtil.DownloadProgress -= FallbackCDNUtil_DownloadProgress; await File.WriteAllTextAsync(Path.Combine(WorkingDir, "..\\", "release"), m_arguments.Updater.UpdateChannel.ToString().ToLower()); - if (updateInfo.Version != null) + if (updateInfo.Version.HasValue) { var ver = updateInfo.Version.Value; Status.Text = string.Format(Lang._UpdatePage.UpdateStatus5, ver.VersionString); diff --git a/CollapseLauncher/aot-locale-cleanup.bat b/CollapseLauncher/aot-locale-cleanup.bat index 4566eee0f..363a3c35b 100644 --- a/CollapseLauncher/aot-locale-cleanup.bat +++ b/CollapseLauncher/aot-locale-cleanup.bat @@ -92,8 +92,9 @@ goto :EOF :deleteDir set thePath="%root%\%~n1" echo Removing %thePath% -if /I exist %thePath% ( - rmdir /S /Q %thePath% +if /I exist "%thePath%" ( + rmdir /S /Q "%thePath%" ) +goto :EOF exit /B \ No newline at end of file diff --git a/CollapseLauncher/app.manifest b/CollapseLauncher/app.manifest index 2ce1ca3a1..7b2c1a7a3 100644 --- a/CollapseLauncher/app.manifest +++ b/CollapseLauncher/app.manifest @@ -1,41 +1,25 @@ - - 1 - - - - + + + - - - - - Specifying requestedExecutionLevel element will disable file and registry virtualization. - Remove this element if your application requires this virtualization for backwards - compatibility. - --> - - - - - - - - - true/PM - PerMonitorV2, PerMonitor - - - - - - - - - - + + + PerMonitorV2 + + + \ No newline at end of file diff --git a/CollapseLauncher/packages.lock.json b/CollapseLauncher/packages.lock.json index baf8d219b..c36ca485d 100644 --- a/CollapseLauncher/packages.lock.json +++ b/CollapseLauncher/packages.lock.json @@ -95,29 +95,29 @@ }, "Libsql.Client": { "type": "Direct", - "requested": "[0.5.0, )", - "resolved": "0.5.0", - "contentHash": "5Tw6O9sBDAN1aV+kpOSVvqvFk6Ahk6bYz0TTx3808Dp40M45gKTtzTzI9SS1VeAkljE6BAOeKaykpPnG36oOgw==" + "requested": "[0.5.1, )", + "resolved": "0.5.1", + "contentHash": "5fJusmhN7snIZzlsZ0xpQOoNvWZkJKS2/hhljLz8qvEPIJZgYxpkWWCROrSDpjMxQpixqI/nUhfhrQR67jVVoA==" }, "Markdig.Signed": { "type": "Direct", - "requested": "[0.41.3, )", - "resolved": "0.41.3", - "contentHash": "BB+2H62tQNcLU4depukiuok96UMqV4zOAtSGPM4UiO1OKbgEnpmIscHVJ4qir1LWjWzODLugfD8qs2RWxmA9JA==" + "requested": "[0.42.0, )", + "resolved": "0.42.0", + "contentHash": "3jWKp1NO5Rlk2NrS6iBZvZ0iEysZ1rmyPSWYyLoorynRM0Euw7XBEE9cGHkI+5yds8KhitiSI+W0CLHnTrSW0Q==" }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Direct", - "requested": "[9.0.7, )", - "resolved": "9.0.7", - "contentHash": "iPK1FxbGFr2Xb+4Y+dTYI8Gupu9pOi8I3JPuPsrogUmEhe2hzZ9LpCmolMEBhVDo2ikcSr7G5zYiwaapHSQTew==" + "requested": "[9.0.9, )", + "resolved": "9.0.9", + "contentHash": "/hymojfWbE9AlDOa0mczR44m00Jj+T3+HZO0ZnVTI032fVycI0ZbNOVFP6kqZMcXiLSYXzR2ilcwaRi6dzeGyA==" }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Direct", - "requested": "[9.0.7, )", - "resolved": "9.0.7", - "contentHash": "sMM6NEAdUTE/elJ2wqjOi0iBWqZmSyaTByLF9e8XHv6DRJFFnOe0N+s8Uc6C91E4SboQCfLswaBIZ+9ZXA98AA==", + "requested": "[9.0.9, )", + "resolved": "9.0.9", + "contentHash": "FEgpSF+Z9StMvrsSViaybOBwR0f0ZZxDm8xV5cSOFiXN/t+ys+rwAlTd/6yG7Ld1gfppgvLcMasZry3GsI9lGA==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9" } }, "Microsoft.Graphics.Win2D": { @@ -131,9 +131,9 @@ }, "Microsoft.NET.ILLink.Tasks": { "type": "Direct", - "requested": "[9.0.7, )", - "resolved": "9.0.7", - "contentHash": "SZ1brSGoLnhLbE8QUZrtN6YwzN2gDT1wbx9qDBEfFFJcstiDTjJ6ygNuTPBV/K7SjGfx2YNbcJi5+ygbPOZpDg==" + "requested": "[9.0.9, )", + "resolved": "9.0.9", + "contentHash": "cHi1os/s6aobEgNkbOh/jW+ru//rHuedvj4PmTh2mMY7et/mJjqphBeXeKCesDvMd0+E2JyX9EPZZC4VRKslXg==" }, "Microsoft.NETCore.Targets": { "type": "Direct", @@ -143,37 +143,36 @@ }, "Microsoft.Web.WebView2": { "type": "Direct", - "requested": "[1.0.3415-prerelease, )", - "resolved": "1.0.3415-prerelease", - "contentHash": "7CGb9Y+KGdrJEKhrkU9g+Cz4WjG8wIeWx8eWbKqLgHZEUMayNfyxvILmE05gXhBnG/nz+i1cVLeGfrmIPNMjXQ==" + "requested": "[1.0.3485.44, )", + "resolved": "1.0.3485.44", + "contentHash": "4hk+MDJcW6Hcvtfb0qv0zba9mpBFxM2GO9gJ+8Nq/zoAdwFanmt7jzvM07NPB/UcuQ/jZpKh9IUDL/eVOEFh2A==" }, "Microsoft.Windows.CsWinRT": { "type": "Direct", - "requested": "[2.2.0, )", - "resolved": "2.2.0", - "contentHash": "R8MDVawukHrKgYCFgYaoLfbAna/FrImEFRxDK9k8ITbrXv3KLE5uN6tRqrNV83H4MFdqJ/uiA/hg1cSsXkl0vw==" + "requested": "[2.3.0-prerelease.250720.1, )", + "resolved": "2.3.0-prerelease.250720.1", + "contentHash": "2Anaw2yEhLgBXt5Uif3HWuqC+VfjEgnUNlQ9aLKPJcyLGQseB7Nk/TTRt+c6Jv4ud7Ss9Q9pGsFIdnpU2jc3iw==" }, "Microsoft.Windows.SDK.BuildTools": { "type": "Direct", - "requested": "[10.0.26100.4654, )", - "resolved": "10.0.26100.4654", - "contentHash": "2mgcOlj/t2RfSyyw+pVESfO+Tk1RkfQzto9Vrq42M1lUQIfQEwbi8QLha9GXWIOj+TFzeHIEJckIoF25mgiM8A==" + "requested": "[10.0.26100.4948, )", + "resolved": "10.0.26100.4948", + "contentHash": "o0T4CVaumDjPNNijKiM7p25vHKdyKqYvaVVLgQO02KTOoUDlgMYJVUQAXn1IG0G9/ZsdZ+bdgWxgQsrO/b37qw==" }, "Microsoft.WindowsAppSDK": { "type": "Direct", - "requested": "[1.8.250702007-experimental4, )", - "resolved": "1.8.250702007-experimental4", - "contentHash": "nByTnXrYJyR+bBJDM8fOTpsddm2VGb5BfryIwon0ZCyJBfgVCv/Y7bJmVbBSiwdlySuJiENmlKlQTeuYNtd5eg==", + "requested": "[1.8.250907003, )", + "resolved": "1.8.250907003", + "contentHash": "FCTiOXXnp9EGvVAuLtQc9LT41kj4JZ1Nis9pTrNCubjOrIQAzpJdA3OfWuFCMktsx/s/nWbpQ1JQ4jUAQQDoLA==", "dependencies": { - "Microsoft.WindowsAppSDK.AI": "[1.8.407-experimental]", - "Microsoft.WindowsAppSDK.Base": "[1.8.250509001-experimental]", - "Microsoft.WindowsAppSDK.DWrite": "[1.8.25052801-experimental3]", - "Microsoft.WindowsAppSDK.Foundation": "[1.8.250701000-experimental]", - "Microsoft.WindowsAppSDK.InteractiveExperiences": "[1.8.250626001-experimental]", - "Microsoft.WindowsAppSDK.ML": "[1.8.126-experimental]", - "Microsoft.WindowsAppSDK.Runtime": "[1.8.250702007-experimental4]", - "Microsoft.WindowsAppSDK.Widgets": "[1.8.250610001-experimental]", - "Microsoft.WindowsAppSDK.WinUI": "[1.8.250701000-experimental]" + "Microsoft.WindowsAppSDK.AI": "[1.8.37]", + "Microsoft.WindowsAppSDK.Base": "[1.8.250831001]", + "Microsoft.WindowsAppSDK.DWrite": "[1.8.25090401]", + "Microsoft.WindowsAppSDK.Foundation": "[1.8.250906002]", + "Microsoft.WindowsAppSDK.InteractiveExperiences": "[1.8.250906004]", + "Microsoft.WindowsAppSDK.Runtime": "[1.8.250907003]", + "Microsoft.WindowsAppSDK.Widgets": "[1.8.250904007]", + "Microsoft.WindowsAppSDK.WinUI": "[1.8.250906003]" } }, "Microsoft.Xaml.Behaviors.WinUI.Managed": { @@ -218,9 +217,9 @@ }, "System.CommandLine": { "type": "Direct", - "requested": "[2.0.0-beta6.25358.103, )", - "resolved": "2.0.0-beta6.25358.103", - "contentHash": "YE8bPzXelsU4Fm4mHIFKwPHYJ1RT0hr1b5+tiyjFk4YYpA+WKzdYxrvdJVJIoC+2vbtffajA928Qe7xUj0WR4g==" + "requested": "[2.0.0-beta7.25380.108, )", + "resolved": "2.0.0-beta7.25380.108", + "contentHash": "/KPE7tYINMkbKjUPs6OUSB/ga5kZl5MUhqWWO2cj8WX56Me/edU6iqXYcx9U+JioMY/wefBZqSgEpwMooHn73g==" }, "System.CommandLine.NamingConventionBinder": { "type": "Direct", @@ -239,21 +238,31 @@ }, "System.Security.Cryptography.ProtectedData": { "type": "Direct", - "requested": "[9.0.7, )", - "resolved": "9.0.7", - "contentHash": "OAiDZTyzIzgbtrjzbMlprCxvlXpFW7q+JVOSEc/v4jgLBF4hVSey0MQ06MyctGjspKyJBdGj6k6MuqjiZV9c5Q==" + "requested": "[9.0.9, )", + "resolved": "9.0.9", + "contentHash": "XN37933FTzEkqGJoOTunvnvzAv/4VO/9wQ0QwsGcrR5KyQpYT0z4Ssm+f+fpY9bea6srypFp3JjNPHHC26xzLw==" }, "System.Text.Encoding.CodePages": { "type": "Direct", - "requested": "[9.0.7, )", - "resolved": "9.0.7", - "contentHash": "zKONueQNAT06iqBFSsyH+29WfwaHXoO3o2xtuTcUjUgX0k9SzPX4MpUs+/J7lcHFPnB6yHztBeAJMLVlMqbCrA==" + "requested": "[9.0.9, )", + "resolved": "9.0.9", + "contentHash": "5D+YO1AmHOPmslqlt+QT4zkR9vQRt46OXHRihqN1v0PLKeFe7KO1YuCJeUE4uNiPGJi0T1Y2fC9GHqhwvfkHDA==" }, "System.Text.Json": { "type": "Direct", - "requested": "[9.0.7, )", - "resolved": "9.0.7", - "contentHash": "u/lN2FEEXs3ghj2ta8tWA4r2MS9Yni07K7jDmnz8h1UPDf0lIIIEMkWx383Zz4fJjJio7gDl+00RYuQ/7R8ZQw==" + "requested": "[9.0.9, )", + "resolved": "9.0.9", + "contentHash": "NEnpppwq67fRz/OvQRxsEMgetDJsxlxpEsAFO/4PZYbAyAMd4Ol6KS7phc8uDoKPsnbdzRLKobpX303uQwCqdg==" + }, + "ThisAssembly.Constants": { + "type": "Direct", + "requested": "[2.0.14, )", + "resolved": "2.0.14", + "contentHash": "vUEVX7ltHS6nCE1bCC/XwxE+htL54uZXoIQm08nlviAsAfPyNnn8DqtCYWjIufqqEbJkvaCeuQelYkmRS40qBg==", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.Threading.Tasks.Extensions": "4.5.4" + } }, "TurnerSoftware.DinoDNS": { "type": "Direct", @@ -299,13 +308,13 @@ }, "Google.Protobuf": { "type": "Transitive", - "resolved": "3.31.1", - "contentHash": "gSnJbUmGiOTdWddPhqzrEscHq9Ls6sqRDPB9WptckyjTUyx70JOOAaDLkFff8gManZNN3hllQ4aQInnQyq/Z/A==" + "resolved": "3.32.1", + "contentHash": "HbFFRNU46e1E+qhGvwCDAO2EZ80WADqlkNqlOBYvGi7SNxwMPkTrReZgCg9/TrXwLO/n0za+AIiT2IplzqrjZw==" }, "Hi3Helper.ZstdNet": { "type": "Transitive", - "resolved": "1.6.4", - "contentHash": "/0HO97NquyAeu67BznsPG3Bitb2RweDlRd39Dm0N70pIb6ETjsQI/ysnwGrygxrPwwE25oDNoueAaJfOZTrACg==" + "resolved": "1.6.5", + "contentHash": "0Voe4Vi/kcUR+/33mOIKcJlP73oK9iauA2MuHXB0IHDvrbzT02L/2tfyTe621904LzN2zaML7JGKnOOLzuzmFQ==" }, "Microsoft.CSharp": { "type": "Transitive", @@ -314,136 +323,114 @@ }, "Microsoft.Extensions.DependencyInjection": { "type": "Transitive", - "resolved": "9.0.7", - "contentHash": "i05AYA91vgq0as84ROVCyltD2gnxaba/f1Qw2rG7mUsS0gv8cPTr1Gm7jPQHq7JTr4MJoQUcanLVs16tIOUJaQ==", + "resolved": "9.0.9", + "contentHash": "zQV2WOSP+3z1EuK91ULxfGgo2Y75bTRnmJHp08+w/YXAyekZutX/qCd88/HOMNh35MDW9mJJJxPpMPS+1Rww8A==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9" } }, "Microsoft.Extensions.Logging": { "type": "Transitive", - "resolved": "9.0.7", - "contentHash": "fdIeQpXYV8yxSWG03cCbU2Otdrq4NWuhnQLXokWLv3L9YcK055E7u8WFJvP+uuP4CFeCEoqZQL4yPcjuXhCZrg==", + "resolved": "9.0.9", + "contentHash": "MaCB0Y9hNDs4YLu3HCJbo199WnJT8xSgajG1JYGANz9FkseQ5f3v/llu3HxLI6mjDlu7pa7ps9BLPWjKzsAAzQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection": "9.0.7", - "Microsoft.Extensions.Logging.Abstractions": "9.0.7", - "Microsoft.Extensions.Options": "9.0.7" + "Microsoft.Extensions.DependencyInjection": "9.0.9", + "Microsoft.Extensions.Logging.Abstractions": "9.0.9", + "Microsoft.Extensions.Options": "9.0.9" } }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "9.0.7", - "contentHash": "trJnF6cRWgR5uMmHpGoHmM1wOVFdIYlELlkO9zX+RfieK0321Y55zrcs4AaEymKup7dxgEN/uJU25CAcMNQRXw==", + "resolved": "9.0.9", + "contentHash": "loxGGHE1FC2AefwPHzrjPq7X92LQm64qnU/whKfo6oWaceewPUVYQJBJs3S3E2qlWwnCpeZ+dGCPTX+5dgVAuQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", - "Microsoft.Extensions.Primitives": "9.0.7" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9", + "Microsoft.Extensions.Primitives": "9.0.9" } }, "Microsoft.Extensions.Primitives": { "type": "Transitive", - "resolved": "9.0.7", - "contentHash": "ti/zD9BuuO50IqlvhWQs9GHxkCmoph5BHjGiWKdg2t6Or8XoyAfRJiKag+uvd/fpASnNklfsB01WpZ4fhAe0VQ==" + "resolved": "9.0.9", + "contentHash": "z4pyMePOrl733ltTowbN565PxBw1oAr8IHmIXNDiDqd22nFpYltX9KhrNC/qBWAG1/Zx5MHX+cOYhWJQYCO/iw==" }, "Microsoft.Win32.SystemEvents": { "type": "Transitive", - "resolved": "9.0.7", - "contentHash": "lFGY2aGgmMREPJEfOmZcA6v0CLjWVpcfNHRgqYMoSQhy80+GxhYqdW5xe+DCLrVqE1M7/0RpOkIo49/KH/cd/A==" + "resolved": "9.0.9", + "contentHash": "eJU9vZbN710Cc25p/jPecPEL+gFcnynAvznNRnEvMU7i7u0PSjFXlGO4SOlaIUvkykTlS2N++M9B/coxYT7aPw==" }, "Microsoft.Windows.SDK.BuildTools.MSIX": { "type": "Transitive", - "resolved": "1.7.20250508.1", - "contentHash": "omgDNQElO0w0wY20I7XLGHISyn7Z4quh9Pc+Gp9XkRHJgiks7ARDhq4Vu+DK32bDoCBrFe1CLK4ovete4QiuVw==" - }, - "Microsoft.Windows.SDK.Win32Metadata": { - "type": "Transitive", - "resolved": "63.0.31-preview", - "contentHash": "ImR/LEJIcTiQuwYognFXPED1+zRjlb4WYX5mC3E8d0Q09Zey+MMqfMDxNlX1vBbcP3dy/Fp0Lbav25FsXZwyYQ==" - }, - "Microsoft.Windows.WDK.Win32Metadata": { - "type": "Transitive", - "resolved": "0.13.25-experimental", - "contentHash": "IM50tb/+UIwBr9FMr6ZKcZjCMW+Axo6NjGqKxgjUfyCY8dRnYUfrJEXxAaXoWtYP4X8EmASmC1Jtwh4XucseZg==", - "dependencies": { - "Microsoft.Windows.SDK.Win32Metadata": "63.0.31-preview" - } + "resolved": "1.7.20250829.1", + "contentHash": "IMdvRmCIZnBS5GkYnv0po1bcx6U1OF39pqA4TphQ9evDzpCRoSE19/PkDvlUNNrBavTsLIEJgd/TAIFner75ow==" }, "Microsoft.WindowsAppSDK.AI": { "type": "Transitive", - "resolved": "1.8.407-experimental", - "contentHash": "evbWwVGjLM2YPajnt4GztSUFJEp9Mk/6KdOU/LL2i3VB/gmzyAZBKwi7Xj8a7EDG3A4GuFY+iTs8omIbpIxXbA==", + "resolved": "1.8.37", + "contentHash": "WvH7ur+R2N8c3deB8y7q7+Wwx7zybkC6LMS/KNqSYXlSOr75/WCZYwqwrPHJ/63YIUVhka7nJos9g4rIe7SFCw==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.Foundation": "1.8.250701000-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001", + "Microsoft.WindowsAppSDK.Foundation": "1.8.250906002" } }, "Microsoft.WindowsAppSDK.Base": { "type": "Transitive", - "resolved": "1.8.250509001-experimental", - "contentHash": "kw60pLocD7M09t5bOxcx6juKdk2e5xdSO5cGCaedcNgD+e1h92vUFT9WU1xCzc0sXIt2x1FL426T606PjoXXUQ==", + "resolved": "1.8.250831001", + "contentHash": "8LlfXBS2Hpw+OoVXViJmIOPXl0nMbqMaFR3j6+QHFNc62VULwPEcXiMRcP2WbV/+mtC7W2LH6yx6uu/Hrr9lVw==", "dependencies": { - "Microsoft.Windows.SDK.BuildTools": "10.0.22621.3233", - "Microsoft.Windows.SDK.BuildTools.MSIX": "1.7.20250508.1" + "Microsoft.Windows.SDK.BuildTools": "10.0.26100.4654", + "Microsoft.Windows.SDK.BuildTools.MSIX": "1.7.20250829.1" } }, "Microsoft.WindowsAppSDK.DWrite": { "type": "Transitive", - "resolved": "1.8.25052801-experimental3", - "contentHash": "VQLKFZ4a4sn9d9aGIUFsjEmQM5RAW3RUFCkCcyUXY2aF2lVD09imT9m9hnKcmtjkkZPZtJzLBwq3tIxmnRe2Cg==", + "resolved": "1.8.25090401", + "contentHash": "WJ0p9yMgiNYqU2O5ZKCXcb7FBjryIUUopgeYMvnlf1yBUYgdjMFMkoJqYVqkz866wnntiB2IZhLxEzhFzvVs1A==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250501001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001" } }, "Microsoft.WindowsAppSDK.Foundation": { "type": "Transitive", - "resolved": "1.8.250701000-experimental", - "contentHash": "wM6C3p9x6nGRVnpZMTSU5sitBDW27jgu9Dzu0Ru6NTzOtqA0OQIOUK7j08W0V+Um33ZrWoUGJIVZnrYrzOHFYg==", + "resolved": "1.8.250906002", + "contentHash": "ltIXeHUX0AATpqmx/oBcRK+zhtK0KAfoGqItlQRlef9kG7Itj9iXAI+1EdFr4cQYzHzFM3PPLszEWDyR633svA==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250626001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001", + "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250906004" } }, "Microsoft.WindowsAppSDK.InteractiveExperiences": { "type": "Transitive", - "resolved": "1.8.250626001-experimental", - "contentHash": "HXNtlVduthY3sOenbcgxI7rHqkCpVN0QU1hjTEAzuPPDWO1hQ22OfByKF/yUgDrwv8KxfRUe1vgUX4JwbeFDGQ==", - "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250501001-experimental" - } - }, - "Microsoft.WindowsAppSDK.ML": { - "type": "Transitive", - "resolved": "1.8.126-experimental", - "contentHash": "LW/MPS8qHa4wQVdsH+s1AjUhaUVeT+nSmjj8md/hNsKhp/z9qMDXv26ht0k0o+VbbdhRCrSrJYtNEuoQCOoOww==", + "resolved": "1.8.250906004", + "contentHash": "UoK2yeZiycD1DmADHZz+hcMAoOaUfXLc9qUPfOjmVeKQ6i5ghGMjx/nd49bksP3wVhmSGHxb3argRKWPkK5maw==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.Foundation": "1.8.250701000-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001" } }, "Microsoft.WindowsAppSDK.Runtime": { "type": "Transitive", - "resolved": "1.8.250702007-experimental4", - "contentHash": "zm0LhlOxut0yGEox8aGSq73RadSm7i/5RrKM9Ygk0+BgmC3t27wekr5BUsDFMdakvn/8dAzNiM4HZxFHFTniEg==", + "resolved": "1.8.250907003", + "contentHash": "URsthdat9pv1wnRNAy0WA5yejsc47QsSjjJ+L6INEgIFilrp4/LYndpHkoWh3KwBSjwkskvZlSprbOl09YVg/g==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001" } }, "Microsoft.WindowsAppSDK.Widgets": { "type": "Transitive", - "resolved": "1.8.250610001-experimental", - "contentHash": "hpqPDxj+BmUv+tFsEdE/Fv8UIvLDKPIc96oKgZwlFfIwWmqh0UVnVPj9zqKEKbnZw9GNtSDW93w0J/LgcIvnZQ==", + "resolved": "1.8.250904007", + "contentHash": "sgwdXYhb8S4JjBmWWiFxALT1xK0fJeAbisolctmodMX7tlvBXDgUyvl/GHfTQ61DGIiW+kokX61WR46L2YlhAA==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250501001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001" } }, "Microsoft.WindowsAppSDK.WinUI": { "type": "Transitive", - "resolved": "1.8.250701000-experimental", - "contentHash": "vkA9eI9aTzg+YH/QTQgFyuJv02KOvHIlpmkV6RhyfNt/Z1faZmtOWFVPpnmE+0GJZRHyBkHX/iQ7RZ0xZK5r/A==", + "resolved": "1.8.250906003", + "contentHash": "6oskwUluqlDGwUcwYlY3GWTMLajyjh9e790SmWzCCMDRV6sunYbqp7DkiSLzn8nhgSbGvmj6zG92JnkYRlbrXw==", "dependencies": { "Microsoft.Web.WebView2": "1.0.3179.45", - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.Foundation": "1.8.250701000-experimental", - "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250626001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001", + "Microsoft.WindowsAppSDK.Foundation": "1.8.250906002", + "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250906004" } }, "NuGet.Versioning": { @@ -453,16 +440,16 @@ }, "Sentry": { "type": "Transitive", - "resolved": "5.12.0", - "contentHash": "m3C9urnnPhvk+Ua+771NF6+qw4mLY9QKBwM9IaJFNvqslh6Yb+EBFckwP0V4jaMHdgyPBAjegcBE1lR9vJ6kAw==" + "resolved": "5.15.0", + "contentHash": "JWJxQHYx6JadoQwyoPg/vNgfWJRIN+EaRpko9va5hDQ8QdkXnxz5CINnL/us8JLC5s7JHIFFfk6nDEGCCC6noQ==" }, "SharpHDiffPatch.Core": { "type": "Transitive", - "resolved": "2.3.3", - "contentHash": "KQK+381J3Y2MjxwoG63vvPkDFReN03fp6tCVE6OCctZSgxXhQ0pXCpruX5xyhstx/I6yGPVBejmAyodaSK4tGQ==", + "resolved": "2.3.4", + "contentHash": "Id0lCnBTvvFRUQl6EArE449RmPh/hqjxnhDxQLUgIMMad2nF2ryY7Hh1oKazumgk0Ov7c5/aLiAA6lYCfv1mMw==", "dependencies": { - "Hi3Helper.ZstdNet": "1.6.4", - "ZstdSharp.Port": "0.8.5" + "Hi3Helper.ZstdNet": "1.6.5", + "ZstdSharp.Port": "0.8.6" } }, "System.Buffers": { @@ -470,74 +457,72 @@ "resolved": "4.6.0", "contentHash": "lN6tZi7Q46zFzAbRYXTIvfXcyvQQgxnY7Xm6C6xQ9784dEL1amjM6S6Iw4ZpsvesAKnRVsM4scrDQaDqSClkjA==" }, + "System.Collections.Immutable": { + "type": "Transitive", + "resolved": "9.0.9", + "contentHash": "/kpkgDxH984e3J3z5v/DIFi+0TWbUJXS8HNKUYBy3YnXtK09JVGs3cw5aOV6fDSw5NxbWLWlGrYjRteu6cjX3w==" + }, "System.Drawing.Common": { "type": "Transitive", - "resolved": "9.0.7", - "contentHash": "1k/Pk7hcM3vP2tfIRRS2ECCCN7ya+hvocsM1JMc4ZDCU6qw7yOuUmqmCDfgXZ4Q4FS6jass2EAai5ByKodDi0g==", + "resolved": "9.0.9", + "contentHash": "BS17VFUf4RS9G/JoA6br+79jAjyTj0UaomgXCVNJJn9EWIvmHkn0ZCqAynxwloO00yPIvWgXBF9SBjcM06bl1w==", "dependencies": { - "Microsoft.Win32.SystemEvents": "9.0.7" + "Microsoft.Win32.SystemEvents": "9.0.9" } }, "System.IO.Hashing": { "type": "Transitive", - "resolved": "9.0.7", - "contentHash": "2sMrwd/AHYipeiOwYcoqD99c4U8F2x7GalonEYxkHUvTLNzE9Pxx2lz8ygS9cOqyDsruYARZAYL5pPVFh/s3lw==" + "resolved": "9.0.9", + "contentHash": "hcGHdlcKtox37LQZBLYJ3GdTlHx16F5tL96Rt8iaFscCAJW9IZt3asQbyuJMjcM9oyrn3Yh2454VY2fU0d/stw==" + }, + "System.Reflection.Metadata": { + "type": "Transitive", + "resolved": "9.0.9", + "contentHash": "V1nFapsFho2Ya6E3/55+Xh9IX71MZmx52IPZ7bkuL6s4sSIR116QyNpFdD8V+hEyY5+KKRSbsiOVHOy0M4D3Aw==" }, "System.Threading.Tasks.Extensions": { "type": "Transitive", "resolved": "4.5.4", "contentHash": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==" }, - "ThisAssembly.Constants": { - "type": "Transitive", - "resolved": "2.0.6", - "contentHash": "XF1RWxkEx+xvSRZOpkLF0rrclMsjKYkO+j7UoCk+ebSzKcxoIye7Na4HvkmIJogNoB+vZqSz7df5McxgzZHtbg==", - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, "ZstdSharp.Port": { "type": "Transitive", - "resolved": "0.8.5", - "contentHash": "TR4j17WeVSEb3ncgL2NqlXEqcy04I+Kk9CaebNDplUeL8XOgjkZ7fP4Wg4grBdPLIqsV86p2QaXTkZoRMVOsew==" + "resolved": "0.8.6", + "contentHash": "iP4jVLQoQmUjMU88g1WObiNr6YKZGvh4aOXn3yOJsHqZsflwRsxZPcIBvNXgjXO3vQKSLctXGLTpcBPLnWPS8A==" }, "colorthief": { "type": "Project", "dependencies": { - "System.Drawing.Common": "[9.0.7, )" + "System.Drawing.Common": "[9.0.9, )" } }, "discordrpc": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Logging": "[9.0.7, )", - "System.Text.Json": "[9.0.7, )" + "Microsoft.Extensions.Logging": "[9.0.9, )", + "System.Text.Json": "[9.0.9, )" } }, "h.generatedicons.system.drawing": { "type": "Project", "dependencies": { - "System.Drawing.Common": "[9.0.7, )" + "System.Drawing.Common": "[9.0.9, )" } }, "h.notifyicon": { "type": "Project", "dependencies": { "H.GeneratedIcons.System.Drawing": "[1.0.0, )", - "Microsoft.Extensions.Logging.Abstractions": "[9.0.7, )", - "Microsoft.Windows.SDK.Win32Metadata": "[63.0.31-preview, )", - "Microsoft.Windows.WDK.Win32Metadata": "[0.13.25-experimental, )" + "Microsoft.Extensions.Logging": "[9.0.9, )" } }, "h.notifyicon.winui": { "type": "Project", "dependencies": { - "H.NotifyIcon": "[0.0.0, )", - "Microsoft.Extensions.Logging.Abstractions": "[9.0.7, )", - "Microsoft.Web.WebView2": "[1.0.3415-prerelease, )", - "Microsoft.Windows.SDK.BuildTools": "[10.0.26100.4654, )", - "Microsoft.WindowsAppSDK": "[1.8.250702007-experimental4, )" + "H.NotifyIcon": "[1.0.0, )", + "Microsoft.WindowsAppSDK": "[1.8.250907003, )", + "System.Collections.Immutable": "[9.0.9, )", + "System.Reflection.Metadata": "[9.0.9, )" } }, "hi3helper.core": { @@ -545,26 +530,33 @@ "dependencies": { "Hi3Helper.EncTool": "[1.0.0, )", "Hi3Helper.Win32": "[1.0.0, )", - "Microsoft.Windows.CsWinRT": "[2.2.0, )", - "Sentry": "[5.12.0, )" + "Microsoft.Windows.CsWinRT": "[2.3.0-prerelease.250720.1, )", + "Sentry": "[5.15.0, )" } }, "hi3helper.enctool": { "type": "Project", "dependencies": { - "Google.Protobuf": "[3.31.1, )", + "Google.Protobuf": "[3.32.1, )", "Hi3Helper.Http": "[2.0.0, )", "Hi3Helper.Win32": "[1.0.0, )", - "System.IO.Hashing": "[9.0.7, )" + "System.IO.Hashing": "[9.0.9, )" } }, "hi3helper.http": { "type": "Project" }, + "hi3helper.plugin.core": { + "type": "Project", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "[9.0.9, )", + "Microsoft.NET.ILLink.Tasks": "[9.0.9, )" + } + }, "hi3helper.sophon": { "type": "Project", "dependencies": { - "Google.Protobuf": "[3.31.1, )", + "Google.Protobuf": "[3.32.1, )", "Hi3Helper.ZstdNet": "[*, )", "SharpHDiffPatch.Core": "[*, )", "System.IO.Hashing": "[*, )" @@ -573,14 +565,14 @@ "hi3helper.win32": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "[9.0.7, )" + "Microsoft.Extensions.Logging.Abstractions": "[9.0.9, )" } }, "hi3helper.win32.winrt": { "type": "Project", "dependencies": { "Hi3Helper.Win32": "[1.0.0, )", - "Microsoft.Extensions.Logging.Abstractions": "[9.0.7, )" + "Microsoft.Extensions.Logging.Abstractions": "[9.0.9, )" } }, "ImageCropper": { @@ -590,10 +582,9 @@ "CommunityToolkit.WinUI.Extensions": "[8.2.250402, )", "CommunityToolkit.WinUI.Media": "[8.2.250402, )", "Microsoft.Graphics.Win2D": "[1.3.2, )", - "Microsoft.Web.WebView2": "[1.0.3415-prerelease, )", - "Microsoft.Windows.CsWinRT": "[2.2.0, )", - "Microsoft.Windows.SDK.BuildTools": "[10.0.26100.4654, )", - "Microsoft.WindowsAppSDK": "[1.8.250702007-experimental4, )" + "Microsoft.Windows.CsWinRT": "[2.3.0-prerelease.250720.1, )", + "Microsoft.Windows.SDK.BuildTools": "[10.0.26100.4948, )", + "Microsoft.WindowsAppSDK": "[1.8.250907003, )" } }, "imageex": { @@ -601,15 +592,14 @@ "dependencies": { "CommunityToolkit.Common": "[8.4.0, )", "CommunityToolkit.WinUI.Extensions": "[8.2.250402, )", - "Microsoft.Web.WebView2": "[1.0.3415-prerelease, )", - "Microsoft.Windows.SDK.BuildTools": "[10.0.26100.4654, )", - "Microsoft.WindowsAppSDK": "[1.8.250702007-experimental4, )" + "Microsoft.Windows.SDK.BuildTools": "[10.0.26100.4948, )", + "Microsoft.WindowsAppSDK": "[1.8.250907003, )" } }, "innosetuphelper": { "type": "Project", "dependencies": { - "System.IO.Hashing": "[9.0.7, )" + "System.IO.Hashing": "[9.0.9, )" } }, "SettingsControls": { @@ -617,10 +607,9 @@ "dependencies": { "CommunityToolkit.Common": "[8.4.0, )", "CommunityToolkit.WinUI.Triggers": "[8.2.250402, )", - "Microsoft.Web.WebView2": "[1.0.3415-prerelease, )", - "Microsoft.Windows.CsWinRT": "[2.2.0, )", - "Microsoft.Windows.SDK.BuildTools": "[10.0.26100.4654, )", - "Microsoft.WindowsAppSDK": "[1.8.250702007-experimental4, )" + "Microsoft.Windows.CsWinRT": "[2.3.0-prerelease.250720.1, )", + "Microsoft.Windows.SDK.BuildTools": "[10.0.26100.4948, )", + "Microsoft.WindowsAppSDK": "[1.8.250907003, )" } }, "sevenzipextractor": { @@ -630,9 +619,9 @@ "net9.0-windows10.0.26100/win-x64": { "Libsql.Client": { "type": "Direct", - "requested": "[0.5.0, )", - "resolved": "0.5.0", - "contentHash": "5Tw6O9sBDAN1aV+kpOSVvqvFk6Ahk6bYz0TTx3808Dp40M45gKTtzTzI9SS1VeAkljE6BAOeKaykpPnG36oOgw==" + "requested": "[0.5.1, )", + "resolved": "0.5.1", + "contentHash": "5fJusmhN7snIZzlsZ0xpQOoNvWZkJKS2/hhljLz8qvEPIJZgYxpkWWCROrSDpjMxQpixqI/nUhfhrQR67jVVoA==" }, "Microsoft.Graphics.Win2D": { "type": "Direct", @@ -645,9 +634,9 @@ }, "Microsoft.Web.WebView2": { "type": "Direct", - "requested": "[1.0.3415-prerelease, )", - "resolved": "1.0.3415-prerelease", - "contentHash": "7CGb9Y+KGdrJEKhrkU9g+Cz4WjG8wIeWx8eWbKqLgHZEUMayNfyxvILmE05gXhBnG/nz+i1cVLeGfrmIPNMjXQ==" + "requested": "[1.0.3485.44, )", + "resolved": "1.0.3485.44", + "contentHash": "4hk+MDJcW6Hcvtfb0qv0zba9mpBFxM2GO9gJ+8Nq/zoAdwFanmt7jzvM07NPB/UcuQ/jZpKh9IUDL/eVOEFh2A==" }, "PhotoSauce.NativeCodecs.Libwebp": { "type": "Direct", @@ -666,22 +655,22 @@ }, "System.Text.Encoding.CodePages": { "type": "Direct", - "requested": "[9.0.7, )", - "resolved": "9.0.7", - "contentHash": "zKONueQNAT06iqBFSsyH+29WfwaHXoO3o2xtuTcUjUgX0k9SzPX4MpUs+/J7lcHFPnB6yHztBeAJMLVlMqbCrA==" + "requested": "[9.0.9, )", + "resolved": "9.0.9", + "contentHash": "5D+YO1AmHOPmslqlt+QT4zkR9vQRt46OXHRihqN1v0PLKeFe7KO1YuCJeUE4uNiPGJi0T1Y2fC9GHqhwvfkHDA==" }, "Microsoft.Win32.SystemEvents": { "type": "Transitive", - "resolved": "9.0.7", - "contentHash": "lFGY2aGgmMREPJEfOmZcA6v0CLjWVpcfNHRgqYMoSQhy80+GxhYqdW5xe+DCLrVqE1M7/0RpOkIo49/KH/cd/A==" + "resolved": "9.0.9", + "contentHash": "eJU9vZbN710Cc25p/jPecPEL+gFcnynAvznNRnEvMU7i7u0PSjFXlGO4SOlaIUvkykTlS2N++M9B/coxYT7aPw==" }, "Microsoft.WindowsAppSDK.Foundation": { "type": "Transitive", - "resolved": "1.8.250701000-experimental", - "contentHash": "wM6C3p9x6nGRVnpZMTSU5sitBDW27jgu9Dzu0Ru6NTzOtqA0OQIOUK7j08W0V+Um33ZrWoUGJIVZnrYrzOHFYg==", + "resolved": "1.8.250906002", + "contentHash": "ltIXeHUX0AATpqmx/oBcRK+zhtK0KAfoGqItlQRlef9kG7Itj9iXAI+1EdFr4cQYzHzFM3PPLszEWDyR633svA==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250626001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001", + "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250906004" } } } diff --git a/ColorThief b/ColorThief index 525732627..731b428e1 160000 --- a/ColorThief +++ b/ColorThief @@ -1 +1 @@ -Subproject commit 525732627b4e126e02e8f818e498de009172d055 +Subproject commit 731b428e1327ac57c6777959a6df45e5aa689339 diff --git a/H.NotifyIcon b/H.NotifyIcon index bed10af27..160d25b72 160000 --- a/H.NotifyIcon +++ b/H.NotifyIcon @@ -1 +1 @@ -Subproject commit bed10af276cf9cdd934a3cbc921ad587fc7d6fd6 +Subproject commit 160d25b727a46abe5706b05462c2e3c6158072e4 diff --git a/Hi3Helper.CommunityToolkit/ImageCropper/Hi3Helper.CommunityToolkit.WinUI.Controls.ImageCropper.csproj b/Hi3Helper.CommunityToolkit/ImageCropper/Hi3Helper.CommunityToolkit.WinUI.Controls.ImageCropper.csproj index e4b897ff3..37b9cfa40 100644 --- a/Hi3Helper.CommunityToolkit/ImageCropper/Hi3Helper.CommunityToolkit.WinUI.Controls.ImageCropper.csproj +++ b/Hi3Helper.CommunityToolkit/ImageCropper/Hi3Helper.CommunityToolkit.WinUI.Controls.ImageCropper.csproj @@ -1,10 +1,9 @@ - + x64 net9.0-windows10.0.26100.0 - 10.0.26100.57 10.0.17763.0 win-x64 true @@ -33,14 +32,13 @@ - - - - - - - - + + + + + + + diff --git a/Hi3Helper.CommunityToolkit/ImageCropper/packages.lock.json b/Hi3Helper.CommunityToolkit/ImageCropper/packages.lock.json index 6862490e0..fbaa89aaa 100644 --- a/Hi3Helper.CommunityToolkit/ImageCropper/packages.lock.json +++ b/Hi3Helper.CommunityToolkit/ImageCropper/packages.lock.json @@ -41,43 +41,36 @@ }, "Microsoft.NET.ILLink.Tasks": { "type": "Direct", - "requested": "[9.0.7, )", - "resolved": "9.0.7", - "contentHash": "SZ1brSGoLnhLbE8QUZrtN6YwzN2gDT1wbx9qDBEfFFJcstiDTjJ6ygNuTPBV/K7SjGfx2YNbcJi5+ygbPOZpDg==" - }, - "Microsoft.Web.WebView2": { - "type": "Direct", - "requested": "[1.0.3415-prerelease, )", - "resolved": "1.0.3415-prerelease", - "contentHash": "7CGb9Y+KGdrJEKhrkU9g+Cz4WjG8wIeWx8eWbKqLgHZEUMayNfyxvILmE05gXhBnG/nz+i1cVLeGfrmIPNMjXQ==" + "requested": "[9.0.9, )", + "resolved": "9.0.9", + "contentHash": "cHi1os/s6aobEgNkbOh/jW+ru//rHuedvj4PmTh2mMY7et/mJjqphBeXeKCesDvMd0+E2JyX9EPZZC4VRKslXg==" }, "Microsoft.Windows.CsWinRT": { "type": "Direct", - "requested": "[2.2.0, )", - "resolved": "2.2.0", - "contentHash": "R8MDVawukHrKgYCFgYaoLfbAna/FrImEFRxDK9k8ITbrXv3KLE5uN6tRqrNV83H4MFdqJ/uiA/hg1cSsXkl0vw==" + "requested": "[2.3.0-prerelease.250720.1, )", + "resolved": "2.3.0-prerelease.250720.1", + "contentHash": "2Anaw2yEhLgBXt5Uif3HWuqC+VfjEgnUNlQ9aLKPJcyLGQseB7Nk/TTRt+c6Jv4ud7Ss9Q9pGsFIdnpU2jc3iw==" }, "Microsoft.Windows.SDK.BuildTools": { "type": "Direct", - "requested": "[10.0.26100.4654, )", - "resolved": "10.0.26100.4654", - "contentHash": "2mgcOlj/t2RfSyyw+pVESfO+Tk1RkfQzto9Vrq42M1lUQIfQEwbi8QLha9GXWIOj+TFzeHIEJckIoF25mgiM8A==" + "requested": "[10.0.26100.4948, )", + "resolved": "10.0.26100.4948", + "contentHash": "o0T4CVaumDjPNNijKiM7p25vHKdyKqYvaVVLgQO02KTOoUDlgMYJVUQAXn1IG0G9/ZsdZ+bdgWxgQsrO/b37qw==" }, "Microsoft.WindowsAppSDK": { "type": "Direct", - "requested": "[1.8.250702007-experimental4, )", - "resolved": "1.8.250702007-experimental4", - "contentHash": "nByTnXrYJyR+bBJDM8fOTpsddm2VGb5BfryIwon0ZCyJBfgVCv/Y7bJmVbBSiwdlySuJiENmlKlQTeuYNtd5eg==", + "requested": "[1.8.250907003, )", + "resolved": "1.8.250907003", + "contentHash": "FCTiOXXnp9EGvVAuLtQc9LT41kj4JZ1Nis9pTrNCubjOrIQAzpJdA3OfWuFCMktsx/s/nWbpQ1JQ4jUAQQDoLA==", "dependencies": { - "Microsoft.WindowsAppSDK.AI": "[1.8.407-experimental]", - "Microsoft.WindowsAppSDK.Base": "[1.8.250509001-experimental]", - "Microsoft.WindowsAppSDK.DWrite": "[1.8.25052801-experimental3]", - "Microsoft.WindowsAppSDK.Foundation": "[1.8.250701000-experimental]", - "Microsoft.WindowsAppSDK.InteractiveExperiences": "[1.8.250626001-experimental]", - "Microsoft.WindowsAppSDK.ML": "[1.8.126-experimental]", - "Microsoft.WindowsAppSDK.Runtime": "[1.8.250702007-experimental4]", - "Microsoft.WindowsAppSDK.Widgets": "[1.8.250610001-experimental]", - "Microsoft.WindowsAppSDK.WinUI": "[1.8.250701000-experimental]" + "Microsoft.WindowsAppSDK.AI": "[1.8.37]", + "Microsoft.WindowsAppSDK.Base": "[1.8.250831001]", + "Microsoft.WindowsAppSDK.DWrite": "[1.8.25090401]", + "Microsoft.WindowsAppSDK.Foundation": "[1.8.250906002]", + "Microsoft.WindowsAppSDK.InteractiveExperiences": "[1.8.250906004]", + "Microsoft.WindowsAppSDK.Runtime": "[1.8.250907003]", + "Microsoft.WindowsAppSDK.Widgets": "[1.8.250904007]", + "Microsoft.WindowsAppSDK.WinUI": "[1.8.250906003]" } }, "CommunityToolkit.WinUI.Animations": { @@ -89,88 +82,84 @@ "Microsoft.WindowsAppSDK": "1.6.250108002" } }, + "Microsoft.Web.WebView2": { + "type": "Transitive", + "resolved": "1.0.3179.45", + "contentHash": "3pokSH5CnN0G6rGhGFo1y87inxYhNxBQ2Vdf0wlvBj99KHxQJormjDACmqRnFeUsmuNFIhWwfAL1ztq7wD5qRA==" + }, "Microsoft.Windows.SDK.BuildTools.MSIX": { "type": "Transitive", - "resolved": "1.7.20250508.1", - "contentHash": "omgDNQElO0w0wY20I7XLGHISyn7Z4quh9Pc+Gp9XkRHJgiks7ARDhq4Vu+DK32bDoCBrFe1CLK4ovete4QiuVw==" + "resolved": "1.7.20250829.1", + "contentHash": "IMdvRmCIZnBS5GkYnv0po1bcx6U1OF39pqA4TphQ9evDzpCRoSE19/PkDvlUNNrBavTsLIEJgd/TAIFner75ow==" }, "Microsoft.WindowsAppSDK.AI": { "type": "Transitive", - "resolved": "1.8.407-experimental", - "contentHash": "evbWwVGjLM2YPajnt4GztSUFJEp9Mk/6KdOU/LL2i3VB/gmzyAZBKwi7Xj8a7EDG3A4GuFY+iTs8omIbpIxXbA==", + "resolved": "1.8.37", + "contentHash": "WvH7ur+R2N8c3deB8y7q7+Wwx7zybkC6LMS/KNqSYXlSOr75/WCZYwqwrPHJ/63YIUVhka7nJos9g4rIe7SFCw==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.Foundation": "1.8.250701000-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001", + "Microsoft.WindowsAppSDK.Foundation": "1.8.250906002" } }, "Microsoft.WindowsAppSDK.Base": { "type": "Transitive", - "resolved": "1.8.250509001-experimental", - "contentHash": "kw60pLocD7M09t5bOxcx6juKdk2e5xdSO5cGCaedcNgD+e1h92vUFT9WU1xCzc0sXIt2x1FL426T606PjoXXUQ==", + "resolved": "1.8.250831001", + "contentHash": "8LlfXBS2Hpw+OoVXViJmIOPXl0nMbqMaFR3j6+QHFNc62VULwPEcXiMRcP2WbV/+mtC7W2LH6yx6uu/Hrr9lVw==", "dependencies": { - "Microsoft.Windows.SDK.BuildTools": "10.0.22621.3233", - "Microsoft.Windows.SDK.BuildTools.MSIX": "1.7.20250508.1" + "Microsoft.Windows.SDK.BuildTools": "10.0.26100.4654", + "Microsoft.Windows.SDK.BuildTools.MSIX": "1.7.20250829.1" } }, "Microsoft.WindowsAppSDK.DWrite": { "type": "Transitive", - "resolved": "1.8.25052801-experimental3", - "contentHash": "VQLKFZ4a4sn9d9aGIUFsjEmQM5RAW3RUFCkCcyUXY2aF2lVD09imT9m9hnKcmtjkkZPZtJzLBwq3tIxmnRe2Cg==", + "resolved": "1.8.25090401", + "contentHash": "WJ0p9yMgiNYqU2O5ZKCXcb7FBjryIUUopgeYMvnlf1yBUYgdjMFMkoJqYVqkz866wnntiB2IZhLxEzhFzvVs1A==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250501001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001" } }, "Microsoft.WindowsAppSDK.Foundation": { "type": "Transitive", - "resolved": "1.8.250701000-experimental", - "contentHash": "wM6C3p9x6nGRVnpZMTSU5sitBDW27jgu9Dzu0Ru6NTzOtqA0OQIOUK7j08W0V+Um33ZrWoUGJIVZnrYrzOHFYg==", + "resolved": "1.8.250906002", + "contentHash": "ltIXeHUX0AATpqmx/oBcRK+zhtK0KAfoGqItlQRlef9kG7Itj9iXAI+1EdFr4cQYzHzFM3PPLszEWDyR633svA==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250626001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001", + "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250906004" } }, "Microsoft.WindowsAppSDK.InteractiveExperiences": { "type": "Transitive", - "resolved": "1.8.250626001-experimental", - "contentHash": "HXNtlVduthY3sOenbcgxI7rHqkCpVN0QU1hjTEAzuPPDWO1hQ22OfByKF/yUgDrwv8KxfRUe1vgUX4JwbeFDGQ==", + "resolved": "1.8.250906004", + "contentHash": "UoK2yeZiycD1DmADHZz+hcMAoOaUfXLc9qUPfOjmVeKQ6i5ghGMjx/nd49bksP3wVhmSGHxb3argRKWPkK5maw==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250501001-experimental" - } - }, - "Microsoft.WindowsAppSDK.ML": { - "type": "Transitive", - "resolved": "1.8.126-experimental", - "contentHash": "LW/MPS8qHa4wQVdsH+s1AjUhaUVeT+nSmjj8md/hNsKhp/z9qMDXv26ht0k0o+VbbdhRCrSrJYtNEuoQCOoOww==", - "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.Foundation": "1.8.250701000-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001" } }, "Microsoft.WindowsAppSDK.Runtime": { "type": "Transitive", - "resolved": "1.8.250702007-experimental4", - "contentHash": "zm0LhlOxut0yGEox8aGSq73RadSm7i/5RrKM9Ygk0+BgmC3t27wekr5BUsDFMdakvn/8dAzNiM4HZxFHFTniEg==", + "resolved": "1.8.250907003", + "contentHash": "URsthdat9pv1wnRNAy0WA5yejsc47QsSjjJ+L6INEgIFilrp4/LYndpHkoWh3KwBSjwkskvZlSprbOl09YVg/g==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001" } }, "Microsoft.WindowsAppSDK.Widgets": { "type": "Transitive", - "resolved": "1.8.250610001-experimental", - "contentHash": "hpqPDxj+BmUv+tFsEdE/Fv8UIvLDKPIc96oKgZwlFfIwWmqh0UVnVPj9zqKEKbnZw9GNtSDW93w0J/LgcIvnZQ==", + "resolved": "1.8.250904007", + "contentHash": "sgwdXYhb8S4JjBmWWiFxALT1xK0fJeAbisolctmodMX7tlvBXDgUyvl/GHfTQ61DGIiW+kokX61WR46L2YlhAA==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250501001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001" } }, "Microsoft.WindowsAppSDK.WinUI": { "type": "Transitive", - "resolved": "1.8.250701000-experimental", - "contentHash": "vkA9eI9aTzg+YH/QTQgFyuJv02KOvHIlpmkV6RhyfNt/Z1faZmtOWFVPpnmE+0GJZRHyBkHX/iQ7RZ0xZK5r/A==", + "resolved": "1.8.250906003", + "contentHash": "6oskwUluqlDGwUcwYlY3GWTMLajyjh9e790SmWzCCMDRV6sunYbqp7DkiSLzn8nhgSbGvmj6zG92JnkYRlbrXw==", "dependencies": { "Microsoft.Web.WebView2": "1.0.3179.45", - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.Foundation": "1.8.250701000-experimental", - "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250626001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001", + "Microsoft.WindowsAppSDK.Foundation": "1.8.250906002", + "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250906004" } } }, @@ -185,18 +174,17 @@ } }, "Microsoft.Web.WebView2": { - "type": "Direct", - "requested": "[1.0.3415-prerelease, )", - "resolved": "1.0.3415-prerelease", - "contentHash": "7CGb9Y+KGdrJEKhrkU9g+Cz4WjG8wIeWx8eWbKqLgHZEUMayNfyxvILmE05gXhBnG/nz+i1cVLeGfrmIPNMjXQ==" + "type": "Transitive", + "resolved": "1.0.3179.45", + "contentHash": "3pokSH5CnN0G6rGhGFo1y87inxYhNxBQ2Vdf0wlvBj99KHxQJormjDACmqRnFeUsmuNFIhWwfAL1ztq7wD5qRA==" }, "Microsoft.WindowsAppSDK.Foundation": { "type": "Transitive", - "resolved": "1.8.250701000-experimental", - "contentHash": "wM6C3p9x6nGRVnpZMTSU5sitBDW27jgu9Dzu0Ru6NTzOtqA0OQIOUK7j08W0V+Um33ZrWoUGJIVZnrYrzOHFYg==", + "resolved": "1.8.250906002", + "contentHash": "ltIXeHUX0AATpqmx/oBcRK+zhtK0KAfoGqItlQRlef9kG7Itj9iXAI+1EdFr4cQYzHzFM3PPLszEWDyR633svA==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250626001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001", + "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250906004" } } } diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/ControlHelper.cs b/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/ControlHelper.cs index 7beb6139b..350481dbb 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/ControlHelper.cs +++ b/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/ControlHelper.cs @@ -2,8 +2,9 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. +// ReSharper disable NotResolvedInText namespace Hi3Helper.CommunityToolkit.WinUI.Controls; internal static class ControlHelpers { - internal static bool IsXamlRootAvailable { get; } = Windows.Foundation.Metadata.ApiInformation.IsPropertyPresent("Microsoft.UI.Xaml.UIElement", nameof(UIElement.XamlRoot)); + internal static bool IsXamlRootAvailable { get; } = Windows.Foundation.Metadata.ApiInformation.IsPropertyPresent("Windows.UI.Xaml.UIElement", "XamlRoot"); } diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/CornerRadiusConverter.cs b/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/CornerRadiusConverter.cs index 8c424de55..f6ee6e689 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/CornerRadiusConverter.cs +++ b/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/CornerRadiusConverter.cs @@ -20,4 +20,4 @@ public object ConvertBack(object value, Type targetType, object parameter, strin { return value; } -} +} \ No newline at end of file diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/ResourceDictionaryExtensions.cs b/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/ResourceDictionaryExtensions.cs index 8cee3d9ed..871fdaec5 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/ResourceDictionaryExtensions.cs +++ b/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/ResourceDictionaryExtensions.cs @@ -23,7 +23,7 @@ internal static void CopyFrom(this ResourceDictionary destination, ResourceDicti // Clone theme dictionaries if (source.ThemeDictionaries != null) { - foreach (var theme in source.ThemeDictionaries) + foreach (KeyValuePair theme in source.ThemeDictionaries) { if (theme.Value is ResourceDictionary themedResource) { @@ -50,10 +50,10 @@ internal static void CopyFrom(this ResourceDictionary destination, ResourceDicti } // Clone all contents - foreach (var item in source) + foreach (KeyValuePair item in source) { destination[item.Key] = item.Value; } } } -} +} \ No newline at end of file diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/StyleExtensions.cs b/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/StyleExtensions.cs index 4410694b1..66e8d6265 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/StyleExtensions.cs +++ b/Hi3Helper.CommunityToolkit/SettingsControls/Helpers/StyleExtensions.cs @@ -5,33 +5,49 @@ // ReSharper disable PartialTypeWithSinglePart namespace Hi3Helper.CommunityToolkit.WinUI.Controls; -// Adapted from https://github.com/rudyhuyn/XamlPlus +/// +/// Helper class for setting a ResourceDictionary on a Style. +/// +/// +/// Adapted from https://github.com/rudyhuyn/XamlPlus +/// public static partial class StyleExtensions { // Used to distinct normal ResourceDictionary and the one we add. - private sealed partial class StyleExtensionResourceDictionary : ResourceDictionary; + private sealed partial class StyleExtensionResourceDictionary : ResourceDictionary + { + } + /// + /// Get a ResourceDictionary from a Style. + /// public static ResourceDictionary GetResources(Style obj) { return (ResourceDictionary)obj.GetValue(ResourcesProperty); } + /// + /// Set the on a Style to a ResourceDictionary value. + /// public static void SetResources(Style obj, ResourceDictionary value) { obj.SetValue(ResourcesProperty, value); } + /// + /// Attached property to set a Style to a ResourceDictionary value. + /// public static readonly DependencyProperty ResourcesProperty = DependencyProperty.RegisterAttached("Resources", typeof(ResourceDictionary), typeof(StyleExtensions), new PropertyMetadata(null, ResourcesChanged)); private static void ResourcesChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e) { - if (!(sender is FrameworkElement frameworkElement)) + if (sender is not FrameworkElement frameworkElement) { return; } - var mergedDictionaries = frameworkElement.Resources?.MergedDictionaries; + IList mergedDictionaries = frameworkElement.Resources?.MergedDictionaries; if (mergedDictionaries == null) { return; @@ -69,4 +85,4 @@ private static void ForceControlToReloadThemeResources(FrameworkElement framewor : ElementTheme.Dark; frameworkElement.RequestedTheme = currentRequestedTheme; } -} +} \ No newline at end of file diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/Hi3Helper.CommunityToolkit.WinUI.Controls.SettingsControls.csproj b/Hi3Helper.CommunityToolkit/SettingsControls/Hi3Helper.CommunityToolkit.WinUI.Controls.SettingsControls.csproj index 6f7b77cd0..835d434d7 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/Hi3Helper.CommunityToolkit.WinUI.Controls.SettingsControls.csproj +++ b/Hi3Helper.CommunityToolkit/SettingsControls/Hi3Helper.CommunityToolkit.WinUI.Controls.SettingsControls.csproj @@ -1,10 +1,9 @@ - + x64 net9.0-windows10.0.26100.0 - 10.0.26100.57 10.0.17763.0 win-x64 true @@ -35,27 +34,26 @@ - - - - + + + - - - - - - - - - - - + + + + + + + + + + + diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCard.Properties.cs b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCard.Properties.cs index d057a8319..d73f81a7e 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCard.Properties.cs +++ b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCard.Properties.cs @@ -2,11 +2,9 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -// ReSharper disable RedundantExtendsListEntry -// ReSharper disable PartialTypeWithSinglePart namespace Hi3Helper.CommunityToolkit.WinUI.Controls; -public partial class SettingsCard : ButtonBase +public partial class SettingsCard { /// /// The backing for the property. @@ -154,29 +152,64 @@ public bool IsActionIconVisible set => SetValue(IsActionIconVisibleProperty, value); } - protected virtual void OnIsClickEnabledPropertyChanged(bool oldValue, bool newValue) => OnIsClickEnabledChanged(); + /// + /// Called when the IsClickEnabled property changes. + /// + protected virtual void OnIsClickEnabledPropertyChanged(bool oldValue, bool newValue) + { + OnIsClickEnabledChanged(); + } - protected virtual void OnHeaderIconPropertyChanged(IconElement oldValue, IconElement newValue) => OnHeaderIconChanged(); + /// + /// Called when the HeaderIcon property changes. + /// + protected virtual void OnHeaderIconPropertyChanged(IconElement oldValue, IconElement newValue) + { + OnHeaderIconChanged(); + } - protected virtual void OnHeaderPropertyChanged(object oldValue, object newValue) => OnHeaderChanged(); + /// + /// Called when the Header property changes. + /// + protected virtual void OnHeaderPropertyChanged(object oldValue, object newValue) + { + OnHeaderChanged(); + } - protected virtual void OnDescriptionPropertyChanged(object oldValue, object newValue) => OnDescriptionChanged(); + /// + /// Called when the Description property changes. + /// + protected virtual void OnDescriptionPropertyChanged(object oldValue, object newValue) + { + OnDescriptionChanged(); + } - protected virtual void OnIsActionIconVisiblePropertyChanged(bool oldValue, bool newValue) => OnActionIconChanged(); + /// + /// Called when the IsActionIconVisible property changes. + /// + protected virtual void OnIsActionIconVisiblePropertyChanged(bool oldValue, bool newValue) + { + OnActionIconChanged(); + } } +/// +/// The alignment of Content. +/// public enum ContentAlignment { /// /// The Content is aligned to the right. Default state. /// Right, + /// /// The Content is left-aligned while the Header, HeaderIcon and Description are collapsed. This is commonly used for Content types such as CheckBoxes, RadioButtons and custom layouts. /// Left, + /// /// The Content is vertically aligned. /// Vertical -} +} \ No newline at end of file diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCard.cs b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCard.cs index a3f6ea647..1710ae45e 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCard.cs +++ b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCard.cs @@ -2,9 +2,9 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -// ReSharper disable RedundantExtendsListEntry -// ReSharper disable PartialTypeWithSinglePart +// ReSharper disable CommentTypo #nullable enable + namespace Hi3Helper.CommunityToolkit.WinUI.Controls; /// @@ -13,23 +13,23 @@ namespace Hi3Helper.CommunityToolkit.WinUI.Controls; /// [TemplatePart(Name = ActionIconPresenterHolder, Type = typeof(Viewbox))] -[TemplatePart(Name = HeaderPresenter, Type = typeof(ContentPresenter))] -[TemplatePart(Name = DescriptionPresenter, Type = typeof(ContentPresenter))] +[TemplatePart(Name = HeaderPresenter, Type = typeof(ContentPresenter))] +[TemplatePart(Name = DescriptionPresenter, Type = typeof(ContentPresenter))] [TemplatePart(Name = HeaderIconPresenterHolder, Type = typeof(Viewbox))] -[TemplateVisualState(Name = NormalState, GroupName = CommonStates)] +[TemplateVisualState(Name = NormalState, GroupName = CommonStates)] [TemplateVisualState(Name = PointerOverState, GroupName = CommonStates)] -[TemplateVisualState(Name = PressedState, GroupName = CommonStates)] -[TemplateVisualState(Name = DisabledState, GroupName = CommonStates)] +[TemplateVisualState(Name = PressedState, GroupName = CommonStates)] +[TemplateVisualState(Name = DisabledState, GroupName = CommonStates)] -[TemplateVisualState(Name = RightState, GroupName = ContentAlignmentStates)] -[TemplateVisualState(Name = RightWrappedState, GroupName = ContentAlignmentStates)] +[TemplateVisualState(Name = RightState, GroupName = ContentAlignmentStates)] +[TemplateVisualState(Name = RightWrappedState, GroupName = ContentAlignmentStates)] [TemplateVisualState(Name = RightWrappedNoIconState, GroupName = ContentAlignmentStates)] -[TemplateVisualState(Name = LeftState, GroupName = ContentAlignmentStates)] -[TemplateVisualState(Name = VerticalState, GroupName = ContentAlignmentStates)] +[TemplateVisualState(Name = LeftState, GroupName = ContentAlignmentStates)] +[TemplateVisualState(Name = VerticalState, GroupName = ContentAlignmentStates)] [TemplateVisualState(Name = NoContentSpacingState, GroupName = ContentSpacingStates)] -[TemplateVisualState(Name = ContentSpacingState, GroupName = ContentSpacingStates)] +[TemplateVisualState(Name = ContentSpacingState, GroupName = ContentSpacingStates)] public partial class SettingsCard : ButtonBase { @@ -77,31 +77,35 @@ protected override void OnApplyTemplate() CheckInitialVisualState(); SetAccessibleContentName(); RegisterPropertyChangedCallback(ContentProperty, OnContentChanged); - IsEnabledChanged += OnIsEnabledChanged; + IsEnabledChanged += OnIsEnabledChanged; } private void CheckInitialVisualState() { VisualStateManager.GoToState(this, IsEnabled ? NormalState : DisabledState, true); - if (GetTemplateChild("ContentAlignmentStates") is VisualStateGroup contentAlignmentStatesGroup) + if (GetTemplateChild("ContentAlignmentStates") is not VisualStateGroup contentAlignmentStatesGroup) { - contentAlignmentStatesGroup.CurrentStateChanged -= ContentAlignmentStates_Changed; - CheckVerticalSpacingState(contentAlignmentStatesGroup.CurrentState); - contentAlignmentStatesGroup.CurrentStateChanged += ContentAlignmentStates_Changed; + return; } + + contentAlignmentStatesGroup.CurrentStateChanged -= ContentAlignmentStates_Changed; + CheckVerticalSpacingState(contentAlignmentStatesGroup.CurrentState); + contentAlignmentStatesGroup.CurrentStateChanged += ContentAlignmentStates_Changed; } // We automatically set the AutomationProperties.Name of the Content if not configured. private void SetAccessibleContentName() { - if (Header is string headerString && headerString != string.Empty) + if (Header is not string headerString || headerString == string.Empty) + { + return; + } + + // We don't want to override an AutomationProperties.Name that is manually set, or if the Content basetype is of type ButtonBase (the ButtonBase.Content will be used then) + if (Content is UIElement element && string.IsNullOrEmpty(AutomationProperties.GetName(element)) && element.GetType().BaseType != typeof(ButtonBase) && element.GetType() != typeof(TextBlock)) { - // We don't want to override an AutomationProperties.Name that is manually set, or if the Content basetype is of type ButtonBase (the ButtonBase.Content will be used then) - if (Content is UIElement element && string.IsNullOrEmpty(AutomationProperties.GetName(element)) && element.GetType().BaseType != typeof(ButtonBase) && element.GetType() != typeof(TextBlock)) - { - AutomationProperties.SetName(element, headerString); - } + AutomationProperties.SetName(element, headerString); } } @@ -131,7 +135,7 @@ private void DisableButtonInteraction() private void Control_PreviewKeyUp(object sender, KeyRoutedEventArgs e) { - if (e.Key == VirtualKey.Enter || e.Key == VirtualKey.Space || e.Key == VirtualKey.GamepadA) + if (e.Key is VirtualKey.Enter or VirtualKey.Space or VirtualKey.GamepadA) { VisualStateManager.GoToState(this, NormalState, true); } @@ -139,28 +143,36 @@ private void Control_PreviewKeyUp(object sender, KeyRoutedEventArgs e) private void Control_PreviewKeyDown(object sender, KeyRoutedEventArgs e) { - if (e.Key == VirtualKey.Enter || e.Key == VirtualKey.Space || e.Key == VirtualKey.GamepadA) + if (e.Key is not (VirtualKey.Enter or VirtualKey.Space or VirtualKey.GamepadA)) { - // Check if the active focus is on the card itself - only then we show the pressed state. - if (GetFocusedElement() is SettingsCard) - { - VisualStateManager.GoToState(this, PressedState, true); - } + return; + } + + // Check if the active focus is on the card itself - only then we show the pressed state. + if (GetFocusedElement() is SettingsCard) + { + VisualStateManager.GoToState(this, PressedState, true); } } + /// + /// Handles the PointerEntered event. + /// public void Control_PointerEntered(object sender, PointerRoutedEventArgs e) { base.OnPointerEntered(e); VisualStateManager.GoToState(this, PointerOverState, true); } - + + /// + /// Handles the PointerExited event. + /// public void Control_PointerExited(object sender, PointerRoutedEventArgs e) { base.OnPointerExited(e); VisualStateManager.GoToState(this, NormalState, true); } - + private void Control_PointerCaptureLost(object sender, PointerRoutedEventArgs e) { base.OnPointerCaptureLost(e); @@ -173,30 +185,43 @@ private void Control_PointerCanceled(object sender, PointerRoutedEventArgs e) VisualStateManager.GoToState(this, NormalState, true); } + /// + /// Handles the PointerPressed event. + /// protected override void OnPointerPressed(PointerRoutedEventArgs e) { // e.Handled = true; - if (IsClickEnabled) + if (!IsClickEnabled) { - base.OnPointerPressed(e); - VisualStateManager.GoToState(this, PressedState, true); + return; } + + base.OnPointerPressed(e); + VisualStateManager.GoToState(this, PressedState, true); } - + + /// + /// Handles the PointerReleased event. + /// protected override void OnPointerReleased(PointerRoutedEventArgs e) { - if (IsClickEnabled) + if (!IsClickEnabled) { - base.OnPointerReleased(e); - VisualStateManager.GoToState(this, NormalState, true); + return; } + + base.OnPointerReleased(e); + VisualStateManager.GoToState(this, NormalState, true); } /// /// Creates AutomationPeer /// /// An automation peer for . - protected override AutomationPeer OnCreateAutomationPeer() => new SettingsCardAutomationPeer(this); + protected override AutomationPeer OnCreateAutomationPeer() + { + return new SettingsCardAutomationPeer(this); + } private void OnIsClickEnabledChanged() { @@ -218,16 +243,18 @@ private void OnIsEnabledChanged(object sender, DependencyPropertyChangedEventArg private void OnActionIconChanged() { - if (GetTemplateChild(ActionIconPresenterHolder) is FrameworkElement actionIconPresenter) + if (GetTemplateChild(ActionIconPresenterHolder) is not FrameworkElement actionIconPresenter) + { + return; + } + + if (IsClickEnabled && IsActionIconVisible) { - if (IsClickEnabled && IsActionIconVisible) - { - actionIconPresenter.Visibility = Visibility.Visible; - } - else - { - actionIconPresenter.Visibility =Visibility.Collapsed; - } + actionIconPresenter.Visibility = Visibility.Visible; + } + else + { + actionIconPresenter.Visibility = Visibility.Collapsed; } } @@ -260,16 +287,18 @@ private void OnHeaderChanged() ? Visibility.Collapsed : Visibility.Visible; } - + } - private void ContentAlignmentStates_Changed(object sender, VisualStateChangedEventArgs e) => CheckVerticalSpacingState(e.NewState); + private void ContentAlignmentStates_Changed(object sender, VisualStateChangedEventArgs e) + { + CheckVerticalSpacingState(e.NewState); + } private void CheckVerticalSpacingState(VisualState? s) { // On state change, checking if the Content should be wrapped (e.g. when the card is made smaller or the ContentAlignment is set to Vertical). If the Content and the Header or Description are not null, we add spacing between the Content and the Header/Description. - - if (s != null && s.Name is RightWrappedState or RightWrappedNoIconState or VerticalState && Content != null && (!IsNullOrEmptyString(Header) || !IsNullOrEmptyString(Description))) + if (s?.Name is RightWrappedState or RightWrappedNoIconState or VerticalState && (Content != null) && (!IsNullOrEmptyString(Header) || !IsNullOrEmptyString(Description))) { VisualStateManager.GoToState(this, ContentSpacingState, true); } @@ -289,6 +318,12 @@ private void CheckVerticalSpacingState(VisualState? s) return FocusManager.GetFocusedElement() as FrameworkElement; } - [MethodImpl(MethodImplOptions.AggressiveInlining)] - private static bool IsNullOrEmptyString(object obj) => obj is string objString && string.IsNullOrEmpty(objString); -} + private static bool IsNullOrEmptyString(object obj) + { + return obj switch + { + null or "" => true, + _ => false + }; + } +} \ No newline at end of file diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCard.xaml b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCard.xaml index e1a6fcc71..71b41ad6b 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCard.xaml +++ b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCard.xaml @@ -1,6 +1,11 @@  + + + + + 20 0 120 - 2,0,20,0 + 2,0,12,0 14,0,0,0 13 8 @@ -386,23 +391,25 @@ - + - + - @@ -987,7 +995,7 @@ Background="{ThemeResource ToggleSwitchContainerBackground}" CornerRadius="{TemplateBinding CornerRadius}" /> diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCardAutomationPeer.cs b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCardAutomationPeer.cs index 28f4d13d0..b7d1f7826 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCardAutomationPeer.cs +++ b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsCard/SettingsCardAutomationPeer.cs @@ -2,8 +2,7 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -// ReSharper disable RedundantExtendsListEntry -// ReSharper disable PartialTypeWithSinglePart +// ReSharper disable GrammarMistakeInComment namespace Hi3Helper.CommunityToolkit.WinUI.Controls; /// @@ -26,12 +25,7 @@ public SettingsCardAutomationPeer(SettingsCard owner) /// The control type. protected override AutomationControlType GetAutomationControlTypeCore() { - if (Owner is SettingsCard settingsCard && settingsCard.IsClickEnabled) - { - return AutomationControlType.Button; - } - - return AutomationControlType.Group; + return Owner is SettingsCard { IsClickEnabled: true } ? AutomationControlType.Button : AutomationControlType.Group; } /// @@ -44,23 +38,26 @@ protected override string GetClassNameCore() return Owner.GetType().Name; } + /// protected override string GetNameCore() { // We only want to announce the button card name if it is clickable, else it's just a regular card that does not receive focus - if (Owner is SettingsCard owner && owner.IsClickEnabled) + if (Owner is not SettingsCard { IsClickEnabled: true } owner) + { + return base.GetNameCore(); + } + + string name = AutomationProperties.GetName(owner); + if (!string.IsNullOrEmpty(name)) { - string name = AutomationProperties.GetName(owner); - if (!string.IsNullOrEmpty(name)) - { - return name; - } + return name; + } - if (owner.Header is string headerString && !string.IsNullOrEmpty(headerString)) - { - return headerString; - } + if (owner.Header is string headerString && !string.IsNullOrEmpty(headerString)) + { + return headerString; } return base.GetNameCore(); } -} +} \ No newline at end of file diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.ItemsControl.cs b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.ItemsControl.cs index 1eab5c08f..4a6ca8664 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.ItemsControl.cs +++ b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.ItemsControl.cs @@ -7,39 +7,63 @@ namespace Hi3Helper.CommunityToolkit.WinUI.Controls; //// Implement properties for ItemsControl like behavior. public partial class SettingsExpander { + /// + /// Gets or sets the collection of items to display. + /// public IList Items { get { return (IList)GetValue(ItemsProperty); } set { SetValue(ItemsProperty, value); } } + /// + /// Identifies the DependencyProperty. + /// public static readonly DependencyProperty ItemsProperty = DependencyProperty.Register(nameof(Items), typeof(IList), typeof(SettingsExpander), new PropertyMetadata(null, OnItemsConnectedPropertyChanged)); + /// + /// Gets or sets the value to use for the inner . + /// public object ItemsSource { get { return GetValue(ItemsSourceProperty); } set { SetValue(ItemsSourceProperty, value); } } + /// + /// Identifies the DependencyProperty. + /// public static readonly DependencyProperty ItemsSourceProperty = DependencyProperty.Register(nameof(ItemsSource), typeof(object), typeof(SettingsExpander), new PropertyMetadata(null, OnItemsConnectedPropertyChanged)); + /// + /// Gets or sets the value to use for the inner . + /// public object ItemTemplate { get { return GetValue(ItemTemplateProperty); } set { SetValue(ItemTemplateProperty, value); } } + /// + /// Identifies the DependencyProperty. + /// public static readonly DependencyProperty ItemTemplateProperty = DependencyProperty.Register(nameof(ItemTemplate), typeof(object), typeof(SettingsExpander), new PropertyMetadata(null)); + /// + /// Gets or sets the value to use for the ItemContainerStyle applied to the inner . + /// public StyleSelector ItemContainerStyleSelector { get { return (StyleSelector)GetValue(ItemContainerStyleSelectorProperty); } set { SetValue(ItemContainerStyleSelectorProperty, value); } } + /// + /// Identifies the DependencyProperty. + /// public static readonly DependencyProperty ItemContainerStyleSelectorProperty = DependencyProperty.Register(nameof(ItemContainerStyleSelector), typeof(StyleSelector), typeof(SettingsExpander), new PropertyMetadata(null)); @@ -65,4 +89,4 @@ args.Element is FrameworkElement element && element.Style = ItemContainerStyleSelector.SelectStyle(null, element); } } -} +} \ No newline at end of file diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.Properties.cs b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.Properties.cs index e806ea7a4..bb769cdca 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.Properties.cs +++ b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.Properties.cs @@ -45,7 +45,7 @@ public partial class SettingsExpander new PropertyMetadata(defaultValue: null)); /// - /// The backing for the property. + /// The backing for the property. /// public static readonly DependencyProperty ItemsHeaderProperty = DependencyProperty.Register( nameof(ItemsHeader), @@ -54,7 +54,7 @@ public partial class SettingsExpander new PropertyMetadata(defaultValue: null)); /// - /// The backing for the property. + /// The backing for the property. /// public static readonly DependencyProperty ItemsFooterProperty = DependencyProperty.Register( nameof(ItemsFooter), @@ -135,6 +135,7 @@ public bool IsExpanded get => (bool)GetValue(IsExpandedProperty); set => SetValue(IsExpandedProperty, value); } + protected virtual void OnIsExpandedPropertyChanged(bool oldValue, bool newValue) { OnIsExpandedChanged(oldValue, newValue); @@ -148,4 +149,4 @@ protected virtual void OnIsExpandedPropertyChanged(bool oldValue, bool newValue) Collapsed?.Invoke(this, EventArgs.Empty); } } -} +} \ No newline at end of file diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.cs b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.cs index 2ac2787e8..dba85fba2 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.cs +++ b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.cs @@ -2,9 +2,13 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. +// ReSharper disable InconsistentNaming #nullable enable namespace Hi3Helper.CommunityToolkit.WinUI.Controls; +/// +/// The SettingsExpander is a collapsable control to host multiple SettingsCards. +/// //// Note: ItemsRepeater will request all the available horizontal space: https://github.com/microsoft/microsoft-ui-xaml/issues/3842 [TemplatePart(Name = PART_ItemsRepeater, Type = typeof(ItemsRepeater))] public partial class SettingsExpander : Control @@ -18,7 +22,7 @@ public partial class SettingsExpander : Control /// public SettingsExpander() { - this.DefaultStyleKey = typeof(SettingsExpander); + DefaultStyleKey = typeof(SettingsExpander); Items = new List(); } @@ -30,28 +34,32 @@ protected override void OnApplyTemplate() if (_itemsRepeater != null) { - _itemsRepeater.ElementPrepared -= this.ItemsRepeater_ElementPrepared; + _itemsRepeater.ElementPrepared -= ItemsRepeater_ElementPrepared; } _itemsRepeater = GetTemplateChild(PART_ItemsRepeater) as ItemsRepeater; - if (_itemsRepeater != null) + if (_itemsRepeater == null) { - _itemsRepeater.ElementPrepared += this.ItemsRepeater_ElementPrepared; - - // Update it's source based on our current items properties. - OnItemsConnectedPropertyChanged(this, null!); // Can't get it to accept type here? (DependencyPropertyChangedEventArgs)EventArgs.Empty + return; } + + _itemsRepeater.ElementPrepared += ItemsRepeater_ElementPrepared; + + // Update it's source based on our current items properties. + OnItemsConnectedPropertyChanged(this, null!); // Can't get it to accept type here? (DependencyPropertyChangedEventArgs)EventArgs.Empty } private void SetAccessibleName() { - if (string.IsNullOrEmpty(AutomationProperties.GetName(this))) + if (!string.IsNullOrEmpty(AutomationProperties.GetName(this))) { - if (Header is string headerString && !string.IsNullOrEmpty(headerString)) - { - AutomationProperties.SetName(this, headerString); - } + return; + } + + if (Header is string headerString && !string.IsNullOrEmpty(headerString)) + { + AutomationProperties.SetName(this, headerString); } } @@ -63,10 +71,10 @@ protected override AutomationPeer OnCreateAutomationPeer() { return new SettingsExpanderAutomationPeer(this); } - + private void OnIsExpandedChanged(bool oldValue, bool newValue) { var peer = FrameworkElementAutomationPeer.FromElement(this) as SettingsExpanderAutomationPeer; peer?.RaiseExpandedChangedEvent(newValue); } -} +} \ No newline at end of file diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.xaml b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.xaml index 368b0f105..b5c1fe57f 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.xaml +++ b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpander.xaml @@ -1,5 +1,8 @@  + + + Show all settings - 16,16,4,16 + 16,0,4,0 58,8,44,8 0,1,0,0 58,8,16,8 diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpanderAutomationPeer.cs b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpanderAutomationPeer.cs index ca2de796a..1617ea519 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpanderAutomationPeer.cs +++ b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpanderAutomationPeer.cs @@ -2,8 +2,7 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -// ReSharper disable RedundantExtendsListEntry -// ReSharper disable PartialTypeWithSinglePart +// ReSharper disable GrammarMistakeInComment namespace Hi3Helper.CommunityToolkit.WinUI.Controls; /// @@ -30,7 +29,7 @@ protected override AutomationControlType GetAutomationControlTypeCore() } /// - /// Called by GetClassName that gets a human-readable name that, in addition to AutomationControlType, + /// Called by GetClassName that gets a human readable name that, in addition to AutomationControlType, /// differentiates the control represented by this AutomationPeer. /// /// The string that contains the name. @@ -39,22 +38,25 @@ protected override string GetClassNameCore() return Owner.GetType().Name; } + /// protected override string GetNameCore() { string name = base.GetNameCore(); - if (Owner is SettingsExpander owner) + if (Owner is not SettingsExpander owner) { - if (!string.IsNullOrEmpty(AutomationProperties.GetName(owner))) - { - name = AutomationProperties.GetName(owner); - } - else + return name; + } + + if (!string.IsNullOrEmpty(AutomationProperties.GetName(owner))) + { + name = AutomationProperties.GetName(owner); + } + else + { + if (owner.Header is string headerString && !string.IsNullOrEmpty(headerString)) { - if (owner.Header is string headerString && !string.IsNullOrEmpty(headerString)) - { - name = headerString; - } + name = headerString; } } return name; @@ -71,12 +73,12 @@ public void RaiseExpandedChangedEvent(bool newValue) ExpandCollapseState.Expanded : ExpandCollapseState.Collapsed; - ExpandCollapseState oldState = newState == ExpandCollapseState.Expanded ? + ExpandCollapseState oldState = (newState == ExpandCollapseState.Expanded) ? ExpandCollapseState.Collapsed : ExpandCollapseState.Expanded; - #if !HAS_UNO +#if !HAS_UNO RaisePropertyChangedEvent(ExpandCollapsePatternIdentifiers.ExpandCollapseStateProperty, oldState, newState); - #endif +#endif } -} +} \ No newline at end of file diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpanderItemStyleSelector.cs b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpanderItemStyleSelector.cs index 578e4ca6e..13315404f 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpanderItemStyleSelector.cs +++ b/Hi3Helper.CommunityToolkit/SettingsControls/SettingsExpander/SettingsExpanderItemStyleSelector.cs @@ -23,18 +23,15 @@ public partial class SettingsExpanderItemStyleSelector : StyleSelector /// /// Initializes a new instance of the class. /// +#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable. public SettingsExpanderItemStyleSelector() +#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable. { } /// protected override Style SelectStyleCore(object item, DependencyObject container) { - if (container is SettingsCard card && card.IsClickEnabled) - { - return ClickableStyle; - } - - return DefaultStyle; + return container is SettingsCard { IsClickEnabled: true } ? ClickableStyle : DefaultStyle; } -} +} \ No newline at end of file diff --git a/Hi3Helper.CommunityToolkit/SettingsControls/packages.lock.json b/Hi3Helper.CommunityToolkit/SettingsControls/packages.lock.json index 583c6afeb..e364f3afe 100644 --- a/Hi3Helper.CommunityToolkit/SettingsControls/packages.lock.json +++ b/Hi3Helper.CommunityToolkit/SettingsControls/packages.lock.json @@ -20,43 +20,36 @@ }, "Microsoft.NET.ILLink.Tasks": { "type": "Direct", - "requested": "[9.0.7, )", - "resolved": "9.0.7", - "contentHash": "SZ1brSGoLnhLbE8QUZrtN6YwzN2gDT1wbx9qDBEfFFJcstiDTjJ6ygNuTPBV/K7SjGfx2YNbcJi5+ygbPOZpDg==" - }, - "Microsoft.Web.WebView2": { - "type": "Direct", - "requested": "[1.0.3415-prerelease, )", - "resolved": "1.0.3415-prerelease", - "contentHash": "7CGb9Y+KGdrJEKhrkU9g+Cz4WjG8wIeWx8eWbKqLgHZEUMayNfyxvILmE05gXhBnG/nz+i1cVLeGfrmIPNMjXQ==" + "requested": "[9.0.9, )", + "resolved": "9.0.9", + "contentHash": "cHi1os/s6aobEgNkbOh/jW+ru//rHuedvj4PmTh2mMY7et/mJjqphBeXeKCesDvMd0+E2JyX9EPZZC4VRKslXg==" }, "Microsoft.Windows.CsWinRT": { "type": "Direct", - "requested": "[2.2.0, )", - "resolved": "2.2.0", - "contentHash": "R8MDVawukHrKgYCFgYaoLfbAna/FrImEFRxDK9k8ITbrXv3KLE5uN6tRqrNV83H4MFdqJ/uiA/hg1cSsXkl0vw==" + "requested": "[2.3.0-prerelease.250720.1, )", + "resolved": "2.3.0-prerelease.250720.1", + "contentHash": "2Anaw2yEhLgBXt5Uif3HWuqC+VfjEgnUNlQ9aLKPJcyLGQseB7Nk/TTRt+c6Jv4ud7Ss9Q9pGsFIdnpU2jc3iw==" }, "Microsoft.Windows.SDK.BuildTools": { "type": "Direct", - "requested": "[10.0.26100.4654, )", - "resolved": "10.0.26100.4654", - "contentHash": "2mgcOlj/t2RfSyyw+pVESfO+Tk1RkfQzto9Vrq42M1lUQIfQEwbi8QLha9GXWIOj+TFzeHIEJckIoF25mgiM8A==" + "requested": "[10.0.26100.4948, )", + "resolved": "10.0.26100.4948", + "contentHash": "o0T4CVaumDjPNNijKiM7p25vHKdyKqYvaVVLgQO02KTOoUDlgMYJVUQAXn1IG0G9/ZsdZ+bdgWxgQsrO/b37qw==" }, "Microsoft.WindowsAppSDK": { "type": "Direct", - "requested": "[1.8.250702007-experimental4, )", - "resolved": "1.8.250702007-experimental4", - "contentHash": "nByTnXrYJyR+bBJDM8fOTpsddm2VGb5BfryIwon0ZCyJBfgVCv/Y7bJmVbBSiwdlySuJiENmlKlQTeuYNtd5eg==", + "requested": "[1.8.250907003, )", + "resolved": "1.8.250907003", + "contentHash": "FCTiOXXnp9EGvVAuLtQc9LT41kj4JZ1Nis9pTrNCubjOrIQAzpJdA3OfWuFCMktsx/s/nWbpQ1JQ4jUAQQDoLA==", "dependencies": { - "Microsoft.WindowsAppSDK.AI": "[1.8.407-experimental]", - "Microsoft.WindowsAppSDK.Base": "[1.8.250509001-experimental]", - "Microsoft.WindowsAppSDK.DWrite": "[1.8.25052801-experimental3]", - "Microsoft.WindowsAppSDK.Foundation": "[1.8.250701000-experimental]", - "Microsoft.WindowsAppSDK.InteractiveExperiences": "[1.8.250626001-experimental]", - "Microsoft.WindowsAppSDK.ML": "[1.8.126-experimental]", - "Microsoft.WindowsAppSDK.Runtime": "[1.8.250702007-experimental4]", - "Microsoft.WindowsAppSDK.Widgets": "[1.8.250610001-experimental]", - "Microsoft.WindowsAppSDK.WinUI": "[1.8.250701000-experimental]" + "Microsoft.WindowsAppSDK.AI": "[1.8.37]", + "Microsoft.WindowsAppSDK.Base": "[1.8.250831001]", + "Microsoft.WindowsAppSDK.DWrite": "[1.8.25090401]", + "Microsoft.WindowsAppSDK.Foundation": "[1.8.250906002]", + "Microsoft.WindowsAppSDK.InteractiveExperiences": "[1.8.250906004]", + "Microsoft.WindowsAppSDK.Runtime": "[1.8.250907003]", + "Microsoft.WindowsAppSDK.Widgets": "[1.8.250904007]", + "Microsoft.WindowsAppSDK.WinUI": "[1.8.250906003]" } }, "CommunityToolkit.WinUI.Extensions": { @@ -77,105 +70,100 @@ "Microsoft.WindowsAppSDK": "1.6.250108002" } }, + "Microsoft.Web.WebView2": { + "type": "Transitive", + "resolved": "1.0.3179.45", + "contentHash": "3pokSH5CnN0G6rGhGFo1y87inxYhNxBQ2Vdf0wlvBj99KHxQJormjDACmqRnFeUsmuNFIhWwfAL1ztq7wD5qRA==" + }, "Microsoft.Windows.SDK.BuildTools.MSIX": { "type": "Transitive", - "resolved": "1.7.20250508.1", - "contentHash": "omgDNQElO0w0wY20I7XLGHISyn7Z4quh9Pc+Gp9XkRHJgiks7ARDhq4Vu+DK32bDoCBrFe1CLK4ovete4QiuVw==" + "resolved": "1.7.20250829.1", + "contentHash": "IMdvRmCIZnBS5GkYnv0po1bcx6U1OF39pqA4TphQ9evDzpCRoSE19/PkDvlUNNrBavTsLIEJgd/TAIFner75ow==" }, "Microsoft.WindowsAppSDK.AI": { "type": "Transitive", - "resolved": "1.8.407-experimental", - "contentHash": "evbWwVGjLM2YPajnt4GztSUFJEp9Mk/6KdOU/LL2i3VB/gmzyAZBKwi7Xj8a7EDG3A4GuFY+iTs8omIbpIxXbA==", + "resolved": "1.8.37", + "contentHash": "WvH7ur+R2N8c3deB8y7q7+Wwx7zybkC6LMS/KNqSYXlSOr75/WCZYwqwrPHJ/63YIUVhka7nJos9g4rIe7SFCw==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.Foundation": "1.8.250701000-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001", + "Microsoft.WindowsAppSDK.Foundation": "1.8.250906002" } }, "Microsoft.WindowsAppSDK.Base": { "type": "Transitive", - "resolved": "1.8.250509001-experimental", - "contentHash": "kw60pLocD7M09t5bOxcx6juKdk2e5xdSO5cGCaedcNgD+e1h92vUFT9WU1xCzc0sXIt2x1FL426T606PjoXXUQ==", + "resolved": "1.8.250831001", + "contentHash": "8LlfXBS2Hpw+OoVXViJmIOPXl0nMbqMaFR3j6+QHFNc62VULwPEcXiMRcP2WbV/+mtC7W2LH6yx6uu/Hrr9lVw==", "dependencies": { - "Microsoft.Windows.SDK.BuildTools": "10.0.22621.3233", - "Microsoft.Windows.SDK.BuildTools.MSIX": "1.7.20250508.1" + "Microsoft.Windows.SDK.BuildTools": "10.0.26100.4654", + "Microsoft.Windows.SDK.BuildTools.MSIX": "1.7.20250829.1" } }, "Microsoft.WindowsAppSDK.DWrite": { "type": "Transitive", - "resolved": "1.8.25052801-experimental3", - "contentHash": "VQLKFZ4a4sn9d9aGIUFsjEmQM5RAW3RUFCkCcyUXY2aF2lVD09imT9m9hnKcmtjkkZPZtJzLBwq3tIxmnRe2Cg==", + "resolved": "1.8.25090401", + "contentHash": "WJ0p9yMgiNYqU2O5ZKCXcb7FBjryIUUopgeYMvnlf1yBUYgdjMFMkoJqYVqkz866wnntiB2IZhLxEzhFzvVs1A==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250501001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001" } }, "Microsoft.WindowsAppSDK.Foundation": { "type": "Transitive", - "resolved": "1.8.250701000-experimental", - "contentHash": "wM6C3p9x6nGRVnpZMTSU5sitBDW27jgu9Dzu0Ru6NTzOtqA0OQIOUK7j08W0V+Um33ZrWoUGJIVZnrYrzOHFYg==", + "resolved": "1.8.250906002", + "contentHash": "ltIXeHUX0AATpqmx/oBcRK+zhtK0KAfoGqItlQRlef9kG7Itj9iXAI+1EdFr4cQYzHzFM3PPLszEWDyR633svA==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250626001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001", + "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250906004" } }, "Microsoft.WindowsAppSDK.InteractiveExperiences": { "type": "Transitive", - "resolved": "1.8.250626001-experimental", - "contentHash": "HXNtlVduthY3sOenbcgxI7rHqkCpVN0QU1hjTEAzuPPDWO1hQ22OfByKF/yUgDrwv8KxfRUe1vgUX4JwbeFDGQ==", + "resolved": "1.8.250906004", + "contentHash": "UoK2yeZiycD1DmADHZz+hcMAoOaUfXLc9qUPfOjmVeKQ6i5ghGMjx/nd49bksP3wVhmSGHxb3argRKWPkK5maw==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250501001-experimental" - } - }, - "Microsoft.WindowsAppSDK.ML": { - "type": "Transitive", - "resolved": "1.8.126-experimental", - "contentHash": "LW/MPS8qHa4wQVdsH+s1AjUhaUVeT+nSmjj8md/hNsKhp/z9qMDXv26ht0k0o+VbbdhRCrSrJYtNEuoQCOoOww==", - "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.Foundation": "1.8.250701000-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001" } }, "Microsoft.WindowsAppSDK.Runtime": { "type": "Transitive", - "resolved": "1.8.250702007-experimental4", - "contentHash": "zm0LhlOxut0yGEox8aGSq73RadSm7i/5RrKM9Ygk0+BgmC3t27wekr5BUsDFMdakvn/8dAzNiM4HZxFHFTniEg==", + "resolved": "1.8.250907003", + "contentHash": "URsthdat9pv1wnRNAy0WA5yejsc47QsSjjJ+L6INEgIFilrp4/LYndpHkoWh3KwBSjwkskvZlSprbOl09YVg/g==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001" } }, "Microsoft.WindowsAppSDK.Widgets": { "type": "Transitive", - "resolved": "1.8.250610001-experimental", - "contentHash": "hpqPDxj+BmUv+tFsEdE/Fv8UIvLDKPIc96oKgZwlFfIwWmqh0UVnVPj9zqKEKbnZw9GNtSDW93w0J/LgcIvnZQ==", + "resolved": "1.8.250904007", + "contentHash": "sgwdXYhb8S4JjBmWWiFxALT1xK0fJeAbisolctmodMX7tlvBXDgUyvl/GHfTQ61DGIiW+kokX61WR46L2YlhAA==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250501001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001" } }, "Microsoft.WindowsAppSDK.WinUI": { "type": "Transitive", - "resolved": "1.8.250701000-experimental", - "contentHash": "vkA9eI9aTzg+YH/QTQgFyuJv02KOvHIlpmkV6RhyfNt/Z1faZmtOWFVPpnmE+0GJZRHyBkHX/iQ7RZ0xZK5r/A==", + "resolved": "1.8.250906003", + "contentHash": "6oskwUluqlDGwUcwYlY3GWTMLajyjh9e790SmWzCCMDRV6sunYbqp7DkiSLzn8nhgSbGvmj6zG92JnkYRlbrXw==", "dependencies": { "Microsoft.Web.WebView2": "1.0.3179.45", - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.Foundation": "1.8.250701000-experimental", - "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250626001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001", + "Microsoft.WindowsAppSDK.Foundation": "1.8.250906002", + "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250906004" } } }, "net9.0-windows10.0.26100/win-x64": { "Microsoft.Web.WebView2": { - "type": "Direct", - "requested": "[1.0.3415-prerelease, )", - "resolved": "1.0.3415-prerelease", - "contentHash": "7CGb9Y+KGdrJEKhrkU9g+Cz4WjG8wIeWx8eWbKqLgHZEUMayNfyxvILmE05gXhBnG/nz+i1cVLeGfrmIPNMjXQ==" + "type": "Transitive", + "resolved": "1.0.3179.45", + "contentHash": "3pokSH5CnN0G6rGhGFo1y87inxYhNxBQ2Vdf0wlvBj99KHxQJormjDACmqRnFeUsmuNFIhWwfAL1ztq7wD5qRA==" }, "Microsoft.WindowsAppSDK.Foundation": { "type": "Transitive", - "resolved": "1.8.250701000-experimental", - "contentHash": "wM6C3p9x6nGRVnpZMTSU5sitBDW27jgu9Dzu0Ru6NTzOtqA0OQIOUK7j08W0V+Um33ZrWoUGJIVZnrYrzOHFYg==", + "resolved": "1.8.250906002", + "contentHash": "ltIXeHUX0AATpqmx/oBcRK+zhtK0KAfoGqItlQRlef9kG7Itj9iXAI+1EdFr4cQYzHzFM3PPLszEWDyR633svA==", "dependencies": { - "Microsoft.WindowsAppSDK.Base": "1.8.250509001-experimental", - "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250626001-experimental" + "Microsoft.WindowsAppSDK.Base": "1.8.250831001", + "Microsoft.WindowsAppSDK.InteractiveExperiences": "1.8.250906004" } } } diff --git a/Hi3Helper.Core/Classes/Logger/Enum/LogType.cs b/Hi3Helper.Core/Classes/Logger/Enum/LogType.cs index 83383d2e7..80775ab5a 100644 --- a/Hi3Helper.Core/Classes/Logger/Enum/LogType.cs +++ b/Hi3Helper.Core/Classes/Logger/Enum/LogType.cs @@ -1,15 +1,17 @@ -namespace Hi3Helper +// ReSharper disable CheckNamespace +namespace Hi3Helper { public enum LogType { - Error, + Info = 0, + Default = Info, Warning, - Default, + Error, Scheme, - NoTag, Game, Debug, GLC, - Sentry + Sentry, + NoTag } } diff --git a/Hi3Helper.Core/Classes/Logger/ILog.cs b/Hi3Helper.Core/Classes/Logger/ILog.cs index 54b7043dd..f9ce6b0bf 100644 --- a/Hi3Helper.Core/Classes/Logger/ILog.cs +++ b/Hi3Helper.Core/Classes/Logger/ILog.cs @@ -1,61 +1,62 @@ using System; +using System.IO; +using System.Runtime.CompilerServices; using System.Text; +using System.Threading; +using System.Threading.Tasks; -namespace Hi3Helper -{ - public interface ILog : IDisposable - { - /// - /// Print a blank line to the console. - /// - void LogWriteLine(); - - /// - /// Print log to the console. - /// - /// The line to print into console or write into the log file - void LogWriteLine(string line); - - /// - /// Print log to the console. - /// - /// The line to print into console or write into the log file - /// Type of the log line - /// Write the log line into the log file - // ReSharper disable MethodOverloadWithOptionalParameter - void LogWriteLine(string line = null, LogType type = LogType.Default, bool writeToLog = false); - // ReSharper restore MethodOverloadWithOptionalParameter - - /// - /// Print log to the console but without making a new line. - /// - /// The line to print into console or write into the log file - /// Type of the log line - /// Write the log line into the log file - /// Reset the current line position to the beginning - void LogWrite(string line = null, LogType type = LogType.Default, bool writeToLog = false, bool resetLinePosition = false); - - /// - /// Write the line into the log file. - /// - /// The line to write into the log file - /// Type of the log line - void WriteLog(string line = null, LogType type = LogType.Default); - - /// - /// Set the folder path for storing the logs and initialize the log writer - /// - /// The path of the log folder - /// Encoding for the log - void SetFolderPathAndInitialize(string folderPath, Encoding logEncoding); +// ReSharper disable CheckNamespace #nullable enable - /// - /// Reset and clean up all the old log files in the respective folder and - /// reload the log writer. - /// - /// The path of the logs to be cleaned up and reloaded - /// The encoding of the log writer (Default is if null) - void ResetLogFiles(string? reloadToPath, Encoding? encoding = null); - } -} +namespace Hi3Helper; + +public interface ILog : IDisposable +{ + StreamWriter LogWriter { get; } + + void LogWriteLine(); + + void LogWriteLine(ReadOnlySpan line, + LogType type = LogType.Info, + bool writeToLogFile = false, + bool writeTimestampOnLogFile = true); + + void LogWriteLine(ref DefaultInterpolatedStringHandler interpolatedLine, + LogType type = LogType.Info, + bool writeToLogFile = false, + bool writeTimestampOnLogFile = true); + + void LogWrite(ReadOnlySpan line, + LogType type = LogType.Info, + bool appendNewLine = false, + bool writeToLogFile = false, + bool writeTypeTag = false, + bool writeTimestampOnLogFile = true); + + void LogWrite(ref DefaultInterpolatedStringHandler interpolatedLine, + LogType type = LogType.Info, + bool appendNewLine = false, + bool writeToLogFile = false, + bool writeTypeTag = false, + bool writeTimestampOnLogFile = true); + + Task LogWriteLineAsync(CancellationToken token = default); + + Task LogWriteLineAsync(string line, + LogType type = LogType.Info, + bool writeToLogFile = false, + bool writeTimestampOnLogFile = true, + CancellationToken token = default); + + Task LogWriteAsync(string line, + LogType type = LogType.Info, + bool appendNewLine = false, + bool writeToLogFile = false, + bool writeTypeTag = false, + bool writeTimestampOnLogFile = true, + CancellationToken token = default); + + void SetFolderPathAndInitialize(string folderPath, Encoding? logEncoding = null); + + void ResetLogFiles(string reloadToPath, Encoding? encoding = null); +} \ No newline at end of file diff --git a/Hi3Helper.Core/Classes/Logger/ILoggerHelper.cs b/Hi3Helper.Core/Classes/Logger/ILoggerHelper.cs index bcaf9f492..abdfbd397 100644 --- a/Hi3Helper.Core/Classes/Logger/ILoggerHelper.cs +++ b/Hi3Helper.Core/Classes/Logger/ILoggerHelper.cs @@ -1,6 +1,7 @@ using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; +// ReSharper disable CheckNamespace namespace Hi3Helper { @@ -23,7 +24,7 @@ public static ILogger GetILogger(string prefix = "") lock (ILoggerCache) { // Use TryGetValue for thread-safe read operation - if (ILoggerCache.TryGetValue(prefix, out var logger)) + if (ILoggerCache.TryGetValue(prefix, out ILogger? logger)) { return logger; // Return the cached logger instance if it exists } @@ -38,7 +39,7 @@ public static ILogger GetILogger(string prefix = "") private class LoggerWrapper(string prefix = "") : ILogger { public IDisposable BeginScope(TState state) - where TState : notnull => default!; + where TState : notnull => null!; public bool IsEnabled(LogLevel logLevel) => true; @@ -49,29 +50,29 @@ public void Log(LogLevel logLevel, EventId eventId, TState state, Except { LogLevel.Trace => LogType.Debug, LogLevel.Debug => LogType.Debug, - LogLevel.Information => LogType.Default, + LogLevel.Information => LogType.Info, LogLevel.Warning => LogType.Warning, LogLevel.Error => LogType.Error, LogLevel.Critical => LogType.Error, LogLevel.None => LogType.NoTag, - _ => LogType.Default + _ => LogType.Info }; - bool isWriteToLog = logType switch + bool writeToLogFile = logType switch { LogType.Error => true, LogType.Warning => true, #if DEBUG LogType.Debug => true, #else - LogType.Debug => false, + LogType.Debug => false, #endif _ => false }; string message = formatter(state, exception); Logger.LogWriteLine($"{(!string.IsNullOrEmpty(prefix) ? $"[{prefix}] " : "")}{message}", logType, - isWriteToLog); + writeToLogFile); } } } diff --git a/Hi3Helper.Core/Classes/Logger/Logger.cs b/Hi3Helper.Core/Classes/Logger/Logger.cs index 97e3fb66e..5142f5a26 100644 --- a/Hi3Helper.Core/Classes/Logger/Logger.cs +++ b/Hi3Helper.Core/Classes/Logger/Logger.cs @@ -1,12 +1,97 @@ -namespace Hi3Helper -{ +using Hi3Helper.Shared.Region; +using System; +using System.IO; +using System.Runtime.CompilerServices; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +// ReSharper disable CheckNamespace +// ReSharper disable UnusedMember.Global + +#pragma warning disable CA2211 #nullable enable - public static class Logger +namespace Hi3Helper; + +public static class Logger +{ + public static readonly LoggerBase Null = new LoggerNull(); + public static ILog? CurrentLogger; + public static StreamWriter LogFileWriter => CurrentLogger?.LogWriter ?? StreamWriter.Null; + + public static void UseConsoleLog(bool isEnable) { - public static ILog? CurrentLogger { get; set; } - public static void LogWriteLine() => CurrentLogger?.LogWriteLine(); - public static void LogWriteLine(string line, LogType type = LogType.Default, bool writeToLog = false) => CurrentLogger?.LogWriteLine(line, type, writeToLog); - public static void LogWrite(string line, LogType type = LogType.Default, bool writeToLog = false, bool resetLinePosition = false) => CurrentLogger?.LogWrite(line, type, writeToLog, resetLinePosition); - public static void WriteLog(string line, LogType type = LogType.Default) => CurrentLogger?.WriteLog(line, type); + using (LoggerBase.LockObject.EnterScope()) + { + switch (isEnable) + { + case false when CurrentLogger is LoggerNull: + case true when CurrentLogger is LoggerConsole: + return; + } + + CurrentLogger?.Dispose(); + + string logPath = LauncherConfig.AppGameLogsFolder; + Interlocked.Exchange(ref CurrentLogger, + isEnable + ? new LoggerConsole(logPath, Encoding.UTF8) + : new LoggerNull(logPath, Encoding.UTF8)); + } } -} + + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public static void LogWriteLine() + => CurrentLogger?.LogWriteLine(); + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public static void LogWriteLine(ReadOnlySpan line, + LogType type = LogType.Info, + bool writeToLog = false, + bool writeTimestampOnLogFile = true) + => CurrentLogger?.LogWriteLine(line, type, writeToLog, writeTimestampOnLogFile); + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public static void LogWriteLine([InterpolatedStringHandlerArgument] ref DefaultInterpolatedStringHandler interpolatedLine, + LogType type = LogType.Info, + bool writeToLog = false, + bool writeTimestampOnLogFile = true) + => CurrentLogger?.LogWriteLine(ref interpolatedLine, type, writeToLog, writeTimestampOnLogFile); + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public static void LogWrite(ReadOnlySpan line, + LogType type = LogType.Info, + bool appendNewLine = false, + bool writeToLog = false, + bool writeTypeTag = false, + bool writeTimestampOnLogFile = true) + => CurrentLogger?.LogWrite(line, type, appendNewLine, writeToLog, writeTypeTag, writeTimestampOnLogFile); + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public static void LogWrite([InterpolatedStringHandlerArgument] ref DefaultInterpolatedStringHandler interpolatedLine, + LogType type = LogType.Info, + bool appendNewLine = false, + bool writeToLog = false, + bool writeTypeTag = false, + bool writeTimestampOnLogFile = true) + => CurrentLogger?.LogWrite(ref interpolatedLine, type, appendNewLine, writeToLog, writeTypeTag, writeTimestampOnLogFile); + + public static Task LogWriteLineAsync(CancellationToken token = default) + => CurrentLogger?.LogWriteLineAsync(token) ?? Task.CompletedTask; + + public static Task LogWriteLineAsync(string line, + LogType type = LogType.Info, + bool writeToLog = false, + bool writeTimestampOnLogFile = true, + CancellationToken token = default) + => CurrentLogger?.LogWriteLineAsync(line, type, writeToLog, writeTimestampOnLogFile, token) ?? Task.CompletedTask; + + public static Task LogWriteAsync(string line, + LogType type = LogType.Info, + bool appendNewLine = false, + bool writeToLog = false, + bool writeTypeTag = false, + bool writeTimestampOnLogFile = true, + CancellationToken token = default) + => CurrentLogger?.LogWriteAsync(line, type, appendNewLine, writeToLog, writeTypeTag, writeTimestampOnLogFile, token) ?? Task.CompletedTask; +} \ No newline at end of file diff --git a/Hi3Helper.Core/Classes/Logger/LoggerBase.cs b/Hi3Helper.Core/Classes/Logger/LoggerBase.cs index 7c37d887e..b5dc5435e 100644 --- a/Hi3Helper.Core/Classes/Logger/LoggerBase.cs +++ b/Hi3Helper.Core/Classes/Logger/LoggerBase.cs @@ -3,6 +3,12 @@ using System.IO; using System.Text; using System.Threading; +using System.Runtime.CompilerServices; +using System.Threading.Tasks; +using System.Buffers; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.InteropServices; #if !APPLYUPDATE using Hi3Helper.Shared.Region; @@ -10,282 +16,636 @@ // ReSharper disable StringLiteralTypo #endif -namespace Hi3Helper +#nullable enable +namespace Hi3Helper; + +public abstract class LoggerBase : ILog { - public abstract class LoggerBase + protected const string DateTimeFormat = "HH:mm:ss.fff"; + protected readonly Encoding Encoding; + internal static readonly Lock LockObject = new(); + + /// + /// NOTE FOR COLLAPSE DEVELOPER:
+ /// Edit this dictionary to map the color of the log type tag.
+ /// If the enum isn't defined, then it will use the default (non-colored) tag. + ///
+ private static readonly Dictionary ConsoleColorMap = new() { - #region Properties - private FileStream LogStream { get; set; } - private StreamWriter LogWriter { get; set; } - private bool IsWriterOnDispose { get; set; } - private readonly Lock _lockObject = new(); - private StringBuilder StringBuilder { get; } - private string LogFolder { get; set; } + { LogType.Info, "\e[32;1m" }, + { LogType.Warning, "\e[33;1m" }, + { LogType.Error, "\e[31;1m" }, + { LogType.Scheme, "\e[34;1m" }, + { LogType.Game, "\e[35;1m" }, + { LogType.Debug, "\e[36;1m" }, + { LogType.GLC, "\e[91;1m" }, + { LogType.Sentry, "\e[42;1m" } + }; + + protected static ReadOnlySpan NewLineBytes => "\r\n"u8; + private static readonly unsafe byte* NewLineBytesP = GetSpanPointer(NewLineBytes); + private static readonly uint NewLineBytesPLen = (uint)NewLineBytes.Length; + + protected StreamWriter LogWriterField = StreamWriter.Null; + public StreamWriter LogWriter => LogWriterField; + private string? LogFolder { get; set; } + #if !APPLYUPDATE - public static string LogPath { get; set; } + public static string? LogPath { get; set; } #endif - #endregion - #region Statics - public static string GetCurrentTime(string format) => DateTime.Now.ToLocalTime().ToString(format); - #endregion + #region Static Class Constructor + static unsafe LoggerBase() + { + HashSet distinctIndex = []; + foreach (LogType logType in Enum.GetValues()) + { + distinctIndex.Add((int)logType); + } + + int maxCharInTag = distinctIndex + .Select(x => (LogType)x) + .Max(x => x.ToString().Length) + 3; + string defaultEmptyTag = new string(' ', maxCharInTag); - protected LoggerBase(string logFolder, Encoding logEncoding) + List colorCodes = []; + List tagTypes = []; + foreach (int index in distinctIndex) { - // Initialize the writer and _stringBuilder - StringBuilder = new StringBuilder(); - SetFolderPathAndInitialize(logFolder, logEncoding); + LogType type = (LogType)index; + string colorCode = ConsoleColorMap.GetValueOrDefault(type, DefaultEmptyColor); + + colorCodes.Add(colorCode); + tagTypes.Add(type == LogType.NoTag ? defaultEmptyTag : $"[{type}] "); } - #region Methods - public void SetFolderPathAndInitialize(string folderPath, Encoding logEncoding) + int maxLen = tagTypes.Max(x => x.Length); + int elementLen = tagTypes.Count; + + nint[] logTagTypePArray = new nint[elementLen]; + uint[] logTagTypePLenArray = new uint[elementLen]; + nint[] logColorPArray = new nint[elementLen]; + uint[] logColorPLenArray = new uint[elementLen]; + + for (int i = 0; i < elementLen; i++) { - // Set the folder path of the stored log - LogFolder = folderPath; + byte* allocTag = (byte*)NativeMemory.Alloc((nuint)maxLen); -#if !APPLYUPDATE - // Check if the directory exist. If not, then create. - if (!string.IsNullOrEmpty(LogFolder) && !Directory.Exists(LogFolder)) + // Write tag type + ReadOnlySpan tagChar = tagTypes[i].AsSpan(); + int tagCharLen = tagChar.Length; + char* tagCharPtr = (char*)Unsafe.AsPointer(ref MemoryMarshal.GetReference(tagChar)); + new Span(allocTag, maxLen).Fill((byte)' '); + + logTagTypePArray[i] = (nint)allocTag; + logTagTypePLenArray[i] = (uint)maxLen; + _ = Encoding.UTF8.GetBytes(tagCharPtr, tagCharLen, allocTag, maxLen); + + // Write color code + ReadOnlySpan colorChar = colorCodes[i]; + int colorCharLen = colorChar.Length; + char* colorCharPtr = (char*)Unsafe.AsPointer(ref MemoryMarshal.GetReference(colorChar)); + byte* allocColor = (byte*)NativeMemory.Alloc((nuint)colorCharLen); + + logColorPArray[i] = (nint)allocColor; + logColorPLenArray[i] = (uint)Encoding.UTF8.GetBytes(colorCharPtr, colorCharLen, allocColor, colorCharLen); + } + + // Alloc and pin array to GC + GCHandle logColorPArrayGc = GCHandle.Alloc(logColorPArray, GCHandleType.Pinned); + GCHandle logColorPLenArrayGc = GCHandle.Alloc(logColorPLenArray, GCHandleType.Pinned); + GCHandle logTagTypePArrayGc = GCHandle.Alloc(logTagTypePArray, GCHandleType.Pinned); + GCHandle logTagTypePLenArrayGc = GCHandle.Alloc(logTagTypePLenArray, GCHandleType.Pinned); + + LogColorP = (byte**)logColorPArrayGc.AddrOfPinnedObject(); + LogColorPLen = (uint*)logColorPLenArrayGc.AddrOfPinnedObject(); + + LogTagTypeP = (byte**)logTagTypePArrayGc.AddrOfPinnedObject(); + LogTagTypePLen = (uint*)logTagTypePLenArrayGc.AddrOfPinnedObject(); + + // Create empty color code + int colorEmptyLen = DefaultEmptyColor.Length; + char* colorEmptyPtr = (char*)Unsafe.AsPointer(ref MemoryMarshal.GetReference(DefaultEmptyColor.AsSpan())); + + LogColorEmptyP = (byte*)NativeMemory.Alloc((nuint)DefaultEmptyColor.Length); + LogColorEmptyPLen = (uint)Encoding.UTF8.GetBytes(colorEmptyPtr, colorEmptyLen, LogColorEmptyP, colorEmptyLen); + + // Create no tag no timestamp + int noTagNoTimestampLen = maxCharInTag + DateTimeFormat.Length + 2; + NoTagNoTimestampPaddingP = (byte*)NativeMemory.Alloc((nuint)noTagNoTimestampLen); + NoTagNoTimestampPaddingPLen = (uint)noTagNoTimestampLen; + new Span(NoTagNoTimestampPaddingP, noTagNoTimestampLen).Fill((byte)' '); + } + #endregion + + #region Auto-generated Properties (by Static Class Constructor) + private const string DefaultEmptyColor = "\e[0m"; + private static readonly unsafe byte* NoTagNoTimestampPaddingP; + private static readonly uint NoTagNoTimestampPaddingPLen; + + private static readonly unsafe byte** LogColorP; + private static readonly unsafe uint* LogColorPLen; + private static readonly unsafe byte* LogColorEmptyP; + private static readonly uint LogColorEmptyPLen; + + private static readonly unsafe byte** LogTagTypeP; + private static readonly unsafe uint* LogTagTypePLen; + #endregion + + #region De/Constructors + ~LoggerBase() + { + LogWriterField.Flush(); + } + + protected LoggerBase() + { + Encoding = Encoding.UTF8; + } + + protected LoggerBase(string logFolder, Encoding? logEncoding) + { + Encoding = logEncoding ?? Encoding.UTF8; + + // Initialize the writer + SetFolderPathAndInitialize(logFolder, logEncoding); + } + #endregion + + #region Public Methods + public void SetFolderPathAndInitialize(string folderPath, Encoding? logEncoding) + { + // Set the folder path of the stored log + LogFolder = folderPath; + + #if !APPLYUPDATE + // Check if the directory exist. If not, then create. + if (!string.IsNullOrEmpty(LogFolder) && !Directory.Exists(LogFolder)) + { + Directory.CreateDirectory(LogFolder); + } + + // Reset state + DisposeCore(true); + + try + { + // Initialize writer and the path of the log file. + InitializeWriter(false, logEncoding); + } + catch (Exception ex) + { + SentryHelper.SentryHelper.ExceptionHandler(ex); + // If the initialization above fails, then use fallback. + InitializeWriter(true, logEncoding); + } + #endif + } + + public void ResetLogFiles(string? reloadToPath, Encoding? encoding = null) + { + using (LockObject.EnterScope()) + { + DisposeCore(true); + + if (!string.IsNullOrEmpty(LogFolder) && Directory.Exists(LogFolder)) { - Directory.CreateDirectory(LogFolder); + DeleteLogFilesInner(LogFolder); } -#endif - using (_lockObject.EnterScope()) + if (!string.IsNullOrEmpty(reloadToPath) && !Directory.Exists(reloadToPath)) { - // Try dispose the _logWriter even though it's not initialized. - // This will be used if the program need to change the log folder to another location. - DisposeBase(); + Directory.CreateDirectory(reloadToPath); + } -#if !APPLYUPDATE - try - { - // Initialize writer and the path of the log file. - InitializeWriter(false, logEncoding); - } - catch (Exception ex) - { - SentryHelper.SentryHelper.ExceptionHandler(ex); - // If the initialization above fails, then use fallback. - InitializeWriter(true, logEncoding); - } -#endif + if (!string.IsNullOrEmpty(reloadToPath)) + { + LogFolder = reloadToPath; } + + encoding ??= Encoding.UTF8; + SetFolderPathAndInitialize(LogFolder ?? "", encoding); } + } + #endregion -#nullable enable - public void ResetLogFiles(string? reloadToPath, Encoding? encoding = null) + #region Private Methods +#if !APPLYUPDATE + private void InitializeWriter(bool isFallback, Encoding? logEncoding) + { + using (LockObject.EnterScope()) { - using (_lockObject.EnterScope()) - { - DisposeBase(); + DateTime dateTimeNow = DateTime.Now; - if (!string.IsNullOrEmpty(LogFolder) && Directory.Exists(LogFolder)) - DeleteLogFilesInner(LogFolder); + // Initialize _logPath and get fallback string at the end of the filename if true or none if false. + string fallbackString = isFallback ? "-f" + Path.GetFileNameWithoutExtension(Path.GetTempFileName()) : string.Empty; + string dateString = dateTimeNow.ToString("yyyy-MM-dd"); - if (!string.IsNullOrEmpty(reloadToPath) && !Directory.Exists(reloadToPath)) - Directory.CreateDirectory(reloadToPath); + // Append the build name + fallbackString += LauncherConfig.IsPreview ? "-pre" : "-sta"; + fallbackString += LauncherConfig.AppCurrentVersionString; - if (!string.IsNullOrEmpty(reloadToPath)) - LogFolder = reloadToPath; + // Append the current instance number + int numOfInstance = ProcessChecker.EnumerateInstances(ILoggerHelper.GetILogger()); + fallbackString += $"-id{numOfInstance}"; + LogPath = Path.Combine(LogFolder ?? "", $"log-{dateString + fallbackString}-{dateTimeNow:HH-mm-ss}.log"); + Console.WriteLine("\e[37;44m[LOGGER]\e[0m Log will be written to: " + LogPath); - encoding ??= Encoding.UTF8; + // Initialize _logWriter to the given _logPath. + // The FileShare.ReadWrite is still being used to avoid potential conflict if the launcher needs + // to warm-restart itself in rare occasion (like update mechanism with Squirrel). + FileStream fileStream = new FileStream(LogPath, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.ReadWrite); + // Seek the file to the EOF + fileStream.Seek(0, SeekOrigin.End); - SetFolderPathAndInitialize(LogFolder, encoding); - } + // Initialize the StreamWriter + LogWriterField = new StreamWriter(fileStream, logEncoding ?? Encoding.UTF8, 16 << 10, false); } + } - private void DeleteLogFilesInner(string folderPath) + private static void DeleteLogFilesInner(string folderPath) + { + DirectoryInfo dirInfo = new DirectoryInfo(folderPath); + foreach (FileInfo fileInfo in dirInfo.EnumerateFiles("log-*-id*.log", SearchOption.TopDirectoryOnly)) { - DirectoryInfo dirInfo = new DirectoryInfo(folderPath); - foreach (FileInfo fileInfo in dirInfo.EnumerateFiles("log-*-id*.log", SearchOption.TopDirectoryOnly)) + try { - try - { - fileInfo.Delete(); - LogWriteLine($"Removed log file: {fileInfo.FullName}", LogType.Default); - } - catch (Exception ex) - { - SentryHelper.SentryHelper.ExceptionHandler(ex, SentryHelper.SentryHelper.ExceptionType.UnhandledOther); - LogWriteLine($"Cannot remove log file: {fileInfo.FullName}\r\n{ex}", LogType.Error); - } + fileInfo.Delete(); + Logger.LogWriteLine($"Removed log file: {fileInfo.FullName}"); + } + catch (Exception ex) + { + SentryHelper.SentryHelper.ExceptionHandler(ex, SentryHelper.SentryHelper.ExceptionType.UnhandledOther); + Logger.LogWriteLine($"Cannot remove log file: {fileInfo.FullName}\r\n{ex}", LogType.Error); } } -#nullable restore - - public abstract void LogWriteLine(); - // ReSharper disable MethodOverloadWithOptionalParameter - public abstract void LogWriteLine(string line = null); - // ReSharper restore MethodOverloadWithOptionalParameter - public abstract void LogWriteLine(string line, LogType type); - public abstract void LogWriteLine(string line, LogType type, bool writeToLog); - public abstract void LogWrite(string line, LogType type, bool writeToLog, bool fromStart); - public void WriteLog(string line, LogType type) + } +#endif + + protected virtual void DisposeCore(bool onlyReset = false) + { + LogWriter.Dispose(); // Automatically dispose the FileStream inside + Interlocked.Exchange(ref LogWriterField, StreamWriter.Null); + } + #endregion + + #region Util Methods + [MethodImpl(MethodImplOptions.AggressiveInlining)] + protected static unsafe uint CopyToBuffer(void* destination, void* source, uint len) + { + Unsafe.CopyBlock(destination, source, len); + return len; + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + protected static unsafe T* GetSpanPointer(ReadOnlySpan span) + where T : unmanaged => (T*)Unsafe.AsPointer(ref MemoryMarshal.GetReference(span)); + + [UnsafeAccessor(UnsafeAccessorKind.Method, Name = "get_Text")] + protected static extern ReadOnlySpan GetInterpolateStringSpan(ref DefaultInterpolatedStringHandler element); + + [UnsafeAccessor(UnsafeAccessorKind.Method, Name = "Clear")] + protected static extern void ClearInterpolateString(ref DefaultInterpolatedStringHandler element); + #endregion + + #region Logging Methods + private readonly ArrayPool _logBufferPool = ArrayPool.Create(); + private byte[] _buffer = []; + + protected bool IsBufferBudgetSufficient(int requestedSize) + => _buffer.Length >= requestedSize; + + protected void ResizeBuffer(int requestedSize) + { + if (_buffer.Length == 0) { - // Always seek to the end of the file. - lock(_lockObject) + _buffer = _logBufferPool.Rent(requestedSize); + return; + } + + _logBufferPool.Return(_buffer); + _buffer = _logBufferPool.Rent(requestedSize); + } + + protected unsafe void WriteLineToStreamCore(Stream stream, + ReadOnlySpan line, + LogType type = LogType.Info, + bool appendNewLine = true, + bool isWriteColor = true, + bool isWriteTagType = true, + bool isWriteTimestamp = false) + { + using (LockObject.EnterScope()) + { + int lineUtf8Len = Encoding.GetMaxByteCount(line.Length + 48); + bool useStackalloc = lineUtf8Len <= 512; + if (!useStackalloc && !IsBufferBudgetSufficient(lineUtf8Len)) { - try - { - if (IsWriterOnDispose) return; + ResizeBuffer(lineUtf8Len); + } - LogWriter?.BaseStream.Seek(0, SeekOrigin.End); - LogWriter?.WriteLine(GetLine(line, type, false, true)); - } - catch (IOException ex) when (ex.HResult == unchecked((int)0x80070070)) // Disk full? Delete all logs <: - { - #nullable enable - Console.WriteLine("Disk is full.. Resetting log files!"); - // Rewrite log - try - { - Logger.CurrentLogger?.ResetLogFiles(LauncherConfig.AppGameLogsFolder, Encoding.UTF8); - // Attempt to write the log again after resetting - LogWriter?.BaseStream.Seek(0, SeekOrigin.End); - LogWriter?.WriteLine(GetLine(line, type, false, true)); - } - catch (Exception retryEx) - { - SentryHelper.SentryHelper.ExceptionHandler(retryEx, SentryHelper.SentryHelper.ExceptionType.UnhandledOther); - Console.WriteLine($"Error while writing log file after reset!\r\n{retryEx}"); - } - #nullable restore - } - catch (Exception ex) + scoped Span buffer = useStackalloc ? stackalloc byte[lineUtf8Len] : _buffer; + + int len = isWriteTagType ? + WriteToBufferWithIndentCore(line, + buffer, + type, + appendNewLine, + isWriteColor, + isWriteTagType, + isWriteTimestamp) : + WriteToBufferCore(line, + buffer, + type, + appendNewLine, + isWriteColor, + isWriteTagType, + isWriteTimestamp, + false); + + stream.Write(buffer[..len]); + stream.Flush(); + } + } + + private static ReadOnlySpan GetCurrentSplitLine(in Range range, + ReadOnlySpan line, + ref LogType type, + ref int iteration) + { + ReadOnlySpan currentLine = line[range]; + + if (currentLine.Length != 0 && + currentLine[^1] == '\r') + { + currentLine = currentLine[..^1]; + } + + if (type != LogType.Game || + currentLine.Length == 0 || + (currentLine[0] != ' ' && + currentLine[0] != '\t')) + { + return currentLine; + } + + type = LogType.NoTag; + ++iteration; + + return currentLine; + } + + private int WriteToBufferWithIndentCore(ReadOnlySpan line, + Span bufferSpan, + LogType type, + bool appendNewLine, + bool isWriteColor, + bool isWriteTagType, + bool isWriteTimestamp) + { + int written = 0; + int iteration = 0; + + foreach (Range range in line.SplitAny('\n')) + { + ReadOnlySpan currentLine = GetCurrentSplitLine(in range, line, ref type, ref iteration); + written += WriteToBufferCore(currentLine, + bufferSpan[written..], + type, + appendNewLine, + isWriteColor, + isWriteTagType, + isWriteTimestamp, + iteration > 0 && isWriteTimestamp); + + type = LogType.NoTag; + iteration++; + } + + return written; + } + + [MethodImpl(MethodImplOptions.NoInlining)] + private unsafe int WriteToBufferCore(ReadOnlySpan line, + Span buffer, + LogType type, + bool appendNewLine, + bool isWriteColor, + bool isWriteTagType, + bool isWriteTimestamp, + bool isWriteTimeTagPadding) + { + const byte squareBracketOpen = 0x5B; // [ + const byte squareBracketClose = 0x5D; // ] + + char* lineP = GetSpanPointer(line); + byte* bufferP = GetSpanPointer(buffer); + byte* bufferPStart = bufferP; + + int typeIndex = (int)type; + byte* tagColorP = *(LogColorP + typeIndex); + uint tagColorPLen = *(LogColorPLen + typeIndex); + byte* tagTypeP = *(LogTagTypeP + typeIndex); + uint tagTypePLen = *(LogTagTypePLen + typeIndex); + + if (isWriteTimeTagPadding && isWriteTimestamp) + { + bufferP += CopyToBuffer(bufferP, NoTagNoTimestampPaddingP, NoTagNoTimestampPaddingPLen); + } + + if (!isWriteTimeTagPadding && isWriteTagType) + { + if (isWriteTimestamp) + { + DateTimeOffset offsetNow = DateTimeOffset.Now; + *bufferP++ = squareBracketOpen; + if (offsetNow.TryFormat(new Span(bufferP, 16), out int dateTimeFormatWritten, DateTimeFormat)) { - SentryHelper.SentryHelper.ExceptionHandler(ex, SentryHelper.SentryHelper.ExceptionType.UnhandledOther); - Console.WriteLine($"Error while writing log file!\r\n{ex}"); + bufferP += dateTimeFormatWritten; } + *bufferP++ = squareBracketClose; + } + + if (isWriteColor) + { + bufferP += CopyToBuffer(bufferP, tagColorP, tagColorPLen); + bufferP += CopyToBuffer(bufferP, tagTypeP, tagTypePLen); + bufferP += CopyToBuffer(bufferP, LogColorEmptyP, LogColorEmptyPLen); + } + else + { + bufferP += CopyToBuffer(bufferP, tagTypeP, tagTypePLen); } } -#endregion - - #region ProtectedMethods - /// - /// Get the line for displaying or writing into the log based on their type - /// - /// Line for the log you want to return - /// Type of the log. The type will be added in the return - /// Whether to colorize the type string, typically used for displaying - /// Whether to append a timestamp after log type - /// Decorated line with colored type or timestamp according to the parameters - protected string GetLine(string line, LogType type, bool coloredType, bool withTimeStamp) + + int bufferSpaceLeft = buffer.Length - (int)(bufferP - bufferPStart); + bufferP += Encoding.GetBytes(lineP, line.Length, bufferP, bufferSpaceLeft); + if (appendNewLine) { - lock (StringBuilder) - { - // Clear the _stringBuilder - StringBuilder.Clear(); + bufferP += CopyToBuffer(bufferP, NewLineBytesP, NewLineBytesPLen); + } - // Colorize the log type - if (coloredType) - { - StringBuilder.Append(GetColorizedString(type) + GetLabelString(type) + "\e[0m"); - } - else - { - StringBuilder.Append(GetLabelString(type)); - } + return (int)(bufferP - bufferPStart); + } - // Append timestamp - if (withTimeStamp) - { - if (type != LogType.NoTag) - { - StringBuilder.Append($" [{GetCurrentTime("HH:mm:ss.fff")}]"); - } - else - { - StringBuilder.Append(new string(' ', 15)); - } - } - // Append spaces between labels and text - StringBuilder.Append(" "); - StringBuilder.Append(line); + protected async Task WriteLineToStreamCoreAsync(Stream stream, + string line, + LogType type = LogType.Info, + bool appendNewLine = true, + bool isWriteColor = true, + bool isWriteTagType = true, + bool isWriteTimestamp = false, + CancellationToken token = default) + { + int lineUtf8Len = Encoding.GetMaxByteCount(line.Length); + byte[] buffer = _logBufferPool.Rent(lineUtf8Len); - return StringBuilder.ToString(); - } + try + { + int len = WriteToBufferCore(line, + buffer, + type, + appendNewLine, + isWriteColor, + isWriteTagType, + isWriteTimestamp, + false); + await stream.WriteAsync(buffer.AsMemory(0, len), token); + } + finally + { + await stream.FlushAsync(token); + _logBufferPool.Return(buffer); } + } - protected void DisposeBase() + public virtual void LogWriteLine() { } + + public virtual void LogWriteLine(ReadOnlySpan line, + LogType type = LogType.Info, + bool writeToLogFile = false, + bool writeTimestampOnLogFile = true) + { + if (!writeToLogFile) { - IsWriterOnDispose = true; - LogWriter?.Dispose(); - LogStream?.Dispose(); + return; } - #endregion - #region PrivateMethods -#if !APPLYUPDATE - private void InitializeWriter(bool isFallback, Encoding logEncoding) + WriteLineToStreamCore(LogWriter.BaseStream, + line, + type, + isWriteColor: false, + isWriteTimestamp: writeTimestampOnLogFile); + } + + public virtual void LogWriteLine(ref DefaultInterpolatedStringHandler interpolatedLine, + LogType type = LogType.Info, + bool writeToLogFile = false, + bool writeTimestampOnLogFile = true) + { + ReadOnlySpan line = GetInterpolateStringSpan(ref interpolatedLine); + + try { - // Initialize _logPath and get fallback string at the end of the filename if true or none if false. - string fallbackString = isFallback ? ("-f" + Path.GetFileNameWithoutExtension(Path.GetTempFileName())) : string.Empty; - string dateString = GetCurrentTime("yyyy-MM-dd"); - // Append the build name - fallbackString += LauncherConfig.IsPreview ? "-pre" : "-sta"; - // Append current app version - fallbackString += LauncherConfig.AppCurrentVersionString; - // Append the current instance number - fallbackString += $"-id{GetTotalInstance()}"; - LogPath = Path.Combine(LogFolder, $"log-{dateString + fallbackString}-{GetCurrentTime("HH-mm-ss")}.log"); - Console.WriteLine("\e[37;44m[LOGGER]\e[0m Log will be written to: " + LogPath); + if (!writeToLogFile) + { + return; + } - // Initialize _logWriter to the given _logPath. - // The FileShare.ReadWrite is still being used to avoid potential conflict if the launcher needs - // to warm-restart itself in rare occasion (like update mechanism with Squirrel). - LogStream = new FileStream(LogPath, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.ReadWrite); - // Seek the file to the EOF - LogStream.Seek(0, SeekOrigin.End); + LogWriteLine(line, type, writeToLogFile, writeTimestampOnLogFile); + } + finally + { + ClearInterpolateString(ref interpolatedLine); + } + } - // Initialize the StreamWriter - LogWriter = new StreamWriter(LogStream, logEncoding) { AutoFlush = true }; - IsWriterOnDispose = false; + public virtual void LogWrite(ReadOnlySpan line, + LogType type = LogType.Info, + bool appendNewLine = false, + bool writeToLogFile = false, + bool writeTypeTag = false, + bool writeTimestampOnLogFile = true) + { + if (!writeToLogFile) + { + return; } - private static int GetTotalInstance() => ProcessChecker.EnumerateInstances(ILoggerHelper.GetILogger()); -#endif + WriteLineToStreamCore(LogWriter.BaseStream, + line, + type, + appendNewLine: appendNewLine, + isWriteColor: false, + isWriteTimestamp: writeTimestampOnLogFile, + isWriteTagType: writeTimestampOnLogFile); + } + + public virtual void LogWrite(ref DefaultInterpolatedStringHandler interpolatedLine, + LogType type = LogType.Info, + bool appendNewLine = false, + bool writeToLogFile = false, + bool writeTypeTag = false, + bool writeTimestampOnLogFile = true) + { + + ReadOnlySpan line = GetInterpolateStringSpan(ref interpolatedLine); - private static ArgumentException ThrowInvalidType() => new ArgumentException("Type must be Default, Error, Warning, Scheme, Game, Debug, GLC, Remote or Empty!"); - - /// - /// Get the ASCII color in string form. - /// - /// The type of the log - /// A string of the ASCII color - private static string GetColorizedString(LogType type) => type switch - { - LogType.Default => "\e[32;1m", - LogType.Error => "\e[31;1m", - LogType.Warning => "\e[33;1m", - LogType.Scheme => "\e[34;1m", - LogType.Game => "\e[35;1m", - LogType.Debug => "\e[36;1m", - LogType.GLC => "\e[91;1m", - LogType.Sentry => "\e[42;1m", - _ => string.Empty - }; - - /// - /// Get the label string based on log type. - /// - /// The type of the log - /// A string of the label based on type - /// - private static string GetLabelString(LogType type) => type switch - { - LogType.Default => "[Info] ", - LogType.Error => "[Erro] ", - LogType.Warning => "[Warn] ", - LogType.Scheme => "[Schm] ", - LogType.Game => "[Game] ", - LogType.Debug => "[DBG] ", - LogType.GLC => "[GLC] ", - LogType.Sentry => "[Sentry] ", - LogType.NoTag => " ", - _ => throw ThrowInvalidType() - }; -#endregion + try + { + if (!writeToLogFile) + { + return; + } + + LogWrite(line, type, appendNewLine, writeToLogFile, writeTypeTag, writeTimestampOnLogFile); + } + finally + { + ClearInterpolateString(ref interpolatedLine); + } + } + + public virtual Task LogWriteLineAsync(CancellationToken token = default) + => Task.CompletedTask; + + public virtual Task LogWriteLineAsync(string line, + LogType type = LogType.Info, + bool writeToLogFile = false, + bool writeTimestampOnLogFile = true, + CancellationToken token = default) + => !writeToLogFile ? + Task.CompletedTask : + WriteLineToStreamCoreAsync(LogWriter.BaseStream, + line, + type, + isWriteColor: false, + isWriteTimestamp: writeTimestampOnLogFile, + token: token); + + public virtual Task LogWriteAsync(string line, + LogType type = LogType.Info, + bool appendNewLine = false, + bool writeToLogFile = false, + bool writeTypeTag = false, + bool writeTimestampOnLogFile = true, + CancellationToken token = default) + => !writeToLogFile ? + Task.CompletedTask : + WriteLineToStreamCoreAsync(LogWriter.BaseStream, + line, + type, + appendNewLine: appendNewLine, + isWriteColor: false, + isWriteTimestamp: writeTimestampOnLogFile, + isWriteTagType: writeTimestampOnLogFile, + token: token); + + public void Dispose() + { + DisposeCore(); + GC.SuppressFinalize(this); } -} + #endregion +} \ No newline at end of file diff --git a/Hi3Helper.Core/Classes/Logger/SimpleConsoleWin32OutStream.cs b/Hi3Helper.Core/Classes/Logger/SimpleConsoleWin32OutStream.cs new file mode 100644 index 000000000..ebe92f75f --- /dev/null +++ b/Hi3Helper.Core/Classes/Logger/SimpleConsoleWin32OutStream.cs @@ -0,0 +1,85 @@ +using System; +using System.IO; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +// ReSharper disable CheckNamespace +#pragma warning disable SYSLIB1054 + +namespace Hi3Helper; + +internal sealed class SimpleConsoleWin32OutStream : Stream +{ + private readonly unsafe void* _consoleHandleUnsafe; + private readonly bool _isFreeConsoleHandle; + + internal unsafe SimpleConsoleWin32OutStream(nint consoleHandle, bool freeConsoleHandle = false) + { + _consoleHandleUnsafe = (void*)consoleHandle; + _isFreeConsoleHandle = freeConsoleHandle; + } + + [DllImport("Kernel32.dll", EntryPoint = "WriteConsoleA")] + private static extern unsafe int WriteConsole(void* hConsoleOutput, + void* lpBuffer, + uint nNumberOfCharsToWrite, + uint* lpNumberOfCharsWritten, + void* lpReserved); + + [DllImport("Kernel32.dll", EntryPoint = "CloseHandle")] + private static extern unsafe int CloseHandle(void* handle); + + public override void Flush() + { + // NOP: Intended. Reason: Console doesn't have flush function. + } + + public override int Read(byte[] buffer, int offset, int count) => throw new NotSupportedException(); + + public override long Seek(long offset, SeekOrigin origin) => throw new NotSupportedException(); + + public override void SetLength(long value) => throw new NotSupportedException(); + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public override void Write(byte[] buffer, int offset, int count) + => Write(buffer.AsSpan(offset, count)); + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public override unsafe void Write(ReadOnlySpan buffer) + { + void* ptr = Unsafe.AsPointer(ref MemoryMarshal.GetReference(buffer)); + WriteCore(ptr, (uint)buffer.Length); + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public unsafe void WriteCore(void* buffer, uint len) + { + uint written = 0; + + Write: + int result = WriteConsole(_consoleHandleUnsafe, buffer, len, &written, null); + Marshal.ThrowExceptionForHR(result); + len -= written; + if (len > 0) + { + buffer = Unsafe.Add(buffer, (int)written); + goto Write; + } + } + + protected override unsafe void Dispose(bool disposing) + { + if (!disposing || !_isFreeConsoleHandle) + { + return; + } + + int hResult = CloseHandle(_consoleHandleUnsafe); + Marshal.ThrowExceptionForHR(hResult); + } + + public override bool CanRead => false; + public override bool CanSeek => false; + public override bool CanWrite => true; + public override long Length => throw new NotSupportedException(); + public override long Position { get => throw new NotSupportedException(); set => throw new NotSupportedException(); } +} diff --git a/Hi3Helper.Core/Classes/Logger/Type/LoggerConsole.cs b/Hi3Helper.Core/Classes/Logger/Type/LoggerConsole.cs index efae6ee1b..d9e7e9b54 100644 --- a/Hi3Helper.Core/Classes/Logger/Type/LoggerConsole.cs +++ b/Hi3Helper.Core/Classes/Logger/Type/LoggerConsole.cs @@ -1,157 +1,276 @@ using Hi3Helper.Win32.ManagedTools; using Hi3Helper.Win32.Native.LibraryImport; using System; +using System.Runtime.CompilerServices; using System.Text; +using System.Threading; +using System.Threading.Tasks; #if !APPLYUPDATE using static Hi3Helper.Shared.Region.LauncherConfig; -// ReSharper disable AsyncVoidMethod #endif -namespace Hi3Helper +// ReSharper disable AsyncVoidMethod +// ReSharper disable InconsistentNaming +// ReSharper disable StringLiteralTypo +// ReSharper disable CheckNamespace +#pragma warning disable CA2211 +#nullable enable +namespace Hi3Helper; + +public class LoggerConsole : LoggerBase { - public class LoggerConsole : LoggerBase, ILog - { - public static IntPtr ConsoleHandle; - private static bool _virtualTerminal; + public static nint ConsoleHandle; + public static nint ConsoleWindow => PInvoke.GetConsoleWindow(); + internal static bool VirtualTerminal; - public LoggerConsole(string folderPath, Encoding encoding, bool isConsoleApp = false) : base(folderPath, encoding) -#if !APPLYUPDATE - => AllocateConsole(isConsoleApp); -#else - { } -#endif + private readonly SimpleConsoleWin32OutStream StdOutStream; - // Only dispose base on deconstruction. - ~LoggerConsole() => DisposeBase(); + public LoggerConsole(string folderPath, Encoding? encoding) + : base(folderPath, encoding) + { + AllocateConsole(); + StdOutStream = new SimpleConsoleWin32OutStream(ConsoleHandle); + } - #region Methods - public void Dispose() + #region Console Allocation Methods + public static void DisposeConsole() + { + if (ConsoleHandle == nint.Zero) { - // Dispose console and base if requested. - DisposeConsole(); - DisposeBase(); + return; } -#pragma warning disable CS1998 // Async method lacks 'await' operators and will run synchronously - public override async void LogWriteLine() => Console.WriteLine(); + nint consoleWindow = ConsoleWindow; - public override async void LogWriteLine(string line = null) => LogWriteLine(line, LogType.Default); + if (ConsoleWindow == nint.Zero) + { + return; + } + PInvoke.ShowWindow(consoleWindow, 0); + } + + public static void AllocateConsole(bool isConsoleApp = false) + { + if (ConsoleWindow == nint.Zero) + isConsoleApp = true; - public override async void LogWriteLine(string line, LogType type) + if (isConsoleApp && !PInvoke.AttachConsole(0xFFFFFFFF)) { - // If the line is null, then print a new line. - if (line == null) + if (!PInvoke.AllocConsole()) { - Console.WriteLine(); - return; + throw new ContextMarshalException($"Failed to attach or allocate console with error code: {Win32Error.GetLastWin32ErrorMessage()}"); } + } - // Decorate the line - line = GetLine(line, type, _virtualTerminal, false); + const uint GENERIC_READ = 0x80000000; + const uint GENERIC_WRITE = 0x40000000; + const uint FILE_SHARE_WRITE = 2; + const uint OPEN_EXISTING = 3; + ConsoleHandle = PInvoke.CreateFile("CONOUT$", GENERIC_READ | GENERIC_WRITE, FILE_SHARE_WRITE, (uint)0, OPEN_EXISTING, 0, 0); - // Write using new async write line output and use .Error for error type - if (type == LogType.Error) await Console.Error.WriteLineAsync(line); - else await Console.Out.WriteLineAsync(line); - } + const int STD_OUTPUT_HANDLE = -11; + PInvoke.SetStdHandle(STD_OUTPUT_HANDLE, ConsoleHandle); - public override async void LogWriteLine(string line, LogType type, bool writeToLog) - { - LogWriteLine(line, type); - if (writeToLog) WriteLog(line, type); - } + Console.OutputEncoding = Encoding.UTF8; - public override async void LogWrite(string line, LogType type, bool writeToLog, bool resetLinePosition) + if (PInvoke.GetConsoleMode(ConsoleHandle, out uint mode)) { - if (resetLinePosition && writeToLog) + const uint ENABLE_PROCESSED_OUTPUT = 1; + const uint ENABLE_VIRTUAL_TERMINAL_PROCESSING = 4; + const uint DISABLE_NEWLINE_AUTO_RETURN = 8; + mode |= ENABLE_PROCESSED_OUTPUT | ENABLE_VIRTUAL_TERMINAL_PROCESSING | DISABLE_NEWLINE_AUTO_RETURN; + if (PInvoke.SetConsoleMode(ConsoleHandle, mode)) { - throw new ArgumentException("You can't write to log file while resetLinePosition is true!"); + VirtualTerminal = true; } + } - if (resetLinePosition) + try + { + if (ConsoleHandle != nint.Zero) { - Console.Write('\r' + line); - return; + PInvoke.ShowWindow(ConsoleWindow, 5); } - line = GetLine(line, type, _virtualTerminal, false); - Console.Write(line); + string instanceIndicator = ""; + int instanceCount = ProcessChecker.EnumerateInstances(ILoggerHelper.GetILogger()); + + if (instanceCount > 1) instanceIndicator = $" - #{instanceCount}"; + Console.Title = $"Collapse Console{instanceIndicator}"; - if (writeToLog) WriteLog(line, type); +#if !APPLYUPDATE + Windowing.SetWindowIcon(PInvoke.GetConsoleWindow(), AppIconLarge, AppIconSmall); +#endif } -#pragma warning restore CS1998 // Async method lacks 'await' operators and will run synchronously - #endregion + catch (Exception ex) + { + Console.WriteLine($"[ERROR] Failed to set console title or icon: \r\n{ex}"); + } + } + #endregion + + #region Logging Methods + + [MethodImpl(MethodImplOptions.NoInlining)] + public sealed override void LogWriteLine() + => Console.WriteLine(); - #region StaticMethods - public static void DisposeConsole() + [MethodImpl(MethodImplOptions.NoInlining)] + public sealed override void LogWriteLine(ReadOnlySpan line, + LogType type = LogType.Info, + bool writeToLogFile = false, + bool writeTimestampOnLogFile = true) + { + WriteLineToStreamCore(StdOutStream, line, type); + + if (!writeToLogFile) { - if (ConsoleHandle != IntPtr.Zero) - { - IntPtr consoleWindow = PInvoke.GetConsoleWindow(); - PInvoke.ShowWindow(consoleWindow, 0); - } + return; } - public static void AllocateConsole(bool isConsoleApp = false) + WriteLineToStreamCore(LogWriter.BaseStream, + line, + type, + isWriteColor: false, + isWriteTimestamp: writeTimestampOnLogFile); + } + + [MethodImpl(MethodImplOptions.NoInlining)] + public sealed override void LogWriteLine(ref DefaultInterpolatedStringHandler interpolatedLine, + LogType type = LogType.Info, + bool writeToLogFile = false, + bool writeTimestampOnLogFile = true) + { + ReadOnlySpan line = GetInterpolateStringSpan(ref interpolatedLine); + + try { - var consoleWindow = PInvoke.GetConsoleWindow(); - - if (ConsoleHandle != IntPtr.Zero) - { - PInvoke.ShowWindow(consoleWindow, 5); - return; - } - - if (consoleWindow != IntPtr.Zero) - isConsoleApp = true; + LogWriteLine(line, type, writeToLogFile, writeTimestampOnLogFile); + } + finally + { + ClearInterpolateString(ref interpolatedLine); + } + } - if (!isConsoleApp && !PInvoke.AttachConsole(0xFFFFFFFF)) - { - if (!PInvoke.AllocConsole()) - { - throw new ContextMarshalException($"Failed to attach or allocate console with error code: {Win32Error.GetLastWin32ErrorMessage()}"); - } - } + [MethodImpl(MethodImplOptions.NoInlining)] + public sealed override void LogWrite(ReadOnlySpan line, + LogType type = LogType.Info, + bool appendNewLine = false, + bool writeToLogFile = false, + bool writeTypeTag = false, + bool writeTimestampOnLogFile = true) + { + WriteLineToStreamCore(StdOutStream, + line, + type, + appendNewLine: appendNewLine, + isWriteColor: true, + isWriteTagType: writeTypeTag, + isWriteTimestamp: false); - const uint GENERIC_READ = 0x80000000; - const uint GENERIC_WRITE = 0x40000000; - const uint FILE_SHARE_WRITE = 2; - const uint OPEN_EXISTING = 3; - ConsoleHandle = PInvoke.CreateFile("CONOUT$", GENERIC_READ | GENERIC_WRITE, FILE_SHARE_WRITE, (uint)0, OPEN_EXISTING, 0, 0); + if (!writeToLogFile) + { + return; + } - const int STD_OUTPUT_HANDLE = -11; - PInvoke.SetStdHandle(STD_OUTPUT_HANDLE, ConsoleHandle); + WriteLineToStreamCore(LogWriter.BaseStream, + line, + type, + appendNewLine: appendNewLine, + isWriteColor: false, + isWriteTagType: writeTimestampOnLogFile, + isWriteTimestamp: writeTimestampOnLogFile); + } - Console.OutputEncoding = Encoding.UTF8; + [MethodImpl(MethodImplOptions.NoInlining)] + public sealed override void LogWrite(ref DefaultInterpolatedStringHandler interpolatedLine, + LogType type = LogType.Info, + bool appendNewLine = false, + bool writeToLogFile = false, + bool writeTypeTag = false, + bool writeTimestampOnLogFile = true) + { + ReadOnlySpan line = GetInterpolateStringSpan(ref interpolatedLine); - if (PInvoke.GetConsoleMode(ConsoleHandle, out uint mode)) - { - const uint ENABLE_PROCESSED_OUTPUT = 1; - const uint ENABLE_VIRTUAL_TERMINAL_PROCESSING = 4; - const uint DISABLE_NEWLINE_AUTO_RETURN = 8; - mode |= ENABLE_PROCESSED_OUTPUT | ENABLE_VIRTUAL_TERMINAL_PROCESSING | DISABLE_NEWLINE_AUTO_RETURN; - if (PInvoke.SetConsoleMode(ConsoleHandle, mode)) - { - _virtualTerminal = true; - } - } - - try - { - var instanceIndicator = ""; - var instanceCount = ProcessChecker.EnumerateInstances(ILoggerHelper.GetILogger()); + try + { + LogWrite(line, type, appendNewLine, writeToLogFile, writeTypeTag, writeTimestampOnLogFile); + } + finally + { + ClearInterpolateString(ref interpolatedLine); + } + } - if (instanceCount > 1) instanceIndicator = $" - #{instanceCount}"; - Console.Title = $"Collapse Console{instanceIndicator}"; + [MethodImpl(MethodImplOptions.NoInlining)] + public sealed override Task LogWriteLineAsync(CancellationToken token = default) + => Console.Out.WriteLineAsync(); - #if !APPLYUPDATE - Windowing.SetWindowIcon(PInvoke.GetConsoleWindow(), AppIconLarge, AppIconSmall); - #endif - } - catch (Exception ex) - { - Console.WriteLine($"[ERROR] Failed to set console title or icon: \r\n{ex}"); - } + [MethodImpl(MethodImplOptions.NoInlining)] + public sealed override async Task LogWriteLineAsync(string line, + LogType type = LogType.Info, + bool writeToLogFile = false, + bool writeTimestampOnLogFile = true, + CancellationToken token = default) + { + await WriteLineToStreamCoreAsync(StdOutStream, + line, + type, + token: token).ConfigureAwait(false); + + if (!writeToLogFile) + { + return; + } + await WriteLineToStreamCoreAsync(LogWriter.BaseStream, + line, + type, + isWriteColor: false, + isWriteTimestamp: writeTimestampOnLogFile, + token: token).ConfigureAwait(false); + } + + [MethodImpl(MethodImplOptions.NoInlining)] + public sealed override async Task LogWriteAsync(string line, + LogType type = LogType.Info, + bool appendNewLine = false, + bool writeToLogFile = false, + bool writeTypeTag = false, + bool writeTimestampOnLogFile = true, + CancellationToken token = default) + { + await WriteLineToStreamCoreAsync(StdOutStream, + line, + type, + appendNewLine: appendNewLine, + isWriteColor: true, + isWriteTagType: writeTypeTag, + isWriteTimestamp: false, + token: token).ConfigureAwait(false); + + if (!writeToLogFile) + { + return; + } + await WriteLineToStreamCoreAsync(LogWriter.BaseStream, + line, + type, + appendNewLine: appendNewLine, + isWriteColor: false, + isWriteTagType: writeTimestampOnLogFile, + isWriteTimestamp: writeTimestampOnLogFile, + token: token).ConfigureAwait(false); + } + #endregion + + protected override void DisposeCore(bool onlyReset = false) + { + // Dispose console and base if requested. + if (!onlyReset) + { + DisposeConsole(); } -#endregion + base.DisposeCore(onlyReset); } -} +} \ No newline at end of file diff --git a/Hi3Helper.Core/Classes/Logger/Type/LoggerNull.cs b/Hi3Helper.Core/Classes/Logger/Type/LoggerNull.cs index 3b90eef4f..73385e28e 100644 --- a/Hi3Helper.Core/Classes/Logger/Type/LoggerNull.cs +++ b/Hi3Helper.Core/Classes/Logger/Type/LoggerNull.cs @@ -1,26 +1,12 @@ using System.Text; // ReSharper disable MethodOverloadWithOptionalParameter +// ReSharper disable CheckNamespace -namespace Hi3Helper -{ - public class LoggerNull(string folderPath, Encoding encoding) : LoggerBase(folderPath, encoding), ILog - { - ~LoggerNull() => DisposeBase(); - - #region Methods - public void Dispose() => DisposeBase(); - public override void LogWriteLine() { } - public override void LogWriteLine(string line = null) { } - public override void LogWriteLine(string line, LogType type) { } - public override void LogWriteLine(string line, LogType type, bool writeToLog) - { - if (writeToLog) WriteLog(line, type); - } +#nullable enable +namespace Hi3Helper; - public override void LogWrite(string line, LogType type, bool writeToLog, bool resetLinePosition) - { - if (writeToLog) WriteLog(line, type); - } - #endregion - } +public class LoggerNull : LoggerBase +{ + public LoggerNull(string folderPath, Encoding encoding) : base(folderPath, encoding) { } + internal LoggerNull() { } } diff --git a/Hi3Helper.Core/Classes/SentryHelper/SentryExceptionFilter.cs b/Hi3Helper.Core/Classes/SentryHelper/SentryExceptionFilter.cs index 6a5e60322..2fc92e3e8 100644 --- a/Hi3Helper.Core/Classes/SentryHelper/SentryExceptionFilter.cs +++ b/Hi3Helper.Core/Classes/SentryHelper/SentryExceptionFilter.cs @@ -52,7 +52,8 @@ public class NetworkException : IExceptionFilter [ "DB_001", // DB Uri not set "DB_002", // DB Token not set - "DB_003" // Invalid token + "DB_003", // Invalid token + "DB_005" // DB error without message ]; public bool Filter(Exception ex) diff --git a/Hi3Helper.Core/Classes/SentryHelper/SentryHelper.cs b/Hi3Helper.Core/Classes/SentryHelper/SentryHelper.cs index f63243720..39e5313ef 100644 --- a/Hi3Helper.Core/Classes/SentryHelper/SentryHelper.cs +++ b/Hi3Helper.Core/Classes/SentryHelper/SentryHelper.cs @@ -1,19 +1,18 @@ using Hi3Helper.Shared.Region; using Microsoft.Win32; using Sentry; -using Sentry.Infrastructure; using Sentry.Protocol; using System; -using System.Collections.Concurrent; +using System.Buffers; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; -using System.Text; using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; +// ReSharper disable CheckNamespace // ReSharper disable UnusedAutoPropertyAccessor.Global // ReSharper disable HeuristicUnreachableCode // ReSharper disable RedundantIfElseBlock @@ -64,15 +63,33 @@ public enum ExceptionType /// /// Use this for exception that is handled directly by the catcher. /// - Handled + Handled, + + /// + /// Use this enum if an unhandled exception is coming from plugin operations. + /// + PluginUnhandled, + + /// + /// Use this enum if the exception is happened to be expected and handled by the launcher. + /// + PluginHandled } #endregion #region Enable/Disable Sentry - public static bool IsDisableEnvVarDetected => - Convert.ToBoolean(Environment.GetEnvironmentVariable("DISABLE_SENTRY")); + public static bool IsDisableEnvVarDetected + { + get + { + string? envVar = Environment.GetEnvironmentVariable("DISABLE_SENTRY"); + return !string.IsNullOrEmpty(envVar) && + ((int.TryParse(envVar, out int isDisabledFromInt) && isDisabledFromInt == 1) || + (bool.TryParse(envVar, out bool isDisabledFromBool) && !isDisabledFromBool)); + } + } private static bool? _isEnabled; @@ -80,14 +97,14 @@ public static bool IsEnabled { get { - if (IsDisableEnvVarDetected) + if (!IsDisableEnvVarDetected) { - Logger.LogWriteLine("Detected 'DISABLE_SENTRY' environment variable! Disabling crash data reporter..."); - LauncherConfig.SetAndSaveConfigValue("SendRemoteCrashData", false); - return false; + return LauncherConfig.GetAppConfigValue("SendRemoteCrashData"); } - return _isEnabled ??= LauncherConfig.GetAppConfigValue("SendRemoteCrashData").ToBool(); + Logger.LogWriteLine("Detected 'DISABLE_SENTRY' environment variable! Disabling crash data reporter..."); + LauncherConfig.SetAndSaveConfigValue("SendRemoteCrashData", false); + return false; } set { @@ -115,38 +132,34 @@ public static bool IsEnabled #region Initializer/Releaser - public static bool IsPreview { get; set; } + public static bool IsPreview { get; set; } + private static IDisposable? _sentryInstance; public static void InitializeSentrySdk() { - #if DEBUG - _isEnabled = false; - return; - #pragma warning disable CS0162 // Unreachable code detected - #endif - _sentryInstance = + _sentryInstance ??= SentrySdk.Init(o => - { - o.Dsn = SentryDsn; - o.AddEventProcessor(new SentryEventProcessor()); - o.CacheDirectoryPath = LauncherConfig.AppDataFolder; - o.Debug = IsDebugSentry; - o.DiagnosticLogger = IsDebugSentry - ? new ConsoleAndTraceDiagnosticLogger(SentryLevel.Debug) : null; - o.DiagnosticLevel = IsDebugSentry ? SentryLevel.Debug : SentryLevel.Error; - o.AutoSessionTracking = true; - o.StackTraceMode = StackTraceMode.Enhanced; - o.DisableSystemDiagnosticsMetricsIntegration(); - o.IsGlobalModeEnabled = true; - o.DisableWinUiUnhandledExceptionIntegration(); // Use this for trimmed/NativeAOT published app - o.StackTraceMode = StackTraceMode.Enhanced; - o.SendDefaultPii = false; - o.MaxAttachmentSize = SentryMaxAttachmentSize; - o.DeduplicateMode = DeduplicateMode.All; - o.Environment = Debugger.IsAttached ? "debug" : IsPreview ? "non-debug" : "stable"; - o.AddExceptionFilter(new NetworkException()); - }); + { + o.Dsn = SentryDsn; + o.AddEventProcessor(new SentryEventProcessor()); + o.CacheDirectoryPath = LauncherConfig.AppDataFolder; + o.Debug = IsDebugSentry; + o.DiagnosticLogger = + new CollapseLogger(IsDebugSentry ? SentryLevel.Debug : SentryLevel.Warning); + o.DiagnosticLevel = IsDebugSentry ? SentryLevel.Debug : SentryLevel.Warning; + o.AutoSessionTracking = true; + o.StackTraceMode = StackTraceMode.Enhanced; + o.DisableSystemDiagnosticsMetricsIntegration(); + o.IsGlobalModeEnabled = true; + o.DisableWinUiUnhandledExceptionIntegration(); // Use this for trimmed/NativeAOT published app + o.StackTraceMode = StackTraceMode.Enhanced; + o.SendDefaultPii = false; + o.MaxAttachmentSize = SentryMaxAttachmentSize; + o.DeduplicateMode = DeduplicateMode.All; + o.Environment = Debugger.IsAttached ? "debug" : IsPreview ? "non-debug" : "stable"; + o.AddExceptionFilter(new NetworkException()); + }); SentrySdk.ConfigureScope(s => { s.User = new SentryUser @@ -156,9 +169,6 @@ public static void InitializeSentrySdk() IpAddress = null }; }); - #if DEBUG - #pragma warning restore CS0162 // Unreachable code detected - #endif } /// @@ -183,6 +193,7 @@ public static void StopSentrySdk() finally { _sentryInstance?.Dispose(); + _sentryInstance = null; } }); } @@ -207,8 +218,8 @@ private static void AppDomain_UnhandledExceptionEvent(object sender, UnhandledEx { // Handle any unhandled errors in app domain // https://learn.microsoft.com/en-us/dotnet/api/system.appdomain?view=net-9.0 - var ex = a.ExceptionObject as Exception; - if (ex == null) return; + if (a.ExceptionObject is not Exception ex) return; + ex.Data[Mechanism.HandledKey] = false; ex.Data[Mechanism.MechanismKey] = "Application.UnhandledException"; ExceptionHandler(ex, ExceptionType.UnhandledOther); @@ -236,9 +247,10 @@ public static Guid ExceptionHandler(Exception ex, ExceptionType exT = ExceptionT return Guid.Empty; } - var id = ExceptionHandlerInner(ex, exT); - Guid.TryParse(id.ToString(), out var guid); - return guid; + SentryId id = ExceptionHandlerInner(ex, exT); + return Guid.TryParse(id.ToString(), out Guid guid) + ? guid + : Guid.Empty; } /// @@ -262,26 +274,23 @@ public static async Task ExceptionHandlerAsync(Exception ex, ExceptionType exT = await Task.Run(async () => await SentrySdk.FlushAsync(TimeSpan.FromSeconds(10))); } - private static Exception? _exHLoopLastEx; - private static CancellationTokenSource _loopToken = new(); + private static readonly SemaphoreSlim AsyncSemaphore = new SemaphoreSlim(1, 1); + private static string? _lastExceptionKey; + private static CancellationTokenSource _loopToken = new(); // ReSharper disable once AsyncVoidMethod /// /// Clean loop last exception data to be cleaned after 20s so the exception data will be sent to Dsn again. /// - private static async void ExHLoopLastEx_AutoClean() + private static async void ExHLoopLastEx_AutoClean(CancellationToken ct) { // if (loopToken.Token.IsCancellationRequested) return; try { - var t = _loopToken.Token; - await Task.Delay(20000, t); - if (_exHLoopLastEx == null) return; + await Task.Delay(20000, ct); // 20s delay - lock (_exHLoopLastEx) - { - _exHLoopLastEx = null; - } + // Use atomic exchange. This has the same approach by using LockObject. + Interlocked.Exchange(ref _lastExceptionKey, null); } catch (Exception) { @@ -303,40 +312,70 @@ public static void ExceptionHandler_ForLoop(Exception ex, ExceptionType exT = Ex /// /// Exception data /// Exception type, default to ExceptionType.Handled - public static async Task ExceptionHandler_ForLoopAsync(Exception ex, ExceptionType exT = ExceptionType.Handled) + public static async Task ExceptionHandler_ForLoopAsync(Exception ex, + ExceptionType exT = ExceptionType.Handled) { - if (!IsEnabled) return Guid.Empty; - if (ex is AggregateException && ex.InnerException != null) ex = ex.InnerException; - if (ex is TaskCanceledException or OperationCanceledException) + try { - Logger.LogWriteLine($"Caught TCE/OCE exception from: {ex.Source}. Exception will not be uploaded!\r\n{ex}", - LogType.Sentry); + if (!IsEnabled) return Guid.Empty; + if (ex is AggregateException && ex.InnerException != null) ex = ex.InnerException; + if (ex is TaskCanceledException or OperationCanceledException) + { + Logger.LogWriteLine($"Caught TCE/OCE exception from: {ex.Source}. Exception will not be uploaded!\r\n{ex}", + LogType.Sentry); + return Guid.Empty; + } + + string exKey = $"{ex.GetType().Name}:{ex.Message}:{ex.StackTrace?.GetHashCode()}"; + + // Use semaphore to lock and wait until the previous operation is done on the same thread. + // Note from neon: + // The reason why I changed it with SemaphoreSlim is that Lock is synchronous and may cause deadlock. + await AsyncSemaphore.WaitAsync(); + if (exKey == _lastExceptionKey) return Guid.Empty; + + CancellationTokenSource oldToken = _loopToken; + + _loopToken = new CancellationTokenSource(); + _lastExceptionKey = exKey; + ExHLoopLastEx_AutoClean(_loopToken.Token); // Start auto clean loop + + // Detach and create a new thread. + _ = Task.Run(async () => + { + await oldToken.CancelAsync(); + oldToken.Dispose(); + }, oldToken.Token); + + // ReSharper disable once MethodSupportsCancellation + return await Task.Run(() => + { + SentryId id = ExceptionHandlerInner(ex, exT); + return Guid.TryParse(id.ToString(), out Guid sentryId) + ? sentryId + : Guid.Empty; + }); + } + catch (Exception err) + { + Logger.LogWriteLine($"[SentryHelper::ExceptionHandler_ForLoopAsync] Failed to send exception!\r\n{err}", + LogType.Error, true); return Guid.Empty; } - - if (ex == _exHLoopLastEx) return Guid.Empty; // If exception pointer is the same as the last one, ignore it. - await _loopToken.CancelAsync(); // Cancel the previous loop - _loopToken.Dispose(); - _loopToken = new CancellationTokenSource(); // Create new token - _exHLoopLastEx = ex; - ExHLoopLastEx_AutoClean(); // Start auto clean loop - - Guid sentryId = Guid.Empty; - await Task.Run(() => - { - var id = ExceptionHandlerInner(ex, exT); - Guid.TryParse(id.ToString(), out sentryId); - }); - - return sentryId; + finally + { + // After the operation is done, release the semaphore. + AsyncSemaphore.Release(); + } } #region Breadcrumbs Data + public static Func? AppCdnOptionGetter { get; set; } = null; public static string AppBuildCommit { get; set; } = ""; public static string AppBuildBranch { get; set; } = ""; public static string AppBuildRepo { get; set; } = ""; - public static string AppCdnOption { get; set; } = ""; + public static string AppCdnOption { get => AppCdnOptionGetter?.Invoke() ?? field; } = ""; public static string CurrentGameCategory { get; set; } = ""; public static string CurrentGameRegion { get; set; } = ""; public static string CurrentGameLocation { get; set; } = ""; @@ -344,6 +383,7 @@ await Task.Run(() => public static bool CurrentGameUpdated { get; set; } public static bool CurrentGameHasPreload { get; set; } public static bool CurrentGameHasDelta { get; set; } + public static bool CurrentGameIsPlugin { get; set; } private static int CpuThreadsTotal => Environment.ProcessorCount; @@ -354,9 +394,9 @@ private static string CpuName try { string cpuName; - var env = Environment.GetEnvironmentVariable("PROCESSOR_IDENTIFIER") ?? "Unknown CPU"; - var reg = - Registry.GetValue("HKEY_LOCAL_MACHINE\\HARDWARE\\DESCRIPTION\\SYSTEM\\CentralProcessor\\0", + string env = Environment.GetEnvironmentVariable("PROCESSOR_IDENTIFIER") ?? "Unknown CPU"; + object? reg = + Registry.GetValue(@"HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\SYSTEM\CentralProcessor\0", "ProcessorNameString", null); if (reg != null) { @@ -387,16 +427,16 @@ private static string CpuName .OpenSubKey(@"SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\"); if (baseKey != null) { - foreach (var subKeyName in baseKey.GetSubKeyNames()) + foreach (string subKeyName in baseKey.GetSubKeyNames()) { if (!int.TryParse(subKeyName, out int subKeyInt) || subKeyInt < 0 || subKeyInt > 9999) continue; - var gpuName = "Unknown GPU"; - var driverVersion = "Unknown Driver Version"; + string? gpuName = "Unknown GPU"; + string? driverVersion = "Unknown Driver Version"; try { - using var subKey = baseKey.OpenSubKey(subKeyName); + using RegistryKey? subKey = baseKey.OpenSubKey(subKeyName); if (subKey == null) continue; gpuName = subKey.GetValue("DriverDesc") as string; @@ -425,36 +465,33 @@ private static string CpuName } private static Breadcrumb? _buildInfo; - private static Breadcrumb BuildInfo - { - get => _buildInfo ??= new("Build Info", "commit", new Dictionary + + private static Breadcrumb BuildInfo => + _buildInfo ??= new Breadcrumb("Build Info", "commit", new Dictionary { { "Branch", AppBuildBranch }, { "Commit", AppBuildCommit }, { "Repository", AppBuildRepo }, { "IsPreview", IsPreview.ToString() } }, "BuildInfo"); - } - + private static Breadcrumb? _cpuInfo; - private static Breadcrumb CpuInfo - { - get => _cpuInfo ??= new("CPU Info", "system.cpu", new Dictionary + + private static Breadcrumb CpuInfo => + _cpuInfo ??= new Breadcrumb("CPU Info", "system.cpu", new Dictionary { { "CPU Name", CpuName }, { "Total Thread", CpuThreadsTotal.ToString() } }, "CPUInfo"); - } private static Breadcrumb? _gpuInfo; - private static Breadcrumb GpuInfo - { - get => _gpuInfo ??= new("GPU Info", "system.gpu", - GetGpuInfo.ToDictionary(item => item.GpuName, - item => item.DriverVersion), - "GPUInfo"); - } - + + private static Breadcrumb GpuInfo => + _gpuInfo ??= new Breadcrumb("GPU Info", "system.gpu", + GetGpuInfo.ToDictionary(item => item.GpuName, + item => item.DriverVersion), + "GPUInfo"); + private static Breadcrumb GameInfo => new("Current Loaded Game Info", "game", new Dictionary { @@ -464,12 +501,13 @@ private static Breadcrumb GpuInfo { "Updated", CurrentGameUpdated.ToString() }, { "HasPreload", CurrentGameHasPreload.ToString() }, { "HasDelta", CurrentGameHasDelta.ToString() }, + { "IsGameFromPlugin", CurrentGameIsPlugin.ToString() }, { "Location", CurrentGameLocation }, { "CdnOption", AppCdnOption } }, "GameInfo"); #endregion - + private static SentryId ExceptionHandlerInner(Exception ex, ExceptionType exT = ExceptionType.Handled) { SentrySdk.AddBreadcrumb(BuildInfo); @@ -477,61 +515,57 @@ private static SentryId ExceptionHandlerInner(Exception ex, ExceptionType exT = SentrySdk.AddBreadcrumb(CpuInfo); SentrySdk.AddBreadcrumb(GpuInfo); - var loadedModules = Process.GetCurrentProcess().Modules; - var modulesInfo = new ConcurrentDictionary(); - - Parallel.ForEach(loadedModules.Cast(), module => - { - try - { - var name = module.ModuleName; - var ver = module.FileVersionInfo.FileVersion; - var path = module.FileName; - _ = modulesInfo.TryAdd(name, $"{ver} ({path})"); - } - catch (Exception exI) - { - Logger.LogWriteLine($"Failed to get module info: {exI.Message}", LogType.Error, true); - } - }); - - var sbModulesInfo = new StringBuilder(); - foreach (var (key, value) in modulesInfo) - { - sbModulesInfo.AppendLine($"{key}: {value}"); - } - ex.Data[Mechanism.HandledKey] ??= exT == ExceptionType.Handled; string? methodName = null; - var st = ex.StackTrace; + string? st = ex.StackTrace; if (st != null) { - var m = ExceptionFrame().Match(st); + Match m = ExceptionFrame().Match(st); methodName = m.Success ? m.Value : null; } ex.Data[Mechanism.MechanismKey] ??= exT switch - { - ExceptionType.UnhandledXaml => "Application.XamlUnhandledException", - ExceptionType.UnhandledOther => methodName ?? ex.Source ?? "Application.UnhandledException", - _ => methodName ?? ex.Source ?? "Application.HandledException" - }; - + { + ExceptionType.UnhandledXaml => "Application.XamlUnhandledException", + ExceptionType.UnhandledOther => methodName ?? + ex.Source ?? "Application.UnhandledException", + _ => methodName ?? ex.Source ?? "Application.HandledException" + }; + #pragma warning disable CS0162 // Unreachable code detected - if (SentryUploadLog) // Upload log file if enabled + string? logPath = LoggerBase.LogPath; + if (logPath != null && SentryUploadLog) // Upload log file if enabled // ReSharper disable once HeuristicUnreachableCode { if ((bool)(ex.Data[Mechanism.HandledKey] ?? false)) return SentrySdk.CaptureException(ex); else - return SentrySdk.CaptureException(ex, s => - { - s.AddAttachment(LoggerBase.LogPath, AttachmentType.Default, "text/plain"); - s.AddAttachment(new MemoryStream(Encoding.UTF8.GetBytes(sbModulesInfo.ToString())), - "LoadedModules.txt", AttachmentType.Default, - "text/plain"); - }); + { + // Tail to the last 100 lines of log + MemoryStream logStream = new MemoryStream(); + using FileStream logFileStream = + new FileStream(logPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + + bool isSuccessTailing = TryTailLinesFromStream(logFileStream, logStream, 100); + if (!isSuccessTailing) + { + // Send only the exception without providing attachment if fails on tailing. + logStream.Dispose(); + return SentrySdk.CaptureException(ex); + } + else + { + logStream.Position = 0; // Reset stream position to the beginning + return SentrySdk.CaptureException(ex, + s => + { + s.AddAttachment(logStream, + Path.GetFileName(logPath), + AttachmentType.Default, "text/plain"); + }); + } + } } else { @@ -539,12 +573,13 @@ private static SentryId ExceptionHandlerInner(Exception ex, ExceptionType exT = } #pragma warning restore CS0162 // Unreachable code detected } - + public static bool SendExceptionFeedback(Guid sentryId, string userEmail, string user, string feedback) { if (sentryId == Guid.Empty) { - Logger.LogWriteLine("[SendExceptionFeedback] SentryId is empty, feedback will not be sent!", LogType.Error, + Logger.LogWriteLine("[SendExceptionFeedback] SentryId is empty, feedback will not be sent!", + LogType.Error, true); return false; } @@ -556,11 +591,11 @@ public static bool SendExceptionFeedback(Guid sentryId, string userEmail, string return false; } - var sId = new SentryId(sentryId); + SentryId sId = new SentryId(sentryId); SentrySdk.CaptureFeedback(feedback, userEmail, user, null, null, sId); return true; } - + public static bool SendGenericFeedback(string feedback, string userEmail, string user) { if (!IsEnabled) @@ -569,14 +604,129 @@ public static bool SendGenericFeedback(string feedback, string userEmail, string LogType.Error, true); return false; } - + SentrySdk.CaptureFeedback(feedback, userEmail, user); return true; } [GeneratedRegex(@"(?<=\bat\s)(CollapseLauncher|Hi3Helper)\.[^\s(]+", RegexOptions.Compiled)] private static partial Regex ExceptionFrame(); - } #endregion + + #region Private Tools + private static unsafe bool TryTailLinesFromStream(Stream sourceStream, Stream targetStream, int maxLines, int bufferSize = 8 << 10) // == 8K buffer + { + // This approach reads the stream from the end backwards to find the last `maxLines` lines. + + if (!sourceStream.CanSeek) + throw new ArgumentException("Source stream must support seeking.", nameof(sourceStream)); + + const byte returnByteChar = (byte)'\r'; + const byte lineFeedByteChar = (byte)'\n'; + + long currentPos = sourceStream.Length; + long endWriteFromPos = currentPos; + long startWriteFromPos = 0; + + bool isFirst = true; + + // Seek to the end + sourceStream.Seek(0, SeekOrigin.End); + + // Automatic buffer rent or allocating from stack + byte[]? poolBuffer = bufferSize > 8 << 10 ? ArrayPool.Shared.Rent(bufferSize) : null; + scoped Span buffer = poolBuffer ?? stackalloc byte[bufferSize]; + + try + { + // Do the do + do + { + // Get the minimum bytes to read, just in case if the file is smaller than buffer size + int toRead = (int)Math.Min(bufferSize, currentPos); + if (toRead == 0) + { + break; + } + + // Seek to the position - buffer to read + sourceStream.Position = currentPos - toRead; + int readBytes = sourceStream.ReadAtLeast(buffer[..toRead], toRead, false); + currentPos -= readBytes; + + Span readData = buffer[..readBytes]; + int offset = readData.Length; + + // Scan character backwards + while (offset > 0) + { + // Not new line feed? Skip + if (readData[--offset] != lineFeedByteChar) + { + continue; + } + + // Try skip trailing chars (including return char) + if (isFirst) + { + --endWriteFromPos; + while (offset > 0 && + (readData[offset - 1] == returnByteChar || + readData[offset - 1] == lineFeedByteChar)) + { + --endWriteFromPos; + --offset; + } + + isFirst = false; + continue; + } + + // Found a new line feed, count down + --maxLines; + if (maxLines != 0) + { + continue; + } + + // Set the current stream position for the next read scan + currentPos = currentPos + offset + 1; + break; + } + + // Set the position to write from + startWriteFromPos = currentPos; + } while (maxLines > 0); + + sourceStream.Position = startWriteFromPos; + + // Now copy the data to the target stream. + long remainedBytes = endWriteFromPos - startWriteFromPos; + while (remainedBytes != 0) + { + int toWrite = (int)Math.Min(bufferSize, remainedBytes); + int read = sourceStream.Read(buffer[..toWrite]); + if (read == 0) break; + + targetStream.Write(buffer[..read]); + remainedBytes -= read; + } + + return true; + } + catch + { + return false; + } + finally + { + if (poolBuffer != null) + { + ArrayPool.Shared.Return(poolBuffer); + } + } + } + #endregion + } } diff --git a/Hi3Helper.Core/Classes/SentryHelper/SentryLoggerExtension.cs b/Hi3Helper.Core/Classes/SentryHelper/SentryLoggerExtension.cs new file mode 100644 index 000000000..1ee6e9d0d --- /dev/null +++ b/Hi3Helper.Core/Classes/SentryHelper/SentryLoggerExtension.cs @@ -0,0 +1,148 @@ +#nullable enable +using Sentry; +using Sentry.Extensibility; +using Sentry.Infrastructure; +using System; +using System.Buffers; +using static Hi3Helper.Logger; +// ReSharper disable CheckNamespace + +namespace Hi3Helper.SentryHelper; + +public abstract class LogToNativeLogger : IDiagnosticLogger +{ + // Based on https://github.com/getsentry/sentry-dotnet/blob/3d461f5bde60d4108d92384cbbb3addf7747147d/src/Sentry/Infrastructure/DiagnosticLogger.cs + private readonly SentryLevel _minimalLevel; + + /// + /// Creates a new instance of . + /// + protected LogToNativeLogger(SentryLevel minimalLevel) => _minimalLevel = minimalLevel; + + /// + /// Whether the logger is enabled to the defined level. + /// + public bool IsEnabled(SentryLevel level) => level >= _minimalLevel; + + /// + /// Log message with level, exception and parameters. + /// + public void Log(SentryLevel logLevel, string message, Exception? exception = null, params object?[] args) + { + // Note, linefeed and newline chars are removed to guard against log injection attacks. + // See https://github.com/getsentry/sentry-dotnet/security/code-scanning/5 + + // Important: Only format the string if there are args passed. + // Otherwise, a pre-formatted string that contains braces can cause a FormatException. + string text = args.Length == 0 ? message : string.Format(message, args); + string formattedMessage = ScrubNewlines(text); + + string completeMessage = exception == null + ? $"{formattedMessage}" + : $"{formattedMessage}{Environment.NewLine}{exception}"; + + LogMessage(completeMessage, logLevel); + } + + /// + /// Writes a formatted message to the log. + /// + /// The complete message, ready to be logged. + /// The level of the log. + protected abstract void LogMessage(string message, SentryLevel logLevel); + + private static readonly SearchValues NewLineFeed = SearchValues.Create("\r\n"); + + private static string ScrubNewlines(string s) + { + if (s.Length == 0) + { + return s; + } + + const int maxStackallocBufferSize = 1 << 10; + const char spaceChar = ' '; + + char[]? poolBuffer = s.Length > maxStackallocBufferSize ? ArrayPool.Shared.Rent(s.Length + 1) : null; + scoped Span buffer = poolBuffer ?? stackalloc char[s.Length + 1]; + + try + { + int written = 0; + ReadOnlySpan sAsSpan = s; + + // Remove line feed characters: "\r", "\n" or both by using SplitAny extension. + foreach (Range newLineFeed in sAsSpan.SplitAny(NewLineFeed)) + { + ReadOnlySpan curSpan = sAsSpan[newLineFeed]; + + // To prevent two consecutive spaces. In this way, we don't need to check "\r\n" as + // it's already trimmed by the SplitAny extension. + if (curSpan.IsEmpty) + { + continue; + } + + curSpan.CopyTo(buffer[written..]); // Do block copy instead of appending characters one by one. + written += curSpan.Length; // Advance the length of the buffer to write into. + buffer[written++] = spaceChar; // Append space and advance the length. + } + + // If length is 0, then return an empty string. + if (written == 0) + { + return string.Empty; + } + + // Trim trailing space character by subtracting the length. + while (written > 0 && + buffer[written - 1] == spaceChar) + { + --written; + } + + // Write string from the buffer with specified length. + return new string(buffer[..written]); + } + finally + { + if (poolBuffer != null) + { + ArrayPool.Shared.Return(poolBuffer); + } + } + } +} + +public class CollapseLogger(SentryLevel minimalLevel) : LogToNativeLogger(minimalLevel) +{ + protected override void LogMessage(string message, SentryLevel logLevel) + { + switch (logLevel) + { + case SentryLevel.Debug: + message = $"DEBUG: {message}"; + LogWriteLine(message, LogType.Sentry); + break; + + case SentryLevel.Warning: + message = $"WARNING: {message}"; + LogWriteLine(message, LogType.Sentry, true); + break; + case SentryLevel.Fatal: + message = $"FATAL: {message}"; + LogWriteLine(message, LogType.Sentry, true); + break; + + case SentryLevel.Error: + message = $"ERROR: {message}"; + LogWriteLine(message, LogType.Sentry, true); + break; + + case SentryLevel.Info: + default: + LogWriteLine(message, LogType.Sentry); + break; + } + } +} \ No newline at end of file diff --git a/Hi3Helper.Core/Classes/Shared/ClassStruct/Class/GameDataStructure.cs b/Hi3Helper.Core/Classes/Shared/ClassStruct/Class/GameDataStructure.cs index f110e756f..b5c5ab567 100644 --- a/Hi3Helper.Core/Classes/Shared/ClassStruct/Class/GameDataStructure.cs +++ b/Hi3Helper.Core/Classes/Shared/ClassStruct/Class/GameDataStructure.cs @@ -40,22 +40,24 @@ public string CRC public ManifestAudioPatchInfo? AudioPatchInfo { get; set; } public BlockPatchInfo? BlockPatchInfo { get; set; } #nullable restore - public long S { get; set; } - public bool IsPatchApplicable { get; set; } - public bool IsBlockNeedRepair { get; set; } - public bool IsHasHashMark { get; set; } + public long S { get; set; } + public bool IsPatchApplicable { get; set; } + public bool IsBlockNeedRepair { get; set; } + public bool IsHasHashMark { get; set; } + public object AssociatedObject { get; set; } public FilePropertiesRemote Copy() => new() { - N = N, - RN = RN, - CRC = CRC, - M = M, - FT = FT, - S = S, + N = N, + RN = RN, + CRC = CRC, + M = M, + FT = FT, + S = S, IsPatchApplicable = IsPatchApplicable, IsBlockNeedRepair = IsBlockNeedRepair, - IsHasHashMark = IsHasHashMark, + IsHasHashMark = IsHasHashMark, + AssociatedObject = AssociatedObject }; public string PrintSummary() => $"File [T: {FT}]: {N}\t{SummarizeSizeSimple(S)} ({S} bytes)"; diff --git a/Hi3Helper.Core/Classes/Shared/Region/LauncherConfig.cs b/Hi3Helper.Core/Classes/Shared/Region/LauncherConfig.cs index 4d7f3ce0d..624a5da0b 100644 --- a/Hi3Helper.Core/Classes/Shared/Region/LauncherConfig.cs +++ b/Hi3Helper.Core/Classes/Shared/Region/LauncherConfig.cs @@ -43,10 +43,10 @@ public static void InitAppPreset() AppConfigProperty.ProfilePath = AppConfigFile; // Set user permission check to its default and check for the existence of config file. - bool IsConfigFileExist = File.Exists(AppConfigProperty.ProfilePath); + bool isConfigFileExist = File.Exists(AppConfigProperty.ProfilePath); // If the config file is exist, then continue to load the file - if (IsConfigFileExist) + if (isConfigFileExist) { LoadAppConfig(); } @@ -73,17 +73,17 @@ public static void InitAppPreset() SetAppConfigValue("GameFolder", AppSettingsTemplate["GameFolder"]); // Force enable Console Log and return - Logger.CurrentLogger = new LoggerConsole(AppGameLogsFolder, Encoding.UTF8); + Logger.UseConsoleLog(true); Logger.LogWriteLine($"Game App Folder path: {gameFolder} doesn't exist! The launcher will be reinitialize the setup.", LogType.Error, true); return; } // Check if user has permission - bool IsUserHasPermission = ConverterTool.IsUserHasPermission(gameFolder); + bool isUserHasPermission = ConverterTool.IsUserHasPermission(gameFolder); // Assign boolean if IsConfigFileExist and IsUserHasPermission. - IsFirstInstall = !(IsConfigFileExist && IsUserHasPermission); + IsFirstInstall = !(isConfigFileExist && isUserHasPermission); // Initialize the DownloadClient speed at start. // ignored @@ -210,13 +210,6 @@ private static void InitScreenResSettings() Description = Lang._Misc!.CDNDescription_GitLab }, - new() - { - Name = "Coding" + $" [{Lang._Misc.Tag_Deprecated}]", - URLPrefix = "https://ohly-generic.pkg.coding.net/collapse/release/", - Description = Lang._Misc!.CDNDescription_Coding - }, - new() { Name = "CNB", @@ -246,8 +239,8 @@ private static void InitScreenResSettings() public const long AppDiscordApplicationID_HSR = 1124153902959431780; public const long AppDiscordApplicationID_ZZZ = 1124154024879456276; - public static IntPtr AppIconLarge; - public static IntPtr AppIconSmall; + public static nint AppIconLarge; + public static nint AppIconSmall; public static List ApplyExternalConfigCallbackList = []; @@ -259,8 +252,9 @@ private static void InitScreenResSettings() [field: AllowNull, MaybeNull] public static Process AppCurrentProcess { get => field ??= Process.GetCurrentProcess(); } - public static int AppCurrentDownloadThread => GetAppConfigValue("DownloadThread"); - public static string AppGameConfigMetadataFolder => Path.Combine(AppGameFolder, "_metadatav3"); + public static int AppCurrentDownloadThread => GetAppConfigValue("DownloadThread"); + public static string AppGameConfigMetadataFolder => Path.Combine(AppGameFolder, "_metadatav3"); + public static string AppPluginFolder => Path.Combine(AppGameFolder, "_plugins"); [field: AllowNull, MaybeNull] @@ -528,6 +522,12 @@ public static bool IsInstantRegionChange set => SetAndSaveConfigValue("UseInstantRegionChange", value); } + public static int PostInstallShutdownTimeout + { + get => GetAppConfigValue("PostInstallShutdownTimeout"); + set => SetAndSaveConfigValue("PostInstallShutdownTimeout", value); + } + public static bool ForceInvokeUpdate = false; public static GameInstallStateEnum GameInstallationState = GameInstallStateEnum.NotInstalled; @@ -623,12 +623,19 @@ public static Guid GetGuid(int sessionNum) { "IsUseExternalDns", false }, { "ExternalDnsAddresses", string.Empty }, + { "PostInstallShutdownTimeout", 60 }, + { "IsCDNCacheEnabled", false }, { "IsCDNCacheAggressiveModeEnabled", false }, { "CDNCacheDir", string.Empty }, - { "CDNCacheExpireTimeMinutes", 10d } - }; + { "CDNCacheExpireTimeMinutes", 10d }, + { "IsEnablePluginAutoUpdate", true }, + + // TEMPORARY + { "Enable20250827CrisisIntro", true }, + { "Enable20250827CrisisIntroDialog", true } + }; #endregion } } diff --git a/Hi3Helper.Core/Data/IniFile.cs b/Hi3Helper.Core/Data/IniFile.cs index 092a9cbe5..cfb53d64f 100644 --- a/Hi3Helper.Core/Data/IniFile.cs +++ b/Hi3Helper.Core/Data/IniFile.cs @@ -101,7 +101,14 @@ public IniFile(IEqualityComparer? stringComparer, bool isSaveOrdered = t #region Load and Save Methods public void Save(string filePath) - => Save(new FileInfo(filePath)); + { + if (string.IsNullOrEmpty(filePath)) + { + return; + } + + Save(new FileInfo(filePath)); + } public void Save(FileInfo fileInfo) { diff --git a/Hi3Helper.Core/Hi3Helper.Core.csproj b/Hi3Helper.Core/Hi3Helper.Core.csproj index f1ee8f793..55ce905ab 100644 --- a/Hi3Helper.Core/Hi3Helper.Core.csproj +++ b/Hi3Helper.Core/Hi3Helper.Core.csproj @@ -42,8 +42,8 @@ - - + + diff --git a/Hi3Helper.Core/Lang/Locale/LangDialogs.cs b/Hi3Helper.Core/Lang/Locale/LangDialogs.cs index d058b9d87..1d35604f5 100644 --- a/Hi3Helper.Core/Lang/Locale/LangDialogs.cs +++ b/Hi3Helper.Core/Lang/Locale/LangDialogs.cs @@ -226,6 +226,26 @@ public sealed partial class LangDialogs public string UserFeedback_SubmitBtn_Processing { get; set; } = LangFallback?._Dialogs.UserFeedback_SubmitBtn_Processing; public string UserFeedback_SubmitBtn_Completed { get; set; } = LangFallback?._Dialogs.UserFeedback_SubmitBtn_Completed; public string UserFeedback_SubmitBtn_Cancelled { get; set; } = LangFallback?._Dialogs.UserFeedback_SubmitBtn_Cancelled; + + public string PluginManagerUpdateAvailableTitle { get; set; } = LangFallback?._Dialogs.PluginManagerUpdateAvailableTitle; + public string PluginManagerUpdateAvailableSubtitle1 { get; set; } = LangFallback?._Dialogs.PluginManagerUpdateAvailableSubtitle1; + public string PluginManagerUpdateAvailableSubtitle2 { get; set; } = LangFallback?._Dialogs.PluginManagerUpdateAvailableSubtitle2; + public string PluginManagerUpdateAvailableCancelBtn { get; set; } = LangFallback?._Dialogs.PluginManagerUpdateAvailableCancelBtn; + public string PluginManagerUpdateAvailableConfirmBtn { get; set; } = LangFallback?._Dialogs.PluginManagerUpdateAvailableConfirmBtn; + public string PluginManagerUpdateAvailableToManagerMenuBtn { get; set; } = LangFallback?._Dialogs.PluginManagerUpdateAvailableToManagerMenuBtn; + + public string LauncherRestartTitle { get; set; } = LangFallback?._Dialogs.LauncherRestartTitle; + public string LauncherRestartSubtitle1 { get; set; } = LangFallback?._Dialogs.LauncherRestartSubtitle1; + public string LauncherRestartSubtitle2 { get; set; } = LangFallback?._Dialogs.LauncherRestartSubtitle2; + + public string PostInstallBehaviour_Title { get; set; } = LangFallback?._Dialogs.PostInstallBehaviour_Title; + public string PostInstallBehaviour_Subtitle { get; set; } = LangFallback?._Dialogs.PostInstallBehaviour_Subtitle; + public string PostInstallBehaviour_Subtitle2 { get; set; } = LangFallback?._Dialogs.PostInstallBehaviour_Subtitle2; + public string PostInstallBehaviour_EnumNothing { get; set; } = LangFallback?._Dialogs.PostInstallBehaviour_EnumNothing; + public string PostInstallBehaviour_EnumStartGame { get; set; } = LangFallback?._Dialogs.PostInstallBehaviour_EnumStartGame; + public string PostInstallBehaviour_EnumHibernate { get; set; } = LangFallback?._Dialogs.PostInstallBehaviour_EnumHibernate; + public string PostInstallBehaviour_EnumRestart { get; set; } = LangFallback?._Dialogs.PostInstallBehaviour_EnumRestart; + public string PostInstallBehaviour_EnumShutdown { get; set; } = LangFallback?._Dialogs.PostInstallBehaviour_EnumShutdown; } } #endregion diff --git a/Hi3Helper.Core/Lang/Locale/LangMisc.cs b/Hi3Helper.Core/Lang/Locale/LangMisc.cs index 4ec758870..bae80d8bf 100644 --- a/Hi3Helper.Core/Lang/Locale/LangMisc.cs +++ b/Hi3Helper.Core/Lang/Locale/LangMisc.cs @@ -32,6 +32,7 @@ public sealed partial class LangMisc public string PerFromToPlaceholder { get; set; } = LangFallback?._Misc.PerFromToPlaceholder; public string Cancel { get; set; } = LangFallback?._Misc.Cancel; public string Close { get; set; } = LangFallback?._Misc.Close; + public string CloseOverlay { get; set; } = LangFallback?._Misc.CloseOverlay; public string Skip { get; set; } = LangFallback?._Misc.Skip; public string MoveToDifferentDir { get; set; } = LangFallback?._Misc.MoveToDifferentDir; public string UseCurrentDir { get; set; } = LangFallback?._Misc.UseCurrentDir; @@ -105,7 +106,6 @@ public sealed partial class LangMisc public string CDNDescription_Statically { get; set; } = LangFallback?._Misc.CDNDescription_Statically; public string CDNDescription_jsDelivr { get; set; } = LangFallback?._Misc.CDNDescription_jsDelivr; public string CDNDescription_GitLab { get; set; } = LangFallback?._Misc.CDNDescription_GitLab; - public string CDNDescription_Coding { get; set; } = LangFallback?._Misc.CDNDescription_Coding; public string CDNDescription_CNB { get; set; } = LangFallback?._Misc.CDNDescription_CNB; public string DiscordRP_Play { get; set; } = LangFallback?._Misc.DiscordRP_Play; diff --git a/Hi3Helper.Core/Lang/Locale/LangPluginManagerPage.cs b/Hi3Helper.Core/Lang/Locale/LangPluginManagerPage.cs new file mode 100644 index 000000000..e11d0a772 --- /dev/null +++ b/Hi3Helper.Core/Lang/Locale/LangPluginManagerPage.cs @@ -0,0 +1,68 @@ +using WinRT; +// ReSharper disable PartialTypeWithSinglePart +// ReSharper disable InconsistentNaming +// ReSharper disable IdentifierTypo + +namespace Hi3Helper +{ + public sealed partial class Locale + { + #region PluginManagementMenuPage + public sealed partial class LocalizationParams + { + public LangPluginManagerPage _PluginManagerPage { get; set; } = LangFallback?._PluginManagerPage; + + [GeneratedBindableCustomProperty] + public sealed partial class LangPluginManagerPage + { + public string PageTitle { get; set; } = LangFallback?._PluginManagerPage.PageTitle; + + public string FileDialogTitle { get; set; } = LangFallback?._PluginManagerPage.FileDialogTitle; + public string FileDialogFileFilter1 { get; set; } = LangFallback?._PluginManagerPage.FileDialogFileFilter1; + + public string LeftPanelNoPluginTitle { get; set; } = LangFallback?._PluginManagerPage.LeftPanelNoPluginTitle; + public string LeftPanelNoPluginButton1 { get; set; } = LangFallback?._PluginManagerPage.LeftPanelNoPluginButton1; + public string LeftPanelNoPluginButton2 { get; set; } = LangFallback?._PluginManagerPage.LeftPanelNoPluginButton2; + public string LeftPanelNoPluginButton3 { get; set; } = LangFallback?._PluginManagerPage.LeftPanelNoPluginButton3; + + public string LeftPanelListViewTitle { get; set; } = LangFallback?._PluginManagerPage.LeftPanelListViewTitle; + public string ListViewMainActionButton1 { get; set; } = LangFallback?._PluginManagerPage.ListViewMainActionButton1; + public string ListViewMainActionButton1AltChecking { get; set; } = LangFallback?._PluginManagerPage.ListViewMainActionButton1AltChecking; + public string ListViewMainActionButton2 { get; set; } = LangFallback?._PluginManagerPage.ListViewMainActionButton2; + public string ListViewMainActionButton3 { get; set; } = LangFallback?._PluginManagerPage.ListViewMainActionButton3; + + public string ListViewItemContextButton1 { get; set; } = LangFallback?._PluginManagerPage.ListViewItemContextButton1; + public string ListViewItemContextButton2 { get; set; } = LangFallback?._PluginManagerPage.ListViewItemContextButton2; + public string ListViewItemContextButton3 { get; set; } = LangFallback?._PluginManagerPage.ListViewItemContextButton3; + public string ListViewItemContextButton4 { get; set; } = LangFallback?._PluginManagerPage.ListViewItemContextButton4; + public string ListViewItemContextButton5 { get; set; } = LangFallback?._PluginManagerPage.ListViewItemContextButton5; + public string ListViewItemContextButton6 { get; set; } = LangFallback?._PluginManagerPage.ListViewItemContextButton6; + public string ListViewItemContextButton7 { get; set; } = LangFallback?._PluginManagerPage.ListViewItemContextButton7; + public string ListViewItemContextButton8 { get; set; } = LangFallback?._PluginManagerPage.ListViewItemContextButton8; + + public string ListViewItemContentButton1 { get; set; } = LangFallback?._PluginManagerPage.ListViewItemContentButton1; + public string ListViewItemContentButton2 { get; set; } = LangFallback?._PluginManagerPage.ListViewItemContentButton2; + + public string ListViewItemContextButtonCheckUpdateOnly { get; set; } = LangFallback?._PluginManagerPage.ListViewItemContextButtonCheckUpdateOnly; + public string ListViewItemContextButtonCheckAndDownloadUpdate { get; set; } = LangFallback?._PluginManagerPage.ListViewItemContextButtonCheckAndDownloadUpdate; + public string ListViewItemContextButtonDownloadUpdate { get; set; } = LangFallback?._PluginManagerPage.ListViewItemContextButtonDownloadUpdate; + + public string ListViewItemUpdateStatusAvailable { get; set; } = LangFallback?._PluginManagerPage.ListViewItemUpdateStatusAvailable; + public string ListViewItemUpdateStatusAvailableButton { get; set; } = LangFallback?._PluginManagerPage.ListViewItemUpdateStatusAvailableButton; + public string ListViewItemUpdateStatusAvailableButtonUpdating { get; set; } = LangFallback?._PluginManagerPage.ListViewItemUpdateStatusAvailableButtonUpdating; + public string ListViewItemUpdateStatusCompleted { get; set; } = LangFallback?._PluginManagerPage.ListViewItemUpdateStatusCompleted; + public string ListViewItemUpdateStatusChecking { get; set; } = LangFallback?._PluginManagerPage.ListViewItemUpdateStatusChecking; + public string ListViewItemUpdateStatusUpToDate { get; set; } = LangFallback?._PluginManagerPage.ListViewItemUpdateStatusUpToDate; + + public string ListViewFooterWarning1 { get; set; } = LangFallback?._PluginManagerPage.ListViewFooterWarning1; + public string ListViewFooterRestartButton { get; set; } = LangFallback?._PluginManagerPage.ListViewFooterRestartButton; + + public string RightPanelImportTitle1 { get; set; } = LangFallback?._PluginManagerPage.RightPanelImportTitle1; + public string RightPanelImportTitle2 { get; set; } = LangFallback?._PluginManagerPage.RightPanelImportTitle2; + public string RightPanelImportTitle3 { get; set; } = LangFallback?._PluginManagerPage.RightPanelImportTitle3; + public string RightPanelImportTitle4 { get; set; } = LangFallback?._PluginManagerPage.RightPanelImportTitle4; + } + } + #endregion + } +} diff --git a/Hi3Helper.Core/Lang/Locale/LangSettingsPage.cs b/Hi3Helper.Core/Lang/Locale/LangSettingsPage.cs index 4b2e18fca..835c976a5 100644 --- a/Hi3Helper.Core/Lang/Locale/LangSettingsPage.cs +++ b/Hi3Helper.Core/Lang/Locale/LangSettingsPage.cs @@ -251,6 +251,20 @@ public sealed partial class LangSettingsPage public string Database_Placeholder_DbTokenPasswordBox { get; set; } = LangFallback?._SettingsPage.Database_Placeholder_DbTokenPasswordBox; public string SearchPlaceholder { get; set; } = LangFallback?._SettingsPage.SearchPlaceholder; + + public string Plugin_LoadedInfoTitle { get; set; } = LangFallback?._SettingsPage.Plugin_LoadedInfoTitle; + public string Plugin_OpenManagerBtn { get; set; } = LangFallback?._SettingsPage.Plugin_OpenManagerBtn; + public string Plugin_AuthorBy { get; set; } = LangFallback?._SettingsPage.Plugin_AuthorBy; + public string Plugin_LoadedInfoDesc { get; set; } = LangFallback?._SettingsPage.Plugin_LoadedInfoDesc; + public string Plugin_LoadedInfoPluginVer { get; set; } = LangFallback?._SettingsPage.Plugin_LoadedInfoPluginVer; + public string Plugin_LoadedInfoInterfaceVer { get; set; } = LangFallback?._SettingsPage.Plugin_LoadedInfoInterfaceVer; + public string Plugin_LoadedInfoCreationDate { get; set; } = LangFallback?._SettingsPage.Plugin_LoadedInfoCreationDate; + public string Plugin_LoadedInfoMainLibLocation { get; set; } = LangFallback?._SettingsPage.Plugin_LoadedInfoMainLibLocation; + public string Plugin_LoadedInfoLoadedPresets { get; set; } = LangFallback?._SettingsPage.Plugin_LoadedInfoLoadedPresets; + public string Plugin_LoadedInfoClipboardCopied { get; set; } = LangFallback?._SettingsPage.Plugin_LoadedInfoClipboardCopied; + public string Plugin_PluginInfoNameUnknown { get; set; } = LangFallback?._SettingsPage.Plugin_PluginInfoNameUnknown; + public string Plugin_PluginInfoDescUnknown { get; set; } = LangFallback?._SettingsPage.Plugin_PluginInfoDescUnknown; + public string Plugin_PluginInfoAuthorUnknown { get; set; } = LangFallback?._SettingsPage.Plugin_PluginInfoAuthorUnknown; public string HttpCache_Title { get; set; } = LangFallback?._SettingsPage.HttpCache_Title; public string HttpCacheModeToggle { get; set; } = LangFallback?._SettingsPage.HttpCacheModeToggle; diff --git a/Hi3Helper.Core/Lang/de_DE.json b/Hi3Helper.Core/Lang/de_DE.json index b11c945b7..67332bf4c 100644 --- a/Hi3Helper.Core/Lang/de_DE.json +++ b/Hi3Helper.Core/Lang/de_DE.json @@ -674,7 +674,6 @@ "CDNDescription_Cloudflare": "Ein Spiegel des offiziellen (Haupt-)Repository, gehostet in Cloudflare R2 Bucket.", "CDNDescription_Bitbucket": "Ein Spiegel des offiziellen (Haupt-)Repository, gehostet in Bitbucket.", "CDNDescription_GitLab": "A mirror of the official (main) repository hosted in GitLab.", - "CDNDescription_Coding": "A mirror of the official (main) repository hosted in Coding.", "LocateExecutable": "Locate Executable", "OpenDownloadPage": "Downloadseite öffnen", diff --git a/Hi3Helper.Core/Lang/en_US.json b/Hi3Helper.Core/Lang/en_US.json index 05aa779fd..7fc091760 100644 --- a/Hi3Helper.Core/Lang/en_US.json +++ b/Hi3Helper.Core/Lang/en_US.json @@ -87,7 +87,7 @@ "CopyClipboardBtn1": "Copy All to Clipboard", "CopyClipboardBtn2": "Copied to Clipboard!", "GoBackPageBtn1": "Go Back to Previous Page", - + "CustomBackground_NotFound": "Custom background file is missing! Using default image", "CustomBackground_RegionalTag": "Region BG", "CustomBackground_GlobalTag": "Global BG" @@ -718,7 +718,71 @@ "HttpCacheMaxExpireTimeBox_Tooltip1": "Determine how long is the allowed maximum cache time for the response (in minutes).", "HttpCacheMaxExpireTimeBoxMinutes": "minutes", "HttpCacheClearButton": "Clear Network Cache", - "HttpCacheClearedText": "Caches have been Cleared!" + "HttpCacheClearedText": "Caches have been Cleared!", + + "Plugin_LoadedInfoTitle": "Loaded Plugins Information", + "Plugin_OpenManagerBtn": "Open Plugin Management Menu", + "Plugin_AuthorBy": "by {0}", + "Plugin_LoadedInfoDesc": "Description", + "Plugin_LoadedInfoPluginVer": "Plugin Version", + "Plugin_LoadedInfoInterfaceVer": "Interface Version", + "Plugin_LoadedInfoCreationDate": "Creation Date", + "Plugin_LoadedInfoMainLibLocation": "Main Library Location", + "Plugin_LoadedInfoLoadedPresets": "Loaded Presets", + "Plugin_LoadedInfoClipboardCopied": "Information Copied!", + "Plugin_PluginInfoNameUnknown": "Unknown", + "Plugin_PluginInfoDescUnknown": "No description", + "Plugin_PluginInfoAuthorUnknown": "Unknown Author" + }, + + "_PluginManagerPage": { + "PageTitle": "Plugin Manager Menu", + + "FileDialogTitle": "Import Collapse Launcher Plugin", + "FileDialogFileFilter1": "Collapse Launcher Plugin", + + "LeftPanelNoPluginTitle": "Hey, you have no plugin loaded!", + "LeftPanelNoPluginButton1": "Go to", + "LeftPanelNoPluginButton2": "Plugin Download Catalog", + "LeftPanelNoPluginButton3": "page", + + "LeftPanelListViewTitle": "Loaded Plugin Information", + + "ListViewMainActionButton1": "Check Updates for All Plugins", + "ListViewMainActionButton1AltChecking": "Checking Updates for All Plugins...", + "ListViewMainActionButton2": "Download Updates for All Plugins", + "ListViewMainActionButton3": "Enable Plugins Auto-update on Launch", + + "ListViewItemContextButton1": "Uninstall Selected Plugins", + "ListViewItemContextButton2": "Restore Selected Plugins", + "ListViewItemContextButton3": "Enable Selected Plugins", + "ListViewItemContextButton4": "Disable Selected Plugins", + "ListViewItemContextButton5": "Update Selected Plugins", + "ListViewItemContextButton6": "Open Current Plugin Folder", + "ListViewItemContextButton7": "Open Collapse Launcher Plugin Folder", + "ListViewItemContextButton8": "Update Current Plugin", + + "ListViewItemContentButton1": "Uninstall Plugin", + "ListViewItemContentButton2": "Restore Plugin", + + "ListViewItemContextButtonCheckUpdateOnly": "Check Update Only", + "ListViewItemContextButtonCheckAndDownloadUpdate": "Check and Download Update", + "ListViewItemContextButtonDownloadUpdate": "Download Update", + + "ListViewItemUpdateStatusAvailable": "Update is Available!", + "ListViewItemUpdateStatusAvailableButton": "Update to {0}", + "ListViewItemUpdateStatusAvailableButtonUpdating": "Updating ({0}%)...", + "ListViewItemUpdateStatusCompleted": "Your plugin has been updated to {0}. Please restart your launcher to apply the update!", + "ListViewItemUpdateStatusChecking": "Checking for Update...", + "ListViewItemUpdateStatusUpToDate": "Plugin is Up-to-date!", + + "ListViewFooterWarning1": "You need to restart your launcher in order to apply the changes!", + "ListViewFooterRestartButton": "Restart the Launcher", + + "RightPanelImportTitle1": "Drag the", + "RightPanelImportTitle2": "or", + "RightPanelImportTitle3": "here", + "RightPanelImportTitle4": "or click this box to import the plugin" }, "_Misc": { @@ -741,6 +805,7 @@ "EverythingIsOkay": "All OK!", "Cancel": "Cancel", "Close": "Close", + "CloseOverlay": "Close Overlay", "UseCurrentDir": "Use current directory", "UseDefaultDir": "Use default directory", "MoveToDifferentDir": "Move to different directory", @@ -817,7 +882,6 @@ "CDNDescription_Cloudflare": "A mirror of the official (main) repository powered by Cloudflare R2 bucket.", "CDNDescription_Bitbucket": "A mirror of the official (main) repository powered by Bitbucket.", "CDNDescription_GitLab": "A mirror of the official (main) repository powered by GitLab.", - "CDNDescription_Coding": "A mirror of the official (main) repository powered by Coding.", "CDNDescription_CNB": "A mirror of the official (main) repository powered by CNB.", "LocateExecutable": "Locate Executable", @@ -1119,7 +1183,27 @@ "UserFeedback_SubmitBtn": "Submit your feedback", "UserFeedback_SubmitBtn_Processing": "Processing...", "UserFeedback_SubmitBtn_Completed": "Completed!", - "UserFeedback_SubmitBtn_Cancelled": "Cancelled!" + "UserFeedback_SubmitBtn_Cancelled": "Cancelled!", + + "PluginManagerUpdateAvailableTitle": "You have {0} plugin(s) ready to be updated!", + "PluginManagerUpdateAvailableSubtitle1": "There are {0} plugin(s) update available. The launcher is required to be restarted in order to apply update to these plugins:", + "PluginManagerUpdateAvailableSubtitle2": "Do you wish to restart the launcher?", + "PluginManagerUpdateAvailableCancelBtn": "Later", + "PluginManagerUpdateAvailableConfirmBtn": "Restart Now!", + "PluginManagerUpdateAvailableToManagerMenuBtn": "Go to {0}", + + "LauncherRestartTitle": "Restarting Collapse Launcher", + "LauncherRestartSubtitle1": "You're about to restart the launcher. Make sure to close or cancel any background activity before restarting your launcher.", + "LauncherRestartSubtitle2": "Are you sure to restart the launcher?", + + "PostInstallBehaviour_Title": "Post Install/Update Behaviour", + "PostInstallBehaviour_Subtitle": "Behaviour after successful install/update", + "PostInstallBehaviour_Subtitle2": "Timeout before restart/shutdown", + "PostInstallBehaviour_EnumNothing": "Do Nothing", + "PostInstallBehaviour_EnumStartGame": "Start Game", + "PostInstallBehaviour_EnumHibernate": "Hibernate", + "PostInstallBehaviour_EnumRestart": "Restart Computer", + "PostInstallBehaviour_EnumShutdown": "Shutdown Computer" }, "_FileMigrationProcess": { @@ -1359,7 +1443,7 @@ "Graphics_DlssQuality": "NVIDIA DLSS", "Graphics_SelfShadow": "Character Shadow in Map Exploration", "Graphics_HalfResTransparent": "Half Resolution Transparency", - + "Graphics_DLSS_UHP": "Ultra Performance", "Graphics_DLSS_Perf": "Performance", "Graphics_DLSS_Balanced": "Balanced", diff --git a/Hi3Helper.Core/Lang/es_419.json b/Hi3Helper.Core/Lang/es_419.json index 27bbcbef0..32efbca8c 100644 --- a/Hi3Helper.Core/Lang/es_419.json +++ b/Hi3Helper.Core/Lang/es_419.json @@ -5,7 +5,7 @@ "_StartupPage": { "SelectLang": "Seleccione su idioma", - "SelectLangDesc": "Por favor selecciona tu idioma para iniciar este lanzador por primera vez!", + "SelectLangDesc": "Por favor selecciona tu idioma para iniciar este launcher por primera vez!", "SelectWindowSize": "Seleccione el tamaño de ventana preferido", "SelectCDN": "Seleccione su CDN preferido", "CDNHelpTitle_1": "¿Qué es un CDN?", @@ -87,7 +87,7 @@ "CopyClipboardBtn1": "Copiar Todo al Portapapeles", "CopyClipboardBtn2": "¡Copiado al Portapapeles!", "GoBackPageBtn1": "Volver a la Página Anterior", - + "CustomBackground_NotFound": "¡No se encontró el archivo de fondo personalizado! Se usara la imagen por defecto", "CustomBackground_RegionalTag": "Fondo Región", "CustomBackground_GlobalTag": "Fondo Global" @@ -718,7 +718,71 @@ "HttpCacheMaxExpireTimeBox_Tooltip1": "Determina cuanto es el tiempo máximo permitido para la respuesta (en minutos).", "HttpCacheMaxExpireTimeBoxMinutes": "minutos", "HttpCacheClearButton": "Borrar caché de red", - "HttpCacheClearedText": "¡Los cachés han sido borrados!" + "HttpCacheClearedText": "¡Los cachés han sido borrados!", + + "Plugin_LoadedInfoTitle": "Información de los plugins cargados", + "Plugin_OpenManagerBtn": "Abrir menú de gestión de plugins", + "Plugin_AuthorBy": "por {0}", + "Plugin_LoadedInfoDesc": "Descripción", + "Plugin_LoadedInfoPluginVer": "Versión de Plugin", + "Plugin_LoadedInfoInterfaceVer": "Versión de interfaz", + "Plugin_LoadedInfoCreationDate": "Fecha de creación", + "Plugin_LoadedInfoMainLibLocation": "Ubicación biblioteca principal", + "Plugin_LoadedInfoLoadedPresets": "Preajustes cargados", + "Plugin_LoadedInfoClipboardCopied": "¡Información copiada!", + "Plugin_PluginInfoNameUnknown": "Desconocido", + "Plugin_PluginInfoDescUnknown": "Sin Descripción", + "Plugin_PluginInfoAuthorUnknown": "Autor Desconocido" + }, + + "_PluginManagerPage": { + "PageTitle": "Menú de gestión de plugins", + + "FileDialogTitle": "Importar Plugin a Collapse Launcher", + "FileDialogFileFilter1": "Collapse Launcher Plugin", + + "LeftPanelNoPluginTitle": "¡No tienes cargado ningún plugin!", + "LeftPanelNoPluginButton1": "Entra en el", + "LeftPanelNoPluginButton2": "Catálogo de Plugin", + "LeftPanelNoPluginButton3": " ", + + "LeftPanelListViewTitle": "Información del plugin cargado", + + "ListViewMainActionButton1": "Comprobar actualizaciones de plugins", + "ListViewMainActionButton1AltChecking": "Comprobando actualizaciones...", + "ListViewMainActionButton2": "Descargar actualizaciones de plugins", + "ListViewMainActionButton3": "Habilitar la actualización automática de plugins al iniciar", + + "ListViewItemContextButton1": "Desinstalar plugins seleccionados", + "ListViewItemContextButton2": "Restaurar plugin seleccionados", + "ListViewItemContextButton3": "Habilitar plugins seleccionados", + "ListViewItemContextButton4": "Deshabilitar plugins seleccionados", + "ListViewItemContextButton5": "Actualizar plugins seleccionados", + "ListViewItemContextButton6": "Abrir carpeta de plugin actual", + "ListViewItemContextButton7": "Abrir carpeta de plugins de Collapse Launcher", + "ListViewItemContextButton8": "Actualizar plugin actual", + + "ListViewItemContentButton1": "Desinstalar plugin", + "ListViewItemContentButton2": "Restaurar plugin", + + "ListViewItemContextButtonCheckUpdateOnly": "Comprobar solo actualizaciones", + "ListViewItemContextButtonCheckAndDownloadUpdate": "Comprobar y descargar actualizaciones", + "ListViewItemContextButtonDownloadUpdate": "Descargar actualización", + + "ListViewItemUpdateStatusAvailable": "¡Actualización disponible!", + "ListViewItemUpdateStatusAvailableButton": "Actualizar a {0}", + "ListViewItemUpdateStatusAvailableButtonUpdating": "Actualizando ({0}%)...", + "ListViewItemUpdateStatusCompleted": "Tu plugin fue actualizado a {0}. ¡Por favor reinicia el launcher para aplicar los cambios!", + "ListViewItemUpdateStatusChecking": "Buscando actualizaciones...", + "ListViewItemUpdateStatusUpToDate": "¡Los plugins están actualizados!", + + "ListViewFooterWarning1": "¡Tienes que reiniciar el launcher para aplicar los cambios!", + "ListViewFooterRestartButton": "Reiniciar el Launcher", + + "RightPanelImportTitle1": "Arrastra el", + "RightPanelImportTitle2": "o", + "RightPanelImportTitle3": "aquí", + "RightPanelImportTitle4": "o haga clic en este cuadro para importar el plugin" }, "_Misc": { @@ -741,6 +805,7 @@ "EverythingIsOkay": "¡Todo Bien!", "Cancel": "Cancelar", "Close": "Cerrar", + "CloseOverlay": "Cerrar Superposición (Overlay)", "UseCurrentDir": "Usar directorio actual", "UseDefaultDir": "Usar directorio predeterminado", "MoveToDifferentDir": "Mover a otra ubicación ", @@ -817,7 +882,6 @@ "CDNDescription_Cloudflare": "Mirror del repositorio oficial (principal) alojado por Cloudflare R2 bucket.", "CDNDescription_Bitbucket": "Mirror del repositorio oficial (principal) alojado por Bitbucket.", "CDNDescription_GitLab": "Mirror del repositorio oficial (principal) alojado por GitLab.", - "CDNDescription_Coding": "Mirror del repositorio oficial (principal) alojado por Coding.", "CDNDescription_CNB": "Mirror del repositorio oficial (principal) alojado por CNB.", "LocateExecutable": "Localizar el Ejecutable", @@ -1119,7 +1183,27 @@ "UserFeedback_SubmitBtn": "Compártenos tus comentarios", "UserFeedback_SubmitBtn_Processing": "Procesando...", "UserFeedback_SubmitBtn_Completed": "¡Completado!", - "UserFeedback_SubmitBtn_Cancelled": "¡Cancelado!" + "UserFeedback_SubmitBtn_Cancelled": "¡Cancelado!", + + "PluginManagerUpdateAvailableTitle": "¡Tienes {0} Plugin(s) para ser actualizado(s)!", + "PluginManagerUpdateAvailableSubtitle1": "Hay disponible {0} actualización(es) de plugin(s). Es necesario reiniciar el launcher para aplicar la actualización:", + "PluginManagerUpdateAvailableSubtitle2": "¿Deseas reiniciar el Launcher?", + "PluginManagerUpdateAvailableCancelBtn": "Más Tarde", + "PluginManagerUpdateAvailableConfirmBtn": "¡Reiniciar Ahora!", + "PluginManagerUpdateAvailableToManagerMenuBtn": "Ve a {0}", + + "LauncherRestartTitle": "Reiniciando Collapse Launcher", + "LauncherRestartSubtitle1": "El launcher esta a punto de reiniciarse. Asegúrate de cerrar o cancelar cualquier tarea de fondo antes de seguir con el reinicio.", + "LauncherRestartSubtitle2": "¿Estas seguro de reiniciar el launcher?", + + "PostInstallBehaviour_Title": "Comportamiento tras la instalación/actualización", + "PostInstallBehaviour_Subtitle": "Comportamiento tras una instalación/actualización correcta", + "PostInstallBehaviour_Subtitle2": "Tiempo antes de reiniciar/apagar", + "PostInstallBehaviour_EnumNothing": "No hacer nada", + "PostInstallBehaviour_EnumStartGame": "Lanzar Juego", + "PostInstallBehaviour_EnumHibernate": "Hibernar", + "PostInstallBehaviour_EnumRestart": "Reiniciar Equipo", + "PostInstallBehaviour_EnumShutdown": "Apagar Equipo" }, "_FileMigrationProcess": { @@ -1359,7 +1443,7 @@ "Graphics_DlssQuality": "NVIDIA DLSS", "Graphics_SelfShadow": "Sombra de personaje en mundo abierto", "Graphics_HalfResTransparent": "Resolución media en transparencia ", - + "Graphics_DLSS_UHP": "Ultra Rendimiento", "Graphics_DLSS_Perf": "Rendimiento", "Graphics_DLSS_Balanced": "Balanceado", diff --git a/Hi3Helper.Core/Lang/fr_FR.json b/Hi3Helper.Core/Lang/fr_FR.json index 9adf1efd3..6213c5354 100644 --- a/Hi3Helper.Core/Lang/fr_FR.json +++ b/Hi3Helper.Core/Lang/fr_FR.json @@ -793,7 +793,6 @@ "CDNDescription_Cloudflare": "Un miroir du dépôt officiel (principal) propulsé par le seau Cloudflare R2", "CDNDescription_Bitbucket": "Un miroir du dépôt officiel (principal) propulsé par BitBucket", "CDNDescription_GitLab": "Un miroir du dépôt officiel (principal) propulsé par GitLab", - "CDNDescription_Coding": "Un miroir du dépôt officiel (principal) propulsé par Coding", "LocateExecutable": "Localiser le programme", "OpenDownloadPage": "Ouvrir la page de téléchargement", diff --git a/Hi3Helper.Core/Lang/id_ID.json b/Hi3Helper.Core/Lang/id_ID.json index 43400c1eb..1fb501af6 100644 --- a/Hi3Helper.Core/Lang/id_ID.json +++ b/Hi3Helper.Core/Lang/id_ID.json @@ -87,7 +87,7 @@ "CopyClipboardBtn1": "Salin Semua ke Clipboard", "CopyClipboardBtn2": "Telah Tersalin ke Clipboard!", "GoBackPageBtn1": "Kembali ke Halaman Sebelumnya", - + "CustomBackground_NotFound": "File latar belakang kustom hilang! Kembali menggunakan gambar bawaan", "CustomBackground_RegionalTag": "Latar Belakang Region", "CustomBackground_GlobalTag": "Latar Belakang Keseluruhan" @@ -717,7 +717,71 @@ "HttpCacheMaxExpireTimeBox_Tooltip1": "Menentukan berapa lama waktu maksimum yang diperbolehkan untuk cache dapat disimpan pada response (dalam menit).", "HttpCacheMaxExpireTimeBoxMinutes": "menit", "HttpCacheClearButton": "Bersikan Cache Network", - "HttpCacheClearedText": "Cache telah Dibersikan!" + "HttpCacheClearedText": "Cache telah Dibersikan!", + + "Plugin_LoadedInfoTitle": "Informasi Plugin", + "Plugin_OpenManagerBtn": "Buka Menu Manajemen Plugin", + "Plugin_AuthorBy": "oleh {0}", + "Plugin_LoadedInfoDesc": "Deskripsi", + "Plugin_LoadedInfoPluginVer": "Versi Plugin", + "Plugin_LoadedInfoInterfaceVer": "Versi Antarmuka (API)", + "Plugin_LoadedInfoCreationDate": "Tanggal Dibuat", + "Plugin_LoadedInfoMainLibLocation": "Lokasi Librari Utama", + "Plugin_LoadedInfoLoadedPresets": "Preset yang Dimuat", + "Plugin_LoadedInfoClipboardCopied": "Informasi Telah Disalin!", + "Plugin_PluginInfoNameUnknown": "Tidak diketahui", + "Plugin_PluginInfoDescUnknown": "Tidak ada deskripsi", + "Plugin_PluginInfoAuthorUnknown": "Pembuat Tidak Dikenal" + }, + + "_PluginManagerPage": { + "PageTitle": "Menu Manajemen Plugin", + + "FileDialogTitle": "Impor Plugin Collapse Launcher", + "FileDialogFileFilter1": "Format Plugin Collapse Launcher", + + "LeftPanelNoPluginTitle": "Weh, kamu belum punya plugin!", + "LeftPanelNoPluginButton1": "Menuju ke", + "LeftPanelNoPluginButton2": "Katalog Unduhan Plugin", + "LeftPanelNoPluginButton3": "", + + "LeftPanelListViewTitle": "Informasi Muatan Plugin", + + "ListViewMainActionButton1": "Cek Pembaruan untuk Semua Plugin", + "ListViewMainActionButton1AltChecking": "Memeriksa Pembaruan untuk Semua Plugin...", + "ListViewMainActionButton2": "Unduh Pembaruan untuk Semua Plugin", + "ListViewMainActionButton3": "Nyalakan Pembaruan Otomatis Plugin saat Pemulaian", + + "ListViewItemContextButton1": "Copot Plugin yang Dipilih", + "ListViewItemContextButton2": "Kembalikan Plugin yang Dipilih", + "ListViewItemContextButton3": "Nyalakan Plugin yang Dipilih", + "ListViewItemContextButton4": "Matikan Plugin yang Dipilih", + "ListViewItemContextButton5": "Perbarui Plugin yang Dipilih", + "ListViewItemContextButton6": "Buka Folder Plugin Ini", + "ListViewItemContextButton7": "Buka Folder Plugin Collapse Launcher", + "ListViewItemContextButton8": "Perbarui Plugin Ini", + + "ListViewItemContentButton1": "Copot Plugin", + "ListViewItemContentButton2": "Kembalikan Plugin", + + "ListViewItemContextButtonCheckUpdateOnly": "Cek Pembaruan Saja", + "ListViewItemContextButtonCheckAndDownloadUpdate": "Cek dan Unduh Pembaruan", + "ListViewItemContextButtonDownloadUpdate": "Unduh Pembaruan", + + "ListViewItemUpdateStatusAvailable": "Pembaruan Tersedia!", + "ListViewItemUpdateStatusAvailableButton": "Perbarui ke {0}", + "ListViewItemUpdateStatusAvailableButtonUpdating": "Memperbarui ({0}%)...", + "ListViewItemUpdateStatusCompleted": "Plugin kamu sudah diperbarui ke {0}. Silahkan restart launcher kamu untuk menerapkan pembaruan!", + "ListViewItemUpdateStatusChecking": "Memeriksa Pembaruan...", + "ListViewItemUpdateStatusUpToDate": "Plugin sudah paling baru!", + + "ListViewFooterWarning1": "Kamu perlu restart launcher kamu untuk menerapkan perubahan!", + "ListViewFooterRestartButton": "Restart Launcher", + + "RightPanelImportTitle1": "Drag file", + "RightPanelImportTitle2": "atau", + "RightPanelImportTitle3": "ke sini", + "RightPanelImportTitle4": "atau klik kotak ini untuk impor plugin" }, "_Misc": { @@ -740,6 +804,7 @@ "EverythingIsOkay": "Semuanya Berhasil!", "Cancel": "Batal", "Close": "Tutup", + "CloseOverlay": "Tutup Overlay", "UseCurrentDir": "Pakai lokasi saat ini", "UseDefaultDir": "Pakai lokasi bawaan", "MoveToDifferentDir": "Pindah ke direktori lain", @@ -811,12 +876,11 @@ "BuildChannelPreview": "Preview", "BuildChannelStable": "Stable", - "CDNDescription_Github": "Repositori resmi (utama) untuk launcher.", + "CDNDescription_Github": "Repositori resmi (utama) untuk launcher", "CDNDescription_DigitalOcean": "Mirror dari repositori resmi (main) yang dihost dalam DigitalOcean.", "CDNDescription_Cloudflare": "Mirror dari repositori resmi (main) yang dihost dalam bucket Cloudflare R2.", - "CDNDescription_Bitbucket": "Mirror dari repositori resmi (main) yang dihost dalam Bitbucket,", + "CDNDescription_Bitbucket": "Mirror dari repositori resmi (main) yang dihost dalam Bitbucket.", "CDNDescription_GitLab": "Mirror dari repositori resmi (main) yang dihost dalam GitLab.", - "CDNDescription_Coding": "Mirror dari repositori resmi (main) yang dihost dalam Coding.", "LocateExecutable": "Pilih Executable", "OpenDownloadPage": "Buka Halaman Unduhan", @@ -855,14 +919,14 @@ "IsBytesNotANumber": "= Bukan Nomor", "MissingVcRedist": "Visual C/C++ Redistributable Tidak Terpasang", - "MissingVcRedistSubtitle": "Kamu perlu memasang Visual C/C++ Redistributable terlebih dahulu untuk menggunakan fungsi ini. Mau unduh sekarang?\r\nCatatan: Proses ini akan membuka window browser menuju file yang perlu kamu unduh dari Microsoft. Perlu diingat bahwa kamu perlu me-restart Collapse setelah memasangnya.\r\nApabila kamu sudah memasangnya tapi error ini masih muncul, silahkan kirimkan tiket issue ke kami.", + "MissingVcRedistSubtitle": "Kamu perlu memasang Visual C/C++ Redistributable terlebih dahulu untuk menggunakan fungsi ini. Mau unduh sekarang?\r\nCatatan: Proses ini akan membuka browser untuk mengunduh file yang diperlukan dari Microsoft. Perlu diingat bahwa kamu perlu me-restart Collapse setelah memasangnya.\r\nApabila kamu sudah memasangnya tapi error ini masih muncul, silahkan kirimkan tiket issue kepada kami.", "ExceptionFeedbackBtn": "Kasih tahu kami dong", "ExceptionFeedbackBtn_Unavailable": "Laporan crash tidak tersedia atau dimatikan", "ExceptionFeedbackBtn_FeedbackSent": "Umpan-Balikmu sudah dikirim!", - "ExceptionFeedbackTitle": "Apa yang terjadi?:", + "ExceptionFeedbackTitle": "Beritahu kami apa yang terjadi:", "ExceptionFeedbackTemplate_User": "Username (Opsional):", "ExceptionFeedbackTemplate_Email": "Email (Opsional):", - "ExceptionFeedbackTemplate_Message": "Masukan Umpan-Balikmu setelah garis ini: (Kamu tidak perlu lampirkan pesan error karena akan langsung disisipkan)", + "ExceptionFeedbackTemplate_Message": "Masukan Umpan-Balikmu setelah garis ini: (Kamu tidak perlu melampirkan pesan error, app akan langsung melampirkannya otomatis!)", "Feedback": "Umpan Balik Pengguna", "FeedbackSending": "Mengirimkan umpan balikmu...", @@ -1019,7 +1083,7 @@ "StopGameTitle": "Tutup Paksa Game", "StopGameSubtitle": "Apakah anda yakin ingin menutup game yang sedang berjalan?\nAnda akan kehilangan progress di dalam game.", - "MeteredConnectionWarningTitle": "Koneksi Internet Berbayar Ditemukan!", + "MeteredConnectionWarningTitle": "Koneksi Internet Berbayar Terdeteksi!", "MeteredConnectionWarningSubtitle": "Koneksi internet anda saat ini terdeteksi sebagai koneksi \"berbayar\"! Melanjutkan proses update dapat menambah tagihan internet dari penyedia layanan internet. Apakah kamu ingin melanjutkan aksi ini?", "ResetKbShortcutsTitle": "Apa kamu yakin untuk mengatur ulang semua pintasan?", @@ -1036,7 +1100,7 @@ "OperationWarningNotCancellableMsg5": "\" untuk membatalkan.", "GenericWarningExceptionTitle": "Peringatan", - "GenericWarningExceptionSubtitle": "Kami mau beritahu kamu (namun sebenarnya tidak terlalu penting)", + "GenericWarningExceptionSubtitle": "Kami memberitahukan (namun sebenarnya tidak terlalu penting) bahwa:", "ShortcutCreationConfirmTitle": "Apakah kamu yakin ingin melanjutkan?", "ShortcutCreationConfirmSubtitle1": "Pintasan akan dibuat pada tempat ini:", @@ -1103,7 +1167,7 @@ "UACWarningDontShowAgain": "Jangan Munculkan Lagi", "EnsureExitTitle": "Keluar dari Aplikasii", - "EnsureExitSubtitle": "Ada aktivitas kritikal yang sedang berjalan di latar belakang.", + "EnsureExitSubtitle": "Ada beberapa aktivitas kritikal yang sedang berjalan di belakang.", "EnsureExitSubtitle2": "Yakin ingin keluar?", "UserFeedback_DialogTitle": "Bagikan Pendapatmu", @@ -1117,7 +1181,18 @@ "UserFeedback_SubmitBtn": "Kirim Umpan-Balikmu", "UserFeedback_SubmitBtn_Processing": "Memproses...", "UserFeedback_SubmitBtn_Completed": "Selesai!", - "UserFeedback_SubmitBtn_Cancelled": "Dibatalkan!" + "UserFeedback_SubmitBtn_Cancelled": "Dibatalkan!", + + "PluginManagerUpdateAvailableTitle": "Kamu punya {0} plugin yang siap untuk diperbarui!", + "PluginManagerUpdateAvailableSubtitle1": "Ada {0} plugin yang memiliki pembaruan. Launcher perlu direstart untuk menerapkan pembaruan untuk plugin-plugin ini:", + "PluginManagerUpdateAvailableSubtitle2": "Yakin ingin me-restart launcher sekarang?", + "PluginManagerUpdateAvailableCancelBtn": "Nanti Saja", + "PluginManagerUpdateAvailableConfirmBtn": "Restart Sekarang!", + "PluginManagerUpdateAvailableToManagerMenuBtn": "Masuk ke {0}", + + "LauncherRestartTitle": "Merestart Collapse Launcher", + "LauncherRestartSubtitle1": "Kamu akan merestart launcher ini. Pastikan untuk tutup atau batalkan aktivitas yang berjalan sebelum merestart launchermu.", + "LauncherRestartSubtitle2": "Yakin mau merestart launcher?" }, "_FileMigrationProcess": { @@ -1357,7 +1432,7 @@ "Graphics_DlssQuality": "NVIDIA DLSS", "Graphics_SelfShadow": "Bayangan Karakter di Map Eksplorasi", "Graphics_HalfResTransparent": "Transparan Setengah Resolusi", - + "Graphics_DLSS_UHP": "Performa Ultra", "Graphics_DLSS_Perf": "Performa", "Graphics_DLSS_Balanced": "Seimbang", diff --git a/Hi3Helper.Core/Lang/ja_JP.json b/Hi3Helper.Core/Lang/ja_JP.json index 689045172..c3e7e282d 100644 --- a/Hi3Helper.Core/Lang/ja_JP.json +++ b/Hi3Helper.Core/Lang/ja_JP.json @@ -87,7 +87,7 @@ "CopyClipboardBtn1": "すべてをクリップボードにコピー", "CopyClipboardBtn2": "クリップボードにコピーしました!", "GoBackPageBtn1": "前のページに戻る", - + "CustomBackground_NotFound": "カスタム背景のファイルが見つかりません!デフォルトの画像を使用します", "CustomBackground_RegionalTag": "サーバー別背景", "CustomBackground_GlobalTag": "共通背景" @@ -694,8 +694,95 @@ "Database_ValidationChecking": "設定を検証しています…", "Database_Placeholder_DbUserIdTextBox": "GUIDサンプル: ed6e8048-e3a0-4983-bd56-ad19956c701f", "Database_Placeholder_DbTokenPasswordBox": "認証トークンを入力してください", - - "SearchPlaceholder": "検索ワードを入力してください…" + + "SearchPlaceholder": "検索ワードを入力してください…", + + "HttpCache_Title": "HTTPキャッシュの設定", + "HttpCacheModeToggle": "キャッシュモード", + "HttpCacheModeToggle_Tooltip1": "CDNへHTTPリクエストを実行中にネットワークキャッシュを使用するかどうかを決定します。この設定により、特定の機能の読み込み時間が短縮される場合があります。", + "HttpCacheModeToggle_Tooltip2": "この機能を有効化すると、以下の2種類のキャッシュモードが使用されます:", + "HttpCacheModeToggle_Tooltip3": "注:", + "HttpCacheModeToggle_Tooltip4": "何らかの問題が発生したり、ランチャーが予期しない動作をした場合は、", + "HttpCacheModeToggle_Tooltip5": "ボタンを押して、キャッシュをクリアしてください。", + "HttpCacheMode_Cat1": "時間ベースキャッシング", + "HttpCacheMode_Cat2": "ETag/ハッシュベースキャッシング", + "HttpCacheAggressiveModeToggle": "アグレッシブキャッシュモード", + "HttpCacheAggressiveModeToggle_Tooltip1": "この機能を有効にすると、ランチャーは", + "HttpCacheAggressiveModeToggle_Tooltip2": "を基準にキャッシングを実行します。", + "HttpCacheAggressiveModeToggle_Tooltip3": "と", + "HttpCacheAggressiveModeToggle_Tooltip4": "は自動的に無視されます。", + "HttpCacheAggressiveModeToggle_Tooltip5": "この機能を利用するには、まず", + "HttpCacheAggressiveModeToggle_Tooltip6": "を有効にする必要があります。", + "HttpCacheMaxExpireTimeBox": "最大有効期限", + "HttpCacheMaxExpireTimeBox_TooltipDefaultValue": "10 分", + "HttpCacheMaxExpireTimeBox_Tooltip1": "レスポンスで許容する最大キャッシュ時間の長さを決定します。(分単位)", + "HttpCacheMaxExpireTimeBoxMinutes": "分", + "HttpCacheClearButton": "ネットワークキャッシュをクリア", + "HttpCacheClearedText": "キャッシュがクリアされました!", + + "Plugin_LoadedInfoTitle": "導入中のプラグイン情報", + "Plugin_OpenManagerBtn": "プラグイン管理メニューを開く", + "Plugin_AuthorBy": "({0} 制作)", + "Plugin_LoadedInfoDesc": "説明", + "Plugin_LoadedInfoPluginVer": "プラグインバージョン", + "Plugin_LoadedInfoInterfaceVer": "インターフェースバージョン", + "Plugin_LoadedInfoCreationDate": "作成日時", + "Plugin_LoadedInfoMainLibLocation": "メインライブラリの位置", + "Plugin_LoadedInfoLoadedPresets": "ローディングプリセット", + "Plugin_LoadedInfoClipboardCopied": "情報をコピーしました!", + "Plugin_PluginInfoNameUnknown": "不明", + "Plugin_PluginInfoDescUnknown": "説明文なし", + "Plugin_PluginInfoAuthorUnknown": "作者不明" + }, + + "_PluginManagerPage": { + "PageTitle": "プラグイン管理メニュー", + + "FileDialogTitle": "プラグインをインポート", + "FileDialogFileFilter1": "Collapse Launcherプラグイン", + + "LeftPanelNoPluginTitle": "プラグインが入ってないぞ!", + "LeftPanelNoPluginButton1": "クリックして", + "LeftPanelNoPluginButton2": "プラグイン一覧", + "LeftPanelNoPluginButton3": "を見に行く", + + "LeftPanelListViewTitle": "導入中のプラグイン情報", + + "ListViewMainActionButton1": "プラグインの更新を確認", + "ListViewMainActionButton1AltChecking": "プラグインの更新を確認しています…", + "ListViewMainActionButton2": "更新されたプラグインをダウンロード", + "ListViewMainActionButton3": "起動時にプラグインを自動アップデート", + + "ListViewItemContextButton1": "選択したプラグインをアンインストール", + "ListViewItemContextButton2": "選択したプラグインを復元", + "ListViewItemContextButton3": "選択したプラグインを有効化", + "ListViewItemContextButton4": "選択したプラグインを無効化", + "ListViewItemContextButton5": "選択したプラグインをアップデート", + "ListViewItemContextButton6": "選択したプラグインのフォルダーを開く", + "ListViewItemContextButton7": "Collapse Launcherプラグインのフォルダーを開く", + "ListViewItemContextButton8": "現在のプラグインをアップデート", + + "ListViewItemContentButton1": "プラグインをアンインストール", + "ListViewItemContentButton2": "プラグインを復元", + + "ListViewItemContextButtonCheckUpdateOnly": "更新の確認だけする", + "ListViewItemContextButtonCheckAndDownloadUpdate": "更新を確認してダウンロード", + "ListViewItemContextButtonDownloadUpdate": "更新をダウンロード", + + "ListViewItemUpdateStatusAvailable": "更新できます!", + "ListViewItemUpdateStatusAvailableButton": "{0}に更新", + "ListViewItemUpdateStatusAvailableButtonUpdating": "更新中…({0}%)", + "ListViewItemUpdateStatusCompleted": "プラグインが{0}に更新されました。更新を適用するために、ランチャーを再起動してください!", + "ListViewItemUpdateStatusChecking": "アップデート確認中…", + "ListViewItemUpdateStatusUpToDate": "プラグインは最新の状態です!", + + "ListViewFooterWarning1": "変更を適用するには、ランチャーを再起動してください!", + "ListViewFooterRestartButton": "ランチャーを再起動", + + "RightPanelImportTitle1": "ここに", + "RightPanelImportTitle2": "か", + "RightPanelImportTitle3": "をドラッグしてください", + "RightPanelImportTitle4": "ここをクリックしてもプラグインを読み込めますよ" }, "_Misc": { @@ -718,6 +805,7 @@ "EverythingIsOkay": "これでヨシ!", "Cancel": "キャンセル", "Close": "閉じる", + "CloseOverlay": "閉じる", "UseCurrentDir": "現在のディレクトリを使用", "UseDefaultDir": "既定のディレクトリを使用", "MoveToDifferentDir": "別のディレクトリへ移動", @@ -794,7 +882,6 @@ "CDNDescription_Cloudflare": "Cloudflare R2が提供する公式(メイン)リポジトリのミラー。", "CDNDescription_Bitbucket": "Bitbucketが提供する公式(メイン)リポジトリのミラー。", "CDNDescription_GitLab": "GitLabが提供する公式(メイン)リポジトリのミラー。", - "CDNDescription_Coding": "Codingが提供する公式(メイン)リポジトリのミラー。", "CDNDescription_CNB": "CNBが提供する公式(メイン)リポジトリのミラー。", "LocateExecutable": "プログラムを紐づけ", @@ -1096,7 +1183,27 @@ "UserFeedback_SubmitBtn": "フィードバックを送信", "UserFeedback_SubmitBtn_Processing": "送信中…", "UserFeedback_SubmitBtn_Completed": "送信完了!", - "UserFeedback_SubmitBtn_Cancelled": "キャンセルしました!" + "UserFeedback_SubmitBtn_Cancelled": "キャンセルしました!", + + "PluginManagerUpdateAvailableTitle": " {0}個のプラグインをアップデートできます!", + "PluginManagerUpdateAvailableSubtitle1": "アップデート可能なプラグインが{0}個あります。以下のプラグインの更新を適用するには、ランチャーの再起動が必要です。", + "PluginManagerUpdateAvailableSubtitle2": "ランチャーを再起動しますか?", + "PluginManagerUpdateAvailableCancelBtn": "後でやる", + "PluginManagerUpdateAvailableConfirmBtn": "今やる!", + "PluginManagerUpdateAvailableToManagerMenuBtn": "クリックして{0}", + + "LauncherRestartTitle": "Collapse Launcherを再起動", + "LauncherRestartSubtitle1": "ランチャーを再起動しようとしています。再起動前にバックグラウンドで実行中の操作が中止・キャンセルされているか確認してください。", + "LauncherRestartSubtitle2": "本当にランチャーを再起動しますか?", + + "PostInstallBehaviour_Title": "インストール/アップデート後の挙動", + "PostInstallBehaviour_Subtitle": "インストール/アップデートが完了した時、", + "PostInstallBehaviour_Subtitle2": "再起動/シャットダウンする前の待機時間", + "PostInstallBehaviour_EnumNothing": "何もしない", + "PostInstallBehaviour_EnumStartGame": "ゲームを起動", + "PostInstallBehaviour_EnumHibernate": "スリープ", + "PostInstallBehaviour_EnumRestart": "PCを再起動", + "PostInstallBehaviour_EnumShutdown": "PCをシャットダウン" }, "_FileMigrationProcess": { @@ -1336,7 +1443,7 @@ "Graphics_DlssQuality": "NVIDIA DLSS", "Graphics_SelfShadow": "マップ探索内のキャラのリアルタイムシャドウ", "Graphics_HalfResTransparent": "透明オブジェクトのハーフ解像度", - + "Graphics_DLSS_UHP": "ウルトラパフォーマンス", "Graphics_DLSS_Perf": "パフォーマンス", "Graphics_DLSS_Balanced": "バランス", diff --git a/Hi3Helper.Core/Lang/ko_KR.json b/Hi3Helper.Core/Lang/ko_KR.json index 6ef89e426..0c8e5f162 100644 --- a/Hi3Helper.Core/Lang/ko_KR.json +++ b/Hi3Helper.Core/Lang/ko_KR.json @@ -791,7 +791,6 @@ "CDNDescription_Cloudflare": "Cloudflare R2 버킷에서 호스팅되는 공식 (기본) 저장소 미러", "CDNDescription_Bitbucket": "Bitbucket에서 호스팅되는 공식 (기본) 저장소 미러", "CDNDescription_GitLab": "GitLab에서 호스팅되는 공식 (기본) 저장소 미러.", - "CDNDescription_Coding": "Coding에서 호스팅되는 공식 (기본) 저장소 미러.", "LocateExecutable": "실행 파일 지정", "OpenDownloadPage": "다운로드 페이지 열기", diff --git a/Hi3Helper.Core/Lang/pt_BR.json b/Hi3Helper.Core/Lang/pt_BR.json index fcf499224..9e38c8c48 100644 --- a/Hi3Helper.Core/Lang/pt_BR.json +++ b/Hi3Helper.Core/Lang/pt_BR.json @@ -791,7 +791,6 @@ "CDNDescription_Cloudflare": "Uma cópia do repositório oficial (principal) hospedada no serviço Cloudflare R2.", "CDNDescription_Bitbucket": "Uma cópia do repositório oficial (principal) hospedada no Bitbucket.", "CDNDescription_GitLab": "Uma cópia do repositório oficial (principal) hospedada no GitLab.", - "CDNDescription_Coding": "Uma cópia do repositório oficial (principal) hospedada no Coding.", "LocateExecutable": "Selecionar Executável", "OpenDownloadPage": "Abrir Página de Download", diff --git a/Hi3Helper.Core/Lang/pt_PT.json b/Hi3Helper.Core/Lang/pt_PT.json index e22db1224..1e9297105 100644 --- a/Hi3Helper.Core/Lang/pt_PT.json +++ b/Hi3Helper.Core/Lang/pt_PT.json @@ -674,7 +674,6 @@ "CDNDescription_Cloudflare": "Uma cópia do repositório (principal) oficial hospedado dentro de um bucket R2 da Cloudflare.", "CDNDescription_Bitbucket": "Uma cópia do repositório (principal) oficial hospedado no Bitbucket.", "CDNDescription_GitLab": "A mirror of the official (main) repository hosted in GitLab.", - "CDNDescription_Coding": "A mirror of the official (main) repository hosted in Coding.", "LocateExecutable": "Localizar executável", "OpenDownloadPage": "Abrir página de download", diff --git a/Hi3Helper.Core/Lang/ru_RU.json b/Hi3Helper.Core/Lang/ru_RU.json index 6ee058574..82a2d035f 100644 --- a/Hi3Helper.Core/Lang/ru_RU.json +++ b/Hi3Helper.Core/Lang/ru_RU.json @@ -790,7 +790,6 @@ "CDNDescription_Cloudflare": "Зеркало официального (основного) репозитория, развернутое на Cloudflare R2.", "CDNDescription_Bitbucket": "Зеркало официального (основного) репозитория, развернутое на Bitbucket.", "CDNDescription_GitLab": "Зеркало официального (основного) репозитория, размещенного в GitLab.", - "CDNDescription_Coding": "Зеркало официального (основного) репозитория, размещенного в Coding.", "LocateExecutable": "Найти исполняемый файл", "OpenDownloadPage": "Открыть страницу загрузки", diff --git a/Hi3Helper.Core/Lang/th_TH.json b/Hi3Helper.Core/Lang/th_TH.json index a504d2f60..047a0392a 100644 --- a/Hi3Helper.Core/Lang/th_TH.json +++ b/Hi3Helper.Core/Lang/th_TH.json @@ -591,7 +591,6 @@ "CDNDescription_Cloudflare": "สำเนาของคลังเก็บทางการ (หลัก) ที่ถูกโฮสต์ใน Cloudflare R2 bucket", "CDNDescription_Bitbucket": "สำเนาของคลังเก็บทางการ (หลัก) ที่ถูกโฮสต์ใน Bitbucket.", "CDNDescription_GitLab": "A mirror of the official (main) repository hosted in GitLab.", - "CDNDescription_Coding": "A mirror of the official (main) repository hosted in Coding.", "LocateExecutable": "ค้นหาไฟล์โปรแกรม", "OpenDownloadPage": "เปิดหน้าดาวน์โหลด", diff --git a/Hi3Helper.Core/Lang/uk_UA.json b/Hi3Helper.Core/Lang/uk_UA.json index 82ed91fa7..dde7106ec 100644 --- a/Hi3Helper.Core/Lang/uk_UA.json +++ b/Hi3Helper.Core/Lang/uk_UA.json @@ -791,7 +791,6 @@ "CDNDescription_Cloudflare": "Дзеркало офіційного (основного) репозиторію, опубліковане на Cloudflare R2.", "CDNDescription_Bitbucket": "Дзеркало офіційного (основного) репозиторію, опубліковане на Bitbucket.", "CDNDescription_GitLab": "Дзеркало офіційного (основного) репозиторію, розміщене на GitLab.", - "CDNDescription_Coding": "Дзеркало офіційного (основного) репозиторію, розміщене на Coding.", "LocateExecutable": "Знайти виконуваний файл", "OpenDownloadPage": "Відкрити сторінку завантаження", diff --git a/Hi3Helper.Core/Lang/vi_VN.json b/Hi3Helper.Core/Lang/vi_VN.json index 7a4a1d442..a1fa25a25 100644 --- a/Hi3Helper.Core/Lang/vi_VN.json +++ b/Hi3Helper.Core/Lang/vi_VN.json @@ -1,245 +1,245 @@ { "LanguageName": "Tiếng Việt", "LanguageID": "vi-VN", - "Author": "kleqing", + "Author": "kleqing, Studio Butter, ricecracker12", "_StartupPage": { - "SelectLang": "Chọn ngôn ngữ của bạn", - "SelectLangDesc": "Hãy chọn ngôn ngữ để vào Launcher lần đầu tiên!", - "SelectWindowSize": "Chọn kích thước cửa sổ ưa thích của bạn", - "SelectCDN": "Chọn CDN ưa thích của bạn", - "CDNHelpTitle_1": "CDN là cái gì?", - "CDNHelpTitle_2": "nhỏ cho", - "CDNHelpTitle_3": "Mạng phân phối nội dung", - "CDNHelpTitle_4": " ", - "CDNHelpDetail_1": " ", + "SelectLang": "Chọn ngôn ngữ", + "SelectLangDesc": "Chọn ngôn ngữ để bắt đầu sử dụng launcher!", + "SelectWindowSize": "Chọn kích thước cửa sổ", + "SelectCDN": "Chọn CDN", + "CDNHelpTitle_1": "CDN là gì?", + "CDNHelpTitle_2": "viết tắt của ", + "CDNHelpTitle_3": "Content Delivery Network", + "CDNHelpTitle_4": "\u200b", + "CDNHelpDetail_1": "\u200b", "CDNHelpDetail_2": "CDN", - "CDNHelpDetail_3": "là một hệ thống được sử dụng để làm cho các tệp Launcher có sẵn cho nhiều đối tượng hơn, nhanh chóng và hiệu quả.", - "CDNHelpDetail_4": "Collapse chọn GitHub làm nhà cung cấp mặc định.", + "CDNHelpDetail_3": " (mạng phân phối nội dung) là một hệ thống được sử dụng để các tệp của launcher có thể được tải bởi nhiều đối tượng hơn một cách nhanh chóng và hiệu quả.", + "CDNHelpDetail_4": "Collapse sử dụng GitHub làm bên phân phối mặc định.", "CDNsAvailable": "Những CDN có sẵn:", - "SplashArt_1": "Nghệ thuật giật gân là một tài sản của", - "SplashArt_2": "miHoYo hoặc HoYoverse", - "ChooseFolderBtn": "Vị trí thư mục", - "ChooseFolderDialogCancel": "Huỷ", - "ChooseFolderDialogPrimary": "Hãy chọn nó!", + "SplashArt_1": "Splash art là tài sản của", + "SplashArt_2": "miHoYo / HoYoverse", + "ChooseFolderBtn": "Chọn thư mục", + "ChooseFolderDialogCancel": "Hủy", + "ChooseFolderDialogPrimary": "Đồng ý", "ChooseFolderDialogSecondary": "Không, chọn thư mục", - "ChooseFolderDialogSubtitle": "Thư mục mặc định sau khi cài đặt sẽ được đặt trong:\r\n\r\n{0}\r\n\r\nBạn có muốn sử dụng thư mục này không?", - "ChooseFolderDialogTitle": "Vị trí thư mục", + "ChooseFolderDialogSubtitle": "Thư mục cài đặt mặc định có đường dẫn tại:\r\n\r\n{0}\r\n\r\nBạn có muốn sử dụng thư mục này không?", + "ChooseFolderDialogTitle": "Chọn thư mục", "FolderInsufficientPermission": "Truy cập bị từ chối! Vui lòng chọn thư mục khác.", "FolderNotSelected": "Chưa có thư mục nào được chọn. Vui lòng chọn một thư mục!", "OverlayPrepareFolderSubtitle": "Đang áp dụng các quyền truy cập...", "OverlayPrepareFolderTitle": "Đang chuẩn bị thư mục ứng dụng", "PageTitle": "Trang khởi động lần đầu", - "Pg1LoadingSubitle1": "Chúng tôi đang chuẩn bị danh sách các trò chơi được hỗ trợ cho bạn...", - "Pg1LoadingSubitle2": "trò chơi đã tải thành công! Vui lòng đợi một chút...", - "Pg1LoadingTitle1": "Đang tải danh sách trò chơi...", - "Pg1NextBtn": "Tiếp tục - Chọn trò chơi", - "Pg2ComboBox": "Chọn trò chơi", - "Pg2ComboBoxRegion": "Chọn vùng", - "Pg2NextBtn": "Đã xong! - Mở trình khởi chạy", - "Pg2PrevBtn": "Trở lại - Chọn thư mục", - "Pg2PrevBtnNew": "Quay lại - Cấu hình trình khởi chạy", - "Pg2Subtitle1_1": "Chỉ còn một bước nữa để bạn chơi trò chơi từ", - "Pg2Subtitle1_2": "trình khởi chạy Collapse.", - "Pg2Subtitle1_3": "", - "Pg2Subtitle2_1": "Chúng tôi hiện tại có một vài", + "Pg1LoadingSubitle1": "Đang tải danh sách các game được hỗ trợ...", + "Pg1LoadingSubitle2": "Thành công! Đang chuẩn bị bước tiếp theo...", + "Pg1LoadingTitle1": "Đang tải danh sách game...", + "Pg1NextBtn": "Tiếp tục - Chọn game", + "Pg2ComboBox": "Chọn game", + "Pg2ComboBoxRegion": "Chọn server", + "Pg2NextBtn": "Đã xong - Mở launcher", + "Pg2PrevBtn": "Quay lại - Chọn thư mục", + "Pg2PrevBtnNew": "Quay lại - Cấu hình launcher", + "Pg2Subtitle1_1": "Bạn đã gần như sẵn sàng để chơi game thông qua", + "Pg2Subtitle1_2": "Collapse Launcher.", + "Pg2Subtitle1_3": "\u2006", + "Pg2Subtitle2_1": "Collapse có hỗ trợ một số game của", "Pg2Subtitle2_2": "miHoYo/HoYoverse", - "Pg2Subtitle2_3": "trò chơi đã được hỗ trợ. Vui lòng chọn trò chơi mà bạn muốn dưới đây để bắt đầu sử dụng", - "Pg2Subtitle2_4": "trình khởi chạy Collapse", - "Pg2Subtitle2_5": "", - "Pg2Title": "Đến lúc rồi~", + "Pg2Subtitle2_3": ". Hãy chọn một game dưới đây để bắt đầu sử dụng", + "Pg2Subtitle2_4": "Collapse Launcher.", + "Pg2Subtitle2_5": "\u2006", + "Pg2Title": "Mọi thứ đã sẵn sàng~", "Subtitle1": "Xin chào!", - "Subtitle2": "Có vẻ đây là lần đầu bạn dùng trình khởi chạy này!", - "Subtitle3": "Cảm ơn bạn đã thử dự án này! Để hoàn thành thiết lập, bạn vui lòng chọn nơi để lưu giữ dữ liệu của trình khởi chạy Collapse", - "Subtitle4_1": "Để bắt đầu, hãy nhấn vào", - "Subtitle4_2": "\"Vị trí thư mục\"", - "Subtitle4_3": "nút dưới đây để chọn nơi bạn muốn cài đặt trò chơi.", + "Subtitle2": "Có vẻ đây là lần đầu bạn dùng launcher này!", + "Subtitle3": "Cảm ơn bạn đã tin dùng dự án này! Để hoàn thành thiết lập, vui lòng chọn nơi lưu dữ liệu của Collapse Launcher", + "Subtitle4_1": "Để bắt đầu, hãy nhấn vào nút", + "Subtitle4_2": "\"Chọn thư mục\"", + "Subtitle4_3": "dưới đây để chọn nơi bạn muốn cài đặt game.", "Title1": "Chào mừng tới", "Title2": "Collapse Launcher" }, "_DisconnectedPage": { - "PageTitle": "Trang đã bị ngắt kết nối", - "Header1": "Hiện tại bạn đã", - "Header2": "Ngắt kết nối với Internet", - "Footer1": "Vui lòng kiểm tra lại mạng của bạn và ấn", + "PageTitle": "Trang mất kết nối", + "Header1": "Bạn đã bị", + "Header2": "Mất kết nối internet", + "Footer1": "Vui lòng kiểm tra lại kết nối mạng của bạn và nhấn vào", "Footer2": "Paimon", "Footer3": "để thử lại.", - "ShowErrorBtn": "Hiển thị thông báo lỗi", - "GoToAppSettingsBtn": "Đi tới trang Cài đặt", + "ShowErrorBtn": "Hiện thông báo lỗi", + "GoToAppSettingsBtn": "Mở cài đặt launcher", "GoBackOverlayFrameBtn": "Quay lại", - "RegionChangerTitle": "Đổi Server Trò chơi", - "RegionChangerSubtitle": "Nếu bạn bị mắc kệt ở trang này" + "RegionChangerTitle": "Đổi server game", + "RegionChangerSubtitle": "Dùng trong trường hợp bạn bị kẹt tại trang này" }, "_UnhandledExceptionPage": { - "UnhandledTitle1": "Lỗi chưa thể xử lý", - "UnhandledSubtitle1": "Lỗi này chỉ xảy ra khi bạn gặp vấn đề về:", - "UnhandledTitle2": "Kết nối mạng", - "UnhandledSubtitle2": "Úi, có vẻ mạng đã bị mất kết nối với mạng hoặc sever!", - "UnhandledTitle3": "Văng trò chơi", - "UnhandledSubtitle3": "Trò chơi bị văng với các lỗi chi tiết dưới đây:", + "UnhandledTitle1": "Unhandled Error", + "UnhandledSubtitle1": "Có lỗi (Unhandled Error) đã xảy ra, chương trình trả về thông tin sau (Exception Throw):", + "UnhandledTitle2": "Lỗi đường truyền", + "UnhandledSubtitle2": "Úi, có vẻ bạn đã bị mất kết nối với internet!", + "UnhandledTitle3": "Văng game", + "UnhandledSubtitle3": "Bạn vừa bị văng game, chi tiết lỗi như sau:", "UnhandledTitle4": "Cảnh báo", - "WarningSubtitle": "Một vấn đề nhỏ đã xảy ra với các chi tiết sau:", - "UnhandledSubtitle4": "Đây không phải là vấn đề lớn, nhưng chúng tôi nghĩ rằng chúng tôi nên cho bạn biết:\r\nDo thử nghiệm A/B của miHoYo, tính năng Thu gọn không hỗ trợ đọc khóa sau: App_Settings_h2319593470.\r\nChúng tôi xin lỗi vì sự bất tiện này và cảm ơn sự thông cảm của bạn.", + "WarningSubtitle": "Có vấn đề nhỏ đã xảy ra, chi tiết như sau:", + "UnhandledSubtitle4": "Đây không phải là vấn đề quá lớn nhưng bạn vẫn nên biết:\r\nDo thử nghiệm A/B của miHoYo, tính năng Thu gọn không hỗ trợ đọc khóa sau: App_Settings_h2319593470.\r\nRất xin lỗi vì sự bất tiện này và cảm ơn sự thông cảm của bạn.", "UnhandledTitleDiskCrc": "Phát hiện lỗi ổ đĩa!", "UnhandledSubDiskCrc": "Lỗi ổ đĩa đã được phát hiện khi đang truy cập tệp. Hãy kiểm tra ổ đĩa bằng chkdsk.", - "CopyClipboardBtn1": "Sao chép tất cả vào khe nhớ tạm", - "CopyClipboardBtn2": "Đã sao chép thành công!", + "CopyClipboardBtn1": "Sao chép tất cả vào bộ nhớ tạm", + "CopyClipboardBtn2": "Sao chép thành công!", "GoBackPageBtn1": "Trở lại trang trước", - "CustomBackground_NotFound": "Tệp nền tùy chỉnh bị thiếu! Sử dụng hình ảnh mặc định", - "CustomBackground_RegionalTag": "Ảnh Nền Vùng", - "CustomBackground_GlobalTag": "Ảnh Nền Toàn Cầu" + "CustomBackground_NotFound": "Không tìm thấy tệp ảnh tùy chỉnh! Sẽ quay về dùng ảnh mặc định", + "CustomBackground_RegionalTag": "Ảnh nền server", + "CustomBackground_GlobalTag": "Ảnh nền toàn cục" }, "_MainPage": { "PageTitle": "Trang chủ", - "RegionChangeConfirm": "Sever trò chơi sẽ thay đổi. Bạn có muốn tiếp tục?", + "RegionChangeConfirm": "Server game sẽ được thay đổi. Bạn có muốn tiếp tục?", "RegionChangeConfirmBtn": "Có, hãy đổi nó!", "RegionChangeWarnTitle": "Cảnh báo:", - "RegionChangeWarnExper1": "Trò chơi hiện tại đang ở {0}.\r\nSử dụng nó sẽ tăng mức độ rủi ro cho bạn!", - "RegionLoadingTitle": "Đang tải vùng", + "RegionChangeWarnExper1": "Game hiện tại đang ở {0}.\r\nSử dụng nó sẽ tăng mức độ rủi ro cho bạn!", + "RegionLoadingTitle": "Đang tải server", "RegionLoadingAPITitle1": "Đang tải", - "RegionLoadingAPITitle2": "trình khởi chạy API", - "RegionLoadingSubtitleTimeOut": "Server đang tải {0} đã quá hạn (> {1} giây). Đang thử lại...", - "RegionLoadingSubtitleTooLong": "Lần thử lại sẽ lâu hơn dự kiến. Hãy đảm bảo rằng mạng của bạn vẫn đang kết nối ổn định!", - "NavCtrlTitleSettings": "Cài đặt trình khởi chạy", + "RegionLoadingAPITitle2": "API launcher", + "RegionLoadingSubtitleTimeOut": "Server {0} vượt quá thời gian chờ tải (> {1} giây). Đang thử lại...", + "RegionLoadingSubtitleTooLong": "Thời gian tải lâu hơn dự kiến... Hãy kiểm tra kết nối mạng của bạn!", + "NavCtrlTitleSettings": "Cài đặt launcher", "NotifNeverAsk": "Không hiển thị lại", "NotifNoNewNotifs": "Không có thông báo mới", - "NotifClearAll": "Xoá mọi thông báo", + "NotifClearAll": "Xóa mọi thông báo", "NavigationMenu": "Menu", "NavigationUtilities": "Tiện ích", - "Initializing": "Khởi động", - "LoadingLauncherMetadata": "Đang tải dữ liệu Launcher", - "LoadingGameConfiguration": "Đang tải dữ liệu thiết lập Game" + "Initializing": "Đang khởi tạo", + "LoadingLauncherMetadata": "Đang tải metadata launcher", + "LoadingGameConfiguration": "Đang tải dữ liệu thiết lập game" }, "_HomePage": { - "PageTitle": "Trình khởi chạy", - "PreloadTitle": "Tải về trước đã sẵn sàng", - "PreloadNotifTitle": "Tải trước phiên bản v{0} đã sẵn sàng!", - "PreloadNotifDeltaDetectTitle": "Gói tải trước ở định dạng bản vá tạm thờibản vá tạm thời của phiên bản v{0} đã được xác định!", - "PreloadNotifSubtitle": "Ấn \"Tải trò chơi\" để bắt đầu tải trong nền.", - "PreloadNotifDeltaDetectSubtitle": "Bạn đã thành công tải gói tài nguyên tải trước ở định dạng là bản vá tạm thời. Gói tải trước này sẽ được dùng để cập nhật trò chơi của bạn sau này.", - "PreloadNotifCompleteTitle": "Gói tải trước đã tải xong!", - "PreloadNotifCompleteSubtitle": "Bạn vừa thành công tải gói tải trước để cập nhật cho bản v{0}!", - "PreloadNotifIntegrityCheckBtn": "Đang xác minh tính toàn vẹn của gói", - "StartBtn": "Bắt đầu trò chơi", - "StartBtnRunning": "Trò chơi đang chạy!", - "VerifyingPkgTitle": "Đang xác minh gói", - "PreloadDownloadNotifbarTitle": "Đang tải gói tải trước", + "PageTitle": "Launcher", + "PreloadTitle": "Đã mở tải trước!", + "PreloadNotifTitle": "Phiên bản {0} đã mở tải trước!", + "PreloadNotifDeltaDetectTitle": "Phát hiện gói tin tải trước định dạng Delta-Patch của phiên bản {0}!", + "PreloadNotifSubtitle": "Nhấn \"Tải game\" để bắt đầu tải xuống dưới nền.", + "PreloadNotifDeltaDetectSubtitle": "Đã tải trước xong phiên bản mới trên định dạng Delta-Patch. Gói tải trước này sau đó sẽ được dùng để cập nhật game của bạn.", + "PreloadNotifCompleteTitle": "Đã tải trước xong!", + "PreloadNotifCompleteSubtitle": "Đã hoàn thành tải trước phiên bản {0}!", + "PreloadNotifIntegrityCheckBtn": "Xác minh tính hoàn chỉnh của gói tin", + "StartBtn": "Bắt đầu game", + "StartBtnRunning": "Game đang chạy!", + "VerifyingPkgTitle": "Đang xác minh gói tin", + "PreloadDownloadNotifbarTitle": "Đã tải trước xong", "PreloadDownloadNotifbarVerifyTitle": "Đang xác minh gói tải trước", "PreloadDownloadNotifbarSubtitle": "Gói bắt buộc", "UpdatingVoicePack": "Đang cập nhật gói lồng tiếng...", - "InstallBtn": "Cài đặt/Vị trí trò chơi", - "UpdateBtn": "Cập nhật trò chơi", + "InstallBtn": "Cài đặt/định vị game", + "UpdateBtn": "Cập nhật game", "PauseDownloadBtn": "Tạm dừng", "ResumeDownloadBtn": "Tiếp tục", - "PauseCancelDownloadBtn": "Tạm dừng/Huỷ", - "PauseCancelBtn": "Tạm dừng/Huỷ", - "DownloadBtn": "Tải trò chơi", + "PauseCancelDownloadBtn": "Tạm dừng/Hủy", + "PauseCancelBtn": "Tạm dừng/Hủy", + "DownloadBtn": "Tải game", "GameStatusPlaceholderComingSoonBtn": "Sắp ra mắt", - "GameStatusPlaceholderPreRegisterBtn": "Đăng Ký Trước Ngay", + "GameStatusPlaceholderPreRegisterBtn": "Đăng ký trước ngay!", - "GameSettingsBtn": "Cài đặt nhanh trò chơi", + "GameSettingsBtn": "Cài đặt nhanh", "GameSettings_Panel1": "Cài đặt nhanh", - "GameSettings_Panel1OpenGameFolder": "Mở thư mục trò chơi", + "GameSettings_Panel1OpenGameFolder": "Mở thư mục game", "GameSettings_Panel1OpenCacheFolder": "Mở thư mục cache", "GameSettings_Panel1OpenScreenshotFolder": "Mở thư mục ảnh chụp màn hình", - "GameSettings_Panel2": "Cài đặt trò chơi", - "GameSettings_Panel2RepairGame": "Sửa trò chơi", - "GameSettings_Panel2UninstallGame": "Gỡ cài đặt trò chơi", + "GameSettings_Panel2": "Cài đặt game", + "GameSettings_Panel2RepairGame": "Sửa game", + "GameSettings_Panel2UninstallGame": "Gỡ cài đặt game", "GameSettings_Panel2ConvertVersion": "Chuyển đổi phiên bản", - "GameSettings_Panel2MoveGameLocationGame": "Chuyển vị trí thư mục Game", - "GameSettings_Panel2MoveGameLocationGame_SamePath": "Không thể di chuyển trò chơi vào gốc ổ đỉa!\r\nVui lòng tạo thư mục mới và thử lại.", - "GameSettings_Panel2StopGame": "Buộc đóng trò chơi", - "GameSettings_Panel3RegionalSettings": "Cài Đặt Vùng", - "GameSettings_Panel3": "Tuỳ chọn khởi động cho trò chơi", - "GameSettings_Panel3RegionRpc": "Hiển thị Trạng thái đang chơi trên Discord", - "GameSettings_Panel3CustomBGRegion": "Đổi nền của vùng", - "GameSettings_Panel3CustomBGRegionSectionTitle": "Hình nền tùy chỉnh cho vùng", - "GameSettings_Panel4": "Toàn Cầu - Khác", - "GameSettings_Panel4ShowEventsPanel": "Hiển thị bảng sự kiện", - "GameSettings_Panel4ScaleUpEventsPanel": "Phóng to bảng Tin Tức khi rê chuột", + "GameSettings_Panel2MoveGameLocationGame": "Chuyển vị trí thư mục game", + "GameSettings_Panel2MoveGameLocationGame_SamePath": "Không thể chuyển game vào đường dẫn gốc của ổ đĩa (C:\\, D:\\)!\r\nVui lòng tạo thư mục mới và thử lại.", + "GameSettings_Panel2StopGame": "Buộc đóng game", + "GameSettings_Panel3RegionalSettings": "Cài đặt server", + "GameSettings_Panel3": "Tuỳ chọn khởi động game", + "GameSettings_Panel3RegionRpc": "Hiển thị trạng thái chơi trên Discord", + "GameSettings_Panel3CustomBGRegion": "Đổi nền của server", + "GameSettings_Panel3CustomBGRegionSectionTitle": "Hình nền tùy chỉnh server này", + "GameSettings_Panel4": "Cài đặt chung - Khác", + "GameSettings_Panel4ShowEventsPanel": "Hiển thị bảng tin tức", + "GameSettings_Panel4ScaleUpEventsPanel": "Phóng to bảng tin tức khi di chuột vào", "GameSettings_Panel4ShowSocialMediaPanel": "Hiển thị bảng mạng xã hội", "GameSettings_Panel4ShowPlaytimeButton": "Hiển thị thời gian chơi", "GameSettings_Panel4SyncPlaytimeDatabase": "Đồng bộ thời gian chơi vào cơ sở dử liệu", "GameSettings_Panel4CreateShortcutBtn": "Tạo lối tắt", "GameSettings_Panel4AddToSteamBtn": "Thêm vào Steam", - "GamePlaytime_Panel1": "Chỉnh sửa thời gian chơi", + "GamePlaytime_Panel1": "Sửa thời gian chơi", "GamePlaytime_Idle_Panel1Hours": "Giờ", "GamePlaytime_Idle_Panel1Minutes": "Phút", "GamePlaytime_Idle_ResetBtn": "Đặt lại", "GamePlaytime_Idle_ChangeBtn": "Thay đổi", "GamePlaytime_Idle_SyncDb": "Đồng bộ", - "GamePlaytime_Idle_SyncDbSyncing": "Đang Đồng Bộ", - "GamePlaytime_Running_Info1": "Tiến trình của trò chơi này hiện đang chạy, do đó không thể chỉnh sửa thời gian chơi.", + "GamePlaytime_Idle_SyncDbSyncing": "Đang đồng bộ...", + "GamePlaytime_Running_Info1": "Game này hiện có một tiến trình đang chạy, không thể sửa thời gian chơi.", "GamePlaytime_Running_Info2": "Lưu ý rằng việc đóng hoàn toàn Collapse sẽ ngừng theo dõi thời gian chơi (lưu thời gian đã chơi cho đến thời điểm đó).", "GamePlaytime_Display": "{0}h {1}m", "GamePlaytime_DateDisplay": "{0:00}/{1:00}/{2:0000} {3:00}:{4:00}", - "GamePlaytime_Stats_Title": "Thống kê thời gian Chơi", + "GamePlaytime_Stats_Title": "Thống kê thời gian chơi", "GamePlaytime_Stats_NeverPlayed": "Chưa bao giờ chơi", - "GamePlaytime_Stats_LastSession": "Lần chơi cuối cùng", - "GamePlaytime_Stats_LastSession_StartTime": "Thời gian bắt đầu", - "GamePlaytime_Stats_LastSession_Duration": "Khoảng thời gian", + "GamePlaytime_Stats_LastSession": "Lần chơi gần nhất", + "GamePlaytime_Stats_LastSession_StartTime": "Bắt đầu lúc", + "GamePlaytime_Stats_LastSession_Duration": "Chơi trong", "GamePlaytime_Stats_Daily": "Hôm nay", - "GamePlaytime_Stats_Weekly": "Tuần", - "GamePlaytime_Stats_Monthly": "Tháng", + "GamePlaytime_Stats_Weekly": "Tuần này", + "GamePlaytime_Stats_Monthly": "Tháng này", - "PostPanel_Events": "Sự kiện", - "PostPanel_Notices": "Thông báo", - "PostPanel_Info": "Thông tin", - "PostPanel_NoNews": "\nKhông có bản tin mới trong ngày hôm nay?", + "PostPanel_Events": "Sự Kiện", + "PostPanel_Notices": "Bản Tin", + "PostPanel_Info": "Thông Tin", + "PostPanel_NoNews": "Ấy?\nHôm nay không có\nthông tin gì à?", "CommunityToolsBtn": "Công cụ cộng đồng", "CommunityToolsBtn_OfficialText": "Công cụ chính thức", "CommunityToolsBtn_CommunityText": "Công cụ cộng đồng", - "CommunityToolsBtn_OpenExecutableAppDialogTitle": "Chọn chương trình có thể thực thi: {0}", + "CommunityToolsBtn_OpenExecutableAppDialogTitle": "Chọn chương trình thực thi: {0}", - "CreateShortcut_FolderPicker": "Chọn nơi để lối tắt", + "CreateShortcut_FolderPicker": "Chọn vị trí tạo lối tắt", - "Exception_DownloadTimeout1": "Hết thời gian chờ khi cố gắng cài đặt {0}", - "Exception_DownloadTimeout2": "Kiểm tra sự ổn định của Internet! Nếu tốc độ tải chặm, hãy hạ số lượng luồng tải xuống.", - "Exception_DownloadTimeout3": "**CẢNH BÁO**: Thay đổi số lượng luồng tải xuống SẼ đặt lại tiến độ tải xuống về 0 và bạn phải tự tay xóa những khối đã được tải xuống trước đó!", + "Exception_DownloadTimeout1": "Hết thời gian chờ (timeout) khi cài đặt {0}", + "Exception_DownloadTimeout2": "Hãy kiểm tra lại đường truyền mạng! Nếu tốc độ tải chặm, hãy hạ số lượng luồng tải xuống.", + "Exception_DownloadTimeout3": "**CẢNH BÁO**: Thay đổi số luồng tải xuống CHẮC CHẮN sẽ đặt lại tiến độ tải xuống về 0 và bạn phải tự xóa các chunk đã tải xong trước đó!", - "GameStateInvalid_Title": "Thư mục Trò chơi/Tên thực thi/tập tin config.ini/app.info không hợp lệ", - "GameStateInvalid_Subtitle1": "Collapse Launcher đã phát hiện thuộc tính tệp trò chơi không hợp lệ đối với khu vực:\r\n", - "GameStateInvalid_Subtitle2": "Nên thực hiện sửa lỗi để launcher có thể phát hiện trò chơi đúng cách", + "GameStateInvalid_Title": "Thư mục dữ liệu/Tên tệp thực thi/Tệp config.ini/Tệp app.info không hợp lệ", + "GameStateInvalid_Subtitle1": "Collapse Launcher đã phát hiện thuộc tính tệp game không hợp lệ với server:\r\n", + "GameStateInvalid_Subtitle2": "Khuyến nghị thực hiện sửa lỗi để launcher có thể phát hiện game đúng cách", "GameStateInvalid_Subtitle3": "Chọn \"", - "GameStateInvalid_Subtitle4": "\" để sữa thuộc tính trò chơi hoặc nhấn chọn \"", + "GameStateInvalid_Subtitle4": "\" để sửa thuộc tính game hoặc \"", "GameStateInvalid_Subtitle5": "\" để hủy quá trình này.", - "GameStateInvalidFixed_Title": "Tệp thuộc tín trò chơi đã được sữa thành công", - "GameStateInvalidFixed_Subtitle1": "Tệp thuộc tính trò chơi đã được sữa cho khu vực:", + "GameStateInvalidFixed_Title": "Sửa tệp thuộc tính game thành công", + "GameStateInvalidFixed_Subtitle1": "Tệp thuộc tính game đã được sửa cho server:", "GameStateInvalidFixed_Subtitle2": "Vui lòng thực hiện \"", - "GameStateInvalidFixed_Subtitle3": "\" trong mục \"", - "GameStateInvalidFixed_Subtitle4": "\" để đảm bảo tất cả tài nguyên được xác minh.", + "GameStateInvalidFixed_Subtitle3": "\" trong giao diện \"", + "GameStateInvalidFixed_Subtitle4": "\" để đảm bảo tất cả tài nguyên game đều hoàn chỉnh.", - "InstallFolderRootTitle": "Gốc ổ đĩa đã cung cắp!", - "InstallFolderRootSubtitle": "Không thể cài đặt trò chơi vào gốc ổ đỉa! Vui lòng tạo thư mục mới và thử lại." + "InstallFolderRootTitle": "Phát hiện đường dẫn gốc!", + "InstallFolderRootSubtitle": "Không thể cài game vào đường dẫn gốc của ổ đĩa (C:\\, D:\\)! Vui lòng tạo thư mục mới và thử lại." }, "_GameRepairPage": { - "PageTitle": "Sửa trò chơi", + "PageTitle": "Sửa game", "ListCol1": "Tên", "ListCol2": "Loại", "ListCol3": "Nguồn", "ListCol4": "Kích thước", "ListCol5": "L.CRC", "ListCol6": "R.CRC", - "Status1": "Ấn \"Kiểm tra tệp\" để xác minh tính toàn vẹn của trò chơi", - "Status2": "Đang tải mục lục...", - "Status3": "{0} tệp nào bị lỗi hoặc bị thay đổi (tổng số {1}). Ấn 'Sửa trò chơi' để bắt đầu quá trình sửa.", + "Status1": "Nhấn \"Kiểm tra nhanh\" hoặc \"Kiểm tra toàn bộ\" để kiểm tra tính hoàn chỉnh của tệp game.", + "Status2": "Đang tạo mục lục...", + "Status3": "{0} tệp có thể bị lỗi hoặc hỏng (tổng số {1}). Nhấn 'Sửa tệp' để bắt đầu quá trình sửa.", "Status4": "Không có tệp nào bị lỗi!", - "Status5": "Đang kiểm tra các khối: {0}", + "Status5": "Đang kiểm tra blk: {0}", "Status6": "Đang kiểm tra: {0}", "Status7": "Đã sửa xong!", "Status8": "Đang sửa: {0}", - "Status9": "Đang sửa các khối: {0}", - "Status10": "Đang sửa khối: {0} | Bù lại: 0x{1} - Kích thước: 0x{2}", + "Status9": "Đang sửa blk: {0}", + "Status10": "Đang sửa blk: {0} | Offset: 0x{1} - Kích cỡ: 0x{2}", "Status11": "Đang đợi quá trình sửa được bắt đầu...", "Status12": "Đang cập nhật âm thanh: {0}", "Status13": "Đang cập nhật khối: {0}", @@ -256,13 +256,13 @@ "RepairBtn1": "Sửa tệp", "RepairBtn2": "Kiểm tra tệp", "RepairBtn2Full": "Kiểm tra toàn bộ", - "RepairBtn2FullDesc": "Điều này sẽ kiểm tra tính toàn vẹn/md5, kích thước và tính khả dụng", + "RepairBtn2FullDesc": "Việc này sẽ kiểm tra tính hoàn chỉnh/md5, kích thước và tính khả dụng", "RepairBtn2Quick": "Kiểm tra nhanh", - "RepairBtn2QuickDesc": "Điều này sẽ chỉ kiểm tra kích thước và tính khả dụng của tệp. Vui lòng sử dụng \"Kiểm tra toàn bộ\" nếu bạn muốn kiểm tra tính toàn vẹn của tệp", - "OverlayNotInstalledTitle": "Bạn không thể dùng tính năng này khi trò chơi chưa được cài đặt tính năng này ở vùng của bạn hoặc trò chơi cần phải được cập nhật để sử dụng!", - "OverlayNotInstalledSubtitle": "Vui lòng tải/cập nhật trò chơi trước ở trang chính của trình khởi chạy!", - "OverlayGameRunningTitle": "Trò chơi hiện tại đang chạy!", - "OverlayGameRunningSubtitle": "Vui lòng tắt trò chơi trước để sử dụng tính năng này!" + "RepairBtn2QuickDesc": "Việc này sẽ chỉ kiểm tra kích thước và tính khả dụng của tệp. Vui lòng sử dụng \"Kiểm tra toàn bộ\" nếu bạn muốn kiểm tra tính hoàn thiện của tệp", + "OverlayNotInstalledTitle": "Bạn không thể dùng tính năng này tại server đang chọn do chưa cài đặt hoặc cần cập nhật!", + "OverlayNotInstalledSubtitle": "Vui lòng tải/cập nhật game trước ở trang khởi động game tương ứng!", + "OverlayGameRunningTitle": "Game vẫn đang chạy!", + "OverlayGameRunningSubtitle": "Đóng game để sử dụng tính năng này!" }, "_CachesPage": { @@ -274,44 +274,44 @@ "ListCol5": "L.CRC", "ListCol6": "R.CRC", "ListCol7": "Tình trạng", - "Status1": "Ấn \"Kiểm tra cập nhật\" để cập nhật cache", - "Status2": "Cố gắng xác định tính khả dụng của cache \"{0}\": {1}", + "Status1": "Nhấn \"Kiểm tra nhanh\" hoặc \"Kiểm tra toàn bộ\" để kiểm tra cập nhật cache", + "Status2": "Đang xác định tính khả dụng của cache \"{0}\": {1}", "CachesStatusHeader1": "Tổng tiến trình", - "CachesStatusCancelled": "Đã huỷ tác vụ!", + "CachesStatusCancelled": "Đã hủy tác vụ!", "CachesStatusFetchingType": "Đang tìm kiếm loại cache: {0}", - "CachesStatusNeedUpdate": "{0} tệp Cache (trong tổng số {1}) có thể cập nhật. Ấn \"Cập nhật cache\" để bắt đầu.", - "CachesStatusUpToDate": "Cache đã được cập nhật!", + "CachesStatusNeedUpdate": "{0} tệp cache (tổng số {1}) có thể được cập nhật. Nhấn \"Cập nhật cache\" để bắt đầu.", + "CachesStatusUpToDate": "Cache đang ở bản mới nhất!", "CachesStatusChecking": "Đang kiểm tra {0}: {1}", "CachesTotalStatusNone": "Không", - "CachesTotalStatusChecking": "Đang truy cập: {0}/{1}", + "CachesTotalStatusChecking": "Đang xử lý: {0}/{1}", "CachesBtn1": "Cập nhật cache", - "CachesBtn2": "Kiểm tra cập nhật", + "CachesBtn2": "Kiểm tra nhanh", "CachesBtn2Full": "Kiểm tra toàn bộ", - "CachesBtn2FullDesc": "Điều này sẽ kiểm tra tính toàn vẹn/md5, kích thước và tính khả dụng", + "CachesBtn2FullDesc": "Việc này sẽ kiểm tra tính hoàn chỉnh/md5, kích thước và tính khả dụng của cache.", "CachesBtn2Quick": "Kiểm tra nhanh", - "CachesBtn2QuickDesc": "Điều này sẽ chỉ kiểm tra kích thước và tính khả dụng của tệp. Vui lòng sử dụng \"Kiểm tra toàn bộ\" nếu bạn muốn kiểm tra tính toàn vẹn của cache", - "OverlayNotInstalledTitle": "Bạn không thể dùng tính năng này khi trò chơi chưa được cài đặt tính năng này ở vùng của bạn hoặc trò chơi cần phải được cập nhật để sử dụng!", - "OverlayNotInstalledSubtitle": "Vui lòng tải/cập nhật trò chơi trước ở trang chính của trình khởi chạy!", - "OverlayGameRunningTitle": "Trò chơi hiện tại đang chạy!", - "OverlayGameRunningSubtitle": "Vui lòng tắt trò chơi trước để sử dụng tính năng này!" + "CachesBtn2QuickDesc": "Việc này sẽ chỉ kiểm tra kích thước và tính khả dụng của tệp. Vui lòng sử dụng \"Kiểm tra toàn bộ\" nếu bạn muốn kiểm tra tính hoàn chỉnh của cache", + "OverlayNotInstalledTitle": "Bạn không thể dùng tính năng này tại server đang chọn do chưa cài đặt hoặc cần cập nhật!", + "OverlayNotInstalledSubtitle": "Vui lòng tải/cập nhật game trước ở trang khởi động game tương ứng!", + "OverlayGameRunningTitle": "Game vẫn đang chạy!", + "OverlayGameRunningSubtitle": "Đóng game để sử dụng tính năng này!" }, "_CutscenesPage": { - "PageTitle": "Cutscenes" + "PageTitle": "CG" }, "_GameSettingsPage": { - "PageTitle": "Cài đặt trò chơi", + "PageTitle": "Cài đặt game", - "Graphics_Title": "Đồ hoạ", + "Graphics_Title": "Cài đặt đồ họa", "Graphics_ResolutionPanel": "Độ phân giải", - "Graphics_Borderless": "Sử dụng chế độ cửa sổ không viền", + "Graphics_Borderless": "Dùng chế độ cửa sổ không viền", "Graphics_Fullscreen": "Toàn màn hình", - "Graphics_ExclusiveFullscreen": "Toàn màn hình với độ phân giải đã chọn", - "Graphics_ResizableWindow": "Sử dụng cửa sổ có thể thay đổi kích thước", - "Graphics_ResizableWindowTooltip": "Cài đặt này có thể sử dụng khi Chế độ Toàn màn hình tắt", + "Graphics_ExclusiveFullscreen": "Dùng chế độ toàn màn hình \"thật\"", + "Graphics_ResizableWindow": "Dùng cửa sổ resizeable", + "Graphics_ResizableWindowTooltip": "Độ phân giải linh động (chỉnh bằng chuột), chỉ có thể bật khi không sử dụng toàn màn hình", "Graphics_ResSelectPlaceholder": "Chọn", - "Graphics_ResCustom": "Chọn độ phân giải khác", + "Graphics_ResCustom": "Dùng độ phân giải tùy chỉnh", "Graphics_ResCustomW": "W", "Graphics_ResCustomH": "H", "Graphics_ResPrefixFullscreen": "{0}x{1} Toàn Màn Hình", @@ -323,20 +323,20 @@ "Graphics_FPSUnlimited": "Không Giới Hạn", "Graphics_FPSPanel": "FPS tối đa", "Graphics_FPSInCombat": "Chiến đấu", - "Graphics_FPSInMenu": "Khác", + "Graphics_FPSInMenu": "Menu", - "Graphics_APIPanel": "Đồ hoạ API", - "Graphics_APIHelp1": "Một vài API đang hỗ trợ trò chơi này, bao gồm:", + "Graphics_APIPanel": "API đồ họa", + "Graphics_APIHelp1": "Game này hỗ trợ một số API, bao gồm:", "Graphics_APIHelp2": "Lưu ý:", - "Graphics_APIHelp3": "Sử dụng DirectX 12 có thể gây văng trò chơi bởi vì trò chơi chưa tương thích với DirectX 12 API", + "Graphics_APIHelp3": "Sử dụng DirectX 12 có thể gây văng game do game chưa tương thích với API DirectX 12", "Graphics_SpecPanel": "Đồ hoạ chung", "Graphics_Preset": "Preset đồ hoạ", "Graphics_Render": "Độ sắc nét", "Graphics_Shadow": "Chất lượng bóng", - "Graphics_Reflection": "Hiệu quả phản xạ", + "Graphics_Reflection": "Chất lượng phản xạ", "Graphics_FX": "Hiệu ứng hình ảnh", - "Graphics_FXPost": "Xử lý hậu kỳ.", + "Graphics_FXPost": "Xử lý hậu kỳ", "Graphics_FXPhysics": "Mô phỏng vật lý", "Graphics_FXHDR": "HDR", "Graphics_FXHQ": "Chất lượng cao", @@ -356,8 +356,8 @@ "Graphics_CharacterQuality": "Chất lượng nhân vật", "Graphics_WeatherQuality": "Chất lượng thời tiết", - "Graphics_Legacy_Title": "Cài đặt Di sản", - "Graphics_Legacy_Subtitle": "Các cài đặt này không có trong trò chơi và có thể không có bất kỳ tác động nào.", + "Graphics_Legacy_Title": "Cài đặt cũ", + "Graphics_Legacy_Subtitle": "Các cài đặt này không có trong game và có thể sẽ không tạo ra bất kỳ khác biệt nào.", "SpecDisabled": "Tắt", "SpecCustom": "Tuỳ chọn", @@ -371,336 +371,425 @@ "SpecGlobal": "Toàn Cục", "Audio_Title": "Cài đặt âm thanh", - "Audio_Master": "Âm lượng chính", + "Audio_Master": "Âm lượng tổng", "Audio_BGM": "Nhạc nền", - "Audio_SFX": "Hiệu ứng âm thanh", + "Audio_SFX": "Hiệu ứng", "Audio_VOLang": "Ngôn ngữ lồng tiếng", "Audio_VOLang1": "CN (PRC)", "Audio_VOLang2": "JP", "Audio_VODefault": " [Mặc định]", - "Audio_VO": "Âm thanh lồng tiếng nhân vật", - "Audio_Elf": "Âm thanh lồng tiếng ELF", - "Audio_Cutscenes": "Âm thanh cutscenes", + "Audio_VO": "Âm thanh nhân vật", + "Audio_Elf": "Âm thanh ELF", + "Audio_Cutscenes": "Âm thanh CG", "Audio_Mute": "Tắt âm thanh", "ApplyBtn": "Áp dụng", "SettingsApplied": "Đã lưu thay đổi!", - "SettingsRegExported": "Registry đã được xuất ra!", - "SettingsRegExportTitle": "Lưu tệp registry của Collapse tới...", - "SettingsRegImported": "Registry đã được nhập vào! (Khởi động lại trình khởi động là yêu cầu cần thiết để áp dụng các thay đổi)", - "SettingsRegImportTitle": "Chọn tệp registry của Collapse...", - "SettingsRegErr1": "Tệp chưa được chọn.", - "SettingsRegErr2": "Phần đầu của tệp registry của Collapse không hợp lệ!", + "SettingsRegExported": "Đã xuất registry!", + "SettingsRegExportTitle": "Lưu tệp registry Collapse tới...", + "SettingsRegImported": "Đã nhập registry! (Khởi động lại launcher để áp dụng thay đổi)", + "SettingsRegImportTitle": "Chọn tệp registry Collapse...", + "SettingsRegErr1": "Chưa chọn tệp nào.", + "SettingsRegErr2": "Phần đầu của tệp registry Collapse không hợp lệ!", "RegImportExport": "Nhập/xuất registry", - "RegExportTitle": "Xuất ra", - "RegExportTooltip": "Xuất giá trị registry tới tệp registry của Collapse", - "RegImportTitle": "Nhập vào", - "RegImportTooltip": "Nhập giá trị registry tới tệp registry của Collapse", - - "OverlayNotInstalledTitle": "Bạn không thể sử dụng tính năng này vì vùng của bạn chưa được cài đặt tính năng này hoặc chưa được cập nhật!", - "OverlayNotInstalledSubtitle": "Vui lòng tải/cập nhật trò chơi trước tại trang đầu tiên của trình khởi chạy!", - "OverlayGameRunningTitle": "Trò chơi hiện tại đang chạy!", - "OverlayGameRunningSubtitle": "Vui lòng tắt trò chơi trước để sử dụng tính năng này!", - "OverlayFirstTimeTitle": "Bạn chưa từng chơi trò chơi này trước đó!", - "OverlayFirstTimeSubtitle": "Vui lòng chạy trò chơi trước để trò chơi tạo các tệp cần thiết, sau đó hãy quay lại đây để sử dụng tính năng này.", - - "CustomArgs_Title": "Cấu hình tham số khởi động (Nâng cao)", + "RegExportTitle": "Xuất", + "RegExportTooltip": "Xuất khóa registry ra một tệp registry Collapse", + "RegImportTitle": "Nhập", + "RegImportTooltip": "Nhập khóa registry từ một tệp registry Collapse", + + "OverlayNotInstalledTitle": "Bạn không thể dùng tính năng này tại server đang chọn do chưa cài đặt hoặc cần cập nhật!", + "OverlayNotInstalledSubtitle": "Vui lòng tải/cập nhật game trước ở trang khởi động game tương ứng!", + "OverlayGameRunningTitle": "Game vẫn đang chạy!", + "OverlayGameRunningSubtitle": "Đóng game để sử dụng tính năng này!", + "OverlayFirstTimeTitle": "Bạn chưa từng chơi game này!", + "OverlayFirstTimeSubtitle": "Vui lòng chạy game trước để hệ thống tạo các tệp cần thiết cho tính năng này.", + + "CustomArgs_Title": "Tùy chọn khởi động (nâng cao)", "CustomArgs_Subtitle": "Tham số khởi động", - "CustomArgs_Footer1": "Về các tham số khởi động, vui lòng xem tại", - "CustomArgs_Footer2": "Unity Standalone Command-line documentation", - "CustomArgs_Footer3": "để biết thêm chi tiết.", - - "GameBoost": "Tăng mức độ ưu tiên của trò chơi", - "MobileLayout": "Sử dụng Layout Cảm Ứng", - - "Advanced_Title": "Cài đặt Nâng cao", - "Advanced_Subtitle1": "Collapse Launcher Team", - "Advanced_Subtitle2": "KHÔNG CHỊU TRÁCH NHIỆM", - "Advanced_Subtitle3": "cho bất kỳ điều gì xảy đến với trò chơi, tài khoản hay hệ thống của bạn khi sử dụng thiết đặt này! Cân nhắc khi sử dụng.", - "Advanced_GLC_WarningAdmin": "CẢNH BÁO: Lệnh được điền vào sẽ được chạy với quyền quản trị!", - "Advanced_GLC_PreLaunch_Title": "Lệnh trước khi khởi động", - "Advanced_GLC_PreLaunch_Subtitle": "Các lệnh được chạy trước khi trò chơi khởi động", - "Advanced_GLC_PreLaunch_Exit": "Buộc đóng tiến trình đã chạy khi trò chơi bị đóng/dừng lại", - "Advanced_GLC_PreLaunch_Delay": "Trì hoãn mở trò chơi (ms)", - "Advanced_GLC_PostExit_Title": "Lệnh sau khi thoát", - "Advanced_GLC_PostExit_Subtitle": "Các lệnh được chạy sau khi trò chơi bị đóng" + "CustomArgs_Footer1": "Để biết thêm thông tin về tham số khởi động, truy cập trang", + "CustomArgs_Footer2": "tài liệu dòng lệnh của Unity Standalone Player", + "CustomArgs_Footer3": "để tìm hiểu thêm.", + + "GameBoost": "Tăng mức độ ưu tiên của game", + "MobileLayout": "Sử dụng layout cảm ứng", + + "Advanced_Title": "Cài đặt nâng cao", + "Advanced_Subtitle1": "Đội ngũ Collapse Launcher", + "Advanced_Subtitle2": "SẼ KHÔNG CHỊU TRÁCH NHIỆM", + "Advanced_Subtitle3": "cho bất kỳ điều gì xảy ra đến game, tài khoản hay hệ thống của bạn khi sử dụng thiết lập này! Cân nhắc trước khi sử dụng.", + "Advanced_GLC_WarningAdmin": "LƯU Ý: Lệnh được nhập vào sẽ chạy bằng quyển admin!", + "Advanced_GLC_PreLaunch_Title": "Lệnh chạy trước khi mở game", + "Advanced_GLC_PreLaunch_Subtitle": "Thực thi các lệnh dưới đây trước khi mở game", + "Advanced_GLC_PreLaunch_Exit": "Buộc đóng tiến trình đã chạy khi game bị đóng/dừng", + "Advanced_GLC_PreLaunch_Delay": "Trì hoãn mở game (ms)", + "Advanced_GLC_PostExit_Title": "Lệnh chạy sau khi thoát game", + "Advanced_GLC_PostExit_Subtitle": "Thực thi các lệnh dưới đây sau khi đóng game" }, "_SettingsPage": { - "PageTitle": "Cài đặt trình khởi chạy", + "PageTitle": "Cài đặt launcher", "Debug": "Cài đặt bổ sung", - "Debug_Console": "Hiển thị console (cmd)", - "Debug_IncludeGameLogs": "Lưu nhật ký trò chơi vào Collapse (có thể chứa dữ liệu nhạy cảm)", + "Debug_Console": "Hiển thị console", + "Debug_IncludeGameLogs": "Lưu nhật ký game vào Collapse (có thể chứa dữ liệu nhạy cảm)", "Debug_SendRemoteCrashData": "Gửi báo cáo sự cố ẩn danh cho nhà phát triển", - "Debug_SendRemoteCrashData_EnvVarDisablement": "Cài đặt này bị tắt do biến môi trường 'DISABLE_SENTRY' được đặt thành true.", - "Debug_MultipleInstance": "Cho phép chạy nhiều phiên bản Collapse", + "Debug_SendRemoteCrashData_EnvVarDisablement": "Cài đặt này bị tắt do biến môi trường (environment variable) 'DISABLE_SENTRY' đang là true.", + "Debug_MultipleInstance": "Cho phép chạy nhiều tiến trình Collapse", + "Debug_CustomDialogBtn": "[DBG] Hiển thị hộp thoại tùy chỉnh", - "ChangeRegionWarning_Toggle": "Hiển thị thông báo thay đổi vùng", - "ChangeRegionInstant_Toggle": "Thay đổi vùng được chọn ngay lập tức", - "ChangeRegionWarning_Warning": "*Bạn cần phải khởi động lại ứng dụng để áp dụng cài đặt này.", + "ChangeRegionWarning_Toggle": "Hiện cảnh báo khi đổi server", + "ChangeRegionInstant_Toggle": "Lập tức đổi server sau khi chọn", + "ChangeRegionWarning_Warning": "*Bạn cần khởi động lại launcher để áp dụng thay đổi.", "Language": "Ngôn ngữ", "LanguageEntry": "{0} bởi {1}", - "AppLang_ApplyNeedRestart": "*Bạn phải khởi động lại trình khởi chạy để thay đổi ngôn ngữ.", + "AppLang_ApplyNeedRestart": "*Bạn cần khởi động lại launcher để áp dụng thay đổi.", - "AppThemes": "Giao diện trình khởi chạy", + "AppThemes": "Giao diện launcher", "AppThemes_Default": "Mặc định (Theo hệ thống)", "AppThemes_Light": "Sáng", "AppThemes_Dark": "Tối", - "AppThemes_ApplyNeedRestart": "*Bạn phải khởi động lại trình khởi chạy để thay đổi giao diện.", + "AppThemes_ApplyNeedRestart": "*Bạn cần khởi động lại launcher để áp dụng thay đổi.", - "IntroSequenceToggle": "Sử dụng hoạt ảnh giới thiệu", + "IntroSequenceToggle": "Bật hoạt ảnh bắt đầu", "AppWindowSize": "Kích thước cửa sổ", "AppWindowSize_Normal": "Bình thường", "AppWindowSize_Small": "Nhỏ", - "AppCDNRepository": "Kho lưu trữ CDN", + "AppCDNRepository": "CDN sử dụng", "AppBG": "Hình nền", - "AppBG_Checkbox": "Dùng hình nền tuỳ chọn", + "AppBG_Checkbox": "Dùng hình nền tùy chỉnh", "AppBG_Note": "Định dạng được chấp nhận:\r\nẢnh: {0}\r\nVideo: {1}", - "AppBG_Note_Regional": "Cài đặt hình nền tuy chọn cho từng vùng nằm trong nút \"Cài đặt nhanh\" ở trang chủ", + "AppBG_Note_Regional": "Chỉnh hình nền riêng cho từng server thông qua nút \"Cài đặt nhanh\" ở trang chủ.", - "AppThreads": "Tải về", - "AppThreads_Download": "Số lượng tải về", - "AppThreads_Extract": "Số lượng giải nén", - "AppThreads_Help1": "Tuỳ chọn này sẽ chọn số lượng tệp mà trình khởi chạy sẽ tải về. Cách thức của nó giống IDM hoặc Parallel download trên chrome", + "AppThreads": "Số luồng sử dụng", + "AppThreads_Download": "Số luồng tải xuống", + "AppThreads_Extract": "Số luồng giải nén", + "AppThreads_Help1": "Luồng này sẽ xủ lý việc chia luồng tải xuống thành nhiều chunk nhỏ. Cách thức này tương tự với cách Parallel download trên Chrome và IDM hoạt động.", "AppThreads_Help2": "Giá trị mặc định:", - "AppThreads_Help3": "Khoảng giá trị:", + "AppThreads_Help3": "Khoảng có thể chọn:", "AppThreads_Help4": "0 (Tự động)", - "AppThreads_Help5": "Tuỳ chọn này sẽ giới hạn số tệp để giải nén/xác thực tài nguyên khi tải/sửa tài nguyên trò chơi.", - "AppThreads_Help6": "Lưu ý: Tuỳ chọn này không có tác dụng với Honkai Impact 3rd.", + "AppThreads_Help5": "Tuỳ chọn này sẽ giới hạn số tệp để giải nén/xác thực tài nguyên khi tải/sửa tài nguyên game.", + "AppThreads_Help6": "Lưu ý: Thiết lập này không còn áp dụng được cho Honkai Impact 3rd nữa.", "SophonSettingsTitle": "Cài đặt chế độ Sophon", "SophonHelp_Title": "Chế độ tải Sophon là gì?", - "SophonHelp_1": "\"Sophon\" là một cơ chế tải xuống mới được giới thiệu bởi HoYoVerse gần đây và cho phép các tệp được tải xuống thành những \"khối dữ liệu nhỏ\" thay vì phải tải xuống một file ZIP lớn. Lợi ích chủ yêu là yêu cầu dung lượng đỉa thắp hơn và tăng hiệu quả khi tải xuống và cặp nhật. ", - "SophonHelp_2": "Cách này có thể chặm hơn đối với ai dùng ổ cứng HDD cho game.", - "SophonHelp_IndicatorTitle": "Biểu tượng chỉ bảo", + "SophonHelp_1": "\"Sophon\" là một cơ chế tải xuống mới được HoYoverse sử dụng, cho phép tải dữ liệu xuống thành những \"chunk\" (khối dữ liệu nhỏ) thay vì phải tải xuống một tệp ZIP lớn. Lợi ích chính của cơ chế này là dung lượng yêu cầu thấp hơn và hiệu suất tải xuống/cập nhật tăng cao. ", + "SophonHelp_2": "Đối với những người lưu game vào ổ HDD, cách này có thể khiến việc cập nhật/tải xuống lâu hơn.", + "SophonHelp_IndicatorTitle": "Giải thích ký hiệu", "SophonHelp_Indicator1": "Dung lượng tệp cần ghi lên ổ đĩa", - "SophonHelp_Indicator2": "Dung lượng tệp cần phải tải xuống", - "SophonHelp_Indicator3": "Tốc độ Đọc/Ghi dữ liệu vào ổ đĩa", - "SophonHelp_Indicator4": "Tốc độ Đọc/Ghi dữ liệu qua mạng", - "SophonHelp_Thread": "Cài đặt này điều chỉnh số lượng các khối dữ liệu nhỏ mà Collapse có thể tải xuống cùng một lúc. Hạ thấp giá trị này nếu Collapse bị kẹt trong lúc tải game.", + "SophonHelp_Indicator2": "Dung lượng tệp cần tải xuống", + "SophonHelp_Indicator3": "Tốc độ đọc/ghi dữ liệu vào ổ đĩa", + "SophonHelp_Indicator4": "Tốc độ đọc/ghi dữ liệu qua mạng", + "SophonHelp_Thread": "Cài đặt này điều chỉnh số lượng chunk mà Collapse có thể tải xuống cùng một lúc. Hạ giá trị xuống nếu Collapse bị kẹt trong lúc tải game.", "SophonHttpNumberBox": "Số lượng kết nối HTTP tối đa", - "SophonHelp_Http": "Tùy chọn này kiểm soát số lượng kết nối được thiết lập bởi Collapse tới máy chủ cặp nhật của HoYoVerse để có thể tải những khối dữ liệu nhỏ.", - "SophonToggle": "Kích hoạt Sophon cho những vùng hỗ trợ", - "SophonPredownPerfMode_Toggle": "[THỬ NGHIỆM] Sử dụng tất cả nhân CPU khi áp dụng Cài đặt Trước", - "SophonPredownPerfMode_Tooltip": "Kích hoạt tính năng này sẽ dùng tất cả luồng CPU có trong hệ thống. Vô hiệu hóa tính năng này nếu có vấn đề", + "SophonHelp_Http": "Thiết lập này kiểm soát số lượng kết nối được thiết lập bởi Collapse để tải các chunk.", + "SophonToggle": "Sử dụng Sophon trên server hỗ trợ", + "SophonPredownPerfMode_Toggle": "[THỬ NGHIỆM] Sử dụng tất cả nhân CPU khi cập nhật bằng gói tải trước", + "SophonPredownPerfMode_Tooltip": "Bật tính năng này để dùng tất cả luồng CPU có sẵn có trong hệ thống. Ngừng sử dụng nếu bạn gặp phải vấn đề", "AppThreads_Attention": "Chú ý", "AppThreads_Attention1": "Trước khi bạn thay đổi giá trị", - "AppThreads_Attention2": ", vui lòng nhớ", + "AppThreads_Attention2": ", hãy cân nhắc", "AppThreads_Attention3": "KHÔNG THAY ĐỔI", - "AppThreads_Attention4": "giá trị nếu bạn đang tải xuống vì nó có thể", - "AppThreads_Attention5": "TẢI LẠI TẤT CẢ", - "AppThreads_Attention6": "do số đếm tiến trình yêu cầu cho bản tải về không khớp nhau.", - "AppThreads_AttentionTop1": "Những vấn đề này sẽ không xẩy ra nếu bạn bật", - "AppThreads_AttentionTop2": "cài đặt này.", + "AppThreads_Attention4": "giá trị này nếu bạn đang có tiến trình tải xuống vì có thể launcher sẽ", + "AppThreads_Attention5": "TẢI LẠI TOÀN BỘ TỆP", + "AppThreads_Attention6": "do số phiên truy cập (session count) cần để tải tệp không khớp.", + "AppThreads_AttentionTop1": "Vấn đê dưới đây sẽ không xuất hiện nếu bạn có bật tính năng", + "AppThreads_AttentionTop2": ".", "DiscordRPC": "Discord Rich Presence", - "DiscordRPC_Toggle": "Hiện Trạng Thái Chi Tiết trên Discord", - "DiscordRPC_GameStatusToggle": "Hiện trò chơi hiện tại trên trạng thái của Discord", - "DiscordRPC_IdleStatusToggle": "Hiện RPC khi ở trạng thái chờ", + "DiscordRPC_Toggle": "Hiện trạng thái trên Discord", + "DiscordRPC_GameStatusToggle": "Hiện game hiện tại trên trạng thái của Discord", + "DiscordRPC_IdleStatusToggle": "Hiện RPC khi không làm gì", "ImageBackground": "Cài đặt ảnh nền", - "VideoBackground": "Cài đặt video", + "VideoBackground": "Cài đặt video nền", "VideoBackground_IsEnableAudio": "Bật âm thanh", - "VideoBackground_IsEnableAcrylicBackground": "Sử dụng hiệu ứng Acrylic khi sử dụng Video nền", + "VideoBackground_IsEnableAcrylicBackground": "Bật hiệu ứng acrylic khi dùng video nền", "VideoBackground_AudioVolume": "Âm lượng", "Update": "Cập nhật", "Update_CurVer": "Phiên bản hiện tại:", "Update_CheckBtn": "Kiểm tra cập nhật", - "Update_ForceBtn": "Cập nhật ngay", + "Update_ForceBtn": "Buộc cập nhật", "Update_NewVer1": "Cập nhật", "Update_NewVer2": "đã có sẵn!", "Update_LatestVer": "Bạn đang sử dụng phiên bản mới nhất.", - "Update_SeeChangelog": "Xem những thay đổi mới (EN)", + "Update_SeeChangelog": "Xem thay đổi mới (bài tiếng Anh)", "Update_ChangelogTitle": "Những thay đổi mới", - "AppFiles": "Quản lí tệp ứng dụng", + "AppFiles": "Quản lý tệp launcher", "AppFiles_OpenDataFolderBtn": "Mở thư mục dữ liệu ứng dụng", - "AppFiles_RelocateDataFolderBtn": "Chọn lại đường dẫn thư mục dữ liệu ứng dụng", - "AppFiles_ClearLogBtn": "Xoá tệp log", - "AppFiles_ClearImgCachesBtn": "Xoá tệp ảnh đĩa", + "AppFiles_RelocateDataFolderBtn": "Chọn lại thư mục dữ liệu ứng dụng", + "AppFiles_ClearLogBtn": "Xoá hết tệp nhật trình", + "AppFiles_ClearImgCachesBtn": "Xoá hết tệp ảnh", - "AppFiles_ClearMetadataBtn": "Xóa Metadata và Khởi động lại", - "AppFiles_ClearMetadataDialog": "Xóa Metadata Collapse!", - "AppFiles_ClearMetadataDialogHelp": "Xóa Collapse metadata sẽ khiến Collapse buộc phải khởi động lại. Chỉ sử dụng tùy chọn này nếu bạn gặp sự cố khi thay đổi khu vực.\r\nBạn có chắc không?", + "AppFiles_ClearMetadataBtn": "Xóa metadata và khởi động lại", + "AppFiles_ClearMetadataDialog": "Đang xóa metadata Collapse!", + "AppFiles_ClearMetadataDialogHelp": "Xóa metadata Collapse sẽ khiến Collapse buộc phải khởi động lại. Chỉ sử dụng tùy chọn này nếu bạn gặp sự cố khi tải server.\r\nBạn có chắc không?", - "ReportIssueBtn": "Báo lỗi", - "ContributePRBtn": "Đóng góp", + "ReportIssueBtn": "Báo cáo vấn đề", + "ContributePRBtn": "Đóng góp cho mã nguồn", "ContributorListBtn": "Người đóng góp mã nguồn mở", - "HelpLocalizeBtn": "Giúp Chúng Tôi Dịch Collapse!", + "HelpLocalizeBtn": "Giúp chúng tôi dịch Collapse!", "ShareYourFeedbackBtn": "Chia sẻ phản hồi của bạn", "About": "Về chúng tôi", "About_Copyright1": "© 2022-2025", - "About_Copyright2": "neon-nyan, Cry0, bagusnl,\r\nshatyuka & gablm", - "About_Copyright3": "Được dùng bởi bản quyền của", - "About_Copyright4": ". Đã đăng ký Bản quyền.", + "About_Copyright2": " neon-nyan, Cry0, bagusnl,\r\n shatyuka & gablm", + "About_Copyright3": "Tuân theo", + "About_Copyright4": ". Bảo lưu mọi quyền.", - "LicenseType": "Giấy phép MIT", + "LicenseType": "giấy phép MIT", - "Disclaimer": "Trách nhiệm và pháp lí", - "Disclaimer1": "trình khởi chạy này không thuộc về", - "Disclaimer2": "với bất kì điều nào", - "Disclaimer3": "và hoàn toàn là mã nguồn mở. Chúng tôi luôn vui lòng với bất kì sự đóng góp nào đến từ bạn.", + "Disclaimer": "Trách nhiệm và pháp lý", + "Disclaimer1": "Launcher này không liên kết với", + "Disclaimer2": "qua bất kỳ hình thức nào", + "Disclaimer3": "và hoàn toàn là dự án mã nguồn mở. Chúng tôi luôn hoan nghênh bất kỳ sự đóng góp nào đến từ bạn.", "WebsiteBtn": "Truy cập trang web của chúng tôi", - "DiscordBtn1": "Tham gia Armada Discord của chúng tôi", - "DiscordBtn2": "Xem qua Discord Honkai Impact 3rd", - "DiscordBtn3": "Discord Chính thức của Collapse!", + "DiscordBtn1": "Tham gia Discord hải quân của chúng tôi", + "DiscordBtn2": "Discord của Honkai Impact 3rd", + "DiscordBtn3": "Discord chính thức của Collapse!", - "AppChangeReleaseChannel": "Thay đổi tới {0} kênh phát hành", + "AppChangeReleaseChannel": "Thay đổi sang kênh phát hành {0}", - "EnableAcrylicEffect": "Dùng hiệu ứng làm mờ", - "EnableDownloadChunksMerging": "Gộp các gói đã tải xuống", - "Enforce7ZipExtract": "Luôn sử dụng 7-zip cho cài đặt trò chơi/cặp nhật", + "EnableAcrylicEffect": "Dùng hiệu ứng làm mờ acrylic", + "EnableDownloadChunksMerging": "Gộp các chunk đã tải xuống", + "Enforce7ZipExtract": "Luôn dùng 7-zip khi cài đặt/cập nhật game", "UseExternalBrowser": "Luôn dùng trình duyệt bên ngoài", - "LowerCollapsePrioOnGameLaunch": "Giảm mức sử dụng tài nguyên sử dụng của Collapse khi trò chơi được khởi động", - "LowerCollapsePrioOnGameLaunch_Tooltip": "Vô hiệu hóa Carousel trong trang chính và giảm mức độ ưu tiên của Collapse xuống Dưới mức bình thường", + "LowerCollapsePrioOnGameLaunch": "Giảm mức sử dụng tài nguyên của Collapse khi game được khởi động", + "LowerCollapsePrioOnGameLaunch_Tooltip": "Vô hiệu hóa carousel ở trang chính và giảm mức độ ưu tiên của Collapse xuống Dưới mức bình thường", - "KbShortcuts_Title": "Phím Tắt", - "KbShortcuts_ShowBtn": "Hiện Thị Lối Tắt", - "KbShortcuts_ResetBtn": "Đặt Lại Về Mặc Định", + "KbShortcuts_Title": "Phím tắt", + "KbShortcuts_ShowBtn": "Xem các phím tắt", + "KbShortcuts_ResetBtn": "Đặt lại về mặc định", - "AppBehavior_Title": "Hành vi của ứng dụng", - "AppBehavior_PostGameLaunch": "Sau khi ra mắt trò chơi", + "AppBehavior_Title": "Hành vi ứng dụng", + "AppBehavior_PostGameLaunch": "Sau khi mở game", "AppBehavior_PostGameLaunch_Minimize": "Thu nhỏ", "AppBehavior_PostGameLaunch_ToTray": "Ẩn vào taskbar", "AppBehavior_PostGameLaunch_Nothing": "Không làm gì", - "AppBehavior_MinimizeToTray": "Thu nhỏ vào thanh taskbar", - "AppBehavior_LaunchOnStartup": "Luôn mở Collapse lúc máy tính của bạn khởi động", - "AppBehavior_StartupToTray": "Ẩn cửa sổ Collapse lúc nó tự mở", + "AppBehavior_MinimizeToTray": "Thu xuống khay hệ thống", + "AppBehavior_LaunchOnStartup": "Tự động mở Collapse khi khởi động máy", + "AppBehavior_StartupToTray": "Ẩn cửa sổ Collapse khi tự động mở", "Waifu2X_Toggle": "Dùng Waifu2X", "Waifu2X_Help": "Dùng Waifu2X để phóng lớn ảnh nền.\nKhi bật, chất lượng ảnh sẽ được cải thiện đáng kể, nhưng sẽ mất thêm một ít thời gian để tải ảnh lần đầu.", - "Waifu2X_Help2": "Chỉ khả dụng cho ảnh tĩnh!", - "Waifu2X_Warning_CpuMode": "CẢNH BÁO: Không tìm thấy thiết bị GPU Vulcan có sẵn và sẽ sử dụng chế độ CPU. Điều này sẽ làm tăng đáng kể thời gian xử lý hình ảnh.", - "Waifu2X_Warning_D3DMappingLayers": "CẢNH BÁO: Hệ thống của bạn có cài đặt \"Gói tương thích OpenCL™, OpenGL®, và Vulkan®\". Nó được cho là không tương thích với Vulkan Loader và sẽ crash trên một số GPU. Vui lòng gỡ bỏ gói này để bật chế độ GPU.", + "Waifu2X_Help2": "Chỉ dùng được cho ảnh tĩnh!", + "Waifu2X_Warning_CpuMode": "CẢNH BÁO: Không tìm thấy thiết bị GPU Vulcan có sẵn nên sẽ sử dụng chế độ CPU. Việc này sẽ làm tăng đáng kể thời gian xử lý hình ảnh.", + "Waifu2X_Warning_D3DMappingLayers": "CẢNH BÁO: Hệ thống của bạn có cài đặt \"Gói Tương thích OpenCL™, OpenGL® và Vulkan®\". Đã có báo cáo về việc gói này không tương thích với Vulkan Loader và sẽ crash trên một số GPU. Vui lòng gỡ bỏ gói này để bật chế độ GPU.", "Waifu2X_Error_Loader": "LỖI: Khởi tạo Vulkan Loader thất bại. Đảm bảo rằng GPU của bạn tương thích với Vulkan và đã cài đặt driver GPU cần thiết.", - "Waifu2X_Error_Output": "LỖI: Không vượt qua bài tự kiểm tra Waifu2X, nhận ảnh đầu ra rỗng.", + "Waifu2X_Error_Output": "LỖI: Không vượt qua được bài tự kiểm tra của Waifu2X, ảnh trả về rỗng.", + "Waifu2X_Initializing": "Đang khởi tạo Waifu2X, vui lòng chờ trong giây lát.", "NetworkSettings_Title": "Cài đặt mạng", "NetworkSettings_Proxy_Title": "Cài đặt proxy", - "NetworkSettings_Proxy_Hostname": "Tên miền Proxy", - "NetworkSettings_Proxy_HostnameHelp1": "Đại diện cho URL của Proxy để sử dụng.", - "NetworkSettings_Proxy_HostnameHelp2": "Collapse chỉ hỗ trợ loại", + "NetworkSettings_Proxy_Hostname": "Tên miền proxy", + "NetworkSettings_Proxy_HostnameHelp1": "URL của proxy muốn sử dụng.", + "NetworkSettings_Proxy_HostnameHelp2": "Hiện tại Collapse chỉ hỗ trợ proxy loại", "NetworkSettings_Proxy_HostnameHelp3": "HTTP/HTTPS và SOCKS4/4a/5", - "NetworkSettings_Proxy_HostnameHelp4": "Proxy tại thời điểm hiện tại", + "NetworkSettings_Proxy_HostnameHelp4": ".", - "NetworkSettings_ProxyWarn_UrlInvalid": "URL được nhập không hợp lệ", + "NetworkSettings_ProxyWarn_UrlInvalid": "URL nhập vào không hợp lệ", "NetworkSettings_ProxyWarn_NotSupported": "Lược đồ proxy không được hỗ trợ! Collapse chỉ hổ trợ http://, https://, socks4://, socks4a:// và socks5://", - "NetworkSettings_Proxy_Username": "Người dùng Proxy", - "NetworkSettings_Proxy_UsernamePlaceholder": "Nhập tên người dùng Proxy", + "NetworkSettings_Proxy_Username": "Tên máy chủ proxy", + "NetworkSettings_Proxy_UsernamePlaceholder": "Nhập tên người dùng proxy", "NetworkSettings_Proxy_UsernameHelp1": "Mặc định: ", "NetworkSettings_Proxy_UsernameHelp2": "[Trống]", "NetworkSettings_Proxy_UsernameHelp3": "Để trống ô này nếu proxy của bạn không yêu cầu xác thực.", - "NetworkSettings_Proxy_Password": "Mật khẩu Proxy", - "NetworkSettings_Proxy_PasswordPlaceholder": "Nhập mật khẩu Proxy", - "NetworkSettings_Proxy_PasswordHelp1": "Mặc định", + "NetworkSettings_Proxy_Password": "Mật khẩu proxy", + "NetworkSettings_Proxy_PasswordPlaceholder": "Nhập mật khẩu proxy", + "NetworkSettings_Proxy_PasswordHelp1": "Mặc định:", "NetworkSettings_Proxy_PasswordHelp2": "[Trống]", "NetworkSettings_Proxy_PasswordHelp3": "Để trống ô này nếu proxy của bạn không yêu cầu xác thực.", - "NetworkSettings_ProxyTest_Button": "Kiểm tra kết nối đến Proxy", - "NetworkSettings_ProxyTest_ButtonChecking": "Đang kiểm tra kết nối", - "NetworkSettings_ProxyTest_ButtonSuccess": "Kiểm tra kết nối Proxy hoàn thành!", - "NetworkSettings_ProxyTest_ButtonFailed": "Thất bại! Proxy không thể kết nối.", + "NetworkSettings_ProxyTest_Button": "Kiểm tra kết nối đến proxy", + "NetworkSettings_ProxyTest_ButtonChecking": "Đang kiểm tra kết nối...", + "NetworkSettings_ProxyTest_ButtonSuccess": "Kiểm tra kết nối proxy thành công!", + "NetworkSettings_ProxyTest_ButtonFailed": "Kiểm tra thất bại! Không thể truy cập proxy", "NetworkSettings_Dns_Title": "Cài đặt DNS tùy chỉnh", - "NetworkSettings_Dns_ConnectionType": "Loại Kết Nối", + "NetworkSettings_Dns_ConnectionType": "Loại kết nối", "NetworkSettings_Dns_ConnectionType_SelectionUdp": "UDP (Cổng 53)", "NetworkSettings_Dns_ConnectionType_SelectionDoH": "DNS qua HTTPS", "NetworkSettings_Dns_ConnectionType_SelectionDoT": "DNS qua TLS", - "NetworkSettings_Dns_ConnectionType_Tooltip1": "Biểu thị loại Giao thức DNS nào được sử dụng để truy vấn bản ghi. Có một số loại Giao thức được Collapse Launcher hỗ trợ, bao gồm:", - "NetworkSettings_Dns_ProviderSelection": "Nhà cung cấp DNS", + "NetworkSettings_Dns_ConnectionType_Tooltip1": "Là các loại giao thức DNS được sử dụng để truy vấn bản ghi. Collapse Launcher hỗ trợ các giao thức dưới đây:", + "NetworkSettings_Dns_ProviderSelection": "Bên cung cấp máy chủ DNS", "NetworkSettings_Dns_ProviderSelection_SelectionCustom": "Tuỳ chỉnh", - "NetworkSettings_Dns_ProviderSelection_Tooltip1": "Có một số Nhà cung cấp DNS bên ngoài có sẵn được tích hợp trong Collapse Launcher. Bạn cũng có thể sử dụng Nhà cung cấp/Máy chủ DNS tùy chỉnh của riêng mình bằng cách chọn \"Tùy chỉnh\" làm mục lựa chọn trong \"Nhà cung cấp DNS\".", - "NetworkSettings_Dns_CustomProvider": "(Các) Nhà cung cấp DNS tùy chỉnh", - "NetworkSettings_Dns_CustomProvider_Tooltip1": "Tùy vào", - "NetworkSettings_Dns_CustomProvider_Tooltip2": "cài đặt", + "NetworkSettings_Dns_ProviderSelection_Tooltip1": "Collapse Launcher có tích hợp sẵn một số máy chủ DNS của bên thứ ba. Bạn cũng có thể sử dụng máy chủ DNS tùy chỉnh của riêng mình bằng cách chọn mục \"Tùy chỉnh\" trong hộp thả \"Máy chủ DNS\".", + "NetworkSettings_Dns_CustomProvider": "Máy chủ DNS tùy chỉnh", + "NetworkSettings_Dns_CustomProvider_Tooltip1": "Tùy vào thiết lập", + "NetworkSettings_Dns_CustomProvider_Tooltip2": "", "NetworkSettings_Dns_CustomProvider_Tooltip3": "Khi bạn chọn", - "NetworkSettings_Dns_CustomProvider_Tooltip4": "là lựa chọn", - "NetworkSettings_Dns_CustomProvider_Tooltip5": ", bạn có thể thêm Nhà cung cấp/Máy chủ DNS tùy chỉnh của riêng bạn bằng cách nhập IPv4/IPv6 hoặc tên máy chủ. Bạn cũng có thể thêm Nhà cung cấp DNS được xác định trước (bắt đầu bằng ký hiệu '$') cùng với Nhà cung cấp/Máy chủ DNS tùy chỉnh của bạn bằng cách phân tách từng mục bằng các ký hiệu sau:", - "NetworkSettings_Dns_CustomProvider_Tooltip6": "Ví dụ", - "NetworkSettings_Dns_ChangesWarning": "Bạn cần khởi động lại ứng dụng để mọi thay đổi cài đặt DNS có hiệu lực.", - "NetworkSettings_Dns_ValidateAndSaveSettingsButton": "Thử và lưu thay đổi", + "NetworkSettings_Dns_CustomProvider_Tooltip4": "ở hộp thả", + "NetworkSettings_Dns_CustomProvider_Tooltip5": ", bạn có thể thêm một hoặc nhiều bên cung cấp/máy chủ DNS tùy chỉnh của riêng bạn bằng cách nhập IPv4/IPv6 hoặc tên máy chủ. Bạn cũng có thể nhập vào tên của bên cung cấp máy chủ DNS đã định trước (bắt đầu bằng ký hiệu '$') cùng với máy chủ DNS tùy chỉnh của bạn bằng cách tách từng mục ra, sử dụng các ký tự sau:", + "NetworkSettings_Dns_CustomProvider_Tooltip6": "Ví dụ:", + "NetworkSettings_Dns_ChangesWarning": "Bạn cần khởi động lại launcher để mọi thay đổi cài đặt DNS có hiệu lực.", + "NetworkSettings_Dns_ValidateAndSaveSettingsButton": "Kiểm tra và lưu thay đổi", "NetworkSettings_Dns_ApplyingSettingsButton": "Đang xác thực và áp dụng thay đổi...", - "NetworkSettings_Dns_SettingsSavedButton": "Thay đổi đã lưu!", - "NetworkSettings_Dns_SettingsFailedButton": "Thay đổi không thể lưu được!", + "NetworkSettings_Dns_SettingsSavedButton": "Đã lưu thay đổi!", + "NetworkSettings_Dns_SettingsFailedButton": "Lưu thay đổi thất bại!", - "NetworkSettings_Http_Title": "Cài đặt .NET HTTP", - "NetworkSettings_Http_Redirect": "Cho phép Chuyển hướng HTTP", - "NetworkSettings_Http_SimulateCookies": "Cho phép mô phổng HTTP Cookie", + "NetworkSettings_Http_Title": "Cài đặt HTTP .NET", + "NetworkSettings_Http_Redirect": "Cho phép chuyển hướng HTTP", + "NetworkSettings_Http_SimulateCookies": "Cho phép mô phỏng cookie HTTP", "NetworkSettings_Http_UntrustedHttps": "Cho phép chứng chỉ HTTPS không tin cậy", - "NetworkSettings_Http_Timeout": "Thời gian chờ HTTP Client (bằng giây)", + "NetworkSettings_Http_Timeout": "Thời gian chờ client HTTP (giây)", - "FileDownloadSettings_Title": "Cài đạt Tệp tải xuống", + "FileDownloadSettings_Title": "Cài đặt tải xuống", "FileDownloadSettings_SpeedLimit_Title": "Giới hạn tốc độ tải", - "FileDownloadSettings_SpeedLimit_NumBox": "Giới hạn tốc độ (bằng MiB)", + "FileDownloadSettings_SpeedLimit_NumBox": "Tốc độ tối đa (MiB)", "FileDownloadSettings_SpeedLimitHelp1": "Mặc định:", - "FileDownloadSettings_SpeedLimitHelp2": "Khoảng giới hạn tốc độ:", + "FileDownloadSettings_SpeedLimitHelp2": "Khoảng giới hạn có thể nhập:", "FileDownloadSettings_SpeedLimitHelp3": "1 - 1000 MiB/s", - "FileDownloadSettings_SpeedLimitHelp4": "Giới hạn tốc độ băng thông về tải xuống. Cài đặt này không thể dùng chung với ", + "FileDownloadSettings_SpeedLimitHelp4": "Giới hạn băng thông tối đa sử dụng khi tải xuống. Cài đặt này không thể dùng chung với ", "FileDownloadSettings_SpeedLimitHelp5": ".", - "FileDownloadSettings_NewPreallocChunk_Title": "Trình Tải Xuống được Phân Bố Trước mới!", - "FileDownloadSettings_NewPreallocChunk_Subtitle": "Chỉ cho Cài đặt Game, Sữa Game và Cập Nhật Cache.", - "FileDownloadSettings_NewPreallocChunk_NumBox": "Dung lượng Khối (bằng MiB)", + "FileDownloadSettings_NewPreallocChunk_Title": "Tải xuống phân bổ sẵn dung lượng", + "FileDownloadSettings_NewPreallocChunk_Subtitle": "Chỉ cho cài đặt game, sửa game và cập nhật cache.", + "FileDownloadSettings_NewPreallocChunk_NumBox": "Dung lượng từng chunk (MiB)", "FileDownloadSettings_NewPreallocChunkHelp1": "Mặc định:", - "FileDownloadSettings_NewPreallocChunkHelp2": "Khoảng Dung Lương Khối:", + "FileDownloadSettings_NewPreallocChunkHelp2": "Khoảng dung lượng có thể nhập:", "FileDownloadSettings_NewPreallocChunkHelp3": "1 - 32 MiB", - "FileDownloadSettings_NewPreallocChunkHelp4": "Khi bật, trình tải xuống sẻ phân bố trước dung lượng tệp trong lúc tải xuống.", - "FileDownloadSettings_NewPreallocChunkHelp5": "Tính năng này giúp trình tải xuống có thể ghi những khối dữ liệu thành một tệp mà không phải tách ra thành những tệp.", - "FileDownloadSettings_NewPreallocChunkHelp6": "Khi vô hiệu hóa, trình khởi chạy trò chơi sẽ dùng hệ thống phân bố cũ, trong đó những khối dữ liêu sẽ tách ra. Tính năng này cũng sẽ vô hiệu hóa những cài đặt", + "FileDownloadSettings_NewPreallocChunkHelp4": "Khi bật, trình tải xuống sẽ phân bố trước dung lượng từng tệp trong lúc tải xuống.", + "FileDownloadSettings_NewPreallocChunkHelp5": "Tính năng này giúp trình tải xuống có thể ghi các chunk dữ liệu thành một tệp lớn hơn mà không phải tách ra thành tệp nhỏ.", + "FileDownloadSettings_NewPreallocChunkHelp6": "Khi tắt, launcher game sẽ dùng hệ thống phân bố cũ, các chunk dữ liệu sẽ được ghi vào các tệp nhỏ. Việc này cũng sẽ vô hiệu hóa cài đặt", "FileDownloadSettings_NewPreallocChunkHelp7": "và", "FileDownloadSettings_NewPreallocChunkHelp8": ".", "FileDownloadSettings_NewPreallocChunkHelp9": "Lưu ý:", - "FileDownloadSettings_NewPreallocChunkHelp10": "Tính năng này chỉ áp dựng cho bước tải trò chơi (như Cài Đặt Ban Đầu, Cặp nhật, và Gói Tải về trước), Sữa Trò Chơi và Cặp nhật Cache.", + "FileDownloadSettings_NewPreallocChunkHelp10": "Tính năng này chỉ áp dụng được khi cài game (lần đầu cài game, cập nhật và tải trước), sửa game và cập nhật cache.", - "FileDownloadSettings_BurstDownload_Title": "Chế độ tải liên tục.", - "FileDownloadSettings_BurstDownload_Subtitle": "Dành cho Sữa trò chơi và Cặp nhật Cache.", + "FileDownloadSettings_BurstDownload_Title": "Chế độ tải phân tán", + "FileDownloadSettings_BurstDownload_Subtitle": "Chỉ dùng cho sửa game và cập nhật cache.", "FileDownloadSettings_BurstDownloadHelp1": "Mặc định:", - "FileDownloadSettings_BurstDownloadHelp2": "Khi bật, tính năng này sẽ cho phép quá trình tải xuống cho", + "FileDownloadSettings_BurstDownloadHelp2": "Khi bật, launcher sẽ đồng thời tải nhiều tệp có trong danh sách", "FileDownloadSettings_BurstDownloadHelp3": "và", - "FileDownloadSettings_BurstDownloadHelp4": "chạy song song để làm cho trình tải xuống hiệu quả hơn.", - "FileDownloadSettings_BurstDownloadHelp5": "Khi vô hiệu hóa, trình tải xuống cho tính năng", + "FileDownloadSettings_BurstDownloadHelp4": "cùng một lúc, làm cho quá trình tải xuống hiệu quả hơn.", + "FileDownloadSettings_BurstDownloadHelp5": "Khi tắt, launcher sẽ tải lần lượt từng tệp một có trong danh sách", "FileDownloadSettings_BurstDownloadHelp6": "và", - "FileDownloadSettings_BurstDownloadHelp7": "dùng trình tải xuống nối tiếp.", + "FileDownloadSettings_BurstDownloadHelp7": ".", - "Database_Title": "Cơ sở dữ liệu có thể đồng bọ hóa của người dùng", - "Database_ConnectionOk": "Đã kết nối cơ sở dữ liệu", - "Database_ConnectFail": "Không thể kết nối với cơ sở dữ liệu, xem (các) lỗi bên dưới:", - "Database_Toggle": "Bật Cở Sở Dử Liệu Trực tuyến", - "Database_Url": "URL Cở sở Dử liệu", + "Database_Title": "Đồng bộ thông tin lên CSDL cá nhân", + "Database_ConnectionOk": "Đã kết nối cơ sở dữ liệu!", + "Database_ConnectFail": "Không thể kết nối với cơ sở dữ liệu, dưới đây là chi tiết lỗi:", + "Database_Toggle": "Bật cơ sở dữ liệu trực tuyến", + "Database_Url": "URL cơ sở dữ liệu", "Database_Url_Example": "Ví dụ: https://db-collapse.turso.io", - "Database_Token": "Mã Token", - "Database_UserId": "ID Người dùng", + "Database_Token": "Token", + "Database_UserId": "ID người dùng (UID)", "Database_GenerateGuid": "Tạo UID", "Database_Validate": "Xác thực và lưu cài đặt", - "Database_Error_EmptyUri": "URL Cơ sở Dử liệu không được để trống", - "Database_Error_EmptyToken": "Mã token không được để trống", - "Database_Error_InvalidGuid": "ID người dùng không đúng với GUID!", - "Database_Warning_PropertyChanged": "Cơ sở dữ liệu đã thay đổi", - "Database_ValidationChecking": "Xác thực cài đặt", - "Database_Placeholder_DbUserIdTextBox": "Ví dụ về GUID: ed6e8048-e3a0-4983-bd56-ad19956c701f", - "Database_Placeholder_DbTokenPasswordBox": "Nhập token của trình xác thực tại đây", + "Database_Error_EmptyUri": "URL CSDL không được để trống!", + "Database_Error_EmptyToken": "Token CSDL không được để trống!", + "Database_Error_InvalidGuid": "ID người dùng không phải GUID hợp lệ!", + "Database_Warning_PropertyChanged": "Phát hiện thay đổi trong cài đặt CSDL", + "Database_ValidationChecking": "Đang xác thực cài đặt...", + "Database_Placeholder_DbUserIdTextBox": "Ví dụ GUID: ed6e8048-e3a0-4983-bd56-ad19956c701f", + "Database_Placeholder_DbTokenPasswordBox": "Nhập token xác thực tại đây", - "SearchPlaceholder": "Nhập để tìm kiếm" + "SearchPlaceholder": "Nhập để tìm kiếm...", + + "HttpCache_Title": "Cài đặt cache HTTP", + "HttpCacheModeToggle": "Chế độ bộ nhớ đệm", + "HttpCacheModeToggle_Tooltip1": "Bật/tắt việc sử dụng bộ nhớ đệm mạng (network caching) khi gửi yêu cầu HTTP lên CDN. Bật tính năng này có thể giúp giảm thời gian tải ở một số chức năng nhất định.", + "HttpCacheModeToggle_Tooltip2": "Khi bật, tính năng này tận dụng hai phương thức caching:", + "HttpCacheModeToggle_Tooltip3": "Ghi chú:", + "HttpCacheModeToggle_Tooltip4": "Bạn có thể cần xóa bộ nhớ đệm bằng cách nhấn", + "HttpCacheModeToggle_Tooltip5": "nếu bạn gặp phải một số vấn đề hoặc launcher hoạt động không như mong đợi.", + "HttpCacheMode_Cat1": "Caching dựa trên thời gian hết hạn", + "HttpCacheMode_Cat2": "Caching dựa trên ETag/Hash", + "HttpCacheAggressiveModeToggle": "Chế độ bộ nhớ đệm tăng cường", + "HttpCacheAggressiveModeToggle_Tooltip1": "Khi bật sẽ cho phép launcher thực hiện caching dựa trên", + "HttpCacheAggressiveModeToggle_Tooltip2": "đã nhập. Cả hai phương thức", + "HttpCacheAggressiveModeToggle_Tooltip3": "và", + "HttpCacheAggressiveModeToggle_Tooltip4": "sẽ tự động bị bỏ qua.", + "HttpCacheAggressiveModeToggle_Tooltip5": "Để sử dụng tính năng này, bạn đầu tiên phải bật", + "HttpCacheAggressiveModeToggle_Tooltip6": ".", + "HttpCacheMaxExpireTimeBox": "Thời gian hết hạn tối đa", + "HttpCacheMaxExpireTimeBox_TooltipDefaultValue": "10 phút", + "HttpCacheMaxExpireTimeBox_Tooltip1": "Xác định thời gian lưu trữ bộ nhớ đệm tối đa được phép cho phản hồi (tính bằng phút).", + "HttpCacheMaxExpireTimeBoxMinutes": "phút", + "HttpCacheClearButton": "Dọn bộ nhớ đệm mạng", + "HttpCacheClearedText": "Đã dọn bộ nhớ đệm!", + + "Plugin_LoadedInfoTitle": "Thông tin plugin đã nạp", + "Plugin_OpenManagerBtn": "Mở menu quản lý plugin", + "Plugin_AuthorBy": "bởi {0}", + "Plugin_LoadedInfoDesc": "Mô tả", + "Plugin_LoadedInfoPluginVer": "Phiên bản plugin", + "Plugin_LoadedInfoInterfaceVer": "Phiên bản interface", + "Plugin_LoadedInfoCreationDate": "Ngày tạo", + "Plugin_LoadedInfoMainLibLocation": "Vị trí thư viện chính", + "Plugin_LoadedInfoLoadedPresets": "Preset đã nạp", + "Plugin_LoadedInfoClipboardCopied": "Đã sao chép thông tin!", + "Plugin_PluginInfoNameUnknown": "Không rõ", + "Plugin_PluginInfoDescUnknown": "Không có mô tả", + "Plugin_PluginInfoAuthorUnknown": "Tác giả không rõ" + }, + + "_PluginManagerPage": { + "PageTitle": "Menu quản lý plugin", + + "FileDialogTitle": "Nhập plugin Collapse Launcher", + "FileDialogFileFilter1": "Plugin Collapse Launcher", + + "LeftPanelNoPluginTitle": "Này, bạn vẫn chưa nạp plugin nào hết!", + "LeftPanelNoPluginButton1": "Tới trang", + "LeftPanelNoPluginButton2": "danh mục tải plugin", + "LeftPanelNoPluginButton3": "", + + "LeftPanelListViewTitle": "Thông tin về plugin đã nạp", + + "ListViewMainActionButton1": "Kiểm tra cập nhật cho tất cả plugin", + "ListViewMainActionButton1AltChecking": "Đang kiểm tra cập nhật cho tất cả plugin", + "ListViewMainActionButton2": "Tải bản cập nhật cho tất cả plugin", + "ListViewMainActionButton3": "Bật Tự động cập nhật plugin khi mở", + + "ListViewItemContextButton1": "Xóa plugin được chọn", + "ListViewItemContextButton2": "Khôi phục plugin được chọn", + "ListViewItemContextButton3": "Bật plugin được chọn", + "ListViewItemContextButton4": "Tắt plugin được chọn", + "ListViewItemContextButton5": "Cập nhật plugin được chọn", + "ListViewItemContextButton6": "Mở thư mục plugin hiện tại", + "ListViewItemContextButton7": "Mở thư mục plugin của Collapse Launcher", + "ListViewItemContextButton8": "Cập nhật plugin hiện tại", + + "ListViewItemContentButton1": "Xóa plugin", + "ListViewItemContentButton2": "Khôi phục plugin", + + "ListViewItemContextButtonCheckUpdateOnly": "Chỉ kiểm tra bản cập nhật", + "ListViewItemContextButtonCheckAndDownloadUpdate": "Kiểm tra và tải bản cập nhật", + "ListViewItemContextButtonDownloadUpdate": "Tải bản cập nhật", + + "ListViewItemUpdateStatusAvailable": "Đã có bản cập nhật!", + "ListViewItemUpdateStatusAvailableButton": "Cập nhật lên {0}", + "ListViewItemUpdateStatusAvailableButtonUpdating": "Đang cập nhật ({0}%)...", + "ListViewItemUpdateStatusCompleted": "Plugin của bạn đã được cập nhật lên {0}. Vui lòng khởi động lại trình khởi chạy để áp dụng bản cập nhật đó!", + "ListViewItemUpdateStatusChecking": "Đang kiểm tra cập nhật...", + "ListViewItemUpdateStatusUpToDate": "Plugin của bạn đã được cập nhật!", + + "ListViewFooterWarning1": "Bạn cần khởi động lại launcher để áp dụng thay đổi!", + "ListViewFooterRestartButton": "Khởi động lại launcher", + + "RightPanelImportTitle1": "Kéo thả tệp", + "RightPanelImportTitle2": "hoặc", + "RightPanelImportTitle3": "vào đây", + "RightPanelImportTitle4": "hoặc nhấn vào hộp thoại này để thêm plugin" }, "_Misc": { "SizePrefixes1000U": "B|KB|MB|GB|TB|PB|EB|ZB|YB", "UpdateCompleteTitle": "Cập nhật hoàn tất!", - "UpdateCompleteSubtitle": "trình khởi chạy của bạn đã được cập nhật tới phiên bản {0}! (Kênh chính thức: {1})", + "UpdateCompleteSubtitle": "Launcher đã được cập nhật lên phiên bản {0}! (Kênh phát hành: {1})", "FeatureUnavailableTitle": "Tính năng này chưa có sẵn ở thời điểm hiện tại", "FeatureUnavailableSubtitle": "Vui lòng quay lại sau!", "TimeRemain": "Thời gian còn lại", @@ -713,18 +802,19 @@ "PerFromTo": "{0} / {1}", "PerFromToPlaceholder": "- / -", - "EverythingIsOkay": "Tất cả OK!", - "Cancel": "Huỷ", + "EverythingIsOkay": "Tất cả đều OK!", + "Cancel": "Hủy", "Close": "Đóng", + "CloseOverlay": "Đóng cửa sổ overlay", "UseCurrentDir": "Dùng thư mục hiện tại", "UseDefaultDir": "Dùng thư mục mặc định", - "MoveToDifferentDir": "Chuyển vào vị trí thư mục khác", - "LocateDir": "Vị trí thư mục", - "Okay": "Okay", - "OkaySad": "Okay ;-;", - "OkayHappy": "Okay (≧▽≦)ノ", - "OkayBackToMenu": "Okay, trở lại trang chính", - "Skip": "Bỏ qua, không bao giờ hiện nữa", + "MoveToDifferentDir": "Chuyển sang thư mục khác", + "LocateDir": "Chọn thư mục", + "Okay": "OK", + "OkaySad": "Ok ;-;", + "OkayHappy": "OK (≧▽≦)ノ", + "OkayBackToMenu": "OK, trở lại trang chính", + "Skip": "Bỏ qua, không hiển thị lại", "Next": "Tiếp theo", "Prev": "Trước đó", "Uninstall": "Gỡ cài đặt", @@ -734,21 +824,21 @@ "YesRedownload": "Có, hãy tải lại", "YesResume": "Có, hãy tiếp tục", "YesRelocate": "Có, hãy tiếp tục", - "YesMigrateIt": "Có, hãy di chuyển nó", - "YesConvertIt": "Có, hãy chuyển đổi nó", - "YesImReallySure": "Có, tôi rất chắc chắn", - "YesIHaveBeefyPC": "Tôi có máy tính đủ mạnh! ᕦ(ò_ó)ᕤ", + "YesMigrateIt": "Có, hãy di chuyển", + "YesConvertIt": "Có, hãy chuyển đổi", + "YesImReallySure": "Có, chắc chắn!", + "YesIHaveBeefyPC": "Máy tôi đủ mạnh mà! ᕦ(ò_ó)ᕤ", "YesChangeLocation": "Có, hãy thay đổi vị trí", - "YesContinue": "Có, tiếp theo", + "YesContinue": "Có, tiếp tục", "No": "Không", - "NoStartFromBeginning": "Không, hãy bắt đầu lại từ đầu", - "NoCancel": "Không, hãy huỷ", - "NoKeepInstallIt": "Không, cứ tiếp tục cài đặt", - "NoIgnoreIt": "Không, hãy mặc kệ nó", - "NoOtherLocation": "Không, hãy tiếp tục cài đặt", - "NotSelected": "Chưa được chọn", - "ExtractAnyway": "Giải nén mọi thứ!", + "NoStartFromBeginning": "Không, bắt đầu lại từ đầu", + "NoCancel": "Không, hãy hủy", + "NoKeepInstallIt": "Vẫn tiếp tục cài đặt", + "NoIgnoreIt": "Bỏ qua", + "NoOtherLocation": "Vẫn tiếp tục cài đặt", + "NotSelected": "Chưa chọn", + "ExtractAnyway": "Cứ giải nén đi!", "IAcceptAgreement": "Tôi đồng ý với điều khoản", "IDoNotAcceptAgreement": "Tôi không đồng ý với điều khoản", @@ -758,14 +848,14 @@ "LangNameCN": "Tiếng Trung", "LangNameKR": "Tiếng Hàn", - "Downloading": "Đang tải", - "Updating": "Đang cặp nhật", + "Downloading": "Đang tải xuống", + "Updating": "Đang cập nhật", "UpdatingAndApplying": "Đang cập nhật + áp dụng", "Applying": "Đang áp dụng", "Merging": "Đang gộp", - "Idle": "Chờ", + "Idle": "Tạm vắng", "Change": "Thay đổi", - "Cancelled": "Đã huỷ", + "Cancelled": "Đã hủy", "FinishingUp": "Đang hoàn tất", "Extracting": "Đang giải nén", "Converting": "Đang chuyển đổi", @@ -774,308 +864,346 @@ "Completed": "Đã hoàn thành", "Skipped": "Đã bỏ qua", "Select": "Chọn", - "NotRunning": "Chưa được chạy", + "NotRunning": "Chưa chạy", "MovingFile": "Đang di chuyển tệp", "CheckingFile": "Đang kiểm tra tệp", "RepairingFile": "Đang sửa tệp", "ApplyingPatch": "Đang áp dụng bản vá", "Disabled": "Tắt", "Enabled": "Bật", - "UseAsDefault": "Đặt Làm Mặc Định", + "UseAsDefault": "Đặt làm mặc định", "Default": "Mặc định", - "BuildChannelPreview": "Xem trước", + "BuildChannelPreview": "Thử nghiệm", "BuildChannelStable": "Ổn định", - "CDNDescription_Github": "Kho lưu trữ chính thức của trình khởi động.", - "CDNDescription_Cloudflare": "Bản sao của kho lưu trữ chính thức (main) được lưu trữ trên Cloudflare R2 bucket.", - "CDNDescription_Bitbucket": "Bản sao của kho lưu trữ chính thức (main) được lưu trữ trên Bitbucket.", - "CDNDescription_GitLab": "Bản sao của kho lưu trữ chính thức (main) được lưu trữ trên GitLab", - "CDNDescription_Coding": "Bản sao của kho lưu trữ chính thức (main) được lưu trữ trên Coding", + "CDNDescription_Github": "Kho lưu trữ tệp chính thức của launcher.", + "CDNDescription_DigitalOcean": "Bản sao của kho lưu trữ tệp chính thức được đặt trên DigitalOcean.", + "CDNDescription_Cloudflare": "Bản sao của kho lưu trữ tệp chính thức được đặt trên bucket R2 Cloudflare.", + "CDNDescription_Bitbucket": "Bản sao của kho lưu trữ tệp chính thức được đặt trên Bitbucket.", + "CDNDescription_GitLab": "Bản sao của kho lưu trữ tệp chính thức được đặt trên GitLab.", + "CDNDescription_CNB": "Bản sao của kho lưu trữ tệp chính thức được đặt trên CNB.", - "LocateExecutable": "Vị trí thực thi", - "OpenDownloadPage": "Mở trang Tải xuống", + "LocateExecutable": "Chọn tệp thực thi", + "OpenDownloadPage": "Mở trang tải xuống", "DiscordRP_Play": "Đang chơi", - "DiscordRP_InGame": "Đang trong trò chơi", + "DiscordRP_InGame": "Đang trong game", "DiscordRP_Update": "Đang cập nhật", - "DiscordRP_Repair": "Đang sửa trò chơi", + "DiscordRP_Repair": "Đang sửa game", "DiscordRP_Cache": "Đang cập nhật bộ nhớ cache", - "DiscordRP_GameSettings": "Đang thay đổi cài đặt trò chơi", - "DiscordRP_AppSettings": "Đang thay đổi cài đặt ứng dụng", - "DiscordRP_Idle": "Tạm nghỉ", + "DiscordRP_GameSettings": "Đang thay đổi cài đặt game", + "DiscordRP_AppSettings": "Đang thay đổi cài đặt launcher", + "DiscordRP_Idle": "Tạm vắng", "DiscordRP_Default": "Không có hoạt động", - "DiscordRP_Ad": "- Với trình khởi chạy Collapse", - "DiscordRP_Region": "Khu vực:", + "DiscordRP_Ad": "- Với Collapse Launcher", + "DiscordRP_Region": "Server:", - "DownloadModeLabelSophon": "Chế độ Sophon", + "DownloadModeLabelSophon": "Chế Độ Sophon", - "Taskbar_PopupHelp1": "Nhấp để đưa Collapse lên nền trước", + "Taskbar_PopupHelp1": "Nhấp để đưa Collapse lên trên đầu", "Taskbar_PopupHelp2": "Nhấn hai lần để hiện hoặc ẩn cửa sổ", - "Taskbar_ShowApp": "Hiển thị cửa sổ Collapse", + "Taskbar_ShowApp": "Hiện cửa sổ Collapse", "Taskbar_HideApp": "Ẩn cửa sổ Collapse xuống thanh tác vụ", - "Taskbar_ShowConsole": "Hiện bảng điều khiển của Collapse", - "Taskbar_HideConsole": "Ẩn bảng điều khiển của Collapse vào thanh tác vụ", - "Taskbar_ExitApp": "Thoát trình khởi chạy Collapse", + "Taskbar_ShowConsole": "Hiện console của Collapse", + "Taskbar_HideConsole": "Ẩn console của Collapse vào thanh tác vụ", + "Taskbar_ExitApp": "Thoát Collapse Launcher", "LauncherNameOfficial": "Launcher chính thức", "LauncherNameBHI3L": "BetterHI3Launcher", "LauncherNameSteam": "Steam", - "LauncherNameUnknown": "(Tên Launcher không rõ)", + "LauncherNameUnknown": "(Tên launcher không rõ)", "ImageCropperTitle": "Cắt ảnh", - "IsBytesMoreThanBytes": "= {0} bytes (-/+ {1})", + "IsBytesMoreThanBytes": "= {0} byte (-/+ {1})", "IsBytesUnlimited": "= Không giới hạn", "IsBytesNotANumber": "= NaN", "MissingVcRedist": "Thiếu Visual C/C++ Redistributable", - "MissingVcRedistSubtitle": "Bạn cần phải tải Visual C/C++ Redistributable để có thể chạy tính năng này. Bạn có muốn tải ngay bây giờ không?\r\nLưu ý: Thao tác này sẽ mở một cửa sổ trình duyệt và tải xuống tệp từ Microsoft. Vui lòng chạy trình cài đặt sau khi tải xuống rồi khởi động lại Collapse và thử lại.\r\nNếu bạn đã cài đặt nó nhưng vẫn còn lỗi, vui lòng gửi phản hồi về vấn đề này cho chúng tôi.", + "MissingVcRedistSubtitle": "Bạn cần phải tải Visual C/C++ Redistributable để có thể chạy tính năng này. Bạn có muốn tải ngay bây giờ không?\r\nLưu ý: Hành động này sẽ mở cửa sổ trình duyệt và tải về một tệp từ Microsoft. Vui lòng chạy trình cài đặt sau khi tải xong, sau đó khởi động lại Collapse và thử lại.\r\nNếu bạn đã cài rồi nhưng lỗi vẫn xảy ra, xin hãy báo lỗi này cho chúng tôi.", "ExceptionFeedbackBtn": "Hãy cho chúng tôi biết chuyện gì đã xảy ra", "ExceptionFeedbackBtn_Unavailable": "Báo cáo sự cố bị vô hiệu hóa hoặc không khả dụng", - "ExceptionFeedbackBtn_FeedbackSent": "Phản hồi đã được gửi!", - "ExceptionFeedbackTitle": "Hãy cho chúng tôi biết chuyện gì đã xảy ra", - "ExceptionFeedbackTemplate_User": "Tên Người Dùng (Không Bắt Buộc)", - "ExceptionFeedbackTemplate_Email": "Email (Không Bắt Buộc)", - "ExceptionFeedbackTemplate_Message": "Chèn phản hồi của bạn sau dòng này", - + "ExceptionFeedbackBtn_FeedbackSent": "Đã gửi phản hồi!", + "ExceptionFeedbackTitle": "Hãy cho chúng tôi biết chuyện gì đã xảy ra:", + "ExceptionFeedbackTemplate_User": "Tên người dùng (tùy chọn)", + "ExceptionFeedbackTemplate_Email": "Email (tùy chọn)", + "ExceptionFeedbackTemplate_Message": "Hãy cho chúng tôi biết chuyện gì đã xảy ra sau dòng này: (bạn không cần ghi cả thông báo lỗi đâu, chúng tôi đã đính kèm sẵn rồi!)", + "Feedback": "Phản hồi của bạn", "FeedbackSending": "Đang gửi phản hồi...", - "FeedbackSent": "Phản hồi đã gửi!", - "FeedbackSendFailure": "Không gửi được phản hồi! Kiểm tra nhật ký/console (cmd) để biết thêm thông tin.", - - "Tag_Deprecated": "Đã lỗi thời", - "Generic_GameFeatureDeprecation": "Do những thay đổi không lường trước của trò chơi, tính năng này đã bị loại bỏ và sẽ bị xóa trong tương lai. Sử dụng tính năng này có thể gây ra một số lỗi không mong muốn." + "FeedbackSent": "Đã gửi phản hồi!", + "FeedbackSendFailure": "Không gửi được phản hồi! Kiểm tra nhật ký/console để biết thêm thông tin.", + + "Tag_Deprecated": "Lỗi thời", + "Generic_GameFeatureDeprecation": "Do những thay đổi không lường trước của game, tính năng này đã bị loại bỏ và sẽ bị xóa trong tương lai. Sử dụng tính năng này có thể gây ra một số lỗi không mong muốn." }, "_BackgroundNotification": { "LoadingTitle": "Đang tải hoạt động...", "Placeholder": "-", - "CategoryTitle_Downloading": "Đang tải xuống trò chơi: {0}", - "CategoryTitle_DownloadingPreload": "Đang tải xuống bản tải trước: {0}", - "CategoryTitle_Updating": "Đang cập nhật trò chơi: {0}", + "CategoryTitle_Downloading": "Đang tải xuống game: {0}", + "CategoryTitle_DownloadingPreload": "Đang tải xuống gói tải trước: {0}", + "CategoryTitle_Updating": "Đang cập nhật game: {0}", "NotifBadge_Completed": "[Đã hoàn thành] {0}", "NotifBadge_Error": "[Lỗi/Đã hủy] {0}" }, "_Dialogs": { - "DeltaPatchDetectedTitle": "Cảnh báo: Có bản cập nhật bản vá tạm thời!", - "DeltaPatchDetectedSubtitle": "Bản vá tạm thời sẽ được dùng để cập nhật trò chơi của bạn từ {0} tới {1}.\r\nNên nhớ, bạn vẫn nên cần tải về một vài tệp trong trò chơi như thường lệ.\r\n\r\nBạn có muốn tiếp tục?", - "DeltaPatchPrevFailedTitle": "Bản vá tạm thời trước đó đã thất bại/không hoàn thành!", - "DeltaPatchPrevFailedSubtitle": "Không thể áp dụng bản vá tạm thời trước đó. Bạn có muốn khôi phục lại trò chơi để tránh để tải lại không?", - "DeltaPatchPreReqTitle": "Tải tệp bổ sung phải cần Delta Patch!", - "DeltaPatchPreReqSubtitle1": "Yêu cầu tải xuống tệp tin bổ sung cho trò chơi này trước khi áp dụng bản vá delta. Khoảng cách", - "DeltaPatchPreReqSubtitle2": "được yêu cầu tải xuống và một số tệp này có thể chứa các gói âm thanh deltas.", + "DeltaPatchDetectedTitle": "Cảnh báo: Phát hiện gói cập nhật Delta Patch!", + "DeltaPatchDetectedSubtitle": "Delta Patch sẽ được sử dụng để cập nhật game của bạn từ {0} lên {1}.\r\nBạn có thể vẫn sẽ phải tải thêm một số tệp khi vào game.\r\n\r\nBạn có muốn tiếp tục?", + "DeltaPatchPrevFailedTitle": "Gói Delta Patch trước đó đã được vá không đúng cách hoặc chưa hoàn thành!", + "DeltaPatchPrevFailedSubtitle": "Gói Delta Patch trước đó không vá thành công. Bạn có muốn khôi phục lại game để tránh phải tải lại không?", + "DeltaPatchPreReqTitle": "Gói Delta Patch này yêu cầu phải tải thêm tệp!", + "DeltaPatchPreReqSubtitle1": "Launcher cần phải tải thêm một số tệp cho game này trước khi có thể vá Delta Patch. Dung lượng cần tải là khoảng ", + "DeltaPatchPreReqSubtitle2": " và một số tệp này có thể bao gồm gói delta âm thanh.", "DeltaPatchPreReqSubtitle3": "Bạn có muốn tiếp tục không?", - "DeltaPatchPreReqSubtitle4": "(Nhấp \"", - "DeltaPatchPreReqSubtitle5": "\"để tiếp tục hoặc \"", - "DeltaPatchPreReqSubtitle6": "\"để sử dụng cập nhật bình thường hoặc \"", - "DeltaPatchPreReqSubtitle7": "\"để hủy bỏ cập nhật)\"", - "GameConversionPrevFailedTitle": "Chuyển đổi bản trò chơi trước đó đã thất bại/không hoàn thành!", - "GameConversionPrevFailedSubtitle": "Chuyển đổi bản trò chơi trước đó đã thất bại. Bạn có muốn khôi phục lại trò chơi để tránh để tải lại không?", - "PreloadVerifiedTitle": "Gói tải trước đã được xác minh!", - "PreloadVerifiedSubtitle": "Gói tải trước của bạn đã sẵn sàng và đã được xác minh!", + "DeltaPatchPreReqSubtitle4": "(Nhấn \"", + "DeltaPatchPreReqSubtitle5": "\" để tiếp tục hoặc \"", + "DeltaPatchPreReqSubtitle6": "\" để sử dụng cách cập nhật bình thường hoặc \"", + "DeltaPatchPreReqSubtitle7": "\" để hủy bỏ cập nhật)\"", + "GameConversionPrevFailedTitle": "Lần chuyển đổi game trước đã thất bại hoặc chưa hoàn thành!", + "GameConversionPrevFailedSubtitle": "Lần chuyển đổi game trước đó đã thất bại. Bạn có muốn khôi phục lại game để tránh phải tải lại không?", + "PreloadVerifiedTitle": "Xác minh gói tải trước thành công!", + "PreloadVerifiedSubtitle": "Gói tải trước đã được tải hoàn chỉnh và sẵn sàng để cài đặt!", "LocateInstallTitle": "Chọn thư mục cài đặt", - "LocateInstallSubtitle": "Trước khi tải trò chơi, bạn có muốn chọn vị trí cụ thể của thư mục không?", - "UnauthorizedDirTitle": "Không thể chọn vị trí này", - "UnauthorizedDirSubtitle": "Bạn đã chọn vị trí:\n\n{0}\n\nmà bạn không có quyền truy cập vào. Vui lòng chọn vị trí khác!", - "ChooseAudioLangSelectPlaceholder": "Chọn ngôn ngữ lồng tiếng của bạn", + "LocateInstallSubtitle": "Trước khi cài game, bạn có muốn chọn thư mục cài game không?", + "UnauthorizedDirTitle": "Đường dẫn không có quyền", + "UnauthorizedDirSubtitle": "Bạn không có quyền ghi tại vị trí đã chọn:\n\n{0}\n\nXin hãy chọn vị trí khác!", + "ChooseAudioLangSelectPlaceholder": "Chọn ngôn ngữ lồng tiếng", "ChooseAudioLangTitle": "Chọn ngôn ngữ lồng tiếng", - "ChooseAudioLangSubtitle": "Trước khi cài đặt, bạn muốn chọn gói ngôn ngữ lồng tiếng nào (Mặc định là Japanese - Nhật Bản):", - "AddtDownloadNeededTitle": "Tải về tệp bổ sung là cần thiết", - "AddtDownloadNeededSubtitle": "Bạn phải tải xuống ít nhất {0} tệp bổ sung. Bạn có thể bỏ qua tiến trình này và tải nó ở trong trò chơi.\nBạn có muốn tải về ngay bây giờ không?", - "AddtDownloadCompletedTitle": "Tệp bổ sung đã tải thành công!", - "AddtDownloadCompletedSubtitle": "Tệp bổ sung đã tải xuống thành công! \nChúc bạn chơi trò chơi vui vẻ!", - "RepairCompletedTitle": "Tiến trình sửa tệp đã hoàn tất!", + "ChooseAudioLangSubtitle": "Trước khi cài game, hãy chọn gói ngôn ngữ lồng tiếng (Mặc định là tiếng Nhật):", + "AddtDownloadNeededTitle": "Cần tải thêm dữ liệu", + "AddtDownloadNeededSubtitle": "Bạn phải tải về thêm ít nhất {0} tệp bổ sung. Bạn có thể bỏ qua tiến trình này và tải ở trong game sau.\nBạn có muốn tải về ngay bây giờ không?", + "AddtDownloadCompletedTitle": "Đã tải xong tệp bổ sung!", + "AddtDownloadCompletedSubtitle": "Đã tải xong tệp bổ sung! \nChúc bạn chơi game vui vẻ!", + "RepairCompletedTitle": "Tiến trình sửa đã hoàn tất!", "RepairCompletedSubtitle": "{0} tệp đã được sửa.", "RepairCompletedSubtitleNoBroken": "Không có tệp nào lỗi.", - "ExtremeGraphicsSettingsWarnTitle": "Đã chọn tuỳ chọn đồ hoạ cao nhất!", - "ExtremeGraphicsSettingsWarnSubtitle": "Bạn sặp đặt cài đặt cài sẵn thành Rất Cao!\r\nCài đặt Rất Cao về cơ bản là cài đặt cài sẵn chỉnh tỉ lệ kết xuất lên 1.6 lần với MSAA kích hoạt và RẤT KHÔNG TỐI ƯU!\r\n\r\nBạn có chắc là bạn muốn làm điều này?", - "MigrateExistingMoveDirectoryTitle": "Di chuyển Cài đặt Hiện tại cho: {0}", - "MigrateExistingInstallChoiceTitle": "Một Cài đặt Hiện tại của {0} đã được Phát hiện!", - "MigrateExistingInstallChoiceSubtitle1": "Bạn có một phiên bản cài đặt hiện tại của trò chơi sử dụng {0} trong thư mục này:", - "MigrateExistingInstallChoiceSubtitle2": "Bạn có một lựa chọn để di chuyển dữ liệu trò chơi hiện có của bạn vào một thư mục khác hoặc sử dụng thư mục hiện tại như một thư mục hiện có. Đề nghị bạn sử dụng thư mục hiện tại như một thư mục đã được cài đặt để đảm bảo rằng bạn vẫn có thể khởi chạy trò chơi của mình bằng cách sử dụng {0}.", - "ExistingInstallTitle": "Đã phát hiện vị trí trò chơi hiện tại!", - "ExistingInstallSubtitle": "Trò chơi đã được cài ở thư mục:\r\n\r\n{0}\r\n\r\nChúng tôi khuyến khích nên tích hợp trò chơi vào trình khởi chạy.\r\nĐừng lo lắng vì bạn vẫn dùng được trình khởi chạy gốc để mở trò chơi.\r\n\r\nBạn có muốn tiếp tục không?", - "ExistingInstallBHI3LTitle": "Đã phát hiện vị trí cài đặt của BetterHI3trình khởi chạy hiện tại!", - "ExistingInstallBHI3LSubtitle": "Trò chơi đã được cài ở thư mục:\r\n\r\n{0}\r\n\r\nChúng tôi khuyến khích nên tích hợp trò chơi vào trình khởi chạy Collapse.\r\nĐừng lo lắng vì bạn vẫn dùng được trình khởi chạy BetterHI3 để mở trò chơi.\r\n\r\nBạn có muốn tiếp tục không?", - "ExistingInstallSteamTitle": "Đã phát hiện vị trí cài đặt của Steam hiện tại!", - "ExistingInstallSteamSubtitle": "Trò chơi đã được cài trên Steam ở thư mục:\r\n\r\n{0}\r\n\r\nBạn có muốn đổi phiên này sang phiên bản Global (không phải của Steam) không?\nLưu ý: Sau khi quá trình chuyển đổi hoàn tất, bạn không thể đăng nhập tài khoản Steam của bạn. Chỉ có tài khoản của miHoYo/HoYoverse mới có thể sử dụng.\r\n\r\nBạn có muốn tiếp tục không?", - "SteamConvertNeedMigrateTitle": "Yêu cầu gộp thư mục", - "SteamConvertNeedMigrateSubtitle": "Bạn cần phải tích hợp thư mục trò chơi qua vị trí khác vì Collapse không có quyền truy cập vào thư mục này.\nChúng tôi khuyến khích bạn nên di chuyển toàn bộ qua thư mục của Collapsetrình khởi chạy nhưng bạn cũng có thể chọn thư mục khác theo ý bạn.\n\nBạn có muốn di chuyển nó tới thư mục trò chơi của trình khởi chạy này chứ?", - "SteamConvertIntegrityDoneTitle": "Hoàn tất kiểm tra tính toàn vẹn của tài nguyên!", - "SteamConvertIntegrityDoneSubtitle": "Đã hoàn tất kiểm tra tính toàn vẹn của dữ liệu trò chơi! Quá trình chuyển đổi sẽ tải tối thiểu {0} tệp tin.\nBạn có thể tiếp tục hoặc huỷ và làm sau.\n\nBạn có muốn bắt đầu quá trình chuyển đổi?", + "ExtremeGraphicsSettingsWarnTitle": "Đã chọn tùy chọn đồ hoạ Rất Cao!", + "ExtremeGraphicsSettingsWarnSubtitle": "Bạn đang đổi thiết lập đồ họa định sẵn thành Rất Cao!\r\nCài đặt Rất Cao về cơ bản là chỉnh độ rõ nét lên 1.6 và dùng khử răng cưa MSAA, RẤT KHÔNG TỐI ƯU!\r\n\r\nBạn có chắc muốn dùng thiết lập này chứ?", + "MigrateExistingMoveDirectoryTitle": "Di chuyển vị trí cài của: {0}", + "MigrateExistingInstallChoiceTitle": "Phát hiện trên máy đã cài {0}!", + "MigrateExistingInstallChoiceSubtitle1": "Collapse phát hiện bạn đã cài game từ trước bằng {0} tại đường dẫn:", + "MigrateExistingInstallChoiceSubtitle2": "Bạn có thể di chuyển dữ liệu game hiện có của bạn vào một thư mục khác hoặc sử dụng luôn thư mục hiện tại. Khuyến nghị bạn sử dụng luôn thư mục hiện tại để đảm bảo rằng bạn vẫn có thể khởi chạy game của mình bằng {0}.", + "ExistingInstallTitle": "Phát hiện trên máy đã cài game!", + "ExistingInstallSubtitle": "Collapse phát hiện bạn đã cài game từ trước tại:\r\n\r\n{0}\r\n\r\nChúng tôi khuyến khích bạn tích hợp game vào launcher.\r\nĐừng lo lắng vì bạn vẫn sẽ có thể dùng launcher chính thức để chạy game.\r\n\r\nBạn có muốn tiếp tục không?", + "ExistingInstallBHI3LTitle": "Phát hiện trên máy đã cài BetterHI3Launcher!", + "ExistingInstallBHI3LSubtitle": "Collapse phát hiện bạn đã cài game từ trước tại:\r\n\r\n{0}\r\n\r\nChúng tôi khuyến khích nên tích hợp game vào Collapse Launcher.\r\nĐừng lo lắng vì bạn vẫn sẽ có thể dùng BetterHi3Launcher để mở game.\r\n\r\nBạn có muốn tiếp tục không?", + "ExistingInstallSteamTitle": "Phát hiện trên máy đã cài game qua Steam!", + "ExistingInstallSteamSubtitle": "Collapse phát hiện bạn đã cài game qua Steam từ trước tại:\r\n\r\n{0}\r\n\r\nBạn có muốn chuyển đổi bản này sang bản quốc tế (không phải của Steam) không?\nLưu ý: Sau khi chuyển đổi, bạn sẽ không thể đăng nhập bằng tài khoản Steam mà chỉ có thể đăng nhập bằng thẻ thông hành miHoYo/HoYoverse.\r\n\r\nBạn có muốn tiếp tục không?", + "SteamConvertNeedMigrateTitle": "Yêu cầu di chuyển thư mục", + "SteamConvertNeedMigrateSubtitle": "Bạn cần phải đổi thư mục game qua vị trí khác vì Collapse không có quyền truy cập vào vị trí này.\nChúng tôi khuyến khích bạn nên di chuyển toàn bộ qua thư mục của CollapseLauncher nhưng bạn cũng có thể chọn thư mục khác tùy ý.\n\nBạn có muốn di chuyển tới thư mục game của launcher không?", + "SteamConvertIntegrityDoneTitle": "Đã kiểm tra tính hoàn thiện của tài nguyên!", + "SteamConvertIntegrityDoneSubtitle": "Đã hoàn tất kiểm tra tính hoàn chỉnh của dữ liệu game! Quá trình chuyển đổi sẽ tải tối thiểu {0}.\nBạn có thể tiếp tục hoặc hủy để khi khác làm.\n\nBạn có muốn bắt đầu chuyển đổi?", "SteamConvertFailedTitle": "Chuyển đổi thất bại!", - "SteamConvertFailedSubtitle": "Quá trình chuyển đổi đã thất bại! :(\nVui lòng thử lại quá trình chuyển đổi.", - "InstallDataCorruptTitle": "Cài đặt trò chơi đã bị hỏng", - "InstallDataCorruptSubtitle": "Một trong những tệp đã tải đã bị hỏng.\r\n\r\nHash server: {0}\r\nHash đã tải: {1}\r\n\r\nBạn có muốn tải lại tệp này không?", + "SteamConvertFailedSubtitle": "Quá trình chuyển đổi đã thất bại! :(\nHãy thử lại.", + "InstallDataCorruptTitle": "Bản cài game bị hỏng", + "InstallDataCorruptSubtitle": "Một trong số các tệp tải về đã bị hỏng.\r\n\r\nHash trên server: {0}\r\nHash đã tải: {1}\r\n\r\nBạn có muốn tải lại tệp này không?", "InstallCorruptDataAnywayTitle": "Giải nén dữ liệu bị hỏng", "InstallCorruptDataAnywaySubtitle1": "Bạn đang chuẩn bị giải nén dữ liệu bị hỏng này:", "InstallCorruptDataAnywaySubtitle2": "{0} - {1} ({2} byte)", - "InstallCorruptDataAnywaySubtitle3": "Hãy nhớ rằng việc trích xuất dữ liệu này có thể thất bại hoặc làm cho trò chơi không chạy được.\r\n\r\nBạn có chắc chắn muốn trích xuất dữ liệu này không?", + "InstallCorruptDataAnywaySubtitle3": "Lưu ý rằng việc giải nén dữ liệu này có thể sẽ thất bại hoặc làm cho game không chạy được.\r\n\r\nBạn có chắc muốn giải nén dữ liệu này không?", "InstallDataDownloadResumeTitle": "Tiếp tục tải?", - "InstallDataDownloadResumeSubtitle": "Bạn đã tải {0}/{1} trước đó.\r\n\r\nBạn có muốn tiếp tục tải?", + "InstallDataDownloadResumeSubtitle": "Trước đó bạn đã tải được {0}/{1}.\r\n\r\nBạn có muốn tiếp tục tải?", "InsufficientDiskTitle": "Dung lượng ổ cứng không đủ", - "InsufficientDiskSubtitle": "Bạn không có đủ dung lượng để thực hiện thao tác trên ổ {2} của bạn!\r\n\r\nDung lượng trống: {0}\r\nYêu cầu còn trống: {1}.\r\n\r\nHãy bảo đảm rằng bạn có đủ dung lượng đĩa trước khi tiếp tục.", - "RelocateFolderTitle": "Chọn lại vị trí lưu dữ liệu thư mục", - "RelocateFolderSubtitle": "Bạn đang sử dụng thư mục này làm nơi lưu dữ liệu thư mục:\r\n\r\n {0}\r\n\r\nBạn có muốn thay đổi không?", - "UninstallGameTitle": "Gỡ cài đặt trò chơi: {0}", - "UninstallGameSubtitle": "Bạn đang gỡ cài đặt trò chơi ở thư mục:\r\n\r\n{0}\r\n\r\nTiếp tục?", - "MigrationTitle": "Đang xác định vị trí thư mục", - "MigrationSubtitle": "Trước khi gộp, bạn có muốn chọn vị trí cụ thể của trò chơi?", - "NeedInstallMediaPackTitle": "Không tìm thấy Media Player!", - "NeedInstallMediaPackSubtitle1": "CẢNH BÁO: Bắt đầu từ phiên bản 5.8, Honkai Impact 3rd cần \"Media Player\" có sẵn trên máy bạn để chạy. Điều này sẽ sửa lỗi \"Không thể tải DLL 'cri_ware_unity'\" trong trò chơi.\r\n\r\n", - "NeedInstallMediaPackSubtitle2": "Bạn cần phải khởi động lại máy tính của bạn sau khi cài Media Player. Bạn có thể bo qua thông báo này, nhưng bạn sẽ nhận được cảnh báo \"Không thể tải DLL 'cri_ware_unity'\" ở lần tiếp theo.", - "InstallMediaPackCompleteTitle": "Media Player đã được cài đặt!", - "InstallMediaPackCompleteSubtitle": "Media Player đã được cài đặt trên máy bạn.\r\nHãy khởi động lại máy!", - "InstallingMediaPackTitle": "Đang cài đặt Media Player", - "InstallingMediaPackSubtitle": "Đợi cho đến khi cài đặt được hoàn tất...", + "InsufficientDiskSubtitle": "Không đủ dung lượng để cài game trên ổ {2}!\r\n\r\nDung lượng trống: {0}\r\nDung lượng cần: {1}.\r\n\r\nHãy bảo đảm rằng bạn có đủ dung lượng trên ổ trước khi tiếp tục.", + "RelocateFolderTitle": "Chọn lại thư mục dữ liệu ứng dụng", + "RelocateFolderSubtitle": "Bạn đang sử dụng thư mục này làm nơi lưu dữ liệu launcher:\r\n\r\n {0}\r\n\r\nBạn có muốn thay đổi không?", + "UninstallGameTitle": "Gỡ cài đặt game: {0}", + "UninstallGameSubtitle": "Bạn đang gỡ cài đặt game có vị trí tại:\r\n\r\n{0}\r\n\r\nTiếp tục?", + "MigrationTitle": "Chọn thư mục đích", + "MigrationSubtitle": "Trước khi di chuyển, bạn có muốn chọn vị trí lưu game không?", + "NeedInstallMediaPackTitle": "Không tìm thấy Media Feature Pack!", + "NeedInstallMediaPackSubtitle1": "CẢNH BÁO: Bắt đầu từ phiên bản 5.8, Honkai Impact 3rd cần \"Media Feature Pack\" được cài trên máy để có thể chạy. Điều này sẽ sửa lỗi \"Không thể tải DLL 'cri_ware_unity'\" trong game.\r\n\r\n", + "NeedInstallMediaPackSubtitle2": "Bạn cần khởi động lại máy tính sau khi cài Media Feature Pack. Bạn có thể bỏ qua thông báo này nếu bạn đã cài rồi hoặc vẫn muốn chơi game nhưng sẽ có rủi ro gặp lỗi nói trên khi chạy game.", + "InstallMediaPackCompleteTitle": "Đã cài đặt Media Feature Pack!", + "InstallMediaPackCompleteSubtitle": "Media Feature Pack đã được cài trên máy tính của bạn.\r\nHãy khởi động lại máy để áp dụng thay đổi!", + "InstallingMediaPackTitle": "Đang cài đặt Media Feature Pack", + "InstallingMediaPackSubtitle": "Đang chờ máy tính cài xong...", "InstallingMediaPackSubtitleFinished": "Đã hoàn thành", - "GameConfigBrokenTitle1": "Cấu hình trò chơi đã bị hỏng", - "GameConfigBrokenSubtitle1": "Cấu hình Scope của trình khởi chạy đã bị hỏng. Vui lòng chọn đường dẫn trò chơi của bạn bằng tay.", - "GameConfigBrokenSubtitle2": "\r\nHãy đảm bảo rằng vị trí của trò chơi phải trùng với tệp config.ini của trình khởi chạy được tìm thấy ở:\r\n\r\n{0}\r\n\r\n", - "GameConfigBrokenSubtitle3": "Nếu giá trị trên không hợp lệ, hãy di chuyển trò chơi của bạn tới nơi khác, sau ấn hãy ấn \"Vị trí thư mục\" để chọn đường dẫn.", - "CookbookLocateTitle": "Xác định tệp chuyển đổi của bạn", - "CookbookLocateSubtitle1": "Vui lòng xác định nơi tải về của tệp chuyển đổi trước khi bắt đầu tiến trình.\r\nNếu bạn chưa tải về, ", - "CookbookLocateSubtitle2": "ẤN VÀO ĐÂY", - "CookbookLocateSubtitle3": "Để tải về tệp chuyển đổi và sau đó ấn vào", + "GameConfigBrokenTitle1": "Cấu hình game bị hỏng", + "GameConfigBrokenSubtitle1": "Cấu hình scope của launcher đã bị hỏng. Vui lòng chọn đường dẫn game trước thủ công.", + "GameConfigBrokenSubtitle2": "\r\nHãy đảm bảo rằng đường dẫn tới game và đường dẫn tới tệp \"config.ini\" của launcher dưới đây là hai thư mục khác nhau:\r\n\r\n{0}\r\n\r\n", + "GameConfigBrokenSubtitle3": "Nếu chưa đáp ứng yêu cầu trên, hãy di chuyển game của bạn tới nơi khác, sau ấn ấn \"Chọn thư mục\" để chọn đường dẫn.", + "CookbookLocateTitle": "Chọn tệp chuyển đổi", + "CookbookLocateSubtitle1": "Vui lòng chọn tệp chuyển đổi đã tải trước khi bắt đầu.\r\nNếu bạn chưa tải, ", + "CookbookLocateSubtitle2": "NHẤN VÀO ĐÂY", + "CookbookLocateSubtitle3": " để tải về tệp chuyển đổi và sau đó nhấn vào", "CookbookLocateSubtitle4": "Tiếp tục", - "CookbookLocateSubtitle5": "để xác định vị trí đã tải tệp chuyển đổi và tiếp tục.\r\n\r\n", + "CookbookLocateSubtitle5": "để chọn vị trí đã tải tệp chuyển đổi và tiếp tục.\r\n\r\n", "CookbookLocateSubtitle6": "Lưu ý:\r\n", - "CookbookLocateSubtitle7": "Đây là tên của tệp chuyển đổi mà bạn cần phải tải xuống:\r\n", + "CookbookLocateSubtitle7": "Đây là tên tệp chuyển đổi mà bạn cần tải về:\r\n", - "PrivilegeMustRunTitle": "Collapse yêu cầu quyền của quản trị viên!", - "PrivilegeMustRunSubtitle": "Collapse yêu cầu quyền quản trị viên để hoạt động hoàn toàn. Bạn có muốn khởi động lại Collapse và chạy dưới quyền quản trị viên?", + "PrivilegeMustRunTitle": "Collapse yêu cầu quyền admin!", + "PrivilegeMustRunSubtitle": "Collapse yêu cầu quyền admin để hoạt động đúng cách. Bạn có muốn khởi động lại Collapse và chạy dưới quyền admin không?", "ReleaseChannelChangeTitle": "Thay đổi kênh phát hành", "ReleaseChannelChangeSubtitle1": "Bạn đang thay đổi kênh phát hành của bạn tới:", "ReleaseChannelChangeSubtitle2": "Lưu ý:", - "ReleaseChannelChangeSubtitle3": "Hành động này có thể làm thay đổi/khiến mọi thứ bị hỏng so với thiết lập hiện tại của bạn. Chúng tôi không chịu trách nhiệm về bất kỳ mất mát hoặc hư hỏng dữ liệu nào liên quan đến trò chơi của bạn.", - - "ForceUpdateCurrentInstallTitle": "Buộc cập nhật cài đặt hiện tại", - "ForceUpdateCurrentInstallSubtitle1": "Bạn sắp thực hiện cập nhật bắt buộc cho phiên bản hiện tại:", - "ForceUpdateCurrentInstallSubtitle2": "và chúng tôi khuyên bạn nên đóng (các) trò chơi hiện đang mở của mình.", - - "ChangePlaytimeTitle": "Bạn có chắc chắn muốn thay đổi thời gian chơi của mình không?", - "ChangePlaytimeSubtitle": "Thay đổi thời gian chơi của bạn sẽ ghi đè giá trị hiện tại bằng giá trị bạn vừa nhập.\n\nBạn có muốn tiếp tục?\n\nLưu ý: Điều này không ảnh hưởng đến cách Collapse hoạt động và bạn có thể thay đổi lại giá trị này bất kỳ lúc nào khi không chơi trò chơi.", - "ResetPlaytimeTitle": "Bạn có chắc muốn đặt lại thời gian chơi?", - "ResetPlaytimeSubtitle": "Đặt lại thời gian chơi của là đặt lại bộ đếm thời gian chơi và thống kê liên quan về lại 0. Đây là một", - "ResetPlaytimeSubtitle2": "phá hoại", - "ResetPlaytimeSubtitle3": " hành động, nghĩa là bạn không thể hoàn tác thao tác này sau khi đã xác nhận. \n\nBạn có muốn tiếp tục?\n\nLưu ý: Điều này không ảnh hưởng đến cách Collapse hoạt động và bạn có thể thay đổi lại giá trị này bất kỳ lúc nào khi không chơi trò chơi.", - "InvalidPlaytimeTitle": "Đã có lỗi khi lưu thời gian chơi của lần chơi này", - "InvalidPlaytimeSubtitle1": "Khác biệt giữa thời gian bắt đầu và kết thúc là một số âm.", - "InvalidPlaytimeSubtitle2": "Sẽ sử dụng giá trị thay thế được lưu mỗi phứt.", - "InvalidPlaytimeSubtitle3": "Vui lòng hạn chế thay đổi giờ máy tính khi đang chơi.", - - "LocateExePathTitle": "Xác định vị trí đường dẫn cài đặt thực thi", - "LocateExePathSubtitle": "Vui lòng chỉ Collapse tới vị trí thực thi của ứng dụng của bạn:", + "ReleaseChannelChangeSubtitle3": "Việc này có thể gây ra thay đổi không thể hoàn tác và/hoặc có thể khiến thiết lập hiện tại bị hỏng. Chúng tôi không chịu trách nhiệm về bất kỳ mất mát hay hư hỏng dữ liệu nào liên quan đến game của bạn.", + + "ForceUpdateCurrentInstallTitle": "Buộc cập nhật bản cài hiện tại", + "ForceUpdateCurrentInstallSubtitle1": "Bạn sắp thực hiện cập nhật bắt buộc cho bản cài:", + "ForceUpdateCurrentInstallSubtitle2": ", khuyến nghị bạn nên đóng hết các game đang mở.", + + "ChangePlaytimeTitle": "Xác nhận thay đổi thời gian chơi?", + "ChangePlaytimeSubtitle": "Thay đổi thời gian chơi của bạn sẽ ghi đè giá trị hiện tại bằng giá trị bạn vừa nhập.\n\nBạn có muốn tiếp tục?\n\nLưu ý: Việc này không ảnh hưởng đến cách Collapse hoạt động và bạn có thể thay đổi lại giá trị này bất kỳ lúc nào khi không chơi game.", + "ResetPlaytimeTitle": "Xác nhận đặt lại thời gian chơi?", + "ResetPlaytimeSubtitle": "Bạn sẽ đặt lại bộ đếm thời gian chơi và các thông số liên quan về 0. Hành động này", + "ResetPlaytimeSubtitle2": "không thể hoàn tác", + "ResetPlaytimeSubtitle3": ". \n\nBạn có muốn tiếp tục?\n\nLưu ý: Việc này không ảnh hưởng đến cách Collapse hoạt động và bạn có thể thay đổi lại giá trị này bất kỳ lúc nào khi không chơi game.", + "InvalidPlaytimeTitle": "Có lỗi xảy ra khi lưu thời gian chơi của phiên này", + "InvalidPlaytimeSubtitle1": "Collapse nhận về số âm khi tính thời gian chơi của phiên vừa rồi.", + "InvalidPlaytimeSubtitle2": "Sẽ sử dụng giá trị thay thế được lưu mỗi phút:", + "InvalidPlaytimeSubtitle3": "Vui lòng không thay đổi giờ máy tính khi đang trong game.", + + "LocateExePathTitle": "Chọn đường dẫn tệp thực thi", + "LocateExePathSubtitle": "Vui lòng trỏ Collapse tới vị trí tệp thực thi của ứng dụng:", "CannotUseAppLocationForGameDirTitle": "Thư mục không hợp lệ!", - "CannotUseAppLocationForGameDirSubtitle": "Bạn không thể sử dụng thư mục này vì nó đang được sử dụng làm thư mục hệ thống hoặc được sử dụng để thực thi chính của ứng dụng. Vui lòng chọn thư mục khác!", - "InvalidGameDirNewTitleFormat": "Đường dẫn sai: {0}", - "InvalidGameDirNewSubtitleSelectedPath": "Đã chọn đường dẫn:", - "InvalidGameDirNewSubtitleSelectOther": "Hãy chọn thư mục/vị trí khác:", + "CannotUseAppLocationForGameDirSubtitle": "Bạn không thể sử dụng thư mục này vì nó đang được sử dụng làm thư mục hệ thống hoặc đang là chỗ đặt tệp thực thi chính của ứng dụng. Vui lòng chọn thư mục khác!", + "InvalidGameDirNewTitleFormat": "Đường dẫn không hợp lệ: {0}", + "InvalidGameDirNewSubtitleSelectedPath": "Đường dẫn đã chọn:", + "InvalidGameDirNewSubtitleSelectOther": "Hãy chọn thư mục/vị trí khác!", "InvalidGameDirNew1Title": "Thư mục không hợp lệ!", - "InvalidGameDirNew1Subtitle": "Bạn không thể sử dụng thư mục này vì nó đang được sử dụng làm thư mục hệ thống hoặc được sử dụng để thực thi chính cho ứng dụng. Vui lòng chọn thư mục khác!", + "InvalidGameDirNew1Subtitle": "Bạn không thể sử dụng thư mục này vì nó đang được sử dụng làm thư mục hệ thống hoặc đang là chỗ đặt tệp thực thi chính của ứng dụng. Vui lòng chọn thư mục khác!", "InvalidGameDirNew2Title": "Không thể truy cập vào thư mục được chọn", - "InvalidGameDirNew2Subtitle": "Trình khởi chạy không có quyền truy cập vào thư mục này", - "InvalidGameDirNew3Title": "Không thể chọn thư mục gốc", - "InvalidGameDirNew3Subtitle": "Bạn đã chọn một đường dẫn trên thư mục gốc, và điều này bị cấm!", + "InvalidGameDirNew2Subtitle": "Launcher không có quyền truy cập vào thư mục này", + "InvalidGameDirNew3Title": "Không thể chọn đường dẫn gốc", + "InvalidGameDirNew3Subtitle": "Bạn không được chọn đường dẫn gốc (C:\\, D:\\) làm nơi cài game!", "InvalidGameDirNew4Title": "Không thể chọn thư mục Windows", - "InvalidGameDirNew4Subtitle": "Bạn không thể sử dụng thư mục Windows làm vị trí cài đặt trò chơi để tránh mọi điều không cần thiết có thể xảy ra.", + "InvalidGameDirNew4Subtitle": "Bạn không được sử dụng thư mục Windows làm vị trí cài game để giảm tối đa rủi ro.", "InvalidGameDirNew5Title": "Không thể chọn thư mục Program Data", - "InvalidGameDirNew5Subtitle": "Bạn không thể sử dụng thư mục Program Data làm vị trí cài đặt trò chơi để tránh mọi điều không cần thiết có thể xảy ra.", + "InvalidGameDirNew5Subtitle": "Bạn không được sử dụng thư mục Program Data làm vị trí cài game để giảm tối đa rủi ro.", "InvalidGameDirNew6Title": "Không thể chọn thư mục Program Files hay Program Files (x86)", - "InvalidGameDirNew6Subtitle": "Bạn không thể sử dụng thư mục Program Files hay Program Files (x86) làm vị trí cài đặt trò chơi để tránh mọi điều không cần thiết có thể xảy ra.", - "FolderDialogTitle1": "Chọn vị trí cài trò chơi", + "InvalidGameDirNew6Subtitle": "Bạn không được sử dụng thư mục Program Files hay Program Files (x86) làm vị trí cài đặt game để giảm tối đa rủi ro.", + "FolderDialogTitle1": "Chọn vị trí cài game", - "StopGameTitle": "Buộc dừng trò chơi", - "StopGameSubtitle": "Bạn có chắc chắn muốn buộc dừng trò chơi đang chạy hiện tại không?\nBạn có thể mất một số tiến trình trong trò chơi.", + "StopGameTitle": "Buộc dừng game", + "StopGameSubtitle": "Bạn có chắc chắn muốn buộc dừng game đang chạy hiện tại không?\nCó thể sẽ làm mất một số tiến độ trong game.", - "MeteredConnectionWarningTitle": "Đã phát hiện kết nối bằng Internet có giới hạn dữ liệu!", - "MeteredConnectionWarningSubtitle": "Kết nối internet hiện tại của bạn được phát hiện là 'Internet có giới hạn dữ liệu'! Tiếp tục quá trình cập nhật có thể phải trả thêm phí từ nhà cung cấp internet của bạn. Bạn có muốn tiếp tục không?", + "MeteredConnectionWarningTitle": "Phát hiện kết nối internet có giới hạn dữ liệu!", + "MeteredConnectionWarningSubtitle": "Collapse phát hiện kết nối internet hiện tại của bạn là 'Internet có giới hạn dữ liệu'! Bạn có thể phải trả thêm phí cho phía nhà cung cấp Internet của bạn nếu tiếp tục cập nhật. Vẫn tiếp tục chứ?", - "ResetKbShortcutsTitle": "Bạn có chắc chắn muốn đặt lại tất cả các phím tắt không?", - "ResetKbShortcutsSubtitle": "Điều này có nghĩa là mọi phím tắt sẽ được thay đổi thành tổ hợp phím mặc định của chúng. \n\nBạn có muốn tiếp tục không?\n\nLưu ý: Điều này không ảnh hưởng đến cách Collapse hoạt động và bạn vẫn có thể thay đổi tổ hợp phím tắt bằng cách truy cập menu Phím tắt.", + "ResetKbShortcutsTitle": "Xác nhận đặt lại phím tắt?", + "ResetKbShortcutsSubtitle": "Bạn đang thay đổi tất cả phím tắt về tổ hợp phím mặc định ban đầu. \n\nBạn có muốn tiếp tục không?\n\nLưu ý: Việc này không ảnh hưởng đến cách Collapse hoạt động và bạn có thể thay đổi lại tổ hợp phím thông qua giao diện xem phím tắt.", - "OperationErrorDiskSpaceInsufficientTitle": "Dung lượng trong ổ đĩa: {0} quá tải!", - "OperationErrorDiskSpaceInsufficientMsg": "Bạn không có đủ dung lượng để thực hiện thao tác trên ổ {2}r của bạn!\r\n\r\nDung lượng trống: {0}\r\nYêu cầu còn trống: {1}.\r\n\r\nHãy bảo đảm rằng bạn có đủ dung lượng đĩa trước khi tiếp tục.", + "OperationErrorDiskSpaceInsufficientTitle": "Dung lượng ổ: {0} không đủ!", + "OperationErrorDiskSpaceInsufficientMsg": "Không đủ dung lượng trên ổ {2} để thực hiện hành động này!\r\n\r\nDung lượng trống: {0}\r\nDung lượng cần: {1}.\r\n\r\nHãy bảo đảm rằng bạn có đủ dung lượng trên ổ trước khi tiếp tục.", - "OperationWarningNotCancellableTitle": "Cảnh báo: Tiến trình này KHÔNG THỂ DỪNG!", - "OperationWarningNotCancellableMsg1": "Bạn có thể cần kiểm tra xem có bất kỳ tác vụ nặng nào đang chạy trên máy tính của bạn để tránh các vấn đề có thể xảy ra trong quá trình chạy. Hãy nhớ rằng bạn.", - "OperationWarningNotCancellableMsg2": "KHÔNG THỂ HỦY TIẾN TRÌNH NÀY!", - "OperationWarningNotCancellableMsg3": "Trong khi nó đang chạy!\r\n\r\nNhấp vào \"", + "OperationWarningNotCancellableTitle": "Cảnh báo: Hành động này này KHÔNG THỂ ĐƯỢC HỦY!", + "OperationWarningNotCancellableMsg1": "Bạn nên đóng hết tất cả các tác vụ nặng đang chạy trên máy tính để tránh các vấn đề có thể xảy ra trong quá trình chạy. Hãy nhớ rằng bạn ", + "OperationWarningNotCancellableMsg2": "KHÔNG THỂ HỦY TIẾN TRÌNH NÀY", + "OperationWarningNotCancellableMsg3": " một khi đã bắt đầu!\r\n\r\nNhấn \"", "OperationWarningNotCancellableMsg4": "\" để bắt đầu quá trình hoặc \"", - "OperationWarningNotCancellableMsg5": "\" để hủy thao tác.\"", + "OperationWarningNotCancellableMsg5": "\" để hủy thao tác.", "GenericWarningExceptionTitle": "Cảnh báo", - "GenericWarningExceptionSubtitle": "Đây không phải là một vấn đề lớn, nhưng chúng tôi nghĩ rằng chúng tôi nên thông báo cho bạn biết.", + "GenericWarningExceptionSubtitle": "Đây không phải là vấn đề quá lớn nhưng bạn vẫn nên biết:", - "ShortcutCreationConfirmTitle": "Bạn có chắc chắn muốn tiếp tục không?", - "ShortcutCreationConfirmSubtitle1": "Một đường tắt sẽ được tạo ra trong đường dẫn sau đây:", - "ShortcutCreationConfirmSubtitle2": "Nếu đã có một phím tắt cùng tên trong thư mục này, nó sẽ được thay thế.", - "ShortcutCreationConfirmCheckBox": "Tự động bắt đầu trò chơi sau khi sử dụng lối tắt này", + "ShortcutCreationConfirmTitle": "Xác nhận tiếp tục?", + "ShortcutCreationConfirmSubtitle1": "Collapse sẽ tạo một lối tắt tại vị trí sau:", + "ShortcutCreationConfirmSubtitle2": "Nếu đã có một lối tắt cùng tên tại vị trí này thì nó sẽ bị thay thế.", + "ShortcutCreationConfirmCheckBox": "Tự động chạy game sau khi mở lối tắt", "ShortcutCreationSuccessTitle": "Thành công!", - "ShortcutCreationSuccessSubtitle1": "Một lối tắt mới lấp lánh đã được tạo ra!", - "ShortcutCreationSuccessSubtitle2": "Vị trí:", + "ShortcutCreationSuccessSubtitle1": "Đã tạo lối tắt mới!", + "ShortcutCreationSuccessSubtitle2": "Vị trí: ", "ShortcutCreationSuccessSubtitle3": "Lưu ý:", - "ShortcutCreationSuccessSubtitle4": "• Dùng lối tắt này sẽ khởi động trò chơi sau khi tải khu vực.", - "ShortcutCreationSuccessSubtitle5": "• Nếu trò chơi chưa được cài đặt/cập nhật, Collapse sẽ thử cài đặt/cập nhật nó. Lưu ý rằng các hộp thoại liên quan tới các tiến trình này sẽ vẫn được hiển thị.", + "ShortcutCreationSuccessSubtitle4": " • Dùng lối tắt này sẽ khởi động game ngay sau khi launcher tải server xong.", + "ShortcutCreationSuccessSubtitle5": " • Nếu game chưa được cài đặt/cập nhật, Collapse sẽ cài đặt/cập nhật nó. Lưu ý rằng các thông báo liên quan tới tiến trình này sẽ vẫn được hiển thị.", - "SteamShortcutCreationConfirmTitle": "Bạn có chắc chắn muốn tiếp tục không?", - "SteamShortcutCreationConfirmSubtitle1": "Một lối tắt sẽ được thêm cho mọi người dùng Steam trên máy tính này.", - "SteamShortcutCreationConfirmSubtitle2": "Nếu đã thêm rồi, các tài nguyên liên quan tới lối tắt sẽ được xác minh.", - "SteamShortcutCreationConfirmCheckBox": "Tự động bắt đầu trò chơi sau khi sử dụng lối tắt này", + "SteamShortcutCreationConfirmTitle": "Xác nhận tiếp tục?", + "SteamShortcutCreationConfirmSubtitle1": "Collapse sẽ tạo một lối tắt cho tất cả người dùng Steam trên máy tính này.", + "SteamShortcutCreationConfirmSubtitle2": "Nếu đã thêm từ trước thì các tài nguyên liên quan tới lối tắt sẽ được xác minh.", + "SteamShortcutCreationConfirmCheckBox": "Tự động chạy game sau khi mở lối tắt", "SteamShortcutCreationSuccessTitle": "Thành công!", - "SteamShortcutCreationSuccessSubtitle1": "Một lối tắt mới toanh đã được thêm cho mọi người dùng Steam trên máy tính này!", + "SteamShortcutCreationSuccessSubtitle1": "Đã tạo lối tắt mới cho tất cả người dùng Steam trên máy tính này!", "SteamShortcutCreationSuccessSubtitle2": "Lưu ý:", - "SteamShortcutCreationSuccessSubtitle3": "• Dùng lối tắt này sẽ khởi động trò chơi sau khi tải khu vực.", - "SteamShortcutCreationSuccessSubtitle4": "• Chạy lại tiến trình này sẽ sửa các hình ảnh bị lỗi/thiếu liên quan tới lối tắt.", - "SteamShortcutCreationSuccessSubtitle5": "• Lối tắt mới chỉ được hiển thị sau khi tải lại Steam.", - "SteamShortcutCreationSuccessSubtitle6": "• Để sử dụng lớp phủ Steam, Steam cần được chạy với quyền quản trị và Collapse phải bị đóng hoàn toàn hoặc tính năng \"Cho phép chạy nhiều tiến trình\" được bật trong cài đặt.", - "SteamShortcutCreationSuccessSubtitle7": "• Nếu trò chơi chưa được cài đặt/cập nhật, Collapse sẽ thử cài đặt/cập nhật nó. Lưu ý rằng các hộp thoại liên quan tới các tiến trình này sẽ vẫn được hiển thị.", + "SteamShortcutCreationSuccessSubtitle3": " • Dùng lối tắt này sẽ khởi động game ngay sau khi launcher tải server xong.", + "SteamShortcutCreationSuccessSubtitle4": " • Chạy lại tiến trình này sẽ sửa các ảnh bị lỗi/thiếu của lối tắt.", + "SteamShortcutCreationSuccessSubtitle5": " • Lối tắt mới chỉ hiển thị sau khi tải lại Steam.", + "SteamShortcutCreationSuccessSubtitle6": " • Để sử dụng overlay của Steam, (1) Steam cần được chạy bằng quyền admin và (2) Collapse phải được đóng hoàn toàn hoặc tính năng \"Cho phép chạy nhiều tiến trình\" phải được bật trong cài đặt.", + "SteamShortcutCreationSuccessSubtitle7": " • Nếu game chưa được cài đặt/cập nhật, Collapse sẽ cài đặt/cập nhật nó. Lưu ý rằng các thông báo liên quan tới tiến trình này sẽ vẫn được hiển thị.", "SteamShortcutCreationFailureTitle": "Thư mục dữ liệu Steam không hợp lệ", "SteamShortcutCreationFailureSubtitle": "Không thể tìm thấy thư mục userdata hợp lệ.\n\nVui lòng nhớ đăng nhập vào phần mềm Steam ít nhất một lần trước khi sử dụng chức năng này.", "SteamShortcutTitle": "Lối tắt Steam", - "SteamShortcutDownloadingImages": "Đang tải Ảnh Lưới Steam ({0}/{1})", + "SteamShortcutDownloadingImages": "Đang tải về ảnh bìa cho Steam ({0}/{1})", "DownloadSettingsTitle": "Cài đặt tải xuống", - "DownloadSettingsOption1": "Khởi động trò chơi sau khi cài đặt", + "DownloadSettingsOption1": "Khởi động game ngay sau khi cài đặt", - "OpenInExternalBrowser": "Mở trong trình duyệt", - "CloseOverlay": "Đóng cửa sổ phủ", + "OpenInExternalBrowser": "Mở bằng trình duyệt bên ngoài", + "CloseOverlay": "Đóng overlay", - "DbGenerateUid_Title": "Bạn có chắc là bạn có muốn đổi ID người dùng không?", + "DbGenerateUid_Title": "Xác nhận đổi ID người dùng?", "DbGenerateUid_Content": "Việc thay đổi ID người dùng hiện tại sẽ khiến dữ liệu liên quan bị mất nếu bạn làm mất.", - "SophonIncrementUpdateUnavailTitle": "Bản vá cập nhật nhỏ không khả dụng: Phiên bản quá lỗi thời!", - "SophonIncrementUpdateUnavailSubtitle1": "Phiên bản trò chơi: {0}", - "SophonIncrementUpdateUnavailSubtitle2": "quá lỗi thời", - "SophonIncrementUpdateUnavailSubtitle3": " và bản cập nhật cho phiên bản của bạn không khả dụng. Tuy nhiên, bạn vẫn có thể cập nhật trò chơi của mình bằng cách tải lại toàn bộ trò chơi từ đầu.", - "SophonIncrementUpdateUnavailSubtitle4": "Nhấp vào \"{0}\" để tiếp tục cập nhật toàn bộ hoặc nhấp vào \"{1}\" để hủy quy trình", - - "UACWarningTitle": "Cảnh báo: Phát hiện vô hiệu hóa UAC", - "UACWarningContent": "Vô hiệu hoá Kiểm Soát Tài Khoản Người Dùng (UAC hoặc User Account Control) không bao giờ là một ý tưởng hay.\nBảo mật của hệ điều hành sẽ bị xâm phạm và trò chơi có thể không chạy đúng cách.\nChọn nút “Tìm hiểu thêm ”để tìm hiểu cách bật UAC.\nMục nhập liên quan là: “Run all administrators in Admin Approval Mode.” (Tiếng Anh)", + "SophonIncrementUpdateUnavailTitle": "Không có bản vá phù hợp: Phiên bản quá lỗi thời!", + "SophonIncrementUpdateUnavailSubtitle1": "Phiên bản game hiện tại: {0}", + "SophonIncrementUpdateUnavailSubtitle2": " quá lỗi thời", + "SophonIncrementUpdateUnavailSubtitle3": " nên máy chủ cập nhật không có tài nguyên cần để cập nhật từ phiên bản này. Bạn vẫn có thể cập nhật game bằng cách tải lại từ đầu.", + "SophonIncrementUpdateUnavailSubtitle4": "Nhấn \"{0}\" để tiếp tục cập nhật toàn bộ hoặc nhấp vào \"{1}\" để hủy", + + "SophonAdditionalPkgAvailableUpdateTitle": "Có thể cập nhật gói bổ sung!", + "SophonAdditionalPkgAvailableDownloadTitle": "Có thể tải gói bổ sung!", + + "SophonAdditionalPkgAvailableSubtitle1": "Game của bạn có nội dung tải thêm. Dung lượng của gói tải thêm này là:", + "SophonAdditionalPkgAvailableSubtitle2": ". Nếu bạn chọn tải thêm gói bổ sung này thì tổng dung lượng cần tải sẽ là:", + "SophonAdditionalPkgAvailableSubtitle3": ".", + "SophonAdditionalPkgAvailableSubtitle4": "Nhấn", + "SophonAdditionalPkgAvailableSubtitle5": "nếu bạn muốn tải gói bổ sung hoặc nhấn", + "SophonAdditionalPkgAvailableSubtitle6": "nếu bạn chỉ muốn tải tệp cơ bản với tổng dung lượng:", + "SophonAdditionalPkgAvailableSubtitle7": ".", + "SophonAdditionalPkgAvailableFootnote1": "Lưu ý:", + "SophonAdditionalPkgAvailableFootnote2": "Bạn có thể vẫn sẽ phải tải gói bổ sung ở trong game nếu bây giờ bạn chọn chỉ tải gói cơ bản.", + "SophonAdditionalPkgSeeDetailsBtn": "Xem chi tiết gói bổ sung", + "SophonAdditionalConfirmYesBtn": "Tải toàn bộ", + "SophonAdditionalConfirmNoBtn": "Chỉ tải gói cơ bản", + + "UACWarningTitle": "Cảnh báo: Phát hiện UAC bị vô hiệu hóa", + "UACWarningContent": "Bạn không nên vô hiệu hoá Kiểm soát Tài khoản Người dùng (User Account Control, hay UAC).\nBảo mật của hệ điều hành sẽ bị xâm phạm và game có thể không chạy đúng cách.\nNhấn \"Tìm hiểu thêm\" để xem cách bật lại UAC.\nChỉ mục liên quan là: \"Run all administrators in Admin Approval Mode\".", "UACWarningLearnMore": "Tìm hiểu thêm", - "UACWarningDontShowAgain": "Đừng hiển thị lại nữa", + "UACWarningDontShowAgain": "Không hiển thị lại nữa", - "EnsureExitTitle": "Đang thoát ứng dụng", - "EnsureExitSubtitle": "Có những tác vụ quan trọng đang chạy ngầm. Bạn có chắc chắn muốn thoát không?", + "EnsureExitTitle": "Thoát ứng dụng", + "EnsureExitSubtitle": "Đang có tác vụ quan trọng đang chạy ngầm.", + "EnsureExitSubtitle2": "Bạn có chắc chắn muôn thoát không?", - "UserFeedback_DialogTitle": "Chia sẻ suy nghĩ của bạn", - "UserFeedback_TextFieldTitleHeader": "Tiêu Đề Phản Hồi", - "UserFeedback_TextFieldTitlePlaceholder": "Ghi Tiêu đề Phản Hồi của bạn ở đây", + "UserFeedback_DialogTitle": "Chia sẻ cảm nhận của bạn", + "UserFeedback_TextFieldTitleHeader": "Tiêu đề phản hồi", + "UserFeedback_TextFieldTitlePlaceholder": "Ghi tiêu đề của phản hồi tại đây...", "UserFeedback_TextFieldMessageHeader": "Mô tả", - "UserFeedback_TextFieldMessagePlaceholder": "Mô tả…", + "UserFeedback_TextFieldMessagePlaceholder": "Mô tả...", "UserFeedback_TextFieldRequired": "(bắt buộc)", "UserFeedback_RatingText": "Bạn có thể chia sẻ xếp hạng của mình không?", - "UserFeedback_CancelBtn": "Huỷ", - "UserFeedback_SubmitBtn": "Gửi Phản Hồi", - "UserFeedback_SubmitBtn_Processing": "Đang xử lý…", - "UserFeedback_SubmitBtn_Completed": "Đã gữi!", - "UserFeedback_SubmitBtn_Cancelled": "Đã huỷ!" + "UserFeedback_CancelBtn": "Hủy", + "UserFeedback_SubmitBtn": "Gửi phản hồi", + "UserFeedback_SubmitBtn_Processing": "Đang xử lý...", + "UserFeedback_SubmitBtn_Completed": "Đã gửi!", + "UserFeedback_SubmitBtn_Cancelled": "Đã hủy!", + + "PluginManagerUpdateAvailableTitle": "Hiện có {0} plugin đã sẵn sàng cập nhật!", + "PluginManagerUpdateAvailableSubtitle1": "Hiện có {0} bản cập nhật plugin. Launcher sẽ phải khởi động lại để áp dụng cập nhật cho các plugin sau:", + "PluginManagerUpdateAvailableSubtitle2": "Bạn có muốn khởi động lại launcher không?", + "PluginManagerUpdateAvailableCancelBtn": "Để sau", + "PluginManagerUpdateAvailableConfirmBtn": "Khởi động lại", + "PluginManagerUpdateAvailableToManagerMenuBtn": "Truy cập {0}", + + "LauncherRestartTitle": "Đang khởi động lại trình khởi chạy Collapse", + "LauncherRestartSubtitle1": "Bạn đang chuẩn bị khởi động lại trình khởi chạy. Hãy đảm bảo đóng hoặc hủy mọi hoạt động nền trước khi khởi động lại trình khởi chạy.", + "LauncherRestartSubtitle2": "Bạn có muốn khởi động lại trình khởi chạy không?", + + "PostInstallBehaviour_Title": "Hành vi sau khi cài đặt/cập nhật", + "PostInstallBehaviour_Subtitle": "Hành vi sau khi cài đặt/cập nhật thành công", + "PostInstallBehaviour_Subtitle2": "Độ trễ thời gian trước khi tắt máy/khởi động lại", + "PostInstallBehaviour_EnumNothing": "Không làm gì hết", + "PostInstallBehaviour_EnumStartGame": "Bắt đầu game", + "PostInstallBehaviour_EnumHibernate": "Ngủ đông", + "PostInstallBehaviour_EnumRestart": "Khởi động lại", + "PostInstallBehaviour_EnumShutdown": "Tắt máy" }, "_FileMigrationProcess": { @@ -1083,7 +1211,7 @@ "SpeedIndicatorTitle": "Tốc độ:", "FileCountIndicatorTitle": "Tệp đã xử lý:", "LocateFolderSubtitle": "Chọn vị trí để di chuyển tệp/thư mục tới.", - "ChoosePathTextBoxPlaceholder": "Chọn đường đẫn đích:", + "ChoosePathTextBoxPlaceholder": "Chọn đường đẫn đích...", "ChoosePathButton": "Chọn đích", "ChoosePathErrorTitle": "Đã xảy ra lỗi!", "ChoosePathErrorPathIdentical": "Đường dẫn đầu ra bạn chọn nằm trong hoặc giống hệt với vị trí hiện tại!\r\nVui lòng chọn vị trí khác", @@ -1093,149 +1221,149 @@ }, "_InstallMgmt": { - "IntegrityCheckTitle": "Kiểm tra tính toàn vẹn", + "IntegrityCheckTitle": "Kiểm tra tính hoàn chỉnh", "PreparePatchTitle": "Đang chuẩn bị bản vá", - "AddtDownloadTitle": "Tuỳ chọn. Tải về: {0}/{1}", - "RepairFilesRequiredShowFilesBtn": "Hiển thị danh sách các tệp lỗi", - "RepairFilesRequiredTitle": "{0} tệp nào cần được sửa!", - "RepairFilesRequiredSubtitle": "Bạn cần ít nhất {0} tệp ({1}) cần được sửa trước khi cập nhật\r\n\r\nLưu ý: Quá trình này có thể lâu hơn dự kiên (phụ thuộc vào tốc độ và độ ổn định của mạng). Hãy cân nhắc sử dụng VPN (như ProtonVPN) nếu bạn có vấn đề về việc tải chậm :)" + "AddtDownloadTitle": "Tải thêm: {0}/{1}", + "RepairFilesRequiredShowFilesBtn": "Hiện danh sách các tệp lỗi", + "RepairFilesRequiredTitle": "{0} tệp cần được sửa!", + "RepairFilesRequiredSubtitle": "Bạn cần sửa ít nhất {0} tệp ({1}) trước khi có thể cập nhật!\r\n\r\nLưu ý: Quá trình này có thể lâu hơn dự kiên (phụ thuộc vào tốc độ và độ ổn định của mạng). Hãy cân nhắc sử dụng VPN nếu bạn có tốc độ tải chậm :)" }, "_InstallConvert": { "PageTitle": "Chuyển đổi xuyên phiên bản", - "Step1Title": "Chọn trò chơi và tìm kiếm các gói phụ thuộc", - "Step2Title": "Đang tải các gói", - "Step2Subtitle": "Đang truy cập API...", + "Step1Title": "Chọn game và tìm kiếm các gói phụ thuộc", + "Step2Title": "Đang tải các gói tin cần thiết", + "Step2Subtitle": "Đang truy vấn API...", "Step3Title": "Đang chuẩn bị tài nguyên", "Step3Title1": "Đang sửa tài nguyên", "Step3Title2": "Đang xác minh tài nguyên", "Step3Subtitle": "Đang chuẩn bị tài nguyên", "Step4Title": "Tác vụ chuyển đổi", "Step4Subtitle": "Đang bắt đầu chuyển đổi...", - "Step5Title": "Xác thực tính toàn vẹn của gói", + "Step5Title": "Xác thực tính hoàn chỉnh của gói tin", "Step5Subtitle": "Đang đợi để xác thực...", "StepNotRunning": "Chưa được chạy", "PageFooter1": "Vui lòng", "PageFooter2": "KHÔNG", - "PageFooter3": "đóng trình khởi chạy khi quá trình chuyển đổi đang chạy", - "SelectDialogTitle": "Chọn trò chơi", + "PageFooter3": "đóng launcher khi quá trình chuyển đổi đang chạy", + "SelectDialogTitle": "Chọn game", "SelectDialogSource": "Chọn nguồn", "SelectDialogTarget": "Chọn mục tiêu", - "SelectDialogSubtitle": "Lưu ý: việc chuyển đổi sẽ làm hỏng tình nguyên vẹn của trình khởi chạy mặc định nếu bạn cài trò chơi này bằng cách gộp chung với trình khởi chạy này.\r\n\r\nVui lòng chọn nguồn và mục tiêu của trò chơi để chuyển đổi:", - "SelectDialogSubtitleNotInstalled": "Nguồn trò chơi chưa được cài đặt! Vui lòng chọn trò chơi khác.", + "SelectDialogSubtitle": "Lưu ý: việc chuyển đổi sẽ làm hỏng tình nguyên vẹn của launcher mặc định nếu bạn cài game này bằng cách gộp chung với launcher này.\r\n\r\nVui lòng chọn nguồn và mục tiêu của game để chuyển đổi:", + "SelectDialogSubtitleNotInstalled": "Nguồn game chưa được cài đặt! Vui lòng chọn game khác.", "ConvertSuccessTitle": "Chuyển đổi hoàn tất", - "ConvertSuccessSubtitle": "Chuyển đổi trò chơi từ {0} qua {1} đã hoàn tất!", - "CookbookDownloadTitle": "Đang tải các gói", - "CookbookDownloadSubtitle": "Đang tải các gói cho việc chuyển đổi từ {0} qua {1}", + "ConvertSuccessSubtitle": "Hoàn thành chuyển đổi game từ {0} qua {1}!", + "CookbookDownloadTitle": "Đang tải các tin cần thiết", + "CookbookDownloadSubtitle": "Đang tải các gói tin cần thiết cho việc chuyển đổi từ {0} qua {1}", - "CookbookFileBrowserFileTypeCategory": "Tệp chuyển đổi {0} sang {1}", + "CookbookFileBrowserFileTypeCategory": "Tệp chuyển đổi {0} qua {1}", - "CancelBtn": "Huỷ quá trình chuyển đổi", - "CancelMsgTitle": "Đang huỷ quá trình chuyển đổi...", - "CancelMsgSubtitle1": "Bạn đang muốn huỷ quá trình chuyển đổi. Bất kỳ quá trình chuyển đổi nào cũng sẽ bị dừng lại.\r\n\r\nBạn có chắc không?", - "CancelMsgSubtitle2": "Bạn đang muốn huỷ quá trình chuyển đổi nhưng trò chơi cảu bạn đã chuyển qua {0} trước đó. Bạn sẽ bỏ qua việc \"Xác minh tính toàn vẹn sau khi chuyển đổi\".\r\n\r\nBạn có chắc không?" + "CancelBtn": "Hủy quá trình chuyển đổi", + "CancelMsgTitle": "Đang hủy quá trình chuyển đổi...", + "CancelMsgSubtitle1": "Bạn đang muốn hủy quá trình chuyển đổi. Bất kỳ quá trình chuyển đổi nào cũng sẽ bị dừng lại.\r\n\r\nXác nhận tiếp tục?", + "CancelMsgSubtitle2": "Bạn đang muốn hủy quá trình chuyển đổi nhưng game của bạn đã được chuyển đổi qua {0} rồi. Bạn sẽ bỏ qua bước \"Xác minh tính hoàn chỉnh sau khi chuyển đổi\".\r\n\r\nXác nhận tiếp tục?" }, "_InstallMigrateSteam": { - "PageTitle": "Chuyển đổi của Steam", + "PageTitle": "Chuyển đổi Steam", "Step1Title": "Kiểm tra quyền thư mục", "Step1Subtitle": "Đang kiểm tra quyền của thư mục", - "Step2Title": "Đang gộp vị trí trò chơi", + "Step2Title": "Đang gộp vị trí game", "Step2Subtitle1": "Quá trình gộp sẽ chạy trong 5 giây. VUi lòng ấn đồng ý (Yes) khi có thông báo hiện ra để bắt đầu quá trình chuyển đổi.", "Step2Subtitle2": "Đang chạy...", - "Step3Title": "Đang so sánh tính toàn vẹn của dữ liệu trò chơi cho quá trình chuyển đổi", + "Step3Title": "Đang so sánh tính hoàn chỉnh của dữ liệu game cho quá trình chuyển đổi", "Step3Subtitle": "Đang truy cập quyền của API...", "Step4Title": "Tác vụ chuyển đỏi", "Step4Subtitle": "Đang đợi yêu cầu...", - "Step5Title": "Xác thực tính toàn vẹn của dữ liệu", + "Step5Title": "Xác thực tính hoàn chỉnh của dữ liệu", "Step5Subtitle": "Đang xác thực quyền truy cập API...", "StepNotRunning": "Chưa được chạy", "PageFooter1": "Vui lòng", "PageFooter2": "KHÔNG", - "PageFooter3": "đổi qua trang khác hoặc đóng trình khởi chạy khi quá trình này diễn ra", - "SelectDialogTitle": "Chọn trò chơi", + "PageFooter3": "đổi qua trang khác hoặc đóng launcher khi quá trình này diễn ra", + "SelectDialogTitle": "Chọn game", "SelectDialogSource": "Chọn nguồn", "SelectDialogTarget": "Chọn muc tiêu", - "SelectDialogSubtitle": "Lưu ý: Việc chuyển đổi sẽ làm hỏng tình nguyên vẹn của trình khởi chạy mặc định nếu bạn cài trò chơi này bằng cách gộp chung với trình khởi chạy này.\r\n\r\nVui lòng chọn nguồn và mục tiêu của trò chơi để chuyển đổi:", - "SelectDialogSubtitleNotInstalled": "Nguồn trò chơi chưa được cài đặt! Vui lòng chọn trò chơi khác.", + "SelectDialogSubtitle": "Lưu ý: Việc chuyển đổi sẽ làm hỏng tình nguyên vẹn của launcher mặc định nếu bạn cài game này bằng cách gộp chung với launcher này.\r\n\r\nVui lòng chọn nguồn và mục tiêu của game để chuyển đổi:", + "SelectDialogSubtitleNotInstalled": "Nguồn game chưa được cài đặt! Vui lòng chọn game khác.", "ConvertSuccessTitle": "Chuyển đổi hoàn tất", - "ConvertSuccessSubtitle": "Chuyển đổi trò chơi từ {0} qua {1} đã hoàn tất!", + "ConvertSuccessSubtitle": "Hoàn tất chuyển đổi game từ {0} qua {1}!", "InnerCheckFile": "Đang kiểm tra {0} tệp [{1}/{2}]: {3}", "InnerCheckBlock1": "Đang kiểm tra {0}: {1}", - "InnerCheckBlock2": "Đang kiểm tra {0]: {1} -> (0x{2} | N: 0x{3})", + "InnerCheckBlock2": "Đang kiểm tra {0}: {1} -> (0x{2} | S: 0x{3})", "InnerConvertFile1": "Đang chuyển đổi {0} tệp [{1}/{2}]: {3}", "InnerConvertFile2": "Đang tải {0} [{1}/{2}]: {3}", - "InnerConvertFile3": "Đang tải {0} [{1}/{2}]: {3} -> (0x{4} | N: 0x{5})" + "InnerConvertFile3": "Đang tải {0} [{1}/{2}]: {3} -> (0x{4} | S: 0x{5})" }, "_InstallMigrate": { - "PageTitle": "Gộp trò chơi", - "Step1Title": "Quá trình gộp sẽ bắt đầu trong 5 giây. VUi lòng ấn đồng ý (Yes) khi có thông báo hiện ra để bắt đầu quá trình chuyển đổi", + "PageTitle": "Gộp game", + "Step1Title": "Quá trình gộp sẽ bắt đầu trong 5 giây. Vui lòng ấn đồng ý (Yes) khi có thông báo hiện ra để bắt đầu quá trình chuyển đổi", "Step2Title": "Đang trong quá trình gộp. Bạn có thể sẽ thấy cửa sổ lệnh hiện ra. Vui lòng đợi cho đến khi quá trình diễn ra hoàn tất", "Step3Title": "Quá trình gộp đã xong! Đang quay lại...", - "StepCancelledTitle": "Quá trình gộp đã huỷ. Đang quay lại...", + "StepCancelledTitle": "Quá trình gộp đã hủy. Đang quay lại...", "PageFooter1": "Vui lòng", "PageFooter2": "KHÔNG", - "PageFooter3": "đổi sang trang khác hoặc đóng trình khởi chạy khi quá trình này diễn ra" + "PageFooter3": "đổi sang trang khác hoặc đóng launcher khi quá trình này diễn ra" }, "_UpdatePage": { - "PageTitle1": "CẬP NHẬT", - "PageTitle2": "Đà CÓ SẴN!", + "PageTitle1": "Đà CÓ", + "PageTitle2": "BẢN CẬP NHẬT!", "VerCurLabel": "Phiên bản hiện tại:", "VerNewLabel": "Phiên bản mới:", - "VerChannelLabel": "Cập nhật kênh:", - "VerDateLabel": "Được biên dịch từ:", - "ReleaseNote": "Thông tin phát hành", + "VerChannelLabel": "Kênh cập nhật:", + "VerDateLabel": "Biên dịch ngày:", + "ReleaseNote": "Thông tin cập nhật", "NeverShowNotification": "Không hiển thị lại", "RemindLaterBtn": "Nhắc tôi sau", "UpdateNowBtn": "Cập nhật ngay", - "LoadingRelease": "Đang tải nội dung phát hành...", - "LoadingReleaseFailed": "Đã có lỗi xảy ra khi đọc nội dung phát hành.\r\n{0}", + "LoadingRelease": "Đang tải nội dung cập nhật...", + "LoadingReleaseFailed": "Đã có lỗi xảy ra khi truy vấn nội dung cập nhật.\r\n{0}", - "UpdateHeader1": "Tiến trình:", - "UpdateHeader2": "Time Remaining:", + "UpdateHeader1": "Tiến độ:", + "UpdateHeader2": "Thời gian còn lại:", "UpdateHeader3": "Kích thước tải về:", "UpdateHeader4": "Tốc độ:", "UpdateHeader5PlaceHolder": "Đang tải về cập nhật [- / -]:", - "UpdateForcedHeader": "Trình khởi chạy sẽ phải cập nhật bắt buộc do những thay đổi khẩn cấp để đảm bảo trình khởi chạy hoạt động bình thường.", + "UpdateForcedHeader": "Launcher bắt buộc phải cập nhật do có những thay đổi khẩn cấp để đảm bảo launcher hoạt động ổn định.", - "UpdateStatus1": "Đang đọc bản cập nhật:", + "UpdateStatus1": "Đang kiểm tra cập nhật:", "UpdateMessage1": "Đang kết nối với kho lưu trữ cập nhật...", "UpdateStatus2": "Đang xác minh:", "UpdateStatus3": "Đang tải bản cập nhật [{0} / {1}]:", - "UpdateStatus4": "Bạn đang sử dụng phiên bản ({0}) là phiên bản mới nhất!", - "UpdateMessage4": "Đang quay lại trình khởi chạy...", - "UpdateStatus5": "Phiên bản này đã được cập nhật đến {0}!", - "UpdateMessage5": "Trình khởi chạy sẽ mở lại sau vài giây...", - - "UpdateCountdownMessage1": "Trình khởi động của bạn sẽ cập nhật trong {0}...", - "UpdateCountdownMessage2": "(Ấn", - "UpdateCountdownMessage3": "để huỷ đếm ngược)", - - "ApplyUpdateTitle1": "Chúng tôi đang cập nhật", - "ApplyUpdateTitle2": "trình khởi chạy Collapse", - "ApplyUpdateCDNSelectorTitle": "Chọn CDN cho cập nhật", - "ApplyUpdateCDNSelectorSubtitle": "Chọn tùy chọn CDN và nhấn \"{0}\" để bắt đầu cập nhật!", - "ApplyUpdateCDNSelectorSubtitleCount": "CDN sẽ tự động được chọn sau: {0}", + "UpdateStatus4": "Bạn đang sử dụng phiên bản mới nhất ({0})!", + "UpdateMessage4": "Đang quay lại launcher...", + "UpdateStatus5": "Đã cập nhật lên phiên bản {0}!", + "UpdateMessage5": "Launcher sẽ mở lại sau vài giây...", + + "UpdateCountdownMessage1": "Launcher sẽ được cập nhật sau {0}...", + "UpdateCountdownMessage2": "(Nhấn", + "UpdateCountdownMessage3": "để hủy đếm ngược)", + + "ApplyUpdateTitle1": "Đang cập nhật", + "ApplyUpdateTitle2": "Collapse Launcher", + "ApplyUpdateCDNSelectorTitle": "Chọn CDN tải cập nhật", + "ApplyUpdateCDNSelectorSubtitle": "Chọn một CDN và nhấn \"{0}\" để bắt đầu cập nhật!", + "ApplyUpdateCDNSelectorSubtitleCount": "Tự động chọn CDN sau: {0}", "ApplyUpdateUpdateNowBtn": "Cập nhật ngay!", "ApplyUpdateUpdateVersionTitle": "Cập nhật:", "ApplyUpdateUpdateChannelTitle": "Kênh:", "ApplyUpdateUpdateChannelSubtitlePlaceholder": "Không rõ", "ApplyUpdateUpdateStatusTitle": "Trạng thái:", - "ApplyUpdateMiscIdle": "Chờ", + "ApplyUpdateMiscIdle": "Đang chờ", "ApplyUpdateMiscNone": "Không", "ApplyUpdateVersionSeparator": "lên", "ApplyUpdateErrCollapseRunTitle": "Vui lòng đóng Collapse trước khi áp dụng cập nhật!", "ApplyUpdateErrCollapseRunSubtitle": "Đang chờ Collapse đóng...", - "ApplyUpdateErrCollapseRunTitleWarnBox": "Một phiên bản của Collapse Launcher vẫn đang chạy!", - "ApplyUpdateErrCollapseRunSubtitleWarnBox": "Chúng tôi đã phát hiện một phiên bản của Collapse Launcher đang chạy trong nền. Để buộc đóng trình khởi chạy, hãy nhấp vào \"Có\". Để đợi cho đến khi bạn đóng nó theo cách thủ công, hãy nhấp vào \"Không\".", - "ApplyUpdateErrVelopackStateBrokenTitleWarnBox": "Đã phát hiện cài đặt hiện có bị hỏng!", - "ApplyUpdateErrVelopackStateBrokenSubtitleWarnBox": "Chúng tôi đã phát hiện ra rằng bạn có một cài đặt hiện có bị hỏng.\r\n\r\nNhấp vào \"Có\" để sửa chữa cài đặt trước khi cài đặt bản cập nhật hoặc Nhấp vào \"Không\" để chỉ chạy cài đặt cập nhật.", - "ApplyUpdateErrReleaseFileNotFoundTitle": "LỖI:\r\ntệp \"release\" không có string \"stable\" hay \"preview\" trong nó", + "ApplyUpdateErrCollapseRunTitleWarnBox": "Một tiến trình của Collapse Launcher vẫn đang chạy!", + "ApplyUpdateErrCollapseRunSubtitleWarnBox": "Đang có một tiến trình của Collapse Launcher chạy trong nền. Để buộc đóng launcher, nhấn \"Có\". Nếu bạn muốn tự tắt launcher, nhấn \"Không\".", + "ApplyUpdateErrVelopackStateBrokenTitleWarnBox": "Phát hiện bản cài hiện tại bị hỏng!", + "ApplyUpdateErrVelopackStateBrokenSubtitleWarnBox": "Bạn đang sử dụng một bản cài đặt bị hỏng.\r\n\r\nNhấn \"Có\" để sửa chữa bản cài trước khi cập nhật hoặc nhấn \"Không\" để chạy cập nhật như thường.", + "ApplyUpdateErrReleaseFileNotFoundTitle": "LỖI:\r\ntệp \"release\" không chứa string \"stable\" hay \"preview\".", "ApplyUpdateErrReleaseFileNotFoundSubtitle": "Vui lòng kiểm tra tệp \"release\" của bạn và thử lại.", "ApplyUpdateDownloadSizePlaceholder": "- B / - B", @@ -1244,77 +1372,77 @@ "ApplyUpdateDownloadTimeEst": "Còn lại {0:%h}h{0:%m}m{0:%s}s", "ApplyUpdateDownloadTimeEstPlaceholder": "Còn lại --h--m--s", - "ApplyUpdateTaskLegacyVerFoundTitle": "Đã phát hiện một bản cài đặt trước đó của Collapse v{0}!", - "ApplyUpdateTaskLegacyVerFoundSubtitle1": "Chúng tôi phát hiện trên PC của bạn có cài một bản Collapse v{0} cũ.", + "ApplyUpdateTaskLegacyVerFoundTitle": "Phát hiện bản cài cũ của Collapse v{0}!", + "ApplyUpdateTaskLegacyVerFoundSubtitle1": "Chúng tôi phát hiện trên máy tính của bạn có cài một bản Collapse cũ v{0}. ", "ApplyUpdateTaskLegacyVerFoundSubtitle2": "Trình cập nhật cần dọn sạch các tệp cũ bên trong đường dẫn của nó.\r\n", - "ApplyUpdateTaskLegacyVerFoundSubtitle3": "Đảm bảo rằng bạn không có tệp nào quan trọng bên trong đường đẫn Collapse nếu không sẽ bị XÓA HOÀN TOÀN!", - "ApplyUpdateTaskLegacyVerFoundSubtitle4": "\r\n\r\nNhấn \"Có\" để tiếp tục hoặc \"Không\" để hủy bỏ.", + "ApplyUpdateTaskLegacyVerFoundSubtitle3": "Hãy đảm bảo rằng bạn không có tệp nào quan trọng bên trong đường đẫn Collapse do nó sẽ bị XÓA HOÀN TOÀN!", + "ApplyUpdateTaskLegacyVerFoundSubtitle4": "\r\n\r\nNhấn \"Có\" để tiếp tục hoặc \"Không\" để hủy bỏ.", "ApplyUpdateTaskLegacyVerFoundSubtitle5": "Nhấn \"Có\" một lần nữa để xác nhận.", "ApplyUpdateTaskLegacyCleanupCount": "Quá trình dọn dẹp sẽ bắt đầu sau {0}...", "ApplyUpdateTaskLegacyDeleting": "Đang xóa: {0}...", - "ApplyUpdateTaskDownloadingPkgTitle": "Đang tải gói", - "ApplyUpdateTaskExtractingPkgTitle": "Đang giải nén gói", - "ApplyUpdateTaskRemoveOldPkgTitle": "Đang xóa gói cũ", + "ApplyUpdateTaskDownloadingPkgTitle": "Đang tải gói tin", + "ApplyUpdateTaskExtractingPkgTitle": "Đang giải nén gói tin", + "ApplyUpdateTaskRemoveOldPkgTitle": "Đang xóa gói tin cũ", "ApplyUpdateTaskMovingExtractFileTitle": "Đang di chuyển các tệp đã giải nén", - "ApplyUpdateTaskLauncherUpdatedTitle": "Trình khởi chạy đã được cập nhật lên: {0}!", - "ApplyUpdateTaskLauncherUpdatedSubtitle": "Khởi chạy Collapse sau {0}...", + "ApplyUpdateTaskLauncherUpdatedTitle": "Launcher đã được cập nhật lên: {0}!", + "ApplyUpdateTaskLauncherUpdatedSubtitle": "Sẽ mở Collapse sau {0}...", "ApplyUpdateTaskError": "LỖI:\r\nĐã xảy ra lỗi khi áp dụng cập nhật!\r\n{0}" }, "_AppNotification": { - "NotifMetadataUpdateTitle": "Cập nhật Metadata của trình khởi chạy đã có sẵn!", - "NotifMetadataUpdateSubtitle": "Metadata mới dành cho trình khởi chạy đã có sẵn! Chúng tôi khuyễn khích bạn tiếp tục cài đặt bản cập nhật để đảm bảo rằng trình khởi chạy có thể kết nối với server của miHoYo/HoYoverse. Ấn vào \"Cập nhật Metadata\" để cập nhật.", - "NotifMetadataUpdateBtn": "Cập nhật Metadata", - "NotifMetadataUpdateBtnCountdown": "Đang cập nhật metadata trong: {0}", - "NotifMetadataUpdateBtnUpdating": "Đang cập nhật Metadata, please wait...", - - "NotifFirstWelcomeTitle": "Chào mừng bạn tới Collapse!", - "NotifFirstWelcomeSubtitle": "Để bắt đầu, ấn vào \"{0}\" nút dưới đây để xem cách cài đặt hoặc gộp trò chơi đã cài sẵn.", - "NotifFirstWelcomeBtn": "Xem wiki trên github", - - "NotifPreviewBuildUsedTitle": "Bạn đang sử dụng phiên bản xem trước!", - "NotifPreviewBuildUsedSubtitle": "Bạn đang sử dụng bản dựng XEM TRƯỚC trong khi vẫn còn đang được thử nghiệm. Nếu có bất kì lỗi nào, vui lòng báo lỗi với chúng tôi bằng cách ấn vào nút \"{0}\" dưới đây. Xin cảm ơn!", - "NotifPreviewBuildUsedBtn": "Gửi lỗi", - - "NotifKbShortcutTitle": "Một tính năng mới đã đến!", - "NotifKbShortcutSubtitle": "Chúng tôi sẽ giới thiệu một cách mới để điều hướng trong Collapse, Phím tắt.\nGiờ đây, bạn có thể sử dụng bàn phím để truy cập nhanh hơn vào một số chức năng!\n\nMuốn biết thêm?\nHãy thử sử dụng CTRL + Tab hoặc nhấp vào nút bên dưới.", - "NotifKbShortcutBtn": "Hiển thị tất cả phím tắt" + "NotifMetadataUpdateTitle": "Bản cập nhật metadata launcher mới!", + "NotifMetadataUpdateSubtitle": "Đã có bản cập nhật metadata mới cho launcher! Việc cập nhật này diễn ra tự động và được thực hiện để đảm bảo rằng launcher có thể kết nối với server của miHoYo/HoYoverse. Cập nhật sẽ bắt đầu trong giây lát!", + "NotifMetadataUpdateBtn": "Cập nhật metadata", + "NotifMetadataUpdateBtnCountdown": "Cập nhật metadata sau: {0}", + "NotifMetadataUpdateBtnUpdating": "Đang cập nhật metadata, vui lòng đợi...", + + "NotifFirstWelcomeTitle": "Chào mừng tới Collapse!", + "NotifFirstWelcomeSubtitle": "Để bắt đầu, nhấn \"{0}\" để xem cách cài đặt hoặc tích hợp game đã cài sẵn trên máy.", + "NotifFirstWelcomeBtn": "Xem wiki trên GitHub", + + "NotifPreviewBuildUsedTitle": "Bạn đang sử dụng phiên bản thử nghiệm!", + "NotifPreviewBuildUsedSubtitle": "Bạn đang sử dụng phiên bản THỬ NGHIỆM [PREVIEW] chưa phát hành chính thức. Nếu bạn gặp phải bất kỳ lỗi nào, xin hãy báo lỗi cho chúng tôi bằng cách nhấn nút \"{0}\" dưới đây. Xin cảm ơn!", + "NotifPreviewBuildUsedBtn": "Báo lỗi", + + "NotifKbShortcutTitle": "Ra mắt tính năng mới!", + "NotifKbShortcutSubtitle": "Chúng tôi đã ra mắt phương thức mới để điều hướng trong Collapse: Phím tắt.\nGiờ đây, bạn có thể sử dụng bàn phím để truy cập nhanh hơn vào một số chức năng!\n\nMuốn biết thêm?\nHãy thử sử dụng CTRL + Tab hoặc nhấp vào nút bên dưới.", + "NotifKbShortcutBtn": "Xem các phím tắt" }, "_StarRailGameSettingsPage": { - "PageTitle": "Cài đặt trò chơi", + "PageTitle": "Cài đặt game", - "Graphics_Title": "Cài đặt đồ hoạ", - "Graphics_ResolutionPanel": "Độ phân giải trò chơi", + "Graphics_Title": "Thiết lập đồ hoạ", + "Graphics_ResolutionPanel": "Độ phân giải", "Graphics_Fullscreen": "Toàn màn hình", - "Graphics_ExclusiveFullscreen": "Toàn màn hình với độ phân giải đã chọn", + "Graphics_ExclusiveFullscreen": "Dùng chế độ toàn màn hình \"thật\"", "Graphics_ResSelectPlaceholder": "Chọn", - "Graphics_ResCustom": "Chọn độ phân giải khác", - "Graphics_ResCustomTooltip": "Chỉ sử dụng được độ phân giải tùy chỉnh khi bật sử dụng của sổ có thể thay đổi kích thước", + "Graphics_ResCustom": "Dùng độ phân giải tùy chỉnh", + "Graphics_ResCustomTooltip": "Chỉ có thể chọn độ phân giải tùy chỉnh khi sử dụng chế độ cửa sổ resizeable", "Graphics_ResCustomW": "W", "Graphics_ResCustomH": "H", "Graphics_FPS": "FPS", - "Graphics_FPS_Help": "120 FPS vẫn đang được THỬ NGHIỆM! Vui lòng sử dụng cẩn thận và hãy tự chịu trách nhiệm (DWYOR).", - "Graphics_FPS_Help2": "Đặt gía trị FPS ở 120 FPS sẽ không làm hỏng menu, nhưng đặt giá trị FPS trong game sẽ không còn hoạt động nữa. \r\nNếu bạn cần chỉnh 120 FPS, vui lòng dùng cài đặt game trong Collapse để chỉnh cài đặt đồ họa", + "Graphics_FPS_Help": "120 FPS vẫn đang được THỬ NGHIỆM! Vui lòng sử dụng cẩn thận do Honkai: Star Rail không chính thức hỗ trợ mức FPS này!", + "Graphics_FPS_Help2": "Sử dụng 120 FPS không còn làm hỏng giao diện nhưng bạn sẽ không thể giảm FPS xuống thông qua cài đặt trong game nữa. \r\nNếu bạn dùng 120 FPS thì hãy tiếp tục sử dụng cài đặt game trên Collapse để chỉnh cài đặt đồ họa", "Graphics_VSync": "VSync", "Graphics_VSync_Help": "VSync không khả dụng ở 120 FPS", - "Graphics_RenderScale": "Kết xuất đồ hoạ", + "Graphics_RenderScale": "Độ chính xác kết xuất", "Graphics_ResolutionQuality": "Chất lượng độ phân giải", "Graphics_ShadowQuality": "Chất lượng bóng đổ", "Graphics_LightQuality": "Chất lượng ánh sáng", "Graphics_CharacterQuality": "Chất lượng nhân vật", - "Graphics_EnvDetailQuality": "Chi tiết môi trường", + "Graphics_EnvDetailQuality": "Chi tiết cảnh vật", "Graphics_ReflectionQuality": "Chất lượng phản chiếu", "Graphics_BloomQuality": "Hiệu ứng toả sáng", "Graphics_AAMode": "Khử răng cưa", - "Graphics_SFXQuality": "Chất lượng SFX", + "Graphics_SFXQuality": "Chất lượng hiệu ứng", "Graphics_DlssQuality": "NVIDIA DLSS", - "Graphics_SelfShadow": "Bóng nhân vật trong bản đồ", - "Graphics_HalfResTransparent": "Độ Phân Giải Một Nữa Trong Suốt", + "Graphics_SelfShadow": "Đổ bóng nhân vật khi khám phá bản đồ", + "Graphics_HalfResTransparent": "Độ phân giải một nửa trong suốt", "Graphics_DLSS_UHP": "Siêu Hiệu Năng", "Graphics_DLSS_Perf": "Hiệu Năng", @@ -1322,7 +1450,7 @@ "Graphics_DLSS_Quality": "Chất Lượng", "Graphics_DLSS_DLAA": "DLAA", - "Graphics_SpecPanel": "Thiết lập đồ hoạ", + "Graphics_SpecPanel": "Thiết lập đồ họa", "SpecEnabled": "Bật", "SpecDisabled": "Tắt", "SpecVeryLow": "Rất thấp", @@ -1332,20 +1460,20 @@ "SpecVeryHigh": "Rất cao", "ApplyBtn": "Áp dụng cài đặt", - "SettingsApplied": "Các thay đổi đã được lưu!", + "SettingsApplied": "Đã lưu thay đổi!", - "OverlayNotInstalledTitle": "Bạn không thể sử dụng tính năng này vì nó chưa được cài đặt hoặc cần được cập nhật!", - "OverlayNotInstalledSubtitle": "Vui lòng tải/cập nhật trò chơi trước trong trang trình khởi động của trò chơi!", - "OverlayGameRunningTitle": "Trò chơi hiện tại đang chạy!", - "OverlayGameRunningSubtitle": "Vui lòng đóng trò chơi trước để sử dụng tính năng này!", - "OverlayFirstTimeTitle": "Bạn chưa chơi trò chơi này trước đó!", - "OverlayFirstTimeSubtitle": "Vui lòng chạy trò chơi trước để tạo các tệp cần thiết, sau đó hãy quay lại đây để sử dụng tính năng này.", + "OverlayNotInstalledTitle": "Bạn không thể dùng tính năng này tại server đang chọn do chưa cài đặt hoặc cần cập nhật!", + "OverlayNotInstalledSubtitle": "Vui lòng tải/cập nhật game trước ở trang khởi động game tương ứng!", + "OverlayGameRunningTitle": "Game vẫn đang chạy!", + "OverlayGameRunningSubtitle": "Đóng game để sử dụng tính năng này!", + "OverlayFirstTimeTitle": "Bạn chưa chơi game này trước đó!", + "OverlayFirstTimeSubtitle": "Vui lòng chạy game trước để hệ thống tạo các tệp cần thiết cho tính năng này.", - "CustomArgs_Title": "Tuỳ chỉnh tham só khởi động (Nâng cao)", + "CustomArgs_Title": "Tùy chọn khởi động (nâng cao)", "CustomArgs_Subtitle": "Tham số khởi động", - "CustomArgs_Footer1": "Để biết thêm thông tin về tham số khởi động, vui lòng xem tại", - "CustomArgs_Footer2": "Unity Standalone Player command line documentation", - "CustomArgs_Footer3": "để xem nhiều tham số hơn.", + "CustomArgs_Footer1": "Để biết thêm thông tin về tham số khởi động, truy cập", + "CustomArgs_Footer2": "trang tài liệu dòng lệnh của Unity Standalone Player", + "CustomArgs_Footer3": "để tìm hiểu thêm.", "Audio_Title": "Thiết lập âm thanh", "Audio_Master": "Âm lượng chung", @@ -1356,8 +1484,8 @@ "Language": "Cài đặt ngôn ngữ", "Language_Help1": "Collapse hiện không thể tải trực tiếp gói ngôn ngữ.", - "Language_Help2": "Gói ngôn ngữ sẽ được tải xuống trong lần tới bạn khởi động trò chơi.", - "LanguageAudio": "Âm thanh", + "Language_Help2": "Gói ngôn ngữ sẽ được tải xuống trong lần tiếp theo bạn khởi động game.", + "LanguageAudio": "Lồng tiếng", "LanguageText": "Văn bản", "VO_en": "Tiếng Anh", "VO_cn": "Tiếng Trung", @@ -1366,13 +1494,13 @@ }, "_GenshinGameSettingsPage": { - "PageTitle": "Cài đặt trò chơi", + "PageTitle": "Cài đặt game", - "Graphics_Title": "Cài đặt đồ hoạ", - "Graphics_ResolutionPanel": "Độ phân giải trò chơi", + "Graphics_Title": "Thiết lập đồ họa", + "Graphics_ResolutionPanel": "Độ phân giải", "Graphics_Fullscreen": "Toàn màn hình", - "Graphics_ExclusiveFullscreen": "Dùng chế độ toàn màn hình độc quyền", - "Graphics_ExclusiveFullscreen_Help": "Chế độ toàn màn hình độc quyền có thể gây ra hiện tượng đơ game ngẫu nhiên!", + "Graphics_ExclusiveFullscreen": "Dùng chế độ toàn màn hình \"thật\"", + "Graphics_ExclusiveFullscreen_Help": "Chế độ toàn màn hình \"thật\" (tức khi tab ra ngoài sẽ mất hình của game) đôi khi sẽ khiến game tạm thời bị đơ!", "Graphics_ResSelectPlaceholder": "Chọn", "Graphics_ResCustom": "Dùng độ phân giải tùy chỉnh", "Graphics_ResCustomW": "W", @@ -1380,44 +1508,44 @@ "Graphics_Gamma": "Gamma", "Graphics_FPS": "FPS", - "Graphics_RenderScale": "Mức độ kết xuất", - "Graphics_ShadowQuality": "Chất lượng bóng đổ", + "Graphics_RenderScale": "Độ rõ nét", + "Graphics_ShadowQuality": "Chất lượng bóng", "Graphics_VisualFX": "Hiệu ứng hình ảnh", - "Graphics_SFXQuality": "Chất lượng SFX", - "Graphics_EnvDetailQuality": "Chi tiết môi trường", + "Graphics_SFXQuality": "Chất lượng hiệu ứng", + "Graphics_EnvDetailQuality": "Chi tiết cảnh vật", "Graphics_VSync": "VSync", - "Graphics_AAMode": "Chế độ khử răng cưa", - "Graphics_VolFogs": "Volumetric Fogs", + "Graphics_AAMode": "Khử răng cưa", + "Graphics_VolFogs": "Sương mù thể tích", "Graphics_VolFogs_ToolTip": "Yêu cầu Chất lượng bóng được đặt ở mức Trung bình hoặc cao hơn!", - "Graphics_ReflectionQuality": "Phản Chiếu", - "Graphics_MotionBlur": "Làm mờ chuyển động", + "Graphics_ReflectionQuality": "Phản chiếu", + "Graphics_MotionBlur": "Hiệu ứng làm mờ chuyển động", "Graphics_BloomQuality": "Bloom", - "Graphics_CrowdDensity": "Mật độ đám đông", - "Graphics_SubsurfaceScattering": "Tán xạ bề mặt phụ", + "Graphics_CrowdDensity": "Mật độ người", + "Graphics_SubsurfaceScattering": "Tán xạ dưới bề mặt", "Graphics_TeammateFX": "Hiệu ứng của đồng đội", - "Graphics_AnisotropicFiltering": "Anisotropic Filtering", - "Graphics_TeamPageBackground": "Bối cảnh thiết lập đảng khu vực", - "Graphics_GlobalIllumination": "Global Illumination", - "Graphics_GlobalIllumination_Help1": "Chỉ cho phần cứng được hỗ trợ!", - "Graphics_GlobalIllumination_Help2": "Thêm thông tin (vi)", - "Graphics_DynamicCharacterResolution": "Độ phân giải nhân vật động", - "Graphics_DynamicCharacterResolution_Tooltip": "Chỉ cho phần cứng được hỗ trợ!", + "Graphics_AnisotropicFiltering": "Lấy mẫu từ nhiều nơi", + "Graphics_TeamPageBackground": "Hình nền thiết lập đội thay đổi theo khu vực", + "Graphics_GlobalIllumination": "Chiếu sáng toàn cục", + "Graphics_GlobalIllumination_Help1": "Chỉ dành cho phần cứng hỗ trợ!", + "Graphics_GlobalIllumination_Help2": "Thông tin thêm (bài tiếng Anh)", + "Graphics_DynamicCharacterResolution": "Phân giải động thái nhân vật", + "Graphics_DynamicCharacterResolution_Tooltip": "Chỉ dành cho phần cứng hỗ trợ!", "Graphics_HDR": "HDR", "Graphics_HDR_Enable": "Bật HDR", "Graphics_HDR_NotSupported1": "Màn hình của bạn không hỗ trợ HDR", "Graphics_HDR_NotSupported2": "Cần có màn hình hỗ trợ HDR!", "Graphics_HDR_NotEnabled1": "Thiết bị của bạn hỗ trợ HDR nhưng chưa được bật.", - "Graphics_HDR_NotEnabled2": "Tùy chọn \"Sử dụng HDR\" nên được bật trong Cài đặt Windows.", - "Graphics_HDR_Help_Link": "Thêm thông tin", - "Graphics_HDR_MaxLuminosity": "Độ sáng tối đa (nits)", + "Graphics_HDR_NotEnabled2": "Tùy chọn \"Sử dụng HDR\" nên được bật trong cài đặt Windows.", + "Graphics_HDR_Help_Link": "Thông tin thêm", + "Graphics_HDR_MaxLuminosity": "Độ sáng tối đa (nit)", "Graphics_HDR_MaxLuminosity_Help": "Độ sáng tối đa cho phép cho các điểm nổi bật", "Graphics_HDR_Calibration_Help": "Điều chỉnh cho đến khi hình ảnh hiển thị mờ nhưng có thể nhìn thấy", - "Graphics_HDR_UiBrightness": "Độ sáng giao diện người dùng", - "Graphics_HDR_UiBrightness_Help": "Kiểm soát mức độ sáng của các yếu tố giao diện người dùng", - "Graphics_HDR_SceneBrightness": "Độ sáng phong cảnh", - "Graphics_HDR_SceneBrightness_Help": "Kiểm soát độ sáng của phong cảnh", + "Graphics_HDR_UiBrightness": "Độ sáng giao diện", + "Graphics_HDR_UiBrightness_Help": "Kiểm soát mức độ sáng của các mục giao diện", + "Graphics_HDR_SceneBrightness": "Độ sáng cảnh vật", + "Graphics_HDR_SceneBrightness_Help": "Kiểm soát độ sáng của cảnh vật", - "Graphics_SpecPanel": "Cài đặt đồ hoạ chung", + "Graphics_SpecPanel": "Cài đặt đồ họa", "SpecEnabled": "Bật", "SpecDisabled": "Tắt", "SpecVeryLow": "Rất thấp", @@ -1426,23 +1554,23 @@ "SpecHigh": "Cao", "SpecVeryHigh": "Rất cao", "SpecExtreme": "Rất cao", - "SpecPartiallyOff": "Tắt Một Phần", + "SpecPartiallyOff": "Chặn một phần", "ApplyBtn": "Áp dụng cài đặt", - "SettingsApplied": "Các thay đổi đã được lưu!", + "SettingsApplied": "Đã lưu thay đổi!", - "OverlayNotInstalledTitle": "Bạn không thể sử dụng tính năng này vì chưa được cài đặt hoặc cần được cập nhật!", - "OverlayNotInstalledSubtitle": "Vui lòng tải xuống/cập nhật trò chơi trước trên trang trình khởi động của trò chơi!", - "OverlayGameRunningTitle": "Trò chơi hiện tại đang chạy!", - "OverlayGameRunningSubtitle": "Vui lòng đóng trò chơi trước để sử dụng tính năng này!", - "OverlayFirstTimeTitle": "Bạn chưa từng chơi trò chơi này trước đó!", - "OverlayFirstTimeSubtitle": "Vui lòng chạy trò chơi trước để tạo các tệp cần thiết, sau đó hãy quay lại đây để sử dụng tính năng này.", + "OverlayNotInstalledTitle": "Bạn không thể dùng tính năng này tại server đang chọn do chưa cài đặt hoặc cần cập nhật!", + "OverlayNotInstalledSubtitle": "Vui lòng tải/cập nhật game trước ở trang khởi động game tương ứng!", + "OverlayGameRunningTitle": "Game vẫn đang chạy!", + "OverlayGameRunningSubtitle": "Đóng game để sử dụng tính năng này!", + "OverlayFirstTimeTitle": "Bạn chưa từng chơi game này trước đó!", + "OverlayFirstTimeSubtitle": "Vui lòng chạy game trước để hệ thống tạo các tệp cần thiết cho tính năng này.", - "CustomArgs_Title": "Tùy chọn khởi động tùy chỉnh (Nâng cao)", - "CustomArgs_Subtitle": "Tùy chọn khởi động", - "CustomArgs_Footer1": "Để biết thêm thông tin về tùy chọn khởi động, vui lòng xem tại", - "CustomArgs_Footer2": "Tùy chọn dòng lệnh cho Unity Standalone Player", - "CustomArgs_Footer3": "để xem nhiều tham số hơn.", + "CustomArgs_Title": "Tùy chọn khởi động (nâng cao)", + "CustomArgs_Subtitle": "Tham số khởi động", + "CustomArgs_Footer1": "Để biết thêm thông tin về tham số khởi động, truy cập trang", + "CustomArgs_Footer2": "tài liệu dòng lệnh của Unity Standalone Player", + "CustomArgs_Footer3": "để tìm hiểu thêm.", "Audio_Title": "Cài đặt âm thanh", "Audio_Master": "Âm lượng chung", @@ -1451,13 +1579,13 @@ "Audio_VO": "Âm lượng lồng tiếng", "Audio_Output_Surround": "Âm thanh vòm", - "Audio_DynamicRange": "Đầy Đủ Dynamic Range", - "Audio_MuteOnMinimize": "Mute Audio When Minimized", + "Audio_DynamicRange": "Dùng đủ phạm vi động", + "Audio_MuteOnMinimize": "Im lặng khi thu nhỏ", - "Language": "Cài Đặt Ngôn Ngữ", + "Language": "Cài đặt ngôn ngữ", "Language_Help1": "Collapse hiện không thể tải trực tiếp gói ngôn ngữ.", - "Language_Help2": "Gói ngôn ngữ sẽ được tải xuống trong lần tới bạn khởi động trò chơi.", - "LanguageAudio": "Âm thanh", + "Language_Help2": "Gói ngôn ngữ sẽ được tải xuống trong lần tới bạn khởi động game.", + "LanguageAudio": "Lồng tiếng", "LanguageText": "Văn bản", "VO_en": "Tiếng Anh", "VO_cn": "Tiếng Trung", @@ -1470,44 +1598,44 @@ "GeneralTab": "Chung", "SwitchTab": "Chuyển đổi nhanh", "GameFolderTab": "Truy cập thư mục", - "GameManagementTab": "Quản lý trò chơi", + "GameManagementTab": "Quản lý game", "General_Title": "Chung", "General_OpenMenu": "Mở menu này", - "General_OpenMenu_Desc": "Nó cũng có thể được truy nhập thông qua cài đặt trình khởi chạy.", - "General_GoHome": "Đi tới Trang chủ", - "General_GoSettings": "Đi tới trang Cài đặt", + "General_OpenMenu_Desc": "Cũng có thể mở thông qua cài đặt của launcher.", + "General_GoHome": "Tới trang chủ", + "General_GoSettings": "Tới trang cài đặt", "General_OpenNotifTray": "Mở khay thông báo", "General_ReloadRegion": "Tải lại trang hiện tại", - "General_ReloadRegion_Desc": "Có thể nhấn F5 thay cho phím tắt này.\nLưu ý rằng việc tải lại trang chủ sẽ tải lại khu vực.", + "General_ReloadRegion_Desc": "Có thể nhấn F5 thay cho phím tắt này.\nLưu ý rằng việc tải lại trang chủ sẽ tải lại server.", - "Switch_Title": "Thay đổi trò chơi / khu vực nhanh chóng", + "Switch_Title": "Thay đổi game/server nhanh", "Switch_Subtitle": "Lưu ý: Các tổ hợp phím tuân theo 1 thứ tự.", "Switch_SwapBtn": "Đổi {0} và {1}", - "Switch_ChangeGame": "Thay đổi trò chơi", - "Switch_ChangeGame_Desc": "Bạn cũng có thể dùng NumPad cho phím tắt này!\nVí dụ {0}+1 hoặc NumPad1 (không có chỉnh viên {0}) dẫn tới trang của Honkai Impact 3rd (khu vực được sử dụng lần cuối)", - "Switch_ChangeRegion": "Thay đổi khu vực", - "Switch_ChangeRegion_Desc": "Ví dụ với Genshin Impact, {0}+1 dẫn tới khu vực Quốc tế.", + "Switch_ChangeGame": "Thay đổi game", + "Switch_ChangeGame_Desc": "Bạn cũng có thể dùng nút bàn phím số phía bên phải bàn phím (nếu có) cho phím tắt này!\nVí dụ, nhấn {0}+1 hoặc NumPad1 (không cần ấn {0}) sẽ mở trang của Honkai Impact 3rd (server là server đã chọn gần nhất)", + "Switch_ChangeRegion": "Thay đổi server", + "Switch_ChangeRegion_Desc": "Ví dụ với Genshin Impact, {0}+1 sẽ mở server quốc tế.", - "GameFolder_Title": "Truy cập thư mục trò chơi", + "GameFolder_Title": "Truy cập thư mục game", "GameFolder_ScreenshotFolder": "Mở thư mục ảnh chụp màn hình", - "GameFolder_MainFolder": "Mở thư mục trò chơi", + "GameFolder_MainFolder": "Mở thư mục game", "GameFolder_CacheFolder": "Mở thư mục cache", - "GameManagement_Title": "Quản lý trò chơi", - "GameManagement_Subtitle": "Lưu ý: Các gán phím này chỉ hoạt động khi tính năng đó được hỗ trợ ở khu vực ấy.", - "GameManagement_ForceCloseGame": "Bắt buộc đóng trò chơi", - "GameManagement_ForceCloseGame_Desc": "CẢNH BÁO: Khi dùng phím tắt này, trò chơi sẽ bị đóng mà không có bất kỳ yêu cầu xác nhận nào.", - "GameManagement_GoRepair": "Đi tới trang Sửa trò chơi", - "GameManagement_GoSettings": "Đi tới trang Cài đặt trò chơi", - "GameManagement_GoCaches": "Đi tới trang Sửa cache", + "GameManagement_Title": "Quản lý game", + "GameManagement_Subtitle": "Lưu ý: Các phím tắt dưới đây chỉ hoạt động nếu server hiện tại hỗ trợ tính năng đó.", + "GameManagement_ForceCloseGame": "Buộc đóng game", + "GameManagement_ForceCloseGame_Desc": "CẢNH BÁO: Khi dùng phím tắt này, game sẽ bị đóng ngay lập tức mà không có bất kỳ yêu cầu xác nhận nào.", + "GameManagement_GoRepair": "Tới trang sửa game", + "GameManagement_GoSettings": "Tới trang cài đặt game", + "GameManagement_GoCaches": "Tới trang sửa cache", "ChangeShortcut_Title": "Thay đổi lối tắt", "ChangeShortcut_Text": "Nhấn tổ hợp mới cho phím tắt này!", - "ChangeShortcut_Help1": "Một phím tắt gồm 2 phần:", - "ChangeShortcut_Help2": "・Chỉnh viên - Shift, Control hoặc Alt/Menu", - "ChangeShortcut_Help3": "・Phím - Chữ cái (A tới Z) hoặc Tab", - "ChangeShortcut_Help4": "Bạn có thể chọn bất kỳ tổ hợp có chứa một giá trị từ mỗi danh mục, trừ khi nó được dùng riêng cho hệ thống hoặc đang được dùng rồi.", + "ChangeShortcut_Help1": "Một phím tắt bao gồm 2 phần:", + "ChangeShortcut_Help2": "・ Nút bổ trợ (Modifier) - Shift, Control hoặc Alt/Menu", + "ChangeShortcut_Help3": "・ Nút chính (Key) - Chữ cái (A tới Z) hoặc Tab", + "ChangeShortcut_Help4": "Bạn có thể chọn bất kỳ tổ hợp nào gồm hai phần nói trên, trừ khi tổ hợp đó được dùng riêng cho hệ thống hoặc đã được dùng rồi bởi tính năng khác rồi.", "Keyboard_Control": "Ctrl", "Keyboard_Menu": "Alt", @@ -1537,7 +1665,7 @@ }, "_FileCleanupPage": { - "Title": "Dọn dẹp các tệp", + "Title": "Dọn dẹp tệp", "TopButtonRescan": "Quét lại", "NoFilesToBeDeletedText": "Không có tệp nào cần xóa!", "ListViewFieldFileName": "Tên tệp", @@ -1546,60 +1674,60 @@ "LoadingSubtitle1": "Tính toán các tập hiện có (tìm thấy {0} tệp - tổng cộng {1})", "LoadingSubtitle2": "Kiểm tra tính khả dụng của pkg_version", "LoadingSubtitle3": "Giao diện có thể không phản hồi trong quá trình này...", - "DeleteSubtitle": "Đang xoá tập tin", + "DeleteSubtitle": "Đang xoá tệp...", "BottomButtonDeleteAllFiles": "Xóa tất cả tệp", - "BottomButtonDeleteSelectedFiles": "Xóa {0} (các) tệp đã chọn", - "BottomCheckboxFilesSelected": "{0} tệp đã chọn (Tổng cộng {1} / {2})", + "BottomButtonDeleteSelectedFiles": "Xóa {0} tệp đã chọn", + "BottomCheckboxFilesSelected": "Đã chọn {0} tệp (tổng số {1} / {2})", "BottomCheckboxNoFileSelected": "Không có tệp nào được chọn", - "DialogDeletingFileTitle": "Đang xóa các tệp", + "DialogDeletingFileTitle": "Xóa tệp", "DialogDeletingFileSubtitle1": "Bạn đang định", "DialogDeletingFileSubtitle2": "xóa {0} tệp", - "DialogDeletingFileSubtitle3": "với tổng kích thước", - "DialogDeletingFileSubtitle4": "là {0}", + "DialogDeletingFileSubtitle3": "với tổng kích thước là", + "DialogDeletingFileSubtitle4": "{0}", "DialogDeletingFileSubtitle5": "Bạn có chắc chắn muốn xóa các tệp này?", - "DialogDeleteSuccessTitle": "Các tệp đã được xóa!", - "DialogDeleteSuccessSubtitle1": "{0} (các) tệp đã được xóa", - "DialogDeleteSuccessSubtitle2": "với {0} không thể xóa", - "DialogMoveToRecycleBin": "Di chuyển vào Thùng Rác", - "DialogTitleMovedToRecycleBin": "Các tệp đã di chuyển vào Thùng Rác" + "DialogDeleteSuccessTitle": "Đã xóa tệp!", + "DialogDeleteSuccessSubtitle1": "Đã xóa {0} tệp", + "DialogDeleteSuccessSubtitle2": ", ngoài ra có {0} tệp không thể xóa", + "DialogMoveToRecycleBin": "Di chuyển vào thùng rác", + "DialogTitleMovedToRecycleBin": "Đã di chuyển tệp vào thùng rác!" }, "_OOBEStartUpMenu": { "WelcomeTitleString": { - "Upper": [ "Chào mừng", "đến với" ], - "Lower": [ "trình khởi chạy", "Collapse" ] + "Upper": [ "Chào mừng", " tới" ], + "Lower": [ "Collapse", " Launcher" ] }, "SetupNextButton": "Nhấn vào đây để tiếp tục", "SetupBackButton": "Quay lại", - "CustomizationTitle": "Tùy chỉnh trình khởi chạy của bạn", + "CustomizationTitle": "Tùy chỉnh launcher", "CustomizationSettingsLanguageHeader": "Ngôn ngữ", "CustomizationSettingsLanguageDescription": "Tùy chọn này sẽ thay đổi ngôn ngữ nội dung hiển thị.", - "CustomizationSettingsWindowSizeHeader": "Kích thước cửa sổ", - "CustomizationSettingsWindowSizeDescription": "Thay đổi kích thước trình khởi chạy.", + "CustomizationSettingsWindowSizeHeader": "Kích cỡ cửa sổ", + "CustomizationSettingsWindowSizeDescription": "Thay đổi kích cỡ của launcher.", "CustomizationSettingsCDNHeader": "Mạng phân phối nội dung", "CustomizationSettingsCDNDescription": "Chọn mạng phân phối nội dung chính muốn sử dụng.", - "CustomizationSettingsStyleHeader": "Tùy chọn chủ đề", - "CustomizationSettingsStyleDescription": "Thay đổi vẻ ngoài của trình khởi chạy theo sở thích của bạn.", + "CustomizationSettingsStyleHeader": "Tùy chọn giao diện", + "CustomizationSettingsStyleDescription": "Thay đổi giao diện của launcher theo sở thích của bạn.", "CustomizationSettingsStyleThemeHeader": "Chủ đề", - "CustomizationSettingsStyleThemeDescription": "Thay đổi màu xuất hiện trong trình khởi chạy của bạn.", + "CustomizationSettingsStyleThemeDescription": "Thay đổi màu xuất hiện trong launcher của bạn.", "CustomizationSettingsStyleCustomBackgroundHeader": "Hình nền tùy chỉnh", "CustomizationSettingsStyleCustomBackgroundDescription": "Dùng hình nền tùy chỉnh thay cho hình mặc định.", "VideoBackgroundPreviewUnavailableHeader": "Xem trước video không khả dụng", - "VideoBackgroundPreviewUnavailableDescription": "Bạn không thể xem trước video trong OOBE nhưng cũng đừng lo lắng! Video của bạn sẽ được áp dụng sau khi OOBE đã hoàn thành.", + "VideoBackgroundPreviewUnavailableDescription": "Bạn không thể xem trước video trong OOBE, nhưng cũng đừng lo lắng! Video của bạn sẽ được áp dụng sau khi quá trình OOBE hoàn thành.", - "LoadingInitializationTitle": "Đang khởi tạo lần chạy đầu tiên của trình khởi chạy", + "LoadingInitializationTitle": "Đang khởi tạo cho lần chạy đầu tiên", "LoadingCDNCheckboxCheckLatency": "(Đang kiểm tra độ trễ...)", - "LoadingCDNCheckboxPlaceholder": "Đang kiểm tra khuyến nghị CDN...", + "LoadingCDNCheckboxPlaceholder": "Đang kiểm tra CDN khuyến nghị...", "LoadingCDNCheckingSubitle": "Đang tìm mạng phân phối nội dung (CDN) gần nhất cho bạn...", "LoadingCDNCheckingSkipButton": "Bỏ qua kiểm tra CDN", "LoadingBackgroundImageTitle": "Đang tải ảnh", "LoadingBackgroundImageSubtitle": "Ảnh có thể phải mất một lúc để xử lý.", "CDNCheckboxItemLatencyFormat": " ({0} ms)", - "CDNCheckboxItemLatencyUnknownFormat": "(không rõ)", - "CDNCheckboxItemLatencyRecommendedFormat": "[Khuyến nghị]" + "CDNCheckboxItemLatencyUnknownFormat": " (không rõ)", + "CDNCheckboxItemLatencyRecommendedFormat": " [Khuyến nghị]" }, "_ZenlessGameSettingsPage": { @@ -1612,41 +1740,42 @@ "Audio_PlaybackDev": "Thiết bị phát", "Audio_PlaybackDev_Headphones": "Tai Nghe", "Audio_PlaybackDev_Speakers": "Loa", - "Audio_PlaybackDev_TV": "TV" + "Audio_PlaybackDev_TV": "TV", + "Audio_Ambient": "Âm lượng môi trường" }, "_NotificationToast": { "WindowHiddenToTray_Title": "Collapse Launcher đang ẩn trong khay hệ thống", - "WindowHiddenToTray_Subtitle": "Trình khởi chạy hiện đang chạy ngầm.\r\nNhấn vào thông báo này để hiện lại cửa sổ.", + "WindowHiddenToTray_Subtitle": "Launcher hiện đang chạy ngầm.\r\nNhấn vào thông báo này để hiện lại cửa sổ.", - "GameInstallCompleted_Title": "{0} đã sẳn sàng chơi", - "GameInstallCompleted_Subtitle": "{0} đã được cài thành công", + "GameInstallCompleted_Title": "{0} đã sẳn sàng", + "GameInstallCompleted_Subtitle": "Đã cài đặt xong {0}!", - "GameUpdateCompleted_Title": "{0} đã được cập nhật", - "GameUpdateCompleted_Subtitle": "{0} đã được cập nhật lên phiên bản [1]!", + "GameUpdateCompleted_Title": "Đã cập nhật {0}", + "GameUpdateCompleted_Subtitle": "Đã cập nhật {0} lên phiên bản {1}!", - "GamePreloadCompleted_Title": "Gói tải trước cho {0} đã được tải xuống", + "GamePreloadCompleted_Title": "Đã tải xong gói tải trước của {0}", - "GameRepairCheckCompleted_Title": "Kiểm tra sữa chữa trò chơi đã hoàn tất", - "GameRepairCheckCompletedFound_Subtitle": "{0} tệp cần được cập nhật/sữa lại. Nhấn vào thông báo này để quay lại trình khởi chạy trò chơi.", - "GameRepairCheckCompletedNotFound_Subtitle": "Không tệp nào cần được cập nhật/sữa lại", + "GameRepairCheckCompleted_Title": "Kiểm tra sửa game hoàn thành", + "GameRepairCheckCompletedFound_Subtitle": "{0} tệp cần được cập nhật/sửa lại. Nhấn vào thông báo này để quay lại launcher.", + "GameRepairCheckCompletedNotFound_Subtitle": "Không có tệp nào cần được cập nhật/sửa lại", - "GameRepairDownloadCompleted_Title": "Tải xuống sữa chữa trò chơi đã hoàn tất ", - "GameRepairDownloadCompleted_Subtitle": "[0] tệp đã cập nhật/sữa hoàn tất.", + "GameRepairDownloadCompleted_Title": "Tải tệp sửa game hoàn thành", + "GameRepairDownloadCompleted_Subtitle": "{0} tệp đã được cập nhật/sửa lại.", - "CacheUpdateCheckCompleted_Title": "Kiểm tra Cập nhật Cache đã hoàn tất", - "CacheUpdateCheckCompletedFound_Subtitle": "{0} tệp Cache cần được cấp nhật, Nhấn vào thông báo này để quay lại.", - "CacheUpdateCheckCompletedNotFound_Subtitle": "Không có tệp Cache nào cần cập nhật.", + "CacheUpdateCheckCompleted_Title": "Kiểm tra cập nhật cache hoàn thành", + "CacheUpdateCheckCompletedFound_Subtitle": "{0} tệp cache cần được cập nhật, Nhấn vào thông báo này để quay lại launcher.", + "CacheUpdateCheckCompletedNotFound_Subtitle": "Không có tệp cache nào cần cập nhật.", - "CacheUpdateDownloadCompleted_Title": "Tải xuống tệp Cache đã hoàn tất.", - "CacheUpdateDownloadCompleted_Subtitle": "{0} tệp cache đã được cập nhật thành công.", + "CacheUpdateDownloadCompleted_Title": "Tải tệp cache hoàn thành.", + "CacheUpdateDownloadCompleted_Subtitle": "{0} tệp cache đã được cập nhật.", - "GenericClickNotifToGoBack_Subtitle": "Nhấn vào thông báo này để quay lại trình khởi chạy trò chơi.", + "GenericClickNotifToGoBack_Subtitle": "Nhấn vào thông báo này để quay lại launcher.", - "OOBE_WelcomeTitle": "Chào mừng bạn tới Collapse Launcher!", - "OOBE_WelcomeSubtitle": "Bạn hiện đang chọn {0} - {1} là trò chơi của bạn. Còn rất nhiều trò chơi đợi bạn, khám phá thêm!", + "OOBE_WelcomeTitle": "Chào mừng tới Collapse Launcher!", + "OOBE_WelcomeSubtitle": "Bạn hiện đang chọn {0} - {1} là game của bạn. Còn rất nhiều game khác đang đợi bạn khám phá!", - "LauncherUpdated_NotifTitle": "Trình khởi chạy của bạn đã được cập nhật!", - "LauncherUpdated_NotifSubtitle": "Trình khởi chạy của bạn đã được cập nhật đến phiên bản: {0}. Hãy vào {1} và chọn {2} để xem những gì đẫ thay đổi." + "LauncherUpdated_NotifTitle": "Launcher của bạn đã được cập nhật!", + "LauncherUpdated_NotifSubtitle": "Launcher của bạn đã được cập nhật đến phiên bản: {0}. Hãy vào {1} và chọn {2} để xem những gì đẫ thay đổi." } } diff --git a/Hi3Helper.Core/Lang/zh_CN.json b/Hi3Helper.Core/Lang/zh_CN.json index 658f2a3af..85a53a6da 100644 --- a/Hi3Helper.Core/Lang/zh_CN.json +++ b/Hi3Helper.Core/Lang/zh_CN.json @@ -87,7 +87,7 @@ "CopyClipboardBtn1": "复制全部到剪贴板", "CopyClipboardBtn2": "已复制到剪贴板!", "GoBackPageBtn1": "返回上一页", - + "CustomBackground_NotFound": "自定义背景文件丢失!将使用默认图像", "CustomBackground_RegionalTag": "区服背景", "CustomBackground_GlobalTag": "全局背景" @@ -718,7 +718,71 @@ "HttpCacheMaxExpireTimeBox_Tooltip1": "确定响应允许的最大缓存时间(分钟)。", "HttpCacheMaxExpireTimeBoxMinutes": "分钟", "HttpCacheClearButton": "清除网络缓存", - "HttpCacheClearedText": "缓存已清除!" + "HttpCacheClearedText": "缓存已清除!", + + "Plugin_LoadedInfoTitle": "已加载的插件信息", + "Plugin_OpenManagerBtn": "打开插件管理菜单", + "Plugin_AuthorBy": "作者 {0}", + "Plugin_LoadedInfoDesc": "描述", + "Plugin_LoadedInfoPluginVer": "插件版本", + "Plugin_LoadedInfoInterfaceVer": "接口版本", + "Plugin_LoadedInfoCreationDate": "创建日期", + "Plugin_LoadedInfoMainLibLocation": "主程序库位置", + "Plugin_LoadedInfoLoadedPresets": "加载的预设", + "Plugin_LoadedInfoClipboardCopied": "信息已复制!", + "Plugin_PluginInfoNameUnknown": "未知", + "Plugin_PluginInfoDescUnknown": "无描述", + "Plugin_PluginInfoAuthorUnknown": "未知作者" + }, + + "_PluginManagerPage": { + "PageTitle": "插件管理菜单", + + "FileDialogTitle": "导入 Collapse 启动器插件", + "FileDialogFileFilter1": "Collapse 启动器插件", + + "LeftPanelNoPluginTitle": "嘿,你还没加载插件!", + "LeftPanelNoPluginButton1": "转到", + "LeftPanelNoPluginButton2": "插件下载目录", + "LeftPanelNoPluginButton3": "页", + + "LeftPanelListViewTitle": "加载插件信息", + + "ListViewMainActionButton1": "检查所有插件的更新", + "ListViewMainActionButton1AltChecking": "检查所有插件的更新中……", + "ListViewMainActionButton2": "下载所有插件的更新", + "ListViewMainActionButton3": "启动时自动更新", + + "ListViewItemContextButton1": "卸载选定的插件", + "ListViewItemContextButton2": "重置选定的插件", + "ListViewItemContextButton3": "启用选定的插件", + "ListViewItemContextButton4": "禁用选定的插件", + "ListViewItemContextButton5": "更新选定的插件", + "ListViewItemContextButton6": "打开当前插件的文件夹", + "ListViewItemContextButton7": "打开 Collapse 启动器插件文件夹", + "ListViewItemContextButton8": "更新当前插件", + + "ListViewItemContentButton1": "卸载插件", + "ListViewItemContentButton2": "重置插件", + + "ListViewItemContextButtonCheckUpdateOnly": "仅检查更新", + "ListViewItemContextButtonCheckAndDownloadUpdate": "检查并下载更新", + "ListViewItemContextButtonDownloadUpdate": "下载更新", + + "ListViewItemUpdateStatusAvailable": "新更新可用!", + "ListViewItemUpdateStatusAvailableButton": "更新至 {0}", + "ListViewItemUpdateStatusAvailableButtonUpdating": "更新中({0}%)……", + "ListViewItemUpdateStatusCompleted": "您的插件已被更新至{0},请重启您的启动器以应用更新!", + "ListViewItemUpdateStatusChecking": "检查更新中……", + "ListViewItemUpdateStatusUpToDate": "插件已是最新!", + + "ListViewFooterWarning1": "您需要重启您的启动器以应用更新!", + "ListViewFooterRestartButton": "重启启动器", + + "RightPanelImportTitle1": "拖动", + "RightPanelImportTitle2": "或", + "RightPanelImportTitle3": "这里", + "RightPanelImportTitle4": "或者点击这个框以导入插件" }, "_Misc": { @@ -741,6 +805,7 @@ "EverythingIsOkay": "一切正常!", "Cancel": "取消", "Close": "关闭", + "CloseOverlay": "关闭叠加层", "UseCurrentDir": "使用当前目录", "UseDefaultDir": "使用默认目录", "MoveToDifferentDir": "移动到不同的目录", @@ -817,7 +882,6 @@ "CDNDescription_Cloudflare": "由 Cloudflare R2 存储桶提供支持的官方(主)仓库镜像。", "CDNDescription_Bitbucket": "由 Bitbucket 提供支持的官方(主)仓库镜像。", "CDNDescription_GitLab": "由 GitLab 提供支持的官方(主)仓库镜像。", - "CDNDescription_Coding": "由 Coding 提供支持的官方(主)仓库镜像。", "CDNDescription_CNB": "由 CNB 提供支持的官方(主)仓库镜像。", "LocateExecutable": "定位可执行文件", @@ -1119,7 +1183,27 @@ "UserFeedback_SubmitBtn": "提交您的反馈", "UserFeedback_SubmitBtn_Processing": "处理中…", "UserFeedback_SubmitBtn_Completed": "完成!", - "UserFeedback_SubmitBtn_Cancelled": "已取消!" + "UserFeedback_SubmitBtn_Cancelled": "已取消!", + + "PluginManagerUpdateAvailableTitle": "您有 {0} 个插件已准备好更新!", + "PluginManagerUpdateAvailableSubtitle1": "目前有 {0} 个插件可更新。启动器需要重新启动以应用这些插件的更新:", + "PluginManagerUpdateAvailableSubtitle2": "您希望重新启动启动器吗?", + "PluginManagerUpdateAvailableCancelBtn": "稍后", + "PluginManagerUpdateAvailableConfirmBtn": "现在就重启!", + "PluginManagerUpdateAvailableToManagerMenuBtn": "转到 {0}", + + "LauncherRestartTitle": "重启 Collapse启动器", + "LauncherRestartSubtitle1": "您需要重新启动启动器。请确保在重启前关闭或者取消了所有后台活动。", + "LauncherRestartSubtitle2": "您希望重新启动启动器吗?", + + "PostInstallBehaviour_Title": "安装/更新后行为", + "PostInstallBehaviour_Subtitle": "成功安装/更新后的行为", + "PostInstallBehaviour_Subtitle2": "重启/关机前等待时间", + "PostInstallBehaviour_EnumNothing": "什么也不做", + "PostInstallBehaviour_EnumStartGame": "开始游戏", + "PostInstallBehaviour_EnumHibernate": "休眠", + "PostInstallBehaviour_EnumRestart": "重启电脑", + "PostInstallBehaviour_EnumShutdown": "关闭电脑" }, "_FileMigrationProcess": { @@ -1359,7 +1443,7 @@ "Graphics_DlssQuality": "NVIDIA DLSS", "Graphics_SelfShadow": "地图探索中角色实时阴影", "Graphics_HalfResTransparent": "半分辨率透明", - + "Graphics_DLSS_UHP": "超高性能", "Graphics_DLSS_Perf": "性能", "Graphics_DLSS_Balanced": "平衡", diff --git a/Hi3Helper.Core/Lang/zh_TW.json b/Hi3Helper.Core/Lang/zh_TW.json index 1856e6e27..f84b3686b 100644 --- a/Hi3Helper.Core/Lang/zh_TW.json +++ b/Hi3Helper.Core/Lang/zh_TW.json @@ -674,7 +674,6 @@ "CDNDescription_Cloudflare": "在 Cloudflare R2 Bucket 上托管的官方(主要)儲存庫的鏡像。", "CDNDescription_Bitbucket": "在 Bitbucket 上托管的官方(主要)儲存庫的鏡像。", "CDNDescription_GitLab": "託管在 GitLab 的官方(主)倉庫鏡像。", - "CDNDescription_Coding": "託管在 Coding 的官方(主)倉庫鏡像。", "LocateExecutable": "定位執行檔", "OpenDownloadPage": "開啟下載頁面", diff --git a/Hi3Helper.Core/packages.lock.json b/Hi3Helper.Core/packages.lock.json index 1a9bca954..63af21d4f 100644 --- a/Hi3Helper.Core/packages.lock.json +++ b/Hi3Helper.Core/packages.lock.json @@ -4,52 +4,52 @@ "net9.0-windows10.0.26100": { "Microsoft.NET.ILLink.Tasks": { "type": "Direct", - "requested": "[9.0.7, )", - "resolved": "9.0.7", - "contentHash": "SZ1brSGoLnhLbE8QUZrtN6YwzN2gDT1wbx9qDBEfFFJcstiDTjJ6ygNuTPBV/K7SjGfx2YNbcJi5+ygbPOZpDg==" + "requested": "[9.0.9, )", + "resolved": "9.0.9", + "contentHash": "cHi1os/s6aobEgNkbOh/jW+ru//rHuedvj4PmTh2mMY7et/mJjqphBeXeKCesDvMd0+E2JyX9EPZZC4VRKslXg==" }, "Microsoft.Windows.CsWinRT": { "type": "Direct", - "requested": "[2.2.0, )", - "resolved": "2.2.0", - "contentHash": "R8MDVawukHrKgYCFgYaoLfbAna/FrImEFRxDK9k8ITbrXv3KLE5uN6tRqrNV83H4MFdqJ/uiA/hg1cSsXkl0vw==" + "requested": "[2.3.0-prerelease.250720.1, )", + "resolved": "2.3.0-prerelease.250720.1", + "contentHash": "2Anaw2yEhLgBXt5Uif3HWuqC+VfjEgnUNlQ9aLKPJcyLGQseB7Nk/TTRt+c6Jv4ud7Ss9Q9pGsFIdnpU2jc3iw==" }, "Sentry": { "type": "Direct", - "requested": "[5.12.0, )", - "resolved": "5.12.0", - "contentHash": "m3C9urnnPhvk+Ua+771NF6+qw4mLY9QKBwM9IaJFNvqslh6Yb+EBFckwP0V4jaMHdgyPBAjegcBE1lR9vJ6kAw==" + "requested": "[5.15.0, )", + "resolved": "5.15.0", + "contentHash": "JWJxQHYx6JadoQwyoPg/vNgfWJRIN+EaRpko9va5hDQ8QdkXnxz5CINnL/us8JLC5s7JHIFFfk6nDEGCCC6noQ==" }, "Google.Protobuf": { "type": "Transitive", - "resolved": "3.31.1", - "contentHash": "gSnJbUmGiOTdWddPhqzrEscHq9Ls6sqRDPB9WptckyjTUyx70JOOAaDLkFff8gManZNN3hllQ4aQInnQyq/Z/A==" + "resolved": "3.32.1", + "contentHash": "HbFFRNU46e1E+qhGvwCDAO2EZ80WADqlkNqlOBYvGi7SNxwMPkTrReZgCg9/TrXwLO/n0za+AIiT2IplzqrjZw==" }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "9.0.7", - "contentHash": "iPK1FxbGFr2Xb+4Y+dTYI8Gupu9pOi8I3JPuPsrogUmEhe2hzZ9LpCmolMEBhVDo2ikcSr7G5zYiwaapHSQTew==" + "resolved": "9.0.9", + "contentHash": "/hymojfWbE9AlDOa0mczR44m00Jj+T3+HZO0ZnVTI032fVycI0ZbNOVFP6kqZMcXiLSYXzR2ilcwaRi6dzeGyA==" }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "9.0.7", - "contentHash": "sMM6NEAdUTE/elJ2wqjOi0iBWqZmSyaTByLF9e8XHv6DRJFFnOe0N+s8Uc6C91E4SboQCfLswaBIZ+9ZXA98AA==", + "resolved": "9.0.9", + "contentHash": "FEgpSF+Z9StMvrsSViaybOBwR0f0ZZxDm8xV5cSOFiXN/t+ys+rwAlTd/6yG7Ld1gfppgvLcMasZry3GsI9lGA==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9" } }, "System.IO.Hashing": { "type": "Transitive", - "resolved": "9.0.7", - "contentHash": "2sMrwd/AHYipeiOwYcoqD99c4U8F2x7GalonEYxkHUvTLNzE9Pxx2lz8ygS9cOqyDsruYARZAYL5pPVFh/s3lw==" + "resolved": "9.0.9", + "contentHash": "hcGHdlcKtox37LQZBLYJ3GdTlHx16F5tL96Rt8iaFscCAJW9IZt3asQbyuJMjcM9oyrn3Yh2454VY2fU0d/stw==" }, "hi3helper.enctool": { "type": "Project", "dependencies": { - "Google.Protobuf": "[3.31.1, )", + "Google.Protobuf": "[3.32.1, )", "Hi3Helper.Http": "[2.0.0, )", "Hi3Helper.Win32": "[1.0.0, )", - "System.IO.Hashing": "[9.0.7, )" + "System.IO.Hashing": "[9.0.9, )" } }, "hi3helper.http": { @@ -58,7 +58,7 @@ "hi3helper.win32": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "[9.0.7, )" + "Microsoft.Extensions.Logging.Abstractions": "[9.0.9, )" } } } diff --git a/Hi3Helper.EncTool b/Hi3Helper.EncTool index 2c2c7f5ea..9dc7e825e 160000 --- a/Hi3Helper.EncTool +++ b/Hi3Helper.EncTool @@ -1 +1 @@ -Subproject commit 2c2c7f5ea3f15ef911987f5f705fbe978f3bc826 +Subproject commit 9dc7e825ee3167fd4fea4629a9264465cd41cf91 diff --git a/Hi3Helper.EncTool.Test/packages.lock.json b/Hi3Helper.EncTool.Test/packages.lock.json index 0bd16be97..0f489108e 100644 --- a/Hi3Helper.EncTool.Test/packages.lock.json +++ b/Hi3Helper.EncTool.Test/packages.lock.json @@ -4,9 +4,9 @@ "net9.0": { "Microsoft.NET.ILLink.Tasks": { "type": "Direct", - "requested": "[9.0.7, )", - "resolved": "9.0.7", - "contentHash": "SZ1brSGoLnhLbE8QUZrtN6YwzN2gDT1wbx9qDBEfFFJcstiDTjJ6ygNuTPBV/K7SjGfx2YNbcJi5+ygbPOZpDg==" + "requested": "[9.0.9, )", + "resolved": "9.0.9", + "contentHash": "cHi1os/s6aobEgNkbOh/jW+ru//rHuedvj4PmTh2mMY7et/mJjqphBeXeKCesDvMd0+E2JyX9EPZZC4VRKslXg==" } } } diff --git a/Hi3Helper.Http b/Hi3Helper.Http index 4da508722..be8b78f73 160000 --- a/Hi3Helper.Http +++ b/Hi3Helper.Http @@ -1 +1 @@ -Subproject commit 4da50872222e00b1801244fab53f6ef9790ad12d +Subproject commit be8b78f73c009ec431f9058c40bf0575fcace164 diff --git a/Hi3Helper.Plugin.Core b/Hi3Helper.Plugin.Core new file mode 160000 index 000000000..f63a0226e --- /dev/null +++ b/Hi3Helper.Plugin.Core @@ -0,0 +1 @@ +Subproject commit f63a0226e63f5828e0c815eaeab9339f5ffd794f diff --git a/Hi3Helper.SharpDiscordRPC b/Hi3Helper.SharpDiscordRPC index 539edef18..b74404e7b 160000 --- a/Hi3Helper.SharpDiscordRPC +++ b/Hi3Helper.SharpDiscordRPC @@ -1 +1 @@ -Subproject commit 539edef189640c22cdff6d515a232fe2b5ecb653 +Subproject commit b74404e7b854f1280b14c1c2793fa9128038d439 diff --git a/Hi3Helper.Sophon b/Hi3Helper.Sophon index fae6b0f9c..c71843757 160000 --- a/Hi3Helper.Sophon +++ b/Hi3Helper.Sophon @@ -1 +1 @@ -Subproject commit fae6b0f9c1aab0003a11fa48ca9ffba872b8b04d +Subproject commit c71843757bfb2fb26ee9e72a567fe3a865067e1e diff --git a/Hi3Helper.TaskScheduler/Hi3Helper.TaskScheduler.csproj b/Hi3Helper.TaskScheduler/Hi3Helper.TaskScheduler.csproj index 5acc58b2f..9009108b8 100644 --- a/Hi3Helper.TaskScheduler/Hi3Helper.TaskScheduler.csproj +++ b/Hi3Helper.TaskScheduler/Hi3Helper.TaskScheduler.csproj @@ -25,7 +25,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive; compile - + all runtime; build; native; contentfiles; analyzers; buildtransitive; compile diff --git a/Hi3Helper.TaskScheduler/packages.lock.json b/Hi3Helper.TaskScheduler/packages.lock.json index e61d73c71..2135558f9 100644 --- a/Hi3Helper.TaskScheduler/packages.lock.json +++ b/Hi3Helper.TaskScheduler/packages.lock.json @@ -13,9 +13,9 @@ }, "Fody": { "type": "Direct", - "requested": "[6.9.2, )", - "resolved": "6.9.2", - "contentHash": "YBHobPGogb0vYhGYIxn/ndWqTjNWZveDi5jdjrcshL2vjwU3gQGyDeI7vGgye+2rAM5fGRvlLgNWLW3DpviS/w==" + "requested": "[6.9.3, )", + "resolved": "6.9.3", + "contentHash": "1CUGgFdyECDKgi5HaUBhdv6k+VG9Iy4OCforGfHyar3xQXAJypZkzymgKtWj/4SPd6nSG0Qi7NH71qHrDSZLaA==" }, "System.Net.Http": { "type": "Direct", diff --git a/Hi3Helper.Win32 b/Hi3Helper.Win32 index 9a42873c5..7639faaec 160000 --- a/Hi3Helper.Win32 +++ b/Hi3Helper.Win32 @@ -1 +1 @@ -Subproject commit 9a42873c584eb7b173d3368c187d6b8391509a23 +Subproject commit 7639faaec8dade2d0370c6a2eacbf874ed9a0467 diff --git a/ImageEx b/ImageEx index d4fc517d3..6503eed43 160000 --- a/ImageEx +++ b/ImageEx @@ -1 +1 @@ -Subproject commit d4fc517d3eb8954ca10d4a31db6b0d0074e616c3 +Subproject commit 6503eed4334b955f5ba4cd148a747151b075bdc3 diff --git a/InnoSetupHelper/InnoSetupHelper.csproj b/InnoSetupHelper/InnoSetupHelper.csproj index 3b23efaac..f55113ca0 100644 --- a/InnoSetupHelper/InnoSetupHelper.csproj +++ b/InnoSetupHelper/InnoSetupHelper.csproj @@ -19,7 +19,7 @@ - + diff --git a/InnoSetupHelper/packages.lock.json b/InnoSetupHelper/packages.lock.json index 5b756950e..d1c2318d9 100644 --- a/InnoSetupHelper/packages.lock.json +++ b/InnoSetupHelper/packages.lock.json @@ -4,15 +4,15 @@ "net9.0": { "Microsoft.NET.ILLink.Tasks": { "type": "Direct", - "requested": "[9.0.7, )", - "resolved": "9.0.7", - "contentHash": "SZ1brSGoLnhLbE8QUZrtN6YwzN2gDT1wbx9qDBEfFFJcstiDTjJ6ygNuTPBV/K7SjGfx2YNbcJi5+ygbPOZpDg==" + "requested": "[9.0.9, )", + "resolved": "9.0.9", + "contentHash": "cHi1os/s6aobEgNkbOh/jW+ru//rHuedvj4PmTh2mMY7et/mJjqphBeXeKCesDvMd0+E2JyX9EPZZC4VRKslXg==" }, "System.IO.Hashing": { "type": "Direct", - "requested": "[9.0.7, )", - "resolved": "9.0.7", - "contentHash": "2sMrwd/AHYipeiOwYcoqD99c4U8F2x7GalonEYxkHUvTLNzE9Pxx2lz8ygS9cOqyDsruYARZAYL5pPVFh/s3lw==" + "requested": "[9.0.9, )", + "resolved": "9.0.9", + "contentHash": "hcGHdlcKtox37LQZBLYJ3GdTlHx16F5tL96Rt8iaFscCAJW9IZt3asQbyuJMjcM9oyrn3Yh2454VY2fU0d/stw==" } } } diff --git a/PRIVACY.md b/PRIVACY.md index 07b8231ee..b46bc82c6 100644 --- a/PRIVACY.md +++ b/PRIVACY.md @@ -26,14 +26,7 @@ While Collapse itself does not collect the information outlined above, we utiliz - Purpose: Main Content Delivery Network (CDN) Provider - Information collected: IP address, country, city, and internet service provider (ISP) used to access the service. - Privacy policies: - https://www.cloudflare.com/privacypolicy/; https://www.cloudflare.com/trust-hub/gdpr/; - -#### Service Provider: CODING; Tencent Cloud Computing (Beijing) Co., Ltd. -- Purpose: Content Delivery Network (CDN) Provider -- Information collected: Monitoring Log (URL access path, IP address, user agent of the browser (OS type and version, CPU type, browser type and version, browser rendering engine, browser language and plug-in)) -- Privacy policies: - https://www.tencentcloud.com/document/product/1133/45791 -- Opt-out: You can change the CDN provider by going to the application settings. + https://www.cloudflare.com/privacypolicy/; https://www.cloudflare.com/trust-hub/gdpr/; #### Service Provider: CNB; Tencent Cloud Computing (Beijing) Co., Ltd. - Purpose: Content Delivery Network (CDN) Provider diff --git a/README.md b/README.md index 08ee0e98b..b8f417693 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ [![ru](https://img.shields.io/badge/README-ru-red.svg)](Docs/README.localized/README.ru-ru.md) [![zh](https://img.shields.io/badge/README-zh-red.svg)](Docs/README.localized/README.zh-cn.md) -**Collapse** was originally designed for **Honkai Impact 3rd**. However, as the project evolved, this launcher is now a game client for all currently released **miHoYo Games**. +**Collapse** was originally designed for **Honkai Impact 3rd**. However, as the project evolved, this launcher is now a game client for all currently released **miHoYo Games** and even external games through its plugin system! [![Build-Canary](https://github.com/CollapseLauncher/Collapse/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/CollapseLauncher/Collapse/actions/workflows/build.yml) [![Qodana](https://github.com/CollapseLauncher/Collapse/actions/workflows/qodana-scan.yml/badge.svg)](https://github.com/CollapseLauncher/Collapse/actions/workflows/qodana-scan.yml) @@ -62,180 +62,14 @@ Not only that, this launcher also has some advanced features for **Genshin Impac * Repair the game files including Game Caches, Cutscenes, Audio Pack & persistent files outside of the game. # Supported Features -> Features marked with a :warning: are scheduled for removal and/or are no longer supported by the Collapse development team. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Game TitleRegionFeatures
InstallPre-loadUpdateGame RepairCache UpdateGame SettingsGame Region Convert
Honkai Impact 3rdSoutheast Asia:white_check_mark::white_check_mark::white_check_mark: (Normal and Delta-patch updates are available):white_check_mark::white_check_mark::white_check_mark::warning:
(From SEA -> Global)
Global:white_check_mark::white_check_mark::white_check_mark: (Normal and Delta-patch updates are available):white_check_mark::white_check_mark::white_check_mark::warning:
(From Steam -> Global)
(From Global -> SEA)
Mainland China:white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark:
TW/HK/MO:white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark:
Japan:white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark:
Korea:white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark:
Genshin ImpactGlobal:white_check_mark::white_check_mark::white_check_mark::white_check_mark:N/A:white_check_mark:
Mainland China:white_check_mark::white_check_mark::white_check_mark::white_check_mark:N/A:white_check_mark:
Bilibili:white_check_mark::white_check_mark::white_check_mark::white_check_mark:N/A:white_check_mark:
Google Play (Global):white_check_mark::white_check_mark::white_check_mark::white_check_mark:N/A:white_check_mark:
Honkai: Star RailGlobal:white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark:
Mainland China:white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark:
Bilibili:white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark::white_check_mark:
Zenless Zone ZeroGlobal:white_check_mark::white_check_mark::white_check_mark:N/AN/A:white_check_mark:
Mainland China:white_check_mark::white_check_mark::white_check_mark:N/AN/A:white_check_mark:
- -> **Note**: -> The table above serves to illustrate the features Collapse currently support. This list will continuously get updated as new features get added to Collapse and new games get released. If you have any issues with any supported features above, checks our GitHub issue tab, report if no active issues for it is found. -> > Please keep in mind that the Game Conversion feature is currently only available for Honkai Impact: 3rd. Other miHoYo/Cognosphere Pte. Ltd. games are currently not planned for game conversion. +> ### You can find the list of features on our [new website](https://collapselauncher.com/features.html)! # Download Ready-To-Use Builds -[](https://github.com/CollapseLauncher/Collapse/releases/download/CL-v1.82.30/CollapseLauncher-stable-Setup.exe) -> **Note**: The version for this build is `1.82.30` (Released on: July 18th, 2025). +[](https://github.com/CollapseLauncher/Collapse/releases/download/CL-v1.82.31/CollapseLauncher-stable-Setup.exe) +> **Note**: The version for this build is `1.82.31` (Released on: August 14th, 2025). -[](https://github.com/CollapseLauncher/Collapse/releases/download/CL-v1.83.7-pre/CollapseLauncher-preview-Setup.exe) -> **Note**: The version for this build is `1.83.7` (Released on: July 18th, 2025). +[](https://github.com/CollapseLauncher/Collapse/releases/download/CL-v1.83.8-pre/CollapseLauncher-preview-Setup.exe) +> **Note**: The version for this build is `1.83.8` (Released on: August 14th, 2025). To view all releases, [**click here**](https://github.com/neon-nyan/CollapseLauncher/releases). diff --git a/SevenZipExtractor b/SevenZipExtractor index 95dbd42cb..cc22362d2 160000 --- a/SevenZipExtractor +++ b/SevenZipExtractor @@ -1 +1 @@ -Subproject commit 95dbd42cb8629ac02a4c7146b8d97ebd4ece7280 +Subproject commit cc22362d231983069642ffc02ddc0e2fbcce3637 diff --git a/env.json b/env.json new file mode 100644 index 000000000..ea8bad0e9 --- /dev/null +++ b/env.json @@ -0,0 +1,5 @@ +{ + "DOTNET_INSTALL_DIR": ".\\.dotnet", + "DOTNET_VERSION": "9.0.3xx", + "DOTNET_QUALITY": "ga" +} \ No newline at end of file diff --git a/global.json b/global.json index f012ea596..41103d1a3 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.301", + "version": "9.0.305", "rollForward": "latestPatch", "allowPrerelease": true }